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 git clone git@github.com:djfarrelly/MailDev.git | |
| sudo apt-get install nodejs-dev node-gyp libssl1.0-dev | |
| sudo apt-get install npm | |
| sudo npm install -g ./MailDev | |
| maildev |
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 | |
| https://github.com/HospitalRun/hospitalrun-server/fork | |
| #Clone it to your local machine | |
| git clone https://github.com/rakibulinux/hospitalrun-server.git | |
| #Avigate to the cloned folder: | |
| cd hospitalrun-server |
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 add-apt-repository ppa:oguzhaninan/stacer | |
| sudo apt update | |
| sudo apt -y install stacer | |
| stacer |
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 && sudo apt upgrade -y | |
| sudo apt install -y build-essential git tree | |
| wget http://nginx.org/download/nginx-1.16.1.tar.gz && tar zxvf nginx-1.16.1.tar.gz | |
| #Download the mandatory NGINX dependencies' source code and extract them: | |
| # PCRE version 8.42 | |
| wget https://ftp.pcre.org/pub/pcre/pcre-8.42.tar.gz && tar xzvf pcre-8.42.tar.gz |
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 | |
| #Required dependencies installed on your system | |
| sudo apt-get install libgtk2.0-0 libgtk-3-0 libgbm-dev libnotify-dev libgconf-2-4 libnss3 libxss1 libasound2 libxtst6 xauth xvfb | |
| #Install NodeJS and Yarn | |
| curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash - | |
| sudo apt-get install -y nodejs | |
| sudo apt-get install gcc g++ make -y | |
| curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - |
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 | |
| # This command will update & upgrade your system | |
| sudo apt update && sudo apt-get upgrade --fix-missing | |
| #Or | |
| sudo apt -y install build-essential checkinstall && sudo apt install gdebi-core wget -y && sudo apt -y install ubuntu-restricted-extras && sudo add-apt-repository ppa:nilarimogard/webupd8 -y && sudo apt update && sudo apt -y install kazam && sudo snap install vlc && sudo add-apt-repository ppa:git-core/ppa && sudo apt update && sudo apt -y install git | |
| # Install the package build-essential for making the package and checkinstall for putting it into your package manager | |
| sudo apt -y install build-essential checkinstall |
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 | |
| sudo apt install openjdk-11-jdk | |
| sudo snap install android-studio --classic | |
| sudo android-studio |
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/bash | |
| # List of packages to install before building xenioscoin | |
| packagelist=( | |
| Babel==2.6.0 | |
| chardet==3.0.4 | |
| decorator==4.3.0 | |
| docutils==0.14 | |
| ebaysdk==2.1.5 |
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/bash | |
| #install Docker CE | |
| #Import the Docker GPG key with the command | |
| curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
| sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | |
| sudo apt update && sudo apt -y install docker-ce | |
| sudo usermod -aG docker $USER |
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 | |
| #Install OpenLiteSpeed | |
| sudo -i | |
| wget -O - http://rpms.litespeedtech.com/debian/enable_lst_debain_repo.sh | bash | |
| sudo apt install openlitespeed -y | |
| systemctl status openlitespeed | |
| netstat -plntu |