1、使用adduser命令来添加新用户,用户名以industio为例,系统会提示设置密码以及其他信息,您可以根据需要填写或跳过,命令如下:
root@ido:/# sudo adduser industio
root@ido:/# sudo usermod -aG sudo industio
root@ido:/# echo industio > /etc/hostname
查找getty相关服务,getty为tty(Teletype)终端提供远程访问服务。
root@ido:/# systemctl list-units | grep getty
getty@tty1.service loaded active running Getty on tty1
serial-getty@ttyFIQ0.service loaded active running Serial Getty on ttyFIQ0
system-getty.slice loaded active active system-getty.slice
system-serial\x2dgetty.slice loaded active active system-serial\x2dgetty.slice
getty.target loaded active active Login Prompts
根据Serial Getty on ttyFIQ0的提示信息,自动登录功能可能与serial-getty@ttyFIQ0.service服务有关,该服务配置文件在以下目录:
root@ido:/# cat /etc/systemd/system/serial-getty\@.service.d/override.conf
[Service]
ExecStart=
ExecStart=-/sbin/agetty -a root --keep-baud 115200,38400,9600 %I $TERM
root@ido:/# vi /etc/systemd/system/serial-getty@.service.d/override.conf
[Service]
#第一行 ExecStart= 为空,用于清除原有的 ExecStart 设置。
ExecStart=
#ExecStart=-/sbin/agetty -a root --keep-baud 115200,38400,9600 %I $TERM
ExecStart=-/sbin/agetty --noclear %I $TERM
root@ido:/# reboot