Created
February 16, 2016 07:03
-
-
Save chowmean/1146b477a732f6840d6d to your computer and use it in GitHub Desktop.
Initial requirement for developers on ubuntu
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
| echo "Installing vlc" | |
| apt-get -y --force-yes install vlc>/dev/null | |
| echo "Installing curl" | |
| apt-get -y install --force-yes curl>/dev/null | |
| echo "Installing git" | |
| apt-get -y install--force-yes git>/dev/null | |
| echo "Installing vim" | |
| apt-get -y --force-yes install vim>/dev/null | |
| echo "Installing default jre " | |
| apt-get -y --force-yes install default-jre>/dev/null | |
| echo "Installing default jdk" | |
| apt-get -y --force-yes install default-jdk>/dev/null | |
| echo "Installing open jre" | |
| apt-get -y --force-yes install openjdk-7-jre>/dev/null | |
| echo "Installing open jdk" | |
| apt-get -y --force-yes install openjdk-7-jdk>/dev/null | |
| echo "Installing oracle java installer" | |
| apt-get -y --force-yes install python-software-properties>/dev/null | |
| apt-get -y --force-yes install oracle-java7-installer>/dev/null | |
| echo "Installing open vim" | |
| apt-get -y --force-yes install vim>/dev/null | |
| echo "Installing open vlc" | |
| apt-get -y --force-yes install vlc>/dev/null | |
| echo "Installing open git" | |
| apt-get -y --force-yes install git>/dev/null | |
| echo "Installing open apache2" | |
| apt-get -y --force-yes install apache2>/dev/null | |
| echo "Installing Mysql" | |
| apt-get install -y --force-yes mysql-server libapache2-mod-auth-mysql php5-mysql | |
| sudo mysql_install_db | |
| sudo /usr/bin/mysql_secure_installation | |
| echo "Installing Php" | |
| apt-get -y --force-yes install php5 libapache2-mod-php5 php5-mcrypt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment