2022-05-04 06:52:47 +02:00
|
|
|
---
|
|
|
|
title: Linux
|
|
|
|
weight: 4
|
|
|
|
---
|
|
|
|
|
|
|
|
### Installation
|
|
|
|
|
2022-07-10 05:20:52 +02:00
|
|
|
#### Ubuntu (>= 16)
|
|
|
|
|
|
|
|
```bash
|
2022-05-04 06:52:47 +02:00
|
|
|
# please ignore the wrong disk usage report
|
|
|
|
sudo apt install -fy ./rustdesk-<version>.deb
|
|
|
|
```
|
|
|
|
|
2022-07-10 05:20:52 +02:00
|
|
|
#### CentOS/Fedora (>=18)
|
|
|
|
|
|
|
|
```sh
|
2022-05-04 19:41:06 +02:00
|
|
|
sudo yum localinstall ./rustdesk-<version>.rpm
|
2022-05-04 06:52:47 +02:00
|
|
|
```
|
|
|
|
|
2022-07-10 05:20:52 +02:00
|
|
|
#### Arch/Manjaro
|
|
|
|
|
|
|
|
```sh
|
2022-05-04 06:52:47 +02:00
|
|
|
sudo pacman -U ./rustdesk-<version>.pkg.tar.zst
|
|
|
|
```
|
|
|
|
|
2022-07-10 05:20:52 +02:00
|
|
|
#### Opensuse (>= Leap 15.0)
|
|
|
|
|
|
|
|
```sh
|
2022-05-04 19:41:06 +02:00
|
|
|
sudo zypper install --allow-unsigned-rpm ./rustdesk-<version>-suse.rpm
|
|
|
|
```
|
|
|
|
|
2022-07-10 05:20:52 +02:00
|
|
|
### X11 Required
|
|
|
|
|
|
|
|
RustDesk does not support wayland yet; you need switch to X11 manually.
|
2022-05-04 06:52:47 +02:00
|
|
|
|
|
|
|
#### Display Server
|
|
|
|
|
2022-07-10 05:20:52 +02:00
|
|
|
[Ubuntu](https://askubuntu.com/questions/1260142/ubuntu-set-default-login-desktop) |
|
|
|
|
[Fedora](https://docs.fedoraproject.org/en-US/quick-docs/configuring-xorg-as-default-gnome-session/) |
|
|
|
|
[Arch](https://bbs.archlinux.org/viewtopic.php?id=218319)
|
2022-05-04 06:52:47 +02:00
|
|
|
|
2022-07-10 05:20:52 +02:00
|
|
|
#### Login Screen
|
2022-05-04 06:52:47 +02:00
|
|
|
|
2022-07-10 05:20:52 +02:00
|
|
|
Modify below line to `WaylandEnable=false` in `/etc/gdm/custom.conf` or `/etc/gdm3/custom.conf`:
|
2022-05-04 06:52:47 +02:00
|
|
|
|
2022-07-10 05:20:52 +02:00
|
|
|
```ini
|
2022-05-04 06:52:47 +02:00
|
|
|
#WaylandEnable=false
|
|
|
|
```
|
|
|
|
|
2022-07-05 05:21:39 +02:00
|
|
|
{{% notice note %}}
|
|
|
|
Please **reboot** to make above changes taking effect
|
|
|
|
{{% /notice %}}
|