Skip to content

Instantly share code, notes, and snippets.

View LinuxIntellect's full-sized avatar
🎯
Focusing

Zobaer Ahmed LinuxIntellect

🎯
Focusing
View GitHub Profile
@LinuxIntellect
LinuxIntellect / keybase.md
Created March 22, 2020 16:02
my keybase do not remove

Keybase proof

I hereby claim:

  • I am Zobaer-Ahmed on github.
  • I am mystudymytech (https://keybase.io/mystudymytech) on keybase.
  • I have a public key whose fingerprint is 1F0A 8514 6F3A 8019 C4CE B21A 30A8 3604 46AF D76B

To claim this, I am signing this object:

@LinuxIntellect
LinuxIntellect / LAMP.sh
Created April 1, 2020 19:06
LAMP Install
# YouTube:https://youtu.be/FC4-fl3KG4U
# 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
sudo service apache2 start
@LinuxIntellect
LinuxIntellect / git.sh
Last active April 6, 2020 11:41
Git Install Ubuntu 18.04
Youtube: https://www.youtube.com/watch?v=5o3gbRComOk&t=8s
sudo add-apt-repository ppa:git-core/ppa
sudo apt update
sudo apt install git
git --version
sudo git config --global user.name "Your Name"
sudo git config --global user.email youremail@yahoo.com
git --version
git config --list
Youtube: https://www.youtube.com/watch?v=dRdm6idiX5E&t=74s
sudo apt update && sudo apt-get upgrade --fix-missing
sudo apt install build-essential checkinstall
sudo apt install ubuntu-restricted-extras
sudo add-apt-repository ppa:nilarimogard/webupd8
sudo apt update
sudo apt install launchpad-getkeys
sudo launchpad-getkeys
sudo add-apt-repository ppa:git-core/ppa
Youtube: https://www.youtube.com/watch?v=Q3PY7OSIYvI&t=7s
sudo apt-get -y update && upgrade
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 9DA31620334BD75D9DCB49F368818C72E52529D4
echo "deb [ arch=amd64 ] https://repo.mongodb.org/apt/ubuntu bionic/mongodb-org/4.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.0.list
sudo apt-get -y update && sudo apt-get install -y curl && curl -sL https://deb.nodesource.com/setup_12.x | sudo bash -
Serial Keys:
FU512-2DG1H-M85QZ-U7Z5T-PY8ZD
CU3MA-2LG1N-48EGQ-9GNGZ-QG0UD
GV7N2-DQZ00-4897Y-27ZNX-NV0TD
YZ718-4REEQ-08DHQ-JNYQC-ZQRD0
GZ3N0-6CX0L-H80UP-FPM59-NKAD4
YY31H-6EYEJ-480VZ-VXXZC-QF2E0
ZG51K-25FE1-H81ZP-95XGT-WV2C0
VG30H-2AX11-H88FQ-CQXGZ-M6AY4
@LinuxIntellect
LinuxIntellect / ntopng.sh
Created April 30, 2020 17:47
Install ntopng service on Ubuntu 18.04 LTS
Youtube: https://www.youtube.com/watch?v=ebsxgJje-jI
# To install the programs in Ubuntu 18.04 open your shell and type:
apt-get install software-properties-common wget
add-apt-repository universe
wget http://apt.ntop.org/18.04/all/apt-ntop.deb
# In order to use this repository, do (as root) the commands below this section, which depend on your Linux distro, then run:
@LinuxIntellect
LinuxIntellect / netdata.sh
Created May 3, 2020 10:36
Installing netdata on Ubuntu Box
Youtube: https://www.youtube.com/watch?v=sDMMfQnc1A0&t=7s
sudo apt update
sudo apt-get install netdata -y
sudo nano /etc/netdata/netdata.conf
sudo systemctl restart netdata
sudo systemctl status netdata
@LinuxIntellect
LinuxIntellect / tor.sh
Created May 3, 2020 11:35
Installing tor Web Browser
Youtube: https://www.youtube.com/watch?v=0erHc7bZ1BM&t=4s
sudo add-apt-repository ppa:micahflee/ppa
sudo apt update
sudo apt install torbrowser-launcher
@LinuxIntellect
LinuxIntellect / ruby.sh
Created May 10, 2020 10:41
Ruby Compiler Unstallation
sudo apt update
sudo apt install nodejs
sudo apt install npm
nodejs -v
sudo apt update
sudo apt install autoconf bison build-essential libssl-dev libyaml-dev libreadline6-dev zlib1g-dev
git clone https://github.com/rbenv/rbenv.git ~/.rbenv
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc