Remote Desktop allows you to connect and control your Ubuntu 24.04 machine from another device. This guide covers setting up Remote Desktop using built-in or open-source tools available in the official Ubuntu 24.04 repositories, along with additional configuration, optimization tips, and an explanation of how Remote Desktop works.
Step-by-Step Instructions Using GUI Tools
- Install the Required Packages:
- First, ensure your system is up-to-date and install the necessary packages.
bash sudo apt update sudo apt upgrade sudo apt install gnome-remote-desktop
sudo apt upgrade
sudo apt install gnome-remote-desktop
- Enable Remote Desktop:
- Open Settings from the Applications menu.
- Navigate to Sharing.
- Toggle the switch to enable Sharing.
- Click on Remote Desktop.
- Toggle the switch to enable Remote Desktop.
- Set up your preferences for authentication (e.g., password or confirmation for each connection).
- Configure Firewall:
- Ensure the firewall allows remote desktop connections.
bash sudo ufw allow 3389/tcp sudo ufw enable
sudo ufw allow 3389/tcp
sudo ufw enable
Step-by-Step Instructions Using the Terminal
- Install xRDP:
- xRDP is an open-source implementation of the Microsoft Remote Desktop Protocol (RDP) that allows you to control a remote system graphically.
bash sudo apt install xrdp
sudo apt install xrdp
- Enable xRDP Service:
- Start the xRDP service and enable it to start at boot.
bash sudo systemctl enable xrdp sudo systemctl start xrdp
sudo systemctl enable xrdp
sudo systemctl start xrdp
- Configure xRDP:
- Ensure the default desktop environment is set correctly for xRDP.
bash echo "gnome-session" > ~/.xsession
echo "gnome-session" > ~/.xsession
- Add xRDP User to ssl-cert Group:
- Add the xRDP user to the ssl-cert group for access to the key files.
bash sudo adduser xrdp ssl-cert
sudo adduser xrdp ssl-cert
Ports Used
Remote Desktop using xRDP typically uses TCP port 3389. Ensure this port is open in your firewall settings.
Additional Configuration Settings
- Static IP:
- Assign a static IP to your Ubuntu machine for a more reliable connection. Configure this in your network settings or router.
- Security Settings:
- Configure xRDP to use encryption by editing the
/etc/xrdp/xrdp.ini
file and settingcrypt_level
tohigh
.
- Customizing Session:
- You can customize the session by editing the
.xsession
file in your home directory to specify different desktop environments or session settings.
Optimizing the Connection
- Reduce Bandwidth Usage:
- Use a lower resolution and color depth for the remote session to improve performance.
- Open Settings > Display and adjust the resolution.
- In your RDP client, choose a lower color depth.
- Use a Wired Connection:
- For better stability and speed, prefer a wired Ethernet connection over Wi-Fi.
How Remote Desktop Works
Remote Desktop Protocol (RDP) and VNC (Virtual Network Computing) are commonly used protocols to transmit screen updates, keyboard, and mouse inputs over the network.
- User Input:
- Keyboard and mouse inputs are captured and sent from the client to the server.
- Screen Updates:
- The server processes the inputs, updates the screen, and sends the changes back to the client.
- Compression and Encryption:
- Data is compressed and encrypted to ensure efficient and secure transmission.
Tips and Tricks
- Wake on LAN:
- Configure Wake on LAN (WoL) to wake your Ubuntu machine remotely if it’s in sleep mode.
- Use SSH Tunneling:
- Secure your remote desktop session by creating an SSH tunnel.
bash ssh -L 3389:localhost:3389 user@remote_host
- Connect your RDP client to
localhost:3389
after setting up the tunnel.
ssh -L 3389:localhost:3389 user@remote_host
- Install and Use Remmina:
- Remmina is a versatile remote desktop client that supports multiple protocols (RDP, VNC, SSH).
bash sudo apt install remmina remmina-plugin-rdp remmina-plugin-vnc
- Launch Remmina from the Applications menu and configure your connections.
- Automatic Start of xRDP:
- Ensure xRDP starts automatically with the system:
bash sudo systemctl enable xrdp
sudo systemctl enable xrdp
Conclusion
Setting up Remote Desktop on Ubuntu 24.04 is straightforward with both GUI and terminal-based methods. Using built-in or open-source tools ensures compatibility and flexibility in managing remote sessions on your Ubuntu machine.
- Guide to Installing Ubuntu 24.04 on a Modern Laptop
- Setting Up Remote Desktop on Ubuntu 24.04
- Understanding SSH and Its Use in Ubuntu 24.04 Linux
- Installing OpenDevin on Ubuntu 24.04 LTS
- Using ClamAV for Virus and Malware Scanning on Ubuntu 24.04
This article was first published here