LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 1388|回复: 3

哈密瓜老大进来下,关于 RelaxBSD 2.0 在 vmware 下面安装的问题。

[复制链接]
发表于 2007-2-23 10:39:32 | 显示全部楼层 |阅读模式
RelaxBSD 2.0 是一个非常不错的系统,值得推广,然而在实验安装的过程中,也遇到了一些问题。

一、使用 gname 2.14 做为默认的桌面,其速度好慢,我一直使用的 gname 的版本是 2.16 的,好像没有这么慢的。能否把 gname 的版本升级一下。

二、目前已经出了 FreeBSD 6.2 的生产版本,而 RelaxBSD 2.0 依然使用的是 6.1 的内核,是否可以考虑一并升级。

三、在虚拟机 vmware 5.0 上安装的时候,发现其中的安装界面出现了一道一道的横杠杠,无法准确的定位鼠标,这主要是由于系统的配置文件 xorg.conf 的内容与虚拟机下面不相符造成的,可能你定制的时候是按照实际的环境定制的 xorg.conf ,但这个配置在虚拟机下面却有问题,这里我把我的虚拟机下面的配置文件 xorg.conf 给你,我这个文件在很多的 vmware 环境下都试用过,没有出现显示上的问题,希望你能将这个文件打包进去,并在安装的过程中加入测试或者是选择的选项,当在虚拟机下面安装的时候,就直接调用我给你的这个配置文件。


  1. Section "ServerLayout"
  2.         Identifier     "X.org Configured"
  3.         Screen      0  "Screen0" 0 0
  4.         InputDevice    "Mouse0" "CorePointer"
  5.         InputDevice    "Keyboard0" "CoreKeyboard"
  6. EndSection

  7. Section "Files"
  8.         RgbPath      "/usr/X11R6/lib/X11/rgb"
  9.         ModulePath   "/usr/X11R6/lib/modules"
  10.         FontPath     "/usr/X11R6/lib/X11/fonts/misc/"
  11.         FontPath     "/usr/X11R6/lib/X11/fonts/TTF/"
  12.         FontPath     "/usr/X11R6/lib/X11/fonts/Type1/"
  13.         FontPath     "/usr/X11R6/lib/X11/fonts/CID/"
  14.         FontPath     "/usr/X11R6/lib/X11/fonts/75dpi/"
  15.         FontPath     "/usr/X11R6/lib/X11/fonts/100dpi/"
  16. EndSection

  17. Section "Module"
  18.         Load  "dbe"
  19.         Load  "dri"
  20.         Load  "extmod"
  21.         Load  "glx"
  22.         Load  "record"
  23.         Load  "xtrap"
  24.         Load  "freetype"
  25.         Load  "type1"
  26. EndSection

  27. Section "InputDevice"
  28.         Identifier  "Keyboard0"
  29.         Driver      "kbd"
  30. EndSection

  31. Section "InputDevice"
  32.         Identifier  "Mouse0"
  33.         Driver      "mouse"
  34.         Option      "Protocol" "auto"
  35.         Option      "Device" "/dev/sysmouse"
  36.         Option      "ZAxisMapping" "4 5 6 7"
  37. EndSection

  38. Section "Device"
  39.         ### Available Driver options are:-
  40.         ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  41.         ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
  42.         ### [arg]: arg optional
  43.         #Option     "HWcursor"                   # [<bool>]
  44.         #Option     "NoAccel"                    # [<bool>]
  45.         Identifier  "Card0"
  46.         Driver      "vmware"
  47.         VendorName  "VMware Inc"
  48.         BoardName   "[VMware SVGA II] PCI Display Adapter"
  49.         BusID       "PCI:0:15:0"
  50. EndSection

  51. Section "Screen"
  52.         Identifier "Screen0"
  53.         Device     "Card0"
  54.         Monitor    "vmware"
  55.         SubSection "Display"
  56.                 Viewport   0 0
  57.                 Depth     1
  58.                 Modes   "1024x768"
  59.         EndSubSection
  60.         SubSection "Display"
  61.                 Viewport   0 0
  62.                 Depth     4
  63.                 Modes   "1024x768"
  64.         EndSubSection
  65.         SubSection "Display"
  66.                 Viewport   0 0
  67.                 Depth     8
  68.                 Modes   "1024x768"
  69.         EndSubSection
  70.         SubSection "Display"
  71.                 Viewport   0 0
  72.                 Depth     15
  73.                 Modes   "1024x768"
  74.         EndSubSection
  75.         SubSection "Display"
  76.                 Viewport   0 0
  77.                 Depth     16
  78.                 Modes   "1024x768"
  79.         EndSubSection
  80.         SubSection "Display"
  81.                 Viewport   0 0
  82.                 Depth     24
  83.                 Modes   "1024x768"
  84.         EndSubSection
  85. EndSection

  86. # VMware SVGA

  87. Section "Monitor"
  88.     Identifier  "vmware"
  89.     VendorName "VMware, Inc"
  90.     HorizSync 1-10000
  91.     VertRefresh 1-10000

  92.     ModeLine "640x480" 100 640 700 800 900 480 500 600 700
  93.     ModeLine "800x600" 100 800 900 1000 1100 600 700 800 900
  94.     ModeLine "1024x768" 100 1024 1100 1200 1300 768 800 900 1000
  95.     ModeLine "1152x864" 100 1152 1200 1300 1400 864 900 1000 1100
  96.     ModeLine "1152x900" 100 1152 1200 1300 1400 900 1000 1100 1200
  97.     ModeLine "1280x1024" 100 1280 1300 1400 1500 1024 1100 1200 1300
  98.     ModeLine "1376x1032" 100 1376 1400 1500 1600 1032 1100 1200 1300
  99.     ModeLine "1600x1200" 100 1600 1700 1800 1900 1200 1300 1400 1500
  100.     ModeLine "2364x1773" 100 2364 2400 2500 2600 1773 1800 1900 2000
  101. EndSection
复制代码



四、及时通讯软件 Gaim 和 eva 都没有加入群管理员的管理功能,这个最好加入一下。


目前就想到这么多,以后想到了,希望能随时与你联系上。

.^_^.
发表于 2007-2-25 00:28:31 | 显示全部楼层
好像目前这个版本的bsd没有开发了,要么进展缓慢。我反正好长时间没有看到新的了。

还有你的错误够严重了。gnome不是gname。把我吓一跳,以为什么新桌面。。安装了升级应该很方便才对。。

只是需要时间。。。
回复 支持 反对

使用道具 举报

发表于 2007-2-28 09:08:11 | 显示全部楼层
瓜兄好象不来这个地方,他常去CU和freebsdchina
回复 支持 反对

使用道具 举报

发表于 2007-5-9 20:29:56 | 显示全部楼层
我已经收录了你的xorg.conf脚本,在此表示感谢!
在完善几个中文方面的ports后,我将就FreeBSD 7.0或6.3Release基础上制作下一个版本的RelaxBSD,谢谢大家的关注!
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表