Install Cinnamon and XRDP on Debian

Hello, Debian users! πŸ‘‹ Today, we’re diving into a simple yet effective guide on installing the Cinnamon desktop environment along with XRDP on Debian 12. Whether you’re setting up a remote desktop server or simply prefer the Cinnamon interface, this guide will help you get started without any fuss.

πŸ“¦ Prerequisites

Before we begin, ensure your Debian system is updated:

sudo apt update && sudo apt upgrade

🌿 Installing Cinnamon

Installing Cinnamon on Debian is straightforward. Execute the following commands to install the Cinnamon desktop:

sudo apt install cinnamon -y

πŸš€ Installing XRDP

To access your Debian machine remotely, XRDP is a reliable option. Let’s install XRDP:

sudo apt install xrdp -y
sudo adduser xrdp ssl-cert
sudo systemctl enable xrdp

πŸ”§ Configuring XRDP

For XRDP to work nicely with Cinnamon, make a small configuration change:

echo "cinnamon-session" > ~/.xsession
sudo systemctl restart xrdp

✨ Enjoy Your Setup

That’s it! You’ve successfully installed Cinnamon and configured XRDP on your Debian12 system. πŸŽ‰ Now, you can connect remotely using any standard RDP client and enjoy the sleek, user-friendly Cinnamon desktop environment.

πŸ”„ Conclusion

Setting up Cinnamon and XRDP on Debian 12 doesn’t have to be complicated. With this guide, you can enhance your Debian experience and access your system remotely, all with minimal hassle. Happy computing! πŸ–₯️

Scroll to Top