Skip to content

Instantly share code, notes, and snippets.

View badhonhitech's full-sized avatar
💭
I may be slow to respond.

khaleda ferdous badhonhitech

💭
I may be slow to respond.
View GitHub Profile
@badhonhitech
badhonhitech / Apache2.sh
Created October 23, 2020 12:11 — forked from UbuntuEvangelist/Apache2.sh
How To Install the Apache Web Server on Ubuntu 20.04 [Quickstart]
# !/bin/sh
sudo apt update -y
sudo apt upgrade -y
sudo apt install apache2
sudo systemctl restart apache2
sudo ufw app list
sudo ufw allow 'Apache'
sudo ufw status
sudo ufw reload
sudo ufw restart
@badhonhitech
badhonhitech / ThingsToDo.sh
Last active April 22, 2020 19:15
Things To Do After Installing Ubuntu 18.04 LTS Desktop
#!/bin/sh
# This command will update & upgrade your system
sudo apt update && sudo apt-get upgrade --fix-missing
# Install the package build-essential for making the package and checkinstall for putting it into your package manager
sudo apt install build-essential checkinstall
# Install Ubuntu Restricted Extras
sudo apt install ubuntu-restricted-extras