Skip to content

Instantly share code, notes, and snippets.

@rkjha
Created April 28, 2012 20:30
Show Gist options
  • Save rkjha/2521792 to your computer and use it in GitHub Desktop.
Save rkjha/2521792 to your computer and use it in GitHub Desktop.
Install necessary Programs in Ubuntu 12.04 LTS
#!/bin/sh
# A simple shell script for installing my favorite stuffs on
# Ubuntu 12.04 LTS
# Author : Ramesh Jha <rameshjha420@gmail.com>, <http://blog.sudobits.com>
# License : MIT
# update your system
sudo apt-get update
sudo apt-get upgrade
echo "System Updated Successfully"
# install proprietary codecs/libraries
sudo apt-get -y install ubuntu-restricted-extras
sudo apt-get -y install libdvdread4
sudo /usr/share/doc/libdvdread4/install-css.sh
# Install Cheese for Webcam
sudo apt-get -y install cheese
# Install Gnome Shell and Tweak Tool for Gnome 3 Desktop
sudo apt-get -y install gnome-shell
sudo apt-get -y install gnome-tweak-tool
# install synaptic package Manager
sudo apt-get -y install synaptic
# Install Cool Applications like VLC, pidgin, Pinta Image Editor
sudo apt-get -y install vlc
sudo apt-get -y install pinta
sudo apt-get -y install pidgin
echo "That's All Enjoy :)"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment