LinuxQuestions.org
Share your knowledge at the LQ Wiki.
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-16-2005, 04:37 PM   #1
dizzi
Member
 
Registered: Jun 2004
Location: Yorkshire, UK
Distribution: Mint, Slackware
Posts: 146

Rep: Reputation: 15
working xorg.conf file for Intel 845G Graphics


Hi All

After a couple of days with no success trying to get 3D acceleration on the Intel 845G graphics chip - yes, yes I have googled, searched forums, even used a working XF86Config-4 from a live-cd) I have just about had it. Consequently, I would be deeply appreciative if someone would post a working xorg.conf file or suggest a solution.

Relevant Details

OS: Slackware 10.2 Kernels 2.4.31, 2.6.12 (for slmodem) and 2.6.14.3

Chipset: Intel 82845
Graphics: Intel 845G
Driver used: i810

Depths tried 16 and 24

"dri", "glx", "GLcore" and host of other modules are "Loaded"

Thanks
 
Old 12-16-2005, 07:22 PM   #2
mebrelith
Member
 
Registered: Nov 2004
Location: Torreón, Coahuila, México
Distribution: Gentoo
Posts: 342
Blog Entries: 1

Rep: Reputation: 30
Here's mine (for a 845GV mobo), works peachy in my FC4. Enjoy.

Code:
Section "ServerLayout"
	Identifier     "Default Layout"
	Screen      0  "Screen0" 0 0
	InputDevice    "Mouse0" "CorePointer"
	InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"

# RgbPath is the location of the RGB database.  Note, this is the name of the 
# file minus the extension (like ".txt" or ".db").  There is normally
# no need to change the default.
# Multiple FontPath entries are allowed (they are concatenated together)
# By default, Red Hat 6.0 and later now use a font server independent of
# the X server to render fonts.
	RgbPath      "/usr/X11R6/lib/X11/rgb"
	FontPath     "unix/:7100"
EndSection

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

Section "InputDevice"

# Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
#	Option	"Xleds"		"1 2 3"
# To disable the XKEYBOARD extension, uncomment XkbDisable.
#	Option	"XkbDisable"
# To customise the XKB settings to suit your keyboard, modify the
# lines below (which are the defaults).  For example, for a non-U.S.
# keyboard, you will probably want to use:
#	Option	"XkbModel"	"pc102"
# If you have a US Microsoft Natural keyboard, you can use:
#	Option	"XkbModel"	"microsoft"
#
# Then to change the language, change the Layout setting.
# For example, a german layout can be obtained with:
#	Option	"XkbLayout"	"de"
# or:
#	Option	"XkbLayout"	"de"
#	Option	"XkbVariant"	"nodeadkeys"
#
# If you'd like to switch the positions of your capslock and
# control keys, use:
#	Option	"XkbOptions"	"ctrl:swapcaps"
# Or if you just want both to be control, use:
#	Option	"XkbOptions"	"ctrl:nocaps"
#
	Identifier  "Keyboard0"
	Driver      "kbd"
	Option	    "XkbModel" "pc105"
	Option	    "XkbLayout" "la"
EndSection

Section "InputDevice"
	Identifier  "Mouse0"
	Driver      "mouse"
	Option	    "Protocol" "IMPS/2"
	Option	    "Device" "/dev/input/mice"
	Option	    "ZAxisMapping" "4 5"
	Option	    "Emulate3Buttons" "yes"
EndSection

Section "Monitor"
	Identifier   "Monitor0"
	VendorName   "Monitor Vendor"
	ModelName    "Q71-9"
	DisplaySize  320	240
	HorizSync    30.0 - 70.0
	VertRefresh  50.0 - 160.0
	Option	    "dpms"
EndSection

Section "Device"
	Identifier  "Videocard0"
	Driver      "i810"
	VendorName  "Videocard vendor"
	BoardName   "Intel 845"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Videocard0"
	Monitor    "Monitor0"
	DefaultDepth     24
	SubSection "Display"
		Viewport   0 0
		Depth     16
		Modes    "800x600" "640x480"
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     24
		Modes    "1280x1024" "1152x864" "1152x768" "1024x768" "800x600" "640x480"
	EndSubSection
EndSection

Section "DRI"
	Group        0
	Mode         0666
EndSection
 
Old 12-19-2005, 04:41 AM   #3
dizzi
Member
 
Registered: Jun 2004
Location: Yorkshire, UK
Distribution: Mint, Slackware
Posts: 146

Original Poster
Rep: Reputation: 15
3D Acceleration on the Intel 845G graphics chip - Slackware 10.2

Thanks for the reply - however still no success. Incidentally, 3D acceleration works great on the same system using a llgp-0.1pre0 live-cd (based on Knoppix). For some reason though, I cannot get get the same result on Slack 10.2. I would be grateful for solutions from anyone who has had success with that distro and version using the Intel 845G chip and the i810 driver.

Cheers
 
Old 11-06-2007, 03:18 PM   #4
alpha_hack
Member
 
Registered: Jul 2007
Location: Sofia, Bulgaria
Distribution: Slackware 13.1x86_64
Posts: 75

Rep: Reputation: 15
Quote:
Originally Posted by dizzi View Post
Thanks for the reply - however still no success. Incidentally, 3D acceleration works great on the same system using a llgp-0.1pre0 live-cd (based on Knoppix). For some reason though, I cannot get get the same result on Slack 10.2. I would be grateful for solutions from anyone who has had success with that distro and version using the Intel 845G chip and the i810 driver.

Cheers
When I had my Slack 10.2 and 11 I managed to get up 3d acceleration working by compiling the kernel with drivers for i810 and i915 ( As modules ).
After that I just added/changed into xorg.conf this:

Code:
# This loads the GLX module
    Load       "glx"
# This loads the DRI module
    Load       "dri"



Section "Device"
    Identifier  "Name of Monitor"
    Driver      "i810"
    VideoRam    65536
    Option    "XVideo"        "On"
    Option    "DevicePresence"    "On"    
EndSection


#At the end

Section "DRI"
    Mode 0666
EndSection
And everything was working fine.
I'm currently using Intel 845G with Slackware 12... But I haven't yet configured everything...

I hope this helps you!


Kind regards,
Steve
 
  


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
Intel 845G X Server Hang phowlett Linux - Hardware 0 09-19-2005 02:54 PM
iintel extreme graphics - how to edit xorg.conf slack 10.1 rkrishna Slackware 2 06-21-2005 08:15 AM
Can't get a working xorg.conf!!! halo14 Arch 4 03-28-2005 11:40 AM
PROBLEM!-Slackware10.1/Xorg on Dell Laptop video:intel Extreme Graphics 2 for mobile nofx_scotti Slackware 4 03-16-2005 09:46 PM
845g graphics work but at low refresh rate? tommy382 Linux - Hardware 2 02-26-2004 01:11 AM

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

All times are GMT -5. The time now is 01:57 AM.

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