web-dev-qa-db-ja.com

LVMパーティションをマウントするにはどうすればよいですか?

私は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

マウントするドライブやマウント方法がわかりません。誰かがお手伝いできますか?

10
user211613

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
34
Timothy Martin