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 / 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 / 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 / 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)',