“Raspberry Pi 4B Home Server Construction Guide” Issue 21: Install the open source remote desktop service rustdesk, the internal network is silky smooth, and the external network smoothly controls Windows, macOS, and Linux devices

Original link: https://v2fy.com/p/2023-09-12-09-51-24-rustdesk/

1694484583353NyeQczMW.png

Some time ago, I transformed an old MacBook Pro into a video resource decoding host. “Raspberry Pi 4B Home Server Construction Guide” Issue 17: Raspberry Pi is used with an idle laptop with better performance to build an open source free jellyfin private theater https ://ift.tt/7WjSGuv , I want to access this MacBook Pro through remote desktop. I found that although Mac natively supports VNC connection, the screen often tears when I use it, so I found an open source remote desktop program rustdesk. Deploy its service on the Raspberry Pi to achieve smooth access to LAN devices. External network devices can also directly access macOS rustdesk’s Github open source address https://ift.tt/72se5tS through intranet penetration. Deploy rustdesk on the Raspberry Pi. , realize LAN Windows control macOS # Create a mounting directory mkdir -p /opt/rustdesk chmod 755 -R /opt/rustdesk # Create a directory to store docker-compose.yml mkdir -p /opt/rustdesk-docker-compose- yml chmod 755 -R /opt/rustdesk-docker-compose-yml # Create docker-compose.yml touch /opt/rustdesk-docker-compose-yml/docker-compose.yml Write configuration content in docker-compose.yml cat << ‘EOF’ > /opt/rustdesk-docker-compose-yml/docker-compose.yml version: ‘3’ networks: rustdesk-net: external: false services: hbbs: container_name: hbbs ports: – […]

This article is reproduced from: https://v2fy.com/p/2023-09-12-09-51-24-rustdesk/
This site is only for collection, and the copyright belongs to the original author.