apt-get 安装各常用软件

1. 安装 ps、pkill

apt-get install procps
#####查找tomcat进程并杀死
ps -ef | grep tomcat | grep -v grep | awk '{print $2}' | xargs kill -9

2. 安装 ifconfig、netstat

apt-get install net-tools   (centos7:  yum install net-tools)

3. 安装ping命令

apt-get install iputils-ping    

4. 安装crontab命令

apt-get install cron

5. 安装 docker

apt-get install -y docker.io

6. 安装 lspci, 用于查看显卡信息

apt install pciutils

 

你可能感兴趣的:(linux,linux,docker,运维)