|
|
我有一块硬盘,SCSI的,上面有两个系统, WINXP, FC3, 现在从WINXPC盘的尾部用PQMAGIC分出一个5G大小的空闲空间,没有格式化.
我想在FC3中将其格式化,再mount到/mnt/disk上, 但是我在FC3中用fdisk命令无法找到那块空闲的空间.
fdisk -l 命令的输出如下:
- [root@9JimmyLu2 ~]# fdisk -l /dev/sda
- Disk /dev/sda: 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/sda1 * 1 3456 27760288+ c W95 FAT32 (LBA) //C盘
- /dev/sda2 4178 6797 21045150 f W95 Ext'd (LBA)
- /dev/sda3 6798 6810 104422+ 83 Linux // 应该是boot分区
- /dev/sda4 6811 9729 23446867+ 8e Linux LVM //根分区
- /dev/sda5 4178 6797 21045118+ b W95 FAT32 //D盘
复制代码
mount 命令的输出如下:
- [root@9JimmyLu2 ~]# mount
- /dev/mapper/VolGroup00-LogVol00 on / type ext3 (rw)
- none on /proc type proc (rw)
- none on /sys type sysfs (rw)
- none on /dev/pts type devpts (rw,gid=5,mode=620)
- usbfs on /proc/bus/usb type usbfs (rw)
- none on /dev/shm type tmpfs (rw)
- none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw)
- sunrpc on /var/lib/nfs/rpc_pipefs type rpc_pipefs (rw)
- /dev/sda5 on /mnt/smb type vfat (rw)
复制代码
请问我要在FC3中找到并格式化那块空闲分区应该怎么做? 谢谢!! |
|