如何挂载LVM分区?


10

我正在尝试更新Java,并使用星号来确保将其完全删除,但没有意识到它将使所有内容弄乱

我用了

apt-get remove java*

这是在Ubuntu 16.0或其他服务器上。我现在在服务器上有sysrcd或System Rescue CD,我试图将旧文件放回新文件中,然后将sysrcd服务器重新加载到Ubuntu。但是我似乎无法弄清楚如何使用安装系统。

我试过跑步

fdisk -l

我得到

Disk /dev/sda: 223.6 GiB, 240057409536 bytes, 468862128 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
Disklabel type: dos
Disk identifier: 0x04a5ca62

Device    Boot     Start       End    Blocks  Id System
/dev/sda1 *         2048      4095      1024  83 Linux
/dev/sda2           6142 468860927 234427393   5 Extended
/dev/sda5           6144   2004991    999424  83 Linux
/dev/sda6        2007040 468860927 233426944  8e Linux LVM


Disk /dev/mapper/vg-root: 221.6 GiB, 237879951360 bytes, 464609280 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 /dev/mapper/vg-tmp: 976 MiB, 1023410176 bytes, 1998848 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 /dev/mapper/vg-swap: 88 MiB, 92274688 bytes, 180224 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

我不确定要安装哪个驱动器或如何安装它。有人可以帮忙吗?


1
您能详细说明一下您犯的错误以及引导尝试但失败时会发生什么情况吗?请在您的问题中添加这些详细信息。
蒂莫西·马丁

我已经编辑了详细信息,请看原始帖子。

2
您可以通过反转apt-get remove命令来修复安装。看看吧/var/log/apt/history.log。您应该能够重新安装每个已删除的软件包。
蒂莫西·马丁

嗯,还记得我无法访问那些文件吗?我正在尝试安装驱动器以访问这些文件...

Answers:


34

挂载LVM分区与非LVM分区时,还需要执行几个步骤。

sudo apt-get install lvm2   #This step may or may not be required.
sudo pvscan                 #Use this to verify your LVM partition(s) is/are detected.
sudo vgscan                 #Scans for LVM Volume Group(s)
sudo vgchange -ay           #Activates LVM Volume Group(s)
sudo lvscan                 #Scans for available Logical Volumes
sudo mount /dev/YourVolGroup00/YourLogVol00 /YourMountPoint

如前所述,我在救援CD上,它与Linux有所不同。它没有安装“ apt-get”程序。

您可以使用Ubuntu Live CD代替引导吗?
蒂莫西·马丁

我不行,不行。

如果您有安装CD / DVD,则可以引导到Rescue模式。这是一个选择吗? cyberciti.biz/faq/howto-boot-ubuntu-linux-rescue-mode
Timothy Martin,

2
您的应急CD 已经支持LVM,无需安装任何软件。
史蒂芬·基特
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.