Linux and NTFS: Difference between revisions
From KlavoWiki
Jump to navigationJump to search
Created page with "To enable NTFS file partition mounting install the ntfs-3g tools. <pre> wget http://tuxera.com/opensource/ntfs-3g-2010.10.2.tgz tar xvzf ntfs-3g-2010.10.2.gz ./configure make ma..." |
No edit summary |
||
Line 1: | Line 1: | ||
To enable NTFS file partition mounting install the ntfs-3g tools. | To enable NTFS file partition mounting install the ntfs-3g tools. | ||
== Prerequisite == | |||
<pre> | |||
yum update --enablerepo=centosplus | |||
yum install fuse | |||
</pre> | |||
== ntfs-3g == | |||
<pre> | <pre> | ||
Line 13: | Line 21: | ||
mount -t ntfs-3g /dev/sdb1 /home/user/path | mount -t ntfs-3g /dev/sdb1 /home/user/path | ||
</pre> | </pre> | ||
== Note == | |||
I was unable to compile vmWare using the centos.plus kernel. | |||
[[Category: Linux]] | [[Category: Linux]] |
Latest revision as of 06:32, 10 December 2010
To enable NTFS file partition mounting install the ntfs-3g tools.
Prerequisite
yum update --enablerepo=centosplus yum install fuse
ntfs-3g
wget http://tuxera.com/opensource/ntfs-3g-2010.10.2.tgz tar xvzf ntfs-3g-2010.10.2.gz ./configure make make install
Once the ntfs-3g tools are installed you cna then mount a partition type of ntfs-3g
mount -t ntfs-3g /dev/sdb1 /home/user/path
Note
I was unable to compile vmWare using the centos.plus kernel.