cd :
cd /usr (usr為資料夾名)
cd ~ 跳轉到home目錄下
cd . ./. . 進入當前目錄的上兩層cd .. 進入當前目錄上一層
ps aux 監視aux的程序
root模式下的操作:
su :進入超級管理員模式 。輸入超級管理員密碼,進入root模式
mkdir myfile :建立目錄
rmdir myfile :刪除目錄 (但是此目錄下不可以有其他資料夾)
root@sunlei-virtual-machine:/home/sunlei# mkdir one
root@sunlei-virtual-machine:/home/sunlei# mkdir two
root@sunlei-virtual-machine:/home/sunlei# cd one
root@sunlei-virtual-machine:/home/sunlei/one# (通過cd one 切換至one資料夾下)
root@sunlei-virtual-machine:/home/sunlei/one# ls -al
總用量 8
drwxr-xr-x 2 root root 4096 3月 15 20:59 .
drwxr-xr-x 22 sunlei sunlei 4096 3月 15 20:59 ..
root@sunlei-virtual-machine:/home/sunlei/one# (通過ls -al觀察隱藏的資料夾)
絕對路徑: /root/one
相對路徑 : 以 ".."和 「.」為主
root@sunlei-virtual-machine:/home/sunlei/one# touch 1.txt
root@sunlei-virtual-machine:/home/sunlei/one# (利用touch 建立乙個檔案)
root@sunlei-virtual-machine:/home/sunlei/one# rm 1.txt
root@sunlei-virtual-machine:/home/sunlei/one# (rm刪除當前資料夾下的檔案)
root@sunlei-virtual-machine:/home/sunlei/one# pwd
/home/sunlei/one
root@sunlei-virtual-machine:/home/sunlei/one# (顯示當前工作目錄)
root@sunlei-virtual-machine:/home/sunlei# find / -name myfile -print
/home/sunlei/myfile (查詢檔案名為myfile的檔案並列印路徑)
linux 命令基礎大全
linux 命令基礎大全 pwd 顯示當前路徑 cd 切換目錄 用法 cd cd 切換到上級目錄 cd 切換到根目錄 cd 或只有cd 切換到當前使用者主目錄 home底下以使用者名稱命名的資料夾 root目錄 mkdir 建立目錄 mkdir 目錄名 p 遞迴建立目錄 rmdir刪除空目錄 用法 ...
linux基礎命令大全 2
歡迎進入心法大全 具體操作這裡 葵花寶典 命令解釋 uname 顯示作業系統相關資訊的命令 hostname 顯示或者設定當前系統的主機名 dmesg 顯示開機資訊,用於診斷系統故障 uptime 顯示系統執行時間及負載 du計算磁碟空間使用情況 df報告檔案系統磁碟空間的使用情況 top實時顯示系...
linux常用基礎命令大全
常用指令 ls 顯示檔案或目錄 l 列出檔案詳細資訊l list a 列出當前目錄下所有檔案及目錄,包括隱藏的a all mkdir 建立目錄 p 建立目錄,若無父目錄,則建立p parent cd 切換目錄 touch 建立空檔案 echo 建立帶有內容的檔案。cat 檢視檔案內容 cp 拷貝 m...