man [引數] [命令]
檢視命令使用介紹man ls
echo [字元|變數]
列印echo hello
date [選項][+指定的格式]
時間data +%y-%m-%d
reboot
重啟
poweroff
關機
ps [引數]
顯示程序ps -aux
引數全部單字母可以連寫
top [引數]
監視程序活動top
pidof [引數] 服務名稱
查詢程序名稱的pidpidof firefox
kill [引數] 程序pid
殺死程序kill 890
killall [引數] 程序名稱
殺死程序及相關服務killall firefox
ifconfig [網路裝置] [引數]
檢視網路資訊
uname [引數]
系統版本資訊uname -a
uptime
檢視負載資訊
free [引數]
記憶體使用資訊free -h
who
當前終端使用者資訊
last [引數]
系統登入記錄
history [-c]
執行過的命令歷史記錄 -c為清空記錄
cat /proc/cpuinfo | grep model.name | head -n 1
檢視cpu資訊
pwd
顯示當前所在目錄
cd [目錄名稱]
切換到目標目錄cd -
為上一次所處目錄cd ~
使用者主目錄
ls [選項] [目錄]
顯示目錄檔案列表ls -l
cat [選項] [檔案]
顯示檔案的內容cat -n c.txt
適用於少量文字
more [選項] [檔案] 顯示檔案的內容
more c.txt` 適用於多量文字
head [選項] [檔案]
顯示前幾行head -n 2 c.txt
tail [選項] [檔案]
檢視後幾行tail -n 2 c.txt
tr [原始字元] [目標字元]
替換文字
wc [引數] [檔案]
統計文字的行數 字數 位元組數wc index.html
stat [檔案]
檔案資訊
cut [引數] 文字
提取字元
diff [引數] 檔案 檔案
比較文字的差異diff -c 1.txt 2.txt
touch [選項] 檔名
建立乙個檔案touch 1.txt
mkdir [選項] 目錄名
建立乙個目錄mkdir pdf
cp [選項] 原始檔 目標檔案
複製cp 1.txt 2.txt
mv [選項] 原始檔 [目標路徑 | 目標檔名]
重新命名或移動檔案mv 1.txt 2.txt
rm [選項] 檔案
刪除檔案rm 1.txt
dd [引數]
按照資料快複製檔案dd if=/dev/zero of=560_file count=1 bs=560m
file 檔案
檢視檔案型別
tar [選項][引數]
打包或解壓
tar -cvzf 1.tar.gz pdf
將pdf資料夾 打包 1.tar.gz
tar -xvzf 1.tar.gz -c b
解壓到b,b得先存在
grep [選項] 搜尋文字 目標檔案
關鍵字搜尋grep -n title index.html
find [查詢路徑] [引數]
查詢檔案find ./ -name "index.html
du [引數] 檔案
檢測檔案大小du -h 1.txt
fdisk 磁碟名稱
磁碟操作,分割槽...sodu fdisk /dev/sdba
df [引數]
磁碟資訊df -h
`
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...