LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Mount (https://www.linuxquestions.org/questions/linux-newbie-8/mount-789840/)

rizme 02-17-2010 09:43 PM

Mount
 
how can i mount ntfs file system in linux

fang0654 02-17-2010 09:49 PM

Use the program ntfs-3g. For example:

Code:

sudo ntfs3g /dev/sda1 /mnt/windows
Replace
Code:

/dev/sda1
with whichever partition is your ntfs partition. You can find out with:

Code:

sudo fdisk -l
Also make sure the mount point (/mnt/windows) exists.

reed9 02-17-2010 09:50 PM

Install ntfs-3g
Code:

ntfs-3g /dev/sdxx /mnt/MyMountPoint
Where /dev/sdxx is the partition you want to mount, and /mnt/MyMountPoint is the mount point of your choice.

http://www.tuxera.com/community/ntfs-3g-faq/

Since you gave absolutely no information, we cannot direct you further. You might want to read this.

EDIT: Beat to the punch. :)

vinaytp 02-17-2010 10:58 PM

Code:

# mount -t ntfs /dev/sdax /mnt/MountPoint
Where /dev/sdax is your ntfs file system.


All times are GMT -5. The time now is 09:21 PM.