|
|
我参照北南南北的帖子,
[root@localhost ~]# uname -p -r
2.6.15-1.2054_FC5smp i686
我下载了kernel-module-ntfs-2.6.15-1.2054_FC5smp-2.1.26-0.rr.10.0.i686.rpm并安装。
然后
[root@localhost ~]# yum search ntfs
... ...
ntfs-3g.i386 1:0-0.4.20070920.fc5 extras
Matched from:
ntfs-3g
Linux NTFS userspace driver
The ntfs-3g driver is an open source, GPL licensed, third generation
Linux NTFS driver. It provides full read-write access to NTFS, excluding
access to encrypted files, writing compressed files, changing file
ownership, access right.
Technically it’s based on and a major improvement to the third
generation Linux NTFS driver, ntfsmount. The improvements include
functionality, quality and performance enhancements.
ntfs-3g features are being merged to ntfsmount. In the meanwhile,
ntfs-3g is currently the only free, as in either speech or beer, NTFS
driver for Linux that supports unlimited file creation and deletion.
http://mlf.linux.rulez.org/mlf/ezaz/ntfs-3g-download.html
... ...
我安装的这个ntfs-3g.i386
[root@localhost ~]# yum install ntfs-3g.i386
我的硬盘情况是这样的,我现在想加载最后一个NTFS的分区sda7.
[root@localhost ~]# fdisk -l
Disk /dev/sda: 40.0 GB, 40000000000 bytes
255 heads, 63 sectors/track, 4863 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 1275 10241406 c W95 FAT32 (LBA)
/dev/sda2 1276 4863 28820610 f W95 Ext'd (LBA)
/dev/sda5 1276 2704 11478411 83 Linux
/dev/sda6 2705 2831 1020096 82 Linux swap / Solaris
/dev/sda7 2832 4863 16322008+ 7 HPFS/NTFS
创建挂载点,加载分区
[root@localhost ~]# mkdir /mnt/winc
[root@localhost ~]# mount -t ntfs -o nls=utf8,umask=000 /dev/hda1 /mnt/winc
结果显示
mount: unknown filesystem type 'ntfs'
什么缘故?? |
|