개발자는 오늘도 달립니다.
[Error] Bad magic number in super-block while trying to open ... 본문
리눅스 디스크 용량 늘리기 포스팅
resize2fs 1.42.9 (28-Dec-2013)
resize2fs: Bad magic number in super-block while trying to open /dev/mapper/centos_centos7-root
Couldn't find valid filesystem superblock.
디스크 용량 증설 하는 도중 위와 같은 에러가 발생 했습니다.
해결 방법은 의외로 간단해요!
아래와 같이 디스크 타입 확인 후 맞는 명령어를 사용해주시면 됩니다.
1. 타입확인
df -Th
리사이즈 하고자 하는 /dev/mapper/centos_centos7-root 가 xfs 타입이라는 걸 확인 할 수 있습니다.
2. 타입에 맞는 명령어 사용하기!
# xfs 타입 xfs_growfs /dev/mapper/centos_centos7-root |
# ext2, ext3, ext4 타입 resize2fs /dev/mapper/centos_centos7-root |
'리눅스 > 공통' 카테고리의 다른 글
[명령어] Linux 버전을 확인하는 방법 (1) | 2021.09.28 |
---|---|
[Disk] centos lvresize 또는 lvextend 설치 방법 (0) | 2021.09.10 |
[md5sum] md5 file check 파일 체크 명령어 (0) | 2021.09.06 |
[리눅스] 방화벽 FirewallD 설치 및 설정 방법 (iptable 방화벽 설정) (0) | 2020.12.16 |
[리눅스] linux LV 용량 확장 (루트 볼륨 확장 /) (0) | 2020.09.24 |
Comments