Find the answer to your Linux question:
Results 1 to 3 of 3
hi all I am having a problem with the screen resolution, unable to get above 800x600. I have tried various things suggested on this forum, including editing xorg.conf ( twice ...
  1. #1
    Just Joined!
    Join Date
    Nov 2009
    Posts
    2

    [SOLVED] screen resolution ubuntu 9.10

    hi all
    I am having a problem with the screen resolution, unable to get above 800x600. I have tried various things suggested on this forum, including editing xorg.conf ( twice needing a visit to the recovery console) all to no avail. I know the monitor(Yuraku MJ7CNA) is capable of 1280x1024 but that option is not in the display settings.
    lspci gives me
    00:00.0 Host bridge: VIA Technologies, Inc. VT8363/8365 [KT133/KM133] (rev 03)
    00:01.0 PCI bridge: VIA Technologies, Inc. VT8363/8365 [KT133/KM133 AGP]
    00:07.0 ISA bridge: VIA Technologies, Inc. VT82C686 [Apollo Super South] (rev 40)
    00:07.1 IDE interface: VIA Technologies, Inc. VT82C586A/B/VT82C686/A/B/VT823x/A/C PIPC Bus Master IDE (rev 06)
    00:07.2 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 16)
    00:07.3 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 16)
    00:07.4 Bridge: VIA Technologies, Inc. VT82C686 [Apollo Super ACPI] (rev 40)
    00:08.0 Multimedia audio controller: Creative Labs SB Live! EMU10k1 (rev 07)
    00:08.1 Input device controller: Creative Labs SB Live! Game Port (rev 07)
    00:0a.0 PCI bridge: Digital Equipment Corporation DECchip 21152 (rev 03)
    00:0b.0 Ethernet controller: VIA Technologies, Inc. VT6105/VT6106S [Rhine-III] (rev 8b)
    00:0c.0 FireWire (IEEE 1394): Texas Instruments TSB12LV26 IEEE-1394 Controller (Link)
    01:00.0 VGA compatible controller: Matrox Graphics, Inc. MGA G400/G450 (rev 82)
    02:04.0 Multimedia controller: Philips Semiconductors SAA7146 (rev 01)
    02:08.0 Multimedia controller: C-Cube Microsystems E4? (rev b1)
    02:0c.0 FireWire (IEEE 1394): Texas Instruments TSB12LV26 IEEE-1394 Controller (Link)

    and xorg.conf
    # xorg.conf (X.Org X Window System server configuration file)
    #
    # This file was generated by dexconf, the Debian X Configuration tool, using
    # values from the debconf database.
    #
    # Edit this file with caution, and see the xorg.conf manual page.
    # (Type "man xorg.conf" at the shell prompt.)
    #
    # This file is automatically updated on xserver-xorg package upgrades *only*
    # if it has not been modified since the last upgrade of the xserver-xorg
    # package.
    #
    # If you have edited this file but would like it to be automatically updated
    # again, run the following command:
    # sudo dpkg-reconfigure -phigh xserver-xorg

    # commented out by update-manager, HAL is now used
    #Section "InputDevice"
    # Identifier "Generic Keyboard"
    # Driver "kbd"
    # Option "XkbRules" "xorg"
    # Option "XkbModel" "pc105"
    # Option "XkbLayout" "es"
    #EndSection

    # commented out by update-manager, HAL is now used
    #Section "InputDevice"
    # Identifier "Configured Mouse"
    # Driver "mouse"
    # Option "CorePointer"
    #EndSection

    Section "Device"
    Identifier "Configured Video Device"
    # Identifier "Matrox MGA G450"
    EndSection

    Section "Monitor"
    Identifier "Configured Monitor"

    EndSection


    Section "Screen"
    Identifier "Default Screen"
    Monitor "Configured Monitor"
    Device "Configured Video Device"

    EndSection

    Section "ServerLayout"
    Identifier "Default Layout"
    Screen "Default Screen"
    EndSection

    I am a total linux newbie and would be grateful for any assistance that anyone could give
    ps: I have downloaded the matrox linux drivers but they didnt help either
    jim
    Last edited by daemon52; 11-05-2009 at 12:28 PM. Reason: problem solved

  2. #2
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Try using "via" driver and if it doesn't work, use "vesa" driver.
    Check Monitor's Manual for supported HorizSync and VertRefresh rates.
    Code:
    Section "Device"
    	Identifier	"Configured Video Device"
    	Driver		"via"
    	BusID		"PCI:1:0:0"
    EndSection
    
    Section "Monitor"
    	Identifier	"Generic Monitor"
    	Option		"DPMS"
    	HorizSync	30-71
    	VertRefresh	50-160
    EndSection
    
    Section "Screen"
    	Identifier	"Default Screen"
    	Device		"Configured Video Device"
    	Monitor		"Generic Monitor"
    	DefaultDepth	24
    	SubSection "Display"
    		Depth		24
    		Modes		"1280x1024" "1024x768" 
    	EndSubSection
    EndSection
    
    Section "ServerLayout"
    	Identifier	"Default Layout"
    	Screen		"Default Screen"
    	InputDevice	"Generic Keyboard"
    EndSection
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  3. #3
    Just Joined!
    Join Date
    Nov 2009
    Posts
    2
    thank you so much . the via driver wrecked the display but the vesa driver added both new resolutions to the display preference panel and i was able to set the correct resolution.
    my friend...you walk on water..thanks again

Posting Permissions

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