kvm:使用virsh命令管理客戶機html
虛擬機掛載isoshell
在宿主上編寫cdrom設備的xml文件(定義 須要掛載的具體文件)dom
[root@KVM_test image]# cat cdrom.xml <disk type='file'> <target dev='vde' bus='virtio'/> <source file='/data/image/guo.iso'/> </disk>
2. 在宿主上使用kvm掛載磁盤:
# 須要在關機機狀態下(去掉 --live 選項)
工具
virsh attach-device --domain KY20160303170514Y1B --file cdrom.xml --live --config
3. 查看 vnc port 並結合 vnc viewer 工具管理客戶機code
[root@KVM_test image]# virsh vncdisplay KY20160225165610SLn :1
# 使用 vnc viewer 管理客戶機
xml
# {宿主ip}:{vnc_port+5900} 即 宿主 10.160.0.6 , 宿主端口 5900 + 1 = 5901
htm
3. 在客戶機內部,建立文件夾並進行 mount
blog
mkdir -p /data/cdrom mount -t iso9660 -r /dev/vdb /data/cdrom ll /data/cdrom
4. 卸載isoip
# 須要在關機機狀態下(去掉 --live 選項)get
virsh detach-device --domain KY20160303170514Y1B --file cdrom.xml --live --config
引用:
http://www.cnblogs.com/chengmo/archive/2010/10/13/1850515.html