Skip to content

Instantly share code, notes, and snippets.

@chowmean
Created February 16, 2016 07:03
Show Gist options
  • Select an option

  • Save chowmean/1146b477a732f6840d6d to your computer and use it in GitHub Desktop.

Select an option

Save chowmean/1146b477a732f6840d6d to your computer and use it in GitHub Desktop.
Initial requirement for developers on ubuntu
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