Skip to content

Instantly share code, notes, and snippets.

@vietanhdev
Last active January 17, 2021 18:42
Show Gist options
  • Save vietanhdev/bbf4a73665dda69e361c1bde239de4f1 to your computer and use it in GitHub Desktop.
Save vietanhdev/bbf4a73665dda69e361c1bde239de4f1 to your computer and use it in GitHub Desktop.
Ubuntu setup
sudo apt update && sudo apt full-upgrade
sudo apt install -y p7zip-full unrar gparted wget build-essential curl git
# Java
sudo apt install default-jre
# Email
snap install mailspring
# Chrome
#wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
#sudo dpkg -i google-chrome-stable_current_amd64.deb
sudo apt install -y gnome-shell-extensions gnome-shell-extensions
# VS Code
# sudo apt update
# 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 install -y code
# Nano
sudo apt install -y nano
# Docker
sudo apt-get update
sudo apt-get install -y \
apt-transport-https \
ca-certificates \
curl \
gnupg-agent \
software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
sudo apt update
sudo apt -y install docker-ce docker-ce-cli containerd.io
# Docker-compose
sudo curl -L "https://github.com/docker/compose/releases/download/1.24.0/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
# Gimp, VLC
sudo apt install -y gimp vlc
# Skype
wget https://go.skype.com/skypeforlinux-64.deb
sudo dpkg -i skypeforlinux-64.deb
sudo apt install -y -f
# Mega
# wget https://mega.nz/linux/MEGAsync/xUbuntu_18.04/amd64/megasync-xUbuntu_18.04_amd64.deb
# wget https://mega.nz/linux/MEGAsync/xUbuntu_18.04/amd64/nautilus-megasync-xUbuntu_18.04_amd64.deb
# sudo dpkg -i megasync-xUbuntu_18.04_amd64.deb
# sudo apt install -y -f
# sudo dpkg -i nautilus-megasync-xUbuntu_18.04_amd64.deb
# sudo apt install -y -f
# Miniconda
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment