web-dev-qa-db-ja.com

vgdisplayおよびlvdisplayボリュームグループが見つかりません

root@ubuntu-server:~# pvdisplay
root@ubuntu-server:~# vgdisplay
  No volume groups found
root@ubuntu-server:~# lvdisplay
  No volume groups found
root@ubuntu-server:~#

何をすべきか。 Googleや他の場所で解決策が見つかりませんか?

私が試す:

pvcreate /dev/sdb5
  Device /dev/sdb5 not found (or ignored by filtering).

これは私のfdiskです。

 fdisk -l

Disk /dev/sdb: 250.1 GB, 250059350016 bytes
255 heads, 63 sectors/track, 30401 cylinders, total 488397168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00050ccb

   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1   *        2048      499711      248832   83  Linux
/dev/sdb2          501758   488396799   243947521    5  Extended
/dev/sdb5          501760   488396799   243947520   8e  Linux LVM

Disk /dev/sda: 250.1 GB, 250059350016 bytes
255 heads, 63 sectors/track, 30401 cylinders, total 488397168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00050ccb

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *        2048      499711      248832   fd  Linux raid autodetect
/dev/sda2          501758   488396799   243947521    5  Extended
/dev/sda5          501760   488396799   243947520   fd  Linux raid autodetect

Disk /dev/mapper/ubuntu--server-root: 247.7 GB, 247652679680 bytes
255 heads, 63 sectors/track, 30108 cylinders, total 483696640 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000

Disk /dev/mapper/ubuntu--server-root doesn't contain a valid partition table

Disk /dev/mapper/ubuntu--server-swap_1: 2143 MB, 2143289344 bytes
255 heads, 63 sectors/track, 260 cylinders, total 4186112 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000

Disk /dev/mapper/ubuntu--server-swap_1 doesn't contain a valid partition table

そして私のdf -h

df -h

Filesystem                       Size  Used Avail Use% Mounted on
/dev/mapper/ubuntu--server-root  231G  5,0G  214G   3% /
udev                             993M   12K  993M   1% /dev
tmpfs                            401M  356K  401M   1% /run
none                             5,0M     0  5,0M   0% /run/lock
none                            1002M     0 1002M   0% /run/shm
/dev/sdb1                        228M   25M  192M  12% /boot
7
senzacionale

多くの場合、新しいユーザーは、正しくセットアップされた後でも論理ボリュームが表示されないことに混乱しています。これが当てはまる場合、次のことを試しましたか?

pvscan

これは、物理ボリュームをスキャンします。以前にこれをLVM物理ボリュームにした場合は、/dev/sdb5と表示されます。

vgscan

既存のボリュームグループを探します。以前に正しく設定した場合は、ボリュームグループが表示されます。

vgchange -a y

使用可能なすべてのボリュームグループをアクティブ化します(「アクティブ」状態を「はい」に変更します)。これで、論理ボリュームが/dev/mapper//dev/VGNAME/LVNAMEとして表示されます。

7
quazgar

lvmetadキャッシングデーモンが最近導入され、LVMの暗黙的なスキャンが中断される場合があります。

pvscan --cache

lVMに再スキャンを強制する必要があります。

4
Gabriel

ボリュームを作成する必要があります

vgcreate "name" /dev/sdb5
1
SamSam