|
|
我的磁盘是这样的CDEF,后来F盘被分成了2个10G,一个安装了OPENDESKTOP,另一个格式化成了NTFS格式,我决定用NTFS的盘用来安装LFS。
结果在LINUX下,我用mke2fs /dev/hda8来格式化了NTFS格式的盘,然后开始安装LFS。一切都很顺利,最后到了重新启动了,结果发现:
在GRUB命令下:
grub> root (hd0,
Possible partitions are:
Partition num: 0, Filesystem type is fat, partition type 0xc
Partition num: 4, Filesystem type is fat, partition type 0xc
Partition num: 5, Filesystem type is fat, partition type 0xc
Partition num: 6, Filesystem type unknown, partition type 0x82
Partition num: 7, Filesystem type unknown, partition type 0x7
Partition num: 8, Filesystem type is ext2fs, partition type 0x83
grub> root (hd0,7)
Filesystem type unknown, partition type 0x7
/dev/hda8竟然还是表现为NTFS格式,这样无法重新启动。
而且在WIN2000下,用PQMAGIC来看的时候,此盘的属性还是EXT2FS格式。
下面是在LINUX下用FDISK察看的结果:
[root@alex mnt]# fdisk -l
Disk /dev/hda: 80.0 GB, 80026361856 bytes
255 heads, 63 sectors/track, 9729 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/hda1 * 1 1275 10241406 c Win95 FAT32 (LBA)
/dev/hda2 1276 9728 67898722+ f Win95 Ext'd (LBA)
/dev/hda5 1276 3825 20482843+ c Win95 FAT32 (LBA)
/dev/hda6 3826 7012 25599546 c Win95 FAT32 (LBA)
/dev/hda7 8287 8319 265041 82 Linux swap
/dev/hda8 7013 8286 10233373+ 7 HPFS/NTFS
/dev/hda9 8320 9728 11317761 83 Linux
Partition table entries are not in disk order
各位大侠,我该怎么作才能把/dev/hda8变成Linux格式的? |
|