As Sami Laine pointed out, I had created the filesystem on the physical volume, but not the logical volume. Here is the command I forgot:
mke2fs -j /dev/VolGroup00/lvol0
У меня проблема с подключением логического диска к папке на виртуальной машине RHEL. Ниже приведены шаги, которые я предпринял:
1. added a new drive to my computer (allocated more space to the VM) 2. created partition, sdb1, using 'fdisk /dev/sdb' and set to "linux LVM" (8e) 3. formatted sdb1 to ext3 with following cmd: mkfs.ext3 /dev/sdb1 4. added sdb1 to volume: vgextend /dev/sdb1 5. Created Logical volume: lvcreate -L 10G VolGroup00 6. Mounted: mount -t ext3 /dev/VolGroup00/lvol0 /test
команда mount дала мне следующую ошибку:
mount: wrong fs type, bad option, bad superblock on /dev/VolGroup00/lvol0, missing codepage or other error In some cases useful info is found in syslog - try dmesg | tail or so
Когда я бегу, dmesg | tail
я получаю:
VFS: Can't find ext3 filesystem on dev dm-2.
Что-то я не так сделал? Я не знаю, почему он не может найти файловую систему ext3, потому что я определенно создал ее. Я сделал это дважды сейчас.
As Sami Laine pointed out, I had created the filesystem on the physical volume, but not the logical volume. Here is the command I forgot:
mke2fs -j /dev/VolGroup00/lvol0