安装 Fedora 25 LVM 分区返回未知文件系统类型“LVM2_member”

安装 Fedora 25 LVM 分区返回未知文件系统类型“LVM2_member”

我一直在尝试挂载一个分区(/dev/sda4这个细节有帮助吗),以便/mnt我可以从 Ubuntu 16.04 chroot 到它。但每当我尝试挂载它时,我都会收到错误:

mount: unknown filesystem type 'LVM2_member'

现在我尝试lvm2使用 APT 安装。我还尝试启动lvm2-lvmetad服务和套接字,但仍然出现同样的错误。我见过这个答案但它对我没有帮助,原因有二:

  • 首先,这似乎适用于具有多个 LVM2 分区的系统,其中需要区分它们的标签。我只有一个 LVM2 分区,其标签是fedora

  • 其次,它没有提供有关如何重命名分区组的实际细节(仅仅说“使用vgrename”,而不是给出执行此操作的特定命令)。

如果有帮助的话这是我的分区表(通过运行获得fdisk /dev/sda -l):

Disk /dev/sda: 931.5 GiB, 1000204886016 bytes, 1953525168 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: gpt
Disk identifier: 70714BA5-A85F-4BEB-BA64-79D0AD3EB7B8

Device          Start        End    Sectors  Size Type
/dev/sda1        2048    1050623    1048576  512M EFI System
/dev/sda2     1050624 1154484223 1153433600  550G Linux filesystem
/dev/sda3  1920108544 1953523711   33415168   16G Linux swap
/dev/sda4  1154484224 1867401215  712916992  340G Linux LVM

Partition table entries are not in disk order.

编辑: pvscan返回:

  PV /dev/sda4   VG fedora          lvm2 [339.94 GiB / 12.00 MiB free]
  Total: 1 [339.94 GiB] / in use: 1 [339.94 GiB] / in no VG: 0 [0   ]

同时lvscan返回:

  ACTIVE            '/dev/fedora/root' [339.93 GiB] inherit

答案1

您需要挂载 LVM 逻辑磁盘,而不是 LVM 物理磁盘。在您的特定情况下,您需要挂载/dev/fedora/root

 fsck -p /dev/fedora/root
 mount /dev/fedora/root /mnt

相关内容