Created
December 21, 2021 13:10
-
-
Save LinuxDevOpsGirl/be405a5447cc2545fa979c39b566b32b to your computer and use it in GitHub Desktop.
Joomla Install LEMP Stack
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
sudo -i | |
apt update -y | |
apt-get upgrade -y | |
apt install build-essential checkinstall | |
apt install ubuntu-restricted-extras | |
apt install software-properties-common | |
apt upgrade -o APT::Get::Show-Upgraded=true | |
apt install apt-show-versions | |
apt update -y | |
apt-get upgrade -y | |
add-apt-repository ppa:nilarimogard/webupd8 | |
apt update | |
apt install launchpad-getkeys | |
launchpad-getkeys | |
apt install kazam | |
wget -qO - https://keys.anydesk.com/repos/DEB-GPG-KEY | sudo apt-key add - | |
echo "deb http://deb.anydesk.com/ all main" > /etc/apt/sources.list.d/anydesk-stable.list | |
apt update | |
apt install anydesk | |
add-apt-repository ppa:git-core/ppa | |
apt update | |
apt install git | |
git config --global user.name "urmi" | |
git config --global user.email [email protected] | |
apt upgrade -y | |
apt -f install | |
apt autoremove | |
apt -y autoclean | |
apt -y clean | |
apt update | |
reboot | |
nginx -v | |
service nginx start | |
systemctl enable nginx | |
systemctl stop nginx | |
systemctl disable nginx | |
systemctl reload nginx | |
systemctl restart nginx | |
systemctl status nginx | |
systemctl stop apache2 | |
nginx -t | |
systemctl reload nginx | |
systemctl restart nginx |
Author
LinuxDevOpsGirl
commented
Dec 21, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment