#!/bin/bash echo "Running udevstart to get /dev started ... " /sbin/udevstart if [ ! -e /dev/sound/dsp ] ; then echo 'EEP! We have no sound!' echo 'You can switch to another console with -- + -- to try' echo 'and load a sound-module by hand.' echo echo 'Press -- when done to continue ...' read fi if [ ! -e /dev/sound/dsp ] ; then echo "Still no sound. Continuing anyway" fi exit 0