Last active
October 23, 2020 21:05
-
-
Save idvoretskyi/7717d198bf8902620f35b8aaa1e95ddb to your computer and use it in GitHub Desktop.
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
# 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) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There was a trouble recently, like no ability to mount ntfs volumes if chrome remote desktop is installed, is that still true?