#!/bin/sh # # init script to work around bad /dev/ permission defaults # not sure if this is a xen issue or a debootstrap issue # but this shoould fix it ... # # by chris, http://giantrobot.co.nz if [ $1 == 'start' ] ; then chmod 666 /dev/null /dev/urandom /dev/random /dev/tty /dev/zero fi