Page 6 of 8 FirstFirst ... 45678 LastLast
Results 51 to 60 of 77

Thread: HOWTO: Nouveau - Open source 3d drivers for nvidia graphic cards

  1. #51
    Join Date
    Jan 2007
    Location
    Biandronno(Varese)-ITALIA
    Beans
    16

    Re: HOWTO: Nouveau - Open source 3d drivers for nvidia graphic cards

    This is the Xorg.0.log:
    Code:
    [   754.498] 
    X.Org X Server 1.10.1
    Release Date: 2011-04-15
    [   754.500] X Protocol Version 11, Revision 0
    [   754.501] Build Operating System: Linux 2.6.24-27-server i686 Ubuntu
    [   754.501] Current Operating System: Linux chri-Inspiron-1520 3.0.0-slayk-rt3 #2 SMP PREEMPT RT Tue Jul 26 19:12:43 CEST 2011 i686
    [   754.502] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.0.0-slayk-rt3 root=UUID=163082aa-0f8f-465d-83e3-f95fe868b6fc ro single
    [   754.503] Build Date: 21 May 2011  11:38:35AM
    [   754.503] xorg-server 2:1.10.1-1ubuntu1.1 (For technical support please see http://www.ubuntu.com/support) 
    [   754.504] Current version of pixman: 0.20.2
    [   754.505] 	Before reporting problems, check http://wiki.x.org
    	to make sure that you have the latest version.
    [   754.506] Markers: (--) probed, (**) from config file, (==) default setting,
    	(++) from command line, (!!) notice, (II) informational,
    	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [   754.508] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Aug  3 17:20:52 2011
    [   754.509] (==) Using config file: "/etc/X11/xorg.conf"
    [   754.510] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [   754.511] Parse error on line 41 of section Monitor in file /etc/X11/xorg.conf
    	"Option" is not a valid keyword in this section.
    [   754.512] (EE) Problem parsing the config file
    [   754.513] (EE) Error parsing the config file
    [   754.513] 
    Fatal server error:
    [   754.515] no screens found
    [   754.515] 
    Please consult the The X.Org Foundation support 
    	 at http://wiki.x.org
     for help. 
    [   754.518] Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [   754.519] 
    [   754.520]  ddxSigGiveUp: Closing log
    Thanks!
    Christian

  2. #52
    Join Date
    Nov 2006
    Location
    Denmark
    Beans
    83

    Re: HOWTO: Nouveau - Open source 3d drivers for nvidia graphic cards

    The log is saying that there is something wrong with your /etc/X11/xorg.conf. Maybe some typos or made some mistakes while copying some text?
    Code:
    [   754.511] Parse error on line 41 of section Monitor in file /etc/X11/xorg.conf
    	"Option" is not a valid keyword in this section.
    [   754.512] (EE) Problem parsing the config file
    [   754.513] (EE) Error parsing the config file

  3. #53
    Join Date
    Jan 2007
    Location
    Biandronno(Varese)-ITALIA
    Beans
    16

    Re: HOWTO: Nouveau - Open source 3d drivers for nvidia graphic cards

    Thanks for tips! I solved my problem and it works perfectly!

    Your solution is very good for vanilla -rt kernels that didn't function with nvidia proprietary drivers.

    But, as in my previous post I said, I encountered some errors in phase of compiling drivers 2d & 3d.
    The problems were due at the location of headers and sources of my vanilla kernel (in a folder placed in my home dir).
    After solved this, (I copied all elements of headers folder in sources folder with the union of files), the problem was the command in point 4 of section "E" of your "how-to".
    With your command (probably for old version of git mesa driver), the system does not compile "nouveau_dri.so".

    So, I used this command:
    Code:
    ./autogen.sh --with-dri-drivers= --with-gallium-drivers=swrast,nouveau --enable-debug \
     --enable-texture-float --disable-asm --enable-opengl --disable-gles2 --disable-openvg \
     --enable-dri --enable-glx --enable-xvmc --disable-va --disable-vdpau --disable-osmesa \
     --disable-egl --disable-xorg --disable-d3d1x --disable-xa --disable-gbm --disable-xlib-glx \
     --disable-gallium-egl --disable-gallium-gbm --disable-gallium-llvm --disable-xcb \
     --enable-driglx-direct --enable-glx-tls --enable-glu --enable-glw --disable-motif PKG_CONFIG_PATH=/lib/pkgconfig
    as I found here http://nouveau.freedesktop.org/wiki/GalliumHowto

    And then I ran:
    Code:
    make PKG_CONFIG_PATH=/lib/pkgconfig
    After this, I re-took your points.

    My last problem was the Xorg configuration.
    I resumed an old backup of my Xorg, I insert "nouveau" in "Driver" and some data for change the resolution of my laptop display.
    When I'll come back to my home, I'll paste here my Xorg.conf .

    Thanks a lot again.

  4. #54
    Join Date
    Nov 2006
    Location
    Denmark
    Beans
    83

    Re: HOWTO: Nouveau - Open source 3d drivers for nvidia graphic cards

    Quote Originally Posted by slaykristian View Post
    the problem was the command in point 4 of section "E" of your "how-to".
    With your command (probably for old version of git mesa driver), the system does not compile "nouveau_dri.so".
    Maybe the configuration scripts changed since the time I updated the guide. I will try it myself again and see if I can reproduce the problem you had.


    Anyway, glad the guide was helpful to you

  5. #55
    Join Date
    Mar 2011
    Location
    sydney
    Beans
    92
    Distro
    Ubuntu 12.10 Quantal Quetzal

    Re: HOWTO: Nouveau - Open source 3d drivers for nvidia graphic cards

    is this guide still valid?

    someone in this post said in 10.10 all you have to do is install
    libgl1-mesa-dri-experimental

    and disable your main driver in jockey

    or do i still have to follow the guide?

    Also im wondering if this kills the screen tearing problem, the latest nvidia drivers ( appearently since the 200 series drivers ) have had trouble communicate with VSync and compositing window managers

    And i have yet to find a permanent fix,

    But im wondering if using the Nouveau 3D Driver will fix this little issue and finally let me use compositing

  6. #56
    Join Date
    Nov 2006
    Location
    Denmark
    Beans
    83

    Re: HOWTO: Nouveau - Open source 3d drivers for nvidia graphic cards

    Quote Originally Posted by nankura View Post
    is this guide still valid?

    someone in this post said in 10.10 all you have to do is install
    libgl1-mesa-dri-experimental

    and disable your main driver in jockey

    or do i still have to follow the guide?
    Drivers in ubuntu repository are outdated. The guide is for those who need the latest version.


    Quote Originally Posted by nankura View Post
    But im wondering if using the Nouveau 3D Driver will fix this little issue and finally let me use compositing
    Don't know.

  7. #57
    Join Date
    Feb 2007
    Location
    Alabama
    Beans
    38
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: HOWTO: Nouveau - Open source 3d drivers for nvidia graphic cards

    I've been fighting a losing battle to try and get 3D with an old GeForce 6800...worked fine up to 9.10, won't hardly do 2D with anything past that.

    The proprietary drivers have been nothing but problems...is there 3D support for a card this old with nouveau? And if so, will the posted instructions work to install it?
    - Sean Clayton
    Learning n00b

  8. #58
    Join Date
    Nov 2006
    Location
    Denmark
    Beans
    83

    Re: HOWTO: Nouveau - Open source 3d drivers for nvidia graphic cards

    Quote Originally Posted by SeanCly10 View Post
    The proprietary drivers have been nothing but problems...is there 3D support for a card this old with nouveau? And if so, will the posted instructions work to install it?
    Nouveau supports pretty well 6800, but don't expect good performance. Also, if you don't need the latest 3d drivers, you could just libgl1-mesa-dri-experimental package from ubuntu repository which provides pretty old 3d nouveau driver.

  9. #59
    Join Date
    Feb 2007
    Location
    Alabama
    Beans
    38
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: HOWTO: Nouveau - Open source 3d drivers for nvidia graphic cards

    Well, I don't plan on playing any graphics-intense games or anything with it...just making sure my wife's Facebook games don't look like stop-motion.

    How does one install the experimental package?
    - Sean Clayton
    Learning n00b

  10. #60
    Join Date
    Nov 2006
    Location
    Denmark
    Beans
    83

    Re: HOWTO: Nouveau - Open source 3d drivers for nvidia graphic cards

    Quote Originally Posted by SeanCly10 View Post
    Well, I don't plan on playing any graphics-intense games or anything with it...just making sure my wife's Facebook games don't look like stop-motion.

    How does one install the experimental package?
    Use synaptic package manager or run the following command:
    Code:
    sudo apt-get install libgl1-mesa-dri-experimental
    Also you'll need to install xserver-xorg-video-nouveau for 2D and uninstall official nvidia driver to avoid conflicts.

Page 6 of 8 FirstFirst ... 45678 LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •