This file contains 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
module.exports = { | |
config: { | |
// default font size in pixels for all tabs | |
fontSize: 12, | |
// font family with optional fallbacks | |
fontFamily: 'Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace', | |
// terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk) | |
cursorColor: 'rgba(248,28,229,0.8)', |
This file contains 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
#Install the build dependencies | |
sudo apt update | |
sudo apt install build-essential linux-headers-generic | |
#Download VMware Workstation Player | |
wget --user-agent="Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Firefox/60.0" https://www.vmware.com/go/getplayer-linux | |
#Make the installation file executable | |
chmod +x getplayer-linux |
This file contains 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
##Install OpenJDK | |
#Update system | |
sudo apt update | |
#Install the OpenJDK package | |
sudo apt install default-jdk | |
#Create Tomcat User | |
sudo useradd -r -m -U -d /opt/tomcat -s /bin/false tomcat |
This file contains 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
#Update your system | |
sudo apt update | |
sudo apt -y upgrade | |
sudo reboot | |
#Import apt repository | |
wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add - | |
wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- | sudo apt-key add - | |
#Add the VirtualBox Repository |
This file contains 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
#Update system & reboot | |
sudo apt update && sudo apt -y upgrade | |
sudo reboot | |
#Install Asterisk 16 LTS dependencies | |
sudo apt -y install git curl wget libnewt-dev libssl-dev libncurses5-dev subversion libsqlite3-dev build-essential libjansson-dev libxml2-dev uuid-dev | |
#Add universe repository and install subversio | |
sudo add-apt-repository universe | |
sudo apt update && sudo apt -y install subversion |
This file contains 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
##Install MongoDB | |
#Install gnupg and its required libraries | |
sudo apt-get install gnupg | |
#Import the public key used by the package management system | |
wget -qO - https://www.mongodb.org/static/pgp/server-4.2.asc | sudo apt-key add - | |
#Create a list file for MongoDB | |
echo "deb [ arch=amd64 ] https://repo.mongodb.org/apt/ubuntu bionic/mongodb-org/4.2 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.2.list |
This file contains 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
#Update your existing list of packages | |
sudo apt update | |
#Install a few prerequisite packages | |
sudo apt install apt-transport-https ca-certificates curl software-properties-common | |
#Add the GPG key for the official Docker repository | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
#Add the Docker repository to APT sources |
This file contains 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
#Update the Ubuntu packages list | |
sudo apt update | |
#Install the MongoDB package | |
sudo apt install -y mongodb | |
#Check the Service and Database | |
sudo systemctl status mongodb | |
#View database version, server address and port |
This file contains 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
#Configure APT Repository | |
sudo nano /etc/apt/sources.list.d/webmin.list | |
#Add below value to this file: | |
# deb http://download.webmin.com/download/repository sarge contrib | |
# deb http://webmin.mirror.somersettechsolutions.co.uk/repository sarge contrib | |
#Import the GPG key | |
curl http://www.webmin.com/jcameron-key.asc | sudo apt-key add - |
This file contains 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
#Update and Upgrade the system | |
sudo apt update | |
sudo apt-get upgrade | |
# Add ppa repository | |
sudo add-apt-repository ppa:ondrej/php | |
sudo apt-get update | |
#Install Apache2 | |
sudo apt install apache2 |
NewerOlder