Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
xorg-server cannot load nouveau
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Desktop Environments
View previous topic :: View next topic  
Author Message
augustin2
Apprentice
Apprentice


Joined: 16 Mar 2012
Posts: 244
Location: France

PostPosted: Sun Mar 18, 2012 2:25 pm    Post subject: xorg-server cannot load nouveau Reply with quote

hi
I am new to Gentoo. I am facing a problem installing xorg-server. I did what is explained in this page http://www.gentoo.org/doc/en/xorg-config.xml.
xorg cannot start and I get the follwing message:

Quote:
(EE) Failed to load module "nouveau" (module doesn't exist, 0)
(EE) Failed to load module "vesa" (module doesn't exist, 0)
(EE) Failed to load module "fbdev" (module doesn't exist, 0)


How comes that I am told "nouveau" doesn't exist as I have "nouveau" in the output of lsmod ?

My arch is x86_64 and my card is nVidia G86 (GeForce 8500 GT)
Thank you in advance for help.
Back to top
View user's profile Send private message
sebaro
Veteran
Veteran


Joined: 03 Jul 2006
Posts: 1141
Location: Romania

PostPosted: Sun Mar 18, 2012 3:16 pm    Post subject: Reply with quote

Did you put VIDEO_CARDS="nouveau" in /etc/make.conf and remerge mesa and xorg-drivers?
Back to top
View user's profile Send private message
DONAHUE
Watchman
Watchman


Joined: 09 Dec 2006
Posts: 7651
Location: Goose Creek SC

PostPosted: Sun Mar 18, 2012 6:37 pm    Post subject: Reply with quote

If you would like a second pair of eyes (or more) to look at your setup, run
Code:
emerge wgetpaste
emerge --info | wgetpaste
rc-update show | wgetpaste
emerge -pv xorg-server $(qlist -IC x11-drivers) | wgetpaste
lspci -k | wgetpaste
wgetpaste /etc/env.d/90xsession
wgetpaste /etc/conf.d/xdm
ls -l /etc/X11/Sessions | wgetpaste
ls -l /boot | wgetpaste
wgetpaste /boot/grub/grub.conf
eselect kernel list | wgetpaste
awk '/Graphics support/,/CONFIG_SOUND/' /usr/src/linux/.config | wgetpaste
eselect profile list

and post the url's returned
_________________
Defund the FCC.
Back to top
View user's profile Send private message
augustin2
Apprentice
Apprentice


Joined: 16 Mar 2012
Posts: 244
Location: France

PostPosted: Mon Mar 19, 2012 7:10 am    Post subject: Reply with quote

Thank you.
sebaro wrote:
Did you put VIDEO_CARDS="nouveau" in /etc/make.conf and remerge mesa and xorg-drivers?


I had VIDEO_CARDS="nouveau" but I didn't emerge mesa and xorg-drivers.

After emerging them xorg-server is satisfied with "nouveau" no longer (EE) on this but,
I still have
Quote:
(EE) Failed to load module "vesa" and "fbdev" (module doesn't exist, 0)

and plenty of lines
Quote:
(EE) failed to load module "evdev" (module doesn't exist, 0)
(EE) No input driver matching "evdev"


What shoul I emerge for "evdev", "vesa" and "fbdev"

Here is my /etc/make.conf
Quote:

USE="mmx sse sse2 dvd alsa cdr -kde -qt3 -qt4"
MAKEOPTS="-j5"
INPUTDEVICES="evdev"
VIDEO_CARDS="nouveau"
Back to top
View user's profile Send private message
augustin2
Apprentice
Apprentice


Joined: 16 Mar 2012
Posts: 244
Location: France

PostPosted: Mon Mar 19, 2012 7:50 am    Post subject: Reply with quote

Thank you very much.
Please find the links hereafter.


emerge --info | wgetpaste http://paste.pocoo.org/show/567753

rc-update show | wgetpaste http://paste.pocoo.org/show/567754

emerge -pv xorg-server $(qlist -IC x11-drivers) | wgetpaste http://paste.pocoo.org/show/567755 (-bash qlist command not found)

lspci -k | wgetpaste http://paste.pocoo.org/show/567756

wgetpaste /etc/env.d/90xsession /usr/bin/wgetpaste: /etc/env.d/90xsession No such file found
For info:
ls -l /etc/env.d/ | wgetpaste http://paste.pocoo.org/show/567764

wgetpaste /etc/conf.d/xdm http://paste.pocoo.org/show/567759

ls -l /etc/X11/Sessions | wgetpaste http://paste.pocoo.org/show/567760

ls -l /boot | wgetpaste http://paste.poccoo.org/show/567761

wgetpaste /boot/grub/grub.conf (after mounting /dev/sda1 on /boot) ]http://paste.pocoo.org/show/567762
Remark : I don't reinstall grub each time, I let it as done by an other sys (OpenSuse), I just remove kernel, initramfs and System.map before running
from /usr/src/linux

Code:
genkernel --menuconfig --install --makeopts="-j5" --logfile=/genkernel.log.all


eselect kernel list | wgetpaste ]http://paste.pocoo.org/show/567765

awk '/Graphics support/,/CONFIG_SOUND/' /usr/src/linux/.config | wgetpaste http://paste.pocoo.org/show/567766

eselect profile list http://paste.pocoo.org/show/567755
Back to top
View user's profile Send private message
Chiitoo
Administrator
Administrator


Joined: 28 Feb 2010
Posts: 2575
Location: Here and Away Again

PostPosted: Mon Mar 19, 2012 9:57 am    Post subject: ><)))°€ Reply with quote

