veganism.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
Veganism Social is a welcoming space on the internet for vegans to connect and engage with the broader decentralized social media community.

Administered by:

Server stats:

279
active users

#strace

0 posts0 participants0 posts today
Simon Tatham<p>If you run a <a href="https://hachyderm.io/tags/Linux" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Linux</span></a> program in <a href="https://hachyderm.io/tags/strace" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>strace</span></a>, usually the start of the log shows it trying to load a ton of shared libraries, and for each one, trying the same file name in all your LD_LIBRARY_PATH directories until it finds it. So you mostly see file-open operations _failing_, with ENOENT.</p><p>To a novice strace reader, it looks as if something has already gone horribly wrong! But it hasn't – this is all normal, and as expected. Each of those ENOENT is technically "an error", but not a _bad_ error, because ld.so just moves on to the next in its big list of things to try, and one works in the end.</p><p>Errors happen _all the time_ in the guts of a computer system, and most of them are not even interesting – just business as usual. The event an end user thinks of as "an error" is the case where the program _doesn't_ have a fallback plan. Those are often outnumbered by the cases where it does!</p>
Detlev Zundel<p>It has taken me some time to diagnose, but with the help of <a href="https://hostsharing.coop/tags/strace" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>strace</span></a> I now know that ffmpeg is blocked on writing its progress report to the terminal.</p><p>Switching to the terminal unblocks the process and things continue.</p><p>Plain old <a href="https://hostsharing.coop/tags/xterm" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>xterm</span></a> does not have this problem, but <a href="https://hostsharing.coop/tags/gnome" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>gnome</span></a> Terminal does. Looking over the issues I do not see something similar, but I would have expected that more people would see such a problem?</p><p>I am on Debian Trixie by the way, so I am using Gnome Terminal 3.51.90.</p><p>2/2</p>