Quote:
I am running Fedora 26 from my 64GB USB Live flash drive. Looking for simple method to backup the entire drive to a matching 64GB USB drive.
|
What do you mean by "live" flash drive ? Most live distributions are read only so there would be nothing to back up.
Quote:
cp /home/filename /media/sdb1/filename
(Where /sdb1/ is you would indicate the name that fdisk -l gives it).
|
Quite empty on several fronts. What does "filename" refer to ? A user's home directory ? Also to backup an entire drive or home directory wouldn't
cp -aR be used or rsync -a? The regular cp is not recursive and does not preserve all information.
Also the links in /dev/disk/by-label or /dev/disk/by-id are safer and quicker to use than fdisk and referring to raw device nodes. Also auto-mounts by udev in /media use file system labels if they exist so there is no need to refer to device nodes.