Failed to load module nv ...

2007-06-12 Thread Kiffin Gish
The other day I upgraded to xorg 7.2 but when I run startx I get the
following error message:

-- Failed to load module nv

Rather that using the nvidia driver from the ports I had earlier downloaded
the official freebsd driver from the nvidia site, but had installed it into
the old xorg environment under /usr/X11R6.

Do I need to reinstall it but this time in the new environment?

Is that then under /usr/X11R6?

How do I tell the make script to point it there, export X11BASE?

Or should I remove this driver altogether and go with the official ports
one?

Thanks a lot in advance for all your help.

-- 
Kiffin Rex Gish
Gouda, The Netherlands

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Failed to load module nv ...

2007-06-12 Thread Bill Moran
In response to Kiffin Gish [EMAIL PROTECTED]:

 The other day I upgraded to xorg 7.2 but when I run startx I get the
 following error message:
 
 -- Failed to load module nv
 
 Rather that using the nvidia driver from the ports I had earlier downloaded
 the official freebsd driver from the nvidia site, but had installed it into
 the old xorg environment under /usr/X11R6.
 
 Do I need to reinstall it but this time in the new environment?
 
 Is that then under /usr/X11R6?
 
 How do I tell the make script to point it there, export X11BASE?
 
 Or should I remove this driver altogether and go with the official ports
 one?
 
 Thanks a lot in advance for all your help.

I recommend using the one provided by NVidia, as performance is noticeably
better for me.  However, there is a port for the nvidia one.  Depending on
your model of card, use one of the /usr/ports/x11/nvidia-* ports.

-- 
Bill Moran
http://www.potentialtech.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Failed to load module nv ...

2007-06-12 Thread RW
On Tue, 12 Jun 2007 21:42:19 +0200
Kiffin Gish [EMAIL PROTECTED] wrote:

 The other day I upgraded to xorg 7.2 but when I run startx I get the
 following error message:
 
 -- Failed to load module nv
 
 Rather that using the nvidia driver from the ports I had earlier
 downloaded the official freebsd driver from the nvidia site, but had
 installed it into the old xorg environment under /usr/X11R6.

nv is the open-source driver from xorg, if your xorg.conf entry
specifies nv then you've not actually been the using the driver from
the nvidia site, which is called nvidia.

x11/nvidia-driver is the port of nvidia's binary, the open source
version has only got its own port with the modularization of xorg in
7.2.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Failed to load module nv ...

2007-06-12 Thread Jose Luis Alarcon Sanchez
On Tue, 12 Jun 2007 21:42:19 +0200
Kiffin Gish [EMAIL PROTECTED] wrote:

 The other day I upgraded to xorg 7.2 but when I run startx I get the
 following error message:
 
 -- Failed to load module nv
 
Hi Kiffin.

Change your /etc/X11/xorg.conf archive. the line now is:

Driver  nv

must be:

Driver  nvidia

Hope this help.

Regards.

Jose.

 Rather that using the nvidia driver from the ports I had earlier downloaded
 the official freebsd driver from the nvidia site, but had installed it into
 the old xorg environment under /usr/X11R6.
 
 Do I need to reinstall it but this time in the new environment?
 
 Is that then under /usr/X11R6?
 
 How do I tell the make script to point it there, export X11BASE?
 
 Or should I remove this driver altogether and go with the official ports
 one?
 
 Thanks a lot in advance for all your help.
 
 -- 
 Kiffin Rex Gish
 Gouda, The Netherlands
 

-- 
http://www.lordofunix.org/
 
Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Failed to load module nv ...

2007-06-12 Thread youshi10

On Tue, 12 Jun 2007, Jose Luis Alarcon Sanchez wrote:


On Tue, 12 Jun 2007 21:42:19 +0200
Kiffin Gish [EMAIL PROTECTED] wrote:


The other day I upgraded to xorg 7.2 but when I run startx I get the
following error message:

-- Failed to load module nv


Hi Kiffin.

Change your /etc/X11/xorg.conf archive. the line now is:

   Driver  nv

must be:

   Driver  nvidia

Hope this help.

Regards.

Jose.


Rather that using the nvidia driver from the ports I had earlier downloaded
the official freebsd driver from the nvidia site, but had installed it into
the old xorg environment under /usr/X11R6.

Do I need to reinstall it but this time in the new environment?

Is that then under /usr/X11R6?

How do I tell the make script to point it there, export X11BASE?

Or should I remove this driver altogether and go with the official ports
one?

Thanks a lot in advance for all your help.

--
Kiffin Rex Gish
Gouda, The Netherlands



--
http://www.lordofunix.org/

Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.


** x11-drivers/nvidia-driver only works with i386 at this time.

-Garrett

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Failed to load module nv ...

2007-06-12 Thread Firas Kraiem
Hi

The nv driver is part of the official Xorg distribution. Make sure you have 
the x11/xorg metaport installed as it contains all the official drivers :

$ cd /usr/ports/x11/xorg
$ sudo make install clean

Also, make sure the ModulePath line in your xorg.conf points to the correct 
location (i.e. /usr/local instead of /usr/X11R6), an easy way to do that is 
to let Xorg regenerate a new file with

# X -cnfigure

About the official nvidia drivers, I had no problem installing them using the 
x11/nvidia-driver port instead of building from the nvidia tarball directly.

Firas

On Tuesday 12 June 2007 21:42:19 Kiffin Gish wrote:
 The other day I upgraded to xorg 7.2 but when I run startx I get the
 following error message:

 -- Failed to load module nv

 Rather that using the nvidia driver from the ports I had earlier downloaded
 the official freebsd driver from the nvidia site, but had installed it into
 the old xorg environment under /usr/X11R6.

 Do I need to reinstall it but this time in the new environment?

 Is that then under /usr/X11R6?

 How do I tell the make script to point it there, export X11BASE?

 Or should I remove this driver altogether and go with the official ports
 one?

 Thanks a lot in advance for all your help.



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]