Skip to content

Instantly share code, notes, and snippets.

@idvoretskyi
Last active October 23, 2020 21:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save idvoretskyi/7717d198bf8902620f35b8aaa1e95ddb to your computer and use it in GitHub Desktop.
Save idvoretskyi/7717d198bf8902620f35b8aaa1e95ddb to your computer and use it in GitHub Desktop.
# Let's go to the temporary directory
cd /tmp
# Google Chrome browser installation
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb && \
sudo dpkg -i google-chrome-stable_current_amd64.deb && \
sudo apt install -f -y
# Chrome remote desktop installation
wget https://dl.google.com/linux/direct/chrome-remote-desktop_current_amd64.deb && \
sudo dpkg -i chrome-remote-desktop_current_amd64.deb && \
sudo apt install -f -y
# Adding the cuurent user to the chrome-remote-desktop group
/opt/google/chrome-remote-desktop/chrome-remote-desktop --add-user $(whoami)
@shadyonline
Copy link

There was a trouble recently, like no ability to mount ntfs volumes if chrome remote desktop is installed, is that still true?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment