bhyve mirror


2012/12/13

bhyve is the BSD Hypervisor, a legacy-free type 2 Hypervisor for FreeBSD and its derivatives such as PC-BSD and NanoBSD.

More information can be found on the bhyve wiki and website.
The mirror can be found here...



Stikked with NGINX


2011/09/07

How to get Stikked running with NGINX.
Running Stikked in for example "/p" with the following config and you are done.

location /p {
  try_files $uri $uri/ @stikked;
}
location @stikked {
  rewrite ^/p/(.*)$ /p/index.php?/$1 last;
}

With the below it didn't work.

location /p {
  try_files $uri $uri/ /p/index.php?/$uri;
}



Minimalist Admin 0.6


2011/03/06

For this release the deprecated eregi() and split()
are replaced by preg_match() and preg_split().

Minimalist Admin is a very simple web interface for Minimalist.
Download Minimalist Admin 0.6.
You can also find it on Freshmeat.



FreeBSD PXE Install Server (HOWTO)


2009/04/06

Howto document that describes how to setup a PXE install environment on FreeBSD.
There are multiple documents around but we didn't find one which had all
the information. This is basically a combined document based on all the
information that we could find. It has been tested on FreeBSD 7.1, booting
multiple servers as well as a Soekris 4801.
[Read More...]



Hacking At Random


2008/12/20

Hackers at Random 2009, International technology & security conference.
Four days of technology, ideological debates and hands-on tinkering. The
follow-up of What the Hack (WTH2005), Hackers at Large (HAL2001),
Hacking in Progress (HIP97) and Hackers at the end of the univese (HEU93).
On August 13-16, 2009 the 20th anniversary edition of the four-yearly Dutch
outdoor technology-conference will take place near Vierhouten, NL.
You can buy your tickets at https://tickets.har2009.org.



Foundry Networks YAML MIB


2007/11/29

If you are using SNMP with Ruby you might have noticed that it's
not using standard MIBS. All MIBS are converted to YAML.
Since there wasn't any Foundry Networks MIB available I created my own.
You can download it here.