Skip to content

Instantly share code, notes, and snippets.

@ytnk531
Last active January 24, 2021 03:46
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 ytnk531/43a814a32d75f7d7fd7ee9af3600150c to your computer and use it in GitHub Desktop.
Save ytnk531/43a814a32d75f7d7fd7ee9af3600150c to your computer and use it in GitHub Desktop.
Install IntellijIDEA, RubyMine and CLion on commandline. After this installation, idea, rubymine and clion command will be available. Ubuntu 20.04.1 LTS
curl -LO https://download.jetbrains.com/idea/ideaIU-2020.3.1.tar.gz
sudo tar xzf ideaIU-2020.3.1.tar.gz -C /usr/local/share
sudo ln -s /usr/local/share/idea-IU-203.6682.168/bin/idea.sh /usr/local/bin/idea
curl -LO https://download.jetbrains.com/ruby/RubyMine-2020.3.1.tar.gz
sudo tar xzf RubyMine-2020.3.1.tar.gz -C /usr/local/share
sudo ln -s /usr/local/share/RubyMine-2020.3.1/bin/rubymine.sh /usr/local/bin/rubymine
curl -LO https://download.jetbrains.com/cpp/CLion-2020.3.1.tar.gz
sudo tar xzf CLion-2020.3.1.tar.gz -C /usr/local/share
sudo ln -s /usr/local/share/clion-2020.3.1/bin/clion.sh /usr/local/bin/clion
# libraries
sudo apt install libpangocairo-1.0-0 libgbm-dev libpango-1.0-0 libxss1
@ytnk531
Copy link
Author

ytnk531 commented Jan 24, 2021

If fonts did not be displayed correctly, linking fonts may solves.

# sudo ln -s /mnt/c/Windows/Fonts /usr/share/fonts/windows
# sudo fc-cache -fv

@ytnk531
Copy link
Author

ytnk531 commented Jan 24, 2021

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