On Thu, Mar 5, 2015 at 8:19 AM, Dale <[email protected]> wrote: > > I just recall reading somewhere, systemd or not, that that is how it is > supposed to work. After all, it can't run fsck and such while mounted > rw from my understanding.
Keep in mind that an initramfs is nothing more than an archive file containing some kind of init implementation (often just a shell script) that the kernel unpacks and launches. It does whatever it is designed to do. Some are more bare-boned than others. I personally use dracut which has quite a few bells and whistles. If you're using systemd as has already been pointed out it runs the journal during early boot and merges it into the system journal when it pivots. I believe that if you're not using systemd it captures whatever it does to a log file in /run, but I don't think it necessarily runs a full syslog listening to /dev/log and so on. That said, nothing is really running that early in boot so as long as it logs its own work you're fine. Often the level of logging is configurable. -- Rich

