search for: guestfsvmc

Displaying 2 results from an estimated 2 matches for "guestfsvmc".

Did you mean: guestfs_c
2009 Sep 18
1
[PATCH] Enable new-style -chardev ... guestfwd command line
...;rjones at trick.home.annexia.org> Date: Fri, 18 Sep 2009 14:06:07 +0100 Subject: [PATCH] Enable new-style -chardev ... guestfwd command line. Newer versions of qemu have changed the command line format (again). '-net channel' is now deprecated. Instead we use: -chardev socket,id=guestfsvmc,path=/path/to/sock,server,nowait -net user,vlan=0,net=10.0.2.0/8,guestfwd=tcp:10.0.2.4:6666-chardev:guestfsvmc -net nic,model=ne2k_pci,vlan=0 The old style format is still used if the new style is not detected at runtime. --- src/guestfs.c | 46 ++++++++++++++++++++++++++----------------...
2010 Jul 05
5
[PATCH 0/3] RFC: Allow use of external QEMU process with libguestfs
.../libguestfsqJB1iN/initrd 2. Boot a QEMU instance with this info /usr/libexec/qemu-kvm -drive file=/dev/HostVG/f11i386,cache=off,if=virtio -enable-kvm -nodefaults -nographic -serial file:/tmp/guest/boot.log -monitor stdio -m 500 -no-reboot -chardev socket,id=guestfsvmc,path=/tmp/guest/sock,server,nowait -net user,vlan=0,net=169.254.0.0/16,guestfwd=tcp:169.254.2.4:6666-chardev:guestfsvmc -net nic,model=virtio,vlan=0 -append 'panic=1 console=ttyS0 udevtimeout=300 noapic acpi=off printk.time=1 cgroup_disable=memory selinux=0 guestfs_vmchannel...