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 / HospitalRun.sh
Last active August 25, 2022 00:17
How to install HospitalRun On Ubuntu 20.04 LTS.
# Youtube: https://www.youtube.com/watch?v=bTJcuGcNWMA
# !/bin/sh
# To install HospitalRun on localhost run the following commands:
# Clone repository:
git clone https://github.com/HospitalRun/hospitalrun.github.io.git
# Thereafter, enter into the downloaded folder
@linuxbiekaisar
linuxbiekaisar / tastyigniter.sh
Last active November 17, 2020 11:30
how to install tastyigniter on Ubuntu 18.04 LTS
# Youtube: https://studio.youtube.com/video/ltlGdKRJSuo/edit
# !/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
@linuxbiekaisar
linuxbiekaisar / attendize.sh
Last active July 13, 2020 15:19
How to install attendize in Ubuntu 18.04 LTS
# Youtube: https://www.youtube.com/watch?v=ltlGdKRJSuo&t=66s
# !/bin/sh
sudo apt-get update
sudo apt-get install apache2 mariadb-server php7.2 php7.2-cli php7.2-fpm php7.2-common php7.2-mysql php7.2-curl php7.2-json php7.2-zip php7.2-gd php7.2-xml php7.2-mbstring php7.2-opcache php7.2-pgsql curl git unzip -y
sudo apt install php-pear php7.3-curl php7.3-dev php7.3-gd php7.3-mbstring php7.3-zip php7.3-mysql php7.3-xml php7.3-fpm libapache2-mod-php7.3 php7.3-imagick php7.3-recode php7.3-tidy php7.3-xmlrpc php7.3-intl
@linuxbiekaisar
linuxbiekaisar / Jitsi.sh
Created April 16, 2020 14:36
How install Jitsi in Ubuntu 18.04 LTS
# !/bin/sh
# Jitsi Installation:
# ===================
# To install jitsi on ubuntu run the following commands.
# TO configure a the hostname of the server corresponding to your domain / subdomain name:
hostnamectl set-hostname jitsi
sed -i 's/^127.0.1.1.*$/127.0.1.1 jitsi.mydomain.tld jitsi/g' /etc/hosts
@linuxbiekaisar
linuxbiekaisar / tomcat.sh
Last active September 12, 2021 12:23
How to install tomcat on ubnuntu 18.04 LTS
# Youtube: https://www.youtube.com/watch?v=4AVIAz0vbaA&t=4s
#!/bin/sh
# Tomcat installation on Ubuntu:
# ==============================
# Install OpenJDK
sudo apt install default-jdk
@linuxbiekaisar
linuxbiekaisar / Asterisk.sh
Created April 12, 2020 22:55
How to install and configure Asterisk on Ubuntu 18.04 LTS
# Youtube:
# !/bin/sh
# Step-1: Download and Install Asterisk
# =====================================
# To install Asterrsk run run the commands below:
sudo apt update
sudo apt install wget build-essential subversion
@linuxbiekaisar
linuxbiekaisar / Beego.sh
Last active April 12, 2020 21:58
How to install Beego on Ubuntu 18.04 LTS
# Youtube: https://www.youtube.com/watch?v=w_a1ujFw1us
# !/bin/sh
# For installing Beego on Ubuntu run the following commands.
# Make a directory a home folder and enter in the folder.
mkdir golang_source
cd golang_source
@linuxbiekaisar
linuxbiekaisar / Golang.sh
Last active April 12, 2020 21:44
How to install Golang or Go on Ubuntu 18.04 LTS
# Youtube: https://www.youtube.com/watch?v=mL3iQx12Vuw
# !/bin/sh
# Golang Installation:
# Go to home directoy:
cd ~
# Download latest version from the this page: https://golang.org/dl/
@linuxbiekaisar
linuxbiekaisar / Swift&Vapor.sh
Last active April 10, 2020 17:03
How to install swift and create vapor app after install vapor
# Youtube:
# !/bin/sh
# Installation of Swift and Vapor on Ubuntu 18.04 :
# Swift Installation
# ==================
# Update System repository
@linuxbiekaisar
linuxbiekaisar / mean.sh
Created April 9, 2020 12:13
How to install mean on Ubuntu 18.04 LTS
# Youtube:
# !/bin/sh
# MEAN Setup
# ==========
# Install Git:::
sudo apt-get install git