各种各样的备忘录

KVM等等

安置

主机:CentOS7 客机:CentOS6x64

#!/bin/bash
virt-install \
--name centos6x64 \
--ram 3096 \
--disk path=/var/kvm/images/centos6x64.img,size=30 \
--vcpus 2 \
--os-type linux \
--os-variant rhel6 \
--network bridge=br0 \
--graphics none \
--console pty,target_type=serial \
--location 'http://ftp.iij.ad.jp/pub/linux/centos/6/os/x86_64/' \
--extra-args 'console=ttyS0,115200n8 serial'

主机操作系统:CentOS7 客户端操作系统:CentOS7

#!/bin/bash
virt-install \
--name centos7 \
--ram 3096 \
--disk path=/var/kvm/images/centos7.img,size=30 \
--vcpus 2 \
--os-type linux \
--os-variant rhel7 \
--network bridge=br0 \
--graphics none \
--console pty,target_type=serial \
--location 'http://ftp.iij.ad.jp/pub/linux/centos/7/os/x86_64/' \
--extra-args 'console=ttyS0,115200n8 serial'

抓拍

# virsh list --all
 Id    名前                         状態
----------------------------------------------------
 2     centos6                        実行中
 3     centos7                        実行中

表达

# virsh snapshot-list centos7
 名前               作成時間              状態
------------------------------------------------------------
 centos7-snapshot-160109 2016-01-09 20:49:26 +0900 running

创建

# virsh snapshot-create-as centos7 centos7-ss

还原

# virsh snapshot-revert centos7 centos7-ss

删除

# virsh snapshot-delete centos7 centos7-ss-160109-2206
ドメインのスナップショット centos7-ss-160109-2206 が削除されました

更改客户操作系统的名称

# uuidgen
38c71a44-e03a-4174-89e2-e27a6b1ab9c8 ←メモ
# virsh edit 仮想マシン名
<name>表示させたい名前</name>
<uuid>上でメモしたuuid</uuid>    ←メモしたuuidへ書き換える。

# virsh define /etc/libvirt/qemu/仮想マシン名.xml <--再定義する。
# virsh list --all                               <--新しい名称と古い名称の仮想マシンが表示される。
# virsh start 新しい仮想マシン名        <--新しい仮想マシン名で起動して、正常に動作することを確認する。
# virsh undefine 古い仮想マシン名        <--古い仮想マシン名を定義を解除する。
广告
将在 10 秒后关闭
bannerAds