I hereby claim:
- I am parallaxhub on github.
- I am parallaxhub (https://keybase.io/parallaxhub) on keybase.
- I have a public key whose fingerprint is 28C1 CE6D 330D 284B C783 0778 9442 93B7 E212 4B9C
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
sudo apt update -y | |
sudo apt-get upgrade -y | |
sudo apt install build-essential checkinstall | |
sudo apt install ubuntu-restricted-extras | |
sudo apt install software-properties-common | |
sudo apt upgrade -o APT::Get::Show-Upgraded=true | |
sudo apt-show-versions | grep upgradeable | |
sudo apt install apt-show-versions | |
sudo apt update -y | |
sudo apt-get upgrade -y |
#!/bin/bash | |
# This will remove Apache | |
sudo service apache2 stop | |
sudo apt-get purge apache2 apache2-utils apache2.2-bin | |
sudo apt remove apache2.* | |
sudo apt-get autoremove | |
whereis apache2 | |
sudo rm -rf /etc/apache2 |
# 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 | |
service apache2 stop |
#!/bin/bash | |
Q: What is Git? | |
A: Git is a version control system. | |
Q: Example of Git use | |
A: See atatched images. We use Git to manage our training version control release which can be see here: https://github.com/SchoolOfFreelancing/Back-Office/releases | |
Q: How to install latest Git and how I can check which version installed into Ubuntu? | |
A: To install Latest Git Run: |
sudo apt update | |
sudo apt upgrade | |
sudo apt install apache2 | |
sudo ufw allow in "Apache Full" | |
apache2 -v | |
sudo service apache2 start | |
sudo systemctl enable apache2 | |
sudo systemctl status apache2 | |
sudo service apache2 stop |
#!/bin/sh | |
# YouTube: https://youtu.be/FIEDwzMRdBw | |
# Things to so after install Ubuntu 20.04 | |
sudo -i | |
apt update -y | |
apt upgrade -y | |
apt update -y | |
apt install build-essential checkinstall | |
apt install ubuntu-restricted-extras |
#!/bin/sh | |
# Things to so after install Ubuntu 20.04 | |
sudo -i | |
apt update -y | |
apt upgrade -y | |
apt update -y | |
apt install build-essential checkinstall | |
apt install ubuntu-restricted-extras | |
apt install software-properties-common |
# Things to do after install Ubuntu 20 | |
sudo apt update -y | |
sudo apt-get upgrade -y | |
sudo apt install build-essential checkinstall | |
sudo apt install ubuntu-restricted-extras | |
sudo apt install software-properties-common | |
sudo apt upgrade -o APT::Get::Show-Upgraded=true | |
sudo apt install apt-show-versions | |
sudo apt update -y |
sudo -i | |
apt update | |
apt install nginx | |
chown -R $USER /var/www/html | |
chmod -R 755 /var/www/html | |
nginx -t | |
ufw app list | |
ufw allow 'Nginx HTTP' | |
ufw status | |
systemctl start nginx |