LinuxSir.cn,穿越时空的Linuxsir!

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

有谁在IBM-T43上成功安装了FreeBSD?

[复制链接]
发表于 2008-11-17 20:14:45 | 显示全部楼层 |阅读模式
我的电脑是IBM-T43p,显卡是ATI MOBILITY FIREGL V3200,想体验一下FreeBSD的桌面环境.

我装好FreeBSD系统以后成功安装 xorg 和 kde 但无论如何也装不上显卡的驱动,一运行startx只是花屏, 应该显卡的驱动程序不对吧.
请问大家有没有成功安装的经验,分享一下吧,先谢谢啦.
 楼主| 发表于 2008-11-28 09:39:58 | 显示全部楼层
问题解决了。现在将心得分享一下,希望对跟我一样在T43p上运行FreeBSD的朋友有帮助

当看到一个黑灰的格子和一个 X 形的鼠标指针,那么配置就是成功的。 要退出测试,只要同时按下 Ctrl+Alt+Backspace返回命令模式
如果你已经装好了KDE,那到请执行
echo "exec startxkde" > ~/.xinitrc


/etc/X11/xorg.conf 的配置如下:
  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/local/share/X11/rgb"
  9. ModulePath "/usr/local/lib/xorg/modules"
  10. FontPath "/usr/local/lib/X11/fonts/misc/"
  11. FontPath "/usr/local/lib/X11/fonts/TTF/"
  12. FontPath "/usr/local/lib/X11/fonts/OTF"
  13. FontPath "/usr/local/lib/X11/fonts/Type1/"
  14. FontPath "/usr/local/lib/X11/fonts/100dpi/"
  15. FontPath "/usr/local/lib/X11/fonts/75dpi/"
  16. EndSection

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

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

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

  39. Section "Monitor"
  40. Identifier "Monitor0"
  41. VendorName "Monitor Vendor"
  42. ModelName "Monitor Model"
  43. EndSection

  44. Section "Device"
  45. ### Available Driver options are:-
  46. ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  47. ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
  48. ### [arg]: arg optional
  49. #Option "NoAccel" # [<bool>]
  50. #Option "SWcursor" # [<bool>]
  51. #Option "Dac6Bit" # [<bool>]
  52. #Option "Dac8Bit" # [<bool>]
  53. #Option "BusType" # [<str>]
  54. #Option "CPPIOMode" # [<bool>]
  55. #Option "CPusecTimeout" # <i>
  56. #Option "AGPMode" # <i>
  57. #Option "AGPFastWrite" # [<bool>]
  58. #Option "AGPSize" # <i>
  59. #Option "GARTSize" # <i>
  60. #Option "RingSize" # <i>
  61. #Option "BufferSize" # <i>
  62. #Option "EnableDepthMoves" # [<bool>]
  63. #Option "EnablePageFlip" # [<bool>]
  64. #Option "NoBackBuffer" # [<bool>]
  65. #Option "DMAForXv" # [<bool>]
  66. #Option "FBTexPercent" # <i>
  67. #Option "DepthBits" # <i>
  68. #Option "PCIAPERSize" # <i>
  69. #Option "AccelDFS" # [<bool>]
  70. #Option "DDCMode" # [<bool>]
  71. #Option "IgnoreEDID" # [<bool>]
  72. #Option "DisplayPriority" # [<str>]
  73. #Option "PanelSize" # [<str>]
  74. #Option "ForceMinDotClock" # <freq>
  75. #Option "ColorTiling" # [<bool>]
  76. #Option "VideoKey" # <i>
  77. #Option "RageTheatreCrystal" # <i>
  78. #Option "RageTheatreTunerPort" # <i>
  79. #Option "RageTheatreCompositePort" # <i>
  80. #Option "RageTheatreSVideoPort" # <i>
  81. #Option "TunerType" # <i>
  82. #Option "RageTheatreMicrocPath" # <str>
  83. #Option "RageTheatreMicrocType" # <str>
  84. #Option "ScalerWidth" # <i>
  85. #Option "RenderAccel" # [<bool>]
  86. #Option "SubPixelOrder" # [<str>]
  87. #Option "ShowCache" # [<bool>]
  88. #Option "DynamicClocks" # [<bool>]
  89. #Option "VGAAccess" # [<bool>]
  90. #Option "ReverseDDC" # [<bool>]
  91. #Option "LVDSProbePLL" # [<bool>]
  92. #Option "AccelMethod" # <str>
  93. #Option "DRI" # [<bool>]
  94. #Option "ConnectorTable" # <str>
  95. #Option "DefaultConnectorTable" # [<bool>]
  96. #Option "DefaultTMDSPLL" # [<bool>]
  97. Identifier "Card0"
  98. Driver "ati"
  99. VendorName "ATI Technologies Inc"
  100. BoardName "M24GL [Mobility FireGL V3200]"
  101. BusID "PCI:1:0:0"
  102. EndSection

  103. Section "Screen"
  104. Identifier "Screen0"
  105. Device "Card0"
  106. Monitor "Monitor0"
  107. SubSection "Display"
  108. Viewport 0 0
  109. Depth 1
  110. EndSubSection
  111. SubSection "Display"
  112. Viewport 0 0
  113. Depth 4
  114. EndSubSection
  115. SubSection "Display"
  116. Viewport 0 0
  117. Depth 8
  118. EndSubSection
  119. SubSection "Display"
  120. Viewport 0 0
  121. Depth 15
  122. EndSubSection
  123. SubSection "Display"
  124. Viewport 0 0
  125. Depth 16
  126. EndSubSection
  127. SubSection "Display"
  128. Viewport 0 0
  129. Depth 24
  130. EndSubSection
  131. EndSection
复制代码
回复 支持 反对

使用道具 举报

发表于 2008-12-13 23:27:17 | 显示全部楼层
参考FreeBSD手册就ok了;
我也在T43装了FreeBSD 7.0,不过还没怎么用
回复 支持 反对

使用道具 举报

 楼主| 发表于 2008-12-17 09:08:24 | 显示全部楼层
楼上兄弟你的无线网卡装成功了吗?
回复 支持 反对

使用道具 举报

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

本版积分规则

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