#linux如何檢視埠
1、lsof -i:埠號 用於檢視某一埠的占用情況,比如檢視8000埠使用情況,lsof -i:8000
# lsof -i:8000
command pid user fd type device size/off node name
lwfs 22065 root 6u ipv4 4395053 0t0 tcp *:irdmi (listen)
可以看到8000埠已經被輕量級檔案系統**服務lwfs占用
2、netstat -tunlp |grep 埠號,用於檢視指定的埠號的程序情況,如檢視8000埠的情況,netstat -tunlp |grep 8000
# netstat -tunlp
active internet connections (only servers)
proto recv-q send-q local address foreign address state pid/program name
tcp 0 0 0.0.0.0:111 0.0.0.0:* listen 4814/rpcbind
# netstat -tunlp | grep 8000
tcp 0 0 0.0.0.0:8000 0.0.0.0:* listen 22065/lwfs
#全域性查詢
find / -name mysql.sock -- 查詢叫 mysql.sock檔案
#檢視磁碟
df -h
#檢視檔案占用大小
cd / 進入根目錄。
du -h --max-depth=1
#檢視軟體安裝目錄
whereis gitlab
gitlab: /etc/gitlab
#查詢檔案
sudo find /usr -name "gitlab"
#文字帶行號
set nu
vim test.sh
輸入::set nu + 回車
Linux常用命令(三)
鏈結檔案的命令 該命令在檔案之間建立鏈結,這種操作實際上是給系統中已有的某個檔案指定另外乙個可用於訪問他的名稱。對於這個新的檔名,可以為之指定不同的訪問許可權,以控制對資訊的共享和安全問題 不用在硬碟上為同樣的資料重複備份 種類 硬鏈結,符號鏈結 也稱為軟連線 i節點將會被多個目錄檔案項所使用 ln...
Linux常用命令(三)
uname 命令用於顯示作業系統資訊 uname a linux localhost 2.6.32 279.el6.x86 64 1 smp fri jun 22 12 19 21 utc 2012 x86 64 x86 64 x86 64 gnu linux history 用於保留最近執行的命令...
Linux常用命令(三)
find命令 name 檔名 匹配任意字元 init 匹配單個字元 init size 檔案大小 block 資料塊 user 檔案所有者 時間 1.天 ctime atime mtime 用法 某時間之內,超過一定時間 2.分鐘 cmin amin mmin 例子 find etc min 120...