fufei 发表于 2013-8-5 09:45:17

FreeBSD常见安装使用问题解决如鼠标不动

[飞六网]-[系统应用]:FreeBSD是开源高效的类unix系统,但安装或应用中会出现一些问题,比如鼠标不不能动,并且有错误提示,解决方法如下:
问题一:
鼠标不动
解决方案一:ee /etc/rc.conf
moused_enable=”YES”
鼠标不动,键盘没有反应,并且登录显示如下错误信息:
Unknown username “polkit” in message bus configuration file
Unknown username “haldaemon” in message bus configuration file
Unknown username “avahi” in message bus configuration file
请用方案二:
pw useradd avahi
pw useradd haldaemon
pw useradd messagebus
重启
问题二:kde中非root用户终端konsole打开闪一下又关闭了。
解决方法:
- 按 ALT-F2
-键入  konsole -e csh
- konsole 打开后修改
- Settings -> Change Profile -> Shell
- Settings -> Edit Current Profile
一般把路径改为 /bin/csh.
问题三:系统升级或其他原因导致FreeBSD不能启动
解决方法:
boot -s                         #or
unload
boot /boot/kernel.old/kernel
断电后系统无法启动
1.启动到sing user模式
2.fsck
3.reboot
问题四:xauth: (argv):1: bad display name ":0" in "remove" command
解决方法:
检查 /etc/hosts 同 /etc/rc.conf 中主机名是否一致。
ee /etc/hosts
::1            localhost localhost.my.domain rhuta     #例如我的主机名是rhuta
127.0.0.1        localhost localhost.my.domain rhuta
那么编辑如下文件
ee /etc/rc.conf
hostname="rhuta"                  #主机名也设为rhuta

问题五:failed to set default locale解决方法:
检查 .cshrc ,/etc/csh.cshrc,或者 .profile中locale是否设置一致。
问题六:在virtualBox中FreeBSD的分辨率只能是800×600
编辑 /etc/X11/xorg.conf在
Section "Monitor"
加入如下两行
HorizSync 31-80
VertRefresh 48-100


Section "Screen" 中加入Identifier "Screen0"Device "Card0"Monitor "Monitor0"DefaultDepth 24SubSection "Display"Viewport 0 0Depth 24Modes "1024x768" #注意“1024x768”不能是1024*768EndSubSectionEndSection以上为最常见的freebsd安装或应用错误,希望能给大家参考。
页: [1]
查看完整版本: FreeBSD常见安装使用问题解决如鼠标不动