Last active
November 11, 2020 12:51
-
-
Save vsmelov/59637ed446219b4455fcbe79b6084d48 to your computer and use it in GitHub Desktop.
Prepare working environment
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
sudo snap install chromium | |
sudo snap install sublime-text --classic | |
sudo snap install pycharm-professional --classic | |
sudo snap install skype --classic | |
sudo snap install zoom-client | |
sudo snap install slack --classic | |
sudo apt install -y htop iotop build-essential python3-pip git curl | |
echo "deb http://download.virtualbox.org/virtualbox/debian $(lsb_release -sc) contrib" | sudo tee -a /etc/apt/sources.list | |
wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add - | |
wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- | sudo apt-key add - | |
sudo apt-get update | |
sudo apt-get install virtualbox-6.1 | |
sudo apt install virtualbox-ext-pack | |
sudo modprobe vboxdrv | |
sudo apt install dkms gvfs | |
# sudo apt install dkms virtualbox-dkms virtualbox-qt gvfs | |
curl -sSL https://get.docker.com/ | sh | |
sudo usermod -aG docker $USER | |
newgrp docker | |
sudo apt-get install p7zip-full | |
curl -Lo minikube https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 | |
chmod +x minikube | |
sudo mv minikube /usr/local/bin/ | |
curl -Lo kubectl https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl | |
chmod +x kubectl | |
sudo mv kubectl /usr/local/bin/ | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment