<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wikidot="http://www.wikidot.com/rss-namespace">

	<channel>
		<title>Complete Fresh Backup of MyBook World 500GB</title>
		<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb</link>
		<description>Posts in the discussion thread &quot;Complete Fresh Backup of MyBook World 500GB&quot; - Raw disk images (bit copies),  filesystem dump(with permissions), Partition Table, Master Boot Record from a brand new, never booted Western Digital MyBook World Edition 500GB (single drive)</description>
				<copyright></copyright>
		<lastBuildDate></lastBuildDate>
		
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-227070</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-227070</link>
				<description></description>
				<pubDate>Fri, 25 Jul 2008 03:59:31 +0000</pubDate>
				<wikidot:authorName>barba3</wikidot:authorName>				<wikidot:authorUserId>172319</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Can anyone post here the <strong>contents</strong> of the file who exports the <strong>LD_LIBRARY_PATH</strong> env var?<br /> I think it is <strong>/etc/profile</strong></p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-199989</guid>
				<title>Add new/fresh HDD to WD WE- all steps to get it working</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-199989</link>
				<description></description>
				<pubDate>Wed, 18 Jun 2008 12:13:47 +0000</pubDate>
				<wikidot:authorName>Da_mENIZ</wikidot:authorName>				<wikidot:authorUserId>147584</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I've been hacking around this problem for a week now, but I made it. Following are the steps to install fresh hdd to WD WE:</p> <p>I took backup from my original HDD, but you can download from links in this article. After you open the box and connect original hdd and new hdd to some linux machine you do the following.<br /> My Original 1TB hdd was mounted as "<strong>sdb</strong>" under fedora<br /> My New 400G hdd was mounted as "<strong>sdc</strong>" under fedora</p> <p>1.) Backup original<br /> dd if=/dev/sdb of=mbr.sdb bs=512 count=1<br /> dd if=/dev/sdb of=boot.sdb bs=512 skip=1 count=12512 '(extract boot loader after mbr, and before 1st part. ~6MB is enough)<br /> #get 3 sys part in bit2bit<br /> dd if=/dev/sdb1 | bzip2 &gt; sdb1.img.bz2<br /> dd if=/dev/sdb2 | bzip2 &gt; sdb2.img.bz2<br /> dd if=/dev/sdb3 | bzip2 &gt; sdb3.img.bz2<br /> #extract partition table<br /> sfdisk -d /dev/sdb | sed s/sdb/sdc/ &gt; part.sdb</p> <p>Now you have all data for new hdd (those files are also available in this article)<br /> Fun part now (be carefull as with dd or sfdisk is very easy to mess up other system/data disks)<br /> 2.) restore mbr, boot loader<br /> dd if=mbr.sdb of=/dev/sdc bs=512 count=1<br /> dd if=boot.sdb of=/dev/sdc bs=512 count=12512 seek=1</p> <p>#restore part table<br /> 3.)# edit part.sdb to modify size of the HDD (see below for description)<br /> 4.) overwrite partition of new hdd<br /> sfdisk /dev/sdc &lt;part.sdb</p> <p>5.)restore partitions (to check your hdd you can cfdisk /dev/sdc or sfdisk -l /dev/sdc)<br /> bzcat sdb1.img.bz2| dd of=/dev/sdc1<br /> bzcat sdb2.img.bz2| dd of=/dev/sdc2<br /> bzcat sdb3.img.bz2| dd of=/dev/sdc3</p> <p>6.) create and activate raid disks (I suggest you disconnect your original hdd or do mdadm -S /dev/md1 (2,3,4)<br /> mdadm -Cv /dev/md1 -l1 -n2 -c64 /dev/sdc1 missing<br /> mdadm -Cv /dev/md2 -l1 -n2 -c64 /dev/sdc2 missing<br /> mdadm -Cv /dev/md3 -l1 -n2 -c64 /dev/sdc3 missing<br /> mdadm -Cv /dev/md4 -l1 -n2 -c64 /dev/sdc4 missing</p> <p>7.) format md4 (data)<br /> mkfs -L "Data" -j /dev/md4</p> <p>8.) activate swap (not sure if needed but it doesn't hurt)<br /> mkswap /dev/md2<br /> swapon /dev/md2</p> <p>9.) Optionally you can copy data from original disc (if you haven't disconnected it yet) (I have created 2 folders =&gt; mkdir /mnt/sdb; mkdir /mnt/md<br /> mount -t ext3 /dev/sdb4 /mnt/sdb<br /> mount /dev/md4 /mnt/md<br /> rsync -av —progress /mnt/sdb/ /mnt/md/<br /> umount /mnt/sdb<br /> umount /mnt/md</p> <p>10) Now tricky part<br /> mdadm -Es</p> <ol> <li>you should get result like</li> </ol> <p>ARRAY /dev/md1 level=raid1 num-devices=2 UUID=38f61aa3:44d57f6e:371d16a4:c628cbe8<br /> ARRAY /dev/md2 level=raid1 num-devices=2 UUID=d76e6d02:bbdc6d24:944ec00b:1ce3d3f3<br /> ARRAY /dev/md3 level=raid1 num-devices=2 UUID=52c5fcaf:6e5975eb:7ef85dd8:b9eb2bec<br /> ARRAY /dev/md4 level=raid1 num-devices=2 UUID=91c6bb94:a1f85a42:95e839e2:477a7ccc</p> <ol> <li>you can replace those for lines in the file /etc/mdadm.conf but be carefull=&gt;</li> </ol> <p>mount /dev/md1 /mnt/md<br /> nano /mnt/md/etc/mdadm.conf<br /> #now replace 4 lines or only UUIDs</p> <p>11.) This should do, you can now disconnect hdd and plug it in to your WD box and have fun :)</p> <p>Detail explanation of<br /> 3.) when your hdd is different size than original you have to modify your partition table accordingly<br /> do<br /> sfdisk -l /dev/sdc</p> <ol> <li>you will get something like</li> </ol> <p>Disk /dev/sdc: <strong>48641</strong> cylinders, 255 heads, 63 sectors/track<br /> Units = cylinders of 8225280 bytes, blocks of 1024 bytes, counting from 0</p> <p>Device Boot Start End #cyls #blocks Id System<br /> /dev/sdc1 3 368 366 2939895 fd Linux raid autodetect<br /> /dev/sdc2 369 381 13 104422+ fd Linux raid autodetect<br /> /dev/sdc3 382 504 123 987997+ fd Linux raid autodetect<br /> /dev/sdc4 <strong>505</strong> 121600 121096 972703620 fd Linux raid autodetect</p> <p>#now take total number of cylinders (48641) minus starting point of last partiton (505) so<br /> 48641-505=48136 x 255 x 63 = <strong>773304840</strong> =&gt; this is the size of your last partition<br /> =&gt; edit your part.sdb and correct this last size ie<br /> unit: sectors</p> <p>/dev/sdc1 : start= 48195, size= 5879790, Id=fd<br /> /dev/sdc2 : start= 5927985, size= 208845, Id=fd<br /> /dev/sdc3 : start= 6136830, size= 1975995, Id=fd<br /> /dev/sdc4 : start= 8112825, size=<span style="text-decoration: underline;"><strong>773304840</strong></span>, Id=fd</p> <p>=&gt; now you can replace your new HDD partition table (my number is for the WD 400GB) your number will be different</p> <p>Good Luck</p> <p>D</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-140637</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-140637</link>
				<description></description>
				<pubDate>Tue, 08 Apr 2008 05:49:39 +0000</pubDate>
				<wikidot:authorName>fybyfyby</wikidot:authorName>				<wikidot:authorUserId>98865</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Finally I got it, restored partitions sda1-sda3 bit by bit. No need to edit etc/fstab.</p> <p>Thanks for this forum !! :-)</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-140293</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-140293</link>
				<description></description>
				<pubDate>Mon, 07 Apr 2008 19:16:07 +0000</pubDate>
				<wikidot:authorName>fybyfyby</wikidot:authorName>				<wikidot:authorUserId>98865</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hi I have same problem. I did these:<br /> 1)Copy rescue.img to /dev/sda<br /> 2)Copy (dd) sda1-3 to /dev/sda1-3<br /> 3)in etc/fstab on sda1 changed mdx to sdax</p> <p>Booting is ok, lights will come up. But no response on LAN. Tried connecting to router/pc/dhcp/noDhcp, doesnt matter. 192.168.1.128 or mybookworld isnt accessible.</p> <p>Somebody knows, what am I doing wrong?</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-134137</guid>
				<title>Easy DIY method: TAR all files for easy recovery of damaged config files.</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-134137</link>
				<description></description>
				<pubDate>Sat, 29 Mar 2008 20:18:34 +0000</pubDate>
				<wikidot:authorName>Barryke</wikidot:authorName>				<wikidot:authorUserId>103616</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Not that good with linux but my favorite quick backup method: <a href="http://ubuntuforums.org/showthread.php?t=35087">http://ubuntuforums.org/showthread.php?t=35087</a></p> <blockquote> <p><tt>tar cvpzf backup.tgz —exclude=/proc —exclude=/lost+found —exclude=/backup.tgz —exclude=/mnt —exclude=/sys /</tt></p> </blockquote> <p>as root makes a backup.tgz archive containing all files. Parameters meant for Ubunto but seems to work fine on my mybook: made me a 63MB file containing most files i will manage to fuck up.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-131270</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-131270</link>
				<description></description>
				<pubDate>Tue, 25 Mar 2008 18:44:42 +0000</pubDate>
				<wikidot:authorName>earithramir</wikidot:authorName>				<wikidot:authorUserId>99991</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hi,</p> <p>Thanks for replying.<br /> I did manage to get the device working, but these images did not help me.</p> <p>And yes, that SDA was the correct drive ( i only had that drive connected at that time)</p> <p>I did mange to restore the drive using an other MyBook World Edition. (a 500GB drive)<br /> I used dd to copy the all the data of the working one to the 750GB and then resized the 500GB partition.<br /> Its now fully working again!</p> <p>But im looking at another problem:<br /> When i did copy all of the data from one disk to another the 750GB drive got the same MAC-address like the 500GB, sow now i am only able to use them when using static IP adresses, and not all computers can find both the devices.</p> <p>Does any 1 know how to change the MAC-address of a Mybook world.<br /> I have SSH acces to this device.<br /> Found some linux commands that would do the trick but i dont know : 1. does a single command without editing configuration files save these setting even after rebooting the device and 2. i dont know the name of the network adapter in this device , tried lan0 but that did not work.<br /> Please help me to get this fix and im happy!</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-129861</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-129861</link>
				<description></description>
				<pubDate>Sun, 23 Mar 2008 00:25:22 +0000</pubDate>
				<wikidot:authorName>alephsmith</wikidot:authorName>				<wikidot:authorUserId>58305</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Is sda the correct device? are you sure this isn't referring to your internal drive &amp; windows partition (most likely mounted as read-only ntfs).</p> <p>I think the correct device is likely to be sdb. To see your mounted file systems use <tt>mount</tt>, make sure you are actually specifying the correct device to dd to.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-129622</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-129622</link>
				<description></description>
				<pubDate>Sat, 22 Mar 2008 15:07:32 +0000</pubDate>
				<wikidot:authorName>earithramir</wikidot:authorName>				<wikidot:authorUserId>99991</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hi,</p> <p>I am trying to get my MyBook World Edition 1, 750GB up and running again.</p> <p>It lost all data on the drive.<br /> The partitions i could get back using the method on this site.<br /> But everytime i try: <em>sudo bzip2 -cd SDA1_IMA.BZ2 | dd of=/dev/sda1</em><br /> i get <em>dd: opening ‘/dev/sda1’: Permission denied</em><br /> what am i doing wrong?</p> <p>I am running ubuntu 7.10 live session (booting with cd).<br /> Even after a fresh reboot i get this message.<br /> I tried unpacking but that did not work also.<br /> On all partitions i get the same message!</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-124781</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-124781</link>
				<description></description>
				<pubDate>Fri, 14 Mar 2008 01:16:03 +0000</pubDate>
				<wikidot:authorName>TriscuiT</wikidot:authorName>				<wikidot:authorUserId>95943</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I have just received a 2TB version. I haven't booted it yet. Is there any desire to get a clean backup image of this thing? If so, I need the Linux command line necessary to get both drives.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-123090</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-123090</link>
				<description></description>
				<pubDate>Tue, 11 Mar 2008 17:09:17 +0000</pubDate>
				<wikidot:authorName>David Newall</wikidot:authorName>				<wikidot:authorUserId>94660</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>These files don't include the boot loader, kernel or initial ramdisk image, all of which lie outside of the partition space. Note that the first partition starts 16M into the disk. The space between the first block and the start of the first partition (sectors 1 through 48194) contain all of the above.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-116908</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-116908</link>
				<description></description>
				<pubDate>Sun, 02 Mar 2008 20:21:21 +0000</pubDate>
				<wikidot:authorName>FermionTheClown</wikidot:authorName>				<wikidot:authorUserId>90445</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>FWIW, there's a tarball of firmware 1.18 at <a href="http://support.wdc.com/download/mybook/WD-GPL-v1.18.tar.bz2">http://support.wdc.com/download/mybook/WD-GPL-v1.18.tar.bz2</a></p> <p>Still downloading it, so not sure whether it's source (as it says) or if it contains an installer and firmware package.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-103227</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-103227</link>
				<description></description>
				<pubDate>Wed, 06 Feb 2008 17:17:59 +0000</pubDate>
				<wikidot:authorName>ionoff</wikidot:authorName>				<wikidot:authorUserId>40538</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>yes but follow the rescue procedure linked on the top left, my backup images I had grabbed the wrong drive's sectors and it explains a hybrid method for recovering, from zeroing out first 3gb and everything.</p> <p>You will have to manually setup the raid though, I dont have a WE II so I have never done it, but there are threads on people repairing it.</p> <p>There is also the Debian Lenny (arm edition) that tends to work well, but is a little more time consuming, and you may want to build a serial adapter to have console.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-102823</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-102823</link>
				<description></description>
				<pubDate>Tue, 05 Feb 2008 22:01:46 +0000</pubDate>
				<wikidot:authorName>4umfreak</wikidot:authorName>				<wikidot:authorUserId>78008</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I have a MyBook World Ed. II with no hard drives - Can I install a matched set of Seagate drives and use the above info to get up and running?</p> <p>-Much appreciated.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-63110</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-63110</link>
				<description></description>
				<pubDate>Tue, 30 Oct 2007 15:46:38 +0000</pubDate>
				<wikidot:authorName>lukasz</wikidot:authorName>				<wikidot:authorUserId>45707</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I have asked my friend to re-do the procedure for images.<br /> Unfortunately sda3 which contains VAR does not want to mount when the WD is booting - with the message "device or resource busy" but it can be mounted manually when the hd is connected directly to the PC by serial ATA. anybody has a clue?</p> <p>Sorry to ask again, can somebody make the image of the whole WD 500? it would make the whole procedure simple and the compressed image should not be larger than 100&nbsp;MB</p> <p>If it can not be made public I can provide ftp that it can be stored - just pm me for details.</p> <p>Lukasz</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-62984</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-62984</link>
				<description></description>
				<pubDate>Tue, 30 Oct 2007 03:50:22 +0000</pubDate>
				<wikidot:authorName>PCnity</wikidot:authorName>				<wikidot:authorUserId>43911</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hi</p> <p>I managed to work out all problems. Today i zero filled the drive and edited the manual step by step. It is finally working. All images are correct.<br /> <a href="http://mybookworld.wikidot.com/forum/t-23918/recovering-original-fw-tested">http://mybookworld.wikidot.com/forum/t-23918/recovering-original-fw-tested</a></p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-62908</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-62908</link>
				<description></description>
				<pubDate>Mon, 29 Oct 2007 22:43:24 +0000</pubDate>
				<wikidot:authorName>ionoff</wikidot:authorName>				<wikidot:authorUserId>40538</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>these are the really clean images… the device was bought from the store and ripped open to be ripped…</p> <p>It sounds to me like you did a file recovery without extracting the permissions.</p> <p>Via shell can you change passwords using passwd?</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-62742</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-62742</link>
				<description></description>
				<pubDate>Mon, 29 Oct 2007 13:43:06 +0000</pubDate>
				<wikidot:authorName>lukasz</wikidot:authorName>				<wikidot:authorUserId>45707</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>After what should be a really successfull bringing to life using files from this page I have following problems:</p> <p>- When IP is set up as static everytime I want to access the device by web interface it produces cache errors, each page must be reloaded<br /> - There are some kind of problems with Mionet - when it is turned on device can not be accessed through the web interface (but shared directories are visible on lan)<br /> - web interface produces message 500 Internal Server Error frequently<br /> - password can not be modified - even if it is changed, after cold restart it returns to standard 123456</p> <p>Anyone has a clue what can it be? If somebody knows where to get the really "clean" image of all small partitions? to get rid of this problems?</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-62431</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-62431</link>
				<description></description>
				<pubDate>Sun, 28 Oct 2007 04:58:14 +0000</pubDate>
				<wikidot:authorName>ionoff</wikidot:authorName>				<wikidot:authorUserId>40538</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>sorry about that…<br /> I forgot to include SDA3_IMA.BZ2… please get it from here <a href="http://rapidshare.com/files/65696103/SDA3_IMA.BZ2">SDA3_IMA.BZ2 (19k)</a></p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-62400</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-62400</link>
				<description></description>
				<pubDate>Sun, 28 Oct 2007 00:30:08 +0000</pubDate>
				<wikidot:authorName>anhil</wikidot:authorName>				<wikidot:authorUserId>46355</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I cannot find SDA3_IMA.BZ2 in the WD_MYBOOK_WE_500GB_IMA.7z. Can somebody confirm, that it really is there.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-62179</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-62179</link>
				<description></description>
				<pubDate>Fri, 26 Oct 2007 22:06:50 +0000</pubDate>
				<wikidot:authorName>ionoff</wikidot:authorName>				<wikidot:authorUserId>40538</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>read my post at <a href="http://mybookworld.wikidot.com/backup-images-of-mybook">http://mybookworld.wikidot.com/backup-images-of-mybook</a></p> <p>what you need is the mbr, ptable and disk images (really file is all you truely need)<br /> We have had lots of success restoring we's the past few weeks.</p> <p><em>3gb = 3221225472bytes<br /> /512bytes = 6291456</em></p> <blockquote> <p>dd if=sda_diskimage of=/dev/sda bs=512 count=6291456</p> </blockquote> <p>however I prefer to pipe it to bzip2 to compress the image</p> <blockquote> <p>dd if=sda_diskimage of=/dev/sda bs=512 count=6291456 | bzip2 &gt; sda_image.bz2</p> </blockquote> <p>but you will probably want to get each partition individually or just use the base ones I submitted from a clean system, with the mbr located at the bottom.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-62175</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-62175</link>
				<description></description>
				<pubDate>Fri, 26 Oct 2007 21:16:29 +0000</pubDate>
				<wikidot:authorName>lukasz</wikidot:authorName>				<wikidot:authorUserId>45707</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I am not "linux compatible" I will see my linux guy on Monday and if nobody else tell us here how to do it I will ask my work friend to post here some basic linux commands to do this.</p> <p>Lukasz</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-62172</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-62172</link>
				<description></description>
				<pubDate>Fri, 26 Oct 2007 20:53:07 +0000</pubDate>
				<wikidot:authorName>blitzsd</wikidot:authorName>				<wikidot:authorUserId>46107</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I have a 1TB World Book Edition that is brand new. It has a single drive inside.</p> <p>If you can give me the correct commands to create the first 3GB, I will try to create an image. I have several World Book shells and want to put 500GB drives inside and make them work like the 1TB version.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-62115</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-62115</link>
				<description></description>
				<pubDate>Fri, 26 Oct 2007 16:10:48 +0000</pubDate>
				<wikidot:authorName>lukasz</wikidot:authorName>				<wikidot:authorUserId>45707</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Friend of mine managed to get it working!. using the beginning from rescue.zip and the rest from the files 2 files listed here. At this stage it started to boot but still no activity on the LAN. - By putting some logs into the booting procedrure (do not ask me at this moment where) he ended up with the discovery that the in etc/fstab dev mda1 should be dev sda1 and the same for the other partitions - after that procedure disk is visible on lan. The only thing which is not working is the WD remote access software - for some reason it can not be activated by the web interface. Rest seems to be ok.</p> <p>Anyway if somebody could make a exact bit by bit copy of the first 3&nbsp;GB (gigabytes) which will contain all small partitions and post it somewhere it would be probably the best solution…<br /> Lukasz</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-62084</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-62084</link>
				<description></description>
				<pubDate>Fri, 26 Oct 2007 14:18:24 +0000</pubDate>
				<wikidot:authorName>kknapp</wikidot:authorName>				<wikidot:authorUserId>45698</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>If you extract the files for sda1 and look in 'usr/www/nbin/dm_formatInternal.sh' line 70 is "dd if=$OLD of=$DEV bs=512 count=48194" which copies the first 16MB from the original drive to a new drive. I believe this is what is needed to get these images to work.</p> <p>On <a href="http://mybookworld.wikidot.com/forum/t-23918/recovering-original-fw-tested">http://mybookworld.wikidot.com/forum/t-23918/recovering-original-fw-tested</a> in the comments there is a new rapidshare link to a working rescue.zip. The rescue.img it contains is only 3MB. I just finished testing with it and I get the LED's to light up but no activity on the NIC.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-62057</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-62057</link>
				<description></description>
				<pubDate>Fri, 26 Oct 2007 11:21:10 +0000</pubDate>
				<wikidot:authorName>lukasz</wikidot:authorName>				<wikidot:authorUserId>45707</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>My linux friend found on the on the net first 25&nbsp;MB of the drvie - so we have what is between MBR and the partion. But this in not the end of the problem - drive is booting now, but we still do not have communication on LAN - he is working on it but the real remedium would by the bit by bit copy of the first 3 or maybe 5&nbsp;GB of the drive, with all partitions and data except the "data" partition.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-62041</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-62041</link>
				<description></description>
				<pubDate>Fri, 26 Oct 2007 09:04:55 +0000</pubDate>
				<wikidot:authorName>lukasz</wikidot:authorName>				<wikidot:authorUserId>45707</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>According to my linux compatible friend who is helping me with the WD Mybookworld 500 to be able to really solve the problem we need more than just MBR - exact copy of the first 1&nbsp;MB or a bit more maybe- 3MB of the HD is needed, and the partition table description (if it is different than the one on the top of the page) - we have tested new MBR + all partitions from 2 files and is does not want to boot. According to my friend nice new MBR what we have now is pointing to some sector and head on the drive which is beyond the MBR but before partition, so that is why exact copy is needed, with the description how it was copied to allow to copy it back.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-62018</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-62018</link>
				<description></description>
				<pubDate>Fri, 26 Oct 2007 05:52:19 +0000</pubDate>
				<wikidot:authorName>ionoff</wikidot:authorName>				<wikidot:authorUserId>40538</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p><a href="http://rapidshare.com/files/65242458/mybook_we_rescue.zip">http://rapidshare.com/files/65242458/mybook_we_rescue.zip</a></p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-61982</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-61982</link>
				<description></description>
				<pubDate>Fri, 26 Oct 2007 00:58:17 +0000</pubDate>
				<wikidot:authorName>kknapp</wikidot:authorName>				<wikidot:authorUserId>45698</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Now that I've seen the new sda_mbr it can be duplicated on any drive with the program "installer" from either the WD source or the one at <a href="http://www.ismprofessional.net/pascucci/index.php/mybook-repository/">http://www.ismprofessional.net/pascucci/index.php/mybook-repository/</a></p> <p>First erase the MBR<br /> dd if=/dev/zero of=/dev/sda bs=512 count=1<br /> Now create the partition talbes<br /> sfdisk /dev/sda &lt; SDA_PTAB<br /> Use "installer" to modify MBR for bootloader<br /> dd if=/dev/sda of=new_mbr bs=512 count=1<br /> ./installer new_mbr<br /> dd if=new_mbr of=/dev/sda bs=512 count=1</p> <p>Even with the new MBR the device will not function without the sectors between the MBR and the start of partition 1. This is were the stage1.bin and u-boot.img bootloader reside. I rebuilt the buildroot and stage1.bin and u-boot.img from the WD source and I can get the LED's on the front to light up. It doesn't dhcp or respond to the default IP "192.168.1.128" list in "/etc/default-setting". And none of the files on the drive seem to be touched. I don't have the serial cable (on the way) so I cann't see what is still failing. I think it has to do with u-boot. That were I've gotten so far</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-61948</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-61948</link>
				<description></description>
				<pubDate>Thu, 25 Oct 2007 22:13:42 +0000</pubDate>
				<wikidot:authorName>floris</wikidot:authorName>				<wikidot:authorUserId>42635</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I feel like a wiki newbie. Note for myself: wikidot likes to hide files added to pages. I should not forget to post a link to the file on the page. The file is otherwise only visible when hitting the file link at the bottom of the page.</p> <p>Right. Done so for the sda_mbr file. The link to that file is now also on the page. Enjoy.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-61912</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-61912</link>
				<description></description>
				<pubDate>Thu, 25 Oct 2007 19:52:40 +0000</pubDate>
				<wikidot:authorName>lukasz</wikidot:authorName>				<wikidot:authorUserId>45707</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Sorry for dumb question - Added to this page? where ?</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-61899</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-61899</link>
				<description></description>
				<pubDate>Thu, 25 Oct 2007 18:57:06 +0000</pubDate>
				<wikidot:authorName>floris</wikidot:authorName>				<wikidot:authorUserId>42635</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>MBR from an out of the box WD MyBook WE 500GB is added as file to the page.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-61898</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-61898</link>
				<description></description>
				<pubDate>Thu, 25 Oct 2007 18:54:55 +0000</pubDate>
				<wikidot:authorName>floris</wikidot:authorName>				<wikidot:authorUserId>42635</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>while (true); do { kill -USR1 $pid; sleep 1; }; done<br /> No wonder it takes some extra time to run when performing this breaking every second ;-)</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-61879</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-61879</link>
				<description></description>
				<pubDate>Thu, 25 Oct 2007 18:08:52 +0000</pubDate>
				<wikidot:authorName>kknapp</wikidot:authorName>				<wikidot:authorUserId>45698</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I used the installer from <a href="http://www.ismprofessional.net/pascucci/index.php/mybook-repository/">http://www.ismprofessional.net/pascucci/index.php/mybook-repository/</a> to modify the MBR that you provided and have the blue lights working but i'm not seeing it on the network (i'm working on it now). I created a simple script if you want it, it uses the disk images so it will take some time to finish.</p> <p><span style="text-decoration: line-through;">-</span>Cut Here——<br /> #!/bin/bash<br /> #Restores a hard drive to the original My Book World file system<br /> HD=$1<br /> if[ -z "$HD" ]; then<br /> echo "./restore.sh &lt;device&gt;"<br /> exit<br /> fi<br /> echo "Restoring the MBR"<br /> dd if=SDA_MBR of=$HD bs=512 count=1<br /> echo "Restoring the partition table"<br /> sfdisk $HD &lt; SDA_PTAB</p> <p>echo "Restoring partition 1"<br /> bzcat SDA1_IMA.BZ2 | dd of="$HD"1 &amp; pid=$!<br /> while (true); do { kill -USR1 $pid; sleep 1; }; done<br /> echo "Restoring partition 2"<br /> bzcat SDA2_IMA.BZ2 | dd of="$HD"2 &amp; pid=$!<br /> while (true); do { kill -USR1 $pid; sleep 1; }; done<br /> echo "Restoring partition 4"<br /> bzcat SDA4_IMA.BZ2 | dd of="$HD"4 &amp; pid=$!<br /> while (true); do { kill -USR1 $pid; sleep 1; }; done</p> <p>#Temp fix<br /> dd if=$HD of=mbr bs=512 count=1<br /> ./installer mbr<br /> dd if=mbr of=$HD bs=512 count=1<br /> <span style="text-decoration: line-through;">-End cut</span>-</p> <p>I'm about to turn it off and see if there are any log messages, i'll let you know.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-61860</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-61860</link>
				<description></description>
				<pubDate>Thu, 25 Oct 2007 16:46:17 +0000</pubDate>
				<wikidot:authorName>lukasz</wikidot:authorName>				<wikidot:authorUserId>45707</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Thank You, but <a href="http://szabados.sk/mybook_we_rescue.zip">http://szabados.sk/mybook_we_rescue.zip</a> (needed for this procedure) does not seems to be available any more. Posting boot sector would be just very fine, I have somebody to help me restore the whole thing if we have good MBR</p> <p>Lukasz</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-61847</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-61847</link>
				<description></description>
				<pubDate>Thu, 25 Oct 2007 15:57:03 +0000</pubDate>
				<wikidot:authorName>ionoff</wikidot:authorName>				<wikidot:authorUserId>40538</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I can confirm that I did copy the MBR from the wrong drive in my archive.</p> <p><a href="http://mybookworld.wikidot.com/forum/t-23918/recovering-original-fw-tested">http://mybookworld.wikidot.com/forum/t-23918/recovering-original-fw-tested</a><br /> Has a few files from the original archive + a large chunk of the front of the disk with a working mbr in it.</p> <p>I am waiting for some free time to rewrite the instructions and include new files.<br /> I will essentially wipe a world edition clean and rebuild from scratch with using the file only method instead of the disk images. (except the mbr and ptables)</p> <p>I am planning on writing a bash script to rebuild it for you. (By using the file method, it should not be size dependent and should be quicker at restoring.)</p> <p>Also the MBR in the other post, is a 100mb disk image (mostly empty space), it does not need to be this big.<br /> The MBR bootsector is under 512 bytes. (really just a pointer to /boot or the bootloader wherever it is)</p> <p>I will still need someone to test it on a bricked WE II (2 drives) to see how the raid is, or if someone has a new 2 drive system and is not afraid to open it, mount and rip the filesystems and mbr and ptables)<br /> WARNING: only try to restore on a WB II if it is the last resource. I do not have one to test with and I don't want you making it worse with these files.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-61833</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-61833</link>
				<description></description>
				<pubDate>Thu, 25 Oct 2007 15:18:50 +0000</pubDate>
				<wikidot:authorName>lukasz</wikidot:authorName>				<wikidot:authorUserId>45707</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>And? You have the drive booting? My friend tried to use files posted here but in his opinion MBR is wrong - system does not want to boot, no blue fun lights….</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-61832</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-61832</link>
				<description></description>
				<pubDate>Thu, 25 Oct 2007 15:07:09 +0000</pubDate>
				<wikidot:authorName>lukasz</wikidot:authorName>				<wikidot:authorUserId>45707</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Can somebody post the link to the newly dumped sda_mbr from mybookworld 500GB? the one posted is not good.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-61821</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-61821</link>
				<description></description>
				<pubDate>Thu, 25 Oct 2007 14:39:43 +0000</pubDate>
				<wikidot:authorName>kknapp</wikidot:authorName>				<wikidot:authorUserId>45698</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>To drop the disk image files onto the partitions I used this command:</p> <p>bzcat &lt;file&gt; | dd of=&lt;dev&gt; &amp; pid=$!;while (true); do { clear; kill -USR1 $pid; sleep1; }; done</p> <p>This will decompress and dd the image giving status output.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-58166</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-58166</link>
				<description></description>
				<pubDate>Mon, 15 Oct 2007 18:50:33 +0000</pubDate>
				<wikidot:authorName>ionoff</wikidot:authorName>				<wikidot:authorUserId>40538</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>yeah, when I have time I will crack open the mybook I got the dump off of (its not clean anymore, as I have been using it as a compile box, just because x-compiling for arm tends to have problems) and compare it.</p> <p>Until then, could you post your MBR and add a link to it in the wiki entry?</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-58125</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-58125</link>
				<description></description>
				<pubDate>Mon, 15 Oct 2007 16:42:19 +0000</pubDate>
				<wikidot:authorName>floris</wikidot:authorName>				<wikidot:authorUserId>42635</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>md5sum sda_mbr<br /> be250799bf981aec0fc38a76b5a404b7 sda_mbr</p> <p>No match. I retrieved and verified this mbr twice, without any other disks attached to the system used. But the mbr from the archive can still be from a my book.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-57829</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-57829</link>
				<description></description>
				<pubDate>Sun, 14 Oct 2007 22:41:39 +0000</pubDate>
				<wikidot:authorName>ionoff</wikidot:authorName>				<wikidot:authorUserId>40538</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>good catch,<br /> Can you get the md5 of your SDA_MBR</p> <p>The one in the archive is:<br /> 2915da05007150c56eac34d93f110429 SDA_MBR</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-57763</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-57763</link>
				<description></description>
				<pubDate>Sun, 14 Oct 2007 18:07:16 +0000</pubDate>
				<wikidot:authorName>floris</wikidot:authorName>				<wikidot:authorUserId>42635</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>It was a bit tricky but found it out by use of these nobs and two screwdrivers. Pitty I teared the rubber band somewhat first when I removed it.</p> <p>btw: there is a flaw in the tutorial. In the commandline for creating the SDA_MBR: hda =&gt; sda.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-57510</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-57510</link>
				<description></description>
				<pubDate>Sat, 13 Oct 2007 16:03:38 +0000</pubDate>
				<wikidot:authorName>ionoff</wikidot:authorName>				<wikidot:authorUserId>40538</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>There are two nobs in the air holes, you press down on and pull the side casing off.</p> <p>I have pictures I am going to put together in a tutorial.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-57491</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-57491</link>
				<description></description>
				<pubDate>Sat, 13 Oct 2007 14:45:20 +0000</pubDate>
				<wikidot:authorName>floris</wikidot:authorName>				<wikidot:authorUserId>42635</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Before I demolish the my book world edition: how do I open it?</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-56867</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB - Firmware: 01.01.18</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-56867</link>
				<description></description>
				<pubDate>Thu, 11 Oct 2007 14:21:56 +0000</pubDate>
				<wikidot:authorName>sTs</wikidot:authorName>				<wikidot:authorUserId>32434</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>great stuff - thanks</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-55804</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB - Firmware: 01.01.18</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-55804</link>
				<description></description>
				<pubDate>Mon, 08 Oct 2007 19:21:25 +0000</pubDate>
				<wikidot:authorName>ionoff</wikidot:authorName>				<wikidot:authorUserId>40538</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>it is now a wiki page, linked in howto and under main.<br /> <a href="http://mybookworld.wikidot.com/backup-images-of-mybook">wiki page</a></p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-55611</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB - Firmware: 01.01.18</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-55611</link>
				<description></description>
				<pubDate>Mon, 08 Oct 2007 08:39:26 +0000</pubDate>
				<wikidot:authorName>sTs</wikidot:authorName>				<wikidot:authorUserId>32434</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Great idea, how do you fancy adding a page for this on the wiki</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-55592</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB - Firmware: 01.01.18</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-55592</link>
				<description></description>
				<pubDate>Mon, 08 Oct 2007 07:22:17 +0000</pubDate>
				<wikidot:authorName>anandus</wikidot:authorName>				<wikidot:authorUserId>38724</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hey thanks! This might help a bricked Mybook.</p> <p>Thanks for the effort!</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-55503</guid>
				<title>Re: Complete Fresh Backup of MyBook World 500GB - Firmware: 01.01.18</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-55503</link>
				<description></description>
				<pubDate>Sun, 07 Oct 2007 21:59:40 +0000</pubDate>
				<wikidot:authorName>Zium</wikidot:authorName>				<wikidot:authorUserId>39706</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Thanks a lot, nice job and idea.<br /> I've taken both files, could help someone if needed.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://mybookworld.wikidot.com/forum/t-22275#post-55487</guid>
				<title>Complete Fresh Backup of MyBook World 500GB - Firmware: 01.01.18</title>
				<link>http://mybookworld.wikidot.com/forum/t-22275/complete-fresh-backup-of-mybook-world-500gb#post-55487</link>
				<description></description>
				<pubDate>Sun, 07 Oct 2007 21:27:42 +0000</pubDate>
				<wikidot:authorName>ionoff</wikidot:authorName>				<wikidot:authorUserId>40538</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p><span style="text-decoration: underline;"><strong>What is this</strong></span><br /> These are backups of a brand new, never booted, Western Digital MyBook World Edition 500GB (single drive not II) Since the only way people as of creating these have to restore a bricked MB WE is to rebuild a Debian edition using the sources available which takes a long time and is confusing to many. I decided to open up an brand new one and rip the hard disk images, partition table, master boot record, and complete file systems keeping all permissions. The Firmware is 01.01.18. I used System Rescue CD, to obtain access to the drives. Running PartImage fails, so I used DD.</p> <hr /> <p><span style="text-decoration: underline;"><strong>Disclaimer</strong></span><br /> I have not tested that these work to restore a bricked system or if they will work on other sizes or the two disk version. So in essence, you screw it up by using any part of this… it's your fault, I take no blame. I would suggest you have Linux knowledge prior to using or attempting to use these. Of course, if you took the risk of hacking your MyBook World, then you should have already known this. I guestimate that these should be able to recreate a fresh out of the box MyBook World Edition. I am not your tech support, so don't try to contact me for it. Post to the forum, and if I can I will try to help.</p> <hr /> <p><span style="text-decoration: underline;"><strong>Conversion Table from Mounted Drive to Actual WD FS</strong></span></p> <table class="wiki-content-table"> <tr> <th>Name</th> <th>Partition Type</th> <th>Partition Size</th> <th>File System</th> <th>Mounted On</th> </tr> <tr> <td>sda1</td> <td>ext3fs</td> <td>2.80 GiB</td> <td>/dev/root and rootfs</td> <td>/</td> </tr> <tr> <td>sda2</td> <td>swap (v1)</td> <td>101.98 MiB</td> <td></td> <td></td> </tr> <tr> <td>sda3</td> <td>ext3fs</td> <td>964.84 MiB</td> <td>/dev/md3</td> <td>/var</td> </tr> <tr> <td>sda4</td> <td>ext3fs</td> <td>461.89 GiB</td> <td>/dev/md4</td> <td>/shares/internal</td> </tr> </table> <hr /> <p><span style="text-decoration: underline;"><strong>Files</strong></span><br /> <em><strong>- Master Boot Record -</strong></em></p> <ul> <li><em>SDA_MBR</em></li> </ul> <p>This was acquired by running "dd if=/dev/sda of=sda_mbr bs=512 count=1"<br /> You would restore this by "dd if=sda_mbr of=/dev/sda bs=512 count=1"</p> <p><em><strong>- Partition Table -</strong></em></p> <ul> <li><em>SDA_PTAB</em></li> </ul> <p>This was acquired by running "sfdisk -d /dev/sda &gt; sda_ptable"<br /> You would restore this by "sfdisk /dev/sda &lt; sda_ptable"</p> <p><em><strong>- BitByBit Disk Copies -</strong></em><br /> (These are exact copies of the partitions and will extract to be the partition size)</p> <ul> <li><em>SDA1_IMA.BZ2</em></li> <li><em>SDA2_IMA.BZ2</em></li> <li><em>SDA3_IMA.BZ2</em></li> <li><em>SDA4_IMA.BZ2</em></li> </ul> <p>These were acquired by running "dd if=/dev/sda1 | bzip2 &gt; sda1_image.bz2" on each partition where sda1 is sda1-sda4<br /> You would restore this by "dd if=sda1_ima of=/dev/sda1", however since I piped them out as bzip2 files you will need to pipe in the std out of bzip into dd. I can't remember the command line options at this time.<br /> WARNING: SDA4_IMA.BZ2 will extract to 461.89 GiB, as each file will extract to its original partition size.</p> <p><em><strong>- File System Dump Containing Permissions -</strong></em><br /> (These contain the file system for each partition while keeping full fs permissions)</p> <ul> <li><em>SDA1FILE.TAR.gz</em></li> <li><em>SDA3FILE.TAR.gz</em></li> <li><em>SDA4FILE.TAR.gz</em></li> </ul> <p>This is acquired by mounting each partition as read-only as ext3 and tar/gzipping them with permissions. I can't quite remember which command options I did at the time.<br /> You would restore these by mounting the partition and just extracting and writing over your files in your partition as root. You may need to delete other files you have created that are not in the archive, especially in your init.d.<br /> You can also grab the files you may have corrupted individually as this is a copy of the files and structure. When mounting the FS you need to specify the type as ext3. Auto will detect the raid configuration and is unable to mount.</p> <hr /> <p><span style="text-decoration: underline;"><strong>File Downloads</strong></span><br /> The files are packaged as 7Zip Archives, use <a href="http://www.7-zip.org/">7-Zip</a> or <a href="http://rarsoft.com/download.htm">WinRar</a></p> <p>Since I am not positive about storing these files and Western Digital's EULA, I posted them on rapidshare.</p> <p>Please mirror and post here. Posting back to rapidshare is pointless unless you reencode them in another compression format, as once a file is deleted, so is it's hash.</p> <hr /> <p>This first link is probably the one everyone will probably use. It contains the file structures (with the files) with the mbr and partition table.</p> <ul> <li><em>SDA1FILE.TAR.gz</em></li> <li><em>SDA3FILE.TAR.gz</em></li> <li><em>SDA4FILE.TAR.gz</em></li> <li><em>SDA_MBR</em></li> <li><em>SDA_PTAB</em></li> <li><em>ReadMe.pdf</em></li> <li><em>ReadMe.txt</em></li> </ul> <p><a href="http://rapidshare.com/files/60953398/WD_MYBOOK_WE_500GB_FILE.7z">WD_MYBOOK_WE_500GB_FILE.7z (59MiB)</a></p> <hr /> <p>This link will probably not be used by many. It contains the raw disk images with the mbr and partition table.</p> <ul> <li><em>SDA1_IMA.BZ2</em></li> <li><em>SDA2_IMA.BZ2</em></li> <li><em>SDA3_IMA.BZ2</em></li> <li><em>SDA4_IMA.BZ2</em></li> <li><em>SDA_MBR</em></li> <li><em>SDA_PTAB</em></li> <li><em>ReadMe.pdf</em></li> <li><em>ReadMe.txt</em></li> </ul> <p>WARNING: These expand to the 500GB, mostly of empty space.<br /> <a href="http://rapidshare.com/files/60953400/WD_MYBOOK_WE_500GB_IMA.7z">WD_MYBOOK_WE_500GB_IMA.7z (57MiB)</a></p> 
				 	]]>
				</content:encoded>							</item>
				</channel>
</rss>