Skip to content

Instantly share code, notes, and snippets.

@bil9000
Last active February 1, 2021 14:00
Show Gist options
  • Save bil9000/4834b1d93022fc38e896a195550321df to your computer and use it in GitHub Desktop.
Save bil9000/4834b1d93022fc38e896a195550321df to your computer and use it in GitHub Desktop.
#!/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