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

Материал из wiki.nntc.nnov.ru
Перейти к навигации Перейти к поиску
(Новая страница: «==Создать сервис systemd== <pre> cat << 'EOF' > /etc/systemd/system/x11spice.service [Unit] Description=x11vnc Requires=network-online.target After=n…»)
 
(Создать сервис systemd)
Строка 8: Строка 8:
  
 
[Service]
 
[Service]
Restart=on-failure
+
Restart=always
ExecStart=/usr/bin/x11spice --allow-control --password=qwerty --hide
+
RestartTimeout=3
 +
ExecStart=/usr/bin/x11spice --allow-control --password=qwerty --hide --display=:0
 
User=root
 
User=root
 
Group=root
 
Group=root

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

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

cat << 'EOF' > /etc/systemd/system/x11spice.service
[Unit]
Description=x11vnc
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=root
Group=root

[Install]
WantedBy=multi-user.target
EOF

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

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