虛擬機器的轉殖

2021-10-02 09:06:32 字數 971 閱讀 3777

轉殖:

轉殖的兩種方式:

1、手動轉殖(完整轉殖):

test01---------->test02:(將test01轉殖為test02)

1)複製xml配置檔案:

[root@localhost ~]# cd  /etc/libvirt/qemu/

[root@localhost qemu]# cp test01.xml test02.xml

或者[root@kvm ~]# virsh dumpxml test01 > test02.xml

2)複製磁碟檔案:

[root@localhost qemu]# cd  /kvm-vm/

[root@localhost kvm-vm]# cp centos.raw test02.raw

3)修改配置檔案並重新生成乙個虛擬機器:

[root@localhost kvm-vm]# cd  /etc/libvirt/qemu/

[root@localhost qemu]# vim test02.xml

a:name欄位

b:刪除uuid

c:刪除mac address

d:修改磁碟路徑以及名稱

[root@localhost qemu]# virsh   define  test02.xml
[root@localhost kvm-vm]# qemu-img  create  -f  qcow2  -b  centos.raw  test02.qcow2
自動轉殖(完整轉殖):

[root@localhost ~]# virt-clone  --auto-clone -o  test02  -n test03
//-o:表示轉殖誰,-n:指定名稱

轉殖虛擬機器

vmware虛擬機器安裝系統雖然方便,但是搭集群時如果每個結點都重新安裝的話也是很耗時的。幸好vmware有個轉殖功能,用起來非常方便,非常爽。下面就給出簡單的轉殖教程。前提是你已經有乙個安裝好系統且配置好環境的虛擬機器。這裡我就用圖上的nginx虛擬機器做演示,我安裝的是centos7。什麼都沒設...

虛擬機器轉殖

批量自動刪除rpm包 rpm qa grep mysql while read c do rpm e c nodeps done minimal最小化安裝 eth0預設沒有自啟用 修改配置檔案 onboot true 修改靜態位址後發現無法ping外網 需要設定閘道器 route add defau...

轉殖虛擬機器

前文 相比安裝虛擬機器,轉殖虛擬機器速度更快。一 直接按步驟完整轉殖。步驟簡單,直接下一步即可。二 開機 處理辦法 1.修改配置檔案 vim etc sysconfig network scripts ifcfg eth0 刪除uuid hwaddr 2.刪除相關檔案 重啟自動生成 rm rf et...