Skip to content

Instantly share code, notes, and snippets.

@ridlo
Last active June 14, 2016 06:16
Show Gist options
  • Save ridlo/affa93bdabf4b2dd6e077976e432d83d to your computer and use it in GitHub Desktop.
Save ridlo/affa93bdabf4b2dd6e077976e432d83d to your computer and use it in GitHub Desktop.
#!/bin/bash
# Post installing script for Ubuntu 14.04 Trusty Tahr Desktop
# First, check your internet connection (e.g. proxy)
#
# Check for updates
sudo apt-get -y update
# Upgrade Packages
sudo apt-get -y upgrade
# Major Upgrades
sudo apt-get -y dist-upgrade
#
# Install Essentials
sudo apt-get -y install vim
sudo apt-get -y install vlc
sudo apt-get -y install shutter
sudo apt-get -y install htop
sudo apt-get -y install screen
sudo apt-get -y install openssh-client openssh-server
sudo apt-get -y install python-pip
sudo apt-get -y install build-essential
sudo apt-get -y install synaptic
sudo apt-get -y install aptitude
#sudo apt-get -y install gimp gimp-data gimp-plugin-registry gimp-data-extras
sudo apt-get -y install ubuntu-restricted-extras
sudo apt-get -y install openjdk-7-jre
#sudo apt-get -y install bleachbit
sudo apt-get -y install oracle-java8-installer
sudo apt-get -y install flashplugin-installer
#
# Install Optionals
sudo apt-get -y install gnuplot
sudo apt-get -y install texmaker texlive-fonts-recommended texlive-lang-other
sudo apt-get -y install filezilla
sudo apt-get -y install stellarium
sudo apt-get -y install putty
sudo apt-get -y install git
sudo apt-get -y install freeglut3 freeglut3-dev
#
##Anaconda
##Google Chrome
##Sublime Text
##Eclipse IDE
##RecordMyDesktop
##Dropbox
##Set indentation in vim and sublime
#
# Disable shopping suggestions
#gsettings set com.canonical.Unity.Lenses disabled-scopes "['more_suggestions-amazon.scope', 'more_suggestions-u1ms.scope', 'more_suggestions-populartracks.scope', 'music-musicstore.scope', 'more_suggestions-ebay.scope', 'more_suggestions-ubuntushop.scope', 'more_suggestions-skimlinks.scope']"
#
# Clean Up
echo "Cleaning Up" &&
sudo apt-get -y -f install &&
sudo apt-get -y autoremove &&
sudo apt-get -y autoclean &&
sudo apt-get -y clean
#
sudo apt-get -y update && sudo apt-get -y upgrade
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment