Find the answer to your Linux question:
Results 1 to 10 of 10
I've been trying to figure out how to change my resolution to 1280x1024 at 80Hz. I read other posts about how to do this but my xorg.conf doesn't list resolutions ...
  1. #1
    Just Joined!
    Join Date
    Nov 2006
    Posts
    11

    Changing resolution and refresh rate in Slackware 11.0

    I've been trying to figure out how to change my resolution to 1280x1024 at 80Hz. I read other posts about how to do this but my xorg.conf doesn't list resolutions like the other xorg.conf files I looked at. I also have no i idea about how to change the refresh rate.

    This is the monitor im using
    http://www.viewsonic.com/support/des...91fplus/#specs

    My video adapter is built into my motherboard and im not sure what it is. What happened to superprobe? Is there a replacement?

    This is my xorg.conf as created by xorgsetup:
    Code:
    Section "ServerLayout"
    	Identifier     "X.org Configured"
    	Screen      0  "Screen0" 0 0
    	InputDevice    "Mouse0" "CorePointer"
    	InputDevice    "Keyboard0" "CoreKeyboard"
    EndSection
    
    Section "Files"
    	RgbPath      "/usr/X11R6/lib/X11/rgb"
    	ModulePath   "/usr/X11R6/lib/modules"
    	FontPath     "/usr/X11R6/lib/X11/fonts/misc/"
    	FontPath     "/usr/X11R6/lib/X11/fonts/TTF/"
    	FontPath     "/usr/X11R6/lib/X11/fonts/Type1/"
    	FontPath     "/usr/X11R6/lib/X11/fonts/CID/"
    	FontPath     "/usr/X11R6/lib/X11/fonts/75dpi/"
    	FontPath     "/usr/X11R6/lib/X11/fonts/100dpi/"
    EndSection
    
    Section "Module"
    	Load  "glx"
    	Load  "extmod"
    	Load  "xtrap"
    	Load  "record"
    	Load  "dbe"
    	Load  "dri"
    	Load  "freetype"
    	Load  "type1"
    EndSection
    
    Section "InputDevice"
    	Identifier  "Keyboard0"
    	Driver      "kbd"
    	Option       "XkbModel"  "pc101"
    	Option       "XkbLayout"  "us"
    EndSection
    
    Section "InputDevice"
    	Identifier  "Mouse0"
    	Driver      "mouse"
    	Option	    "Protocol" "auto"
    	Option	    "Device" "/dev/mouse"
    	Option	    "ZAxisMapping" "4 5 6 7"
    EndSection
    
    Section "Monitor"
    	#DisplaySize	  360   270	# mm
    	Identifier   "Monitor0"
    	VendorName   "VSC"
    	ModelName    "A91f+"
     ### Comment all HorizSync and VertSync values to use DDC:
    	HorizSync    30.0 - 86.0
    	VertRefresh  50.0 - 180.0
    	Option	    "DPMS"
    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"
    	VendorName  "Intel Corporation"
    	BoardName   "82810E DC-133 CGC [Chipset Graphics Controller]"
    	BusID       "PCI:0:1:0"
    EndSection
    
    Section "Screen"
    	Identifier "Screen0"
    	Device     "Card0"
    	Monitor    "Monitor0"
    	DefaultDepth 24
    	SubSection "Display"
    		Viewport   0 0
    		Depth     1
    	EndSubSection
    	SubSection "Display"
    		Viewport   0 0
    		Depth     4
    	EndSubSection
    	SubSection "Display"
    		Viewport   0 0
    		Depth     8
    	EndSubSection
    	SubSection "Display"
    		Viewport   0 0
    		Depth     15
    	EndSubSection
    	SubSection "Display"
    		Viewport   0 0
    		Depth     16
    	EndSubSection
    	SubSection "Display"
    		Viewport   0 0
    		Depth     24
    	EndSubSection
    EndSection
    Thanks in advance for the help!

  2. #2
    Just Joined!
    Join Date
    Nov 2006
    Posts
    11
    bump, post was on second page

    how can nobody know how to change resolution and refresh rate?

  3. #3
    Just Joined!
    Join Date
    Nov 2006
    Posts
    11
    bump
    no responses???
    this has been up since 11-26-2006

  4. #4
    Trusted Penguin Dapper Dan's Avatar
    Join Date
    Oct 2004
    Location
    The Sovereign State of South Carolina
    Posts
    4,562
    Your xorg.conf looks very different than mine. For one thing, I'm not seeing the resolution section in yours either. Is that how your xorg.conf appeared the first time you looked at it? Here's the resolution section from mine...
    Code:
    # "1024x768" is also a conservative usable default resolution.  If you
    # have a better monitor, feel free to try resolutions such as
    # "1152x864", "1280x1024", "1600x1200", and "1800x1400" (or whatever your
    # card/monitor can produce)
    
        Subsection "Display"
            Depth       8
            Modes "1024x768" "800x600" "640x480"
        EndSubsection
        Subsection "Display"
            Depth       16
            Modes "800x600" "640x480"
        EndSubsection
        Subsection "Display"
            Depth       24
            Modes "1024x768" "800x600" "640x480"
        EndSubsection
        Subsection "Display"
            Depth       32
            Modes "1024x768" "800x600" "640x480"
        EndSubsection
    
    EndSection
    ...and that's where you set the different resolutions. If you need it, I can post my xorg.conf and you can configure it from scratch for yours. Let me know...
    Last edited by Dapper Dan; 12-11-2006 at 01:27 PM.
    Linux Mint + IceWM Registered:#371367 New Members: click here

  5. #5
    Banned
    Join Date
    Nov 2004
    Location
    Belgium
    Posts
    1,121
    Quote Originally Posted by Dapper Dan
    Your xorg.conf looks very different than mine. For one thing, I'm not seeing the resolution section in yours either. Is that how your xorg.conf appeared the first time you looked at it?
    That's cause the installer used xorgsetup instead of xorgconfig
    Just run xorgconfig and you'll get a normal config file.

  6. #6
    Trusted Penguin Dapper Dan's Avatar
    Join Date
    Oct 2004
    Location
    The Sovereign State of South Carolina
    Posts
    4,562
    jens! You've been gone for a while! I see you're back in full force...
    Linux Mint + IceWM Registered:#371367 New Members: click here

  7. #7
    Just Joined!
    Join Date
    Nov 2006
    Posts
    11
    I can't get xorgconfig to create a xorg.conf file that works, I've tried it tons of times doing things differently. I have no idea what driver to select, how much memory the card has of how to find out. What happened to superprobe? is there a replacement?

  8. #8
    Just Joined!
    Join Date
    Nov 2006
    Posts
    11
    I know how to use xorgconfig but I have no idea how to configure it without any specs. I don't know the speed, amount of memory, the manufacturer or what driver it uses. The only thing I know about it is that its a VGA video card built into the motherboard. How do I figure these things out?

    Thanks in advance for the help.

  9. #9
    Just Joined!
    Join Date
    Nov 2006
    Posts
    11
    I used lspci to find this out:
    Code:
    # lspci -vvv -s 00:01.0
    
    00:01.0 VGA compatible controller: Intel Corporation 82810E DC-133 CGC [Chipset Graphics Controller] (rev 03) (prog-if 00 [VGA])
            Subsystem: Compaq Computer Corporation Unknown device b165
            Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
            Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
            Latency: 0
            Interrupt: pin A routed to IRQ 3
            Region 0: Memory at 44000000 (32-bit, prefetchable) [size=64M]
            Region 1: Memory at 40100000 (32-bit, non-prefetchable) [size=512K]
            Capabilities: [dc] Power Management version 1
                    Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
                    Status: D0 PME-Enable- DSel=0 DScale=0 PME-
    How do I figure out what card and how much memory to specify when using xorgconfig?

  10. #10
    Banned
    Join Date
    Nov 2004
    Location
    Belgium
    Posts
    1,121
    Quote Originally Posted by noobslacker
    I used lspci to find this out:
    Code:
    # lspci -vvv -s 00:01.0
    
    00:01.0 VGA compatible controller: Intel Corporation 82810E DC-133 CGC [Chipset Graphics Controller] (rev 03) (prog-if 00 [VGA])
            Subsystem: Compaq Computer Corporation Unknown device b165
            Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-
            Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
            Latency: 0
            Interrupt: pin A routed to IRQ 3
            Region 0: Memory at 44000000 (32-bit, prefetchable) [size=64M]
            Region 1: Memory at 40100000 (32-bit, non-prefetchable) [size=512K]
            Capabilities: [dc] Power Management version 1
                    Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
                    Status: D0 PME-Enable- DSel=0 DScale=0 PME-
    How do I figure out what card and how much memory to specify when using xorgconfig?
    If you're unsure about your hardware, it might be easier to use some safe defaults. Live CDs can give you an easy example on how to change it(xorg.conf) later.
    You really should ask your hardware vendor about all the details (non of the probing tools are perfect).

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...