Linux Forums - Linux Help,Advice & support community:LinuxSolved.com

Others => Miscellaneous => Topic started by: samu on August 06, 2009, 09:41:38 AM

Title: mounting ntfs partion in EL5
Post by: samu on August 06, 2009, 09:41:38 AM
can i mount NTFS part ion in LINUX
Title: Re: mounting ntfs partion in EL5
Post by: Ricky on August 09, 2009, 12:35:28 PM
Yes .. you can.. try following..

Code: [Select]
sudo mkdir /tmp/winxp
sudo mount -t ntfs-3g /dev/sda3 /tmp/winxp

First line creates directory where we will mount ntfs partition, while /dev/sda3 is your ntfs partition.  You can find out about your partition numbers by :
Code: [Select]
fdisk -l /dev/sdaThis will display all current partitions on /dev/sda i.e First SATA HDD
Title: Re: mounting ntfs partion in EL5
Post by: kaushalpatel1982 on October 09, 2009, 11:07:09 AM
You might require fuse-ntfs-3g installed before you do compelete the steps provided by Ricky.