Boot Wolvix from CD, then find and edit the file on the hard drive partition where you installed Wolvix, then try to boot the HD install again.
You're not causing me any trouble, =) Problems needs to be resolved. let me know if it works or not.
Edit: in the file /etc/rc.d/rc.syslog change this:
syslogd_start() {
if [ -x /usr/sbin/syslogd -a -x /usr/sbin/klogd ]; then
echo -n "Starting sysklogd daemons: "
echo -n "/usr/sbin/syslogd "
/usr/sbin/syslogd
To this:
syslogd_start() {
if [ -x /usr/sbin/syslogd -a -x /usr/sbin/klogd ]; then
echo -n "Starting sysklogd daemons: "
echo -n "/usr/sbin/syslogd "
/usr/sbin/syslogd &
Note the added '&' to the end of the last line quoted here.