- 论坛徽章:
- 0
|
问题代码是这样了。我装了双系统windows sp3 + Red Hat Enterprise Linux AS 5
sda1 是windows 的系统盘 NTFS格式
sda5 是资料盘 也是NTFS格式
我先安装了4个rpm包:
dkms-2.0.17.6-1.rf.src.rpm
dkms-fuse-2.7.2-1.rf.src.rpm
fuse-2.7.3-1.el5.rf.x86_64.rpm
fuse-ntfs-3g-1.2310-1.el5.rf.x86_64.rpm
[root@ Desktop]# rpm -ivh dkms-2.0.17.6-1.rf.src.rpm
warning: dkms-2.0.17.6-1.rf.src.rpm: Header V3 DSA signature: NOKEY, key ID 6b8d79e6
1:dkms warning: user dag does not exist - using root 95%)
warning: group dag does not exist - using root
########################################### [100%]
[root@ Desktop]# rpm -ivh dkms-fuse-2.7.2-1.rf.src.rpm
warning: dkms-fuse-2.7.2-1.rf.src.rpm: Header V3 DSA signature: NOKEY, key ID 6b8d79e6
1:dkms-fuse warning: user dag does not exist - using root
warning: group dag does not exist - using root
########################################### [100%]
[root@ Desktop]# rpm -ivh fuse-2.7.3-1.el5.rf.x86_64.rpm
warning: fuse-2.7.3-1.el5.rf.x86_64.rpm: Header V3 DSA signature: NOKEY, key ID 6b8d79e6
Preparing... ########################################### [100%]
1:fuse ########################################### [100%]
[root@ Desktop]# rpm -ivh fuse-ntfs-3g-1.2310-1.el5.rf.x86_64.rpm
warning: fuse-ntfs-3g-1.2310-1.el5.rf.x86_64.rpm: Header V3 DSA signature: NOKEY, key ID 6b8d79e6
Preparing... ########################################### [100%]
1:fuse-ntfs-3g ########################################### [100%]
[root@ Desktop]# /sbin/fdisk -l
Disk /dev/sda: 80.0 GB, 80000000000 bytes
255 heads, 63 sectors/track, 9726 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 1912 15358108+ 7 HPFS/NTFS
/dev/sda2 1913 9725 62757922+ f W95 Ext'd (LBA)
/dev/sda5 1913 5736 30716248+ 7 HPFS/NTFS
/dev/sda6 5737 6883 9213246 83 Linux
/dev/sda7 6884 8158 10241406 83 Linux
/dev/sda8 8159 8413 2048256 83 Linux
/dev/sda9 8414 8544 1052226 82 Linux swap / Solaris
/dev/sda10 8545 9725 9486351 83 Linux
Disk /dev/sdb: 2068 MB, 2068054016 bytes
8 heads, 32 sectors/track, 15778 cylinders
Units = cylinders of 256 * 512 = 131072 bytes
Device Boot Start End Blocks Id System
/dev/sdb1 * 1 15778 2019568 b W95 FAT32
[root@ /]# mount -t ntfs-3g /dev/sda1 /Windows_C
FATAL: Module fuse not found.
$LogFile indicates unclean shutdown (0, 0)
Failed to mount '/dev/sda1': Operation not supported
Mount is denied because NTFS is marked to be in use. Choose one action:
Choice 1: If you have Windows then disconnect the external devices by
clicking on the 'Safely Remove Hardware' icon in the Windows
taskbar then shutdown Windows cleanly.
Choice 2: If you don't have Windows then you can use the 'force' option for
your own responsibility. For example type on the command line:
mount -t ntfs-3g /dev/sda1 /Windows_C -o force
Or add the option to the relevant row in the /etc/fstab file:
/dev/sda1 /Windows_C ntfs-3g force 0 0
[root@ /]# mount -t ntfs-3g /dev/sda5 /Windows_D
FATAL: Module fuse not found.
$LogFile indicates unclean shutdown (0, 1)
Failed to mount '/dev/sda5': Operation not supported
Mount is denied because NTFS is marked to be in use. Choose one action:
Choice 1: If you have Windows then disconnect the external devices by
clicking on the 'Safely Remove Hardware' icon in the Windows
taskbar then shutdown Windows cleanly.
Choice 2: If you don't have Windows then you can use the 'force' option for
your own responsibility. For example type on the command line:
mount -t ntfs-3g /dev/sda5 /Windows_D -o force
Or add the option to the relevant row in the /etc/fstab file:
/dev/sda5 /Windows_D ntfs-3g force 0 0
[root@ /]# mount -t ntfs-3g /dev/sda5 /Windows_D -o force
FATAL: Module fuse not found.
$LogFile indicates unclean shutdown (0, 1)
WARNING: Forced mount, reset $LogFile.
ntfs-3g-mount: fuse device is missing, try 'modprobe fuse' as root |
|