Archive for March, 2008

OpenVPN GUI client and Windows Vista

OpenVPN GUI client and Windows Vista from Computer Tech Union.

1) Open your client.ovpn file and add the following two lines to the bottom of the file:
route-method exe
route-delay 2

2) Create a shortcut to your OpenVPN GUI file. Right click the shortcut and click properties.
Under the ‘Shortcut’ tab.
Click ‘advanced’.
Check the box that says ‘Run as administrator’ and
then Click ‘OK’ and ‘OK’ again.

Comments (4)

Radiant CMS Script

Useful script for getting Radiant CMS installed.

I made a couple changes for my setup:

#!/bin/sh
radiant --database sqlite3 $1
cd $1
echo "
production:
  adapter: sqlite3
  database: db/production.sqlite3
test:
  adapter: sqlite3
  database: db/test.sqlite3
development:
  production
" > config/database.yml

svn export http://dev.radiantcms.org/svn/radiant/trunk/extensions/shards vendor/extensions/00_shards
svn export http://svn.seancribbs.com/svn/rails/plugins/extensions/page_attachments vendor/extensions/page_attachments
svn export https://secure.svnrepository.com/s_swanki/open/radiant/extensions/page_meta/tags/v0.1.5 vendor/extensions/page_meta
svn export http://dev.radiantcms.org/svn/radiant/trunk/extensions/reorder/ vendor/extensions/reorder
rake radiant:freeze:edge
vendor/radiant/script/plugin install acts_as_list
rake production db:bootstrap
rake production db:migrate:extensions
rake production radiant:extensions:page_attachments:update
rake production radiant:extensions:reorder:update

Comments (1)

Setting Up A PXE Linux Recovery / Deployment Server using Debian Lenny/Etch

A clear guide for setting up a PXE Linux Recovery / Deployment Server using Debian. Including Debian Installer, DBAN and a couple other useful tools.

Comments off