Hello. I have case: wdbctl0020hwt and drive: WD Green WD10EZRX (1TB, 64MB, SATA/600)
My question is: its possible to make them work together?
If yes i need to make partiotion on it, i saw some topics about that, but i dont know what partition i need to make.
Some one can help me?
I succesfully get it working but not exacly. I can get into web ui, to my cloud but is slow and dont show how much space i have on it.
I used this instruction:
Howto replace or restore original firmware:
* You can use any of *nix system. I use Debian (Ubuntu similar).
* All command runing from root user. Or use Sudo.
* First thing after boot in liveCD - install software: apt-get update && apt-get install mdadm parted
!! For install new HDD - go from p.1. If you repare exist HDD - go to p.8-2
-
Use fdisk -l (or parted -l) for see what name have you WD’s HDD.
* For me - its /dev/sdb. Replace it to your hdd name! -
Run parted utility:
parted /dev/sdb -
Type “print” for see what partitions exist on disk
-
Remove all: Type “remove 1” (where 1 - number of partition)
-
Crete new table:
mklabel gpt
mkpart primary 528M 2576M
mkpart primary 2576M 4624M
mkpart primary 16M 528M
mkpart primary 4828M -1M
mkpart primary 4624M 4724M
mkpart primary 4724M 4824M
mkpart primary 4824M 4826M
mkpart primary 4826M 4828M
set 1 raid on
set 2 raid on -
Ok, type “quit”
-
Format data partition:
mkfs -t ext4 /dev/sdb4
8-1. Prepare main RAID partition (For rootfs): mdadm --create /dev/md0 --level=1 --metadata=0.9 --raid-devices=2 /dev/sdb1 /dev/sdb2
* Type “watch cat /proc/mdstat” and wait 100%. Then - [ctrl] + [c] for close.
8-2. Stop auto-loaded raid: mdadm --stop /dev/md127 (Sometimes you can see another numbers - see in: ls /dev | grep md)
8-3. Start normal raid (/dev/md0 is important!): mdadm -A /dev/md0 /dev/sdb1 /dev/sdb2
-
Use data partition as download folder:
mount -t ext4 /dev/sdb4 /mnt
cd /mnt -
Download backup arhive to /mnt folder:
https://drive.google.com/file/d/0B_6OlQ_H0PxVQ2l5MTNvQk1xSUU/view?usp=sharing -
Extract by console:
tar xvfz original_v3.04.01-230.tar.gz -
Ok. Upload backup images to WD’s hdd:
dd if=kernel.img of=/dev/sdb5
dd if=kernel.img of=/dev/sdb6
dd if=config.img of=/dev/sdb7
dd if=config.img of=/dev/sdb8
dd if=rootfs.img of=/dev/md0 -
Shutdown PC. (Or use “Logout” in menu)
shutdown -p -H 0 -
Connect HDD to WD’s plate and turn on WDMyCloud. Wait ~5-10 min.
I think i made mistake with partitioning.
Can someone can tell me how i can fix this?