2014IT鐵人賽-04-基礎指令練習-切換目錄以及觀察目錄下的物件
今天來練習如何切換目錄以及觀察目錄下的物件
筆記部份:
FHS Linux 檔案系統架構
Filesystem Hierarchy Standard
在 Linux 內所有的路徑起始點都是 / ( 唸做 root )根目錄開始
路徑描述
- 絕對路徑: 從 根目錄 / 開始描述
- 相對路徑: 從 現在目錄 開始描述
- . 目前的目錄
- .. 上一層目錄
cd 切換工作目錄
- cd - 回到上次工作目錄
- cd ~ 切換到家目錄
- cd ~max 切換到使用者 max 的家目錄
pwd 顯示目前的工作目錄
在shell 內可以使用
- ctrl + c 中斷
- ctrl + l 清除螢幕
ls 列出目錄下的物件
開始練習吧
Lab: cd
task1: 切換到/etc/samba
#whatis pwd
#pwd <列出目前目錄>
#cd /etc/samba 或是 #cd ../etc/samba <切換到/etc/samba>
#pwd <列出目前目錄>
task2:由/etc/samba 切換回到/root
#cd /root <絕對路徑>
或
#cd ../../root <相對路徑>
或
#cd
或
#cd - < -:上次工作目錄>
或
#cd ~ <~: 家目錄>
Lab: ls
#cd /home/max
#ls <列出目錄下檔案>
#ls -l <long listing詳細顯示>
#alias <請觀察系統別名>
因為系統會加上 -A --color=tty 的選項, 所以會顯示出隱藏檔
此時可以利用 \ ( back slash )來取消系統所賦予的alias
或是直接輸入絕對路徑 /bin/ls
#/bin/ls -al
#/bin/ls /
#/bin/ls -R / < -R 遞迴;連同子目錄都要列出來>
#\ls -l /root
#\ls -lt /root < -t 以時間排序>
#\ls -F /root < -F 顯示File type>
task1: 切換到/etc/samba
#whatis pwd
#pwd <列出目前目錄>
#cd /etc/samba 或是 #cd ../etc/samba <切換到/etc/samba>
#pwd <列出目前目錄>
task2:由/etc/samba 切換回到/root
#cd /root <絕對路徑>
或
#cd ../../root <相對路徑>
或
#cd
或
#cd - < -:上次工作目錄>
或
#cd ~ <~: 家目錄>
Lab: ls
#cd /home/max
#ls <列出目錄下檔案>
#ls -l <long listing詳細顯示>
#alias <請觀察系統別名>
因為系統會加上 -A --color=tty 的選項, 所以會顯示出隱藏檔
此時可以利用 \ ( back slash )來取消系統所賦予的alias
或是直接輸入絕對路徑 /bin/ls
#/bin/ls -al
#/bin/ls /
#/bin/ls -R / < -R 遞迴;連同子目錄都要列出來>
#\ls -l /root
#\ls -lt /root < -t 以時間排序>
#\ls -F /root < -F 顯示File type>
Fun with Day 4 ~
沒有留言:
張貼留言