Skip to content

Instantly share code, notes, and snippets.

@marylly
Last active August 23, 2023 02:19
Show Gist options
  • Save marylly/a3df48b361abe68eb6a1bc6bdf46510c to your computer and use it in GitHub Desktop.
Save marylly/a3df48b361abe68eb6a1bc6bdf46510c to your computer and use it in GitHub Desktop.
Ubuntu Yakkety Apt-get Repositories
# Para instalar o gerenciador de fontes de pacotes apt-add-repository
# apt-get install software-properties-common python-software-properties python3-software-properties
# Adicionar repositórios para instalação de drivers de vídeo
# apt-add-repository ppa:graphics-drivers/ppa [ARRISCADO]
# apt-add-repository ppa:xorg-edgers/ppa [ARRISCADO]
# sudo add-apt-repository ppa:ubuntu-x-swat/x-updates
# sudo apt-get update
# sudo apt-get install <package name>
# Instalação do driver da placa de rede wireless Dell Wireless 1820 802.11ac
apt-get install firmware-atheros
# Instalação do driver do Bluetooth
apt-get install firmware-realtek
# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://br.archive.ubuntu.com/ubuntu/ yakkety main restricted
deb-src http://br.archive.ubuntu.com/ubuntu/ yakkety main restricted
## Major bug fix updates produced after the final release of the
## distribution.
deb http://br.archive.ubuntu.com/ubuntu/ yakkety-updates main restricted
deb-src http://br.archive.ubuntu.com/ubuntu/ yakkety-updates main restricted
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://br.archive.ubuntu.com/ubuntu/ yakkety universe
deb-src http://br.archive.ubuntu.com/ubuntu/ yakkety universe
deb http://br.archive.ubuntu.com/ubuntu/ yakkety-updates universe
deb-src http://br.archive.ubuntu.com/ubuntu/ yakkety-updates universe
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://br.archive.ubuntu.com/ubuntu/ yakkety multiverse
deb-src http://br.archive.ubuntu.com/ubuntu/ yakkety multiverse
deb http://br.archive.ubuntu.com/ubuntu/ yakkety-updates multiverse
deb-src http://br.archive.ubuntu.com/ubuntu/ yakkety-updates multiverse
## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://br.archive.ubuntu.com/ubuntu/ yakkety-backports main restricted universe multiverse
deb-src http://br.archive.ubuntu.com/ubuntu/ yakkety-backports main restricted universe multiverse
## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
# deb http://archive.canonical.com/ubuntu yakkety partner
# deb-src http://archive.canonical.com/ubuntu yakkety partner
deb http://security.ubuntu.com/ubuntu yakkety-security main restricted
deb-src http://security.ubuntu.com/ubuntu yakkety-security main restricted
deb http://security.ubuntu.com/ubuntu yakkety-security universe
deb-src http://security.ubuntu.com/ubuntu yakkety-security universe
deb http://security.ubuntu.com/ubuntu yakkety-security multiverse
deb-src http://security.ubuntu.com/ubuntu yakkety-security multiverse
# Tuleap
deb http://pkg.tuleap.net/debian tuleap-dev main
# Spotify
# 1. Add the Spotify repository signing keys to be able to verify downloaded packages
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 0DF731E45CE24F27EEEB1450EFDC8610341D9410
# 2. Add the Spotify repository
echo deb http://repository.spotify.com stable non-free | sudo tee /etc/apt/sources.list.d/spotify.list
# LXC
deb https://packagecloud.io/claudyus/LXC-Web-Panel/ubuntu/ trusty main
deb-src https://packagecloud.io/claudyus/LXC-Web-Panel/ubuntu/ trusty main
# Docker
# sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
# sudo apt-key fingerprint 0EBFCD88
# apt-get update
# sudo apt-cache madison docker-ce
# sudo apt-get install docker-ce docker-compose
# Alternatively you can use the official docker install script
wget -qO- https://get.docker.com/ | sh
# Install docker-compose
COMPOSE_VERSION=`git ls-remote https://github.com/docker/compose | grep refs/tags | grep -oP "[0-9]+\.[0-9][0-9]+\.[0-9]+$" | tail -n 1`
sudo sh -c "curl -L https://github.com/docker/compose/releases/download/${COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose"
sudo chmod +x /usr/local/bin/docker-compose
sudo sh -c "curl -L https://raw.githubusercontent.com/docker/compose/${COMPOSE_VERSION}/contrib/completion/bash/docker-compose > /etc/bash_completion.d/docker-compose"
deb https://apt.dockerproject.org/repo ubuntu-xenial main
# Telegram
sudo add-apt-repository ppa:atareao/telegram
# Google Chrome Beta/Stable/Unstable
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'
sudo apt-get update
sudo apt-get install google-chrome-<stable|beta|unstable>
# Skype
# make sure you have 'apt-transport-https' installed
curl https://repo.skype.com/data/SKYPE-GPG-KEY | sudo apt-key add -
dpkg -s apt-transport-https > /dev/null || bash -c "sudo apt-get update; sudo apt-get install apt-transport-https -y"
echo "deb [arch=amd64] https://repo.skype.com/deb stable main" | sudo tee /etc/apt/sources.list.d/skypeforlinux.list
sudo apt-get update
sudo apt-get install skypeforlinux -y
# Steam
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys B05498B7
sudo sh -c 'echo "deb http://repo.steampowered.com/steam/ precise steam" >> /etc/apt/sources.list.d/steam.list'
# VS Code
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
sudo mv microsoft.gpg /etc/apt/trusted.gpg.d/microsoft.gpg
sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main" > /etc/apt/sources.list.d/vscode.list'
sudo apt-get update
sudo apt install code code-insiders
# Google Drive
sudo add-apt-repository ppa:thefanclub/grive-tools -y && sudo add-apt-repository ppa:nilarimogard/webupd8 -y && sudo apt-get update && sudo apt-get install grive grive-tools -y
# Nynx
sudo add-apt-repository ppa:nginx/stable
# Enlightenment
sudo add-apt-repository ppa:niko2040/e19
# VLC
sudo add-apt-repository ppa:videolan/master-daily
# Audacity
sudo add-apt-repository ppa:ubuntuhandbook1/audacity
# Gnome 3 Staging
sudo add-apt-repository ppa:gnome3-team/gnome3-staging
# Gimp
udo add-apt-repository ppa:otto-kesselgulasch/gimp
# Libreoffice Pré-Releases
sudo add-apt-repository ppa:libreoffice/libreoffice-prereleases
# Atom
sudo add-apt-repository ppa:webupd8team/atom
# InkScape
sudo add-apt-repository ppa:inkscape.dev/trunk
sudo add-apt-repository ppa:inkscape.dev/stable
# Android Studio
sudo add-apt-repository ppa:paolorotolo/android-studio # Não usei esse
# Grub Customizer
sudo add-apt-repository ppa:danielrichter2007/grub-customizer
# Eclipse IDE
sudo add-apt-repository ppa:mmk2410/eclipse-ide-java
# Sublime 3
sudo add-apt-repository ppa:webupd8team/sublime-text-3
# Node.js
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
sudo apt-get install -y nodejs
# Mozilla Firefox and Thunderbird
sudo add-apt-repository ppa:ubuntu-mozilla-daily/ppa
# PostMan
wget https://dl.pstmn.io/download/latest/linux64 -O postman.tar.gz
sudo tar -xzf postman.tar.gz -C /opt
rm postman.tar.gz
sudo ln -s /opt/Postman/Postman /usr/bin/postman
# Ruby using deb apt-get repository
sudo apt-add-repository ppa:brightbox/ruby-ng
# Ruby using RVM
curl -sSL https://get.rvm.io | bash -s stable
rvm install ruby-2.4.1
#ScudCloud
sudo apt-add-repository -y ppa:rael-gc/scudcloud
sudo apt update && sudo apt dist-upgrade
echo ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true | sudo debconf-set-selections
sudo apt install scudcloud
# Java 8
sudo add-apt-repository -y ppa:webupd8team/java
sudo apt-get -y install oracle-java8-installer
# Kubernetes
curl -s https://package.cloud.google.com/apt/doc/apt-key.gpg | apt-key add -
apt-get install apt-transport-https
vi /etc/apt/sources.list.d/kubernetes.list # deb http://apt.kubernetes.io/ kubernetes-xenial main
apt-get install kubelet kubectl kubeadm
# Scala Programming Language
# Prepare Java installation first
sudo apt-get remove --purge openjdk* java-common default-jdk
sudo apt-get remove --purge sbt
sudo apt-get autoremove --purge
sudo update-alternatives --config java
# Installation of java and sbt
echo "deb https://dl.bintray.com/sbt/debian /" | sudo tee -a /etc/apt/sources.list.d/sbt.list
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 2EE0EA64E40A89B84B2DF73499E82A75642AC823
sudo apt-get update
sudo apt-get install openjdk-8-jdk sbt scala
export SCALA_HOME=/usr/bin/scala
export PATH=$PATH:$SCALA_HOME
# Update Ubuntu Distro
sudo apt update && sudo apt dist-upgrade && update-manager -d && sudo do-release-upgrade -d
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment