- 论坛徽章:
- 0
|
linux9操作过程如下:
[root@localhost /]# fdisk /dev/sdc
Command (m for help): n
Command action
e extended
p primary partition (1-4)
p
Partition number (1-4): 1
First cylinder (1-4462, default 1): 4462
Command (m for help): w
The partition table has been altered!
Calling ioctl() to re-read partition table.
Syncing disks.
先用n分一个新的分区,用p把它分为一个扩展分区,按w保存。
然后用fdisk -l查看如下:
Disk /dev/sdc: 255 heads, 63 sectors, 4462 cylinders
Units = cylinders of 16065 * 512 bytes
Device Boot Start End Blocks Id System
/dev/sdc1 4462 4462 8032+ 83 Linux
在/mnt下建一个目录/sdc,然后用
[root@localhost /]# mount -t ext3 /dev/sdc1 /mnt/sdc/
提示如下:
mount: wrong fs type, bad option, bad superblock on /dev/sdc or too many mounted file systems
实在搞不明白,请高手指点。 |
|