当前位置: 技术问答>linux和unix
求访问本机NTFS格式的方法!急待中!
来源: 互联网 发布时间:2015-04-22
本文导语: 本机装了RHLinux90能访问fat格式的C:,但不能访问ntfs格式的D:和E:(D:为win2003系统,E:为win2000系统) | http://cosoft.org.cn/html/osl/projects.php?group_id=6875 http://download.enet.com.cn/file1/linux/system/sysemlu/200...
本机装了RHLinux90能访问fat格式的C:,但不能访问ntfs格式的D:和E:(D:为win2003系统,E:为win2000系统)
|
http://cosoft.org.cn/html/osl/projects.php?group_id=6875
http://download.enet.com.cn/file1/linux/system/sysemlu/2002090201.shtml
http://download.enet.com.cn/file1/linux/system/sysemlu/2002090201.shtml
|
我忘了rh9.0是否支持ntfs,如果不能,你需要重新编译内核,google上查找会很多http://www.linuxeden.com/edu/doctext.php?docid=3037
然后mount:mount /dev/hda5 (相应的修改卷) /mnt/discd (先建好目录) -t ntfs
同样对于中文的文件名和目录名会出现乱码的问题可以指定字符集,不过和加挂vfat分区不同,实际中用以下命令是可行的:
mount -t ntfs -o iocharset=cp936 /dev/hda5 /mnt/discd -r
mount -t ntfs -o iocharset=cp936,rw /dev/hda5 /mnt/discd
然后mount:mount /dev/hda5 (相应的修改卷) /mnt/discd (先建好目录) -t ntfs
同样对于中文的文件名和目录名会出现乱码的问题可以指定字符集,不过和加挂vfat分区不同,实际中用以下命令是可行的:
mount -t ntfs -o iocharset=cp936 /dev/hda5 /mnt/discd -r
mount -t ntfs -o iocharset=cp936,rw /dev/hda5 /mnt/discd