Last active
November 3, 2023 18:14
-
-
Save aimuhire/875eed914540e854fae74a54b81a6977 to your computer and use it in GitHub Desktop.
Setup remote desktop on AWS ubuntu debian instance
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wget https://dl.google.com/linux/direct/chrome-remote-desktop_current_amd64.deb | |
sudo apt update | |
sudo dpkg --install chrome-remote-desktop_current_amd64.deb | |
sudo apt install --assume-yes --fix-broken | |
sudo DEBIAN_FRONTEND=noninteractive \ | |
apt install --assume-yes xfce4 desktop-base | |
sudo bash -c 'echo "exec /etc/X11/Xsession /usr/bin/xfce4-session" > /etc/chrome-remote-desktop-session' | |
sudo apt install --assume-yes xscreensaver | |
sudo systemctl disable lightdm.service | |
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb | |
sudo dpkg --install google-chrome-stable_current_amd64.deb | |
sudo apt install --assume-yes --fix-broken | |
timedatectl set-timezone Africa/Kigali |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment