blob: 2e20231070e096d274e85273ef7a39ebf76557f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
README.Slackware
================
This file contains some specific instructions to complete the
installation of rustdesk on Slackware.
If you want to start grafana on system bootup, include these lines in
your /etc/rc.d/rc.local:
# Start rustdesk
if [ -x /etc/rc.d/rc.rustdesk ]; then
/etc/rc.d/rc.rustdesk start
fi
To guarantee a clean shutdown of rustdesk, include this in
/etc/rc.d/rc.local_shutdown:
# Stop rustdesk
if [ -x /etc/rc.d/rc.rustdesk ]; then
/etc/rc.d/rc.rustdesk stop
fi
Make /etc/rc.d/rc.rustdesk executable
# chmod +x /etc/rc.d/rc.rustdesk
Starting rustdesk
# /etc/rc.d/rc.rustdesk start
|