Linux

使用 TTY 登錄時的預設使用者名

  • July 22, 2020

我是筆記型電腦上的單個使用者,我希望在嘗試登錄 TTY1 時自動輸入使用者名。我使用 Arch Linux。

例如:

  1. 打開電腦
  2. Linux 啟動
  3. 我輸入密碼
  4. 我在 TTY1 登錄並繼續工作

我做了一些研究。我只需要輸入systemctl edit getty@tty1

[Service]
ExecStart=
ExecStart=-/sbin/agetty -n -o username %I

之後,只需輸入:systemctl enable getty@tty1就可以了。

欲了解更多資訊,請訪問:https ://wiki.archlinux.org/index.php/Getty

引用自:https://unix.stackexchange.com/questions/599588