Resolution question

sossego

Retired from the forums
Seeing that Xorg is different, my resolution is at 1024x768 but the card and monitor together are capable of 1600x1200. I can shrink kde4 to 1/4 the size but the active window still remains at 1024x768 max resolution/size.
I'm using radeon and the card is recognized. HorizSync and VertRefresh are set according to manufacturer. Where do I go about setting up resolution and depth? I've seen a bit posted on an ubuntu mailing list; however, I don't know what methods were used to set up the card. Is it possible to use the older Xorgconfig?

Oh yeah, I'm setup with SSH enabled but I haven't set up or limited the users yet. Trying to get the screen resolutions and cdrom permissions set.
 
If you have a recent Xorg (7.4) you could try removing xorg.conf altogether. It's not really needed anymore.
 
Add a DefaultDepth option and in the SubSection "Display" for the specific depth, add a Virtual option. E.g.:

Code:
Section "Screen"
	Identifier "Screen0"
	Device     "Card0"
	Monitor    "Monitor0"
	DefaultDepth  24
[...]
	SubSection "Display"
		Viewport   0 0
		Depth     24
		Virtual 1600 1200
	EndSubSection
 
I went ahead and made a single mode of "1600x1200" along with making the default depth of 24. The resolution is better. Thanks.
 
Do note that the Virtual keyword will create a virtual desktop of that size. The resolution could still be 800x600, while the virtual is 1600x1200. When you move your mouse to the edge it will scroll.

You can get the 'real' deal by using Modes:
Code:
Modes "1600x1200" "1280x1024" "1024x768"
 
SirDice said:
Do note that the Virtual keyword will create a virtual desktop of that size. The resolution could still be 800x600, while the virtual is 1600x1200. When you move your mouse to the edge it will scroll.

This is not the case for any driver that uses xrandr 1.2. That functionality is no longer present in those drivers, in fact.

Adam
 
Back
Top