linux mount报错:you must specify the filesystem type的解决方法
(2018-01-21 12:34:07)| 分类: Linux |
[root@localhost dev]# mount /dev/sr0 /mnt/cdrom
mount: you must specify the filesystem type
先执行:mkfs.ext3 /dev/sr0
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#
mkfs.ext3 /dev/vdbmke2fs 1.41.12 (17-May-2010)Filesystem label=OS type:
LinuxBlock size=4096 (log=2)Fragment size=4096 (log=2)Stride=0 blocks, Stripe width=0 blocks32768000 inodes, 131072000 blocks6553600 blocks (5.00%) reserved for the super
userFirst data block=0Maximum filesystem blocks=42949672964000 block groups32768 blocks per group, 32768 fragments per
group8192 inodes per groupSuperblock backups stored on blocks:32768, 98304, 163840, 229376, 294912, 819200, 884736,
1605632, 2654208,4096000, 7962624, 11239424, 20480000, 23887872,
71663616, 78675968,102400000Writing inode tables: doneCreating journal (32768 blocks): doneWriting superblocks and filesystem accounting
information: doneThis filesystem will be automatically checked every 25
mounts or180 days, whichever comes first. Use tune2fs -c or -i
to override. |
再mount 即可:

加载中…