天天看点

利用 mount 指令解决 Read-only file system的问题

在linux系统中创建一个文件提示:

/application/report/shiwei # touch test.c

touch: cannot touch `test.c': read-only file system

总是提示read-only file system,也就是说系统是只读的,什么也写不了。于是在网上到处找了一下,发现解决起来挺容易的。一条命令就可以了

mount -o remount rw /

继续阅读