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 / hyper.js
Created March 16, 2020 09:49 — forked from coco-napky/hyper.js
Hyper config for git bash in Windows
module.exports = {
config: {
// default font size in pixels for all tabs
fontSize: 12,
// font family with optional fallbacks
fontFamily: 'Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace',
// terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk)
cursorColor: 'rgba(248,28,229,0.8)',
@linuxoracledev
linuxoracledev / VMWare.sh
Created February 6, 2020 19:42
How to Install VMware Workstation Player on Ubuntu 18.04
#Install the build dependencies
sudo apt update
sudo apt install build-essential linux-headers-generic
#Download VMware Workstation Player
wget --user-agent="Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Firefox/60.0" https://www.vmware.com/go/getplayer-linux
#Make the installation file executable
chmod +x getplayer-linux
@linuxoracledev
linuxoracledev / tomcat.sh
Created January 13, 2020 21:09
How to Install Tomcat 9 on Ubuntu 18.04
##Install OpenJDK
#Update system
sudo apt update
#Install the OpenJDK package
sudo apt install default-jdk
#Create Tomcat User
sudo useradd -r -m -U -d /opt/tomcat -s /bin/false tomcat
@linuxoracledev
linuxoracledev / virtualbox.sh
Created January 13, 2020 12:47
How to Install Oracle VirtualBox 6.0 on Kali Linux / Linux Mint
#Update your system
sudo apt update
sudo apt -y upgrade
sudo reboot
#Import apt repository
wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add -
wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- | sudo apt-key add -
#Add the VirtualBox Repository
@linuxoracledev
linuxoracledev / asterisk.sh
Last active February 9, 2022 09:53
Install Asterisk 16 LTS on Ubuntu 18.04 / 16.04 & Debian 10/9
#Update system & reboot
sudo apt update && sudo apt -y upgrade
sudo reboot
#Install Asterisk 16 LTS dependencies
sudo apt -y install git curl wget libnewt-dev libssl-dev libncurses5-dev subversion libsqlite3-dev build-essential libjansson-dev libxml2-dev uuid-dev
#Add universe repository and install subversio
sudo add-apt-repository universe
sudo apt update && sudo apt -y install subversion
@linuxoracledev
linuxoracledev / mean.sh
Last active January 9, 2020 08:33
How to Install MEAN Stack On Ubuntu 18.04
##Install MongoDB
#Install gnupg and its required libraries
sudo apt-get install gnupg
#Import the public key used by the package management system
wget -qO - https://www.mongodb.org/static/pgp/server-4.2.asc | sudo apt-key add -
#Create a list file for MongoDB
echo "deb [ arch=amd64 ] https://repo.mongodb.org/apt/ubuntu bionic/mongodb-org/4.2 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.2.list
@linuxoracledev
linuxoracledev / docker.sh
Created January 6, 2020 18:58
How To Install and Use Docker on Ubuntu 18.04
#Update your existing list of packages
sudo apt update
#Install a few prerequisite packages
sudo apt install apt-transport-https ca-certificates curl software-properties-common
#Add the GPG key for the official Docker repository
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
#Add the Docker repository to APT sources
@linuxoracledev
linuxoracledev / mongodb.sh
Last active January 8, 2020 19:30
How to Install and Confugure MongoDB, Create Database and User on Ubuntu 18.04
#Update the Ubuntu packages list
sudo apt update
#Install the MongoDB package
sudo apt install -y mongodb
#Check the Service and Database
sudo systemctl status mongodb
#View database version, server address and port
@linuxoracledev
linuxoracledev / webmin.sh
Last active January 2, 2020 20:43
How to Install Webmin on Ubuntu 18.04 & 16.04 LTS with Config Server Firewall (CSF) Installation and Configuration
#Configure APT Repository
sudo nano /etc/apt/sources.list.d/webmin.list
#Add below value to this file:
# deb http://download.webmin.com/download/repository sarge contrib
# deb http://webmin.mirror.somersettechsolutions.co.uk/repository sarge contrib
#Import the GPG key
curl http://www.webmin.com/jcameron-key.asc | sudo apt-key add -
@linuxoracledev
linuxoracledev / laravel.sh
Last active February 11, 2020 21:59
Install Laravel PHP Framework On Ubuntu 16.04 | 17.10 | 18.04
#Update and Upgrade the system
sudo apt update
sudo apt-get upgrade
# Add ppa repository
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update
#Install Apache2
sudo apt install apache2