【转】How to Change File Ownership & Groups in Linux
有关linux下 文件权限的问题,一直不是很清楚。(参考菜鸟教程: http://www.runoob.com/linux/linux-file-attr-permission.html)
像上面这样,default 这个链接文件的权限 rwx rwx rwx 即该文件的所有者的权限rwx(4-2-1),所有者所在的组的权限rwx, 其它用户(该组之外的所有用户)的权限rwx.
Linux文件属主和属组
对于文件来说,它都有一个特定的所有者,也就是对该文件具有所有权的用户。
同时,在Linux系统中,用户是按组分类的,一个用户属于一个或多个组。
文件所有者以外的用户又可以分为文件所有者的同组用户和其他用户。
因此,Linux系统按文件所有者、文件所有者同组用户和其他用户来规定了不同的文件访问权限。
在以上实例中,bin文件是一个目录文件,属主和属组都为root,属主有可读、可写、可执行的权限;与属主同组的其他用户有可读和可执行的权限;其他用户也有可读和可执行的权限。
-----------------------------------------------------------------------------------
原文:http://www.hostingadvice.com/how-to/change-file-ownershipgroups-linux/
File ownership and groups for files are fundamental to the Linux operating system. Every file in Linux is managed by a specific user and a specific group.
Figure Out Who Owns the File, Then Use Either chown or chgrp
Display ownership and group information using the following command:
1
2
|
ls -l file.txt
-rw-rw-r-- 1 root www-data 0 Feb 25 15:51 file.txt
|
This file is owned by the root user and belongs to the www-data group.
Changing the Ownership of a File Using chown
You can change the ownership of a specific file using the chown command. For security purposes only, the root user or members of the sudo group may transfer ownership of a file.
To change the ownership of a file:
1
2
3
4
|
chown robert file.txt
ls -l file.txt
-rw-rw-r-- 1 robert www-data 0 Feb 25 15:51 file.txt
|
The file file.txt is now owned by Robert. By default, chown follows symbolic links and changes the owner of the file pointed to by the symbolic link. If you wish to change ownership of all files inside a directory, you can use the -R option.
1
|
chown -R user directory/
|
Changing the Group Ownership of a File Using chgrp
All users on the system belong to at least one group. You can find out which groups you belong to using the following command:
1
|
groups username
|
You can then change the group ownership of a specific file using the chgrp command:
1
2
3
4
|
chgrp webdev file.txt
ls -l file.txt
-rw-rw-r-- 1 robert webdev 0 Feb 25 15:51 file.txt
|
The file file.txt now belongs to the webdev group.
Changing Both the Owner and the Group Using chown
You can change both the owner and group of a file using just the chown command.
1
2
3
4
|
chown tito:editors file.txt
ls -l file.txt
-rw-rw-r-- 1 tito editors 0 Feb 25 15:51 file.txt
|
The file file.txt is now owned by Tito and belongs to the editors group.
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· AI与.NET技术实操系列:基于图像分类模型对图像进行分类
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· 25岁的心里话
· ollama系列01:轻松3步本地部署deepseek,普通电脑可用
· 按钮权限的设计及实现