On Wed, Oct 10, 2018 at 12:59:27PM +0200, Eivind Eide wrote: > I was not able to get correct permissions on my mfs /tmp until I put > the following in /etc/rc.securelevel, which solved the problem. > /bin/chmod 1777 /tmp
That is not the right solution. The right one is to unmount /tmp (boot to single user mode if needed), and then do a chmod 1777 /tmp. That will make sure any mfs mounted filesystem on top of /tmp gets 1777 as permissions. -Otto