质量为本、客户为根、勇于拼搏、务实创新
linux文件夹只读模式怎样更改
要更改Linux文件夹的只读模式,可使用chmod命令。下面是更改文件夹为只读模式的方法:
chmod -R 444 文件夹名
ls -l
r--r--r--
chmod -R 755 文件夹名
TOP