红联Linux门户
Linux帮助

Ubuntu下修改文件拥有者

发布时间:2015-10-15 18:51:37来源:linux网站作者:zhu126fang

Ubuntu 14.04.1 LTS,普通用户francis


1.将hello0文件夹给francis

sudo chown francis hello0 

查看文件属性

francis@Aspire-5100:~/os_diy/01_30days/day01$ ls -al 
总用量 20 
drwxr-xr-x 5 rootroot 4096 10月 15 09:48 . 
drwxr-xr-x 7 rootroot 4096 10月 15 09:48 .. 
drwxr-xr-x 2 francis root 4096 10月 15 16:28 hello0 
drwxr-xr-x 2 rootroot 4096 10月 15 09:48 hello1 
drwxr-xr-x 2 rootroot 4096 10月 15 09:48 hello2 


2.将hello0文件夹及子文件夹给francis---在根目录下慎用

sudo chown -R francis hello0 

查看文件属性

francis@Aspire-5100:~/os_diy/01_30days/day01/hello0$ ls -alh 
总用量 1.5M 
drwxr-xr-x 2 francis root 4.0K 10月 15 16:28 . 
drwxr-xr-x 5 rootroot 4.0K 10月 15 09:48 .. 
-rwxr-xr-x 1 francis root 7.5K 10月 15 14:11 create_os_img 
-rw-r--r-- 1 francis root 1.4K 10月 15 09:48 create_os_img.c 
-rw-r--r-- 1 francis root  358 10月 15 09:48 dump_non_zero_data.c 
-rw-r--r-- 1 francis root   62 10月 15 16:07 hello.c 
-rw-r--r-- 1 francis root  157 10月 15 09:48 Makefile 
-rw-r--r-- 1 francis root 1.5M 10月 15 14:11 os.img


RedHat Linux系统chown变更文件或目录拥有者命令:http://www.linuxdiyf.com/linux/2414.html

Linux下批量修改文件及文件夹所有者及权限:http://www.linuxdiyf.com/linux/2420.html

Ubuntu在恢复模式下无法修改文件:http://www.linuxdiyf.com/linux/14374.html