On Mon, 25 Sep 2017, Theodore Wynnychenko wrote: > I noticed this message in the dmesg after updating -current yesterday. > > I am not sure what it means. > > There is no file "test-ld.so" anywhere on the system that I can find. > I also see that it appears this part of rc was just committed in the > last few weeks. > > Why is this happening, and is there anything that I should do to correct > the "Permission denied" error?
It means that after /etc/rc had built a new ld.so, when it tried to test it by running the test-ld.so program (which is packaged inside /usr/libdata/ld.so.a), it failed with that error, EACCES. My guess is that you're hitting this: [EACCES] The new process file is on a filesystem mounted with execution disabled (MNT_NOEXEC in <sys/mount.h>). If you're mounting /tmp with the noexec flag, then stop doing that. Philip Guenther