I have a USB (8.0 GB, kingston) and inside it a Kali Linux image. I often used it in live mode w/ persistence, and I have some data there (plus config of the whole system) that I obviously don't want to lose. But, by some reasons, I have to dispose myself of that USB. My question is: Is there some way to back up everything, in a way that after getting another USB I could use the backup and reinstall it?
Many people suggesting dd command, I do not know if that works because of the way that persistence bootable USB are made: here
dd
for this kind of copy operation; usecat
instead. It's easier and often faster (never slower). In your case thedd
is desperately inefficient - and slow - because you're using the default (512b) block size. – Chris Davies Apr 06 '17 at 07:45dd
for such operations, in fact, I always assumed thatcat
would be slower, but thank you for explaining it to me :) – Michael Wilcox Apr 06 '17 at 07:57