Skip to content

Instantly share code, notes, and snippets.

View rakibulinux's full-sized avatar
🤗
Work From Home

MD RAKIBUL ISLAM RAKIB rakibulinux

🤗
Work From Home
View GitHub Profile
@rakibulinux
rakibulinux / MailDev.sh
Created March 15, 2020 13:56
How to install MailDev on ubuntu 18.04
#!/bin/sh
sudo git clone git@github.com:djfarrelly/MailDev.git
sudo apt-get install nodejs-dev node-gyp libssl1.0-dev
sudo apt-get install npm
sudo npm install -g ./MailDev
maildev
@rakibulinux
rakibulinux / HospitalRun.sh
Last active June 30, 2020 09:57
How to install HospitalRun On Linux Operating System
#!/bin/sh
https://github.com/HospitalRun/hospitalrun-server/fork
#Clone it to your local machine
git clone https://github.com/rakibulinux/hospitalrun-server.git
#Avigate to the cloned folder:
cd hospitalrun-server
@rakibulinux
rakibulinux / Stacer.sh
Created April 1, 2020 01:06
How to Optimize Linux System with Stacer
#!/bin/sh
sudo add-apt-repository ppa:oguzhaninan/stacer
sudo apt update
sudo apt -y install stacer
stacer
@rakibulinux
rakibulinux / NGINX.sh
Created April 12, 2020 08:11
How to Build NGINX from source on Ubuntu 18.04 LTS
#!/bin/sh
sudo apt update && sudo apt upgrade -y
sudo apt install -y build-essential git tree
wget http://nginx.org/download/nginx-1.16.1.tar.gz && tar zxvf nginx-1.16.1.tar.gz
#Download the mandatory NGINX dependencies' source code and extract them:
# PCRE version 8.42
wget https://ftp.pcre.org/pub/pcre/pcre-8.42.tar.gz && tar xzvf pcre-8.42.tar.gz
@rakibulinux
rakibulinux / Cypress.sh
Last active January 15, 2022 03:22
How to install Cypress on Linux Operating System
#!/bin/sh
#Required dependencies installed on your system
sudo apt-get install libgtk2.0-0 libgtk-3-0 libgbm-dev libnotify-dev libgconf-2-4 libnss3 libxss1 libasound2 libxtst6 xauth xvfb
#Install NodeJS and Yarn
curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -
sudo apt-get install -y nodejs
sudo apt-get install gcc g++ make -y
curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
@rakibulinux
rakibulinux / Ubuntu20.04.sh
Last active September 27, 2021 12:59
Things To Do After Installing Ubuntu 20.04 LTS
#!/bin/sh
# This command will update & upgrade your system
sudo apt update && sudo apt-get upgrade --fix-missing
#Or
sudo apt -y install build-essential checkinstall && sudo apt install gdebi-core wget -y && sudo apt -y install ubuntu-restricted-extras && sudo add-apt-repository ppa:nilarimogard/webupd8 -y && sudo apt update && sudo apt -y install kazam && sudo snap install vlc && sudo add-apt-repository ppa:git-core/ppa && sudo apt update && sudo apt -y install git
# Install the package build-essential for making the package and checkinstall for putting it into your package manager
sudo apt -y install build-essential checkinstall
@rakibulinux
rakibulinux / AndroidStudio.sh
Created April 25, 2020 07:31
How to Install Android Studio on Ubuntu 20.04 LTS
#!/bin/sh
sudo apt update
sudo apt install openjdk-11-jdk
sudo snap install android-studio --classic
sudo android-studio
@rakibulinux
rakibulinux / xenioscoin.sh
Last active May 27, 2020 17:55 — forked from AnythingLinux/xenioscoin.sh
Xenioscoin Dependencies Ubuntu 18.04.4 LTS
#!/bin/bash
# List of packages to install before building xenioscoin
packagelist=(
Babel==2.6.0
chardet==3.0.4
decorator==4.3.0
docutils==0.14
ebaysdk==2.1.5
@rakibulinux
rakibulinux / OpenShift.sh
Created June 23, 2020 12:41
How to install OpenShift Origin on Ubuntu 18.04
#!/bin/bash
#install Docker CE
#Import the Docker GPG key with the command
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
sudo apt update && sudo apt -y install docker-ce
sudo usermod -aG docker $USER
@rakibulinux
rakibulinux / OpenLiteSpeed.sh
Last active March 21, 2022 16:06
How to Install OpenLiteSpeed HTTP Server with PHP on Ubuntu 20.04 LTS
#!/bin/sh
#Install OpenLiteSpeed
sudo -i
wget -O - http://rpms.litespeedtech.com/debian/enable_lst_debain_repo.sh | bash
sudo apt install openlitespeed -y
systemctl status openlitespeed
netstat -plntu