veket官方网站论坛

veketx

 找回密码
 要注册
搜索
楼主: 风清扬

veket易柰问答(互助解答)

[复制链接]
发表于 2010-2-21 22:06 | 显示全部楼层

回复 904# 的帖子

拷贝到/etc/X11/xorg.conf中的Monitor段

这一步你未做正确所致,仔细琢磨下,只要设置正确就肯定行了的。
发表于 2010-2-21 22:07 | 显示全部楼层
原帖由 Guest from 119.136.63.x 于 2010-2-21 21:25 发表

可以得到三个 1920x1200 x 8bit/16bit/32bit,分别试过加载都显示complete,startx之后都是1024x768

915resolution -l
既然你能得到正确的模式,那么表示支持并识别你的显卡和显示器匹配的模式的,拷到文件xorg.conf中正确设置就行了。
匿名  发表于 2010-2-21 23:55

按照說明:
sh-3.00# gtf 1920 1200 60

  # 1920x1200 @ 60.00 Hz (GTF) hsync: 74.52 kHz; pclk: 193.16 MHz
  Modeline "1920x1200_60.00"  193.16  1920 2048 2256 2592  1200 1201 1204 1242  -HSync +Vsync
然後拷贝到/etc/X11/xorg.conf中的Monitor段是不是這樣:
Section "Monitor"
        #DisplaySize          410   260        # mm
        Identifier   "Monitor0"
        VendorName   "CGC"
        ModelName    "L24"
        ### Comment all HorizSync and VertRefresh values to use DDC:
        Option            "DPMS"
        HorizSync    31.0-81.0
        VertRefresh  57.0-63.0
        #UseModes     "Modes0" #monitor0usemodes
        Option      "PreferredMode" "1920x1200"
      # 1920x1200 @ 60.00 Hz (GTF) hsync: 74.52 kHz; pclk: 193.16 MHz
      Modeline "1920x1200_60.00"  193.16  1920 2048 2256 2592  1200 1201 1204 1242  -HSync +Vsync

        EndSection
在純命令行中之後步驟照做,重啟之後還是老樣子。快吐血拉,做了十幾次了
匿名  发表于 2010-2-21 23:57
把上面這一行刪掉也是老樣子,難度復制粘貼還有特別的技巧?
# 1920x1200 @ 60.00 Hz (GTF) hsync: 74.52 kHz; pclk: 193.16 MHz
匿名  发表于 2010-2-21 23:59
我幹脆把整個文件放上來,請高手幫看下哪裏有問題:
#Special base config file used in Puppy Linux.

# **********************************************************************
# Module section -- this  section  is used to specify
# which dynamically loadable modules to load.
# **********************************************************************
#
Section "Module"
        Load "synaptics"

# This loads the DBE extension module.

    Load        "dbe"          # Double buffer extension

# This loads the miscellaneous extensions module, and disables
# initialisation of the XFree86-DGA extension within that module.
    SubSection  "extmod"
      Option    "omit xfree86-dga"   # don't initialise the DGA extension
    EndSubSection

# This loads the font modules
    Load        "type1"
    Load        "freetype"

# This loads xtrap extension, used by xrandr
    Load       "xtrap"

# This loads the GLX module (if present)
    Load       "glx"

# This loads dri module (if present)
    Load       "dri"

EndSection

# **********************************************************************
# Files section.  This allows default font and rgb paths to be set
# **********************************************************************

Section "Files"

# The location of the RGB database.  Note, this is the name of the
# file minus the extension (like ".txt" or ".db").  There is normally
# no need to change the default.

    RgbPath        "/usr/X11R7/lib/X11/rgb"

# Multiple FontPath entries are allowed (which are concatenated together),
# as well as specifying multiple comma-separated entries in one FontPath
# command (or a combination of both methods)

    FontPath   "/usr/X11R7/lib/X11/fonts/misc/"
    FontPath   "/usr/X11R7/lib/X11/fonts/Type1/"
    FontPath   "/usr/X11R7/lib/X11/fonts/TTF/"

EndSection

# **********************************************************************
# Server flags section.
# **********************************************************************

Section "ServerFlags"

# Uncomment this to disable the <Crtl><Alt><Fn> VT switch sequence
# (where n is 1 through 12).  This allows clients to receive these key
# events.

