62
submitted 7 months ago* (last edited 7 months ago) by iii@mander.xyz to c/selfhosted@lemmy.world

Rustdesk started as an open-source alternative to TeamViewer. Now, it offers more than just remote desktop access, making it handy for casual self-hosting.

With no need for (dyn)DNS, port forwarding, or a VPN, you can get:

  • Remote terminal
  • File transfer
  • Tunneling (similar to SSH port forwarding)
  • Remote desktop

I think it’s a solid choice if you have a simple one-server setup.

you are viewing a single comment's thread
view the rest of the comments
[-] rtxn@lemmy.world 10 points 7 months ago* (last edited 7 months ago)

You can host the open-source ID and Relay servers for simple remote access at no cost. The pro subscription is mainly about account and device management.

compose.yaml

services:
  hbbs:
    container_name: hbbs
    image: rustdesk/rustdesk-server:latest
    command: hbbs
    volumes:
      - ./data:/root
    network_mode: "host"
    depends_on:
      - hbbr
    restart: always

  hbbr:
    container_name: hbbr
    image: rustdesk/rustdesk-server:latest
    command: hbbr
    volumes:
      - ./data:/root
    network_mode: "host"
    restart: always

this post was submitted on 25 Nov 2025
62 points (93.1% liked)

Selfhosted

60409 readers
319 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

Detailed Rules Post

  1. Be civil.

  2. No spam.

  3. Posts are to be related to self-hosting.

  4. Don't duplicate the full text of your blog or readme if you're providing a link.

  5. Submission headline should match the article title.

  6. No trolling.

  7. Promotion posts require active participation, with an account that is at least 30 days old. F/LOSS without a paywall has exceptions, with requirements. See the rules link for details.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 3 years ago
MODERATORS