Results 1 to 2 of 2
sudo mkdir /mnt/sdb1
sudo mount -t ntfs-3g /dev/sdb1 /mnt/sdb1
sudo dd if=/dev/sda of=/mnt/sdb1/sda.dd
I am basically mounting my portable hard drive (sdb1) and creating a bit image copy of sda ...
- 04-01-2010 #1Just Joined!
- Join Date
- Feb 2010
- Posts
- 13
DD Commands
sudo mkdir /mnt/sdb1
sudo mount -t ntfs-3g /dev/sdb1 /mnt/sdb1
sudo dd if=/dev/sda of=/mnt/sdb1/sda.dd
I am basically mounting my portable hard drive (sdb1) and creating a bit image copy of sda on to the hard drive.
Can anyone explain what each line in the command is doing? e.g. what does ntfs-3g mean? what does the third line mean?
Can someone please explain?
Thanks
- 04-01-2010 #2
ntfs-3g means you are mounting NTFS formatted disk
3rd line copies a disk byte for byte to a file


Reply With Quote