Linux Read-only 파일 시스템 시 rw 적용 방법
Geniihouse (IT)/Server,Linux2021. 1. 15. 15:18
안녕하세요. 임세호닷컴 임세호 입니다.
리눅스 시스템에서 파일시스템이 'Read-only' 로 부팅되거나 또는
싱글 모드로 부팅 가능하면 싱글 모드로 부팅 합니다.
# mount /dev/장치명
# umount /dev/sda3
# mount -o remount,rw /
이후에
# touch testfile
# rm testfile
로 확인 가능 합니다.
[참고사항]
출처 : planactor.tistory.com/306
[CentOS] 특정 디스크 손상으로 /etc/fstab 등 readonly 파일 시스템일 경우
루트 파일 시스템을 rw모드로 remount # mount -o remount,rw / 이후 문제되는 파일 시스템을 /etc/fstab에서 파일 점검을 하지 않도록 처리 후 재부팅하면 정상적으로 OS가 올라옮... UUID=ac3e050d-3982-4e4e-8d..
planactor.tistory.com