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