![]() |
Make an image of usb drive - Printable Version +- Linux Lite Forums (https://www.freecinema2022.gq/forums) +-- Forum: Software - Support (https://www.freecinema2022.gq/forums/forumdisplay.php?fid=5) +--- Forum: Other (https://www.freecinema2022.gq/forums/forumdisplay.php?fid=20) +--- Thread: Make an image of usb drive (/showthread.php?tid=3123) Pages:
1
2
|
Re: Make an image of usb drive - Valtam - 07-14-2016 DD tutorial in the Help Manual under Install Guide. Sent from my phone using Tapatalk Re: Make an image of usb drive - liamjake05 - 07-15-2016 I did not understand. I do not want to image a usb but I want to turn a usb into an image. Re: Make an image of usb drive - torreydale - 07-15-2016 I've mentioned Disks and Archive Manager. I'll add Clonezilla to the list. If these apps can see your SD card, one or more of them should be able to turn that data into a *.img and/or *.iso file. Re: Make an image of usb drive - liamjake05 - 07-15-2016 I want a program not a live boot. Just show me how to do this using dd. Re: Make an image of usb drive - torreydale - 07-15-2016 liamjake05, a few things: (1) Imaging SD card storage doesn't necessarily make it a live boot or even bootable. It puts it into an image file (*.img or *.iso), which from your initial post, is what you said you wanted. (2) You've said you don't want dd, and now you want lessons. (3) You're coming off as more demanding than appreciative or cooperative. (4) Others, including the LL creator, have chimed in. (5) It's been a business week. A combination of the following should explain what's happening when using dd: (A) Type the following into a terminal: Code: man dd https://www.youtube.com/watch?v=74A6pVrv0CA BUT, I think it would be simpler to use the Archive Manager in Linux Lite and combine what's on your SD card into a *.iso file. It's like zipping it using WinZip, but instead you're zipping it into a *.iso (ie. image) file. If that isn't sufficient, and if Disks gave you an issue over your partitions, Clonezilla would be a suitable choice. Clonezilla should be able to image your entire SD card with partitions into a single image file. Re: Make an image of usb drive - firenice03 - 07-15-2016 A little googling... and a find... Usage would be something like Code: sudo dd if=/dev/sdb of=~/USB_image FYI '~' equates to your users /home folder To restore the image to another USB drive just invert the process: Code: 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. I added additional comments... Make sure you are entering your USB/SDCard appropriately for the /dev/sdb paths Also, additional parameters may be required, I've not used dd, others may add input... Found here: http://askubuntu.com/questions/318893/how-do-i-create-a-bit-identical-image-of-a-usb-stick Re: Make an image of usb drive - Valtam - 07-15-2016 (07-15-2016, 04:39 PM)torreydale link Wrote: liamjake05, a few things: I echo point 3 here. Re: Make an image of usb drive - BurchSung - 06-04-2018 Hi.....I think it would be simpler to use the Archive Manager in Linux Lite and combine what's on your SD card into a *.iso file. It's like zipping it using WinZip, but instead you're zipping it into a *.iso (ie. image) file. If that isn't sufficient, and if Disks gave you an issue over your partitions, Clonezilla would be a suitable choice. turnkey pcb |