Linux常见问题整理
Linux 常见问题整理
command not found
名称 | 命令 |
---|---|
lsof | yum -y install lsof |
ifconfig | yum -y install net-tools |
lsb_release | yum -y install redhat-lsb |
vim | yum -y install vim |
wget | yum -y install wget |
rz | yum -y install lrzsz |
firewall-cmd | yum -y install firewalld |
yum 命令不能使用
查看网卡是否启动,vim /etc/sysconfig/network-scripts/ifcfg-ens33,将 ONBOOT 改成 yes,重启网卡,service network restart,如果还是不行的话,设置如下
vi /etc/yum/pluginconf.d/fastestmirror.conf,设置 enabled=0
vi /etc/yum.conf,设置 plugins=0
连不上外网
检测网络配置,cat /etc/sysconfig/network-scripts/ens-*
1 | TYPE=Ethernet |
如果配置没问题就检查 dns,cat /etc/resolv.conf,重启网络
1 | nameserver 8.8.8.8 |