LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Ubuntu
User Name
Password
Ubuntu This forum is for the discussion of Ubuntu Linux.

Notices


Reply
  Search this Thread
Old 03-21-2007, 09:17 AM   #1
Coldmiser
Member
 
Registered: Sep 2003
Location: Chicago
Distribution: Ubuntu
Posts: 36

Rep: Reputation: 15
Dell PowerEdge 2500SC w/ATI Rage XL


OK, I'm a bit confused. I was working fine with my Dell server at a screen resolution of 1152x864 (I think the refresh was at 70) and then I rebooted and when I logged back in, I don't get that resolution option anymore. The only ones I get now are 800x600 & 640x480 (which is to low for anyone). I don't get the higher refresh rates anymore either, I'm stuck with 60 or 56.

Does anyone know why this would happen or how I can change it back?

Here is a copy of my xorg.conf. As far as I can see, I should be getting options for 1152x864 & 1024x768

Code:
# /etc/X11/xorg.conf (xorg 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 /etc/X11/xorg.conf manual page.
# (Type "man /etc/X11/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

Section "Files"
	FontPath	"/usr/share/X11/fonts/misc"
	FontPath	"/usr/share/X11/fonts/cyrillic"
	FontPath	"/usr/share/X11/fonts/100dpi/:unscaled"
	FontPath	"/usr/share/X11/fonts/75dpi/:unscaled"
	FontPath	"/usr/share/X11/fonts/Type1"
	FontPath	"/usr/share/X11/fonts/100dpi"
	FontPath	"/usr/share/X11/fonts/75dpi"
	FontPath	"/usr/share/fonts/X11/misc"
	# path to defoma fonts
	FontPath	"/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
	Load	"i2c"
	Load	"bitmap"
	Load	"ddc"
	Load	"dri"
	Load	"extmod"
	Load	"freetype"
	Load	"glx"
	Load	"int10"
	Load	"type1"
	Load	"vbe"
EndSection

Section "InputDevice"
	Identifier	"Generic Keyboard"
	Driver		"kbd"
	Option		"CoreKeyboard"
	Option		"XkbRules"	"xorg"
	Option		"XkbModel"	"pc105"
	Option		"XkbLayout"	"us"
	Option		"XkbOptions"	"lv3:ralt_switch"
EndSection

Section "InputDevice"
	Identifier	"Configured Mouse"
	Driver		"mouse"
	Option		"CorePointer"
	Option		"Device"		"/dev/input/mice"
	Option		"Protocol"		"ExplorerPS/2"
	Option		"ZAxisMapping"		"4 5"
	Option		"Emulate3Buttons"	"true"
EndSection

Section "InputDevice"
  Driver        "wacom"
  Identifier    "stylus"
  Option        "Device"        "/dev/wacom"          # Change to 
                                                      # /dev/input/event
                                                      # for USB
  Option        "Type"          "stylus"
  Option        "ForceDevice"   "ISDV4"               # Tablet PC ONLY
EndSection

Section "InputDevice"
  Driver        "wacom"
  Identifier    "eraser"
  Option        "Device"        "/dev/wacom"          # Change to 
                                                      # /dev/input/event
                                                      # for USB
  Option        "Type"          "eraser"
  Option        "ForceDevice"   "ISDV4"               # Tablet PC ONLY
EndSection

Section "InputDevice"
  Driver        "wacom"
  Identifier    "cursor"
  Option        "Device"        "/dev/wacom"          # Change to 
                                                      # /dev/input/event
                                                      # for USB
  Option        "Type"          "cursor"
  Option        "ForceDevice"   "ISDV4"               # Tablet PC ONLY
EndSection

Section "Device"
	Identifier	"ATI Technologies, Inc. Rage XL"
	Driver		"ati"
	BusID		"PCI:0:14:0"
EndSection

Section "Monitor"
	Identifier	"Princeton"
	Option		"DPMS"
EndSection

Section "Screen"
	Identifier	"Default Screen"
	Device		"ATI Technologies, Inc. Rage XL"
	Monitor		"Princeton"
	DefaultDepth	24
	SubSection "Display"
		Depth		1
		Modes		"1152x864" "1024x768" "800x600" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		4
		Modes		"1152x864" "1024x768" "800x600" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		8
		Modes		"1152x864" "1024x768" "800x600" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		15
		Modes		"1152x864" "1024x768" "800x600" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		16
		Modes		"1152x864" "1024x768" "800x600" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		24
		Modes		"1152x864" "1024x768" "800x600" "640x480"
	EndSubSection
EndSection

Section "ServerLayout"
	Identifier	"Default Layout"
	Screen		"Default Screen"
	InputDevice	"Generic Keyboard"
	InputDevice	"Configured Mouse"
	InputDevice     "stylus" "SendCoreEvents"
	InputDevice     "cursor" "SendCoreEvents"
	InputDevice     "eraser" "SendCoreEvents"
EndSection

Section "DRI"
	Mode	0666
EndSection
 
Old 03-21-2007, 04:46 PM   #2
Coldmiser
Member
 
Registered: Sep 2003
Location: Chicago
Distribution: Ubuntu
Posts: 36

Original Poster
Rep: Reputation: 15
UPDATE:

OK, after some research, I think I found out my problem. It seems that my problem may not be in the "screen" section, but instead the "monitor" section.

I added two lines to the "monitor" section
Code:
HorizSync      28-57
VertRefresh    43-75
With this I have been able up my resolution to 1024x768, I would still like to be able to get it back to 1152x864, unfortunately, I do not know how high I can go with the refresh rate without causing damage to the monitor.

