Sayfa 3 - Toplam 6 İlkİlk 12345 ... SonSon
Görüntülenen Mesaj 21 den 30 - Toplam 55
Like Tree6Likes

Konu: Upgrading Iomega ix2-200 to Cloud Edition

      
  1. #21
    Katkıda Bulunan Recep Baltaş Üyenin Avatarı
    Üyelik Tarihi
    Aug 2010
    Mesaj
    3.924
    Blog Girdileri
    12
    You can put links. No problem For the media server issue, I am not that much a linux guy and I won't be able to handle it correctly. You can ask your question here: General NAS-Central Forums • View forum - StorCenter ix2-200

    Or you can ask for IOmega to update the componenet via here: Iomega - Official Fan Site | Facebook

  2. #22
    Junior Member
    Üyelik Tarihi
    Jan 2012
    Mesaj
    15
    hi recep baltas,

    i found the solution is very simple you must acessing the twonky media server like this...http:ip ix2-200:50599 or :9000 and them twonky media settings->media receivers->and you find your ip tv and put it as a samsung tv you will find it on the list.

    thanks a lot for all the help you give me

    cheers,
    Son düzenleyen axukar, 01-20-2012 saat 09:54 PM.

  3. #23
    Junior Member
    Üyelik Tarihi
    Jan 2012
    Mesaj
    4
    Guys,
    Is there someone who can send me a partition image of the system partition of ix2-200?
    If so, please, contact me on:

    Kod:
    pedro@guedes.tk
    Thanks,

    Caco

  4. #24
    Junior Member
    Üyelik Tarihi
    Jan 2012
    Mesaj
    15
    i have the cloud edition.....

  5. #25
    Junior Member
    Üyelik Tarihi
    Jan 2012
    Mesaj
    1
    Hello, I tried reinstalling the OS (ix2-200 that was previously converted to cloud edition and on 3.2.3 fw) as i had problems with torrents after trying to install transmission.
    Now, after having wiped the drives with EASEUS as advised, the unit won't flash anymore from usb. After about 5 minutes, as already described in other posts, the unit red light blinks briefly and then power cycles. I tried 3 different usb sticks, no luck, wiped the disks completely with 1 pass.
    Do I need to do anything to initialize the drives before trying flashing again? Do I need to decompress the .tgz file manually?

    Thanks!!

  6. #26
    Katkıda Bulunan Recep Baltaş Üyenin Avatarı
    Üyelik Tarihi
    Aug 2010
    Mesaj
    3.924
    Blog Girdileri
    12
    You need to clean the USB drive and use only here provided tar file

  7. #27
    Junior Member
    Üyelik Tarihi
    Jan 2012
    Nerden
    de
    Mesaj
    1
    hello .. use the firmware updater software provided by iomega --- serach for link --- and create a folderstructure as described in this thread , of course you must copy the firmware of the cloud edition in the same folder as the script should be placed !

    copy this script (see downwards) in an unix editor and save it as preimage.sh in folder on your usb-stick ---> \ecmtools\ix2-200d_images\preimage.sh



    --------------------- here the script ---- copy in unix editor ans save as --- preimage.sh ---------- --------------------

    Kod:
    # /bin/sh
    # This script is used to upgrade the drive firmware version
    # if the drive firmware is < CC37 then this script needs to upgrade that drive
    # Also the hdparm needs to be 9.28 fo this to work
    ##
    
    echo "!!!!!!This script upgrades the seagate drive firmware"
    
    HDPARM=/usb_drive/emctools/seagate/hdparm916/hdparm
    FWPATH=/usb_drive/emctools/seagate
    UPGRADED=0
    
    find_firmware()
    {
    MODEL=$1
    if [ "$MODEL" == "ST3500412AS" ]
    then
    NEW_FIRMWARE="$FWPATH/500-cc37.bin"
    elif [ "$MODEL" == "ST31000520AS" ]
    then
    NEW_FIRMWARE="$FWPATH/1tb-cc38.bin"
    elif [ "$MODEL" == "ST32000542AS" ] 
    then
    NEW_FIRMWARE="$FWPATH/2tb-cc38.bin"
    else
    return 1
    fi
    return 0
    }
    
    update_firmware()
    {
    dev=/dev/$1
    MODEL=`$HDPARM -I $dev | grep Model | awk '{print $3}'`
    echo "Model is $MODEL"
    FIRMWARE_REV=`$HDPARM -I $dev | grep Firmware | awk '{print $3}'`
    echo "Firmware revision is $FIRMWARE_REV"
    
    find_firmware $MODEL
    if [ "$?" == "0" ]
    then 
    rev=`echo $FIRMWARE_REV | awk '{print substr($0, 3, 2)}'`
    if ( [ "$MODEL" == "ST3500412AS" ] && [ "$rev" -lt "37" ] ) || ( [ "$MODEL" != "ST3500412AS" ] && [ "$rev" -lt "38" ] )
    then
    echo "The drive firmware needs to be updated to $NEW_FIRMWARE"
    count=1
    while [ "$count" -lt "5" ];
    do
    echo "pass $count"
    $HDPARM --yes-i-know-what-i-am-doing --please-destroy-my-drive --fwdownload $NEW_FIRMWARE $dev
    cmd_ret=$?
    if [ "$cmd_ret" -lt "6" ]
    then
    UPGRADED=1
    break
    fi
    let count++
    done
    else
    echo "Firmware does not need an upgrade"
    fi
    else 
    echo "The Model $MODEL is not supported"
    return 1
    fi
    }
    
    
    
    
    #MAX_DRIVES=12
    #drive_letters=(a b c d e f g h i j k l)
    for i in a b c d e f g h i j k l;
    do
    drive=sd$i
    if [ -f /sys/block/$drive/removable ]
    then
    isDrive=`cat /sys/block/$drive/removable`
    if [ "$isDrive" == "0" ]
    then
    echo "$drive is a hard drive"
    update_firmware $drive
    else
    echo "$drive is not a hard drive"
    fi
    else
    echo "$drive doesnot exists"
    fi
    done
    
    if [ $UPGRADED == "1" ]
    then
    echo "Need to reboot after a firmware upgrade"
    exit 1
    else
    exit 0
    fi
    Son düzenleyen dornkaat, 01-31-2012 saat 03:30 PM.

  8. #28
    Junior Member
    Üyelik Tarihi
    Feb 2012
    Mesaj
    1
    Alıntı courghan Demiş ki: Mesajı Görüntüle
    Hello, I tried reinstalling the OS (ix2-200 that was previously converted to cloud edition and on 3.2.3 fw) as i had problems with torrents after trying to install transmission.
    Now, after having wiped the drives with EASEUS as advised, the unit won't flash anymore from usb. After about 5 minutes, as already described in other posts, the unit red light blinks briefly and then power cycles. I tried 3 different usb sticks, no luck, wiped the disks completely with 1 pass.
    Do I need to do anything to initialize the drives before trying flashing again? Do I need to decompress the .tgz file manually?

    Thanks!!
    I'm in pretty much the same situation. I have a USB drive that definitely blinked as expected (4-6 after about 60 seconds, then 2 more after 10 more, then a lot for a while), and then shutdown as expected. But after I powered it back up, I've never been able to get anywhere. I can tell from my DHCP server that it's asking for an IP, but the front LED is just blinking rapid white. I've tried reflashing it, but I never get the continuous flashing on the thumb drive again. I've tried re-pulling the drives and putting them in a dock and wiping the partitions again, but no luck. I must be missing something?

  9. #29
    KAR
    KAR Çevrimdışı
    Junior Member
    Üyelik Tarihi
    Feb 2012
    Mesaj
    3
    Hi All,

    Trying to recover my ix2-200 Cloud edition, But using 2 320 GB disks instead. It keep blinking, no files are even extracted at my USB.
    Is it allowed to use 320 GB disks?

    Thx,
    KAR

  10. #30
    Administrator Burak Alkan Üyenin Avatarı
    Üyelik Tarihi
    Jun 2011
    Mesaj
    1.952
    Blog Girdileri
    32
    I dont't think that there is a limitation. But the disks must be exactly same brand and model. Also try other USB drives as some might not work...

