📝 Updated rustdesk daemon process
This commit is contained in:
parent
64bc1f9d57
commit
1f2f3fbe2a
1 changed files with 16 additions and 0 deletions
16
updates.txt
16
updates.txt
|
|
@ -608,3 +608,19 @@ To access i2p sites, you'll need to modify the /etc/i2pd/i2pd.conf file:
|
||||||
[addressbook]
|
[addressbook]
|
||||||
subscriptions= http://add2here.i2p/hosts.txt
|
subscriptions= http://add2here.i2p/hosts.txt
|
||||||
(note: the hosts.txt is how i2p resolves)
|
(note: the hosts.txt is how i2p resolves)
|
||||||
|
09/23/2024
|
||||||
|
Add a script for rustdesk as it now needs a service daemon:
|
||||||
|
cd /etc/runit/sv/
|
||||||
|
doas mkdir rustdesk
|
||||||
|
cd rustdesk
|
||||||
|
doas touch run
|
||||||
|
doas chmod +x run
|
||||||
|
doas nvim run
|
||||||
|
```sh
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
exec /usr/bin/rustdesk --service
|
||||||
|
````
|
||||||
|
doas ln -s /etc/runit/sv/rustdesk /run/runit/service/
|
||||||
|
doas sv start rustdesk
|
||||||
|
doas touch down
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue