--- title: Linux weight: 4 --- ### Installation #### Ubuntu (≥ 16) ```sh # please ignore the wrong disk usage report sudo apt install -fy ./rustdesk-.deb ``` #### CentOS/Fedora (≥ 18) ```sh sudo yum localinstall ./rustdesk-.rpm ``` #### Arch Linux/Manjaro ```sh sudo pacman -U ./rustdesk-.pkg.tar.zst ``` #### openSUSE (≥ Leap 15.0) ```sh sudo zypper install --allow-unsigned-rpm ./rustdesk--suse.rpm ``` ### ~~X11 Required~~ ~~RustDesk does not support Wayland yet; you need switch to X11 manually.~~ RustDesk now has experimental Wayland support since v1.2.0. #### Display Server [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 Linux](https://bbs.archlinux.org/viewtopic.php?id=218319) #### Login Screen Login screen using Wayland is not supported yet. If you wanna access login screen after reboot or logout with RustDesk, you need to change login screen to X11, please modify below line to `WaylandEnable=false` in `/etc/gdm/custom.conf` or `/etc/gdm3/custom.conf`: ```ini #WaylandEnable=false ``` {{% notice note %}} Please **reboot** to make above changes taking effect. {{% /notice %}} #### Permissions Issue If SELinux is enabled, RustDesk will not work properly in either X11 or Wayland environments, related [issues](https://github.com/search?q=repo%3Arustdesk%2Frustdesk+SElinux&type=issues). You can run: ```sh $ sudo grep 'comm="rustdesk"' /var/log/audit/audit.log | tail -1 type=AVC msg=audit(1697902459.165:707): avc: denied { name_connect } for pid=31346 comm="rustdesk" dest=53330 scontext=system_u:system_r:init_t:s0 tcontext=system_u:object_r:ephemeral_port_t:s0 tclass=tcp_socket permissive=0 ``` {{% notice note %}} The number in parentheses after `audit` is timestamp. {{% /notice %}} If the output contains `avc: denied`, you need to add SELinux policies, please refer to [SELinux](https://rustdesk.com/docs/en/client/linux/selinux/).