Linux查询命令来自哪个包
未安装的情况下
#centos老版本用法
yum provides "*/netstat"
#centos新版本用法 7.0之后
yum whatprovides */netstat
#好用
yum search netstat
#ubuntu
apt search netstat
#另外一些方法
apt-file search -x '/sl$'
apt-file search -F /usr/games/sl
apt-cache madison mysql-server-8.0 #查看mysql还有哪些版本
yum list all mysql
apt-cache search netstat #查看netstat来自哪个包
yum list xxx*
已经安装的情况下
#查找存在的文件来自于哪个包
rpm -qf `which netstat`
#查找存在的文件来自于哪个包
dpgk -S /bin/ls
dpkg -l #查看已经安装的软件
dpkg -r #删除已经安装的软件