fedora core 6 下挂载 ntfs / fc6

先下载自己内核对应的kernel-ntfs包开启挂载能力
下载地址 http://rpm.livna.org/fedora/6/i386/
kmod-ntfs-*.rpm 找一个适合你的版本下载手动挂载
root下
mount -t ntfs -o nls=utf8,umask=xxxx /dev/hdax /xx/xx
这个成功的话继续下面的:fstab法:
修改/etc/fstab,添加/dev/hdxx /xx/xx nls=utf8,umask=xxxx,ro 0 0写rc.local法:
完整的mount语句写进rc.local中,开机自动执行
mount -t ntfs -o nls=utf8,umask=xxxx /dev/hdax /xx/xx autofs法:
在/etc/auto.misc中添加
xp -fstype=ntfs,ro,nls=utf8 –timeout=xxxxxxx

Tags:

Leave a Reply