* read only 로 마운트 하기
Majority of current Linux distributions supports NTFS file system out of
the box. To be more specific, support for NTFS file system is more
feature of Linux kernel modules rather than Linux distributions. First
verify if we have NTFS modules installed on our system.
sudo ls /lib/modules/3.13.0-24-generic/kernel/fs/ | grep ntfs
fdisk -l | grep NTFS
mkdir /mnt/ntfs
mount -t ntfs /dev/sdb1 /mnt/ntfs
fdisk -l | grep NTFS
mkdir /mnt/ntfs
mount -t ntfs /dev/sdb1 /mnt/ntfs