Thursday 15 May 2014

Linux: Mount NTFS Formatted USB Drive

To mount an NTFS formatted partition under Linux use fdisk to determine the correct partition:

fdisk -l

Create a mount point in /mnt:

mkdir /mnt/usb

Mount partition as /mnt/usb:

mount -t ntfs /dev/sdd1 /mnt/usb

No comments:

Post a Comment