Skip to content

Instantly share code, notes, and snippets.

View LinuxFintech's full-sized avatar
🏠
Working from home

Sabiqun Fabiha LinuxFintech

🏠
Working from home
View GitHub Profile
@LinuxFintech
LinuxFintech / Things To Do After Installing Ubuntu 18.04 LTS Cloud Linux
Created December 8, 2020 10:11
Things To Do After Installing Ubuntu 18.04 LTS Cloud Linux
sudo apt update && sudo apt-get upgrade --fix-missing
sudo apt install build-essential checkinstall
sudo apt install ubuntu-restricted-extras
sudo apt install software-properties-common
sudo add-apt-repository ppa:nilarimogard/webupd8
@LinuxFintech
LinuxFintech / Things To Do After Installing Ubuntu 18.04 LTS Cloud Linux
Created December 8, 2020 10:11
Things To Do After Installing Ubuntu 18.04 LTS Cloud Linux
sudo apt update && sudo apt-get upgrade --fix-missing
sudo apt install build-essential checkinstall
sudo apt install ubuntu-restricted-extras
sudo apt install software-properties-common
sudo add-apt-repository ppa:nilarimogard/webupd8
@LinuxFintech
LinuxFintech / Things To Do After Installing Ubuntu 18.04 LTS Cloud Linux
Created December 8, 2020 10:11
Things To Do After Installing Ubuntu 18.04 LTS Cloud Linux
sudo apt update && sudo apt-get upgrade --fix-missing
sudo apt install build-essential checkinstall
sudo apt install ubuntu-restricted-extras
sudo apt install software-properties-common
sudo add-apt-repository ppa:nilarimogard/webupd8
@LinuxFintech
LinuxFintech / LAMP.sh
Created December 31, 2020 09:05
Completely Uninstall LAMP Ubuntu 20.04 LTS
#!/bin/bash
# This will remove Apache
sudo service apache2 stop
sudo apt-get purge apache2 apache2-utils apache2.2-bin apache2-common
sudo apt remove apache2.*
sudo apt-get autoremove
whereis apache2
sudo rm -rf /etc/apache2
#!/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 PHP & check version
apt install software-properties-common
add-apt-repository ppa:ondrej/apache2
apt update -y
apt upgrade -y
# For php7.3 (use any)
apt install -y php7.3
apt install libapache2-mod-php7.3 php7.3 unzip php7.3-xml php7.3-mysql php7.3-imap php7.3-zip php7.3-intl php7.3-curl ntp -y
@LinuxFintech
LinuxFintech / MySQLFocal.sh
Created June 3, 2021 17:53 — forked from UbuntuEvangelist/MySQLFocal.sh
Install MySQL on Ubuntu 20.04 [Quickstart]
apt install mysql-server
mysql_secure_installation
mysql --version
service mysql start
service mysql enable
service mysql restart
service mysql status
ufw allow from any to any port 3306 proto tcp
systemctl restart mysql
systemctl enable mysql
@LinuxFintech
LinuxFintech / forma.lms 2.2.1
Created June 7, 2021 16:28
Install Forma Learning Management System (LMS) On Ubuntu With Apache2, MariaDB And PHP
#!/bin/bash
#Install Apache2
sudo apt update
sudo apt install apache2
sudo systemctl start apache2.service
sudo systemctl enable apache2.service
sudo systemctl restart apache2.service
@LinuxFintech
LinuxFintech / Docker Compose
Created July 5, 2021 16:51 — forked from UbuntuEvangelist/Docker and Docker Compose Install
Docker and Docker Compose Install Ubuntu 20.04 LTS
#!/bin/sh
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-show-versions | grep upgradeable
apt install apt-show-versions
@LinuxFintech
LinuxFintech / Ubuntu20.04.sh
Created July 6, 2021 17:03 — forked from rakibulinux/Ubuntu20.04.sh
Things To Do After Installing Ubuntu 20.04 LTS
#!/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 -y install build-essential checkinstall
# Install Ubuntu Restricted Extras
sudo apt -y install ubuntu-restricted-extras