| english | german |
Test Website - Work in progres..
Contact us for individual offers!

Asus EEEPC HowTos

:: 2008-06-01 ::

HowTo boot from Stick or SD and restore the system

gives you restore function to go back to delivery state

USB ....... SD... is the SD drive, not a USB Stick (!)


Full Backup of SDD


i prefer a full backup of the whole SDD card including partition-table and all partitions to an external drive. here is howto...

i used puppy-linux, which is not funny at all to me, but it works well and installs easly on a USB Stick.

these links explain all about it:

backup page in eeeuserwiki .

Compressed Dump

sudo bash
mkdir /mnt/backupdrive
mount /dev/sdX /mnt/backupdrive

check the correct device or U kill some drive!!

it is not necessary hdc - it changes if u have USB drive or SD cards

the 'dd' step takes about 2 hours - at least with a old 40gb hdd via usb and the 4GB SSD

quote ::

dd if=/dev/hdc | gzip -c9 > /PATH/TO/BACKUP.gz


And to restore it:

gunzip -c /PATH/TO/BACKUP.gz | dd of=/dev/hdc