檔案管理 檔案目錄時間

2021-10-03 09:15:52 字數 1997 閱讀 3602

statatimectimemtime元資料:檔案屬性,如大小,時間戳,許可權,所有者

資料:檔案內容

ctime:元資料更改時間,不關心內容,只關心元資料,如,該檔案所屬組,擁有者,以及許可權,檔名等,改變檔案的內容之後,使檔案大小改變,也改變了元資料(檔案大小),該時間也改變

mtime:檔案內容修改時間,如,修改了檔案裡邊的內容,該時間修改

atime:讀時間,但是為了保持效能,不會實時更新,兩種情況下會更新atime,第一種是mtime時間比atime新,第二種是atime已經有一天沒有更新了。

relatime 用於更新atime的乙個功能引數,可以把atime更新停了,提高效能

stat命令
[root@centos7 data]#stat f11.txt

file: 『f11.txt』

size: 0 blocks: 0 io block: 4096 regular empty file

device: 803h/2051d inode: 42409 links: 1

access: (0644/-rw-r--r--) uid: ( 0/ root) gid: ( 0/ root)

access: 2018-08-13 15:57:42.386485208 +0800

modify: 2018-08-13 15:57:42.386485208 +0800

change: 2018-08-13 15:57:42.386485208 +0800

birth: -

在ls命令使用–time引數,預設mtime
[root@centos7 data]#stat f11.txt

file: 『f11.txt』

size: 4 blocks: 8 io block: 4096 regular file

device: 803h/2051d inode: 42409 links: 1

access: (0644/-rw-r--r--) uid: ( 0/ root) gid: ( 0/ root)

access: 2018-08-13 15:57:42.386485208 +0800

modify: 2018-08-13 17:56:29.838153763 +0800

change: 2018-08-13 17:56:29.838153763 +0800

birth: -

[root@centos7 data]#ll f11.txt --time=ctime

-rw-r--r-- 1 root root 4 aug 13 17:56 f11.txt

[root@centos7 data]#ll f11.txt --time=atime

-rw-r--r-- 1 root root 4 aug 13 15:57 f11.txt

[root@centos7 data]#ll f11.txt --time=mtime

ls: invalid argument 『mtime』 for 『--time』

valid arguments are:

- 『atime』, 『access』, 『use』

- 『ctime』, 『status』

try 'ls --help' for more information.

[root@centos7 data]#ll f11.txt

-rw-r--r-- 1 root root 4 aug 13 17:56 f11.txt

[root@centos7 data]#

檔案目錄管理

dev 裝置檔案 etc 配置檔案 home 家目錄 root root使用者家目錄 lib 庫檔案 media mnt 掛載點目錄 misc 雜項 opt 可選目錄,早期用於安裝第三方程式 proc 偽檔案系統,核心對映檔案 sbin 可執行命令,管理命令 bin 可執行檔案,使用者名稱令 sel...

目錄檔案管理

雙tab檢視所有命令 反斜槓 強制換行 ctrl加u刪除到行位 ctrl加k刪除行末 ctrl加l清屏 ctrl加y 34呼叫34號命令前面加!可以呼叫 man手冊 重定向輸出加兩個 不覆蓋原有檔案,直接新增檔案 echo回顯的意思echo 123 輸入到螢幕當中加 benet重定向把123輸入到b...

目錄管理與檔案管理

檔案管理 常見的命令 cd命令 cd 返回上一次所在的目錄 cd 返回所在目錄的上級目錄 cd 返回所用使用者的家目錄 cd 進入根目錄 tree命令 tree d 只看目錄 tree l 1 只顯示多少層,例如此命令就是只顯示1層 絕對路徑與相對路徑 絕對路徑就是指得從頂層目錄 即更目錄 下開始算...