LinuxSir.cn,穿越时空的Linuxsir!

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

Ati Mobility Radeon x1300 (DELL 6400) 怎么设置宽屏啊?

[复制链接]
发表于 2008-4-19 21:18:16 | 显示全部楼层 |阅读模式
我的系统是dell6400,显卡是Ati Mobility Radeon x1300,安装的是开源驱动,hwd检测好像是vesa,谁能给点设置宽屏的办法吗?

我安装驱动的命令是:
pacman -S xf86-video-ati libgl

网上找了很多东西,都不行。

我的xorg.conf内容如下(hwd生成,网上差资料胡乱改了一些^_^)


Section "ServerLayout"
        Identifier     "Xorg Configured"
        Screen      0  "Screen0" 0 0
        InputDevice    "Keyboard0" "CoreKeyboard"
# PS/2 Mouse not detected
# Serial Mouse not detected
        InputDevice    "USB Mouse" "CorePointer"
EndSection

Section "ServerFlags"
        Option "AllowMouseOpenFail"  "true"
       
EndSection

Section "Files"
        RgbPath      "/usr/share/X11/rgb"
        ModulePath   "/usr/lib/xorg/modules"
        FontPath     "/usr/share/fonts/misc:unscaled"
        FontPath     "/usr/share/fonts/misc"
        FontPath     "/usr/share/fonts/75dpi:unscaled"
        FontPath     "/usr/share/fonts/75dpi"
        FontPath     "/usr/share/fonts/100dpi:unscaled"
        FontPath     "/usr/share/fonts/100dpi"
        FontPath     "/usr/share/fonts/PEX"
# Additional fonts: Locale, Gimp, TTF...
        FontPath     "/usr/share/fonts/cyrillic"
#        FontPath     "/usr/share/lib/X11/fonts/latin2/75dpi"
#        FontPath     "/usr/share/lib/X11/fonts/latin2/100dpi"
# True type and type1 fonts are also handled via xftlib, see /etc/X11/XftConfig!
        FontPath     "/usr/share/fonts/Type1"
        FontPath     "/usr/share/fonts/ttf/western"
        FontPath     "/usr/share/fonts/ttf/decoratives"
        FontPath     "/usr/share/fonts/truetype"
        FontPath     "/usr/share/fonts/truetype/openoffice"
        FontPath     "/usr/share/fonts/truetype/ttf-bitstream-vera"
        FontPath     "/usr/share/fonts/latex-ttf-fonts"
        FontPath     "/usr/share/fonts/defoma/CID"
        FontPath     "/usr/share/fonts/defoma/TrueType"
EndSection

Section "Module"
        Load  "ddc"  # ddc probing of monitor
        Load  "dbe"
        Load  "dri"
        Load  "extmod"
        Load  "glx"
        Load  "bitmap" # bitmap-fonts
        Load  "type1"
        Load  "freetype"
        Load  "record"
        #   Load  "synaptics"
EndSection

Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "keyboard"
        Option      "CoreKeyboard"
        Option "XkbRules" "xorg"
        Option "XkbModel" "pc105"
        Option "XkbLayout" "us"
        Option "XkbVariant" ""
EndSection

Section "InputDevice"
        Identifier  "Serial Mouse"
        Driver      "mouse"
        Option      "rotocol" "Microsoft"
        Option      "Device" "/dev/ttyS0"
        Option      "Emulate3Buttons" "true"
        Option      "Emulate3Timeout" "70"
        Option            "SendCoreEvents"  "true"
EndSection

Section "InputDevice"
        Identifier  "S/2 Mouse"
        Driver      "mouse"
        Option      "rotocol" "auto"
        Option          "ZAxisMapping"          "4 5"
        Option      "Device" "/dev/psaux"
        Option      "Emulate3Buttons" "true"
        Option      "Emulate3Timeout" "70"
        Option            "SendCoreEvents"  "true"
EndSection

Section "InputDevice"
        Identifier      "USB Mouse"
        Driver          "mouse"
        Option          "Device"                "/dev/input/mice"
        Option                "SendCoreEvents"        "true"
        Option          "rotocol"              "IMPS/2"
        Option          "ZAxisMapping"          "4 5"
        Option          "Buttons"               "5"
EndSection

# Auto-generated by Archie mkxcfg

Section "Monitor"
        Identifier "Monitor0"
                Option "DPMS" "true"
#        HorizSync    28.0 - 78.0 # Warning: This may fry very old Monitors
        HorizSync    28.0 - 96.0 # Warning: This may fry old Monitors
        VertRefresh  50.0 - 75.0 # Very conservative. May flicker.
#        VertRefresh  50.0 - 62.0 # Extreme conservative. Will flicker. TFT default.
        #  Default modes distilled from
        #      "VESA and Industry Standards and Guide for Computer Display Monitor
        #       Timing", version 1.0, revision 0.8, adopted September 17, 1998.
        #  $XFree86: xc/programs/Xserver/hw/xfree86/etc/vesamodes,v 1.4 1999/11/18 16:52:17 tsi Exp $
       
        Modeline "1280x800_60.00"  83.46  1280 1344 1480 1680  800 801 804 828  -HSync +Vsync
EndSection

# Auto-generated by Archie mkxcfg


Section "Device"
        Identifier  "Card0"
        Driver      "vesa"
        VendorName  "All"
        BoardName   "All"
EndSection


Section "Screen"
        Identifier "Screen0"
        Device     "Card0"
        Monitor    "Monitor0"
        DefaultColorDepth 24
        SubSection "Display"
                Depth     1
                Modes "1280x800"
        EndSubSection
        SubSection "Display"
                Depth     4
                Modes "1280x800"
        EndSubSection
        SubSection "Display"
                Depth     8
                Modes "1280x800"
        EndSubSection
        SubSection "Display"
                Depth     15
                Modes "1280x800"
        EndSubSection
        SubSection "Display"
                Depth     16
                Modes "1280x800"
        EndSubSection
        SubSection "Display"
                Depth     24
                Modes "1280x800"
        EndSubSection
        SubSection "Display"
                Depth     32
                Modes "1280x800"
        EndSubSection
EndSection

Section "DRI"
        Mode 0666
EndSection

Section "Extensions"
    Option "Composite" "enable"
EndSection


已经解决了,谢谢!
发表于 2008-4-19 22:25:01 | 显示全部楼层
用catalyst:
pacman -S catalyst catalyst-utils
aticonfig --initial
回复 支持 反对

使用道具 举报

发表于 2008-4-19 23:33:25 | 显示全部楼层
开源驱动至少需要svn版本或者git版本的,源里面的所谓稳定版驱动铁定不支持的。至少不支持3d。搜搜论坛里面,zhuqin写了个git版本的开源驱动,我x700用起来很稳定。

还有官方catalyst也非常方便
回复 支持 反对

使用道具 举报

 楼主| 发表于 2008-4-20 10:00:47 | 显示全部楼层
catalyst的依赖关系中好像与一个core中的包冲突,没敢用,不知道这个冲突该怎么解决
回复 支持 反对

使用道具 举报

 楼主| 发表于 2008-4-20 12:59:56 | 显示全部楼层
闭源驱动安装好就可以宽屏了,谢谢。
回复 支持 反对

使用道具 举报

发表于 2008-12-24 09:36:12 | 显示全部楼层
怎么弄?帮我说说吧,我的qq:38641071
谢谢了
回复 支持 反对

使用道具 举报

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

本版积分规则

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