#!/bin/bash
#small script to correct the /dev/console problem
echo "fixing the /dev/console problem when using XDM"
cd /dev
rm console
mknod console c 5 1
echo "whew......all done"
#end