Skip to content

Instantly share code, notes, and snippets.

View linuxoracledev's full-sized avatar
💭
I may be slow to respond.

Mohammad Abul Kalam Azad linuxoracledev

💭
I may be slow to respond.
View GitHub Profile
@linuxoracledev
linuxoracledev / keybase.md
Created November 4, 2019 18:10
my keybase

Keybase proof

I hereby claim:

  • I am linuxoracledev on github.
  • I am linuxoracledev (https://keybase.io/linuxoracledev) on keybase.
  • I have a public key whose fingerprint is 91A6 DBA7 78C5 B2AB BFDB 10C6 ABD2 CAC9 47AD 8386

To claim this, I am signing this object:

@linuxoracledev
linuxoracledev / lamp.sh
Last active November 6, 2019 18:39
LAMP Install Ubuntu 18.04 LTS
#!/bin/bash
# update & upgrade system
sudo apt update & sudo apt upgrade --fix-missing
# install apache & add to firewall
sudo apt install apache2
sudo ufw allow 'Apache'
# restart, enable, stop, start, status, reload apache
@linuxoracledev
linuxoracledev / InstallingNtopng.sh
Last active November 19, 2019 20:22
Installation and Configuration of Ntopng on Ubuntu 18.04 LTS
#Update and Upgrade the system
sudo apt-get update
sudo apt-get upgrade
#Download and install Ntopng repository
wget http://apt.ntop.org/18.04/all/apt-ntop.deb
sudo dpkg -i apt-ntop.deb
sudo apt-get clean all
sudo apt-get update
sudo apt-get install pfring-dkms nprobe ntopng n2disk cento
@linuxoracledev
linuxoracledev / powershel.sh
Created November 21, 2019 18:31
install powershell on ubuntu 18.04
# Install powershell
snap isntall powershell --clasic
#Start powershell
pwsh
@linuxoracledev
linuxoracledev / powershel.sh
Created November 21, 2019 18:31
install powershell on ubuntu 18.04
# Install powershell
snap isntall powershell --clasic
#Start powershell
pwsh
@linuxoracledev
linuxoracledev / vtiger.sh
Last active November 27, 2019 02:50
How to Install vTiger CRM on Ubuntu 18.04 LTS with Uninstallation
##Install and Configure LAMP
#Update and Upgrades System
sudo apt-get update && upgrade
#install apache,mariadb, php and other required packages
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
#Make some changes in php.ini file
###################################
#file_uploads = On
@linuxoracledev
linuxoracledev / updateheroku.sh
Created December 3, 2019 14:45
How to update apps in heroku after deployment
#Install heroku cli
#Login to heroku
heroku login
#Clone the app in local and changes working dir to the app dir - here azadbd is the app dir
heroku git:clone -a azadbd
cd azadbd
#Initialize git
git init
@linuxoracledev
linuxoracledev / installredis.sh
Last active December 7, 2019 17:59
How To Install, Configure and Secure Redis on Ubuntu 18.04
#Update the system
sudo apt-get update
#Install redis
sudo apt-get install redis-server
#Modify redis.conf file
sudo nano /etc/redis/redis.conf
#Enable supervised to systemd to do so uncomment the line #supervised systemd
@linuxoracledev
linuxoracledev / InstallRuby.sh
Last active December 7, 2019 18:10
Install ruby-2.5.3 on ubuntu 18.04 LTS
#Download Ruby
wget https://cache.ruby-lang.org/pub/ruby/2.5/ruby-2.5.3.zip
#Change directory to where to install
cd /
#create a directory
sudo mkdir ruby
#back to home
cd /
#Unzip ruby to the directory 'ruby'
@linuxoracledev
linuxoracledev / rabbitmq.sh
Last active December 8, 2019 10:22
How to install Latest RabbitMQ Server on Ubuntu 18.04 LTS
##Install Erlang/OTP
#Import Erlang GPG Key
wget -O- https://packages.erlang-solutions.com/ubuntu/erlang_solutions.asc | sudo apt-key add -
#Add the Erlang Repository Ubuntu 18.04 system
echo "deb https://packages.erlang-solutions.com/ubuntu bionic contrib" | sudo tee /etc/apt/sources.list.d/rabbitmq.list
#Update your system package list and install Erlang
sudo apt update
sudo apt -y install erlang