在FreeBSD下安装Gnome图形界面
本文内容遵从CC版权协议, 可以随意转载, 但必须以超链接形式标明文章原始出处和作者信息及版权声明网址: http://www.penglixun.com/tech/system/install_gnome_gui_in_freebsd.html
今天突发奇想想给FreeBSD装个图形界面,于是就动手了,遇到了不少问题,一步步查资料然后解决,终于在FreeBSD上看到了Gnome可爱的界面。
首先sysinstall ,把gnome或者KDE,还有Xorg装上。
然后Xorg -configure,生成xorg.conf
cp /root/xorg.conf.new /etc/X11/xorg.conf
ee /etc/X11/xorg.conf ,修改如下
在Section “Files”,删除 Rgb。
在Section “ServerLayout”,添加Option “AllowEmptyInput” “off”。
在Section “InputDevice”,修改Option “Device” “/dev/sysmouse” 为Option “Device” “/dev/psm0”
对于Xorg 7以上的版本,还要设置
Section “Monitor”
Identifier “Monitor0”
VendorName “Monitor Vendor”
ModelName “Monitor Model”
HorizSync 30-107
VertRefresh 48-120
EndSection
Section “Screen”
Identifier “Screen0”
Device “Card0”
Monitor “Monitor0”
DefaultDepth 24
SubSection “Display”
Viewport 0 0
Depth 24
Modes “1024×768”
EndSubSection
EndSection
ee /etc/rc.conf ,加入以下行:
moused_enable=”YES”
moused_nodefault_enable=”YES”
dbus_enable=”YES”
hald_enable=”YES”
接着ee .xinitrc
输入exec gnome-session,KDE是startkde。
就可以startx了。
另外看看/etc/hosts里面有没有主机名,没有就加进去,不然startx会出错。
还有错那就是包少装了,例如gnome-session之类的。