|
很多人都非常喜欢哈密瓜的relaxbsd,可是有时候对relaxbsd的默认启动方式不是很适应,像我的本本里面放了一堆服务器的密码,怎么能让系统自动登录不输入密码呢,那样也太危险了吧,那就来改造下吧,gnome的gdm可是很漂亮的启动管理界面,让我们来安装吧
1.同步ports
- cvsup -h cvsup3.cn.freebsd.org /usr/share/examples/cvsup/ports-supfile
复制代码
2.安装gnome启动图形管理界面
- cd /usr/ports/x11/gdm/ &&make install clean
复制代码
3.编辑root shell
vi /root/.tcshrc
找到下面一段,注销掉或者,改成自己想要的,我改成hello world
- endif
- # [ -x /usr/X11R6/bin/startx ] && startx
- [ -x /usr/X11R6/bin/startx ] && echo "hello world"
- endif
复制代码
4.编辑tty
vi /etc/tty
更改下面的内容
- #ttyv0 "/usr/libexec/getty relaxbsd" cons25 on secure
- ttyv0 "/usr/libexec/getty Pc" cons25 on secure
- #ttyv8 "/usr/X11R6/bin/xdm -nodaemon" xterm off secure
- ttyv8 "/usr/X11R6/etc/rc.d/gdm.sh forcestart -nodaemon" xterm on secure
复制代码
vi /etc/gettytab
注销掉下面一行
5.重启就可以看到漂亮的gdm啦,然后输入用户名密码,进入relaxbsd... |
|