기존 볼륨 그룹 아래에 논리 볼륨을 생성하려고 했지만 다음 오류로 인해 새 LV를 마운트할 수 없습니다: "열려고 할 때 슈퍼블록에 매직 넘버 오류가 발생했습니다.":
[root@host-xxxx ~]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/vg_redhat601-LogVol00
29G 4.5G 23G 17% /
tmpfs 16G 72K 16G 1% /dev/shm
/dev/vda5 190M 38M 143M 21% /boot
/dev/mapper/vg_redhat6-LogVol00
33G 48M 31G 1% /AMS
[root@host-xxxx ~]# vgdisplay vg_redhat6
--- Volume group ---
VG Name vg_redhat6
System ID
Format lvm2
Metadata Areas 2
Metadata Sequence No 8
VG Access read/write
VG Status resizable
MAX LV 0
Cur LV 1
Open LV 1
Max PV 0
Cur PV 2
Act PV 2
VG Size 70.96 GiB
PE Size 4.00 MiB
Total PE 18167
Alloc PE / Size 8448 / 33.00 GiB
Free PE / Size 9719 / 37.96 GiB
VG UUID 6YbIIs-OBJe-PGyV-Pwsl-VLGX-Jrf2-1SgJUZ
위에서 볼 수 있듯이 vg_redhat6 VG에는 여전히 37.96G의 사용 가능한 공간이 있습니다. 그래서 저는 15G 크기의 LV를 만들기로 결정했습니다.
[root@host-xxxx ~]# lvcreate -L 15G -n LogVol01 vg_redhat6
Logical volume "LogVol01" created.
[root@host-xxxx ~]# lvdisplay /dev/vg_redhat6/LogVol01
--- Logical volume ---
LV Path /dev/vg_redhat6/LogVol01
LV Name LogVol01
VG Name vg_redhat6
LV UUID 2FWKKM-mcbQ-RoCk-H2jc-0Jbt-nuha-KqYGtX
LV Write Access read/write
LV Creation host, time host-135-249-45-28, 2016-04-08 14:44:00 +0530
LV Status available
# open 0
LV Size 15.00 GiB
Current LE 3840
Segments 1
Allocation inherit
Read ahead sectors auto
- currently set to 256
Block device 253:3
관련 LV에서 e2fsck를 실행하면 다음 오류가 표시됩니다.
[root@host-xxxx ~]# e2fsck /dev/vg_redhat6/LogVol01 e2fsck 1.41.12 (17-May-2010) e2fsck: Superblock invalid, trying backup blocks... e2fsck: Bad magic number in super-block while trying to open /dev/vg_redhat6/LogVol01
The superblock could not be read or does not describe a correct ext2 filesystem. If the device is valid and it really contains an ext2 filesystem (and not swap or ufs or something else), then the superblock is corrupt, and you might try running e2fsck with an alternate superblock:
e2fsck -b 8193 <device>
위의 오류로 인해 새 LV를 마운트할 수 없습니다. Google에서 몇 가지 검색을 했지만 유용한 제안을 찾을 수 없습니다. 이전에 이 문제가 발생한 적이 있나요? 이 문제를 극복하는 방법을 알고 있습니까?
답변1
정보를 저장할 수 있는 빈 공간인 볼륨을 만들었습니다. 마운트되어 있으므로 마운트할 수 없습니다.파일 시스템——정보구조. 마운트하면 파일 시스템이 디렉터리에 표시됩니다.
적절한 명령을 사용하여 mkfs
볼륨에 파일 시스템을 생성합니다 . 예를 들어 ext4 파일 시스템 생성(Linux의 사실상 표준) 실행(루트로)mkfs.ext4 /dev/vg_redhat6/LogVol01