(1)输入ifconfig 提示不存在。
(2)首先确认下是否是环境变量没有 ifconfig 引起。
ls /sbin/ifconfig
(3)确定了系统是没有安装 ifconfig。
yum install ifconfig
(4)提示没有 ifconfig 安装包,我们再使用 yum search ifconfig 来搜索下 ifconfig 的相关,查看 ifconfig 匹配的是 net-tools.x86_64 包,安装 net-tools.x86_64 包。
yum install net-tools.x86_64 -y
(5)输入 ifconfig 查看效果,另外输入 ip addr 也是可以查询。
(1)查看:systemctl status firewalld
(2)关闭(临时):systemctl stop firewalld,关闭后查看是否关闭成功,如果看到 inactive(dead) 就意味着防火墙关闭了。
(3)关闭(默认):systemctl disable firewalld
(4)打开:systemctl start firewalld
(5)系统重启。reboot
(1)查看系统的 SSH 服务是否安装。
rpm -qa | grep ssh
ps:若没安装 SSH 服务则可输入:yum install openssh-server
(2)启动 SSH 服务。
ps:重启后可输入:netstat -antp | grep sshd ,查看22端口是否启动。
(3)如何设置 SSH 服务为开机启动?
chkconfig sshd on
ps:若是 chkconfig sshd off 则禁止 SSH 开机启动。
方式一:rpm 安装
(1)下载 wget 的 rpm 包:http://mirrors.163.com/centos/6.8/os/x86_64/Packages/wget-1.12-8.el6.x86_64.rpm
(2)执行:rpm -ivh wget-1.12-8.el6.x86_64.rpm
方式二:yum 安装
yum -y install wget
(1)备份一下原本的 yum 源:mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
(2)下载阿里云的 yum 源【本文使用的是 Cent OS 7,如果需要其他版本,那么只需要将下面的7改成5或6即可】【这一步需要能联网】:wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
(3)之后运行给 install 生成缓存。yum makecache
代码小兵86504-19 19:55
代码小兵49806-21 15:40
代码小兵69607-21 11:32
代码小兵87207-21 12:51