Created
December 14, 2018 14:16
-
-
Save rbk/b1ad4546514409de72c9c86ddbdd13ba to your computer and use it in GitHub Desktop.
Install Lamp on pi. https://www.raspberrypi.org/forums/viewtopic.php?t=218354
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 system | |
sudo apt-get update | |
sudo apt-get upgrade -y | |
#Install Apache2 | |
sudo apt-get install apache2 -y | |
sudo a2enmod rewrite | |
sudo service apache2 restart | |
#Install PHP | |
sudo apt-get install php libapache2-mod-php -y | |
#Install MySQL | |
sudo apt-get install mysql-server php-mysql -y | |
sudo service apache2 restart | |
#Install PhpMyAdmin | |
sudo apt-get install phpmyadmin -y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment