Created
October 19, 2021 11:16
-
-
Save LinuxDevOpsGirl/7adbb0564e03ab0a438903832a6586c8 to your computer and use it in GitHub Desktop.
Drupal Installation Service Using LAMP Stack
This file contains 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
YouTube: https://youtu.be/E-me8J8iizw | |
apt update -y | |
apt upgrade -y | |
apt install build-essential checkinstall | |
apt install ubuntu-restricted-extras | |
apt install software-properties-common | |
add-apt-repository ppa:nilarimogard/webupd8 | |
apt update | |
apt install launchpad-getkeys | |
launchpad-getkeys | |
add-apt-repository ppa:git-core/ppa | |
apt update | |
apt install git | |
git config --global user.name "YourName" | |
git config --global user.email [email protected] | |
apt upgrade -y | |
apt -f install | |
mv drupal-9.2.5 drupal | |
Visit: | |
http://64.227.15.41/drupal/core/install.php |
Author
LinuxDevOpsGirl
commented
Oct 19, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment