mount NTFS on linux
#how to mount a ntfs partition/drive on linux
linux may not integrate ntfs driver, so you need install ntfs-3g
ntfs-3gis an opensource ntfs driver for linux#yum install ntfs-3gdetect your ntfs partition name
partedis an gnu partition tool that can analize disk likefdiskwhich supportGPT#parted >print allfind you ntfs partition name. eg. /dev/sdb1
mount
#mkdir /mnt/ntfs #mount -t ntfs-3g /dev/sdb1 /mnt/ntfsnow you can vist
/mnt/ntfs
others:
1. all operation need root privilege.
2. if you want regular user vist the mounted ntfs partition. you need mount like this:
mount -o umask=000 -t ntfs-3g /dev/sdb1 /mnt/ntfs1