LinuxQuestions.org
Support LQ: Use code LQCO20 and save 20% on CrossOver Office
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
 
LinkBack Search this Thread
Old 08-05-2003, 02:01 AM   #1
ritturaj
LQ Newbie
 
Registered: Jul 2003
Location: New delhi
Posts: 24

Rep: Reputation: 15
Angry resolution problem with i82845G graphic controller


I am new bie to the linux and i have tried to install RedHat 9.0 to my PC and it was successful

but the problem i am facing is of grpahic controller
i have intel(R) 845G chip set with inbuilt intel(R) 82845 graphic controller.
Firstly the screen is getting freezed so some said that it is driver prolem
so i downloaded driver from intel site for the graphic , and tried to install

but it is giving error kernal not compiled............

DRM not compiled...................
also giving that DRM is old so limiting the functionality

i a not able to understand what the problem is and how can i solve it

if any of Linux expert can help me out i shall be very thankfull for ur kind help

ritturaj
 
Old 08-05-2003, 05:37 AM   #2
fancypiper
Guru
 
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141

Rep: Reputation: 55
You probably need to install kernel-sources and re-install the driver.

# Compiling/installing kernel modules
You will need to have installed:
1. The developmental packages (compiler)
2. The kernel source code that matches your running kernel
3. The module source or install code

Check out your system and look under the hood and see if you installed the stuff you need to do the job. Open an x terminal and type in this sequence of commands to see what kernel we are running and see if you have the kernel source installed:
Code:
[fancy@tinwhistle fancy]$ su -
Password: 
[root@tinwhistle root]# uname -r
2.4.18-3
I am running kernel version 2.4.18-3. Do I have the proper source code?
Code:
[root@tinwhistle root]# cd /usr/src
[root@tinwhistle src]# ls -alc
total 3
drwxr-xr-x    4 root     root          136 Jun 12 14:53 .
drwxr-xr-x   16 root     root          424 Jun  4 12:04 ..
lrwxrwxrwx    1 root     root           14 Jun  4 12:11 linux-2.4 -> linux-2.4.18-3
drwxr-xr-x   16 root     root          584 Jun  4 12:11 linux-2.4.18-3
drwxr-xr-x    7 root     root          168 Jun  4 12:08 redhat
[root@tinwhistle src]#
I do have the same kernel version source code installed in the directory /usr/src/linux-2.4.18-3 and there is a symbolic link named linux-2.4 pointing to it.

If you don't see something similiar to this (but in color), you will need to install the kernel source.

NOTE: I noticed that Red Hat didn't make the symbolic link /usr/src/linux that all of the INSTALL files that I have read mentioned that I need, so I may as well make one now to save editing the files in the source code to install.So, I'll make it just now:
Code:
[root@tinwhistle src]# ln -s linux-2.4.18-3 linux         
[root@tinwhistle src]# ls -alc
total 3
drwxr-xr-x    4 root     root          160 Jun 12 15:46 .
drwxr-xr-x   16 root     root          424 Jun  4 12:04 ..
lrwxrwxrwx    1 root     root           14 Jun 12 15:46 linux -> linux-2.4.18-3
lrwxrwxrwx    1 root     root           14 Jun  4 12:11 linux-2.4 -> linux-2.4.18-3
drwxr-xr-x   16 root     root          584 Jun  4 12:11 linux-2.4.18-3
drwxr-xr-x    7 root     root          168 Jun  4 12:08 redhat
[root@tinwhistle src]#
Ah, there it is, so that's done.

Next, did I install the compiler?
Code:
[root@tinwhistle src]# gcc -v          
Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/2.96/specs
gcc version 2.96 20000731 (Red Hat Linux 7.3 2.96-113)
[root@tinwhistle src]#
Yes, I have a compiler installed.

If you don't have those two things installed, you have to install them first off your install CD.

If they are installed, download the source and happy comiling. Make sure you carefully read the README and INSTALL files after extracting and before compiling/installing.

# Guides to software and installation and uninstallation
LNAG - How do I install a program I downloaded from the Internet?
Rute Guide's software explanation
You might want to check out CheckInstall to manage source code installations/uninstallation

