如何自动登录tty并执行脚本

时间:2013-01-04 06:12:23

标签: linux boot tty

我已经在我的桌面上安装了android x86。当我在grub中选择android的启动选项时,它会转到tty8然后我使用alt + F1转到tty1,然后登录到我的Ubuntu用户帐户(我的位置) android图像存储)运行一个启动shell脚本加载android。 我需要的是自动化这些过程,即当我选择android的启动选项时,它应该转到tty1并自动执行shell脚本而无需登录。

这可行吗? 如果是这样,怎么样?

1 个答案:

答案 0 :(得分:1)

您可以使用'mingetty'进行自动登录。

sudo apt-get install mingetty

然后编辑/etc/init/tty1.conf

更改行

exec /sbin/getty -8 38400 tty1

exec /sbin/mingetty --autologin root --noclear tty1

请注意,这会自动记录root用户,也许您想要一个不同的用户。 至于自动运行shell脚本:你可以将你的(或从中调用)脚本放在〜/ .bash_profile