Linux常用技巧系列: 文件权限管理chmod 777 (permission denied)
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
linux 中常常遇到权限不够的问题,一种提升用户的权限,例如su或者sudo,然后输入root用户密码。
另一种,赋予文件读写访问权限,给予文件权限
最为常见 chmod 777 最高权限,可读、可写、可执行。
例如chmod 777 tmpdir,给tmpdir目录最高权限。
chmod -R 777 * 给当前目录下所有文件。命令后,会发现赋予最高权限的文件或文件夹会变亮。
[root@localhost blogs]# ls
authorities file tmpdir tmpdir_bak
当然chmod还有很多其他权限,如下:
r :读权限,用数字4表示
w :写权限,用数字2表示
x :执行权限,用数字1表示- :删除权限,用数字0表示
s :特殊权限
以及更加复杂的设置,这里暂不详述,后面有机会再补上。
(阅读时间20 s)
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献4条内容
所有评论(0)