April 19, 2024, 05:39:06 AM

News : LinuxSolved.com Linux Help Community Forum..


Author Topic: mounting ntfs partion in EL5  (Read 5114 times)

Offline samu

  • New Member
  • Posts: 2
mounting ntfs partion in EL5
« on: August 06, 2009, 09:41:38 AM »
can i mount NTFS part ion in LINUX

Offline Ricky

  • LST CareTaker
  • Specially Skilled
  • *****
  • Posts: 2381
Re: mounting ntfs partion in EL5
« Reply #1 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

Offline kaushalpatel1982

  • LST CareTaker
  • Linux Learner
  • *****
  • Posts: 87
Re: mounting ntfs partion in EL5
« Reply #2 on: October 09, 2009, 11:07:09 AM »
You might require fuse-ntfs-3g installed before you do compelete the steps provided by Ricky.