vmware一台虚拟机创建后初始化
更换国内安装源 cd /etc/yum.repos.d / 跳转到安装源的存档路径 mv CentOS-Base.repo CentOS-Base.repo.bak 将原有的安装源备份 下载国内的安装源 wget http://mirrors.163.com/.help/CentOS7-Base-163.repo yum clean all 清除所有缓存 yum makecache 创建新的缓存 添加epel源 yum search epel 查找epel源 yum install epel-release.noarch -y 安装epel源 yum makecache 创建新的缓存 yum repolist 查看当前可用的安装源 永久关闭防火墙服务 iptables -L 查看防火墙规则 iptables -t nat -L 查看防火墙nat表的规则 systemctl list-unit-files | grep firewalld systemctl is-active firewalld.service systemctl stop firewalld.service 临时关闭防火墙 systemctl is-active firewalld.service systemctl is-enabled firewalld.service systemctl disable firewalld.service永久关闭防火墙 永久删除虚拟网络virbr0 ifconfig 查看网络设备信息 yum search libvirt-client yum install -y libvirt-client.x86_64 virsh net-list 列出虚拟网络 virsh net -destroy default 临时删除虚拟网络 virsh net -undefine default 永久删除虚拟网络
|