#    Option "DontVTSwitch"

# Enables mode switching with xrandr
# There is a report that this can cause Xorg not to work on some
# video hardware, so default is commented-out...
# but i want to use it in xorgwizard so leave on...

    Option "RandR" "on"

EndSection

Section "Extensions"
    Option "Composite" "Enable"
    Option "RENDER" "Enable"
EndSection

#everything past here is auto-generated by Puppy's Xorg Wizard...


Section "ServerLayout"
        InputDevice "Synaptics Mouse" "AlwaysCore"
        Identifier     "X.org Configured"
        Screen      0  "Screen0" 0 0
        InputDevice    "Mouse0" "CorePointer"
        InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "kbd"
        Option      "XkbRules" "xorg"
        Option      "XkbModel" "pc102"
        Option      "XkbLayout" "us" #xkeymap0
EndSection

Section "InputDevice"
        Identifier  "Mouse0"
        Driver      "mouse"
        Option            "Protocol" "IMPS/2" #mouse0protocol
        Option            "Device" "/dev/mouse"
        #Option      "Emulate3Buttons"
        #Option      "Emulate3Timeout" "50"
        Option      "ZAxisMapping" "4 5" #scrollwheel
EndSection

Section "InputDevice"
        Identifier "Synaptics Mouse"
        Driver "synaptics"
        Option "Device" "/dev/psaux"
        Option "Protocol" "auto-dev"
        Option "LeftEdge" "1700"
        Option "RightEdge" "5300"
        Option "TopEdge" "1700"
        Option "BottomEdge" "4200"
        Option "FingerLow" "25"
        Option "FingerHigh" "30"
        Option "MaxTapTime" "0"
        Option "MaxTapMove" "220"
        Option "VertScrollDelta" "100"
        Option "MinSpeed" "0.10"
        Option "MaxSpeed" "0.30"
        Option "AccelFactor" "0.0030"
        Option "SHMConfig" "on"
        #Option "Repeater" "/dev/ps2mouse"
EndSection

Section "Monitor"
        #DisplaySize          410   260        # mm
        Identifier   "Monitor0"
        VendorName   "CGC"
        ModelName    "L24"
        ### Comment all HorizSync and VertRefresh values to use DDC:
        Option            "DPMS"
        HorizSync    31.0-81.0
        VertRefresh  57.0-63.0
        #UseModes     "Modes0" #monitor0usemodes
        Option      "PreferredMode" "1920x1200"
      # 1920x1200 @ 60.00 Hz (GTF) hsync: 74.52 kHz; pclk: 193.16 MHz
      Modeline "1920x1200_60.00"  193.16  1920 2048 2256 2592  1200 1201 1204 1242  -HSync +Vsync
        EndSection
       
Section "Modes"
        Identifier "Modes0"
        #modes0modeline0
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
        ### [arg]: arg optional
        #Option     "NoAccel"                    # [<bool>]
        #Option     "SWcursor"                   # [<bool>]
        #Option     "ColorKey"                   # <i>
        #Option     "CacheLines"                 # <i>
        #Option     "Dac6Bit"                    # [<bool>]
        #Option     "DRI"                        # [<bool>]
        #Option     "NoDDC"                      # [<bool>]
        #Option     "ShowCache"                  # [<bool>]
        #Option     "XvMCSurfaces"               # <i>
        #Option     "PageFlip"                   # [<bool>]
        Identifier  "Card0"
        Driver      "i810" #card0driver
        VendorName  "Intel Corporation"
        BoardName   "Mobile 945GM/GMS/940GML Express Integrated Graphics Controller"
        BusID       "PCI:0:2:0"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device     "Card0"
        Monitor    "Monitor0"
    DefaultDepth 16
    Subsection "Display"
        Depth       16
        Modes       "1920x1200"
    EndSubsection
EndSection

#PuppyHardwareProfile=Intel_r__82945GM_ChipsetL24
您需要登录后才可以回帖 登录 | 要注册

本版积分规则

QQ|手机版|Archiver|veket官方网站论坛,veketx官方网站论坛,微器人 ( 粤ICP备 11052856 )

GMT+8, 2025-7-8 15:27

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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