# Red Hat links
Red Hat Linux Manuals
Get your mp3 support here
Maximum RPM
rpmfind
Easier software management: apt4rpm - Red Carpet
Red Hat 8.0 Tips & Tricks

# Red Hat 7.3 down configuration commands
setup leads to several configuration tools

# Red Hat 7.3 up configuration commands
Configure soundcard:
redhat-config-soundcard
Configure X server:
redhat-config-xfree86
Configure network:
redhat-config-network
Manage software:
redhat-config-packages

# Handling NTFS
New Technology FileSystem (NTFS) HOWTOs
Linux NTFS project
 
Old 08-05-2003, 02:13 PM   #3
ritturaj
LQ Newbie
 
Registered: Jul 2003
Location: New delhi
Posts: 24

Original Poster
Rep: Reputation: 15
Angry problem yet not solved

i have check alll the things according to ur given instructions
every thing seems alright.
that means i have got everything installed

but i have got same error during reinstalltion of the driver
so i again installed kernal source and then reinstalled driver

the error it is giving is as follows:

Compiling new agpgart module
error: AGPGART module didnot compile
compiling new DRM module
error: Kernal module didnot compile

Warning: DRM module you are using may be old so limiting functionality.

thats all and installtion fails

so there is no gui i have to work in command mode.

so i am not able to undestand what is the problem when everything seems to be at its place

please help
 
Old 08-30-2003, 08:57 AM   #4
AirConditioner
LQ Newbie
 
Registered: Aug 2003
Location: Boston
Distribution: Slackware 9.1
Posts: 5

Rep: Reputation: 0
Angry Experiencing same problem!

Hey I'm on a Dell 4200, and I'm experiencing the exact same problem!! In trying to get my Intel 82845G card to work correctly with X windows, I've tried intel's .tar and .rpm, both give me those same results:

ERROR: AGPGART module did not compile

ERROR: Kernel modules did not compile

I don't know what's going on; I've made sure that I have kernel source and gcc and everything, as directed on the Intel site, but still no luck... this is frustrating... arrgh.
 
Old 08-30-2003, 12:12 PM   #5
safrout
Member
 
Registered: Mar 2002
Location: egypt
Distribution: Gentoo
Posts: 457

Rep: Reputation: 30
i have the same vedio card u r having and i used to use REdhat 9 few weeks ago and i did face the same probelm but to solve it i ran "xf86config" and i adjust everything there

try it and good luck

and by the way u don't need any external driver cos this chipset is already suppported under Xfree4.3.0
 
Old 02-23-2005, 12:03 PM   #6
hhahoo
LQ Newbie
 
Registered: Feb 2005
Posts: 1

Rep: Reputation: 0
Smile intel 82845

hi
i too have same prob if u r getting that msg do one thing there is one lib file with driver put in lib path . and try to install it will install the driver but there is some prob in my dispaly card so it is not workig still...... intel internal card is not reliable .. never go 4 it .......
 
Old 02-23-2005, 12:50 PM   #7
IsaacKuo
Senior Member
 
Registered: Apr 2004
Location: Baton Rouge, Louisiana, USA
Distribution: Debian 4.0 Etch
Posts: 1,346

Rep: Reputation: 49
I don't know how to solve the problem, but I do have an old HP Pavillion with this sort of integrated graphics and it worked with Debian Sarge without a problem. When the Sarge installer asked which driver I wanted to use, I selected "i810", because that's what Mepis autodetected.

If that driver doesn't work, then perhaps the generic "vesa" driver will work.

(Mepis is a Knoppix based liveCD with good hardware autodetection.)
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
Trackbacks are Off
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
graphic problem anjum Linux - Hardware 3 05-01-2005 11:57 AM
Text Resolution, Graphic resolution. Change from prompt dlublink Suse/Novell 2 01-28-2005 11:50 AM
graphic problem master Linux - General 2 06-13-2004 02:13 AM
X Resolution on Trident controller paco36 Linux - Software 1 01-19-2004 07:49 PM
Graphic Problem PIayer Linux - Games 1 11-23-2003 01:37 PM


All times are GMT -5. The time now is 08:00 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
Twitter: @linuxquestions
identi.ca: @linuxquestions
Facebook: @linuxquestions
Open Source Consulting | Domain Registration