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 / VMware.sh
Created December 14, 2019 21:07
How To Install VMware Workstation Player on Ubuntu 18.04
#Update the system
sudo apt update
#Upgrade the system
sudo apt upgrade
#Install Required Packages
sudo apt install build-essential linux-headers-generic
#Download VMware Workstation Player
@linuxoracledev
linuxoracledev / wordpress-lemp.sh
Last active December 11, 2019 18:27
How to Install WordPress with LEMP Stack on Ubuntu 18.04
##Install NGINX
#Update the system
sudo apt update
#Install nginx
sudo apt install nginx
#Allow connections to Nginx on firewall
sudo ufw allow 'Nginx HTTP'
@linuxoracledev
linuxoracledev / lemp.sh
Last active December 10, 2019 21:31
How To Install LEMP stack(Linux, Nginx, MySQL, PHP) on Ubuntu 18.04
##Install NGINX
#Update the system
sudo apt update
#Install nginx
sudo apt install nginx
#Allow connections to Nginx on firewall
sudo ufw allow 'Nginx HTTP'
@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
@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 / 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 / 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 / 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 / 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