четверг, 27 июля 2017 г.

SPICE-сервер как альтернатива VNC-серверу

Под впечатлением статьи:
Виртуальная видеокарта QXL на реальном железе
Xspice server in a Container

Установил на mint 18.2
Внимание - делаем на виртулаьной машине,
после перезагузки будет с виртуальной видеокартой.
Во всяком случае стандартный kvm spice доступ - черный экран.
# apt install xserver-xspice
Создать файл с настройками:
# nano /etc/X11/xorg.conf

Section "Device"
    Identifier "XSPICE"
    Driver "spiceqxl"

    # Enable regular port. Either this or SpiceTlsPort, or one of XSPICE_PORT or
    # XSPICE_TLS_PORT environment variables must be specified
    # Defaults to 5900.
    Option "SpicePort" "5900"

    # Do not request any password from client
    Option "SpiceDisableTicketing" "0"

    # Set password client will be required to produce.
    Option "SpicePassword" "password"
EndSection

Section "InputDevice"
    Identifier "XSPICE POINTER"
    Driver     "xspice pointer"
EndSection

Section "InputDevice"
    Identifier "XSPICE KEYBOARD"
    Driver     "xspice keyboard"
EndSection

Section "Monitor"
    Identifier    "Configured Monitor"
EndSection

Section "Screen"
    Identifier     "XSPICE Screen"
    Monitor        "Configured Monitor"
    Device        "XSPICE"
    DefaultDepth    24
EndSection

Section "ServerLayout"
    Identifier "XSPICE Example"
    Screen "XSPICE Screen"
    InputDevice "XSPICE KEYBOARD"
    InputDevice "XSPICE POINTER"
EndSection

# Prevent udev from loading vmmouse in a vm and crashing.
Section "ServerFlags"
    Option "AutoAddDevices" "False"
EndSection

Сохранить.
#  reboot

После перезагрузки, подключался из под windows virt-viewer (пароль password)
Красиво работало, за исключением - не прорисововался курсор мыши.

Удаление:
# apt remove xserver-xspice
После работает как обычно.


Комментариев нет:

Отправить комментарий