QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 1605|回复: 7

如何调整显示以达到16位色?

[复制链接]
发表于 2003-1-4 12:08:35 | 显示全部楼层 |阅读模式
一台配置为CPU C300/HY 196M/Trident 975/IBM 20G 的机子,安装的系统为Mandrake8.2
在98下显示能达到800X600 32真彩色 刷新频率85Hz。
我只希望在linux下能达到800X600 16真彩色 刷新75Hz,
目前的设置为800X600 8位色 刷新85Hz(刷新是从显示器的菜单设置上得来的 V.fq 85.0Hz H.fq 53.7Hz)。
在用Drakconf查看信息为:
XFree 4.2.0
...
Monitor:Fujitsu | Fujitsu FMV-DP845
Graphic card: Trident 3DImage975 (generic)
Graphic memory: 4096 kB
XFree86 server:SVGA
XFree86 driver:trident

那么说明显示的具体配置是使用XF86Config-4文件,但我发现XF86Config中的设置比XF86Config-4更具体,把Fujitsu显示器我所关心的800X600 72Hz的设置也列在其中,而XF86Config-4却只简单的寥寥几句。
我希望知道该如何设置以实现16dpp?在用Drakconf设置均告失败,不知是否可以通过更改XF86Config(-4)得以实现?望告知~~~
发表于 2003-1-4 13:03:03 | 显示全部楼层
类似修改,修改前注意,备份原来的XF86Config:
Section "Screen"
        Identifier "Screen0"
        Device     "NVIDIA GeForce 2 MX (generic)"
        Monitor    "Monitor0"
        DefaultDepth     16         <---指定当前使用色深,可以改成其他的
        SubSection "Display"
                Depth     16           <---指定16位色深可用分辩率
                Modes    "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth     24           <---指定24位(也就是32bit色)色深可用分辩率
                Modes    "1024x768" "800x600" "640x480"
        EndSubSection
EndSection
回复

使用道具 举报

 楼主| 发表于 2003-1-4 15:01:03 | 显示全部楼层
改成16以后,效果极差~~~
是不是X对硬件的要求很高?
我的显示器和显卡都能支持800X600 32dpp 85Hz,并在98下显示正常,但在linux下就不行。
下面是我的XF86Config-4文件中关于显示的部分:
[code:1]
Section "Monitor"
    Identifier "Fujitsu|Fujitsu FMV-DP845"
    VendorName "Fujitsu"
    ModelName  "Unknown"
    HorizSync  30.0-65.0
    VertRefresh 50.0-100.0
# Sony Vaio C1(X,XS,VE,VN)?
# 1024x480 @ 85.6 Hz, 48 kHz hsync
ModeLine "1024x480"    65.00 1024 1032 1176 1344   480  488  494  563 -hsync -vsync
# 768x576 @ 79 Hz, 50 kHz hsync
ModeLine "768x576"     50.00  768  832  846 1000   576  590  595  630
# 768x576 @ 100 Hz, 61.6 kHz hsync
ModeLine "768x576"     63.07  768  800  960 1024   576  578  590  616
EndSection

# Graphics device section
Section "Device"
    Identifier "Generic VGA"
    Driver     "vga"
EndSection
Section "Device"
    Identifier  "Trident 3DImage975 (generic)"
    VendorName  "Unknown"
    BoardName   "Unknown"
    Driver      "trident"
#    VideoRam    4096
    # Clock lines
    # Uncomment following option if you see a big white block        
    # instead of the cursor!                                          
    #    Option      "sw_cursor"
    Option      "DPMS"  "on"
EndSection

# Screen sections
Section "Screen"
    Identifier "screen1"
    Device      "Trident 3DImage975 (generic)"
    Monitor     "Fujitsu|Fujitsu FMV-DP845"
    DefaultColorDepth 16
    Subsection "Display"
        Depth       8
        Modes       "800x600" "640x480"
        ViewPort    0 0
    EndSubsection
    Subsection "Display"
        Depth       15
        Modes       "800x600" "640x480"
        ViewPort    0 0
    EndSubsection
    Subsection "Display"
        Depth       16
        Modes       "800x600" "640x480"
        ViewPort    0 0
    EndSubsection
    Subsection "Display"
        Depth       24
        Modes       "800x600" "640x480"
        ViewPort    0 0
    EndSubsection
    Subsection "Display"
        Depth       32
        Modes       "800x600" "640x480"
        ViewPort    0 0
    EndSubsection
EndSection
Section "ServerLayout"
    Identifier "layout1"
    Screen     "screen1"
    InputDevice "Mouse1" "CorePointer"
    InputDevice "Keyboard1" "CoreKeyboard"
EndSection
[/code:1]
帮我看看还要设置什么?
回复

使用道具 举报

发表于 2003-1-4 19:36:28 | 显示全部楼层
XF86Config应该就是这样,你效果差是指?
回复

使用道具 举报

 楼主| 发表于 2003-1-4 21:59:06 | 显示全部楼层
是指看不清图标、图片的具体内容,其色彩浑浊不堪,也无法辨别具体色彩。用8位色可以,但毕竟只有256色,看得也不舒服。
回复

使用道具 举报

 楼主| 发表于 2003-1-4 22:48:02 | 显示全部楼层
请看贴图 进入后桌面的效果也是这样  :-(

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?注册

×
回复

使用道具 举报

发表于 2003-1-4 23:10:32 | 显示全部楼层
应该是你的显卡不支持,或者linux对你的显卡支持不好,没有很好的驱动
回复

使用道具 举报

 楼主| 发表于 2003-1-4 23:31:02 | 显示全部楼层
恐怕真是这样了~~~  :-(

多谢llc和coolove !
回复

使用道具 举报

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

本版积分规则

GMT+8, 2024-9-29 13:27 , Processed in 0.063013 second(s), 17 queries .

© 2021 Powered by Discuz! X3.5.

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