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 / ssh.sh
Created February 22, 2020 13:28
How To Create SSH Key
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_rsa
# Your identification has been saved in /home/arif/.ssh/id_rsa.
# Your public key has been saved in /home/arif/.ssh/id_rsa.pub.

Keybase proof

I hereby claim:

  • I am cloudservicebd2020 on github.
  • I am mdarifulcse (https://keybase.io/mdarifulcse) on keybase.
  • I have a public key whose fingerprint is A1A5 D6E4 7A57 249E B7F1 2438 2A09 86DA 2FDE FB9F

To claim this, I am signing this object:

@CloudLinuxDeveloper
CloudLinuxDeveloper / things.sh
Created March 5, 2020 17:59
Things To Do After Installing Ubuntu 18.04 LTS Desktop
#!/bin/sh
# This command will update & upgrade your system
sudo apt update && sudo apt-get upgrade --fix-missing
# Install the package build-essential for making the package and checkinstall for putting it into your package manager
sudo apt install build-essential checkinstall
# Install Ubuntu Restricted Extras
sudo apt install ubuntu-restricted-extras
@CloudLinuxDeveloper
CloudLinuxDeveloper / lamp.sh
Last active April 27, 2020 09:37
How to Install Ubuntu LAMP Stack SETUP 18.04 LTS.
# YoutTube:
# Install Apache to check from web browser using 0.0.0.0 or localhost, check version, start,stop & restart Apache into Ubuntu
sudo apt update
sudo apt upgrade
sudo apt install apache2
apache2 -v
sudo service apache2 start
sudo systemctl enable apache2
sudo service apache2 stop
@CloudLinuxDeveloper
CloudLinuxDeveloper / git.sh
Last active March 12, 2020 16:13
Git Install Ubuntu 18.04 LTS
#!/bin/sh
sudo add-apt-repository ppa:git-core/ppa
sudo apt update
sudo apt install git
sudo git config --global user.name "YourName"
sudo git config --global user.email youremail@gmail.com
git --version
git config --list
@CloudLinuxDeveloper
CloudLinuxDeveloper / ssh.sh
Last active August 12, 2021 23:05
Generating SSH Key Ubuntu
#!/bin/sh
sudo -i
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_rsa
cat /root/.ssh/id_rsa.pub
# Copy key and add https://github.com/settings/keys
# for test
ssh -T git@github.com
@CloudLinuxDeveloper
CloudLinuxDeveloper / obs.ss
Last active March 25, 2020 12:25
How to Install OBS Studio 21.1 in Ubuntu
## https://www.youtube.com/watch?v=upWhjDYxq5A
1. Open terminal either via Ctrl+Alt+T or by searching for “terminal” from app launcher.
sudo add-apt-repository ppa:obsproject/obs-studio
sudo apt-get update
sudo apt-get install obs-studio
Uninstall:
To remove the software, run command in terminal:
sudo apt-get remove --autoremove obs-studio
@CloudLinuxDeveloper
CloudLinuxDeveloper / vTiger.sh
Last active May 1, 2020 10:26
How to install vTiger CRM in Ubuntu 18.04
#!/bin/sh
https://youtu.be/cD_reYDTruw
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
@CloudLinuxDeveloper
CloudLinuxDeveloper / rocket.chat
Last active March 25, 2020 15:08
How to install configure and deploy rocket.chat Ubuntu 18.04 LTS and Ubuntu 19.04.
#https://youtu.be/7IzOFsYAEis
#rocket.chat
Rocket.Chat in Ubuntu
This installation guide was tested in the following environment:
Rocket.Chat 3.0.0
Ubuntu 18.04 LTS and Ubuntu 19.04
Mongodb 4.0.9
@CloudLinuxDeveloper
CloudLinuxDeveloper / node.js
Created March 25, 2020 17:28
How to install Node.js 10 on Ubuntu 18.04 LTS
#node.js
# Node.js is an open-source, cross-platform, JavaScript runtime environment that executes
JavaScript code outside of a web browser.
This installation guide was tested in the following environment:
sudo apt install curl
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -