Enabling SSH & RDP on Ubuntu 24.04 VM in Proxmox (Complete Guide)
Running Ubuntu inside Proxmox VE is powerful for homelabs, but accessing it efficiently (SSH + Remote Desktop) is essential. This guide walks you through: ✅ Enabling SSH access ✅ Enabling Remote De...

Source: DEV Community
Running Ubuntu inside Proxmox VE is powerful for homelabs, but accessing it efficiently (SSH + Remote Desktop) is essential. This guide walks you through: ✅ Enabling SSH access ✅ Enabling Remote Desktop (RDP) ✅ Fixing common issues (like 0x204 error) ✅ Understanding architecture with diagrams ✅ Final checklist 🧠 Architecture Overview 🔷 Block Diagram: Access Flow +----------------------+ | Your Laptop/PC | | (SSH / RDP Client) | +----------+-----------+ | | Network (LAN / WiFi) | +----------v-----------+ | Proxmox Host | | (Hypervisor Layer) | +----------+-----------+ | | Virtual Network Bridge (vmbr0) | +----------v-----------+ | Ubuntu 24.04 VM | |----------------------| | SSH Server (port 22) | | RDP Server (3389) | | UFW Firewall | | QEMU Guest Agent | +----------------------+ ⚙️ Part 1: Enable SSH on Ubuntu VM Step 1: Access VM Console (Proxmox GUI) Login to Proxmox Select VM → Console Step 2: Install OpenSSH Server sudo apt update sudo apt install openssh-server -y Step 3: Verif