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 / trap.ssh
Created August 19, 2020 13:33
How to install Trape on Ubuntu
!/bin/sh
git clone https://github.com/jofpin/trape.git
cd trape
sudo apt install python-minimal
sudo apt install python-pip
python2 trape.py -h
#If it does not work, try to install all the libraries that are located in the file requirements.txt
@CloudLinuxDeveloper
CloudLinuxDeveloper / flutter.ssh
Created August 18, 2020 14:32
How to install flutter on Ubuntu
# Install flutter
wget https://storage.googleapis.com/flutter_infra/releases/stable/linux/flutter_linux_1.20.2-stable.tar.xz
sudo mkdir porject
cd project
tar xf ~/Downloads/flutter_linux_1.20.2-stable.tar.xz
sudo nano $HOME/.bashrc
Add the line
export PATH="$PATH:home/ataur/project/flutter/bin"
export ANDROID_HOME=/home/varun/Android/Sdk
@CloudLinuxDeveloper
CloudLinuxDeveloper / jdk.ssh
Created August 16, 2020 16:09
Install Oracle Java 13 (JDK 13) on Debian, Ubuntu, Linux Mint, Pop!_OS
Downloading and setting the path of JAVA.
sudo apt install default-jre
sudo apt install default-jdk
java -version
javac -version
sudo nano /etc/profile
sudo nano ~/.bashrc
JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64
PATH=$PATH:$HOME/bin:$JAVA_HOME/bin
@CloudLinuxDeveloper
CloudLinuxDeveloper / tastyigniter.ssh
Last active March 17, 2024 18:49
how to install tastyigniter on Ubuntu
# !/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
#Install MariaDB
@CloudLinuxDeveloper
CloudLinuxDeveloper / attendiz.ssh
Last active June 28, 2020 17:02
How to install attendize on ubuntu
# !/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
sudo systemctl start nginx
sudo systemctl enable nginx
@CloudLinuxDeveloper
CloudLinuxDeveloper / maildev.ssh
Last active July 5, 2020 10:51
How to install MailDev on ubuntu
#!/bin/sh
sudo git clone https://github.com/maildev/maildev.git
sudo apt-get install nodejs-dev node-gyp libssl1.0-dev
sudo apt-get install npm
sudo npm install -g maildev
sudo npm install -g ./MailDev
maildev
@CloudLinuxDeveloper
CloudLinuxDeveloper / tomcat.ssh
Created June 24, 2020 09:06
How to install Apache Tomcat on Ubuntu
#!/bin/sh
# Tomcat installation on Ubuntu:
# ==============================
# Install OpenJDK
sudo apt install default-jdk
# Create Tomcat User and Group (Do run as root). Create a new group and system user to run the Apache Tomcat service from the /opt/tomcat directory.
sudo groupadd tomcat
@CloudLinuxDeveloper
CloudLinuxDeveloper / asterisk.ssh
Created June 23, 2020 05:37
How to setup Asterisk on Ubuntu
#!/bin/sh
# Update system
sudo apt update && sudo apt upgrade
sudo apt install wget build-essential subversion
# Download Asterisk
cd /usr/src/
sudo wget http://downloads.asterisk.org/pub/telephony/asterisk/asterisk-16-current.tar.gz
@CloudLinuxDeveloper
CloudLinuxDeveloper / odoo.ssh
Created June 22, 2020 17:29
How To Install Odoo 13 on Ubuntu
Step by step guide to install guide. Execute each step as “root” user.
#One Click Install Odoo
wget https://raw.githubusercontent.com/Yenthe666/InstallScript/13.0/odoo_install.sh
chmod +x odoo_install.sh
bash odoo_install.sh
#Add Odoo user to the system
sudo adduser --system --quiet --shell=/bin/bash --home=/opt/odoo --gecos 'odoo' --group odoo
@CloudLinuxDeveloper
CloudLinuxDeveloper / golang.ssh
Created June 21, 2020 05:11
How to install Golang on Ubuntu
#!/bin/sh
# Download
sudo apt update
mkdir golang_source
cd golang_source
wget https://dl.google.com/go/go1.14.1.linux-amd64.tar.gz
sudo tar -zxvf go1.14.1.linux-amd64.tar.gz -C /usr/local