2021. 8. 4. 16:28ㆍIT
linux 환경에서 squash 이미지 파일 안에 있는 파일을 삭제해야할것같아서 삭제를 시도 했더니,
왠걸 !
/lib/firmware/IPQ6018/WIFI_FW # rm bdwlan.b30
rm: remove 'bdwlan.b30'? y
rm: can't remove 'bdwlan.b30': Read-only file system
Read-only file system 이라고 뜨네 !?
그래서 해결책을 찾아봤더니 ,
https://da-nika.tistory.com/134
Ubuntu 18.04 Read-only file system이 뜨는 멍청한 행동을 했을 때
K8S 설치할 때 SWAP 꺼야하는데 그 때 주석처리 잘못해서 (내가 멍청해서) 볼륨이 다 잠겼다... 잠기면 이렇게 된다. root@C1-9:~# cd -bash: cannot create temp file for here-document: Read-only file system..
da-nika.tistory.com
요런게 있는거다
근데 ... 보드에 mount command 가 안먹네... ㅠㅠ
그래서 찾아봤더니;
애초부터 squash 파일은 Read-only 파일이였던것이다...;;
https://en.wikipedia.org/wiki/SquashFS
SquashFS - Wikipedia
From Wikipedia, the free encyclopedia Jump to navigation Jump to search Compressed, read-only file system for Linux Squashfs is a compressed read-only file system for Linux. Squashfs compresses files, inodes and directories, and supports block sizes from 4
en.wikipedia.org
결국 수정 안하고 링크 걸어주는 방향으로 해결 ~
ㅇㅁㅇ... !~
'IT' 카테고리의 다른 글
[linux] 서버 core 갯수 확인 command, make -j option (0) | 2022.02.17 |
---|---|
objdump debuging & Null pointer Exception (0) | 2021.08.06 |
md5sum (0) | 2021.08.02 |
Mount 란 (0) | 2019.06.26 |
리눅스 커널 내부구조 (0) | 2019.06.19 |