Skip to content

Instantly share code, notes, and snippets.

View rakibulinux's full-sized avatar
🥰
Work Lover

MD RAKIBUL ISLAM RAKIB rakibulinux

🥰
Work Lover
View GitHub Profile
@rakibulinux
rakibulinux / FreeRADIUS-daloRADIUS.sh
Last active February 28, 2024 08:11
How to Install FreeRADIUS and daloRADIUS on Ubuntu 20.04 LTS
#!/bin/sh
sudo apt-get update -y
sudo apt-get upgrade -y
#Install Apache
sudo apt-get install apache2
#Install PHP
sudo apt-get install php libapache2-mod-php php-gd php-common php-mail php-mail-mime php-mysql php-pear php-db php-mbstring php-xml php-curl
@rakibulinux
rakibulinux / pgAdmin4.sh
Created June 24, 2020 09:31
How to Install PostgreSQL and pgAdmin4 on Ubuntu 18.04 LTS
#!/bin/sh
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt/ `lsb_release -cs`-pgdg main" >> /etc/apt/sources.list.d/pgdg.list'
sudo apt update
sudo apt -y install postgresql postgresql-contrib
su - postgres
psql
@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
@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 / xenioscoin.sh
Last active May 27, 2020 17:55 — forked from UbuntuEvangelist/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 / 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 / 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 / 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 / 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 / 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