Spice
Версия от 17:10, 2 ноября 2023; Vovan (обсуждение | вклад) (Новая страница: «==Создать сервис systemd== <pre> cat << 'EOF' > /etc/systemd/system/x11spice.service [Unit] Description=x11vnc Requires=network-online.target After=n…»)
Создать сервис systemd
cat << 'EOF' > /etc/systemd/system/x11spice.service [Unit] Description=x11vnc Requires=network-online.target After=network-online.target [Service] Restart=on-failure ExecStart=/usr/bin/x11spice --allow-control --password=qwerty --hide User=root Group=root [Install] WantedBy=multi-user.target EOF
Включить сервис на автозапуск
systemctl daemon-reload systemctl enable --now x11spice.service