Skip to content

Instantly share code, notes, and snippets.

@evertontrindade
Last active September 12, 2016 19:30
Show Gist options
  • Save evertontrindade/f1ee71d2e5df1600bc134e62802a323d to your computer and use it in GitHub Desktop.
Save evertontrindade/f1ee71d2e5df1600bc134e62802a323d to your computer and use it in GitHub Desktop.
Freya Installation Customized
# First you update your system
sudo apt-get update && sudo apt-get dist-upgrade
# Clean-up System
sudo apt-get purge midori-granite #browser
sudo apt-get purge noise
sudo apt-get purge scratch-text-editor #text-editor
sudo apt-get purge modemmanager
sudo apt-get purge geary
sudo apt-get purge pantheon-terminal #terminal
sudo apt-get purge audience
sudo apt-get autoremove
sudo apt-get autoclean
# Google Chrome
## 1. downloading last stable package
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
## 2. installing package
sudo dpkg -i google-chrome-stable_current_amd64.deb
## 3. fixing broken dependencies
sudo apt-get install -f
## 4. Enable maximize and minimize button on Google Chrome
gconftool-2 --set /apps/metacity/general/button_layout --type string ":minimize:maximize:close"
# 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
# Subversion
#sudo apt-get install subversion
# 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-3114_amd64.deb
## 2. installing package
sudo dpkg -i sublime-text_build-3114_amd64.deb
## 3. fixing broken dependencies
sudo apt-get install -f
# Elementary Tweak
## 1. adding repository
sudo add-apt-repository ppa:mpstark/elementary-tweaks-daily
## 2. updating apt-get
sudo apt-get update
## 3. installing tweaks
sudo apt-get install elementary-tweaks
## 4. installing wallpapers
sudo apt-get install elementary-wallpapers-extra
# Elementary Transparent Theme
## 1. adding repository
sudo add-apt-repository ppa:yunnxx/elementary
## 2. updating apt-get
sudo apt-get update
## 3. installing transparent theme
sudo apt-get install elementary-transparent-theme
#Reduce overheating and improve battery life
## 1. adding repository
sudo add-apt-repository ppa:linrunner/tlp
## 2. updating apt-get
sudo apt-get update
## 3. installing package
sudo apt-get install tlp tlp-rdw
## 4. starting application
sudo tlp start
# HTOP
sudo apt-get install htop
# GParted
sudo apt-get install gparted
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment