LinuxQuestions.org
Visit Jeremy's Blog.
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 05-20-2004, 08:18 PM   #16
Choncey
LQ Newbie
 
Registered: May 2004
Location: Idaho, USA
Distribution: Mandrake Linux 8, 8.1, 9, 9.1, 10, SuSE 9.2 Pro, RHEL 3.0, Fedora Core 2, 3
Posts: 11

Rep: Reputation: 0

OK.. I fixed it all I had to due was add the load "DRI" and the module "DRI" Then change the graphics to I810.. Thanks Muzzy for giving me the pointers. They muchly appreciated..
 
Old 05-21-2004, 03:13 AM   #17
Muzzy
Member
 
Registered: Mar 2004
Location: Denmark
Distribution: Gentoo, Slackware
Posts: 333

Original Poster
Rep: Reputation: 30
Ah it seems that lspci it is installed to /usr/bin/lspci on Mandrake systems. Try that instead:
Code:
/usr/bin/lspci
If that doesn't work, try just 'lspci' as root. If that fails, then you need to download and install the pciutils package. That command gives useful info about your hardware, so it would be nice to see the output of it.

Anyway I can see that the modules i810 and i830 are not listed in lsmod, so try doing this an d see if you get any errors (you need to be root):
Code:
# modprobe i810
# modprobe i830
From your XFree86.0.log I can see that there are a few warnings but no errors. There are quite a lot of warnings related to I810, but no mention of I830. Some of the warnings are the same as the ones I get when it is working fine. But some of them I have not seen before, perhaps a Google search could explain it. Anyway try the modprobes first, and post the output of them, and also see if you can get lpsci installed.
 
Old 05-21-2004, 11:22 AM   #18
Choncey
LQ Newbie
 
Registered: May 2004
Location: Idaho, USA
Distribution: Mandrake Linux 8, 8.1, 9, 9.1, 10, SuSE 9.2 Pro, RHEL 3.0, Fedora Core 2, 3
Posts: 11

Rep: Reputation: 0
I will try that tonight. will post them when I get home. Thanks again Muzzy..
 
Old 05-21-2004, 06:38 PM   #19
Choncey
LQ Newbie
 
Registered: May 2004
Location: Idaho, USA
Distribution: Mandrake Linux 8, 8.1, 9, 9.1, 10, SuSE 9.2 Pro, RHEL 3.0, Fedora Core 2, 3
Posts: 11

Rep: Reputation: 0
Here are the 3 things you wanted.

Code:
$ lspci
00:00.0 Host bridge: Intel Corp. 82845G/GL [Brookdale-G] Chipset Host Bridge (rev 01)
00:02.0 VGA compatible controller: Intel Corp. 82845G/GL [Brookdale-G] Chipset Integrated Graphics Device (rev 01)
00:1d.0 USB Controller: Intel Corp. 82801DB USB (Hub #1) (rev 01)
00:1d.1 USB Controller: Intel Corp. 82801DB USB (Hub #2) (rev 01)
00:1d.2 USB Controller: Intel Corp. 82801DB USB (Hub #3) (rev 01)
00:1d.7 USB Controller: Intel Corp. 82801DB USB EHCI Controller (rev 01)
00:1e.0 PCI bridge: Intel Corp. 82801BA/CA/DB PCI Bridge (rev 81)
00:1f.0 ISA bridge: Intel Corp. 82801DB ISA Bridge (LPC) (rev 01)
00:1f.1 IDE interface: Intel Corp. 82801DB ICH4 IDE (rev 01)
00:1f.3 SMBus: Intel Corp. 82801DB SMBus (rev 01)
00:1f.5 Multimedia audio controller: Intel Corp. 82801DB AC'97 Audio (rev 01)
01:04.0 Modem: Broadcom Corporation BCM4212 v.90 56k modem (rev 02)
01:05.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8139/8139C/8139C+ (rev 10)
As far as these go, This is all I get, when putting in the commands.

Code:
# modprobe i810
# modprobe i830
Here is the latest LSMOD Code as well

Code:
$ lsmod
Module                  Size  Used by    Not tainted
i810                   61248   0 (unused)
nls_cp437               5148   3 (autoclean)
smbfs                  40144   3 (autoclean)
isofs                  27988   1 (autoclean)
zlib_inflate           21156   0 (autoclean) [isofs]
nls_iso8859-1           3516   4 (autoclean)
udf                    90464   0 (autoclean)
parport_pc             25096   1 (autoclean)
lp                      8096   0 (autoclean)
parport                34176   1 (autoclean) [parport_pc lp]
i830                   68096  18
agpgart                40896  12 (autoclean)
i810_audio             26248   0
soundcore               6276   0 [i810_audio]
ac97_codec             12488   0 [i810_audio]
nfsd                   74256   8 (autoclean)
af_packet              14952   0 (autoclean)
8139too                17160   1 (autoclean)
mii                     3832   0 (autoclean) [8139too]
supermount             15296   3 (autoclean)
sr_mod                 16920   0 (autoclean)
ide-scsi               11280   0 (autoclean)
ide-cd                 33856   1 (autoclean)
cdrom                  31648   0 (autoclean) [sr_mod ide-cd]
floppy                 55132   0 (autoclean)
hpusbscsi               8228   0 (unused)
scsi_mod              103284   3 [sr_mod ide-scsi hpusbscsi]
ehci-hcd               18568   0 (unused)
usb-uhci               24652   0 (unused)
usbcore                72992   1 [hpusbscsi ehci-hcd usb-uhci]
rtc                     8060   0 (autoclean)
ext3                   59916   2
jbd                    38972   2 [ext3]

Last edited by Choncey; 05-21-2004 at 06:42 PM.
 
Old 05-22-2004, 09:19 AM   #20
Muzzy
Member
 
Registered: Mar 2004
Location: Denmark
Distribution: Gentoo, Slackware
Posts: 333

Original Poster
Rep: Reputation: 30
It looks fine! No errors during the modprobe... have you tried modprobing then restarting the X server? If that doesn't work then I'm stumped... perhaps there is more info in the XFree86.0.log file that would be interesting to see.
 
Old 05-24-2004, 07:03 AM   #21
Choncey
LQ Newbie
 
Registered: May 2004
Location: Idaho, USA
Distribution: Mandrake Linux 8, 8.1, 9, 9.1, 10, SuSE 9.2 Pro, RHEL 3.0, Fedora Core 2, 3
Posts: 11

Rep: Reputation: 0
Yeah, everything is working great other than the slowness to the actual FPS. When the direct rendering is on, it shows a framerate of about 200 - 400 frames verying on what I am doing. Otherthan that it is working great. Thanks for the help muzzy....
 
  


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
Direct Rendering Infrastructure DRI on VIA\S3 Savage /bin/bash Linux - Hardware 145 09-04-2006 09:37 AM
libGL is out of sync with DRI - no direct rendering ATI m9 cor67393 Slackware 5 08-21-2005 12:13 PM
Direct Rendering mapster Mandriva 3 03-30-2005 07:22 AM
IGP320 Xfree86 log and GLXinfo adamis Linux - Laptop and Netbook 4 06-17-2004 08:13 AM
glxinfo reports DRI disabled as a normal user guerilla fighta Linux - Software 4 10-07-2003 11:37 AM

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

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