LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
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 02-03-2006, 10:19 PM   #1
sudarshan22
LQ Newbie
 
Registered: Feb 2006
Distribution: Kubuntu 7.10 Gutsy Gibbon
Posts: 13

Rep: Reputation: 0
YASP-Yet Another Screen Problem


Hello People,
I have an IBM thinkcentre with P4 2.6GHz, dual boot with Win XP and Ubuntu 5.04. My graphics card is Intel 82845GL with 64MB of Video RAM. I have installed and re-installed Ubuntu but my screen is always stuck at 640x480. My machine can support a max resolution of 1024x768. I have tried so many things to get this OK but none have worked. I tried chaning driver to vesa, I wrote all the correct info about my moniter's refresh rates into my xorg.conf file. Nothing seemed to work. Everytime, it would say X server failed to start and I will have to load the backup.
Here is the content of my xorg.conf file:

# /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" "pc104"
Option "XkbLayout" "us"
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 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device"
Driver "i810"
BusID "PCI:0:2:0"
EndSection

Section "Monitor"
Identifier "Generic Monitor"
Option "DPMS"
HorizSync 28-63
VertRefresh 43-60
EndSection

Section "Screen"
Identifier "Default Screen"
Device "Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device"
Monitor "Generic Monitor"
DefaultDepth 16
SubSection "Display"
Depth 1
Modes "1272x1272" "1097x800" "1024x768" "960x768" "960x720" "800x600" "768x304" "720x400" "640x480" "562x840" "536x536" "306x69" "256x160"
EndSubSection
SubSection "Display"
Depth 4
Modes "1272x1272" "1097x800" "1024x768" "960x768" "960x720" "800x600" "768x304" "720x400" "640x480" "562x840" "536x536" "306x69" "256x160"
EndSubSection
SubSection "Display"
Depth 8
Modes "1272x1272" "1097x800" "1024x768" "960x768" "960x720" "800x600" "768x304" "720x400" "640x480" "562x840" "536x536" "306x69" "256x160"
EndSubSection
SubSection "Display"
Depth 15
Modes "1272x1272" "1097x800" "1024x768" "960x768" "960x720" "800x600" "768x304" "720x400" "640x480" "562x840" "536x536" "306x69" "256x160"
EndSubSection
SubSection "Display"
Depth 16
Modes "1272x1272" "1097x800" "1024x768" "960x768" "960x720" "800x600" "768x304" "720x400" "640x480" "562x840" "536x536" "306x69" "256x160"
EndSubSection
SubSection "Display"
Depth 24
Modes "1272x1272" "1097x800" "1024x768" "960x768" "960x720" "800x600" "768x304" "720x400" "640x480" "562x840" "536x536" "306x69" "256x160"
EndSubSection
EndSection

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

Section "DRI"
Mode 0666
EndSection
I found this link which supposedly gives the driver of my graphics card for linux. I downloaded it and tried install it but couldnt. I cant post the link of that site as I havent yet made 5 posts. But it can be found in ubuntuforums.

Please help me with this.
Thanks,
sudarshan.
 
Old 02-05-2006, 09:31 AM   #2
Centinul
Member
 
Registered: Jun 2005
Distribution: Gentoo
Posts: 552

Rep: Reputation: 30
This may sound weird but have you tried changing your "DefaultDepth" to 24 instead of the current 16? I've that sometimes this could cause issues with screen resolution problems. Give that a shot. I also noticed something else about your xorg.conf file that doesn't seem quite right. In your device section you have the following

Code:
Section "Device"
Identifier "Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device"
Driver "i810"
BusID "PCI:0:2:0"
EndSection
Where the bold is the driver that your graphics device would like to use. Yet in your module section that driver doesn't exist

Code:
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
So what I would try and do is put a line that says Load "i810" in there. Make sure though that you remove any current references to another driver. It looks like "int10" could be a video driver so you may want to comment that line out temporarily. I hope this helps. This is all I could come up with. Good luck.
 
Old 02-05-2006, 09:50 AM   #3
sudarshan22
LQ Newbie
 
Registered: Feb 2006
Distribution: Kubuntu 7.10 Gutsy Gibbon
Posts: 13

Original Poster
Rep: Reputation: 0
Will do

Thanks,
I will try to include the driver thing. wrt defaultdepth, I already tried it. Didnt work.
Linuxnovice.
 
Old 02-19-2006, 03:23 PM   #4
foolsh
Member
 
Registered: Apr 2005
Location: IL
Distribution: kubuntu
Posts: 56

Rep: Reputation: 15
try higher refreash rates

Section "Monitor"
Identifier "Generic Monitor"
Option "DPMS"
HorizSync 28-75
VertRefresh 43-75
EndSection
 
Old 02-19-2006, 05:40 PM   #5
smiley_lauf
Member
 
Registered: Jan 2006
Location: NY
Distribution: Fedora 15 x64
Posts: 344

Rep: Reputation: 30
will this make a difference: https://wiki.ubuntu.com/i915Driver

and this: http://users.skynet.be/thomasvst/linux-on-laptop/#wide

I am not sure if these links will help; but it sounds like a patch problem. BTW, is there a reason for using the hoary? Le us know if this helped or not?
 
  


Reply



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
Problem with SCREEN Soujiro Linux - Software 3 08-28-2013 03:39 AM
screen problem sihox Linux - Hardware 0 12-18-2005 11:04 AM
my screen have a problem rammstein_68 Linux - General 8 02-14-2005 11:54 AM
See through Screen Problem! techrolla Linux - General 8 01-02-2004 09:01 PM
Screen Problem please help? Remark Linux - Software 3 06-17-2002 01:53 PM

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

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