Re: [List] Re: Console output during boot

Frank Leonhardt <[email protected]> Thu, 7 May 2026 21:54:16 +0100
Newsgroups gmane.os.freebsd.questions
Message-ID <[email protected]>
On 04/05/2026 21:21, Doug Hardie wrote:
>> As no one else has said anything, all I can think of is the rc_startmsgs variable in rc.conf. This defaults to "yes", meaning display messages like Starting cron, Starting sshd and so on. Are these what you're missing?
> No.  rc_startmsgs is set and rc_quiet is not set.

This could be your problem. rc_startmsgs must be set to "yes" somewhere. 
However, you might not have understood exactly what I was saying.

Inside a file /etc/defaults/rc.conf there should be a like this:


rc_startmsgs="YES"     # Show "Starting foo:" messages at boot


You can override this to "no" in /etc/rc.conf but if it really is not 
set to anything (which is what you said) it won't be set to the default 
"yes". In other words, if it's not set in /etc/rc.conf and for some 
reason it's missing from /etc/defaults/rc.conf then it won't be set to 
"yes" and you won't get any messages.

It could also be a broken /etc/rc.subr. Make sure this is normal.

You might also have $rc_quiet set somehow (other options like faststart 
switch it on using the service command). You can have faststart set 
globally for every service start with rc_fast="yes".

/etc/rc.conf is just a shell script, so it might be an idea to put stuff 
like "echo rc_quite=$rc_quiet rc_fast=$rc_fast in there and check what's 
happening.

You can also set a flag "rc_debug=yes" to have it run all it's scripts 
with the -x option and see exactly where it goes.

Finally, you can get a dump of the non-standard settings using "sysrc 
-a", and a list of all the settings using "sysrc -A".

If you're still having troubles, please post "sysrc -A".

Regards, Frank.