我目前正在使用qemu命令行参数来启动VM。
我的命令行是:
/home/gnayan/QEMU-devel/qemu-ubuntu/qemu/x86_64-softmmu/qemu-system-x86_64
-trace events=/home/gnayan/qemu_events
-drive file=/home/gnayan/CUSTOM_QEMU_SYSTEM/UBUNTU/ubuntu.img,if=virtio,format=raw
-drive file=/home/gnayan/CUSTOM_QEMU_SYSTEM/UBUNTU/u1.img,if=virtio,format=raw
-m 1G -net nic,model=virtio -net user -redir tcp:2222::22 -enable-kvm &
我想使用像virsh或virt-install等libvirt工具启动相同的VM,但是我很难完成这项工作。
我创建了我的域xml:
<domain type="kvm">
<name>first</name>
<currentMemory unit="MB">1024</currentMemory>
<memory unit="MB">1024</memory>
<os>
<type arch='x86_64'>hvm</type>
</os>
<devices>
<emulator>/home/gnayan/QEMU-devel/qemu-ubuntu/qemu/x86_64-softmmu/qemu-system-x86_64</emulator>
<disk type='file' device='disk'>
<source file='/home/gnayan/CUSTOM_QEMU_SYSTEM/UBUNTU/ubuntu.img'/>
<driver name='qemu' type='raw'/>
<target dev='vda' bus='virtio'/>
</disk>
</devices>
</domain>
尝试使用virsh define first.xml
创建VM
我收到以下错误:
error: Failed to define domain from first.xml
error: internal error: Child process (LC_ALL=C PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin /home/gnayan/QEMU-devel/qemu-ubuntu/qemu/x86_64-softmmu/qemu-system-x86_64 -help) unexpected exit status 126: libvirt: error : cannot execute binary /home/gnayan/QEMU-devel/qemu-ubuntu/qemu/x86_64-softmmu/qemu-system-x86_64: Permission denied
我的ubuntu设置可能有什么问题。
我已从源码安装qemu。
路径/ home / gnayan / QEMU-devel / qemu-ubuntu / qemu / x86_64-softmmu /尚未导出,libvirt是否需要此路径?
我还在dmesg
type=1400 audit(1470991545.250:44): apparmor="DENIED" operation="exec" profile="/usr/sbin/libvirtd" name="/home/gnayan/QEMU-devel/qemu-ubuntu/qemu/x86_64-softmmu/qemu-system-x86_64" pid=21287 comm="libvirtd" requested_mask="x" denied_mask="x" fsuid=0 ouid=0
[19990.781774] audit: type=1400 audit(1470991545.258:45): apparmor="DENIED" operation="exec" profile="/usr/sbin/libvirtd" name="/home/gnayan/QEMU-devel/qemu-ubuntu/qemu/x86_64-softmmu/qemu-system-x86_64" pid=21288 comm="libvirtd" requested_mask="x" denied_mask="x" fsuid=0 ouid=0
答案 0 :(得分:2)
我会这样做
virt-install --quiet --network bridge=bridge-name,model=virtio --name first --ram=1024 \
--vcpus=1 --disk path=/home/gnayan/CUSTOM_QEMU_SYSTEM/UBUNTU/ubuntu.img,format=raw\
--disk path=/home/gnayan/CUSTOM_QEMU_SYSTEM/UBUNTU/u1.img,format=raw \
--graphics none --os-type=linux --import --autostart & \
--import选项是因为我假设已经安装了Ubuntu OS。
对于端口重定向,我会使用iptables而不是以Vagrant样式进行。但只是一个意见。 不确定是否可以在KVM中使用。
我对/ var / lib / libvirtd / images /中图像的权限 -rw-r - r-- 1 qemu qemu