Beiträge von inzeback

    Hi tiste thanks for helping me


    the output of the commands are :
    mdadm --examine /dev/sdf


    mdadm --examine /dev/sde




    Code
    mdadm --stop /dev/md127

    did stop the array OK


    Code
    root@omv:~# mdadm -A --force /dev/md127 /dev/sd[fe]
    mdadm: forcing event count in /dev/sdf(3) from 339 upto 367
    mdadm: clearing FAULTY flag for device 1 in /dev/md127 for /dev/sdf
    mdadm: Marking array /dev/md127 as 'clean'
    mdadm: /dev/md127 assembled from 2 drives - not enough to start the array.


    but the other failed


    Any chance to do more?

    Hi,
    Could help me getting back my raid5 array up and running : my issue is similar to the other thread but I cannot get it to work and I cannot lose my data(kids photos)!


    Scenario :
    running lastest
    raid 5, 4 disk up and running clean(+ 3 other disk non raid)
    I did change a sata cable to remove a ATA33 error and boot up the machine with an unplgged cable +> result a failed array with 2/4 disk up
    I halt the machine, replugged the cable and rebooted and damn, the raid array has gone


    blkid


    lsmod | grep raid


    /etc/mdadm/mdadm.conf


    cat /proc/mdstat


    /etc/default/mdadm


    /etc/fstabb


    mdadm --detail /dev/md127


    boot extract


    If seems part of the raid array is still there but now mounting nor detected


    Thank you for your help


    Inzeback

    I made a switch today to copy.com system instead of dropbox.


    here are the sequences I followed to install the daemon on my OVM machine
    login on SSH root on my headless machine


    Code
    cd /tmp
    wget http://copy.com/install/linux/Copy.tgz 
    tar zxf Copy.tgz
    rm Copy.tgz
    cp copy /opt/.copy.com
    # if your system uses i386 instead of x64
    # /opt/.copy.com/x86
    cd /opt/.copy.com/x86_64
    mkdir /media/***uuidofyourdisk***/***folderyouwanttosync***
    ./CopyConsole -username=***yourusernameemail*** -root=/media/***uuidofyourdisk***/***folderyouwanttosync***


    Then we will create the init scrypt to launch the daemon at each system boot

    Code
    nano /etc/init.d/copyconsole


    and copy/paste the content



    then change permission on the script & add the script to the boot sequence

    Code
    chmod 777 /etc/init.d/copyconsole
    update-rc.d copyconsole defaults



    I found all the permission created by daemon will be only affected to the root user and not the user of the shares from the web environement


    The only way to change that is to change manually permission on the directory manually. If you have other ideas I am willing to take them.

    Code
    chmod -R 777 /media/***uuidofyourdisk***/***folderyouwanttosync***/



    Please report me any errors or mistake.


    Inzeback