Last active
August 10, 2020 11:07
-
-
Save clementohNZ/c2397825d3c9ff69fc6a340518ca7773 to your computer and use it in GitHub Desktop.
Install Jetbrains Toolbox Ubuntu
This file contains hidden or 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
# Original Credit: https://www.youtube.com/watch?v=cFbQnJNmt-8 | |
# Now automated in one script | |
# Install Toolbox Dependencies | |
sudo apt install fuse | |
sudo modprobe fuse | |
sudo groupadd fuse | |
user="$(whoami)" | |
sudo usermod -a -G fuse $user | |
# Download toolbox | |
curl -o ~/Downloads/jetbrains-toolbox.tar.gz https://www.jetbrains.com/toolbox-app/download/download-thanks.html | |
# Extract Toolbox | |
tar xf ~/Downloads/jetbrains-toolbox.tar.gz | |
# Install Toolbox | |
~/Downloads/jetbrains-toolbox.tar.gz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment