檔案搜尋
du
# 檢視目錄情況
alias
# 檢視所有別名
locate 檔名
find
[目錄]
[搜尋條件] 檔名
搜尋條件:
-name
-iname
-size
-mtime
-nouser
find logs|
xargs
grep -ri "請求引數"
# 查詢目錄下檔案包含字串的記錄
find fpp-manage|
xargs
grep -ri "請求引數" -l # 只列印包含字串的檔名
命令搜尋
whereis 命令名
which 命令名
ifconfig -a # 檢視本機ip
查詢日誌
grep
[選項] 字串 檔名
grep
'start'
檢視使用者登陸資訊
w #當前登陸使用者資訊
last #所有使用者資訊
lastlog #所有使用者最後的登陸時間
指令碼執行
chmod 755 hello.sh
./hello.sh
linux常用快捷鍵:
ctrl + c 強制終止
ctrl + l 清屏
ctrl + u 刪除行首-游標的內容
ctrl + a 游標移動到行首
ctrl + e 游標移動到行尾
ctrl + z 放入後台
ctrl + r 在歷史命令中搜尋
歷史命令
history -c: 清空歷史命令
history
!n :重複執行第n條命令
!字串 -重複執行最後一條以該字串開頭的命令
統計連線主機的客戶端數量
netstat -an |
grep established |
wc -l
許可權說明(10位)
drwx 12 root root 4096 dec 4 02:31 ./
drwxr-xr-x 21 root root 4096 nov 27 09:51 ../
[檔案型別u所有者-g所屬組-o其他人] 所有者 所屬組 大小 修改日期 檔名
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...