Dogrose

Fettling Mint

December 29, 2019

1install chrome
2 wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
3 echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" | sudo tee /etc/apt/sources.list.d/google-chrome.list
4 sudo apt update
5 sudo apt install -y google-chrome-beta
6
7yarn
8 curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
9 echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
10 sudo apt update && sudo apt install yarn
11
12nvm
13 sudo apt-get update
14 sudo apt-get install build-essential checkinstall libssl-dev
15 curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.32.1/install.sh | bash
16 close/open terminal
17 command -v nvm (should output 'nvm')
18
19node
20 check for installed versions: nvm ls
21 check for available versions: nvm ls-remote
22 sudo apt-get update
23 sudo apt-get install build-essential checkinstall libssl-dev
24 curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.32.1/install.sh | bash
25 ou’ll have to close and reopen the terminal first, but you can verify a successful installation by using command -v nvm. The command will output nvm if everything worked.
26
27 Once you’re set up, installing updated versions of Node is a breeze. You can check what versions are currently installed with nvm lsand see what is available to install by using nvm ls-remote.
28
29 Download, compile, and install newer versions of Node with nvm install #.#.#, obviously substituting the #s for the Node version you want. You can tell nvm which version to use in each new shell with nvm use #.#.# and set a default with alias: nvm alias default node.
30
31vscode
32 curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
33 sudo install -o root -g root -m 644 microsoft.gpg /etc/apt/trusted.gpg.d/
34 sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main" > /etc/apt/sources.list.d/vscode.list'
35 sudo apt-get update
36 sudo apt-get install apt-transport-https
37 sudo apt-get install code
38
39brave
40 sudo apt install curl
41 curl -s https://brave-browser-apt-release.s3.brave.com/brave-core.asc | sudo apt-key add -
42 UBUNTU_CODENAME=$( (grep DISTRIB_CODENAME /etc/upstream-release/lsb-release || grep DISTRIB_CODENAME /etc/lsb-release) 2>/dev/null | cut -d'=' -f2 )
43 echo "deb [arch=amd64] https://brave-browser-apt-release.s3.brave.com/ bionic main" | sudo tee /etc/apt/sources.list.d/brave-browser-release-bionic.list
44 sudo apt update
45 sudo apt install brave-browser brave-keyring
46
47google-earth
48 sudo apt install gdebi-core
49 wget https://dl.google.com/dl/earth/client/current/google-earth-pro-stable_current_amd64.deb
50 sudo gdebi google-earth-pro-stable_current_amd64.deb
51
52skype
53 wget https://repo.skype.com/latest/skypeforlinux-64.deb
54
55telegram
56 sudo add-apt-repository ppa:atareao/telegram
57 sudo apt-get update
58 sudo apt-get install telegram

mcdog

Written by mcdog who lives in Central Portugal and passes the time playing with code and milking chickens. You should follow him on Twitter