Skip to content

Instantly share code, notes, and snippets.

View thinktanklinux's full-sized avatar

Shakil Shahjalal thinktanklinux

  • thinktanklinux
  • Dhaka
View GitHub Profile
@thinktanklinux
thinktanklinux / keybase
Created April 8, 2020 12:13
connect github with keybase
### Keybase proof
I hereby claim:
* I am thinktanklinux on github.
* I am thinktanklinux (https://keybase.io/thinktanklinux) on keybase.
* I have a public key whose fingerprint is 9D14 2E6E 05D5 EA77 A056 B192 CA00 E3AB 401B CCA6
To claim this, I am signing this object:
@thinktanklinux
thinktanklinux / LAMP.sh
Last active April 20, 2020 05:35
LAMP Stack Setup Linux
# https://www.youtube.com/watch?v=5RJa7L7yfxo
# 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
apache2 -v2
sudo apache2 start
sudo system enable apache2
sudo service apache2 stop
sudo service apache2 start
sudo service apache2 restart
#https://www.howtoforge.com/how-to-install-vtiger-crm-on-ubuntu-1804/#install-vtiger-crm
#https://www.youtube.com/watch?v=5J5-WkqAo9g
#Features
#Supports role-based access control.
#Provides Outlook, Thunderbird, Firefox, and Gmail plugins.
#Automated support using a customer portal and support tickets.
#Workflows, tasks, and project management.
#Allow us to import and export data via CSV files.
#provides customizable user dashboards.
#In this tutorial, we will learn how to install vTiger CRM on Ubuntu 18.04 server.
#http://youtu.be/l9IXSy1H_4M
sudo apt upgrade && 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
sudo apt update
@thinktanklinux
thinktanklinux / Rocket.Chat
Last active April 19, 2020 19:11
Rocket.Chat
# Do install these two from the Link below
1.Mongodb 4.0.9
2.NodeJS 12.14.0
http;//rocket.chat/docs/installation/manual-installation/ubuntu/
#For Mongodb 4.0.9
sudo apt-get -y update
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 9DA31620334BD75D9DCB49F368818C72E52529D
echo "deb [ arch=amd64 ] http://repo.mongodb.org/apt/ubuntu bionic/mongodb-org/4.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.0.list
#NodeJS 12.14.0
sudo apt-get -y update && sudo apt-get install -y curl && curl -sL https://deb.nodesource.com/setup_12.x | sudo bash -
@thinktanklinux
thinktanklinux / ntopng installation
Created April 23, 2020 14:42
ntopng installation
In order to use this repository, do (as root) the commands below this section, which depend on your Linux distro, then run:
apt-get clean all
apt-get update
apt-get install pfring-dkms nprobe ntopng disk cento
You can (optionally) install the ZC drivers as follows:
apt-get install pfring-drivers-zc-dkms
You can optionally install the nBox GUI (if avilable for your distro) as follows:
apt-get install nbox
@thinktanklinux
thinktanklinux / Installing Microsoft Powershell
Created April 23, 2020 16:45
Installing Microsoft Powershell
root@host [~]# cd /usr/src/
root@host:/usr/src# wget -q https://packages.com/config/ubuntu/18.04/packages-microsoft-prod.deb
root@host:/usr/src# sudo dpkg -i packages-prod.deb
root@host:/usr/src# apt-get update
add-apt-repository universe
root@host:/usr/src# apt-get install -y powershell
Requirements
A server running Ubuntu 18.04 LTS.
A non-root user with sudo privileges.
sudo apt-get install netdeta -y
sudo nano /etc/netda/netdata.conf
Make the following changes:
# Youtube: https://www.youtube.com/watch?v=CdK8Nb-ED9M
#Install NGINX
sudo apt-get update
sudo apt-get install nginx
sudo systemctl start nginx
sudo systemctl enable nginx
sudo systemctl restart nginx
sudo systemctl stop nginx
sudo systemctl start nginx
sudo systemctl status nginx
#save & Exit
# cd /etc/nginx/sites-available
# cat rakibulinux.conf
cd /etc/nginx/sites-enabled
ln -s ../sites-available/default .
sudo systemctl reload nginx