Created
April 28, 2012 20:30
-
-
Save rkjha/2521792 to your computer and use it in GitHub Desktop.
Install necessary Programs in Ubuntu 12.04 LTS
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
#!/bin/sh | |
# A simple shell script for installing my favorite stuffs on | |
# Ubuntu 12.04 LTS | |
# Author : Ramesh Jha <[email protected]>, <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