Running Ubuntu Desktop in Google Cloud Platform

Running Ubuntu Desktop in Google Cloud Platform

Let's setup a virtual Ubuntu Desktop computer using Google Cloud Platform (GCP) Compute Engine.

Create a new GCP Project for this work

  1. Head over to https://console.cloud.google.com/projectcreate
  2. Enter a Project Name click Create

Create a new Ubuntu VM

  1. Make sure you're in the newly created project
  2. Head over to https://console.cloud.google.com/compute/instancesAdd
  3. Enter a name for the VM. I'll use ubuntu-desktop
  4. Select the desired compute resources. I'll stick with a General Purpose machine of series E2. This will cost about $25 per month to run.
  5. On the left column, select the OS and Storage tab. Click the Change button. Change the Operating System to ubuntu and change the version to Ubuntu 20.04 LTS. Adjust the disk size if desired. Click the Select button.
  6. Click the blue Create button on the bottom of the page.

Install Chrome Remote Desktop on the new VM

  1. Connect to the VM using SSH.
  2. Update packages
    bash sudo apt update && sudo apt upgrade
  3. Download and .deb installation package.
    wget https://dl.google.com/linux/direct/chrome-remote-desktop_current_amd64.deb
    
    Install the .deb
    sudo apt-get install --assume-yes ./chrome-remote-desktop_current_amd64.deb
    
  4. Install Simply Login Manager (SLiM) to manage the graphical display.
    sudo apt install slim
    
  5. Reboot the device
    sudo reboot
    
  6. SSH back into the VM and start the SLiM service
    sudo service slim start
    

Configure Chrome Remote Desktop service

  1. Using the Chrome Browser, head on over to https://remotedesktop.google.com/headless
  2. We're going to Set up another computer, so click the Begin button.
  3. You'll be presented instructions on installing Chrome Remote Desktop, but we've already done this. Click Next.
  4. Now we need to authorize Chrome Remote Desktop to setup the VM. Click the blue Authorize button.
  5. Finally, you'll be able copy a command that needs to be run on the VM. Click the copy icon for the Debian Linux section.
  6. Head back into the VM using SSH and paste the command.
  7. You'll need to create a 6-digit PIN that is needed to connect to the VM's virtual desktop. Remember this pin!

Connect to the Ubuntu Desktop

  1. Using Google Chrome, head on over to https://remotedesktop.google.com/
  2. Ensure you're on the Remote Access tab. You should see the VM listed as a remote device.
  3. Click the remote device and enter the 6-digit pin when prompted.
  4. You're now connected!