Custom Search

Friday, June 17, 2011

How to mount HPFS/NTFS filesystem on linux (SOLVED)

How to mount HPFS/NTFS filesystem on linux


* Run following command to find all partitions and file system type
#sudo fdisk -l

1) Mount using mount command
#sudo mount /dev/sda2 /mnt/ntfs

OR

2) Mount using ntfs-3g command
#sudo ntfs-3g /dev/sda2 /mnt/ntfs



How to install ntfs-3g

a) Fedora/CentOS
#yum install fuse-ntfs-3g

b) Ubuntu
#sudo apt-get install ntfs-3g

No comments:

Post a Comment