Subject: Re: opening console
To: Julio Merino <jmmv@hispabsd.org>
From: Wojciech Puchar <wojtek@chylonia.3miasto.net>
List: netbsd-users
Date: 06/22/2002 17:31:22
> I guess you will need to conect stdout and stderr to /dev/console...
> maybe with a little c-program wrapper that does this and then
> fires your script?
>

solved with

/sbin/init:

#!/bin/sh
exec /rc </dev/console >/dev/console 2>/dev/console

when /rc is the real one


thanks