命令行安装KVM

查看libvirtd的状态:

[[email protected] ~]# /etc/init.d/libvirtd status

libvirtd (pid  2503) is running...

安装vnc:

[[email protected] ~]# yum install -y tigervnc

[[email protected] ~]# yum install -y virt-viewer

查看虚拟机状态:

[[email protected] ~]# virsh list --all

Id    Name                           State

----------------------------------------------------

-     www.linux1.cn                  shut off

准备镜像文件:

[[email protected] ~]# ll /var/lib/libvirt/images/ubuntu-16.04-desktop-amd64.iso

创建磁盘:

[[email protected] ~]# mkdir /var/lib/libvirt/disk/ -p

[[email protected] ~]# qemu-img create -f raw /var/lib/libvirt/disk/unbuntu16.raw 10G

Formatting ‘/var/lib/libvirt/disk/unbuntu16.raw‘, fmt=raw size=10737418240

安装虚拟机:

[[email protected] ~]# virt-install --name ubuntu16 --ram 1024 --vcpu=1 --disk path=/var/lib/libvirt/disk/unbuntu16.raw --accelerate --cdrom=/var/lib/libvirt/images/ubuntu-16.04-desktop-amd64.iso --network bridge=br0 --graphics vnc

"""

--name=ubuntu16 #指定guest的名字
--ram=1024 #指定内存大小
--vcpus=1 #指定cpu个数
--disk path=/xx/xx.xx #指定磁盘
--accelerate #加速
--cdrom /xx/xx.iso 指定镜像
--network bridge=br0 #bridge=xx , network:name ,user
--graphics vnc
--location= #directory ,nfs:host:/path ,http://host/path ,ftp://host/path

"""

配置vnc:

[[email protected] ~]# grep -Ev "^$|^#" /etc/libvirt/qemu.conf

vnc_listen = "0.0.0.0"

[[email protected] ~]# /etc/init.d/libvirtd restart

Stopping libvirtd daemon:                                  [  OK  ]

Starting libvirtd daemon:                                  [  OK  ]

[[email protected] ~]# netstat -antup|grep 5900

tcp        0      0 0.0.0.0:5900              0.0.0.0:*                   LISTEN      18413/qemu-kvm

(如果vnc只是监听127.0.0.1那么其他机器是无法使用vnc客户端连接进来的)

vnc远程连接:5900

[[email protected] ~]# vncviewer 127.0.0.1:5900

配置文件:

[[email protected] qemu]# pwd

/etc/libvirt/qemu

[[email protected] qemu]# ll

total 16

drwxr-xr-x 2 root root 4096 Sep  4 10:31 autostart            #开机启动相关

drwx------ 3 root root 4096 Sep  4 09:46 networks             #网络相关

-rw------- 1 root root 2290 Sep  4 13:13 ubuntu16.xml          #虚拟机配置文件  .xml

-rw------- 1 root root 2574 Sep  4 10:32 www.linux1.cn.xml

虚拟机配置文件:

[[email protected] ~]# vim /etc/libvirt/qemu/ubuntu16.xml

<!--

WARNING: THIS IS AN AUTO-GENERATED FILE. CHANGES TO IT ARE LIKELY TO BE

OVERWRITTEN AND LOST. Changes to this xml configuration should be made using:

virsh edit ubuntu16

or other application using the libvirt API.

-->

<domain type=‘kvm‘>

<name>ubuntu16</name>

<uuid>729109f3-6bcc-2f44-b1d3-4f9f6bface83</uuid>

<memory unit=‘KiB‘>1048576</memory>

<currentMemory unit=‘KiB‘>1048576</currentMemory>

<vcpu placement=‘static‘>1</vcpu>

<os>

<type arch=‘x86_64‘ machine=‘rhel6.5.0‘>hvm</type>

<boot dev=‘hd‘/>

</os>

<features>

<acpi/>

<apic/>

<pae/>

</features>

<clock offset=‘utc‘/>

<on_poweroff>destroy</on_poweroff>

<on_reboot>restart</on_reboot>

<on_crash>restart</on_crash>

<devices>

<emulator>/usr/libexec/qemu-kvm</emulator>

<disk type=‘file‘ device=‘disk‘>

<driver name=‘qemu‘ type=‘raw‘ cache=‘none‘/>

<source file=‘/var/lib/libvirt/disk/unbuntu16.raw‘/>

<target dev=‘hda‘ bus=‘ide‘/>

<address type=‘drive‘ controller=‘0‘ bus=‘0‘ target=‘0‘ unit=‘0‘/>

</disk>

<disk type=‘block‘ device=‘cdrom‘>

<driver name=‘qemu‘ type=‘raw‘/>

<target dev=‘hdc‘ bus=‘ide‘/>

<readonly/>

<address type=‘drive‘ controller=‘0‘ bus=‘1‘ target=‘0‘ unit=‘0‘/>

</disk>

<controller type=‘usb‘ index=‘0‘>

<address type=‘pci‘ domain=‘0x0000‘ bus=‘0x00‘ slot=‘0x01‘ function=‘0x2‘/>

</controller>

<controller type=‘ide‘ index=‘0‘>

<address type=‘pci‘ domain=‘0x0000‘ bus=‘0x00‘ slot=‘0x01‘ function=‘0x1‘/>

</controller>

<interface type=‘bridge‘>

<mac address=‘52:54:00:b0:48:17‘/>

<source bridge=‘br0‘/>

