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 / docker.ssh
Last active August 12, 2021 23:04
How to Install and Use Docker on Ubuntu
#!/bin/sh
# Install Prerequisite Packages
sudo apt update && sudo apt upgrade
sudo apt-get install curl apt-transport-https ca-certificates software-properties-common
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
# Installing Docker
@CloudLinuxDeveloper
CloudLinuxDeveloper / mongodb.ssh
Last active May 17, 2020 11:40
How to install mongodb on Ubuntu 20.04/18.04 Ltd.
#mongodb
sudo apt update
# Install mongoDB
sudo apt install mongodb
sudo systemctl status mongodb
sudo systemctl stop mongodb
sudo systemctl start mongodb
sudo systemctl restart mongodb
@CloudLinuxDeveloper
CloudLinuxDeveloper / webmin.ssh
Created May 16, 2020 09:48
How to setup webmin on Ubuntu
#webmin
sudo apt update && sudo apt upgrade
sudo apt install software-properties-common apt-transport-https wget
wget -q http://www.webmin.com/jcameron-key.asc -O- | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] http://download.webmin.com/download/repository sarge contrib"
# Install webmin
sudo apt install webmin
@CloudLinuxDeveloper
CloudLinuxDeveloper / metasploit.ssh
Created May 14, 2020 08:40
How to install Metasploit Framework on Ubuntu
# Install metasploit
curl https://raw.githubusercontent.com/rapid7/metasploit-omnibus/master/config/templates/metasploit-framework-wrappers/msfupdate.erb > msfinstall
chmod 755 msfinstall
./msfinstall
# Create msf database.
msfdb init
# Launch msfconsole
@CloudLinuxDeveloper
CloudLinuxDeveloper / LMS.ssh
Created May 12, 2020 09:21
Install Forma Learning Management System (LMS) On Ubuntu With Apache2, MariaDB And PHP
#!/bin/bash
#Install Apache2
sudo apt update
sudo apt install apache2
sudo systemctl start apache2.service
sudo systemctl enable apache2.service
sudo systemctl restart apache2.service
@CloudLinuxDeveloper
CloudLinuxDeveloper / lampWithNginx.ssh
Created May 7, 2020 06:44
How to Install Nginx with PHP and MySQL (LEMP Stack) on Ubuntu
#!/bin/sh
sudo apt install nginx -y
sudo systemctl start nginx
sudo systemctl enable nginx
sudo ufw allow ssh
sudo ufw allow http
sudo ufw enable
@CloudLinuxDeveloper
CloudLinuxDeveloper / cpu.sh
Last active May 4, 2020 06:43
How to Check cpu usage & available Memory in Ubuntu.
Open the terminal Ctrl+Alt+T ::
Command is used to check information about the RAM usage by your system
1. free -m
***The vmstat command
View memory statistics through the vmstat command.
@CloudLinuxDeveloper
CloudLinuxDeveloper / ScreenRecorder.sh
Last active May 3, 2020 08:10
How to Install Ubuntu or Linux Screen Recorder Free Software..
# My Youtub :: https://youtu.be/Gmq4gZSPexA
#linux Screen Recorder
*** Screen Recorder Install on Ubuntu
***Kazam. Kazam is one of the best lightweight screen recorder available for Linux desktop.
***Open Broadcaster Software (OBS)
***SimpleScreenRecorder.SimpleScreenRecorder is a simple and easy to go Linux screen recorder software.
***RecordMyDesktop.
***Vokoscreen.
***Peek.
@CloudLinuxDeveloper
CloudLinuxDeveloper / gimp.sh
Last active May 1, 2020 11:22
How to Install Image Editors on Ubuntu .
Image Editors You Can Install and Use On Ubuntu
1.GIMP Image Editor. ...
GIMP is a free and open-source raster graphics editor used for image retouching and editing,
free-form drawing, converting between different image formats, and more specialized tasks.
2.MyPaint. MyPaint is an open source graphics program designed mainly for painters who want to create artful projects. ...
3.Pinta Image Editor. ...
@CloudLinuxDeveloper
CloudLinuxDeveloper / github.ssh
Last active August 12, 2021 23:05
How to clone & download GitHub repository Ubuntu 18.04 LTD.
#!/bin/sh
# Youtube:::https://youtu.be/zdffYSv5x30
First got to your browser and then find : https://github.com/git/git
copy Link : https://github.com/git/git.gi
Open your Terminal : Ctrl+Alt+T
Put this command your Terminal : git clone https://github.com/git/git.git pressd this commad