I know how to display notice of a computer's ownership, to warn against unauthorized access, under Linux gnome desktop. How do I display similar message under Apple Mac OS X to remind authorized users of their consent to monitoring?
You need to use defaults command to read, write, and delete Mac OS X user defaults from a command-line shell option. You must run the following command using sudo. When your user tries to access the login window, the user sees the access warning you create. This applies to both local and remote desktop.
Open a terminal.
Type the following command:
sudo defaults write /Library/Preferences/com.apple.loginwindow LoginwindowText "YOUR Message Here"
For example,
sudo defaults write /Library/Preferences/com.apple.loginwindow LoginwindowText "Use of the system implies consent to monitoring, any unauthorized use of the system will be prosecuted."
Logout and login back again to see your changes.
Update /etc/motd
Edit /etc/motd, enter (type the command at terminal):
sudo vi /etc/motd
Add your access warning message:
Use of the system implies consent to monitoring, any unauthorized use of the system will be prosecuted.
Save and close the file.
Featured Articles:
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- My 10 UNIX Command Line Mistakes
- Linux: 20 Iptables Examples For New SysAdmins

- 25 PHP Security Best Practices For Sys Admins
- The Novice Guide To Buying A Linux Laptop
- 10 Greatest Open Source Software Of 2009
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- Top 20 OpenSSH Server Best Security Practices
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Linux Video Editor Software
Facebook it - Tweet it - Print it -

