10-14-2022, 10:45 AM
to get a complete image of your usb stick, assuming it is still sdg[1], the 1 is just the first partition of your usb device
when susing older versions of dd you have to remove status=progress (this helps to see how much data is already copied)
dd if=/dev/sdg of=fullusb.dd bs=512 status=progress
this will make a full 1:1 copy of your usb stick, image size = usb-stick size, so 4gb usb will result in 4gb dd image
when susing older versions of dd you have to remove status=progress (this helps to see how much data is already copied)
dd if=/dev/sdg of=fullusb.dd bs=512 status=progress
this will make a full 1:1 copy of your usb stick, image size = usb-stick size, so 4gb usb will result in 4gb dd image