Last active
February 1, 2021 14:00
-
-
Save bil9000/4834b1d93022fc38e896a195550321df to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
sudo apt-get update | |
sudo apt-get upgrade -y | |
sudo apt install mariadb-server mariadb-client -y | |
sudo apt install apache2 -y | |
sudo apt install php libapache2-mod-php php-opcache php-cli php-gd php-curl php-mysql -y | |
sudo systemctl restart apache2 | |
sudo systemctl start apache2.service | |
sudo systemctl enable apache2.service | |
sudo systemctl start mariadb.service | |
sudo systemctl enable mariadb.service |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment