linux命令整理和收集

2021-05-22 18:49:22 字數 468 閱讀 7710

把日常遇到的、使用的命令做個整理(逐步整理中。。)

1.刪除資料夾時,如果資料夾下有子資料夾時,可以用rm -rf  (強制刪除)、rm -ri (有提示的刪除)

2.新增新使用者  

adduser(或useradd)  name -g groupname -g groupname

新增組  

groupadd  groupname

3.切換使用者  su

su - shaun

4.deb包安裝 sudo dpkg -i qq.deb

5.查詢某個程序占用的程序號

ps -ef | grep  ***  ,檢查出來程序號,就可以進行kill等操作,例如

刪除正在執行的svnserve

首先 ps -ef | grep svnserve

然後根據查到的程序號  進行 kill -9 ***  操作

Linux命令收集

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

linux 命令收集

1.不顯示 etc services 開頭的行,etc services檔案並沒有修改 sed e d etc services more 2.忽略前十行,顯示後面的內容 sed e 1,10d etc services more 3.列印所有包括begin的行和end行之間的行的內容 sed n ...

Linux 命令 收集

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