Re: /dev (devtmpfs) permissions is 1777 [message #48709 is a reply to message #48628] |
Tue, 06 November 2012 21:00   |
mustardman
Messages: 91 Registered: October 2009
|
Member |
|
|
Don't know if this addresses your particular problem but I recreate the dev devices after each reboot in /etc/rc.local. If you are having a problem with some other one like /dev/tmp then you could add that as well.
/bin/rm -rf /dev/null
/bin/rm -rf /dev/random
/bin/rm -rf /dev/tty*
/bin/rm -rf /dev/pty*
/bin/mknod -m 0666 /dev/null c 1 3
/bin/mknod -m 0644 /dev/random c 1 8
/sbin/MAKEDEV tty
/sbin/MAKEDEV pty
[Updated on: Tue, 06 November 2012 21:02] Report message to a moderator
|
|
|