Announcement

Collapse
No announcement yet.

setting video resolutions that are not shown

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    setting video resolutions that are not shown

    Hi can somebody provide me with advice on how to set video resolutions that are not offered in setting. Kubuntu seems to have detected my video card (ATI All-in-wonder 9600 but only offers me a max resolution of 1024 x 768, normaly I use 1280 x 1024

    #2
    Re: setting video resolutions that are not shown

    Start a konsole: K>System (NOT System Settings or System Menu)>konsole. Then type
    Code:
    sudo dpkg-reconfigure xserver-xorg
    Before you do this though, write down the range of values for the Horizontal Sync frequency and the Vertical Refresh rate of your monitor. You can find these in the owners manual or on the manufacturer's web site if you know the model number. Then just set the preferred screen size when asked.

    Comment


      #3
      Re: setting video resolutions that are not shown

      Alternative:

      First backup /etc/X11/xorg.conf
      sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf_backup

      Then add resolution 1280 x 1024 to xorg.conf
      kdesu kate /etc/X11/xorg.conf

      You have something like this (i have 9600XT):

      Code:
      Section "Screen"
      	Identifier	"Default Screen"
      	Device		"ATI Technologies, Inc. Radeon 9600 XT (RV350 AR)"
      	Monitor		"Generic Monitor"
      	DefaultDepth	24
      	SubSection "Display"
      		Depth		1
      		Modes		"1024x768" "800x600" "640x480"
      	EndSubSection
      	SubSection "Display"
      		Depth		4
      		Modes		"1024x768" "800x600" "640x480"
      	EndSubSection
      	SubSection "Display"
      		Depth		8
      		Modes		"1024x768" "800x600" "640x480"
      	EndSubSection
      	SubSection "Display"
      		Depth		15
      		Modes		"1024x768" "800x600" "640x480"
      	EndSubSection
      	SubSection "Display"
      		Depth		16
      		Modes		"1024x768" "800x600" "640x480"
      	EndSubSection
      	SubSection "Display"
      		Depth		24
      		Modes		"1024x768" "800x600" "640x480"
      	EndSubSection
      EndSection
      Just add 1280 x 1024:

      Code:
      Section "Screen"
      	Identifier	"Default Screen"
      	Device		"ATI Technologies, Inc. Radeon 9600 XT (RV350 AR)"
      	Monitor		"Generic Monitor"
      	DefaultDepth	24
      	SubSection "Display"
      		Depth		1
      		Modes		"1280x1024" "1024x768" "800x600" "640x480"
      	EndSubSection
      	SubSection "Display"
      		Depth		4
      		Modes		"1280x1024" "1024x768" "800x600" "640x480"
      
      You know ...

      Before you edit, BACKUP !

      Why there are dead links ?
      1. Thread: Please explain how to access old kubuntu forum posts
      2. Thread: Lost Information

      Comment


        #4
        Re: setting video resolutions that are not shown

        Thanks to both of you for your excellent concise and fast responce. Puts Windoz to shame, thanks again John

        Comment

        Working...
        X