Skip to content

Instantly share code, notes, and snippets.

View CloudLinuxDeveloper's full-sized avatar
🏠
Working from home

ARIFUL ISLAM CloudLinuxDeveloper

🏠
Working from home
View GitHub Profile
@CloudLinuxDeveloper
CloudLinuxDeveloper / siberian.ssh
Last active June 19, 2020 03:51
Install Siberian CMS on Ubuntu with Apache2, MariaDB and PHP 7.2
https://www.youtube.com/watch?v=oAmfypawmdY
#!/bin/sh
#Install Apache
sudo apt update
sudo apt install apache2
sudo systemctl stop apache2.service
sudo systemctl start apache2.service
sudo systemctl enable apache2.service
@CloudLinuxDeveloper
CloudLinuxDeveloper / meanstack.ssh
Created June 14, 2020 06:29
How to install MEANStack on Ubuntu
#!/bin/sh
#Install Git
sudo apt-get update
sudo apt-get dist-upgrade
sudo apt-get install git
# Install Nodejs
sudo apt install curl
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
@CloudLinuxDeveloper
CloudLinuxDeveloper / rubyonrails.ssh
Created June 10, 2020 10:36
How to install Ruby on Rails on Ubuntu
#!/bin/sh
# Install Rails & Ruby
gem install rails
gem update --system
sudo apt-get install ruby-dev zlib1g-dev liblzma-dev
gem install rails
apt install ruby
rails new myapp
@CloudLinuxDeveloper
CloudLinuxDeveloper / wascan.ssh
Last active June 10, 2020 08:59
How to install WAScan on Ubuntu
#!/bin/sh
# Systme update
sudo apt update && sudo apt upgrade
# Install wascan- use following commands:
git clone https://github.com/m4ll0k/WAScan.git wascan
cd wascan
sudo apt install python3-pip
sudo apt install python-pip
@CloudLinuxDeveloper
CloudLinuxDeveloper / harvester.ssh
Last active May 29, 2025 11:16
How to install theHarvester on Ubuntu
# !/bin/sh
# Download and clone the theHarvester from Github
git clone https://github.com/laramies/theHarvester
# Now enter into the theHarvester Folder
cd theHarvester
# Install pip
sudo apt install python3-pip
@CloudLinuxDeveloper
CloudLinuxDeveloper / OpenEDX docker .ssh
Last active March 20, 2023 09:39
How to Install OpenEDX with Docker on Ubuntu Linux
#!/bin/sh
EDXAPP_PREVIEW_LMS_BASE: preview-${deploy_host}
EDXAPP_LMS_BASE: ${deploy_host}
EDXAPP_CMS_BASE: studio-${deploy_host}
EDXAPP_SITE_NAME: ${deploy_host}
CERTS_DOWNLOAD_URL: "http://certs-${deploy_host}"
CERTS_VERIFY_URL: "http://certs-${deploy_host}"
EDXAPP_ECOMMERCE_PUBLIC_URL_ROOT: "https://payments-${deploy_host}"
@CloudLinuxDeveloper
CloudLinuxDeveloper / vagrant.ssh
Last active August 12, 2021 23:04
How to install Vagrant on Linux
# !/bin/sh
# Setup Vagrant
sudo apt update && sudo apt upgrade
sudo apt install virtualbox
sudo apt update
curl -O https://releases.hashicorp.com/vagrant/2.2.6/vagrant_2.2.6_x86_64.deb
sudo apt install ./vagrant_2.2.6_x86_64.deb
@CloudLinuxDeveloper
CloudLinuxDeveloper / puppet.ssh
Last active June 3, 2020 02:17
How to install Puppet on Ubuntu
**https://youtu.be/YQ6QwmoW5PA
#!/bin/sh
#Per Requirement
Install NTP
The Network Time Protocol (NTP) is a networking protocol for clock synchronization between computer systems over packet-switched, variable-latency data networks
sudo apt update && sudo apt upgrade
sudo apt install -y ntp ntpdate
sudo ntpdate -u 0.ubuntu.pool.ntp.org
@CloudLinuxDeveloper
CloudLinuxDeveloper / ansible.ssh
Last active August 12, 2021 23:04
Install Ansible on Ubuntu
# !/bin/sh
https://www.youtube.com/watch?v=jp9Z0WlGt3s
# Installing Ansible
sudo apt update && sudo apt upgrade
sudo apt-add-repository ppa:ansible/ansible
sudo apt update
sudo apt install ansible
# Setting Inventory File
@CloudLinuxDeveloper
CloudLinuxDeveloper / packer tracer.ssh
Created May 21, 2020 12:30
How to Installation Packer Tracer on Ubuntu
$ cd ~/Downloads
$ cd ~/Downloads$ ls
Make a new directory [Call it SilentInstaller] to extract the installer from the Packer Tracer.
mkdir silentInstaller
$ sudo tar xvzf ' ' -C SilentInstaller