Skip to content

Instantly share code, notes, and snippets.

@shahanahmed86
Last active January 29, 2022 18: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 shahanahmed86/77616c67e0397a7ed2db89a4a71801d0 to your computer and use it in GitHub Desktop.
Save shahanahmed86/77616c67e0397a7ed2db89a4a71801d0 to your computer and use it in GitHub Desktop.
Softwares Installation

Chrome

wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo apt install ./google-chrome-stable_current_amd64.deb

Teamviewer

wget https://download.teamviewer.com/download/linux/teamviewer_amd64.deb
sudo apt install ./teamviewer_amd64.deb

Skype

wget https://go.skype.com/skypeforlinux-64.deb
sudo apt install ./skypeforlinux-64.deb

Git

sudo apt update
sudo apt install git

Node version managers using nvm

curl https://raw.githubusercontent.com/creationix/nvm/master/install.sh | bash
source ~/.profile
nvm install node

nvm versions list

nvm ls

nvm install version

nvm install 12

nvm use -- examples

nvm use 12
nvm use default
nvm use latest

nvm update npm

nvm install-latest-npm

Visual Code Studio

sudo apt update
sudo apt install software-properties-common apt-transport-https wget
wget -q https://packages.microsoft.com/keys/microsoft.asc -O- | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main"
sudo apt update
sudo apt install code

VLC

sudo snap install vlc

Postman

sudo snap install postman

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