Last active
October 23, 2019 02:26
-
-
Save douglasmiranda/34beb44a0555db46eb0340e4fd9eee1e to your computer and use it in GitHub Desktop.
After Install Ubuntu 17.10 - Chrome, Fish Shell, Docker, Docker Compose
This file contains 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 apt update | |
sudo apt upgrade -y | |
# Remember: install / verify additional drivers | |
sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list' | |
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add - | |
sudo apt update | |
# google chrome and chrome extension to use gnome extensions | |
sudo apt install -y google-chrome-stable chrome-gnome-shell | |
# Tunning and Tweaks! | |
sudo apt install gnome-tweak-tool zram-config | |
# Codecs and stuff | |
sudo apt install -y ubuntu-restricted-extras # will be asked to accept terms | |
# Show battery percentage | |
gsettings set org.gnome.desktop.interface show-battery-percentage true | |
# essentials | |
sudo apt install -y httpie gparted git | |
# fish shell | |
echo 'deb http://download.opensuse.org/repositories/shells:/fish:/release:/2/Debian_9.0/ /' > /etc/apt/sources.list.d/fish.list | |
wget -nv http://download.opensuse.org/repositories/shells:fish:release:2/Debian_9.0/Release.key -O Release.key | |
sudo apt-key add - < Release.key | |
rm Release.key | |
sudo apt-get update | |
sudo apt-get install -y fish | |
sudo usermod -s /usr/bin/fish $USER | |
# Docker CE - Edge | |
sudo apt install -y \ | |
apt-transport-https \ | |
ca-certificates \ | |
curl \ | |
software-properties-common | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
sudo apt-key fingerprint 0EBFCD88 | |
sudo add-apt-repository \ | |
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \ | |
$(lsb_release -cs) \ | |
edge" | |
sudo apt update | |
sudo apt install -y docker-ce | |
# Post install | |
sudo groupadd docker | |
sudo usermod -aG docker $USER | |
# Docker Compose | |
sudo curl -L --fail https://github.com/docker/compose/releases/download/1.18.0/run.sh -o /usr/local/bin/docker-compose | |
sudo chmod +x /usr/local/bin/docker-compose |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment