Advertisement
lukicdarkoo

My tool collection for Debian derivatives

Feb 5th, 2016
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.18 KB | None | 0 0
  1. #!/bin/bash
  2. # My tool collection for Debian derivatives
  3.  
  4. # General Purpose
  5. sudo apt install vlc
  6.  
  7. wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
  8. sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'
  9. sudo apt update
  10. sudo apt install google-chrome-stable
  11.  
  12. # Development Tools
  13. sudo apt install git python3-pip python3-scipy python3-numpy
  14. pip3 install jupyterlab
  15. sudo apt install texlive-xetex python3-pypandoc
  16.  
  17. # Docker
  18. sudo apt-get install \
  19.     apt-transport-https \
  20.     ca-certificates \
  21.     curl \
  22.     gnupg-agent \
  23.     software-properties-common
  24. curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
  25. sudo apt-key fingerprint 0EBFCD88
  26. sudo add-apt-repository \
  27.    "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
  28.   $(lsb_release -cs) \
  29.   stable"
  30. sudo apt-get update
  31. sudo apt-get install docker-ce docker-ce-cli containerd.io
  32.  
  33.  
  34. # Web Tools
  35. curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
  36. sudo apt-get install -y nodejs
  37. sudo apt-get install -y build-essential
  38.  
  39. # Embedded Tools
  40. sudo apt install cmake
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement