LinuxQuestions.org
Help answer threads with 0 replies.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 07-31-2006, 04:49 AM   #1
YourActual
LQ Newbie
 
Registered: Jul 2006
Posts: 2

Rep: Reputation: 0
Ubuntu - Highest resolution I can select is 1280 x 1040


I have just installed ubuntu but the maximum resolution I can have from within the GUI (System > Preferences > Screen Resolution) is 1280x1040 (see below). My monitor supports up to 1920x1440 and the xorg.conf file recognices this. I'm completely new to Linux and any help is greatly received.

Thanks

# /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/CID"
FontPath "/usr/share/X11/fonts/100dpi"
FontPath "/usr/share/X11/fonts/75dpi"
# paths to defoma fonts
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID"
EndSection

Section "Module"
Load "GLcore"
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" "gb"
EndSection

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

Section "Device"
Identifier "Intel Corporation 82810E DC-133 CGC [Chipset Graphics Controller]"
Driver "i810"
BusID "PCI:0:1:0"
EndSection

Section "Monitor"
Identifier "COMPAQ P1220"
Option "DPMS"
EndSection

Section "Screen"
Identifier "Default Screen"
Device "Intel Corporation 82810E DC-133 CGC [Chipset Graphics Controller]"
Monitor "COMPAQ P1220"
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "1920x1440" "1800x1350" "1600x1200" "1280x1024" "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 4
Modes "1920x1440" "1800x1350" "1600x1200" "1280x1024" "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 8
Modes "1920x1440" "1800x1350" "1600x1200" "1280x1024" "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 15
Modes "1920x1440" "1800x1350" "1600x1200" "1280x1024" "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 16
Modes "1920x1440" "1800x1350" "1600x1200" "1280x1024" "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 24
Modes "1920x1440" "1800x1350" "1600x1200" "1280x1024" "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
EndSection

Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
EndSection

Section "DRI"
Mode 0666
EndSection
 
Old 07-31-2006, 07:10 AM   #2
otchie1
Registered User
 
Registered: Apr 2004
Posts: 560

Rep: Reputation: 30
Maybe your monitor can do 1920 but are you sure that your i8210E can manage all that? Older onboard graphics tend to top out at around 1024. My old fx5600 maxed at 1280 60Hz so I ran it at 1024 85Hz.

SFAIK the modes are derived from what you monitor can handle and not from what your VGA can produce.
 
Old 08-01-2006, 11:01 AM   #3
YourActual
LQ Newbie
 
Registered: Jul 2006
Posts: 2

Original Poster
Rep: Reputation: 0
I suspect you are right as the PC does have onboard graphics and is pretty old. How can I check this though? I am a real novice.

Thanks
 
Old 08-01-2006, 11:12 AM   #4
IsaacKuo
Senior Member
 
Registered: Apr 2004
Location: Baton Rouge, Louisiana, USA
Distribution: Debian Stable
Posts: 2,546
Blog Entries: 8

Rep: Reputation: 465Reputation: 465Reputation: 465Reputation: 465Reputation: 465
One thing you can do to try and eek out the most out of old video cards is to reduce the default depth from 24 to 16. This may allow running a higher resolution.

Note that old i810 graphics can only do 3d hardware acceleration up to 1024x768@16bit. Any higher resolution or any higher bit depth, and 3d acceleration is disallowed (this is a hardware limitation, not just a Linux limitation). I suspect that this limitation will have no effect on you, though. Other than some 3d screensavers, there's not much old i810 3D graphics can handle anyway.
 
Old 08-03-2006, 02:26 PM   #5
otchie1
Registered User
 
Registered: Apr 2004
Posts: 560

Rep: Reputation: 30
Quote:
Originally Posted by YourActual
I suspect you are right as the PC does have onboard graphics and is pretty old. How can I check this though? I am a real novice.

Thanks
One of the easiest ways is to check with the original manufacturer :-)

X though is pretty good at working out what is the top resolution and will automatically default to that IMX
 
  


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
Does Slack support 1280 x 800 screen resolution? Oholiab Slackware 16 01-07-2008 08:29 AM
resolution 1280 x 768 for Mandrake 10.1 Community kentri9 Mandriva 3 11-20-2004 04:17 AM
1280 x 800 resolution on AOpen laptop? SwampDonkey Linux - Hardware 0 10-08-2004 10:59 AM
1280 x 800 resolution in Redhat Linux 9 poochdog Linux - Hardware 4 07-10-2004 11:02 AM
Setting the highest display resolution artemis Fedora 3 06-16-2004 02:32 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 04:51 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