[root@localhost ~]#
[root@localhost ~]# pwd -->顯示當前目錄 管理員使用者在/root下 ----普通使用者則會在/home目錄下
[root@localhost ~]# cd ../ -->則會返回到上級目錄 -->[root@localhost /]#
[root@localhost ~]# ls -->顯示當前目錄下所有的目錄:
了解目錄:
[root@localhost ~]# ls -a --->顯示所有檔案(包含隱藏檔案)
[root@localhost ~]# ls /etc/ -->顯示etc目錄下的所有檔案目錄
[root@localhost ~]# ls /etc/yum.conf -->開啟該目錄
[root@localhost ~]# ls -l -->顯示該目錄下的詳細資訊
[root@localhost ~]# ls -l /etc/yum.conf -->顯示該目錄或檔案資訊--如下:
-rw-r--r--. 1 root root 70 11月 6 2016 filesystems 黑色普通 --> 第一位的-:檔案
drwxr-x---. 5 root root 104 7月 6 05:37 firewalld 藍色目錄 --> 第一位的d:目錄
lrw-r--r--. 1 root root 70 11月 6 2016
rc6.d-
>rc.d/rc4.3 淡藍色 -->第一
位的l 鏈結
一組:後九位:第乙個三位:代表所有者,第二個三位:所屬組,第三個三位:其他使用者(rwx:讀寫執行許可權)
三組:檔案大小(位元組),最後修改日期
[root@localhost ~]# ls -lh /etc 人性化顯示etc目錄下檔案目錄資訊
[root@localhost ~]# ls -li 表示:
總用量 4
223123 -rw------ 。。。。。。。。。。。:多出一位inode節點
[root@localhost ~]# ll --->簡單的顯示詳細資訊的方式
linux命令學習1 ls
接下來的時間裡希望能夠每天乙個linux命令學習,最差也要一周乙個 ls help檢視,同時參考網上的中文說明進行學習 幾個要點 1.ls無法檢視 資料夾總體大小,需要用 du folder name 2.ls下檔案顏色的含義如下 這個資料有點老,恐怕有不准的地方 1.藍色 目錄 2.綠色 可執行檔...
linux命令 1 ls命令
ls list縮寫,用來列印出當前目錄的清單和檢視檔案許可權 包括目錄 資料夾 檔案許可權 檢視目錄資訊。命令格式 ls 選項 目錄名 命令功能 列出目標目錄中所有的子目錄和檔案。常用命令 命令 描述ls l r home peidachang或者ls lr home peidachang 列出 h...
Linux命令 1 ls命令
ls命令是linux下最常用的命令。ls命令就是list的縮寫,預設下ls用來列印出當前目錄的清單。如果ls指定其他目錄,那麼就會顯示指定目錄裡的檔案及資料夾清單。通過ls 命令不僅可以檢視linux資料夾包含的檔案 而且可以檢視檔案許可權 包括目錄 資料夾 檔案許可權 檢視目錄資訊等等。ls 命令...