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 09-17-2012, 08:14 PM   #1
Dornith
Member
 
Registered: Jul 2012
Location: U.S.A
Distribution: Archlinux Multilib, Debian 7.0.0 32b
Posts: 153

Rep: Reputation: Disabled
Intel 945GM Graphics card drivers


I just installed Ubuntu on my Intel Latitude D620 and put WINE on it so that I could run some of my games that I had when it ran XP. The problem is, most of the games have major problems with the graphics; primarily, the 3D ones. I have yet to find any drivers with which I've had any amount of success (I've tried mesa, xc, and a couple others, none of which I've managed to compile, or even configure.)

Can anyone help me work this out?

(Note: Other people have reported perfect success with these same games, so I know it's not WINE.)
 
Old 09-17-2012, 08:22 PM   #2
snowday
Senior Member
 
Registered: Feb 2009
Posts: 4,667

Rep: Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411
The driver for your card should be installed by default in Ubuntu, as you can verify with:

Code:
apt-cache policy xserver-xorg-video-intel
I recommend a dual boot with Windows for your gaming needs. If you tell us the name of the games, maybe someone can help you... (not me though, I am not a Windows gamer)
 
Old 09-17-2012, 08:31 PM   #3
Dornith
Member
 
Registered: Jul 2012
Location: U.S.A
Distribution: Archlinux Multilib, Debian 7.0.0 32b
Posts: 153

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by snowpine View Post
The driver for your card should be installed by default in Ubuntu, as you can verify with:

Code:
apt-cache policy xserver-xorg-video-intel
I recommend a dual boot with Windows for your gaming needs. If you tell us the name of the games, maybe someone can help you... (not me though, I am not a Windows gamer)
That's odd, considering when I go to System Settings < Detail < Graphics it says "Driver: Unknown".

Also, Civ4 and Operation Genesis. Both of which aren't major games and many people have gotten to work with WINE. But, they are also the only two which use 3D graphics to a large extent.
 
Old 09-17-2012, 08:54 PM   #4
snowday
Senior Member
 
Registered: Feb 2009
Posts: 4,667

Rep: Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411
If there are errors they'd show up in /var/log/Xorg.0.log I believe.
But I'd be surprised if there were since the Intel 945GM is a *very* common piece of hardware well-supported by all Linux distros.
 
Old 09-17-2012, 09:04 PM   #5
snowday
Senior Member
 
Registered: Feb 2009
Posts: 4,667

Rep: Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411
Try this terminal command:

Code:
lsmod | grep video
I see 'i915' next to video, indicating the Intel 915 driver is loaded and in use for my Intel Corporation Mobile 945GM/GMS card.
 
Old 09-17-2012, 09:05 PM   #6
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
Blog Entries: 2

Rep: Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886
Please post the output of
Code:
glxinfo | grep render
 
Old 09-18-2012, 07:21 AM   #7
Dornith
Member
 
Registered: Jul 2012
Location: U.S.A
Distribution: Archlinux Multilib, Debian 7.0.0 32b
Posts: 153

Original Poster
Rep: Reputation: Disabled
lsmod | grep video:
Code:
video                  19068  1 i915
glxinfo | grep render
Code:
The program 'glxinfo' is currently not installed.  You can install it by typing:
sudo apt-get install mesa-utils
/var/log/Xorg.0.log:
There was quite a bit in there. One i did see a lot was:
Code:
DDCModeFromDetailedTiming: 1440x900 Warning: We only handle separate sync.
The the 2D graphics work exelently, the problem is when I try and do anything with 3D.
 
Old 09-18-2012, 09:49 AM   #8
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
Blog Entries: 2

Rep: Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886
Install mesa-utils, like suggested with
Code:
sudo apt-get install mesa-utils
and try
Code:
glxinfo | grep render
again.
 
Old 09-18-2012, 07:24 PM   #9
Dornith
Member
 
Registered: Jul 2012
Location: U.S.A
Distribution: Archlinux Multilib, Debian 7.0.0 32b
Posts: 153

Original Poster
Rep: Reputation: Disabled
Code:
direct rendering: Yes
OpenGL renderer string: Mesa DRI Intel(R) 945GM x86/MMX/SSE2
Also, I tried running it again with that, still could load the 3D.
 
Old 09-18-2012, 08:10 PM   #10
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
Blog Entries: 2

Rep: Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886
The output of glxinfo shows that your card is working and should deliver 3D acceleration. Can you run native 3D applications?
 
Old 09-18-2012, 08:11 PM   #11
Dornith
Member
 
Registered: Jul 2012
Location: U.S.A
Distribution: Archlinux Multilib, Debian 7.0.0 32b
Posts: 153

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by TobiSGD View Post
The output of glxinfo shows that your card is working and should deliver 3D acceleration. Can you run native 3D applications?
Such as what?
 
Old 09-18-2012, 08:12 PM   #12
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
Blog Entries: 2

Rep: Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886
Maybe try Tuxracer.
 
Old 09-18-2012, 08:15 PM   #13
Dornith
Member
 
Registered: Jul 2012
Location: U.S.A
Distribution: Archlinux Multilib, Debian 7.0.0 32b
Posts: 153

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by TobiSGD View Post
Maybe try Tuxracer.
Couldn't find it, but I'm also looking into WINE DLLs now.
 
Old 09-18-2012, 08:19 PM   #14
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
Blog Entries: 2

Rep: Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886
Sorry, they changed their name to Extreme Tuxracer, the package name is extremetuxracer.
 
Old 09-19-2012, 12:03 AM   #15
ReaperX7
LQ Guru
 
Registered: Jul 2011
Location: California
Distribution: Slackware64-15.0 Multilib
Posts: 6,558
Blog Entries: 15

Rep: Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097
There are several WINE registry tweaks you can do to try and squeeze some extra power out of WINE and Windows based applications, but it won't be much:

http://wiki.winehq.org/UsefulRegistryKeys

I've had very little luck telling the difference between using these options and not using them. For some Windows applications, it's just best to knuckle under and dual-boot.

Last edited by ReaperX7; 09-19-2012 at 12:06 AM.
 
  


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
XGL/Beryl Performance on Laptop with Intel GMA 950 Integrated graphics 945GM Jyneo Linux - General 1 09-24-2007 04:46 PM
Are the drivers for my Intel 945GM properly configured? E-Man Linux - Hardware 1 09-08-2007 10:46 AM
Suse 9.3 and 945GM graphics card lkemp Linux - Hardware 2 07-02-2007 02:29 AM
Help-Installing a 945GM Intel Graphics Driver on Opensuse 10.2 lordshaneez SUSE / openSUSE 6 02-24-2007 04:56 AM
intel 945gm graphics controller.. only vesa works .5 times IPDreams Linux - Hardware 1 09-28-2006 01:42 PM

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

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