szept wrote: Fri Mar 01, 2024 4:37 pm
Ok, so this still looks for me as the safest way (and the solution I can understad). Just the part with GParted... Does it mean I can let EasyOS do the partition sizing during first bootup (after standard EasyOS pendrive installation via easydd) OR I can do it using GParted instead (so not doing at first bootup, but before - straight after the installation process via easydd)? Is that correct? The reason I'm asking is I don't want to screw something up. I mean I used GParted to format drives, especially before or during Ubuntu installation process and that wasn't too difficult, but I've no idea what EasyOS needs in terms of partition type and sizes, so I'm a bit worried I might stuck at something. However I'm happy to learn, so I appreciate if anyone can explain how to do the GParted working-partition sizing properly.
Regards,
Damian
You have to do it with Gparted, exactly the steps I posted.
The working partition has to be resized by Gparted to fill the drive, the files then copied, then boot the new usb-stick.
The files have to be already in place at first bootup of the usb stick.
If you are too worried about all those steps, you can use the "dd" method as posted above, as long as the new usb-stick has storage capacity either exactly the same (same make and model) or greater.
Reiterating, if your current usb-stick is, say, /dev/sdb and the new one is /dev/sbc, then copy is simple:
Code: Select all
# dd if=/dev/sdb of=/dev/sdc bs=1M
# sync
...the "sync" is important to flush everything to the drive, either as shown above or as Caramel posted.
Also vital that you correctly identify that /dev/sdc is your new usb-stick!
For your information:
"if" means "input file"
"of" means "output file"
"bs" means "block size"
Specifying bs=1M isn't essential, just makes writing to a flash drive more efficient.
One extra detail about the "dd' method. It might be best to bootup some other Linux, so that you are not running from the usb-stick that you want to clone. Not essential though.