Linux的stat命令

zchbaby2000發表於2020-08-17

####建立檔案
-sh-4.2$ vi temp.txt
-sh-4.2$ stat temp.txt
  File: ‘temp.txt’
  Size: 4               Blocks: 8          IO Block: 4096   regular file
Device: ca02h/51714d    Inode: 3736722     Links: 1
Access: (0600/-rw-------)  Uid: ( 1027/db2inst2)   Gid: ( 1003/db2iadm1)
Access: 2020-08-17 05:15:15.225755222 -0500
Modify: 2020-08-17 05:15:15.225755222 -0500
Change: 2020-08-17 05:15:15.225755222 -0500
 Birth: -
-sh-4.2$

####修改檔案的許可權
-sh-4.2$ ls -l temp.txt
-rw------- 1 db2inst2 db2iadm1 4 Aug 17 05:15 temp.txt
-sh-4.2$
-sh-4.2$ chmod 644 temp.txt
-sh-4.2$ stat temp.txt
  File: ‘temp.txt’
  Size: 4               Blocks: 8          IO Block: 4096   regular file
Device: ca02h/51714d    Inode: 3736722     Links: 1
Access: (0644/-rw-r--r--)  Uid: ( 1027/db2inst2)   Gid: ( 1003/db2iadm1)
Access: 2020-08-17 05:15:15.225755222 -0500
Modify: 2020-08-17 05:15:15.225755222 -0500
Change: 2020-08-17 05:16:04.056557741 -0500  < 這裡被修改了>
 Birth: -
-sh-4.2$

####修改檔案的內容
-sh-4.2$ vi temp.txt
-sh-4.2$
-sh-4.2$ stat temp.txt
  File: ‘temp.txt’
  Size: 8               Blocks: 8          IO Block: 4096   regular file
Device: ca02h/51714d    Inode: 3736722     Links: 1
Access: (0644/-rw-r--r--)  Uid: ( 1027/db2inst2)   Gid: ( 1003/db2iadm1)
Access: 2020-08-17 05:15:15.225755222 -0500
Modify: 2020-08-17 05:17:09.072294820 -0500 < 這裡被修改了>
Change: 2020-08-17 05:17:09.074294812 -0500 < 這裡被修改了>
 Birth: -


####檢視檔案的內容
-sh-4.2$ cat temp.txt
123
456
-sh-4.2$ stat temp.txt
  File: ‘temp.txt’
  Size: 8               Blocks: 8          IO Block: 4096   regular file
Device: ca02h/51714d    Inode: 3736722     Links: 1
Access: (0644/-rw-r--r--)  Uid: ( 1027/db2inst2)   Gid: ( 1003/db2iadm1)
Access: 2020-08-17 05:15:15.225755222 -0500 < 這裡沒有被修改,為什麼那?檢視了一下檔案系統mount的引數,其中有noatime>
Modify: 2020-08-17 05:17:09.072294820 -0500
Change: 2020-08-17 05:17:09.074294812 -0500
 Birth: -
-sh-4.2$


mount檔案系統在指定"noatime,nodiratime"的情況下
read檔案的時候不會導致atime、mtime、ctime改變
write檔案只會導致mtime和ctime更新,不會導致atime更新。


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/725820/viewspace-2712428/,如需轉載,請註明出處,否則將追究法律責任。

相關文章