-
[TIP] how to change read only filesystem to writeEngineer/Linux 2017. 4. 11. 15:55안녕하세요. 꿈꾸는 개발자입니다.readonly 파일시스템 영역을 임시로 writable 한 영역으로 재마운트하는 방법입니다.방법은 아래와 같습니다.1. 디렉토리별로 마운트된 디바이스(Mounted on) 를 확인합니다.
#> df
2. remount 할 디렉토리의 filesystem access permission을 확인합니다.
#> cat /proc/mounts | grep " ro"
3. remount를 시킵니다.
#> mount -o remount,rw /
or #> mount -o remount,rw /boot'Engineer > Linux' 카테고리의 다른 글
--no-check-certificate (0) 2017.05.11 [TIP] curses.h: No such file or directory (0) 2017.04.13 [linux] shell 에서 wifi 연결하기 (0) 2017.04.04 [tip] 우분투에서 무한 로그인 문제 해결 (0) 2016.09.23 install adb on ubuntu (0) 2016.09.19