Skip to content

Instantly share code, notes, and snippets.

View afahitech's full-sized avatar

Ataur Rahman afahitech

View GitHub Profile
@afahitech
afahitech / things.sh
Last active October 20, 2020 02:37
Things to to Do after install Ubuntu 20.04 LTS
If you need any help, contact with me:
Skype: aataur1
Telegram: @AutoDevOps
WhatsApp: +8801751643484
Email: [email protected]
-------------------------------------------------------------
@afahitech
afahitech / Python-3.8.3.sh
Last active January 25, 2021 15:39
Python-3.8.3 Install Linux
#!/bin/bash
If you need installation help, contact with me:
Skype: aataur1
Telegram: @AutoDevOps
WhatsApp: +8801751643484
Email: [email protected]
@afahitech
afahitech / Jitsi.sh
Last active October 24, 2020 05:45
How to install Jitsi into Ubuntu 20.04 LTS
If you need Jitsi installation, contact with me:
Skype: aataur1
Telegram: @AutoDevOps
WhatsApp: +8801751643484
Email: [email protected]
-----------------------------------------------------------------------------------------
@afahitech
afahitech / Cypress.sh
Last active October 2, 2020 13:56
How to install Cypress on Ubuntu 18.04 LTS
If you need Cypress installation contact with me:
Skype: aataur1
Telegram: @AutoDevOps
WhatsApp: +8801751643484
Email: [email protected]
--------------------------------------------------------------
# !/bin/sh
@afahitech
afahitech / scrapy.sh
Last active October 2, 2020 13:55
How to install Scrapy on Ubuntu 18.04 LTS
If you need Scrapy installation contact with me:
Skype: aataur1
Telegram: @AutoDevOps
WhatsApp: +8801751643484
Email: [email protected]
---------------------------------------------------------------
# !/bin/sh
@afahitech
afahitech / jaeles.sh
Last active August 23, 2020 17:19
How to install Jaeles on Ubuntu 18.04 LTS
# !/bin/sh
mkdir golang_source
cd golang_source
#Now download and extract the latest version
wget https://dl.google.com/go/go1.14.6.linux-amd64.tar.gz
sudo tar -zxvf go1.14.6.linux-amd64.tar.gz -C /usr/local
@afahitech
afahitech / osmedeus.sh
Created August 19, 2020 18:04
How to install Osmedeus on Ubuntu 18.04 LTS
#!/bin/sh
#Installation
git clone https://github.com/j3ssie/Osmedeus
cd Osmedeus
sudo apt install python3-pip
./install.sh
@afahitech
afahitech / Trape.sh
Created August 17, 2020 17:43
How to install Trape on Ubuntu 18.04 LTS
#!/bin/sh
git clone https://github.com/jofpin/trape.git
cd trape
sudo apt install python-minimal
sudo apt install python-pip
python2 trape.py -h
#If it does not work, try to install all the libraries that are located in the file requirements.txt
@afahitech
afahitech / HospitalRun.sh
Last active August 12, 2020 16:20
How to install HospitalRun in Ubuntu 18.04 LTS
# !/bin/sh
# To install HospitalRun on localhost run the following commands:
# Clone repository:
git clone https://github.com/HospitalRun/hospitalrun.github.io.git
# Thereafter, enter into the downloaded folder
cd hospitalrun.github.io
@afahitech
afahitech / ApacheTomcat.sh
Created June 19, 2020 17:47
How to install Apache Tomcat on Ubuntu 18.04 LTS
#!/bin/sh
# Tomcat installation on Ubuntu:
# ==============================
# Install OpenJDK
sudo apt install default-jdk
# Create Tomcat User and Group (Do run as root). Create a new group and system user to run the Apache Tomcat service from the /opt/tomcat directory.
sudo groupadd tomcat