Spice: различия между версиями

Материал из wiki.nntc.nnov.ru
Перейти к навигации Перейти к поиску
(Создать сервис systemd)
Строка 23: Строка 23:
 
  systemctl daemon-reload
 
  systemctl daemon-reload
 
  systemctl enable --now x11spice.service
 
  systemctl enable --now x11spice.service
 +
 +
==Для клиентских подключений можно установить программу клиент==
 +
 +
apt-get install remmina remmina-plugins-spice

Версия 17:22, 2 ноября 2023

Создать сервис systemd

cat << 'EOF' > /etc/systemd/system/x11spice.service
[Unit]
Description=x11spice
Requires=network-online.target
After=network-online.target

[Service]
Restart=always
RestartTimeout=3
ExecStart=/usr/bin/x11spice --allow-control --password=qwerty --hide --display=:0
User=user
Group=user

[Install]
WantedBy=multi-user.target
EOF

Включить сервис на автозапуск

systemctl daemon-reload
systemctl enable --now x11spice.service

Для клиентских подключений можно установить программу клиент

apt-get install remmina remmina-plugins-spice