Last active
January 31, 2019 09:21
-
-
Save evertontrindade/1f8d42de83d37c73d747e925593d8e90 to your computer and use it in GitHub Desktop.
Things to do after install ubuntu 16.04
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
# First you update your system | |
sudo apt-get update && sudo apt-get upgrade -y && sudo apt-get dist-upgrade -y | |
# Cleanup system | |
sudo apt-get purge account-plugin-facebook | |
sudo apt-get purge account-plugin-flickr | |
sudo apt-get purge account-plugin-google | |
sudo apt-get purge aisleriot | |
sudo apt-get purge fonts-opensymbol libreoffice libreoffice-\* openoffice.org-dtd-officedocument1.0 python\*-uno uno-libs3-\* ure ure-dbg | |
sudo apt-get purge gnome-terminal | |
sudo apt-get purge totem totem-common | |
sudo apt-get purge cheese | |
sudo apt-get purge gnome-mahjongg | |
sudo apt-get purge gnome-mines | |
sudo apt-get purge remmina remmina-common | |
sudo apt-get purge rhythmbox | |
sudo apt-get purge shotwell shotwell-common | |
sudo apt-get purge gnome-sudoku | |
sudo apt-get purge thunderbird | |
# build-essential | |
sudo apt-get install build-essential | |
# tweaks | |
sudo apt install unity-tweak-tool | |
# Terminator | |
sudo apt-get install terminator | |
#Install File Compression Libs | |
sudo apt-get install rar unrar zip unzip p7zip-full p7zip-rar | |
# JEnv | |
## 1. Downloading and installing package | |
curl -L -s get.jenv.io | bash | |
## 2. updating bash | |
source /home/unik/.jenv/bin/jenv-init.sh | |
## 3. update jenv local repository | |
jenv selfupdate | |
# krita | |
sudo apt-get install krita | |
#Install Spotify | |
## 1. Add the Spotify repository signing key to be able to verify downloaded packages | |
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys BBEBDCB318AD50EC6865090613B00F1FD2C19886 | |
## 2. Add the Spotify repository | |
echo deb http://repository.spotify.com stable non-free | sudo tee /etc/apt/sources.list.d/spotify.list | |
## 3. Update list of available packages | |
sudo apt-get update | |
## 4. Install Spotify | |
sudo apt-get install spotify-client | |
# GIT | |
sudo apt-get install git | |
# VirtualBox | |
## 1. downloading package | |
wget http://download.virtualbox.org/virtualbox/5.1.4/VirtualBox-5.1.4-110228-Linux_amd64.run | |
## 2. installing package into /opt | |
sudo sh VirtualBox-5.1.4-110228-Linux_amd64.run | |
## 3. downloading extension pack | |
wget http://download.virtualbox.org/virtualbox/5.1.4/Oracle_VM_VirtualBox_Extension_Pack-5.1.4-110228.vbox-extpack | |
## 4. install extension pack | |
sudo VBoxManage extpack install Oracle_VM_VirtualBox_Extension_Pack-5.1.4-110228.vbox-extpack | |
## 5. listing installed extension packs | |
sudo VBoxManage list extpacks | |
# Sublime Text 3 | |
## 1. downloading package | |
wget https://download.sublimetext.com/sublime-text_build-3126_amd64.deb | |
## 2. installing package | |
sudo dpkg -i sublime-text_build-3126_amd64.deb | |
## 3. fixing broken dependencies | |
sudo apt-get install -f | |
# HTOP | |
sudo apt-get install htop | |
# GParted | |
sudo apt-get install gparted | |
# openssh | |
apt install openssh-server |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment