Skip to content

Instantly share code, notes, and snippets.

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

Kanij Fatima LinauxTerminology

🏠
Working from home
View GitHub Profile
@LinauxTerminology
LinauxTerminology / MEAN Stack.sh
Created June 21, 2021 16:52
I Will Do Installation MEAN Stack Ubuntu
If you need MEAN Stack Setup contact with me:
Email: [email protected]
Skype: https://join.skype.com/
Telegram:https://t.me/LinauxTerminology
WhatsApp: +8801408694088
Imo: +8801408694088
apt-get update -y
#!/bin/sh
# For version 12
curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
sudo apt-get install -y nodejs
sudo apt-get install gcc g++ make
curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt-get update && sudo apt-get install yarn
@LinauxTerminology
LinauxTerminology / Python-3.8.6.sh
Created June 3, 2021 17:19 — 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
@LinauxTerminology
LinauxTerminology / Docker Compose
Last active April 21, 2021 09:33 — forked from UbuntuEvangelist/Docker and Docker Compose Install
I Will Do Docker and Docker Compose Install ubuntu 20.04 LTS
If you need Docker & Docker Compose Setup contact with me:
Email: [email protected]
Skype: https://join.skype.com/
Telegram: https://t.me/LinauxTerminology
WhatsApp: +8801408694088
Imo: +8801408694088
twiteer:https://twitter.com/LinauxTerminoal
facebook:https://www.facebook.com/LinauxTerminology
bip:01314582960
instagram:[email protected]
@LinauxTerminology
LinauxTerminology / Drupal Cms with lemp.sh
Last active April 21, 2021 08:40
I Will Do Drupal cms Installation With LEMP Ubuntu 20.04
If you need Drupal CMS Setup contact with me:
Email: [email protected]
Skype: https://join.skype.com/
Telegram: https://t.me/LinauxTerminology
WhatsApp: +8801408694088
Imo: +8801408694088
twiteer:https://twitter.com/LinauxTerminoal
facebook:https://www.facebook.com/LinauxTerminology
bip:01314582960
@LinauxTerminology
LinauxTerminology / Specific PHP Version
Created April 7, 2021 16:20
Specific PHP Version Install Linux Using PPA
sudo apt-get install software-properties-common python-software-properties
sudo add-apt-repository ppa:ondrej/php
sudo apt update -y
sudo apt-get install -y php5.6
php --version
which php
@LinauxTerminology
LinauxTerminology / Django.sh
Created March 18, 2021 18:01
I Will Do Django Install On Ubuntu 20.04
# !/bin/sh
# Install Packages
sudo apt update
python3 -V
sudo apt install python3-django
django-admin --version
#Install Virtual Environment
sudo apt update
@LinauxTerminology
LinauxTerminology / MySQLFocal.sh
Created March 15, 2021 16:26 — forked from UbuntuEvangelist/MySQLFocal.sh
Install MySQL on Ubuntu 20.04 [Quickstart]
sudo -i
apt update
apt install mysql-server
mysql_secure_installation
nano /etc/mysql/mysql.conf.d/mysqld.cnf
#And then change the bind-address line to 0.0.0.0
# Save and exit
ufw allow from any to any port 3306 proto tcp
@LinauxTerminology
LinauxTerminology / Humhub .sh
Last active March 7, 2021 17:10
I Will Do Install Humhub on Ubuntu 18.04
If you need Humhub Setup contact with me:
Email: [email protected]
Skype: https://join.skype.com/
Telegram: https://t.me/LinauxTerminology
WhatsApp: +8801408694088
Imo: +8801408694088
twiteer:https://twitter.com/LinauxTerminoal
facebook:https://www.facebook.com/LinauxTerminology
bip:01314582960
instagram:[email protected]
@LinauxTerminology
LinauxTerminology / Wordpress With Lemp .sh
Last active February 25, 2021 16:25
I Will Do Install Wordpress with LEMP
##Install Nginx
sudo apt update
sudo apt install nginx
systemctl restart nginx
systemctl enable nginx
sudo service nginx status
sudo ufw allow OpenSSH
sudo ufw allow 'Nginx HTTP'
sudo ufw enable
sudo ufw status