I lost my resolution

My screen resolution was fine, once I added gdm to rc.conf then I rebooted my system, and the resolution changed and I can't get back. I tried to remove gdm from rc.conf and start gdm manually but no hope.
 

Attachments

  • XorgLog.tar.bz2
    9.4 KB · Views: 169
@ahavatar
I didn't touch any thing, I just added gdm to rc.conf, after reboot. The icons become bigger.
Code:
Section "ServerLayout"
	Identifier     "X.org Configured"
	Screen      0  "Screen0" 0 0
	InputDevice    "Mouse0" "CorePointer"
	InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
	ModulePath   "/usr/local/lib/xorg/modules"
	FontPath     "/usr/local/lib/X11/fonts/misc/"
	FontPath     "/usr/local/lib/X11/fonts/TTF/"
	FontPath     "/usr/local/lib/X11/fonts/OTF"
	FontPath     "/usr/local/lib/X11/fonts/Type1/"
	FontPath     "/usr/local/lib/X11/fonts/100dpi/"
	FontPath     "/usr/local/lib/X11/fonts/75dpi/"
	FontPath     "/usr/local/lib/X11/fonts/TrueType/"
EndSection

Section "Module"
	Load  "extmod"
	Load  "record"
	Load  "dbe"
	Load  "glx"
	Load  "dri"
	Load  "dri2"
	Load  "freetype"
EndSection

Section "InputDevice"
	Identifier  "Keyboard0"
	Driver      "kbd"
EndSection

Section "InputDevice"
	Identifier  "Mouse0"
	Driver      "mouse"
	Option	    "Protocol" "auto"
	Option	    "Device" "/dev/sysmouse"
	Option	    "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
	Identifier   "Monitor0"
	VendorName   "Monitor Vendor"
	ModelName    "Monitor Model"
EndSection

Section "Device"
	Identifier  "Card0"
	Driver      "radeonhd"
	VendorName  "Advanced Micro Devices [AMD] nee ATI"
	BoardName   "RS780D [Radeon HD 3300]"
	BusID       "PCI:1:5:0"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Card0"
	Monitor    "Monitor0"
	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

@adamk
I don't wont to get any resolution, I just want to get back the old size of icons.
Code:
Screen 0: minimum 320 x 200, current 1024 x 768, maximum 3840 x 1920
VGA_1 connected 1024x768+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
   1024x768       60.0* 
   800x600        60.3  
   640x480        59.9  
DVI-D_1 disconnected (normal left inverted right x axis y axis)
 
OK, above you said the resolution changed and you can't get it back. Now you're saying you don't care what the resolution is, you just want to change the size "of icon". So which is it? And if it's the size of some icon you want to change, what icon are you talking about?

Adam
 
my rc.conf has
Code:
gnome_enable="YES"
What's the resolution of your monitor? You can set it in your xorg.conf if auto detection fails.
 
SIFE said:
Code:
Section "Device"
	Identifier  "Card0"
	Driver      "[color="Red"]radeonhd[/color]"
	VendorName  "Advanced Micro Devices [AMD] nee ATI"
	BoardName   "RS780D [Radeon HD 3300]"
	BusID       "PCI:1:5:0"
EndSection

Don't use radeonhd, use plain radeon from x11-drivers/xf86-video-ati.

Code:
Screen 0: minimum 320 x 200, current 1024 x 768, maximum 3840 x 1920

The monitor says it can do more. 1024x768 could be the desktop environment or gdm "helping". Log in and change it in Gnome (maybe), or set a default resolution in xorg.conf.
 
@adamk
After I added gdm to rc.conf, my icon's size changed without changing default resolution.
@wblock
Don't use radeonhd, use plain radeon from x11-drivers/xf86-video-ati.
I always use radeonhd, and I had never problem with it before until now, changing the driver in xorg.conf give me higher resolution but the GUI is kinda slow when I move window's, is there any thing to fix this.
 
Back
Top