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 / 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 / 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 / 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 / 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 / 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:
@linuxbiekaisar
linuxbiekaisar / powershell.sh
Created February 28, 2020 14:52
Install Powershell on Ubuntu 18.04 LTS
# To install Powershell on Ubuntu 18.04 LTS run the given command to add the repository to your Ubuntu 18.04 system.
sudo apt-get update && sudo apt -y install wget
wget -q https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb
sudo dpkg -i packages-microsoft-prod.deb
# After it update package index list and Install PowerShell by typing
sudo apt update
sudo apt -y install powershell
# To test powershell on your Ubuntu 18.04, try the following command
@linuxbiekaisar
linuxbiekaisar / OpenVAS.sh
Last active March 3, 2020 13:21
Install OpenVAS on Ubuntu 18.04 LTS
#!/bin/bash
Youtube: https://www.youtube.com/watch?v=N6tVmSW4lVg
# add the ppa repo, update your system
sudo add-apt-repository ppa:mrazavi/openvas
sudo apt-get update
# install the required packages