this little one-liner for /sbin/rc avoids the creation of a broken link on my box (I don't have oss). --- rc.orig 2004-10-31 18:37:05.350339016 +0100 +++ rc 2004-10-31 18:38:09.007661632 +0100 @@ -80,7 +80,7 @@ ln -snf fd/1 /dev/stdout ln -snf fd/2 /dev/stderr ln -snf /proc/kcore /dev/core - ln -snf /proc/asound/oss/sndstat /dev/sndstat + [ -e /proc/asound/oss/sndstat ] && ln -snf /proc/asound/oss/sndstat /dev/sndstat # Create nodes that udev can't [ -x /sbin/dmsetup ] && /sbin/dmsetup mknodes &> /dev/null I also found this really old email... maybe that line could be entirely removed: http://www.ussg.iu.edu/hypermail/linux/kernel/0003.1/0073.html
a quick check on my system yielded no sndstat references; removed the line