Skip to content

Instantly share code, notes, and snippets.

View linuxkeepup's full-sized avatar

Montasir linuxkeepup

View GitHub Profile
@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
@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 / 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
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 / 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
@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 / Install Laravel Using LAMP Stack
Last active September 27, 2022 15:04
Install Laravel Using LAMP Stack
Please send me your query for Laravel service support
WhatsApp: http://tiny.cc/linuxkeepup
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
@linuxkeepup
linuxkeepup / Joomla Remote Support Service
Last active October 4, 2022 19:04
Joomla Install with LAMP Stack on Ubuntu/Linux
Please send me your query for Joomla support service
WhatsApp: http://tiny.cc/linuxkeepup
sudo apt install apache2 mariadb-server-10.3 mariadb-client-10.3 php7.4 libapache2-mod-php7.4 php7.4-cli php7.4-mysql php7.4-json php7.4-opcache php7.4-mbstring php7.4-intl php7.4-xml php7.4-gd php7.4-zip php7.4-curl php7.4-xmlrpc
nano /etc/apache2/sites-available/000-default.conf
<VirtualHost *:80>
DirectoryIndex index.php
@linuxkeepup
linuxkeepup / WordPress LEMP Stack Remote Support on Ubuntu Linux
Last active October 30, 2022 19:03
Install WordPress with LEMP Stack on Ubuntu Linux
Please send me your query for WordPress with LEMP Stack support service
WhatsApp: http://tiny.cc/linuxkeepup
sudo -i
apt update
apt install nginx
chown -R $USER:$USER /var/www/html
chmod -R 755 /var/www/html
nginx -t
ufw app list
@linuxkeepup
linuxkeepup / Get Drupal Install Support With LEMP Stack
Last active October 30, 2022 19:04
Drupal Install with LEMP Stack
Please send me your query for Drupal with LEMP Stack support service
WhatsApp: http://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
sudo apt install apt-show-versions