Skip to content

Instantly share code, notes, and snippets.

View linuxkeepup's full-sized avatar

Montasir linuxkeepup

View GitHub Profile
@linuxkeepup
linuxkeepup / Drupal Installation Using LAMP Stack
Last active September 21, 2022 16:21
Drupal Installation Using LAMP Stack
Please send me your query for Drupal service support
WhatsApp: http://tiny.cc/linuxkeepup
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
@linuxkeepup
linuxkeepup / WordPress Setup on Ubuntu with a LAMP Stack
Last active September 21, 2022 16:24
Install WordPress on Ubuntu with a LAMP Stack
Please send your query for WordPress/LAMP Stack Support Service:
Telegram: https://t.me/montasir2022
WhatsApp: https://tiny.cc/linuxkeepup
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
Please send me your query for LAMP Stack service support
WhatsApp: http://tiny.cc/linuxkeepup
sudo -i
sudo apt update
sudo apt upgrade
sudo apt install apache2
sudo service apache2 status
@linuxkeepup
linuxkeepup / Install Multiple Version of PHP in Ubuntu
Last active September 4, 2022 17:38
Install Different PHP Version and Switch PHP Version
#!/bin/bash
# Installing PHP Versions 7.2 and 7.3 with PHP-FPM
sudo apt-get install software-properties-common -y
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update -y
sudo apt-get install php7.2 php7.2-fpm php7.2-mysql libapache2-mod-php7.2 libapache2-mod-fcgid -y
sudo apt-get install php7.3 php7.3-fpm php7.3-mysql libapache2-mod-php7.3 -y
sudo systemctl start php7.2-fpm
sudo systemctl status php7.2-fpm
@linuxkeepup
linuxkeepup / How To Install Python-3.9.9 Into Ubuntu 20.04 LTS
Last active September 4, 2022 17:10
Install Python-3.9.9 Into Ubuntu 20.04 LTS
# !/bin/sh
sudo -i
apt update && apt upgrade -y
apt install build-essential zlib1g-dev libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev libsqlite3-dev wget libbz2-dev
apt install build-essential checkinstall
apt autoremove
apt install libreadline-gplv2-dev libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev libffi-dev zlib1g-dev
cd /opt
wget https://www.python.org/ftp/python/3.9.9/Python-3.9.9.tgz
tar xzf Python-3.9.9.tgz
@linuxkeepup
linuxkeepup / Git Remote Supports
Last active August 29, 2022 16:28
The A-Z Git Development Service
Please send your query for Git Remote Support Service:
Telegram: https://t.me/montasir2022
WhatsApp: https://web.whatsapp.com/send?number=01768231949
Email: linuxkeepup@gmail.com
#!/bin/bash
sudo add-apt-repository ppa:git-core/ppa
sudo apt update
sudo apt install git
git --version