1. 程式人生 > >centos 操作記錄 和常用的一些命令

centos 操作記錄 和常用的一些命令

pwd   顯示當前所在位置 ls 顯示當前目錄下的檔名 tar 壓縮檔名---- 解壓命令 cd 資料夾名----- 進入資料夾

Need system command 'locate'問題 yum -y install mlocate 解決安裝對應檔案 yum -y install lspci

CentOS7增加或修改SSH埠號

centos 殺死程序命令 ps aux |grep httpd 

[[email protected] init.d]# ps aux |grep httpd root      2091  0.0  0.1   5488  2832 ?        Ss   17:19   0:00 /web/apache//bin/httpd -k restart daemon    2475  0.0  0.1 283220  2256 ?        Sl   17:45   0:00 /web/apache//bin/httpd -k restart daemon    2476  0.0  0.1 283220  2260 ?        Sl   17:45   0:00 /web/apache//bin/httpd -k restart daemon    2477  0.0  0.1 283220  2260 ?        Sl   17:45   0:00 /web/apache//bin/httpd -k restart root      2738  0.0  0.0   5500   736 pts/0    S+   17:56   0:00 grep httpd

這個就是 apache 的所有程序 

我們可以用  kill -9 加程序ID   如下 [[email protected] init.d]# kill -9 2091 [[email protected] init.d]# kill -9 2475 [[email protected] init.d]# kill -9 2476 [[email protected] init.d]# kill -9 2477 [[email protected] init.d]# ps aux |grep httpd root      2740  0.0  0.0   5500   732 pts/0    S+   17:58   0:00 grep httpd 全部殺完了...   殺死程序方法有很多種,,,,,我這個 只是其中的一種

:wq   儲存寫入