Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
[X] je n'arrive a lancer X car agpPart unable to open...
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index French
View previous topic :: View next topic  
Author Message
zoltix
Apprentice
Apprentice


Joined: 22 Mar 2004
Posts: 249
Location: Brusssels

PostPosted: Fri Apr 01, 2005 12:17 pm    Post subject: [X] je n'arrive a lancer X car agpPart unable to open... Reply with quote

Salut,
Je viens d’installer mon server X et voici le message d'erreur ......

Comme c'est une carte intégré a la carte mère c'est peut être ça qui pose problème. Ceci dit il n'existe pas un driver générique qui marche pour la plupart des cartes écran.
Merci de votre aide et voici le log de l'erreur.



X Window System Version 6.8.2
Release Date: 9 February 2005
X Protocol Version 11, Revision 0, Release 6.8.2
Build Operating System: Linux 2.6.11-gentoo-r4 i686 [ELF]
Current Operating System: Linux brufree01 2.6.11-gentoo-r4 #1 SMP Thu Mar 31 20:20:47 CEST 2005 i686
Build Date: 01 April 2005
Before reporting problems, check http://wiki.X.Org
to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Fri Apr 1 16:09:12 2005
(==) Using config file: "/etc/X11/xorg.conf"
Using vt 7

(EE) GARTInit: Unable to open /dev/agpgart (No such device)
(EE) I810(0): AGP GART support is not available. Make sure your kernel has
agpgart support or that the agpgart kernel module is loaded.
(EE) Screen(s) found, but none have a usable configuration.

Fatal server error:
no screens found

Please consult the The X.Org Foundation support
at http://wiki.X.Org
for help.
Please also check the log file at "/var/log/Xorg.0.log" for additional information.

XIO: fatal IO error 104 (Connection reset by peer) on X server ":0.0"
after 0 requests (0 known processed) with 0 events remaining.
Back to top
View user's profile Send private message
marvin rouge
Veteran
Veteran


Joined: 01 Aug 2004
Posts: 1422
Location: Villa Lumierrante, Zonelibre

PostPosted: Fri Apr 01, 2005 12:20 pm    Post subject: Re: [X] je n'arrive a lancer X car agpPart unable to open... Reply with quote

Xorg.0.log wrote:
Make sure your kernel has agpgart support or that the agpgart kernel module is loaded.


Faut que tu aies le support de l'agp dans ton kernel. Envoie nous un
Code:
grep -i agp /usr/src/linux/.config


Sinon, le chipset i810 fonctionne avec xorg, donc a priori c'est pas là le problème.

EDIT : pour compléter un peu : si tu veux connaitre ton matos, tu fais lspci (si tu n'as pas cette commande, emerge pciutils), et tu devrais trouver tout ce qu'il faut pour configurer ton kernel (quel chipset pour le son, le réseau, etc ...).
Back to top
View user's profile Send private message
zoltix
Apprentice
Apprentice


Joined: 22 Mar 2004
Posts: 249
Location: Brusssels

PostPosted: Fri Apr 01, 2005 12:36 pm    Post subject: Reply with quote

je suis genkernel alos je ne sais comment faire
Back to top
View user's profile Send private message
zoltix
Apprentice
Apprentice


Joined: 22 Mar 2004
Posts: 249
Location: Brusssels

PostPosted: Fri Apr 01, 2005 12:39 pm    Post subject: Reply with quote

et pour "lspci (si tu n'as pas cette commande, emerge pciutils), " un grand merci ca m'aide bcp ...........mais je suis tjrs avec genkernel je je ne sais comment faire merci d'avance de votre aide

bye
Back to top
View user's profile Send private message
zoltix
Apprentice
Apprentice


Joined: 22 Mar 2004
Posts: 249
Location: Brusssels

PostPosted: Fri Apr 01, 2005 12:47 pm    Post subject: Reply with quote

grep -i agp /usr/src/linux/.config
# CONFIG_AGP is not set
comment je peux faire pour le configurer avec genkernel ?
Back to top
View user's profile Send private message
papedre
Apprentice
Apprentice


Joined: 02 Mar 2005
Posts: 178

PostPosted: Fri Apr 01, 2005 2:48 pm    Post subject: Reply with quote

De mémoire, tu dois lancer Genkernel en modifiant la config de ton noyau. Ca doit se faire avec la commande suivante :
Code:
genkernel --menuconfig

Il faut ensuite que tu trouves la ligne pour l'agp, et que tu le mettes par defaut dans le noyau ( "Y") ou en module ("M").
Si tu le mets en modules, il faudra que tu penses à charger ce modules au demarrage.
A+
Back to top
View user's profile Send private message
marvin rouge
Veteran
Veteran


Joined: 01 Aug 2004
Posts: 1422
Location: Villa Lumierrante, Zonelibre

PostPosted: Fri Apr 01, 2005 3:16 pm    Post subject: Reply with quote

sinon t'as la solution de faire ton kernel à la main, qui est beaucoup moins compliquée qu'il n'y parait, et qui à l'avantage de te faire comprendre ce que tu fais.
Code:
cd /usr/src/config
make mrproper
make menuconfig

-> la tu configures ton kernel, en t'aidant de lspci
-> les erreurs fréquentes:
- se planter dans la définition du controlleur IDE, ou de le mettre en module, ce qui t'empeche de booter
- mettre en module le filesystem de la partition /
- faire le choix udev / devfs

ensuite
Code:
 make && make modules_install
mount /boot
cp arch/i386/boot/bzImage /boot/kernel-x.y.z
cp .config /boot/config-x.y.z   ###important : ca te permet de modifier ta config après, sans tout refaire
nano -w /boot/grub/grub.conf

là faut rajouter la ligne kivabien, la plus simple possible (commence sans framebuffer ni fioritures, tu rajoutes après si tu veux). Genre (à adapter)
Code:
title Gentoo x.y.z
root (hd0,0)
kernel /kernel-x.y.z root=/dev/md0


Garde ton ancien kernel pour avoir un boot valable. Si tu veux modifier ta config:
Code:
cd /usr/src/linux
make mrproper
mount /boot
cp /boot/config-x.y.z .config
make menuconfig
...

et après c'est comme avant (!)

Pas mal d'info dans le Gentoo Handbook.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index French All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum