Skip to content

Instantly share code, notes, and snippets.

@LinauxTerminology
Last active March 7, 2021 17:13
Show Gist options
  • Select an option

  • Save LinauxTerminology/b28daaa35463c09291c6738861e8ac91 to your computer and use it in GitHub Desktop.

Select an option

Save LinauxTerminology/b28daaa35463c09291c6738861e8ac91 to your computer and use it in GitHub Desktop.
Drupal Installation Service
If you need drupal Setup contact with me:
Email: urmirohman218@gmail.com
Skype: https://join.skype.com/VOgbAxZNCAFi
Telegram: https://t.me/LinauxTerminology
WhatsApp: +8801408694088
Imo: +8801408694088
twiteer:https://twitter.com/LinauxTerminoal
facebook:https://www.facebook.com/LinauxTerminology
bip:01314582960
instagram:urmirohman218@gmail.com
Drupal on Ubuntu 20.04
#!/bin/sh
#Things To Do After Installing Ubuntu 20.04 LTS Desktop
sudo -i
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 youremail@gmail.com
apt upgrade -y
apt -f install
apt autoremove
apt -y autoclean
apt -y clean
apt update
reboot
# Install Apache to check from web browser using 0.0.0.0 or localhost, check version, start,stop & restart Apache into Ubuntu
apt update
apt upgrade
apt install apache2
ufw allow in "Apache Full"
apache2 -v
service apache2 restart
systemctl enable apache2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment