Do the usb containing the clone usb contents need to be empty of files or can it
contain some wordpad files? Any links on how to do this with two USB sticks.
I dont want my HDD to contain anything of the cloned USB.
Thank you in advance.
Last edit: Scott Tingh 2016-10-31
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
"Usage would be something like sudo dd if=/dev/sdb of=~/USB_image where /dev/sdb is your usb drive as listed by sudo fdisk -l and ~/USB_image is the image file where the copy will be made (a path where the image file will be created).
To restore the image to another USB drive just invert the process: sudo dd if=~/USB_image of=/dev/sdb will restore ~/USB_image to the device sdb. Just make sure that the new USB drive is as big or bigger than the original one.
You can also mount the image file you just created into a path without need to restore it first to another USB drive with mount ~/USB_image /mnt/USB_image -o loop."
Hi lindylex,
Thanks for help. Quick question though.
Are we using Clonezilla or can any linux distro's built in imaging tools do it since commands are linux based (in your solutions)?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Do the usb containing the clone usb contents need to be empty of files or can it
contain some wordpad files? Any links on how to do this with two USB sticks.
I dont want my HDD to contain anything of the cloned USB.
Thank you in advance.
Last edit: Scott Tingh 2016-10-31
"Usage would be something like sudo dd if=/dev/sdb of=~/USB_image where /dev/sdb is your usb drive as listed by sudo fdisk -l and ~/USB_image is the image file where the copy will be made (a path where the image file will be created).
To restore the image to another USB drive just invert the process: sudo dd if=~/USB_image of=/dev/sdb will restore ~/USB_image to the device sdb. Just make sure that the new USB drive is as big or bigger than the original one.
You can also mount the image file you just created into a path without need to restore it first to another USB drive with mount ~/USB_image /mnt/USB_image -o loop."
~ http://askubuntu.com/questions/318893/how-do-i-create-a-bit-identical-image-of-a-usb-stick
Hi lindylex,
Thanks for help. Quick question though.
Are we using Clonezilla or can any linux distro's built in imaging tools do it since commands are linux based (in your solutions)?