Ubuntu 下修改檔案擁有者

2021-07-05 21:32:29 字數 1313 閱讀 6364

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 root root 4096 10月 15 09:48 .

drwxr-xr-x 7 root root 4096 10月 15 09:48 ..

drwxr-xr-x 2 francis root 4096 10月 15 16:28 hello0

drwxr-xr-x 2 root root 4096 10月 15 09:48 hello1

drwxr-xr-x 2 root root 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 root root 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

linux下修改檔案的擁有者和使用者組

一 使用 chown命令 更改檔案擁有者 在 shell 中,可以使用 chown命令 來改變檔案所有者。chown命令 是change owner 改變擁有者 的縮寫。需要要注意的是,使用者必須是已經存在系統中的,也就是只能改變為在 etc passwd這個檔案中有記錄的使用者名稱才可以。chow...

linux修改檔案屬所組以檔案擁有者

在linux下我們首先需要熟悉組 擁有者 其它使用者這三含義,非常重要。例如我們需要改變乙個檔案的擁有者 修改檔案之前必須當前的使用者具有管理員root的許可權 chown r username filename 修改當前的檔案擁有者為username chown r username groupn...

ubuntu 下修改host檔案

有些時候,我們需要讓某些網域名稱指向本地,來實現除錯,下面介紹下ubuntu下修改host實現網域名稱指向本地的方法。ubuntu系統的hosts只需修改 etc hosts檔案,在目錄中還有乙個hosts.conf檔案,剛開始還以為只需要修改這個就可以了,結果發現是需要修改hosts。修改完之後要...