centos7 재파티셔닝 문제

centos7 재파티셔닝 문제

centos-root더 많은 공간에서 주어야합니다 centos-home.

/home을 마운트 해제한 다음

lvremove /dev/mapper/centos-home

그 다음에,

lvextend -L 500G /dev/mapper/centos-root

그리고 최종

mount /home  

문제는 이제 ls다음 명령 입니다 /home.

ls: cannot open directory .: Input/output error.

시도해봤지만 xfs_repair /dev/mapper/centos-home결과는xfs_repair: cannot open /dev/mapper/centos-home: Device or resource busy

다른 아이디어. 운영 체제를 다시 설치하고 싶지 않습니다.

감사합니다!

답변1

파일 시스템을 확인하십시오.

e2fsck -f /dev/mapper/vg_livecd-lv_home

resize대신 /home을 수행하는 것이 더 좋습니다 .remove

다음 단계를 따르십시오.

Step:1 Umount the file system
# umount /home/

Step:2 check the file system for Errors using e2fsck command.
# e2fsck -f /dev/mapper/vg_livecd-lv_home

Step:3 Reduce or Shrink the size of /home to required size.
# resize2fs /dev/mapper/vg_livecd-lv_home 50G

Step:4 Reduce the size using lvreduce command.
# lvreduce -L 50G /dev/mapper/vg_livecd-lv_home 

Step:5 Check the filesystem before mount
# e2fsck -f /dev/mapper/vg_livecd-lv_home

Step:6 Mount the file system and verify its size.
# mount /home

-> LVM을 추가하는 단계:

Step1: Check the free available space in the Volume group
#  vgdisplay < Volume-Group-Name>

Step2: Increase the size using Lvextend command
# lvextend -L +120G /dev/mapper/vg_livecd-lv_root

Step:3 Run the resize2fs command
# resize2fs /dev/mapper/vg_livecd-lv_root 

Step:4 Verify Size
# df -Th

관련 정보