Does anyone know where the best location is to find the Horizontal & Vertical refresh rates for my monitor?
I have a Princeton Ultra 72 17" monitor.

thanks
 
Old 04-10-2007, 04:27 PM   #3
rcl19
LQ Newbie
 
Registered: Apr 2007
Location: Georgia, USA
Distribution: Kubuntu, Knoppix
Posts: 1

Rep: Reputation: 0
Don't know if you have fixed this yet, but I did find the data sheet for your monitor... As follows:


Model: Ultra72
Part No.: 14UL1708A00 UPC Code: 663555 005946

Product Specification
CRT Size/Type 17-inch (16.0" VIS), anti-glare, anti-static FST CRT (Flat Square Tube) with an advanced inline
high resolution electron gun, Invar shadow mask and pigmented medium-short phosphor
Dot Pitch 0.27mm
Maximum Resolution 1280 x 1024
Recommended Resolution 1024 x 768 @85Hz
Display Colors Unlimited
Active Display Area Default : 12.2" x 9.1" (310mm x 232mm) Typical
Full Scan: 12.8” x 9.6” (325mm x 243mm)
H-Frequency 30kHz ~ 70kHz
V-Frequency 50Hz ~ 160Hz

Compatibility VESA® 1280x1024 @60Hz, VESA® 1152x870@75Hz,
VESA® 1024x768 @85/75Hz, VESA® 800x600 @85/75Hz, VESA® 640x480 @85/75Hz,
XGA/2, XGA/IBM 8514/A, Super VGA, VGA, Macintosh™, SPARCStation™, and more
Input Signal Video : Analog 0.7/1.0Vp-p, 75 Ohm
Sync. : Separate and composite TTL level
Input Connector/Cable 15-pin D-Sub Type 1.8m, captive
Video Dot Clock 110MHz nominal
Plug & Play VESA® DDC1/2B
User Controls Front: Power On/Off, Power LED, OSD Control (4 Buttons)
OSD: Contrast, Brightness, Horizontal Size, Horizontal Position, Vertical Size, Vertical
Position, Pincushion, Pin-Balance, Trapezoid, Parallelogram, Tilt, Top Corner, Bottom Corner,
H-Top Phase Corner, H-Bottom Phase Corner, Color Control (9300K, 6500K, User), H-Moire,
V-Moire, Degauss, OSD-H-Position, OSD-V-Position, Language (English, French, German,
Spanish, Italian), Memory Recall, Exit
Tilt & Swivel Base Range: Tilt : 5 degrees down, 15 degrees up
Swivel : ± 90 degree
Dimension (w x h x d) Unit : 16.1" x 16.8" x 16.7" (408mm x 427mm x 425mm)
Carton : 22.1" x 20" x 20.7" (560mm x 508mm x 525mm)
Weight Net : 35.27 lbs. (16.0 kg)
Gross : 40.79 lbs. (18.5 kg)
Power Supply 100~240 Vac, 50/60Hz ± 3Hz
Power Consumption On: 100 W max.; Off: <5W
Power Management EPA Energy Star®
Agency Approvals UL 1950, CSA, SEMKO, TUV/GS, TUV/IEC-950, FCC-B, DHHS, MPRII, CE,E2000, EPA,
Environmental Conditions Operating Temperature : 32°F to 104°F (0°C to 40°C)
Storage Temperature : -40°F to 140°F (-40°C to 60°C)
Operating Humidity : 10 ~ 80% (non-condensing)
Storage Humidity : 0 ~ 90% (non-condensing)
Operating Altitude : 15,000 ft.
Storage Altitude : 40,000 ft.
Maximum Refresh Rate
at Each Resolution
640x480 @136Hz
800x600 @110Hz
1024x768 @87Hz
1152x864 @78Hz
1280x1024 @66Hz
Warranty 3 Year


Hope you get it back to where you want it.
 
Old 04-11-2007, 11:42 AM   #4
Coldmiser
Member
 
Registered: Sep 2003
Location: Chicago
Distribution: Ubuntu
Posts: 36

Original Poster
Rep: Reputation: 15
Appreciate it, but I found a write up on it on Amazon of all places.
 
Old 04-24-2007, 08:36 PM   #5
Vitalie Ciubotaru
Member
 
Registered: Dec 2005
Location: Osaka, Japan
Distribution: Ubuntu Trinity
Posts: 153

Rep: Reputation: 30
I've got the same brand of video card. I am able to get 1024x768.
I see you enabled "DRI" module. Are you sure it gets loaded? Mine doesn't...
 
Old 04-24-2007, 11:04 PM   #6
Coldmiser
Member
 
Registered: Sep 2003
Location: Chicago
Distribution: Ubuntu
Posts: 36

Original Poster
Rep: Reputation: 15
I don't know if it's loaded or not, I haven't cleaned up the xorg.conf yet.
I would say probably not, I think I added that line manually when I was playing with Beryl
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
ATI Rage 128 Mobility on Dell Inspiron 8000 not working on fedora 4 ielhelw Linux - Laptop and Netbook 2 02-21-2006 12:50 PM
Dell Latitude C600 w/ ATI Rage 128 Mobility Al_Khidr Linux - Laptop and Netbook 2 11-06-2005 08:07 AM
ATI Rage 128 PF & Dell M990 tmeehan SUSE / openSUSE 0 08-20-2005 09:15 PM
Dell C600 + ATI Rage 128 Mobility + Monitor Problem jcz Linux - Laptop and Netbook 2 01-21-2004 09:15 AM
Dell C800 - ATI Rage Mobility 128 mchitsquad Mandriva 0 09-07-2003 05:34 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Ubuntu

All times are GMT -5. The time now is 03:25 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration