LinuxQuestions.org
Help answer threads with 0 replies.
Go Back   LinuxQuestions.org > Forums > Linux > Linux - Distributions > Debian
User Name
Password
Debian This forum is for the discussion of Debian Linux.

Notices

Reply
 
Thread Tools
Old 10-29-2009, 09:26 PM   #1
cccc
Member
 
Registered: Sep 2003
Posts: 822
Thanked: 2
3D Acceleration


[Log in to get rid of this advertisement]
hi

I've installed Lenny with Gnome on the Desktop DELL Optiplex GX270 with the graphic card Intel(R) 82865G.
Video Drivers were installed automatically, but the 3D Acceleration doesn't work.
Howto enable 3D Acceleration for this graphic card?
windows_vista cccc is offline     Reply With Quote
Old 10-29-2009, 09:46 PM   #2
Dutch Master
Senior Member
 
Registered: May 2006
Posts: 1,269
Thanked: 11
You have the Debian drivers. These work OK in 2D, but for 3D you'd need the Intel drivers. Google is your friend
linuxdebian Dutch Master is online now     Reply With Quote
Old 10-30-2009, 08:42 AM   #3
j1alu
Member
 
Registered: Apr 2009
Location: germany
Distribution: debian gnu/linux
Posts: 289
Thanked: 32
well: its weird stuff for me, so take this just as ideas:
xserver-xorg-video-intel should have come with a gnome-install, though im not sure if its the one for your card.

you still got a /etc/X11/xorg.conf ? how does it look like?:
video driver is set to intel ?
Code:
Section "Extensions"
        Option  "Composite"     "Enable"
EndSection
AccelMedthod is what, UXA? , <load dbe> is enabled?
you got mesa-utils installed ?
i allways run < glxinfo | grep direct >, you might run the compiz-check:
http://forlong.blogage.de/entries/pages/Compiz-Check,
or <compiz -replace & > from a cli to get some error-messages.

what do you need 3d for, compiz?

as said: thats the (confused) way i go if fiddling with 3D and that. good luck

Last edited by j1alu; 10-30-2009 at 08:49 AM..
linux j1alu is offline     Reply With Quote
Old 11-03-2009, 05:14 PM   #4
cccc
Member
 
Registered: Sep 2003
Posts: 822
Thanked: 2

Original Poster
Quote:
Originally Posted by j1alu View Post
you still got a /etc/X11/xorg.conf ? how does it look like?:
video driver is set to intel ?
my /etc/X11/xorg.conf
Code:
cat /etc/X11/xorg.conf

# 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 xorg.conf manual page.
# (Type "man 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.
#
# Note that some configuration settings that could be done previously
# in this file, now are automatically configured by the server and settings
# here are ignored.
#
# 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 "Device"
	Identifier	"Configured Video Device"
EndSection

Section "Monitor"
	Identifier	"Configured Monitor"
                 HorizSync    30-80
                 VertRefresh    50-75

EndSection

Section "Screen"
	Identifier	"Default Screen"
	Monitor		"Configured Monitor"
	Device		"Configured Video Device"
        DefaultDepth    24
        SubSection "Display"
        Modes "1680x1050" "1280x1024" "1280x960" "1152x864" 1024x768" "832x624" "800x600" "720x400" "640x480"
 EndSubSection
EndSection

Last edited by cccc; 11-05-2009 at 06:19 PM..
windows_xp_2003 cccc is offline     Reply With Quote
Old 11-03-2009, 07:27 PM   #5
j1alu
Member
 
Registered: Apr 2009
Location: germany
Distribution: debian gnu/linux
Posts: 289
Thanked: 32
as said: i sure dont know much bout such stuff. that said:
a while ago a fellow user posted a xorg.conf over here. he said it would have never failed on him when running on intel. I copied and pasted it and made tiny changes. Keyboard-layout is set to german (de). if you got a different dont forget to change that :-)
Here it is:
Code:
#
# 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 xorg.conf manual page.
# (Type "man 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 "Module"
        Load    "dbe"
	Load	"glx"
	Load	"dri"
EndSection

Section "InputDevice"
	Identifier	"Generic Keyboard"
	Driver		"kbd"
	Option		"XkbRules"	"xorg"
	Option		"XkbModel"	"pc104"
	Option		"XkbLayout"	"de"
        Option          "XkbOptions" "terminate:ctrl_alt_bksp"          
EndSection

Section "InputDevice"
	Identifier	"Configured Mouse"
	Driver		"synaptics"
	Option	        "SHMConfig"	"true"
EndSection

Section "Device"
	Identifier      "Intel Corporation 82945G/GZ Integrated Graphics Controller"
        Driver	"intel"
	Option	"DRI"	"true"
	Option	"AccelMethod"	"UXA"
	Option	"XAANoOffscreenPixmaps"	"true"
        Option  "AllowGLXWithComposite"   "true"
EndSection

Section "Monitor"
	Identifier	"Configured Monitor"
EndSection

Section "Screen"
	Identifier	"Default Screen"
	Monitor		"Configured Monitor"
	DefaultDepth	24
EndSection

Section	"ServerLayout"
	Identifier	"Default Layout"
	Screen		"Default Screen"	0	0
	InputDevice	"Generic Keyboard"
	InputDevice	"Configured Mouse"
	Option	        "AIGLX"	"true"
EndSection

Section "Extensions"
	Option	"Composite"	"Enable"
EndSection

Section	"DRI"
	Group	"video"
	Mode	0660
EndSection

Section "ServerFlags"
         Option "DontZap" "off"
         Option "AllowEmptyInput" "0"
         Option "AutoAddDevices" "0"
EndSection
The main parts for getting compiz running are:
load dbe # in Section Module
Option "XAANoOffscreenPixmaps" "true" #Seciton device
Option "AllowGLXWithComposite" "true" #Section device
AccelMethod "UXA" #Section device
and adding this complete Section
Section "Extensions"
Option "Composite" "Enable"
EndSection

Im pretty sure you may comment out the last section "ServerFlags" and
Option "XkbOptions" "terminate:ctrl_alt_bksp"
in the Section "InputDevice" as that "problem" might not exist in lenny.

run
Code:
glxinfo | grep direct
to check if direct renering is enabled.
all afaik, good luck

Last edited by j1alu; 11-03-2009 at 07:33 PM..
linuxubuntu j1alu is offline     Reply With Quote
Old 11-03-2009, 08:21 PM   #6
cccc
Member
 
Registered: Sep 2003
Posts: 822
Thanked: 2

Original Poster
Code:
# glxinfo | grep direct
# direct rendering: Yes
windows_xp_2003 cccc is offline     Reply With Quote
Old 11-03-2009, 09:17 PM   #7
j1alu
Member
 
Registered: Apr 2009
Location: germany
Distribution: debian gnu/linux
Posts: 289
Thanked: 32
well: looks good, or not?
have you tried the xorg.conf i posted? i used it on different setups and it worked fine.

you asked over at debian.forums for how to configure xorg. im not sure if it still works in lenny, but you may try:
Xorg -configure
from a terminal (either single-user or without login-manager)
which will create an xorg.conf in /root
(might be it looks like the one you allready got, i cant remember).
well, someone will be able to tell you for sure over there.
linuxubuntu j1alu is offline     Reply With Quote
Old 11-03-2009, 09:43 PM   #8
cccc
Member
 
Registered: Sep 2003
Posts: 822
Thanked: 2

Original Poster
Quote:
Originally Posted by j1alu View Post
well: looks good, or not?
have you tried the xorg.conf i posted? i used it on different setups and it worked fine.
I'll try tomorrow and let U know.
windows_xp_2003 cccc is offline     Reply With Quote

Reply

Bookmarks


Thread Tools

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
3D acceleration mark_alfred Linux - Hardware 8 12-30-2005 02:20 AM
3d acceleration yelo Linux - Software 11 02-20-2004 06:27 PM
3d Acceleration dunce22 Linux - Software 3 02-15-2004 01:46 PM
3d Acceleration? metaxa Linux - Laptop and Netbook 3 05-30-2003 06:55 PM
3d acceleration? vector Slackware 5 03-02-2003 04:51 PM


All times are GMT -5. The time now is 11:05 PM.

Main Menu
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
RSS2  LQ Podcast
RSS2  LQ Radio
Twitter: @linuxquestions
identi.ca: @linuxquestions
Facebook: @linuxquestions
Open Source Consulting | Domain Registration