augustin2 wrote:
What shoul I emerge for "evdev", "vesa" and "fbdev"

Here is my /etc/make.conf
Quote:

USE="mmx sse sse2 dvd alsa cdr -kde -qt3 -qt4"
MAKEOPTS="-j5"
INPUTDEVICES="evdev"
VIDEO_CARDS="nouveau"

Try

Code:
INPUT_DEVICES="evdev"

instead. 8)
I'm not positive, but I don't think "INPUTDEVICES" will work and because of this, you probably are missing this:

Code:
x11-drivers/xf86-input-evdev

Just a guess. ^^


And by the by,

augustin2 wrote:
emerge -pv xorg-server $(qlist -IC x11-drivers) | wgetpaste http://paste.pocoo.org/show/567755 (-bash qlist command not found)

qlist comes from:

Code:
app-portage/portage-utils

_________________
Kindest of regardses.
Back to top
View user's profile Send private message
augustin2
Apprentice
Apprentice


Joined: 16 Mar 2012
Posts: 244
Location: France

PostPosted: Mon Mar 19, 2012 12:06 pm    Post subject: Re: ><)))°€ Reply with quote

Thank you.

Chiitoo wrote:


Code:
x11-drivers/xf86-input-evdev

Just a guess. ^^


After emerging xf86-input-evdev

Seems to be better.
Here is what "startx" returns:
http://paste.pocoo.org/show/567834
Back to top
View user's profile Send private message
augustin2
Apprentice
Apprentice


Joined: 16 Mar 2012
Posts: 244
Location: France

PostPosted: Mon Mar 19, 2012 12:49 pm    Post subject: Re: ><)))°€ Reply with quote

Hi everybody,

after emerging the x11 drivers for vesa and fbdev x start correctly now.

Thank you again.

As I become more accustomed to Gentoo I have a good feeling of both Gentoo and its community.
Back to top
View user's profile Send private message
desultory
Bodhisattva
Bodhisattva


Joined: 04 Nov 2005
Posts: 9410

PostPosted: Tue Mar 20, 2012 3:46 am    Post subject: Reply with quote

Moved from Installing Gentoo to Desktop Environments, as a GUI question it seems to be a better fit here.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Desktop Environments 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