Posts

Showing posts from 2013

Want to run your own Minecraft server?

Have you ever wanted to run your own Minecraft server?  You have to check out MineOS ! From the MineOS website: MineOS Turnkey: MineOS Turnkey is the current flagship distribution of MineOS. Based on the proven Debian foundation,  Turnkey Linux  is a perfect delivery system: a trimmed, yet supremely extensible server platform. Respun with MineOS components pre-configured, MineOS Turnkey is the quickest way to get a managed hosting platform for Minecraft, capable of starting/stopping, backing up, restoring and archiving your worlds.

Gus Bragg Memorial

I've setup a Gus Bragg Memorial site at: http://www.gusbragg.com If you want to contribute photos or stories, you can send them to me (Ed).

Download Artifacts from Jenkins with WGET

If you find that using wget to download an artifact from a secured Jenkins server keeps failing with: wget --http-user=user --http-password=password https://hostname.server.com/jenkins/job/tool/lastSuccessfulBuild/artifact/tool.zip HTTP request sent, awaiting response... 403 Forbidden 2013-03-20 16:35:36 ERROR 403: Forbidden. Since Jenkins is using form based authentication, you will need to use an option: Try this instead: wget  --auth-no-challenge --http-user=user --http-password=password https://hostname.server.com/jenkins/job/tool/lastSuccessfulBuild/artifact/tool.zip