1

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

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

4

1 回答 1

2

您可以使用“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

于 2013-01-04T06:53:33.230 回答