0% found this document useful (0 votes)
7 views1 page

Install Chrome Remote Desktop on Linux

This Bash script automates the installation of the Fluxbox window manager and Chrome Remote Desktop on a Linux system. It updates package lists, installs necessary dependencies, downloads the Chrome Remote Desktop package, and provides instructions for completing the setup. Additionally, it verifies the installations and offers an optional installation of xterm.

Uploaded by

John Carter
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views1 page

Install Chrome Remote Desktop on Linux

This Bash script automates the installation of the Fluxbox window manager and Chrome Remote Desktop on a Linux system. It updates package lists, installs necessary dependencies, downloads the Chrome Remote Desktop package, and provides instructions for completing the setup. Additionally, it verifies the installations and offers an optional installation of xterm.

Uploaded by

John Carter
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

#!

/bin/bash

# Update package lists


sudo apt update

# Install necessary dependencies


sudo apt install -y wget curl gpg

# Install Fluxbox window manager


sudo apt install -y fluxbox

# Install Chrome Remote Desktop dependencies


sudo apt install -y xorg dbus-x11 chromium-browser

# Download and install Chrome Remote Desktop


wget [Link]
sudo dpkg -i chrome-remote-desktop_current_amd64.deb
sudo apt install -y -f # Fix any dependency issues

# Cleanup downloaded package


rm chrome-remote-desktop_current_amd64.deb

# Print next steps for Chrome Remote Desktop setup


echo "To complete Chrome Remote Desktop setup:"
echo "1. Visit [Link]
echo "2. Generate a new access code"
echo "3. Run the provided command to authorize this machine"
echo "4. Choose Fluxbox as your desktop environment when prompted"

# Optional: Install additional utilities


sudo apt install -y xterm

# Verify installations
echo "Installed Packages:"
fluxbox --version
google-chrome --version

You might also like