User Tools

Site Tools


qemunet:misc

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
qemunet:misc [2019/05/27 21:42] – [Spice] orelqemunet:misc [2024/03/18 15:06] (current) – external edit 127.0.0.1
Line 3: Line 3:
 ==== Convert QEMU image for VirtualBox ==== ==== Convert QEMU image for VirtualBox ====
  
 +Conversion avec l'outil de VirtualBox (format VDI) :
  
-  qemu-img convert debian10.img -O raw debian10.raw +  vboxmanage convertfromraw debian10x.img --format vdi debian10x.vdi 
-  VBoxManage convertfromraw debian10.raw --format vdi debian10.vdi+  vboxmanage convertdd debian10x.qcow2 --format vdi debian10x.vdi
  
 +Conversion avec l'outil de QEMU :
  
 +  qemu-img convert debian10x.img -O raw debian10x.raw
 +  qemu-img convert -O qcow debian10x.img debian10x.qcow   # QCOW Image V1
 +  qemu-img convert -O qcow2 -o compat=0.10 debian10x.img debian10x.qcow2 # QCOW Image V2
 +  qemu-img convert -O qcow2 debian10x.img debian10x.qcow3 # QCOW Image V3 (default) !!!
 +
 +QCOW v1 & v2 sont supportés... QCOW Image v3 supporté à partir de VirtualBox 6.0.8 (?).
 ==== Nested Virtualization in QEMU/KVM ==== ==== Nested Virtualization in QEMU/KVM ====
  
Line 58: Line 66:
   $ qemu-system-x86_64 -enable-kvm -hda kali.img  -name syl -m 2G $SPICEOPT $SPICEMORE   $ qemu-system-x86_64 -enable-kvm -hda kali.img  -name syl -m 2G $SPICEOPT $SPICEMORE
  
 +Installez spice-vdagent sur le guest (linux) et vérifiez que les services space-vdagentd et spice-vdagent sont bien démarrés...
  
-Installer spice-vdagent sur le guest (linux).  
  
   $ sudo apt-get install spice-vdagent   $ sudo apt-get install spice-vdagent
Line 76: Line 84:
   $ SPICEOPT3="$SPICEOPT2 -device virtio-serial -chardev spicevmc,id=vdagent,name=vdagent -device virtserialport,chardev=vdagent,name=com.redhat.spice.0"   $ SPICEOPT3="$SPICEOPT2 -device virtio-serial -chardev spicevmc,id=vdagent,name=vdagent -device virtserialport,chardev=vdagent,name=com.redhat.spice.0"
  
- +(Eventuellement, faire un reboot avec vdaagent sans spice... Après un plantage, j'ai réinstallé spice guest tools et c'est retombé en marche après deux reboot?)
-Demarrer space-vdagentd au boot et spicevdagent apres le login X.+
  
 __More:__ https://www.linux-kvm.org/page/SPICE __More:__ https://www.linux-kvm.org/page/SPICE
qemunet/misc.1558993350.txt.gz · Last modified: 2024/03/18 15:05 (external edit)