38 lines
735 B
Markdown
38 lines
735 B
Markdown
---
|
|
title: Rustdesk
|
|
description:
|
|
published: true
|
|
date: 2025-04-13T11:15:58.375Z
|
|
tags:
|
|
editor: markdown
|
|
dateCreated: 2025-04-13T10:47:36.132Z
|
|
---
|
|
|
|
# Rustdesk
|
|
[Rustdesk](https://rustdesk.com/) is a tool to remote control computers with its desktop enviroment over a network.
|
|
|
|
## Installtion
|
|
|
|
```cmd
|
|
yay -S rustdesk-bin
|
|
```
|
|
|
|
## Setup
|
|
|
|
Only peer to peer configuration is setup at the moment. The remote computer that should be controlled needs to:
|
|
|
|
- enable IP access
|
|
- allow the following port connections
|
|
|
|
```cmd
|
|
sudo ufw allow 21112:21113/tcp
|
|
sudo ufw allow 21115:21118/tcp
|
|
sudo ufw allow 21116/udp
|
|
sudo ufw reload
|
|
```
|
|
|
|
- Setup systemd service to start rustdesk headless on startup at
|
|
|
|
```cmd
|
|
sudo systemctl enable rustdesk
|
|
``` |