1.使用镜像创建虚拟机并配置网络 2.禁用NetworkManager服务
3.设置/etc/hosts 4.设置软件仓库 5.测试软件仓库 6.安装需要的包 7.禁用防火墙及selinux
8.清除虚拟机冗杂数据
9.查看虚拟机大小 10.封装虚拟机 11.创建虚拟机快照及查看大小,版本信息
12.使用虚拟机快照创建虚拟机 13.使用主机转发代理 参考代码:
693 hostname
694 clear
695 cd /etc/yum.repos.d/
696 ls
697 ls
698 vim rhel.dvd.repo
699 dnf list all
700 ssh -l root 172.25.71.1
701 vim /etc/hosts
702 vim rhel.dvd.repo
703 mv rhel.dvd.repo rhel_dvd.repo
704 ls
705 vim /var/lib/libvirt/images/
706 cd /var/lib/libvirt/images/
707 ls
708 ll vm1.qcow2
709 virt-sysprep -d vm1
710 ls
711 du -h vm1.qcow2
712 virt-sparsify --compress vm1.qcow2 vm-new.qcow2
713 qemu-img create -f qcow2 -b vm-new.qcow2 demo1
714 qemu-img create -f qcow2 -b vm-new.qcow2 server1
715 qemu-img create -f qcow2 -b vm-new.qcow2 server2
716 qemu-img create -f qcow2 -b vm-new.qcow2 server3
717 ls
718 du -h server*
719 qemu-img info server1
720 iptables -t nat -I POSTROUTING -s 172.25.0.0/24 -j MASQUERADE
721 history
|