<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Sat, Sep 10, 2016 at 6:17 AM, Pathangi Janardhanan <span dir="ltr"><<a href="mailto:path.jana@gmail.com" target="_blank">path.jana@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hi All,<div><br></div><div> What is the best option to do some debug/analysis of the system and the services started by systemd during initial bootup? </div><div><br></div><div> I would like to use tools like perf and strace etc. on some of the services. I could do this by starting the service manually but would like to have all the services that start at bootup and was wondering if there is a way for me to do this sort of thing, just for the initial boot up time.</div></div></blockquote><div><br></div><div>One possible method is, boot with `init=/bin/sh`, then in the shell run:</div><div><br></div><div>    exec strace -D -f -o /tmp/strace.log /usr/lib/systemd/systemd</div><div><br></div><div>Alternatively, for both perf and strace, make a .service with {Before=sysinit.target, DefaultDependencies=no} that attaches to pid 1:<br></div><div><br></div><div>    ExecStart=/bin/strace -p 1 -f -o /tmp/strace.log</div></div><div><br></div>-- <br><div class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr">Mantas Mikulėnas <<a href="mailto:grawity@gmail.com" target="_blank">grawity@gmail.com</a>></div></div>
</div></div>