Pick of the Week - Nov 10 [Show all picks]
Path Finder 5 - A feature-laden Finder replacement
Submit Hint Search The Forums LinksStatsPollsFAQHeadlinesRSS
12,000 hints and counting!


Click here to return to the 'Even better' hint
The following comments are owned by whomever posted them. This site is not responsible for what they say.
Even better
Authored by: SOX on Thu, Mar 13 2008 at 1:47PM PDT
get the PID for the login daemon, and send it a STOP message (via kill)
kill -s STOP <pid>
this will freeze the log-in server till you send it a Continue message
kill -s CONT <PID>

or put it all together:
kill -s STOP <pid> ; sleep 3600; kill -s CONT <pid>



[ Reply to This | # ]