目录
配置临时IP:ipaddr add 192.168.0.100/24 dev ens1route add default gw 192.168.0.1
配置永久IP:nmcli c add type ethernet con-name ens1 ifname ens1 ip4 192.168.0.100/24 gw4 192.168.0.1
Linux ip
配置临时IP:
ipaddr add 192.168.0.100/24 dev ens1
route add default gw 192.168.0.1
配置永久IP:
nmcli c add type ethernet con-name ens1 ifname ens1 ip4 192.168.0.100/24 gw4 192.168.0.1
yum仓库的搭建
1、配置NAT网络 保证可以ping外网
2、编辑yum配置文件
vim /etc/yum.repos.d/docker.repo
[docker]
name=docker
baseurl=https://mirrors.aliyun.com/docker-ce/linux/rhel/7.3/s390x/stable/
enabled=1
gpgcheck=0
:x
3、挂载镜像
mount /dev/cdrom /media
4、检索yum 仓库
yum clean all&&yum repolist