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
실수를 저지르고 부팅을 시도했지만 실패하면 어떻게됩니까? 질문에이 세부 사항을 추가하십시오.
Timothy Martin

세부 정보를 편집했습니다. 원본 게시물을보십시오.

2
apt-get remove명령 을 반대로하여 설치를 복구 할 수 있습니다 . 에서 살펴보십시오 /var/log/apt/history.log. 제거 된 각 패키지를 다시 설치할 수 있어야합니다.
Timothy Martin

어, 저 파일들에 제대로 접근 할 수 없다는 것을 기억하십니까? 그 파일에 액세스하기 위해 드라이브를 마운트하려고합니다 ...

답변:


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대신 에 부팅 할 수 있습니까?
Timothy Martin

난 못해

설치 CD / DVD가 있으면 Rescue 모드로 부팅 할 수 있습니다. 이것이 옵션입니까? cyberciti.biz/faq/howto-boot-ubuntu-linux-rescue-mode
Timothy Martin

2
복구 CD는 이미 LVM을 지원 하므로 아무것도 설치할 필요가 없습니다.
Stephen Kitt
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.