Skip to content

Instantly share code, notes, and snippets.

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

Mohammad Kaisar Hamid linuxbiekaisar

🏠
Working from home
View GitHub Profile
@linuxbiekaisar
linuxbiekaisar / Keybase.md
Created February 6, 2020 07:51
My keybase

Keybase proof

I hereby claim:

  • I am linuxbiekaisar on github.
  • I am linuxbiekaisar (https://keybase.io/linuxbiekaisar) on keybase.
  • I have a public key whose fingerprint is 2A22 7133 B54B 5386 2C3B E108 4ABB C896 9593 5326

To claim this, I am signing this object:

@linuxbiekaisar
linuxbiekaisar / LAMP.sh
Last active April 1, 2020 10:44
How to install LAMP stack on Ubunt
# YouTube: https://youtu.be/HX15wgOjBF0
# Apache Installation, version checking, start, stop, restarting and enabling procedure:
sudo apt update
sudo apt upgrade
sudo apt install apache2
php --version
sudo systemctl start apache2
sudo systemctl status apache2
@linuxbiekaisar
linuxbiekaisar / smpp.sh
Created February 16, 2020 15:56
SMPP Setup for SMS Gatteway
# SMPP Server For Jasmin SMS Gateway need setup Contact Skype: linuxbiekaisar
# You Tube : https://www.youtube.com/watch?v=EA_EbNGWRsY&t=4s
sudo apt update && sudo apt-get upgrade --fix-missing
sudo git config --global user.name "YourName"
sudo git config --global user.email youremail@gmail.com
wget -qO - http://bit.ly/jasmin-deb-repo | sudo bash
sudo apt-get install python-jasmin
sudo systemctl enable jasmind
sudo systemctl start jasmind
@linuxbiekaisar
linuxbiekaisar / smpp.sh
Created February 16, 2020 17:33
SMPP For Jasmin SMS Gateway
# SMPP Server For Jasmin SMS Gateway need setup Contact Skype: linuxbiekaisar
# YOouTube https://youtu.be/EA_EbNGWRsY
sudo apt update && sudo apt-get upgrade --fix-missing
sudo git config --global user.name "YourName"
sudo git config --global user.email youremail@gmail.com
wget -qO - http://bit.ly/jasmin-deb-repo | sudo bash
sudo apt-get install python-jasmin
sudo systemctl enable jasmind
@linuxbiekaisar
linuxbiekaisar / thingstodo.sh
Last active May 23, 2020 17:01
Things to do after installing Ubuntu 18.04 LTS
# Youtube: https://www.youtube.com/watch?v=-3Yknz-uM4g
#!/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 install build-essential checkinstall
# Install Ubuntu Restricted Extras
@linuxbiekaisar
linuxbiekaisar / Vtiger.sh
Created February 21, 2020 04:47
Vtiger CRM Setup on Ubuntu 18.04 LTS
# Vtiger CRM Setup if need setup Contact Skype: linuxbiekaisar
# You Tube : https://www.youtube.com/watch?v=fR5tffoFQyY&t=2s
apt-get update -y
apt-get upgrade -y
# Install LAMP Server
apt-get install apache2 mariadb-server libapache2-mod-php7.2 php7.2 php7.2-cli php7.2-mysql php7.2-common php7.2-zip php7.2-mbstring php7.2-xmlrpc php7.2-curl php7.2-soap php7.2-gd php7.2-xml php7.2-intl php7.2-ldap php7.2-imap unzip wget -y
# After installing all the packages, open php.ini file, and make some changes, close the file, and save it:
@linuxbiekaisar
linuxbiekaisar / Git.sh
Last active February 25, 2020 05:52
Git Installation on Ubuntu
#!/bin/sh
# Youtube link: https://www.youtube.com/watch?v=rKJLQJ2FgDI
# Run the following command to install Git on Ubuntu 18.04 LTS
sudo add-apt-repository ppa:git-core/ppa
sudo apt update
sudo apt install git
sudo git config --global user.name "linuxbiekaisar"
sudo git config --global user.email linuxbiekaisar@gmail.com
@linuxbiekaisar
linuxbiekaisar / SSH.SH
Last active February 24, 2020 16:16
Generate SSH key and Upload to GitHub
# What is SSH?
# An SSH key is an access credential for the SSH (secure shell) network protocol. This authenticated and encrypted secure network protocol is used for remote communication between machines on an unsecured open network. SSH is used for remote file transfer, network management, and remote operating system access.
# How to check for existing SSH keys?
$ ls -al ~/.ssh
# NOTE: If their is any key u will see id_rsa.pub into a list.
# How to generate a new SSH key and adding it to the ssh-agent?
@linuxbiekaisar
linuxbiekaisar / RocketChat.sh
Last active February 26, 2020 11:37
Rocket.chat Installation
# Youtube: https://www.youtube.com/watch?v=9Vm9umPVuzE&t=1s
# To install Rocket.chat on Ubuntu 18.04 LTS run the command
sudo apt-get -y update
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 9DA31620334BD75D9DCB49F368818C72E52529D4
echo "debsudo apt-get -y update && sudo apt-get install -y curl && curl -sL https://deb.nodesource.com/setup_12.x | sudo bash -
sudo apt-get -y update && sudo apt-get install -y curl && curl -sL https://deb.nodesource.com/setup_12.x | sudo bash -
sudo apt-get install -y build-essential mongodb-org nodejs graphicsmagick
curl -L https://releases.rocket.chat/latest/download -o /tmp/rocket.chat.tgz
@linuxbiekaisar
linuxbiekaisar / Ntopng.sh
Last active February 28, 2020 12:56
Ntopng installation on Ubuntu/Linux Distro
# Youtube: https://www.youtube.com/watch?v=trTa13OOMOc
# First make sure that all your system packages are up-to-date
sudo apt-get update
sudo apt-get upgrade
# Installing Ntopng on Ubuntu 18.04 LTS.
wget http://apt.ntop.org/18.04/all/apt-ntop.deb
dpkg -i apt-ntop.deb
# Then, run: