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 - 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 12-29-2004, 07:51 PM   #1
e0r
Member
 
Registered: Aug 2004
Distribution: Slackware 10
Posts: 43

Rep: Reputation: 15
X will only do 1024x768 at depth 4


Yea, the title pretty much describes it. If I try to do default depth 24 it says no screen found. If i try default depth 8 it'll just go to 640x480. And when it's at depth 4 the colors look really funky. I'm on a Dell Dimension 3000

http://www1.us.dell.com/content/prod...=19&l=en&s=dhs

specs there, i got a 15inch flat screen.

intel i810 is my graphics card. I've been messing with xorgconfig for days now.
here's my xorg.conf

Quote:
Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
RgbPath "/usr/X11R6/lib/X11/rgb"
ModulePath "/usr/X11R6/lib/modules"
FontPath "/usr/X11R6/lib/X11/fonts/misc/"
FontPath "/usr/X11R6/lib/X11/fonts/TTF/"
FontPath "/usr/X11R6/lib/X11/fonts/Speedo/"
FontPath "/usr/X11R6/lib/X11/fonts/Type1/"
FontPath "/usr/X11R6/lib/X11/fonts/CID/"
FontPath "/usr/X11R6/lib/X11/fonts/75dpi/"
FontPath "/usr/X11R6/lib/X11/fonts/100dpi/"
EndSection

Section "Module"
Load "record"
Load "extmod"
Load "dbe"
Load "dri"
Load "glx"
Load "xtrap"
Load "freetype"
Load "type1"
Load "speedo"
EndSection

Section "InputDevice"
Identifier "Keyboard0"
Driver "keyboard"
EndSection

Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/mouse"
EndSection

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

Section "Device"
### Available Driver options are:-
### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
### [arg]: arg optional
#Option "NoAccel" # [<bool>]
#Option "SWcursor" # [<bool>]
#Option "ColorKey" # <i>
#Option "CacheLines" # <i>
#Option "Dac6Bit" # [<bool>]
#Option "DRI" # [<bool>]
#Option "NoDDC" # [<bool>]
#Option "ShowCache" # [<bool>]
#Option "XvMCSurfaces" # <i>
#Option "PageFlip" # [<bool>]
Identifier "Card0"
Driver "i810"
VendorName "Intel Corp."
BoardName "82865G Integrated Graphics Device"
BusID "PCI:0:2: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
DefaultDepth 8

Subsection "Display"
Depth 24
Modes "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
Subsection "Display"
Depth 16
Modes "800x600" "640x480"
ViewPort 0 0
EndSubsection
Subsection "Display"
Depth 24
Modes "640x480"
ViewPort 0 0
EndSubsection


EndSection
thanks for all the help in advance.

Last edited by e0r; 12-30-2004 at 04:50 AM.
 
Old 12-29-2004, 10:08 PM   #2
spuzzzzzzz
Member
 
Registered: Sep 2003
Location: Australia
Distribution: Gentoo
Posts: 465

Rep: Reputation: 30
Quote:
Subsection "Display"
Depth 24
Modes "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
Subsection "Display"
Depth 16
Modes "800x600" "640x480"
ViewPort 0 0
EndSubsection
Subsection "Display"
Depth 24
Modes "640x480"
ViewPort 0 0
EndSubsection
You probably shouldn't have 2 Subsection "Display"s with Depth 24. And you don't have Depth 8 or 4 defined. Try changing the final Subsection to "Depth 8" and see how that works. (and maybe add a "1024x768" mode to it).
 
Old 12-29-2004, 11:08 PM   #3
e0r
Member
 
Registered: Aug 2004
Distribution: Slackware 10
Posts: 43

Original Poster
Rep: Reputation: 15
Alright, I did it..no luck.

here's what it's looking like now:

Quote:
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
DefaultDepth 24
Subsection "Display"
Depth 4
Modes "1024x768" "800x600" "640x480"
ViewPort 0 0
Subsection "Display"
Depth 8
Modes "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
Subsection "Display"
Depth 16
Modes "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
Subsection "Display"
Depth 24
Modes "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection


EndSection

Last edited by e0r; 12-29-2004 at 11:10 PM.
 
Old 12-30-2004, 01:13 PM   #4
e0r
Member
 
Registered: Aug 2004
Distribution: Slackware 10
Posts: 43

Original Poster
Rep: Reputation: 15
wow, i've messed with xorg.conf about every way i could and no luck
 
Old 12-30-2004, 02:23 PM   #5
spuzzzzzzz
Member
 
Registered: Sep 2003
Location: Australia
Distribution: Gentoo
Posts: 465

Rep: Reputation: 30
That's very strange. Do you get any warnings before the fatal error?
 
Old 12-30-2004, 03:31 PM   #6
e0r
Member
 
Registered: Aug 2004
Distribution: Slackware 10
Posts: 43

Original Poster
Rep: Reputation: 15
I don't get a fatal error anymore unless i try to make the xorg.conf using xorgconfig, the only problem is - no matter what - it will not start into depth 24, I even erased all other depth's and had default depth 24 and it just wont take it. I know the montior and card can have it because it works fine on windows ;x.
 
Old 12-30-2004, 04:28 PM   #7
pal_no_1
LQ Newbie
 
Registered: Sep 2003
Location: Sydney, AU
Distribution: Redhat 9
Posts: 8

Rep: Reputation: 0
It probably will not help you but you do not seem to have an EndSubsection between depth 4 & 8. You may also like to add into the post the the driver the video is using.

Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
DefaultDepth 24
Subsection "Display"
Depth 4
Modes "1024x768" "800x600" "640x480"
ViewPort 0 0

<--------- EndSubsection

Subsection "Display"
Depth 8
Modes "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
Subsection "Display"
Depth 16
Modes "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
Subsection "Display"
Depth 24
Modes "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection


EndSection
 
Old 12-30-2004, 09:05 PM   #8
e0r
Member
 
Registered: Aug 2004
Distribution: Slackware 10
Posts: 43

Original Poster
Rep: Reputation: 15
thanks, but nope, didn't help. here's what my xorg.conf is looking like now:

[quote]
Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
RgbPath "/usr/X11R6/lib/X11/rgb"
ModulePath "/usr/X11R6/lib/modules"
FontPath "/usr/X11R6/lib/X11/fonts/misc/"
FontPath "/usr/X11R6/lib/X11/fonts/TTF/"
FontPath "/usr/X11R6/lib/X11/fonts/Speedo/"
FontPath "/usr/X11R6/lib/X11/fonts/Type1/"
FontPath "/usr/X11R6/lib/X11/fonts/CID/"
FontPath "/usr/X11R6/lib/X11/fonts/75dpi/"
FontPath "/usr/X11R6/lib/X11/fonts/100dpi/"
EndSection

Section "Module"
Load "record"
Load "extmod"
Load "dbe"
Load "dri"
Load "glx"
Load "xtrap"
Load "freetype"
Load "type1"
Load "speedo"
EndSection

Section "InputDevice"
Identifier "Keyboard0"
Driver "keyboard"
EndSection

Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/mouse"
EndSection

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

Section "Device"
### Available Driver options are:-
### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
### [arg]: arg optional
#Option "NoAccel" # [<bool>]
#Option "SWcursor" # [<bool>]
#Option "ColorKey" # <i>
#Option "CacheLines" # <i>
#Option "Dac6Bit" # [<bool>]
#Option "DRI" # [<bool>]
#Option "NoDDC" # [<bool>]
#Option "ShowCache" # [<bool>]
#Option "XvMCSurfaces" # <i>
#Option "PageFlip" # [<bool>]
Identifier "Card0"
Driver "i810"
VendorName "Intel Corp."
BoardName "82865G Integrated Graphics Device"
BusID "PCI:0:2:0"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
DefaultDepth 24
Subsection "Display"
Depth 4
Modes "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
Subsection "Display"
Depth 8
Modes "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
Subsection "Display"
Depth 16
Modes "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
Subsection "Display"
Depth 24
Modes "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection


EndSection
 
Old 01-15-2005, 11:12 PM   #9
e0r
Member
 
Registered: Aug 2004
Distribution: Slackware 10
Posts: 43

Original Poster
Rep: Reputation: 15
help?
 
Old 01-26-2005, 06:54 PM   #10
e0r
Member
 
Registered: Aug 2004
Distribution: Slackware 10
Posts: 43

Original Poster
Rep: Reputation: 15
 
Old 01-27-2005, 02:38 AM   #11
Wim Sturkenboom
Senior Member
 
Registered: Jan 2005
Location: Roodepoort, South Africa
Distribution: Ubuntu 12.04, Antix19.3
Posts: 3,794

Rep: Reputation: 282Reputation: 282Reputation: 282
Check the intel website for drivers. The i810 driver is (to my knowledge) not the best one for a 82865G Integrated Graphics Device.

Graphics Drivers and Linux* Support
 
Old 01-27-2005, 02:52 AM   #12
abisko00
Senior Member
 
Registered: Mar 2004
Location: Munich
Distribution: Ubuntu
Posts: 3,517

Rep: Reputation: 58
Since it is a Dell system, I would give this a try:

Go into BIOS setup and check the setting for Video memory. On my Dell, this was set to 1MB, which is not enough for this resolution. When I set it to 8MB, everything went fine.

Good luck!
 
Old 02-07-2005, 12:26 PM   #13
e0r
Member
 
Registered: Aug 2004
Distribution: Slackware 10
Posts: 43

Original Poster
Rep: Reputation: 15
dude, you are the best! Now it works perfectly, thanks a ton man! You'd think dell would say something about this but nope =\.

thanks again!

Last edited by e0r; 02-07-2005 at 12:35 PM.
 
  


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
1024x768 krock923 Debian 3 09-13-2005 04:56 PM
Cant get 1024x768 with Depth 16 or 24 rgogada Mandriva 3 06-30-2005 02:24 AM
Can't get 1024x768 on SuSE 9.2 :( Mr_Badguy Linux - Newbie 3 06-24-2005 02:35 AM
can't get 1024x768 resolution Culbert Slackware 7 03-24-2003 11:41 AM
i cant get 1024x768 @ 16 bit colour depth vixy27 Linux - Software 4 12-11-2000 12:07 PM

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

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