Last active
December 21, 2015 21:29
-
-
Save neosergio/6369004 to your computer and use it in GitHub Desktop.
example of a small script to install an specific environment for a project
This file contains hidden or 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
#update the operating system | |
sudo apt-get update --yes | |
sudo apt-get upgrade --yes | |
sudo apt-get dist-upgrade --yes | |
#this is for using our active directory | |
sudo apt-get install likewise-open5 --yes | |
#tasksel magic | |
sudo apt-get install tasksel --yes | |
sudo tasksel install openssh-server | |
#java daba doo | |
sudo add-apt-repository ppa:webupd8team/java | |
sudo apt-get update --yes | |
sudo apt-get install oracle-java7-installer --yes | |
#mysql | |
sudo apt-get install mysql-server --yes | |
sudo apt-get install mysql-client --yes | |
sudo apt-get install mysql-workbench --yes | |
#nodejs and npm installation | |
sudo apt-get install python-software-properties --yes | |
sudo add-apt-repository ppa:richarvey/nodejs | |
sudo apt-get update --yes | |
sudo apt-get install nodejs npm --yes | |
#titanium pre | |
sudo apt-get install libjpeg62 libwebkitgtk-1.0-0 --yes | |
#this is fun stuff | |
sudo apt-get install terminator --yes | |
sudo apt-get install moc --yes | |
sudo apt-get install vim --yes | |
sudo apt-get install pidgin --yes | |
sudo apt-get install kdesvn --yes | |
sudo apt-get install git --yes | |
sudo apt-get install subversion --yes | |
#sublime-text | |
sudo add-apt-repository ppa:webupd8team/sublime-text-2 | |
sudo apt-get update | |
sudo apt-get install sublime-text --yes | |
#for SIP | |
sudo apt-get install telepathy-sofiasip --yes | |
sudo apt-get install account-plugin-sip --yes | |
#ADB | |
sudo apt-get install android-tools-adb --yes | |
#VNC | |
sudo apt-get install vinagre --yes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment