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 / Tor.sh
Created January 28, 2020 15:44
How to Install Tor Browser on Ubuntu 18.04
#!/bin/sh
sudo apt update
sudo apt install apt-transport-https
sudo add-apt-repository universe
wget -q -O - https://deb.torproject.org/torproject.org/A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89.asc | sudo apt-key add -
echo "deb https://deb.torproject.org/torproject.org $(lsb_release -cs) main" | sudo tee -a /etc/apt/sources.list
sudo apt update
sudo apt install tor deb.torproject.org-keyring torbrowser-launcher
@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 / EtherCalc.sh
Created June 25, 2020 11:26
How To Install EtherCalc on Ubuntu 18.04
#!/bin/sh
curl -sL https://deb.nodesource.com/setup_10.x -o nodesource_setup.sh
sudo apt install nodejs -y
sudo apt-get install gzip git curl python libssl-dev pkg-config build-essential
#Install EtherCalc
sudo npm install -g ethercalc
ethercalc
@rakibulinux
rakibulinux / UFW.sh
Created February 4, 2020 20:48
How to Configure a Firewall with UFW
What is UFW?
UFW, or uncomplicated firewall, is a frontend for managing firewall rules in Arch Linux, Debian or Ubuntu. UFW is used through the command line (although it has GUIs available), and aims to make firewall configuration easy (or, uncomplicated).
sudo apt-get update && sudo apt-get upgrade
#Install UFW
sudo apt-get install ufw
#Use UFW to Manage Firewall Rules. Set Default Rules
sudo ufw default allow outgoing
@rakibulinux
rakibulinux / OpenSSL.sh
Last active August 10, 2023 06:23
Installing OpenSSL on Ubuntu 18.04 LTS
#!/bin/sh
sudo apt-get update && sudo apt-get upgrade
openssl version -a
#Install the necessary packages for compiling
sudo apt install build-essential checkinstall zlib1g-dev -y
#Download OpenSSL
cd /usr/local/src/
@rakibulinux
rakibulinux / vTiger.sh
Last active January 24, 2023 14:12
How To Install vTiger CRM on Ubuntu
#!/bin/sh
sudo apt update
sudo apt install -y php php-cli php-mysql php-common php-zip php-mbstring php-xmlrpc php-curl php-soap php-gd php-xml php-intl php-ldap
sudo apt install -y apache2 libapache2-mod-php
sudo apt-get install mariadb-server
sudo systemctl start mariadb
sudo systemctl enable mariadb
@rakibulinux
rakibulinux / Golang&Beego.sh
Last active September 7, 2022 05:36
how to install golang and beego on ubuntu 18.04
#!/bin/sh
mkdir golang_source
cd golang_source
wget https://dl.google.com/go/go1.14.1.linux-amd64.tar.gz
sudo tar -zxvf go1.14.1.linux-amd64.tar.gz -C /usr/local
#Setup GOROOT and PATH environment variables:
@rakibulinux
rakibulinux / ssh.sh
Last active August 26, 2022 01:00
Generating a new SSH key and adding it to the ssh-agent
#!/bin/sh
# Install latest Git & Git Configure
sudo add-apt-repository ppa:git-core/ppa
sudo apt update
sudo apt install git
sudo -i
sudo git config --global user.name "Rakib Linux"
sudo git config --global user.email rakibulinux@gmail.com
@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 / 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 -