Mac OS X登录窗口的显示访问警告消息
时间:2020-01-09 10:37:12 来源:igfitidea点击:
如何在Apple Mac OS X下显示计算机所有权的通知,以提醒授权用户同意其监视?
您需要使用defaults命令从命令行shell选项读取,写入和删除Mac OS X用户默认设置。
您必须使用sudo运行以下命令。
当您的用户尝试访问登录窗口时,用户会看到您创建的访问警告。
这适用于本地和远程桌面。
打开一个终端。
输入以下命令:
sudo defaults write /Library/Preferences/com.apple.loginwindow LoginwindowText "YOUR Message Here"
例如,
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."
注销并再次登录以查看更改。
更新/etc/motd
编辑/etc/motd,输入(在终端输入命令):
sudo vi /etc/motd
添加您的访问警告消息:
Use of the system implies consent to monitoring, any unauthorized use of the system will be prosecuted.
保存并关闭文件。