Skip to content

Instantly share code, notes, and snippets.

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

Mohammad Kaisar Hamid linuxbiekaisar

🏠
Working from home
View GitHub Profile
@linuxbiekaisar
linuxbiekaisar / SchoolTool.sh
Last active July 2, 2020 16:45
SchoolTool Setup in Ubuntu
#!/bin/sh
#Docker Installation
Install Docker on your host: https://docs.docker.com/install/
#Install Docker Compose
Install docker-compose by using this guide: https://docs.docker.com/compose/install/
#Now pull SchoolTool from Docker
docker pull gscacco/schooltool
@linuxbiekaisar
linuxbiekaisar / EtherCalc.sh
Created July 2, 2020 13:32
EtherCalc Install In Ubuntu
#!/bin/sh
curl -sL https://deb.nodesource.com/setup_10.x -o nodesource_setup.sh
sudo apt install nodejs -y
sudo apt-get install gzip git curl python libssl-dev pkg-config build-essential
#Install EtherCalc
sudo npm install -g ethercalc
ethercalc
@linuxbiekaisar
linuxbiekaisar / GroceryDeliveryAppFrontent.sh
Created July 2, 2020 12:51
Grocery Delivery App install in Ubuntu
#!/bin/sh
curl -sL https://deb.nodesource.com/setup_10.x -o nodesource_setup.sh
sudo apt install nodejs -y
git clone https://github.com/SchoolOfFreelancing/Grocery-Delivery-App-Frontend.git
cd Grocery-Delivery-App-Frontend
npm install
npm start
http://localhost:3000/
@linuxbiekaisar
linuxbiekaisar / Alfresco.sh
Last active July 1, 2020 17:09
Alfreco setup in Ubuntu
#!/bin/sh
# Add the third party PPA to your system
sudo add-apt-repository ppa:opencpn/opencpn -y
# Update the repository and install all the required packages
sudo apt-get update -y
sudo apt-get install libfontconfig1 libsm6 libice6 libxrender1 libxt6 libcups2 opencpn libcairo2 ttf-mscorefonts-installer -y
# Download the latest version of Alfresco from their official website
@linuxbiekaisar
linuxbiekaisar / cocorico.sh
Created June 14, 2020 09:18
How to install Cocorico in Ubuntu 20.04 LTS
# For installing cocorico, follow the under mentioned steps
# Update and Install curl
sudo apt-get update
sudo apt-get upgrade
sudo apt install curl
# Install Docker-compose
sudo curl -L https://github.com/docker/compose/releases/download/1.21.2/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose
@linuxbiekaisar
linuxbiekaisar / thingstodo.sh
Last active May 23, 2020 17:01
Things to do after installing Ubuntu 18.04 LTS
# Youtube: https://www.youtube.com/watch?v=-3Yknz-uM4g
#!/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
@linuxbiekaisar
linuxbiekaisar / Rasa.sh
Created May 19, 2020 17:49
How to install rasa in ubuntu 18.04 LTS
#! /bin/sh
# Check if your Python environment is already configured:
$ python3 --version
$ pip3 --version
# If not installed then run the command for installing them
$ sudo apt update
$ sudo apt install python3-dev python3-pip
@linuxbiekaisar
linuxbiekaisar / cypress.sh
Created May 17, 2020 11:43
How to install cypress in ubuntu
#! /bin/sh
# To install cypress in ubuntu run the following commands:
mkdir myproect
cd myproject
npm install cypress --save-dev
node_modules/.bin/cypress open
# then a dialog box appeared and click ok
# Then click run all specifications
@linuxbiekaisar
linuxbiekaisar / OVPN.sh
Created May 17, 2020 10:03
How to install OpenVPN in ubuntu 20.04 LTS
# !/bin/sh
curl -O https://raw.githubusercontent.com/angristan/openvpn-install/master/openvpn-install.sh
chmod +x openvpn-install.sh
./openvpn-install.sh
openvpn --verison
@linuxbiekaisar
linuxbiekaisar / Scrapy.sh
Created May 13, 2020 21:50
How to install scrapy in linux
# youtube: https://www.youtube.com/watch?v=l7YOzZAnLlo
# !/bin/sh
# For installing scrapy in linux run the following commands:
# Install python dependency
# For apt (ubuntu, debian...):
sudo apt-get install python3-dev