| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Welcome to the magical world of Linxie – your free Linux Remote Desktop (RDP) and virtual computer ! 🎉 These cloud computers are fully managed by Google, so you can be sure they are reliable and secure. You can use them for anything you want.
To use Gmail Cloud Computer, you need to follow these steps:
This guide will help you set up Chrome Remote Desktop on your Linux system. We'll cover different desktop environments and display managers. Choose the section relevant to your system configuration.
First, update your system's package list and upgrade existing packages. Then, install wget which we'll use to download files.
sudo apt update -y && sudo apt upgrade -y
sudo apt install wget -yDownload the Chrome Remote Desktop package and install it using apt.
sudo wget https://dl.google.com/linux/direct/chrome-remote-desktop_current_amd64.deb
sudo apt install ./chrome-remote-desktop_current_amd64.deb -ySelect your desired desktop environment and follow the corresponding instructions:
If you are using GNOME with GDM3, use these commands:
Install GNOME:
sudo DEBIAN_FRONTEND=noninteractive \
apt install --assume-yes gnome gnome-shell ubuntu-desktop dbus-x11Enable GDM3 (if not already enabled):
sudo systemctl enable gdm3.serviceConfigure Chrome Remote Desktop for GNOME:
sudo bash -c 'echo "exec /usr/bin/gnome-session" > /etc/chrome-remote-desktop-session'
Disable the default display manager if its not GDM3:
sudo systemctl disable lightdm.service # If you were using LightDM
# or
sudo systemctl disable sddm.service # If you were using SDDM
# ... (replace with your previous display manager if different)Enable and Start Chrome Remote Desktop Service:
sudo systemctl enable chrome-remote-desktop
sudo systemctl start chrome-remote-desktopIf you are using XFCE with LightDM, use these commands:
Install XFCE:
sudo DEBIAN_FRONTEND=noninteractive \
apt install --assume-yes xfce4 desktop-base dbus-x11 xscreensaverConfigure Chrome Remote Desktop for XFCE:
sudo bash -c 'echo "exec /etc/X11/Xsession /usr/bin/xfce4-session" > /etc/chrome-remote-desktop-session'Disable GDM3 (if it was previously enabled):
sudo systemctl disable gdm3.serviceEnable LightDM (if not already enabled):
sudo systemctl enable lightdm.serviceEnable and Start Chrome Remote Desktop Service:
sudo systemctl enable chrome-remote-desktop
sudo systemctl start chrome-remote-desktopIf you are using KDE Plasma with SDDM, use these commands:
Install KDE Plasma:
sudo DEBIAN_FRONTEND=noninteractive \
apt install --assume-yes kde-plasma-desktop dbus-x11Enable SDDM (if not already enabled):
sudo systemctl enable sddm.serviceConfigure Chrome Remote Desktop for KDE: Create the file /etc/chrome-remote-desktop-session and add the following:
exec /usr/bin/startplasma-x11
To create the file using the terminal:
echo "exec /usr/bin/startplasma-x11" | sudo tee /etc/chrome-remote-desktop-sessionDisable the default display manager if it's not SDDM:
sudo systemctl disable lightdm.service # If you were using LightDM
# or
sudo systemctl disable gdm3.service # If you were using GDM3
# ... (replace with your previous display manager if different)Enable and Start Chrome Remote Desktop Service:
sudo systemctl enable chrome-remote-desktop
sudo systemctl start chrome-remote-desktopIf you are using a different desktop environment, you'll need to:
sudo systemctl enable chrome-remote-desktop
sudo systemctl start chrome-remote-desktopPlease use RDPTown responsibly and abide by Google's terms of service. Any unauthorized or illegal activities are not supported and are solely the user's responsibility.
Join in, contribute, raise issues, and let's make RDPTown even better! 🚧✨
Made 🕸️ By *Vivek W*
v1.0
| Back | FazBrowse Home | New Git URL |