[root@localhost ~]# /sbin/fdisk -l
Disk /dev/sda: 160.0 GB, 160041885696 bytes
255 heads, 63 sectors/track, 19457 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 19457 140930212+ f W95 Ext'd (LBA)
/dev/sda5 1913 3442 12289693+ 7 HPFS/NTFS
/dev/sda6 3443 7266 30716248+ 7 HPFS/NTFS
/dev/sda7 7267 11090 30716248+ 7 HPFS/NTFS
/dev/sda8 11091 11141 409626 83 Linux
/dev/sda9 11142 13946 22531131 83 Linux
/dev/sda10 13947 16496 20482843+ 83 Linux
/dev/sda11 16497 17771 10241406 83 Linux
/dev/sda12 17772 18032 2096451 82 Linux swap / Solaris
由此,我们可以知道sda1 sda5 sda6 sda7 是windows分区,并且是ntfs分区。
-
第二步,编辑/etc/fstab,让linux在启动的时候就加载windows文件系统。
Vi /etc/fstab
然后在文件的后面添加下面的代码:
/dev/sda1 /mnt/ntfs1 ntfs-3g defaults,umask=0222 0 0
/dev/sda5 /mnt/ntfs5 ntfs-3g defaults,umask=0222 0 0
/dev/sda6 /mnt/ntfs6 ntfs-3g defaults,umask=0222 0 0
/dev/sda7 /mnt/ntfs7 ntfs-3g defaults,umask=0222 0 0
-
第三步,重新加载所有的文件系统
[root@localhost ntfs7]# mount -a
查看重新加载是否成功:
[root@localhost ntfs7]# cd ../ntfs1
[root@localhost ntfs1]# ls
ALCSetup.log ntldr sqmdata05.sqm sqmdata15.sqm sqmnoopt07.sqm sqmnoopt17.sqm
AUTOEXEC.BAT pagefile.sys sqmdata06.sqm sqmdata16.sqm sqmnoopt08.sqm System Volume Information
bootfont.bin Program Files sqmdata07.sqm sqmdata17.sqm sqmnoopt09.sqm temp
boot.ini RECYCLER sqmdata08.sqm sqmnoopt00.sqm sqmnoopt10.sqm WINDOWS
CONFIG.SYS setup.log sqmdata09.sqm sqmnoopt01.sqm sqmnoopt11.sqm wmpub
Documents and Settings sqmdata00.sqm sqmdata10.sqm sqmnoopt02.sqm sqmnoopt12.sqm
hiberfil.sys sqmdata01.sqm sqmdata11.sqm sqmnoopt03.sqm sqmnoopt13.sqm
IO.SYS sqmdata02.sqm sqmdata12.sqm sqmnoopt04.sqm sqmnoopt14.sqm
MSDOS.SYS sqmdata03.sqm sqmdata13.sqm sqmnoopt05.sqm sqmnoopt15.sqm
NTDETECT.COM sqmdata04.sqm sqmdata14.sqm sqmnoopt06.sqm sqmnoopt16.sqm
在/mnt/ntfs1下面已经有文件了,说明加载成功了。
以上的部分在我的系统上执行通过。我的系统是FC6.
上面的部分在执行的时候要保证
/mnt/ntfs1
/mnt/ntfs5
/mnt/ntfs6
/mnt/ntfs7
目录都已经存在,如果不存在,要现创建,否则会出错的。
|----------------------------------------------------------------------------------------|
版权声明 版权所有 @zhyiwww
引用请注明来源 http://www.blogjava.net/zhyiwww
|----------------------------------------------------------------------------------------|
posted on 2007-04-02 13:05
zhyiwww 阅读(1291)
评论(0) 编辑 收藏 所属分类:
linux