<address type=‘pci‘ domain=‘0x0000‘ bus=‘0x00‘ slot=‘0x03‘ function=‘0x0‘/>

</interface>

<serial type=‘pty‘>

<target port=‘0‘/>

</serial>

<console type=‘pty‘>

<target type=‘serial‘ port=‘0‘/>

</console>

<input type=‘mouse‘ bus=‘ps2‘/>

<graphics type=‘vnc‘ port=‘-1‘ autoport=‘yes‘/>

<video>

<model type=‘cirrus‘ vram=‘9216‘ heads=‘1‘/>

<address type=‘pci‘ domain=‘0x0000‘ bus=‘0x00‘ slot=‘0x02‘ function=‘0x0‘/>

</video>

<memballoon model=‘virtio‘>

<address type=‘pci‘ domain=‘0x0000‘ bus=‘0x00‘ slot=‘0x04‘ function=‘0x0‘/>

</memballoon>

</devices>

</domain>

时间: 2024-10-07 07:10:17

命令行安装KVM的相关文章

kvm命令行安装

qemu-img创建磁盘文件通过文件管理可以直接查看.修改.复制虚拟机的内部文件.例如,当系统因为配置文件无法启动时,可以直接修改虚拟机的文件.虚拟机磁盘文件主要有raw和qcow2格式.raw格式性能最好,速度最快,它的缺点就是不支持一些新的功能,如支持镜像,zlib磁盘压缩,AES加密等.要使用镜像功能,磁盘格式必须为qcow2.raw格式的话,速度稍微快点,在高版本的qemu-kvm中,几乎不比qcow2的格式快,而qcow2格式节省空间,可动态增长,在公有云中广泛使用,建议使用qcow2

04.ubuntu下kvm 命令行安装64位ubuntu报&quot;Couldn&#39;t find hvm kernel for Ubuntu tree.&quot;的问题

1.安装ubuntu时使用的virt-install的配置: virt-install \ --name test4 \ --ram 1024 \ --disk path=/data/01_ubuntu/ubuntu4.img,size=6 \ --vcpus 1 \ --hvm \ --os-type linux \ --network network=default \ --os-variant ubuntuquantal \ --graphics none \ --console pty,

Appium Mac 命令行安装

试过很多方法都失败,打算用命令行方式安装. 准备工作: 从 https://github.com/appium/appium下载appium版本的源码(.tar) 详见github_Appium1.6.5 1. 命令行安装node: brew install node 2. cd 到 appium.tar的解压后的路径 3.  安装appium npm install -g ./appium 安装后界面: nalideMacBook-Pro:appium-1.6.5 nali$ npm inst

android 命令行安装apk

有两种方式可以在android模拟器或真机上使用命令行安装apk 一种是使用adb install命令,网上通常是这种方式 另一种是通过android提供的命令,pm install. 需要先进入android命令行:adb shell 然后执行对应pm命令. pm命令的说明,转载另一篇博客:Android下pm 命令详解 具体内容摘录如下,以便以后查看: 0. Usage: usage: pm [list|path|install|uninstall] pm list packages [-f

命令行安装ipa包

我们可以通过ssh连接我们的iphone,来使用命令行安装ipa包   itunnel_mux.exe --lport 9993 --iport 22   itunnel_mux.exe --lport 9993 --iport 22 这时就可以通过本地端口9993来访问我们的iOS设备的命令行了 使用winscp,将ipa包上传到iOS设备中: 上传完包后,运行ipainstall安装

mac命令行安装htop

htop是在终端下观察系统资源分布的一个小工具, 功能与top类似, 但top是全一色的,htop是彩色的,效果比较好. 安装命令行如下: curl -O http://themainframe.ca/wp-content/uploads/2011/06/htop.zip unzip htop.zip sudo mv htop /bin rm htop.zip 命令: htop 运行结果 mac命令行安装htop

3.2 从命令行安装

3.2  从命令行安装 3.2.1  安装程序的配置文件 通过安装向导完成安装后,会在安装日志文件的相同目录下产生一个配置文件.例如,C:\Program Files\Microsoft SQL Server\120\Setup Bootstrap\Log\20141130_162528\ConfigurationFile.ini.以下是某个配置文件的示例: ;SQL Server 2014 Configuration File [OPTIONS] ; 指定安装程序的工作流,如 INSTALL.

第三章 Esxi 5.x/6.x使用命令行安装Patches or update

概述 本博介绍了Esxi 5.5 如何使用命令行安装更新及补丁,并说明update命令及install命令的区别. 本博主要适用以下人员: Vmware Esxi 5.5 IT爱好者. 操作流程:  1.从VMware官网下载对应的zip升级补丁包,补丁下载地址: https://www.vmware.com/patchmgr/findPatch.portal 2.通过xftp或其它工具上传升级补丁包至ESXi存储上: /vmfs/volumes/datastore1/update      

CentOS7 命令行安装teamviewer遇到依赖包问题及完美解

公司新到了几台服务器做Docker集群方面的应用,将这几台服务器搭建成一个集群.由于要经常同时操作这几台服务器,而我又不喜欢待在机房.TeamViewer很好的解决了该问题,Teamviewer可实现远程控制电脑,并可在你自己的电脑上同时控制几台台服务器,操作起来相当方便. ? 一.CentOS7命令行安装TeamViewer ? 1.进入官网下载软件包 2.安装 #?yumyum?install?-y?teamviewer_13.0.5693.x86_64.rpm ? ? 或者? #?rpm?