在Linux系统中,我们可以通过配置文件和脚本来实现让所有用户登录时打印指定的提示信息。下面将介绍几种常用的方法。
方法一:修改/etc/issue文件
sudo vi /etc/issue
Welcome to My Linux System!
Please be aware that all activities are monitored.
现在,当用户登录时,系统将显示/etc/issue文件中添加的提示信息。
方法二:使用/etc/profile文件
sudo vi /etc/profile
echo "Welcome to My Linux System!"
echo "Please be aware that all activities are monitored."
现在,当用户登录时,系统将执行/etc/profile文件中添加的代码,并显示相应的提示信息。
方法三:使用/etc/update-motd.d/脚本
sudo vi /etc/update-motd.d/99-custom-message
#!/bin/sh
echo "Welcome to My Linux System!"
echo "Please be aware that all activities are monitored."
sudo chmod +x /etc/update-motd.d/99-custom-message
现在,当用户登录时,系统将执行/etc/update-motd.d/99-custom-message脚本,并显示相应的提示信息。
方法四:使用/etc/motd文件
sudo vi /etc/motd
Welcome to My Linux System!
Please be aware that all activities are monitored.
现在,当用户登录时,系统将显示/etc/motd文件中添加的提示信息。
以上是几种常用的方法,你可以根据自己的需求选择其中一种来实现在所有用户登录时打印指定的提示信息。
参考文章: