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 / samba.sh
Created December 15, 2019 19:26
How to Install and Configure Samba on Ubuntu 18.04 LTS
#Install samba
sudo apt install samba
#Verify SAMBA installation
sudo systemctl status nmbd
#create a Samba directory
sudo mkdir /samba
##Configuring Samba Shares
@linuxoracledev
linuxoracledev / openssh.sh
Last active December 22, 2019 20:05
How to Install, Enable Openssh-Server in Ubuntu 18.04 LTS
sudo apt-get install openssh-server
sudo service ssh status
sudo nano /etc/ssh/sshd_config
sudo service ssh restart
sudo service ssh status
#To see if existing SSH keys are present
ls -al ~/.ssh
#Generate a new SSH key
@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
@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 / 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 / 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 / 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 / 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 / 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