2

While Ubuntu is starting up, the init rc commands are run. Is there a way to see their full output after the system has started?

Daniël W. Crompton
  • 1,984
  • 1
  • 17
  • 17
Penz
  • 155
  • 1
  • 5

3 Answers3

2

Ubuntu stores the output of the rc commands run at boot in /var/log/boot.log.

Starfish
  • 978
  • 8
  • 15
  • `/var/log/boot.log` is exactly what I was looking for! That doesn't go through syslog, does it? – Penz Aug 14 '13 at 13:11
  • 1
    No, it doesn't use syslog. `/var/log/boot.log` is created by [Plymouth](https://wiki.ubuntu.com/Plymouth). – Starfish Aug 14 '13 at 17:42
0

The default system log location in Ubuntu 13.04 is /var/log/syslog.

Log location settings are configured in /etc/rsyslog.d/50-default.conf

See man rsyslog.conf for more information.

audiomason
  • 243
  • 2
  • 5
0

dmesg is a ring buffer, so it can be that messages from the top can be overwritten by newer messages, although at 16384 messages I doubt it.

Have you tried /var/log/boot.log or /var/log/kernel.log

Daniël W. Crompton
  • 1,984
  • 1
  • 17
  • 17