为了避免误操作,比如说,删根,删配置文件等,这些文件一旦删除,就很难恢复,因此,虚拟机的备份还是很有必要的。
虚拟机备份的步骤:
一、做好初始化
初始化工作主要包括:
(1)命令提示符的修改
CentOS配置文件: /etc/profile.d/env.sh
Ubuntu配置文件:~/.bashrc
(2)关闭防火墙:systemctl disable --now firewalld
(3)关闭SELinux:
vim /etc/selinux/config
SELINUX=disabled
重启生效:reboot
(4)实现邮件通信:/etc/mail.rc
yum -y install postfix mailx
systemctl enable --now postfix
(5)配置yum 源:/etc/yum.repos.d/base.repo
CentOS8 : BaseOS , appstream,epel
CentOS7: BaseOS, epel
(6)网卡NAT:
CentOS网卡配置文件:/etc/sysconfig/network-scripts/ifcfg-eth0
CentOS DNS配置文件:/etc/resolv.conf
Ubuntu网卡配置文件:/etc/netplan/01-netcfg.yaml
(7) chrony 时间同步:/etc/chrony.conf
(8)自动加注释配置文件:~/.vimrc
二、关闭虚拟机
三、右键单击要创建快照的虚拟机,快照→拍摄快照,给快照取个名称,点击【拍摄快照】
四、备份虚拟机文件,原来虚拟机存放在D盘,可将其拷贝到E盘、F盘。