RK3568+L2+2.303t 文件系统异常
未实名验证无访问或操作权限
返回上一页不能发帖过快!
返回上一页上传文件错误!
返回上一页1#
开机后可读写权限重新挂载根文件系统 /etc/目录下文件不可写入
在/etc下touch文件是可以的,但是echo xxx > /etc/test.log 之后 /etc/test.log永远为空
详情如下
# cd /etc/
# touch test.log
# echo hello_mineharmony > test.log
# cat test.log
# pwd
/etc
#
# ls -l test.log
-rw-rw-rw- 1 root root 0 2017-08-05 09:22 test.log
#
# chmod 777 test.log
# echo hello_mineharmony > test.log
# cat test.log
# ls -l test.log
-rwxrwxrwx 1 root root 0 2017-08-05 09:23 test.log
#