Skip to content

Instantly share code, notes, and snippets.

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

Atik Ullah iotonlinux

🏠
Working from home
View GitHub Profile
@iotonlinux
iotonlinux / Install WordPress on Ubuntu Using LAMP Stack
Last active September 15, 2021 16:40 — forked from UbuntuEvangelist/Install WordPress on Ubuntu Using LAMP Stack
I Will Do Install WordPress on Ubuntu Using LAMP Stack
PING ME FOR WORK:
SMS: +8801949145160
IMO: +8801949145160
BiP: +8801949145160
Telegram: https://t.me/iotonlinux
WhatsApp: https://wa.me/qr/5LWIRRMXUWNVJ1
twitter:https://twitter.com/IotonlinuxAtik
Email: [email protected]
sudo apt update
@iotonlinux
iotonlinux / Completely Uninstall LAMP Ubuntu
Last active September 7, 2021 16:23 — forked from UbuntuEvangelist/Completely Uninstall LAMP Stack Ubuntu 24.04 LTS
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
sudo apt remove apache2.*
sudo apt-get autoremove
whereis apache2
sudo rm -rf /etc/apache2
@iotonlinux
iotonlinux / Python-3.8.6.sh
Created August 25, 2021 18:30 — forked from UbuntuEvangelist/How To Install Python Ubuntu 24.04 LTS
How To Install Python-3.8.6 Into Ubuntu 20.04 LTS
# !/bin/sh
sudo apt update
sudo apt install build-essential zlib1g-dev libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev libsqlite3-dev wget libbz2-dev
sudo apt-get install build-essential checkinstall
sudo apt autoremove
sudo apt-get install libreadline-gplv2-dev libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev libffi-dev zlib1g-dev
cd /opt
sudo wget https://www.python.org/ftp/python/3.8.6/Python-3.8.6.tgz
sudo tar xzf Python-3.8.6.tgz