檢視程序
ps aux
檢視磁碟空間
df -hl
檢視記憶體 free
read file
vi + file name
顯示當前目錄的完整路徑(如果是連線則顯示連線路徑)
pwd顯示當前目錄的絕對路徑
pwd -lp
manlp[tab][tab] - find all command which start with 「lp」
man -f world - find all command which named 「world」
man -k world - find all command which related to 「world」
vi command
: w filename (輸入 「w filename」將文章以指定的檔名filename儲存)
: wq (輸入「wq」,存檔並退出vi)
: q! (輸入q!, 不存檔強制退出vi)
新增 sodo 許可權
sudoedit /etc/sudoers
*在後台執行程序
在命令後加乙個&
*暫停某個程序
ctrl + z
*管理後台作業
jobs 檢視後台job
bg [id] 讓後台程序由stop 改為 running
fg [id] 把後台程序切換到前台
*遞迴顯示目錄結構
ls -r
*顯示目錄或鏈結資訊
ls -ld
*建立空檔案或更新檔案時間
touch [filename]
*檢視檔案型別
file [filename]
Linux常用命令之Linux常用命令實戰知識點
在在複習linux,這是以前做的筆記,分享一下。linux系統 一切皆檔案 操作檔案就是操作linux系統 一 linux版本 1 redhat 企業版 收費 2 centos redhat的社群版 免費 3 ubuntu 4 紅旗 二 linux的特點 1 多使用者 多工 2 豐富的網路功能 3 ...
LINUX常用命令
一 目錄結構 目錄名稱 意 義 vmlinuz 該目錄中存放的是系統核心 bin 該目錄中存放linux的常用命令,在有的版本中是一些和根目錄下相同的目錄。boot 該目錄下存放的都是系統啟動時要用到的程式,當用lilo引導linux時,會用到這裡的一些資訊 dev 該目錄包含了linux系統中使用...
linux 常用命令
ssh 連線 eg.ssh l mike www.mydomain.com or 192.168.0.1 scp 複製 本地 遠端 scp localfile username tohost newfile 遠端 本地 scp username tohost remotefile local 把tx...