Displaying 2 results from an estimated 2 matches for "sysreg2".
Did you mean:
sysreg
2015 Aug 25
2
On which /dev/pts/x is channel source mapped ?
Hi,
By adding following lines in a Guest .xml conf file , I'm able to send / receive datas between host and this guest.
<channel type='pty'>
<target type='virtio' name='arbitrary.virtio.serial.port.name'/>
<address type='virtio-serial' controller='0' bus='0' port='1'/>
</channel>
My question is
2015 Aug 26
0
Re: On which /dev/pts/x is channel source
...hen, we ask libvirt to dump the VM XML and we parse it to get the pts.
I'm not sure whether that's the most efficient method, but at least, that's a method that works.
You can have a look at our code which is GPLv2. It is available here:
https://svn.reactos.org/svn/project-tools/trunk/sysreg2/
More specifically, the part where we ask again for the config happens in kvm.cpp, KVM class, in KVM::GetConsole() function.
I hope it helps. If you need more information, don't hesitate to ask.
Cheers,
On 08/25/2015 05:17 PM, Jean-Pierre Ribeauville wrote:
> Hi,
>
> By adding foll...