分类: 嵌入式
2010-05-07 17:27:20
Linux控制台的用户自动登录
在/sbin目录下新建文件autologin,并往文件写入下面内容:
exec 0/dev/$1 2>&1
cat /etc/issue
shift
exec $*
改变autologin文件的权限执行下面语句:
chmod 777 /sbin/autologin
最后编辑/etc/inittab文件
把类似以下部分
2:2345:respawn:/sbin/getty tty2
修改为
2:2345:respawn:/sbin/autologin tty2 login –f sybase
以上为系统启动时,sybase用户自动登录.I have added this line in the inittab file:
1:2345:respawn:/bin/login -f root console
I suppose that "console" means ttyS0, as it's defined in the "bootargs" environment variable.