Find the answer to your Linux question:
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 ...
  1. #1
    Just 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

  2. #2
    Linux Guru coopstah13's Avatar
    Join Date
    Nov 2007
    Location
    NH, USA
    Posts
    3,149
    ntfs-3g means you are mounting NTFS formatted disk
    3rd line copies a disk byte for byte to a file

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...