目录
好久不见了,小编在这里说抱歉了,在段时间在玩,接下来,我必须要好好学习了。今天与大家分享linux设置ip网络地址与换源
1) 查看IP地址: ip addr 或者 ifconfig, 注意与windows环境的区别,win中是ipconfig
查看ens33中没有inet属性,表示没有为虚拟机指定ip,那么就无法通过ip连接到虚拟机。
2)使用vi编辑ifcfg-ens33
如果只查看文件可以使用如下命令: cat 文件名 如: cat ifcfg-ens33
3) 重启网络服务
service network restart
重启后再次使用ifconfig / ip addr 命令查看ip地址。
1. yum install wget 下载wget工具包
2. 备份原来的默认配置文件
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak3. 来到/etc/yum.repos.d
cd /etc/yum.repos.d
4. 下载阿里的软件源配置文件
wget -O CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo