Last active
November 19, 2019 02:30
-
-
Save abhitechno01/05c3e68534c4d68ab5029e83b51875b0 to your computer and use it in GitHub Desktop.
sublime, vs code, telegram, vlc, google chrome, postman, sublime merge, slack
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
| ########################## | |
| Sublime text | |
| ########################## | |
| wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add - | |
| echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list | |
| apt update | |
| apt install sublime-text | |
| ########################## | |
| VS Code | |
| ########################## | |
| apt update | |
| apt updatesudo apt install software-properties-common apt-transport-https wget | |
| wget -q https://packages.microsoft.com/keys/microsoft.asc -O- | sudo apt-key add - | |
| add-apt-repository "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main" | |
| apt update | |
| apt install code | |
| code --user-data-dir="~/.vscode-root" | |
| ########################## | |
| Telegram | |
| ########################## | |
| add-apt-repository ppa:atareao/telegram | |
| apt update | |
| apt install telegram-desktop or telegram | |
| ########################## | |
| VLC | |
| ########################## | |
| apt install snap -y | |
| snap install vlc | |
| ########################## | |
| Google chrome | |
| ########################## | |
| nano /etc/apt/sources.list.d/google-chrome.list | |
| paste the following line | |
| deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main | |
| now back in terminal run the following commands | |
| wget https://dl.google.com/linux/linux_signing_key.pub | |
| apt-key add linux_signing_key.pub | |
| apt update | |
| apt install google-chrome-stable | |
| ########################## | |
| Postman | |
| ########################## | |
| 16.04 installation on 64 bit machine | |
| wget https://dl.pstmn.io/download/latest/linux64 -O postman.tar.gz | |
| sudo tar -xzf postman.tar.gz -C /opt | |
| rm postman.tar.gz | |
| sudo ln -s /opt/Postman/Postman /usr/bin/postman | |
| 18.04 installation on 64 bit machine | |
| snap install postman | |
| ########################## | |
| Sublime Merge | |
| ########################## | |
| wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add - | |
| apt install apt-transport-https | |
| echo "deb https://download.sublimetext.com/ apt/stable/" | tee /etc/apt/sources.list.d/sublime-text.list | |
| apt update | |
| apt install sublime-merge | |
| ########################## | |
| Slack | |
| ########################## | |
| wget https://downloads.slack-edge.com/linux_releases/slack-desktop-4.1.2-amd64.deb | |
| dpkg -i slack-desktop-4.1.2-amd64.deb | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment