linux 命令收集

2021-09-01 04:36:01 字數 409 閱讀 7728

1. 不顯示/etc/services #開頭的行, /etc/services檔案並沒有修改

sed -e '/^#/d' /etc/services | more

2. 忽略前十行,顯示後面的內容

sed -e '1,10d' /etc/services | more

3. 列印所有包括begin的行和end行之間的行的內容

sed -n -e '/begin/,/end/p' /my/test/file | more

4. sar

pidstat -p 3132 2 5

//每隔2秒,顯示5次,pid為3132的程序的cpu使用情況顯示

pidstat -p 3132 2 5 -r

//每隔2秒,顯示5次,pid為3132的程序的記憶體使用情況顯示

Linux命令收集

df h 統計檔案系統容量 du sm sort n 統計當前目錄大小,並按大小排序 檔案複製命令cp 命令格式 cp adfilprsu 原始檔 source 目標檔案 destination cp option source1 source2 source3 directory 引數說明 a 是...

Linux 命令 收集

1.應用場景 快速查詢linux命令.2.學習 操作 命令大全查詢 linux命令大全 手冊 1.centos centos 6 7均可使用命令 1.檢視web伺服器版本 apache httpd v 或者 apachectl v 安裝目錄 尋找安裝目錄 tbd 2.啟動 停止 重啟apache服務...

linux命令收集 1

1 mysql的命令 關閉資料庫 bin mysqladmin shutdown uroot 啟動資料庫 nohup bin mysqld safe cmd.log 2 1 0 刪除資料庫 mysqladmin u username p password drop database 建立資料庫 my...