Proxmox 가상 머신 데이터를 추출하기 위해 LVM을 설치하는 데 문제가 있습니다. 설치 방법에 대한 아이디어가 있습니까?
root@rescue:~# mount /dev/sdd /mnt/
mount: block device /dev/sdd is write-protected, mounting read-only
NTFS signature is missing.
Failed to mount '/dev/sdd': Invalid argument
The device '/dev/sdd' doesn't seem to have a valid NTFS.
Maybe the wrong device is used? Or the whole disk instead of a
partition (e.g. /dev/sda, not /dev/sda1)? Or the other way around?
root@rescue:~# mount /dev/sdd1 /mnt/
mount: unknown filesystem type 'linux_raid_member'
root@rescue:~#
디스크 정보
root@rescue:~# fdisk -l
Disk /dev/sda: 240.1 GB, 240057409536 bytes
255 heads, 63 sectors/track, 29185 cylinders, total 468862128 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
Disk identifier: 0x000bf890
Device Boot Start End Blocks Id System
/dev/sda1 * 4096 40962047 20478976 83 Linux
/dev/sda2 40962048 43057151 1047552 82 Linux swap / Solaris
/dev/sda3 43057152 468854783 212898816 f W95 Ext'd (LBA)
/dev/sda5 43059200 468854783 212897792 8e Linux LVM
Disk /dev/sdc: 2000.4 GB, 2000398934016 bytes
81 heads, 63 sectors/track, 765633 cylinders, total 3907029168 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: 0x35f0e73a
Device Boot Start End Blocks Id System
/dev/sdc1 2048 3907029167 1953513560 8e Linux LVM
Disk /dev/sdd: 2000.4 GB, 2000398934016 bytes
81 heads, 63 sectors/track, 765633 cylinders, total 3907029168 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: 0x43bc6360
Device Boot Start End Blocks Id System
/dev/sdd1 2048 3907029167 1953513560 8e Linux LVM
Disk /dev/sdb: 240.1 GB, 240057409536 bytes
81 heads, 63 sectors/track, 91879 cylinders, total 468862128 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
Disk identifier: 0xf95db8ab
Device Boot Start End Blocks Id System
/dev/sdb1 2048 468862127 234430040 8e Linux LVM
Disk /dev/mapper/pve-data: 453.8 GB, 453760778240 bytes
255 heads, 63 sectors/track, 55166 cylinders, total 886251520 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
Disk identifier: 0x00000000
Disk /dev/mapper/pve-data doesn't contain a valid partition table
root@rescue:~#
답변1
파티션은 "Linux LVM" 유형이므로 LVM 물리 볼륨일 가능성이 높습니다. 검사를 위해 file -s /dev/sdd1
.
pvs
시스템에서 사용 가능한 물리 볼륨의 요약을 보거나 pvdisplay
더 자세한 정보를 보려면 이 명령을 실행하십시오 . 일부 물리 볼륨이 있다고 생각되지만 감지되지 않는 경우 pvscan
연결된 모든 디스크에서 잠재적인 LVM 볼륨에 대한 검사를 실행하십시오.
VG
출력 열 에서 pvs
물리 볼륨이 속한 볼륨 그룹을 볼 수 있습니다. 볼륨 그룹이 여러 물리 볼륨에 분산되어 있는 경우 모든 물리 볼륨이 있어야 합니다(적절하게 구성된 RAID 제외). vgs
사용 가능한 볼륨 그룹의 요약을 보거나 vgdisplay
더 자세한 정보를 보려면 실행하세요 .
LVM 영역의 내용은 논리 볼륨을 통해 액세스됩니다. lvs
사용 가능한 볼륨 그룹의 요약을 보거나 lvdisplay
더 자세한 정보를 보려면 실행하세요 . 논리 볼륨에 액세스하려면 해당 볼륨이 활성화되어 "속성" 열에 lvs
보고 되어야 합니다. a
볼륨이 자동으로 활성화되지 않은 경우 where는 볼륨 그룹 이름이고 is는 논리 볼륨 이름을 사용하여 활성화합니다. 또한 이를 사용하여 그룹의 모든 논리 볼륨을 활성화할 수도 있습니다.lvchange -ay mygroup/myvolume
mygroup
myvolume
vgchange -ay mygroup
활성 논리 볼륨을 마운트하려면 해당 장치 경로(예: 또는 )로 참조하십시오./dev/mapper/mygroup-myvolume
/dev/mygroup/myvolume