This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Login as root | |
sudo su | |
# update system and install mysql | |
apt update | |
apt-get install mysql-server | |
# install different repository |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
git clone https://github.com/Sakzilla/sakai-docker.git | |
cd sakai-docker/master | |
docker-compose build | |
docker-compose up | |
http://localhost:8080/portal |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
sudo apt update | |
##Install PHP, MySQL, Apache2 | |
sudo add-apt-repository ppa:ondrej/php | |
sudo apt-get update | |
sudo apt-get install mysql-server php7.2 php7.2-json php7.2-xml php7.2-imap php7.2-zip php7.2-curl php7.2-intl php7.2-mbstring php7.2-mysql php7.2-gd php7.2-mcrypt apache2 libapache2-mod-php7.2 php7.2-cli php7.2-apcu unzip git curl php7.2-ldap php-mailparse | |
sudo phpenmod imap mbstring | |
sudo service apache2 restart |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# To install OpenSSL download the file and extract it | |
cd /tmp | |
wget https://www.openssl.org/source/openssl-1.1.1.tar.gz | |
tar xvf openssl-1.1.1.tar.gz | |
# After downloading, run the commands below to install |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /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 |
NewerOlder