DSL Tips and Tricks :: Backup of bootfloppy & USB-pen-drive
I have done some modifications to my USB-bootfloppy. Also I have done some changes to my USB-pen-drive. Now I would like to backup both.
Which is the easiest and best way? How to backup/testore from/to an image-file?
Maybe there is also a possibility to copy them in some way?
Thank you.Floppy backup:
Code Sample
dd if=/dev/fd0 of=/some/filename.img
Floppy create:
Code Sample
dd if=/some/filename.img of=/dev/fd0
I assume you could do the same with /dev/sda1, but it's probably not necessary with the read-only base system (that would add 50mb of data to a backup). DSL has a builtin feature to backup your data, which can be used to make a backup on any writeable device.Assuming all you need is your personal settings for DSL, just copy the backup.tar.gz off the usb drive to some secure location.Thank you.
I haven't thought, that a backup/restore of both is so easy.
original here.