Lines Matching +full:gtk +full:- +full:vnc
6 ------------
10 list includes sdl2, gtk (both 2+3) and vnc:
12 ./configure --enable-sdl
16 ./configure --enable-gtk
19 Next put together the qemu command line (sdk/gtk):
21 qemu -accel kvm -usb $memory $disk $whatever \
22 -display [ sdl | gtk ] \
23 -vga std \
24 -device usb-tablet
27 standard ps/2 keyboard (implicitly there) and the usb-tablet. Now the
30 -device pci-bridge,addr=12.0,chassis_nr=2,id=head.2 \
31 -device secondary-vga,bus=head.2,addr=02.0,id=video.2 \
32 -device nec-usb-xhci,bus=head.2,addr=0f.0,id=usb.2 \
33 -device usb-kbd,bus=usb.2.0,port=1,display=video.2 \
34 -device usb-tablet,bus=usb.2.0,port=2,display=video.2
47 -device pci-bridge,addr=12.0,chassis_nr=2,id=head.2 \
48 -device secondary-vga,bus=head.2,addr=02.0,id=video.2 \
49 -device virtio-keyboard-pci,bus=head.2,addr=03.0,display=video.2 \
50 -device virtio-tablet-pci,bus=head.2,addr=03.0,display=video.2
55 -------
58 device. The gtk ui will start with a single window and each display
61 to its own window so you can see both display devices side-by-side.
63 For vnc some additional configuration on the command line is needed.
64 We'll create two vnc server instances, and bind the second one to the
67 -display vnc=:1,id=primary \
68 -display vnc=:2,id=secondary,display=video.2
70 Connecting to vnc display :1 gives you access to the first seat, and
71 likewise connecting to vnc display :2 shows the second seat.
77 libspice-server and qemu. For keyboard events it is even worse: The
83 ----------
90 Now we'll have to configure the guest. Boot and login. "lspci -vt"
93 [root@fedora ~]# lspci -vt
94 -[0000:00]-+-00.0 Intel Corporation 440FX - 82441FX PMC [Natoma]
96 \-12.0-[01]--+-02.0 Device 1234:1111
97 \-0f.0 NEC Corporation USB 3.0 Host Controller
103 [root@fedora ~]# cat /etc/udev/rules.d/70-qemu-autoseat.rules
109 [root@fedora ~]# loginctl list-seats
112 seat-pci-pci-0000_00_12_0
116 You can use "loginctl seat-status seat-pci-pci-0000_00_12_0" to list
123 guest side with pci-bridge-seat
124 -------------------------------
126 QEMU version 2.4 and newer has a new pci-bridge-seat device which
127 can be used instead of pci-bridge. Just swap the device name in the
133 [root@fedora ~]# cat /etc/udev/rules.d/70-qemu-pci-bridge-seat.rules
144 --