Posted on 2007-04-16 21:53
qiyadeng 阅读(1534)
评论(0) 编辑 收藏
Linux控制台的用户自动登录
在/sbin目录下新建文件autologin,并往文件写入下面内容:
exec 0</dev/$1 1>/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用户自动登录.