- Install the latest version of Mozilla Thunderbird.
- Install the latest version of the Lightning add-on.
- Download the latest version of the Exchange Calendar and Tasks Add-on.
- In Thunderbird, click on Tools | Add-ons
- Click on the Gear icon (next to "Search all add-ons") and select Install Add-on From File...
- Browse to the downloaded add-on in the previous step
- Click Install to verify that you understand that you are trusting the add-on from a non-verified author
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
#!/bin/bash | |
# do in tmp | |
cd /tmp | |
JETTY_FILE='jetty-distribution-9.3.3.v20150827.tar.gz' | |
JETTY_FOLDER=${JETTY_FILE:0:-7} | |
# Download | |
wget http://download.eclipse.org/jetty/stable-9/dist/$JETTY_FILE | |
# Extract | |
sudo tar zxvf $JETTY_FILE -C /opt/ |
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
#!/bin/bash | |
ACTION="$1" | |
CONFIG_FILE="/etc/default/vagrant-oracle" | |
if [[ ! -e "$CONFIG_FILE" ]]; then | |
echo "file $CONFIG_FILE does not exists. Create it with VAGRANT_ORACLE_HOME variable" | |
exit 1 | |
fi | |
source "$CONFIG_FILE" | |
if [[ -z "$VAGRANT_ORACLE_HOME" ]]; then | |
echo "set VAGRANT_ORACLE_HOME environment variable" |
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
#!/bin/bash | |
# Stop on any errors | |
set -e | |
# Install vagrant | |
bash <(curl -s https://gist.githubusercontent.com/franciscocpg/cf926a35197981552eab/raw/) | |
# Clone vagrant oracle | |
git clone https://github.com/tidexa-es/vagrant-ubuntu-oracle-xe | |
# Download oracle express 11g | |
wget 'https://www.googledrive.com/host/0B8Ullq6_B51jM3ZTdDFBWmNmX2s' -O oracle-xe-11.2.0-1.0.x86_64.rpm.zip | |
# Move file to vagrant install folder |
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
#!/bin/bash | |
CODENAME=$(lsb_release -c) | |
CODENAME=${CODENAME:10} | |
# add sign key to nginx | |
wget http://nginx.org/keys/nginx_signing.key -O /tmp/nginx_signing.key | |
sudo apt-key add /tmp/nginx_signing.key | |
# Add sources | |
sudo add-apt-repository "deb http://nginx.org/packages/ubuntu/ $CODENAME nginx" | |
# Install nginx |
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
# For ubuntu 14.04 | |
# Needed repositories | |
sudo add-apt-repository -y ppa:vbernat/haproxy-1.5 | |
echo "deb https://dl.bintray.com/magnetic-io/upstart trusty main" | sudo tee -a /etc/apt/sources.list | |
curl https://bintray.com/user/downloadSubjectPublicKey?username=bintray | sudo apt-key add - | |
sudo apt-get update | |
# install ha proxy 1.5 | |
sudo apt-get install -y haproxy |
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
# Needed repositories | |
sudo add-apt-repository -y ppa:vbernat/haproxy-1.5 | |
sudo apt-get update | |
# install ha proxy 1.5 | |
sudo apt-get install -y haproxy |
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
# downloads the Linux CLI to /usr/local/bin (YMMV) | |
sudo curl https://s3.amazonaws.com/downloads.wercker.com/cli/stable/linux_amd64/wercker -o /usr/local/bin/wercker | |
sudo chmod +x /usr/local/bin/wercker |
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
set -e | |
# add ppa | |
curl -sL https://deb.nodesource.com/setup | sudo bash - | |
# install | |
sudo apt-get install -y build-essential nodejs |
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
set -e | |
sudo apt-get install -y apt-transport-https ca-certificates | |
# add key | |
curl -fsSL https://yum.dockerproject.org/gpg | sudo apt-key add - | |
# add source | |
sudo add-apt-repository "deb https://apt.dockerproject.org/repo/ ubuntu-$(lsb_release -cs) main" | |
sudo apt-get update | |
sudo apt-get purge -y lxc-docker* | |
sudo apt-get install -y docker-engine | |
sudo usermod -a -G docker $USER |
OlderNewer