how to clone bootable USB drive with linux / ubuntu

open terminal:
find out the two USB drive file paths:
lsblk

dd if='/dev/[path of input (source) device]' of='/dev/[path of output (destination) device]' bs=4M.

eg:
dd if=/dev/sdd of=/dev/sdb bs=4M

you can change bs=4M TO bigger size for big file clone

You may also like...