For java 6, download bin file from oracle archive
Create a folder:
$ sudo mkdir -p /opt/java| HELP.md | |
| target/ | |
| !.mvn/wrapper/maven-wrapper.jar | |
| !**/src/main/**/target/ | |
| !**/src/test/**/target/ | |
| ### STS ### | |
| .apt_generated | |
| .classpath | |
| .factorypath |
For java 6, download bin file from oracle archive
Create a folder:
$ sudo mkdir -p /opt/javaAs of 20/10/2017, a release file for Ubuntu 17.10 Artful Aardvark is not available on Download Docker.
If you are used to installing Docker to your development machine with get-docker script, that won't work either. So the solution is to install Docker CE from the zesty package.
sudo apt-get update
sudo apt-get install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
| cat ~/.ssh/id_rsa.pub | ssh root@[your.ip.address.here] "cat >> ~/.ssh/authorized_keys" |
Prereq:
apt-get install zsh
apt-get install git-coreGetting zsh to work in ubuntu is weird, since sh does not understand the source command. So, you do this to install zsh
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh
| global | |
| log 127.0.0.1 local0 notice | |
| maxconn 2000 | |
| user haproxy | |
| group haproxy | |
| defaults | |
| log global | |
| mode http | |
| option httplog |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <configuration scan="true"> | |
| <appender name="consoleAppender" class="ch.qos.logback.core.ConsoleAppender"> | |
| <encoder> | |
| <charset>UTF-8</charset> | |
| <Pattern>%d %-4relative [%thread] %-5level %logger{35} - %msg%n</Pattern> | |
| </encoder> | |
| </appender> | |
| <appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender"> |
| http://ruchirawageesha.blogspot.com/2010/07/how-to-create-clientserver-keystores.html |
| #!/bin/bash | |
| # This script is edited by Brice Dutheil | |
| # See there in french http://blog.arkey.fr/2012/07/30/script-pour-installer-le-jdk-5-sur-macosx-lion/ | |
| # Translate button is broken for now, please use Google to translate this website. | |
| # | |
| # 2014/02/10 Updated the script to run on OSX 10.9 Maverick | |
| # | |
| # 2013/05/11 Added a few more guidance when Java Preferences is not available anymore | |
| # Added a simple example of a JDK switch function. |
| #login as root | |
| user@machine $ su | |
| password: [enter password] | |
| root@machine:# visudo | |
| ##### | |
| ### search for line | |
| ## Allow root to run any commands anywhere | |
| root ALL=(ALL) ALL |