只有注册用户登录后才能阅读该文。 阅读全文
只有注册用户登录后才能阅读该文。 阅读全文
摘要:
通过virsh list命令能看到虚拟机的列表: [root@compute2 ~]# virsh list Id 名称 状态 ---------------------------------------------------- 60 instance-00000050 running 64 instance-00000054 running 这里要修改的是第二列, 虚拟机的名称。 ... 阅读全文
摘要:
1.安装docker yum install docker systemctl start docker.service systemctl enable docker.service 2.拉取centos7镜像 docker pull centos:7 3.在镜像中安装kvm环境,并制作成镜像 docker run -i -t --privileged centos:7 ... 阅读全文
摘要:
1. Changed in compute node: 给宿主机预留资源: 宿主机可用cpu:cpuid 0 – cpuid 5 宿主机可用内存:25G #vim /etc/nova/nova.conf vcpu_pin_set=6-31 reserved_host_memory_mb=25600 #grubby --update-kernel=ALL --args="isolcpu... 阅读全文
只有注册用户登录后才能阅读该文。 阅读全文
摘要:
使用举例:virsh send-key 11 KEY_LEFTCTRL KEY_LEFTALT KEY_DELETE作用:发送"ctrl+alt+del"给虚拟机,linux虚拟机会自动重启。 也可以使用下面命令: virsh qemu-monitor-command 4 --pretty '{"e 阅读全文
摘要:
virsh qemu-monitor-command uuid --hmp info migrate, 能看到迁移所设置的相关参数,和进度相关信息: virsh domjobinfo uuid命令, 能看到迁移的进度: 阅读全文
只有注册用户登录后才能阅读该文。 阅读全文
摘要:
<template> <name>centos72-source</name> <os> <name>CentOS-7</name> <version>2</version> <arch>x86_64</arch> <install type='iso'> <iso>file:///data/md0 阅读全文
|