Rocky 8.x RustDesk

From Notes_Wiki
Revision as of 07:32, 10 December 2022 by Saurabh (talk | contribs) (Created page with "Home > Rocky Linux or CentOS > Rocky Linux 8.x > Remote Access > RustDesk =RustDesk Server installation= Install RustDesk on Rocky 8.x using: # Create an instance with public IP. # Map DNS to public IP (IPv4 / IPv6 or both) # Based on preference: #* Set hostname #* Configure history retention #* Add swap #* Configure postfix and logwatch # Install wget #:<pre> #:: dnf -y install wget #:</pre> # D...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Home > Rocky Linux or CentOS > Rocky Linux 8.x > Remote Access > RustDesk

RustDesk Server installation

Install RustDesk on Rocky 8.x using:

  1. Create an instance with public IP.
  2. Map DNS to public IP (IPv4 / IPv6 or both)
  3. Based on preference:
    • Set hostname
    • Configure history retention
    • Add swap
    • Configure postfix and logwatch
  4. Install wget
    dnf -y install wget
  5. Download installation script, set execute permissions and execute it
    wget https://raw.githubusercontent.com/dinger1986/rustdeskinstall/master/install.sh
    chmod +x install.sh
    ./install.sh
  6. When prompted for IP/DNS (or domain), choose 2 if DNS entry has been created for public IP
  7. In case of DNS entry enter preferred domain name eg (remote.example.com)
  8. When prompted for "Relay not set yet" select "yes" to download configs and setup http server
  9. Finally press any key to complete installation
  10. Allow required rustdesk port via firewall
    firewall-cmd --zone=public --add-port=21115-21119/tcp --permanent
    firewall-cmd --zone=public --add-port=21116/udp --permanent
    firewall-cmd --reload

Refer:


Home > Rocky Linux or CentOS > Rocky Linux 8.x > Remote Access > RustDesk