网络通讯 · 2022年02月20日 0

mingetty命令 – 登入程序

mingetty命令是精简版的getty。 mingetty适用于本机上的登入程序。 **语法格式:** mingetty [参数] **常用参数:** | --long-hostname | 显示完整的主机名称 | | ----------------- | ------------------------------------------ | | --noclear | 在询问登入的用户名称之前不要清楚屏幕画面 | **参考实例** 显示完整的主机名称: ``` [root@anycode ~]# mingetty -long-hostname gethostname() ``` 在提示输入用户名之前不进行清屏操作 (通常屏幕被清除): ``` [root@anycode ~]# mingetty -noclear ```