Linux

Ubuntu 伺服器上的自動登錄

  • July 24, 2014

我有一台執行 Ubuntu Server 的機器。它只有一個命令行界面。如何自動使用特定使用者登錄系統(我不想輸入使用者名/密碼)。我知道這是不安全的,我不在乎。

安裝mingetty.

sudo apt-get install mingetty

編輯您的/etc/event.d/tty1並更改此行:

exec /sbin/getty 38400 tty1

到:

exec /sbin/mingetty --autologin username tty1

引用自:https://serverfault.com/questions/151933