当前位置: 技术问答>linux和unix
挂载硬盘时提示文件系统类型问题
来源: 互联网 发布时间:2016-01-31
本文导语: 我格式化时选择的是fdisk.ext3 指令 完成后用fdisk -l,显示如下: [root@centos ~]# fdisk -l Disk /dev/sda: 80.0 GB, 80026361856 bytes 255 heads, 63 sectors/track, 9729 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Device ...
我格式化时选择的是fdisk.ext3 指令
完成后用fdisk -l,显示如下:
[root@centos ~]# fdisk -l
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 2551 20490876 7 HPFS/NTFS
/dev/sda2 2552 5905 26941005 c W95 FAT32 (LBA)
/dev/sda3 5906 9598 29664022+ 83 Linux
/dev/sda4 9599 9729 1052257+ 82 Linux swap
Note: sector size is 4096 (not 512)
Disk /dev/sdb: 629.1 GB, 629145600000 bytes
255 heads, 63 sectors/track, 9561 cylinders
Units = cylinders of 16065 * 4096 = 65802240 bytes
Device Boot Start End Blocks Id System
/dev/sdb1 1 9561 614389608 83 Linux
Note: sector size is 4096 (not 512)
Disk /dev/sdc: 370.1 GB, 370113773568 bytes
255 heads, 63 sectors/track, 5624 cylinders
Units = cylinders of 16065 * 4096 = 65802240 bytes
Device Boot Start End Blocks Id System
/dev/sdc1 1 5624 361397988 83 Linux
我想挂载sdb1 但是提示这个:
[root@centos ~]# mount /dev/sdb1 /mnt/disk1
mount: you must specify the filesystem type
请大家帮忙解决,我是个新手,谢谢了!
完成后用fdisk -l,显示如下:
[root@centos ~]# fdisk -l
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 2551 20490876 7 HPFS/NTFS
/dev/sda2 2552 5905 26941005 c W95 FAT32 (LBA)
/dev/sda3 5906 9598 29664022+ 83 Linux
/dev/sda4 9599 9729 1052257+ 82 Linux swap
Note: sector size is 4096 (not 512)
Disk /dev/sdb: 629.1 GB, 629145600000 bytes
255 heads, 63 sectors/track, 9561 cylinders
Units = cylinders of 16065 * 4096 = 65802240 bytes
Device Boot Start End Blocks Id System
/dev/sdb1 1 9561 614389608 83 Linux
Note: sector size is 4096 (not 512)
Disk /dev/sdc: 370.1 GB, 370113773568 bytes
255 heads, 63 sectors/track, 5624 cylinders
Units = cylinders of 16065 * 4096 = 65802240 bytes
Device Boot Start End Blocks Id System
/dev/sdc1 1 5624 361397988 83 Linux
我想挂载sdb1 但是提示这个:
[root@centos ~]# mount /dev/sdb1 /mnt/disk1
mount: you must specify the filesystem type
请大家帮忙解决,我是个新手,谢谢了!
|
mount /dev/sdb1 /mnt/disk1 -t ext3
----
应该是
mount -t ext3 /dev/sdb1 /mnt/disk1
吧?
----
应该是
mount -t ext3 /dev/sdb1 /mnt/disk1
吧?