Linux-Dash Automated Script for Ubuntu


#!/bin/bash

Updating System
apt-get update

Install Apache, PHP and PHP Modules
sudo apt-get install apache2
sudo apt-get install php5 libapache2-mod-php5
sudo apt-get install php5-json php5-fpm php5-curl

Re-Starting Apache Service
sudo service apache2 restart

Download and Install linux-Dash
cd /var/www
(or)
cd /var/www/html
git clone https://github.com/afaqurk/linux-dash.git

Installation Completed
http://Ip-Address/linux-dash

Leave a comment