Sayfa 3 - Toplam 6 İlkİlk 12345 ... SonSon

LinkBacks (?)

  1. 02-22-2012, 11:57 PM
  2. 02-22-2012, 06:46 AM
  3. 02-13-2012, 01:21 PM
  4. 02-08-2012, 01:39 PM
  5. 02-05-2012, 07:50 PM
  6. 01-31-2012, 11:17 AM
  7. 01-25-2012, 09:09 AM
  8. 01-24-2012, 12:30 AM
  9. 01-17-2012, 03:23 PM
  10. 01-16-2012, 06:07 AM
  11. 01-02-2012, 11:25 AM
  12. 11-17-2011, 12:21 PM
  13. 11-06-2011, 06:56 AM
  14. 10-18-2011, 09:00 PM
  15. 10-18-2011, 12:11 PM
  16. 10-17-2011, 07:35 AM
  17. 10-11-2011, 03:54 PM
  18. 09-17-2011, 06:05 PM
  19. 09-03-2011, 04:48 AM
  20. 08-31-2011, 05:54 PM
  21. 08-26-2011, 01:35 PM
  22. 08-26-2011, 01:22 PM
  23. 08-26-2011, 01:10 PM

Benzer Konular

  1. IOMega Storage Manager 1.2.4.45773
    Aygıt Sürücüleri forum içinde, yazan Burak Alkan
    Cevap: 1
    Son Mesaj: 08-13-2011, 03:05 AM
  2. iomega Home Media Network Hard Drive Cloud Edition Firmware
    SSD, Flash ve Sabit Diskler forum içinde, yazan Burak Alkan
    Cevap: 0
    Son Mesaj: 08-07-2011, 01:15 AM
  3. Panda Cloud Antivirus 1.5.1
    Güvenlik forum içinde, yazan Burak Alkan
    Cevap: 0
    Son Mesaj: 07-20-2011, 11:41 PM
  4. Panda Cloud Antivirus 1.9 Beta
    Güvenlik forum içinde, yazan Recep Baltaş
    Cevap: 0
    Son Mesaj: 05-01-2011, 11:55 AM
  5. Panda Cloud Antivirus 1.4.00
    Güvenlik forum içinde, yazan Recep Baltaş
    Cevap: 0
    Son Mesaj: 02-02-2011, 04:52 PM

Bu Konu için Etiketler

Konuyu Favori Sayfanıza Ekleyin

Konuyu Favori Sayfanıza Ekleyin

Mesaj Yetkileriniz

  • Yeni konu açmaya yetkiniz yok
  • Cevap yazmaya yetkiniz yok
  • Eklenti yüklemeye yetkiniz yok
  • Mesajınızı düzeltmeye yetkiniz yok
  •  
Technopat

SEO by vBSEO 3.6.0