Skip to content

Instantly share code, notes, and snippets.

@LinuxDevOpsGirl
Created December 21, 2021 13:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LinuxDevOpsGirl/be405a5447cc2545fa979c39b566b32b to your computer and use it in GitHub Desktop.
Save LinuxDevOpsGirl/be405a5447cc2545fa979c39b566b32b to your computer and use it in GitHub Desktop.
Joomla Install LEMP Stack
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 devopsurmi@gmail.com
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
@LinuxDevOpsGirl
Copy link
Author

Screenshot from 2021-12-21 06-53-42

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment