WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: [SOLVED] NVIDIA-Linux-x86-173.14.39-pkg1.run  (Read 30213 times)

Offline Stone.Giant

  • Full Member
  • ***
  • Posts: 100
Re: NVIDIA-Linux-x86-173.14.39-pkg1.run
« Reply #90 on: June 13, 2015, 10:34:43 AM »
To assist, I have attempted to run Nvidia driver 173 on my oldest Geforce GTX 200 series hardware, so far without success.  While I can not find more info on the NVIDIA-Linux-x86-173.14.39,  I found NVIDIA-Linux-x86-173.14.30 info in the archives which supports the desktop version but not the mobile version of the hardware I have.  The driver usually reports if the hardware is not supported, but not so in this case.

Here is my driver info from Nvidia site. Hope this helps http://pastebin.com/eAqxzaWT

BTW I've done separate/simultaneous activities regarding compilation and installtion

To Rich and Misalf: I cannot run the create-nvidia-raw it returned me again the error "Cannot build kernel module"

To Juanito: I load both xorg-7.7.3d and nvidia-173.14.39-3.16.6-tinycore.tcz at CLI. It just says OK dont know if its working. When shud I run the patch shud I chmod it to shell executable? BTW I have only 32-bit machine. The 300 series is for 64-bit

To jls_legalize: I already installed tc-ext-tools. Why I got warning
Quote
sh: .: line 28: can't open '/etc/init.d/tet-functions'
how can I uninstall it? Kindly review my PM

Offline Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14546
Re: NVIDIA-Linux-x86-173.14.39-pkg1.run
« Reply #91 on: June 13, 2015, 11:01:08 AM »
I load both xorg-7.7.3d and nvidia-173.14.39-3.16.6-tinycore.tcz at CLI. It just says OK dont know if its working. When shud I run the patch shud I chmod it to shell executable? BTW I have only 32-bit machine. The 300 series is for 64-bit

nvidia-173.14.39-3.16.6-tinycore should contain everything you need (and it is 32-bit) - the first thing to try is "sudo modprobe nvidia" and check for error messages at the console and in dmesg.

If this works OK, then you need to create an /etc/X11/xorg.conf.d/20-nvidia.conf as per a few posts ago and then try "xorg -nolisten tcp" and report any errors.

Offline coreplayer2

  • Hero Member
  • *****
  • Posts: 3020
Re: NVIDIA-Linux-x86-173.14.39-pkg1.run
« Reply #92 on: June 13, 2015, 12:23:14 PM »
Ok I've been testing the Legacy nvidia-340 driver "nvidia-340.76-3.16.6-tinycore.tcz" using my oldest notebook which uses an Nvidia GTX 260m card and the preliminary results are good  :)

but first..

I had to make a dep file
nvidia-340.76-3.16.6-tinycore.tcz.dep
Code: [Select]
graphics-3.16.6-tinycore.tcz
gtk2.tcz
shared-mime-info.tcz
pkg-config.tcz
xorg-server-dev.tcz


next I rm -f ~/.xsession
Then loaded the following using tce-load -i
nvidia-xorg-conf.tcz  (this is my old working /etc/X11 config file from a previous tc5 / nvidia install whether I needed it or not is still untested)
nvidia-340.76-3.16.6-tinycore.tcz  (without symlinks)
Xorg-7.7-3d.tcz
startx

And Xorg-7.7-3d loaded using the nvidia-340.x.x driver also loading the Nvidia VDPAU driver

:D

Attached are the most important extracts of the logs I captured

notice that nvidia-smi will not run because of missing libnvidia-ml.so module, and
without the symlinks as per the read-me file Xorg is (if I read this correctly) using software GLX rendering..?

« Last Edit: June 13, 2015, 12:40:33 PM by coreplayer2 »

Offline coreplayer2

  • Hero Member
  • *****
  • Posts: 3020
Re: NVIDIA-Linux-x86-173.14.39-pkg1.run
« Reply #93 on: June 13, 2015, 01:05:42 PM »
nvidia-340.76-3.16.6-tinycore Legacy driver extension

using nvidia-xconfig to make a correct /etc/X11/xorg.conf file works great also

create dep file
nvidia-340.76-3.16.6-tinycore.tcz.dep
Code: [Select]
graphics-3.16.6-tinycore.tcz
gtk2.tcz
shared-mime-info.tcz
pkg-config.tcz
xorg-server-dev.tcz


Code: [Select]
tce-load -i nvidia-340.76-3.16.6-tinycore.tcz
tce-load -i Xorg-7.7-3d.tcz
sudo mkdir -p /etc/X11
sudo nvidia-xconfig
startx

Things still to do are
make desktop file
resolve GLX symlinks


Thanks Juanito,  I wondered if you had any trouble compiling the legacy driver?
« Last Edit: June 13, 2015, 01:08:54 PM by coreplayer2 »

Offline Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14546
Re: NVIDIA-Linux-x86-173.14.39-pkg1.run
« Reply #94 on: June 13, 2015, 01:22:06 PM »
There was the same kernel kdrive (test -e blah blah) error, but no problems to compile it other than that.

Offline coreplayer2

  • Hero Member
  • *****
  • Posts: 3020
Re: NVIDIA-Linux-x86-173.14.39-pkg1.run
« Reply #95 on: June 13, 2015, 08:10:42 PM »
Thats good news  8)

Meanwhile I added a startup file; if /etc/X11/xorg.conf file is not found then a new xorg.conf file is created and works well even on my difficult to configure notebook with it's 192x1200 screen
Code: [Select]
#!/bin/sh
#ln -sf /usr/local/lib/xorg/modules/extensions/libglx.so.340.76 /usr/local/lib/xorg/modules/extensions/libglx.so
[ -f /usr/local/lib/libGL.so.1 ] || ln -sf /usr/local/lib/libGL.so.340.76 /usr/local/lib/libGL.so.1
[ -f /usr/local/lib/libGL.so ] || ln -sf /usr/local/lib/libGL.so.1 /usr/local/lib/libGL.so

[ -d /etc/X11 ] || mkdir -p /etc/X11
while [ ! -f /etc/X11/xorg.conf ]; do
nvidia-xconfig
done

with the above startup file I load only these two extensions in the onboot.lst then xorg boots to a desktop using the nvidia driver
Code: [Select]
nvidia-340.76-3.16.6-tinycore.tcz
Xorg-7.7-3d.tcz



The Nvidia adapter driver and nvidia VDPAU driver work fine, though there are a couple of minor details..

Because of the lack of GLX module xorg looks for a software glx, but module is missing..?
Code: [Select]
[    21.748] (II) AIGLX: Screen 0 is not DRI2 capable
[    21.748] (EE) AIGLX: reverting to software rendering
[    21.748] (EE) AIGLX error: dlopen of /usr/local/lib/dri/swrast_dri.so failed (/usr/local/lib/dri/swrast_dri.so: cannot open shared object file: No such file or directory)
[    21.748] (EE) GLX: could not load software renderer
[    21.748] (II) GLX: no usable GL providers found for screen 0


Also missing is nvidia-application-profiles-340.76-key-documentation which causes nvidia-settings (the only reason for a desktop file btw) to use default profile
Code: [Select]
ERROR: nvidia-settings could not find the registry key file. This file should have been installed along with this driver at either
       /usr/share/nvidia/nvidia-application-profiles-340.76-key-documentation or /usr/share/nvidia/nvidia-application-profiles-key-documentation.
I couldn't find either softwware glx or profile in the extension

« Last Edit: June 13, 2015, 08:13:23 PM by coreplayer2 »

Offline Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14546
Re: NVIDIA-Linux-x86-173.14.39-pkg1.run
« Reply #96 on: June 14, 2015, 02:33:57 AM »
I added:

* libnvidia-ml.so symlink
* start-up script
* dep file
* nvidia-application-profiles-340.76-key-documentation
* renamed *desktop file

..and reposted the extension.

Note that your start-up script has commented out the creation of the libglx symlink and the libGL symlinks will only be created if they don't exist - maybe you could force these to test hardware acceleration?

Offline Stone.Giant

  • Full Member
  • ***
  • Posts: 100
Re: NVIDIA-Linux-x86-173.14.39-pkg1.run
« Reply #97 on: August 09, 2015, 07:29:26 AM »
Hello, everybody this is how I've gone so far now. And I need my OpenGL to work.


But my game is crashing


Code: [Select]
Wine cannot find the ncurses library (libncurses.so.5).
err:ole:CoCreateInstance apartment not initialised
err:winediag:X11DRV_WineGL_InitOpenglInfo The Mesa OpenGL driver is using software rendering, most likely your OpenGL drivers haven't been installed correctly (using GL renderer "Software Rasterizer", version "2.1 Mesa 7.8.1").
fixme:advapi:SetSecurityInfo stub
fixme:d3d_caps:wined3d_guess_card No card selector available for GL vendor 0x4 and card vendor 0000 (using GL_RENDERER "Software Rasterizer").
fixme:win:EnumDisplayDevicesW ((null),0,0x33f33c,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x33f5e4,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x33f61c,0x00000000), stub!
tc@box:~$ Xlib: sequence lost (0x10000 > 0x73) in reply type 0x3!
Xlib: sequence lost (0x10000 > 0x7a) in reply type 0x0!
X Error of failed request:  0
  Major opcode of failed request:  91 (X_QueryColors)
  Serial number of failed request:  0
  Current serial number in output stream:  122


I also noticed that my libwfb.so is not symlink to libnvidia-wfb.so.173.14.39
Code: [Select]
tc@box:/usr/local/lib/X11/modules$ ls -l
total 16
drwxr-xr-x    2 root     root           340 May 28  2010 dri/
drwxr-sr-x    2 tc       staff         1700 Aug  9 21:20 drivers/
drwxr-sr-x    2 tc       staff          260 Aug  9 21:20 extensions/
drwxr-xr-x    2 root     root           400 May 28  2010 input/
lrwxrwxrwx    1 root     root            60 Aug  9 21:13 libexa.la -> /tmp/tcloop/Xorg-7.5-dev/usr/local/lib/X11/modules/libexa.la
lrwxrwxrwx    1 root     root            56 Aug  9 21:13 libexa.so -> /tmp/tcloop/Xorg-7.5/usr/local/lib/X11/modules/libexa.so
lrwxrwxrwx    1 root     root            59 Aug  9 21:13 libfb.la -> /tmp/tcloop/Xorg-7.5-dev/usr/local/lib/X11/modules/libfb.la
lrwxrwxrwx    1 root     root            55 Aug  9 21:13 libfb.so -> /tmp/tcloop/Xorg-7.5/usr/local/lib/X11/modules/libfb.so
lrwxrwxrwx    1 root     root            62 Aug  9 21:13 libint10.la -> /tmp/tcloop/Xorg-7.5-dev/usr/local/lib/X11/modules/libint10.la
lrwxrwxrwx    1 root     root            58 Aug  9 21:13 libint10.so -> /tmp/tcloop/Xorg-7.5/usr/local/lib/X11/modules/libint10.so
lrwxrwxrwx    1 root     root            88 Aug  9 21:22 libnvidia-wfb.so.1 -> /tmp/tcloop/nvidia-173.14.39-3.0.3-tinycore/usr/local/lib/X11/modules/libnvidia-wfb.so.1
lrwxrwxrwx    1 root     root            96 Aug  9 21:22 libnvidia-wfb.so.173.14.39 -> /tmp/tcloop/nvidia-173.14.39-3.0.3-tinycore/usr/local/lib/X11/modules/libnvidia-wfb.so.173.14.39
lrwxrwxrwx    1 root     root            63 Aug  9 21:13 libshadow.la -> /tmp/tcloop/Xorg-7.5-dev/usr/local/lib/X11/modules/libshadow.la
lrwxrwxrwx    1 root     root            59 Aug  9 21:13 libshadow.so -> /tmp/tcloop/Xorg-7.5/usr/local/lib/X11/modules/libshadow.so
lrwxrwxrwx    1 root     root            65 Aug  9 21:13 libshadowfb.la -> /tmp/tcloop/Xorg-7.5-dev/usr/local/lib/X11/modules/libshadowfb.la
lrwxrwxrwx    1 root     root            61 Aug  9 21:13 libshadowfb.so -> /tmp/tcloop/Xorg-7.5/usr/local/lib/X11/modules/libshadowfb.so
lrwxrwxrwx    1 root     root            60 Aug  9 21:13 libvbe.la -> /tmp/tcloop/Xorg-7.5-dev/usr/local/lib/X11/modules/libvbe.la
lrwxrwxrwx    1 root     root            56 Aug  9 21:13 libvbe.so -> /tmp/tcloop/Xorg-7.5/usr/local/lib/X11/modules/libvbe.so
lrwxrwxrwx    1 root     root            62 Aug  9 21:13 libvgahw.la -> /tmp/tcloop/Xorg-7.5-dev/usr/local/lib/X11/modules/libvgahw.la
lrwxrwxrwx    1 root     root            58 Aug  9 21:13 libvgahw.so -> /tmp/tcloop/Xorg-7.5/usr/local/lib/X11/modules/libvgahw.so
lrwxrwxrwx    1 root     root            60 Aug  9 21:13 libwfb.la -> /tmp/tcloop/Xorg-7.5-dev/usr/local/lib/X11/modules/libwfb.la
lrwxrwxrwx    1 root     root            56 Aug  9 21:13 libwfb.so -> /tmp/tcloop/Xorg-7.5/usr/local/lib/X11/modules/libwfb.so
lrwxrwxrwx    1 root     root            60 Aug  9 21:13 libxaa.la -> /tmp/tcloop/Xorg-7.5-dev/usr/local/lib/X11/modules/libxaa.la
lrwxrwxrwx    1 root     root            56 Aug  9 21:13 libxaa.so -> /tmp/tcloop/Xorg-7.5/usr/local/lib/X11/modules/libxaa.so
lrwxrwxrwx    1 root     root            66 Aug  9 21:13 libxf8_16bpp.la -> /tmp/tcloop/Xorg-7.5-dev/usr/local/lib/X11/modules/libxf8_16bpp.la
lrwxrwxrwx    1 root     root            62 Aug  9 21:13 libxf8_16bpp.so -> /tmp/tcloop/Xorg-7.5/usr/local/lib/X11/modules/libxf8_16bpp.so
drwxr-xr-x    2 root     root            80 May 28  2010 linux/
drwxr-xr-x    2 root     root           440 May 28  2010 multimedia/
lrwxrwxrwx    1 root     root            57 Aug  9 21:13 v10002d.uc -> /tmp/tcloop/Xorg-7.5/usr/local/lib/X11/modules/v10002d.uc
lrwxrwxrwx    1 root     root            57 Aug  9 21:13 v20002d.uc -> /tmp/tcloop/Xorg-7.5/usr/local/lib/X11/modules/v20002d.uc

Offline Stone.Giant

  • Full Member
  • ***
  • Posts: 100
Re: NVIDIA-Linux-x86-173.14.39-pkg1.run
« Reply #98 on: August 09, 2015, 07:30:25 AM »
This is my Xorg.0.log
Code: [Select]
X.Org X Server 1.7.7
Release Date: 2010-05-04
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.33.3-tinycore i686
Current Operating System: Linux box 3.0.3-tinycore #90210 SMP Thu Aug 18 11:28:07 EEST 2011 i686
Kernel command line: initrd=/tce/boot/tinycore.gz quiet swapfile=UUID=48a2aff6-701d-468f-8e45-4c3cd727215f home=UUID=80a71a3b-dd34-4cfa-a927-a8dec4c18463 opt=UUID=80a71a3b-dd34-4cfa-a927-a8dec4c18463 pause showapps i8042.nopnp waitusb=5:UUID="80a71a3b-dd34-4cfa-a927-a8dec4c18463" tce=UUID="80a71a3b-dd34-4cfa-a927-a8dec4c18463" BOOT_IMAGE=/tce/boot/vmlinuz
Build Date: 28 May 2010  06:50:29PM
 
Current version of pixman: 0.30.0
        Before reporting problems, check www.tinycorelinux.com
        to make sure that you have the latest version.
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: Sun Aug  9 21:23:06 2015
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Layout0"
(**) |-->Screen "Screen0" (0)
(**) |   |-->Monitor "Monitor0"
(**) |   |-->Device "Device0"
(**) |-->Input Device "Keyboard0"
(**) |-->Input Device "Mouse0"
(==) Not automatically adding devices
(==) Not automatically enabling devices
(WW) The directory "/usr/local/lib/X11/fonts/OTF" does not exist.
        Entry deleted from font path.
(WW) The directory "/usr/local/lib/X11/fonts/100dpi/" does not exist.
        Entry deleted from font path.
(==) FontPath set to:
        /usr/local/lib/X11/fonts/misc/,
        /usr/local/lib/X11/fonts/TTF/,
        /usr/local/lib/X11/fonts/Type1/,
        /usr/local/lib/X11/fonts/75dpi/
(==) ModulePath set to "/usr/local/lib/X11/modules"
(II) Loader magic: 0x819471c
(II) Module ABI versions:
        X.Org ANSI C Emulation: 0.4
        X.Org Video Driver: 6.0
        X.Org XInput driver : 7.0
        X.Org Server Extension : 2.0
(--) using VT number 2

(--) PCI:*(0:1:0:0) 10de:0326:0000:0000 rev 161, Mem @ 0xfd000000/16777216, 0xd0000000/268435456, BIOS @ 0x????????/131072
(WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
(II) LoadModule: "extmod"
(II) Loading /usr/local/lib/X11/modules/extensions/libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
        compiled for 1.7.7, module version = 1.0.0
        Module class: X.Org Server Extension
        ABI class: X.Org Server Extension, version 2.0
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "dbe"
(II) Loading /usr/local/lib/X11/modules/extensions/libdbe.so
(II) Module dbe: vendor="X.Org Foundation"
        compiled for 1.7.7, module version = 1.0.0
        Module class: X.Org Server Extension
        ABI class: X.Org Server Extension, version 2.0
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "glx"
(II) Loading /usr/local/lib/X11/modules/extensions/libglx.so
(II) Module glx: vendor="X.Org Foundation"
        compiled for 1.7.7, module version = 1.0.0
        ABI class: X.Org Server Extension, version 2.0
(==) AIGLX enabled
(II) Loading extension GLX
(II) LoadModule: "dri"
(II) Loading /usr/local/lib/X11/modules/extensions/libdri.so
(II) Module dri: vendor="X.Org Foundation"
        compiled for 1.7.7, module version = 1.0.0
        ABI class: X.Org Server Extension, version 2.0
(II) Loading extension XFree86-DRI
(II) LoadModule: "dri2"
(II) Loading /usr/local/lib/X11/modules/extensions/libdri2.so
(II) Module dri2: vendor="X.Org Foundation"
        compiled for 1.7.7, module version = 1.1.0
        ABI class: X.Org Server Extension, version 2.0
(II) Loading extension DRI2
(II) LoadModule: "nvidia"
(II) Loading /usr/local/lib/X11/modules/drivers/nvidia_drv.so
(II) Module nvidia: vendor="NVIDIA Corporation"
        compiled for 4.0.2, module version = 1.0.0
        Module class: X.Org Video Driver
(II) LoadModule: "kbd"
(II) Loading /usr/local/lib/X11/modules/input/kbd_drv.so
(II) Module kbd: vendor="X.Org Foundation"
        compiled for 1.7.7, module version = 1.4.0
        Module class: X.Org XInput Driver
        ABI class: X.Org XInput driver, version 7.0
(II) LoadModule: "mouse"
(II) Loading /usr/local/lib/X11/modules/input/mouse_drv.so
(II) Module mouse: vendor="X.Org Foundation"
        compiled for 1.7.7, module version = 1.5.0
        Module class: X.Org XInput Driver
        ABI class: X.Org XInput driver, version 7.0
(II) NVIDIA dlloader X Driver  173.14.39  Wed Nov 27 15:02:30 PST 2013
(II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
(II) Primary Device is: PCI 01@00:00:0
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/local/lib/X11/modules/libfb.so
(II) Module fb: vendor="X.Org Foundation"
        compiled for 1.7.7, module version = 1.0.0
        ABI class: X.Org ANSI C Emulation, version 0.4
(II) Loading sub module "wfb"
(II) LoadModule: "wfb"
(II) Loading /usr/local/lib/X11/modules/libwfb.so
(II) Module wfb: vendor="X.Org Foundation"
        compiled for 1.7.7, module version = 1.0.0
        ABI class: X.Org ANSI C Emulation, version 0.4
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Module "ramdac" already built-in
(**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
(==) NVIDIA(0): RGB weight 888
(==) NVIDIA(0): Default visual is TrueColor
(==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
(**) NVIDIA(0): Enabling RENDER acceleration
(EE) NVIDIA(0): Failed to initialize the GLX module; please check in your X
(EE) NVIDIA(0):     log file that the GLX module has been loaded in your X
(EE) NVIDIA(0):     server, and that the module is the NVIDIA GLX module.  If
(EE) NVIDIA(0):     you continue to encounter problems, Please try
(EE) NVIDIA(0):     reinstalling the NVIDIA driver.
(II) NVIDIA(0): NVIDIA GPU GeForce FX 5500 (NV34) at PCI:1:0:0 (GPU-0)
(--) NVIDIA(0): Memory: 262144 kBytes
(--) NVIDIA(0): VideoBIOS: 04.34.20.69.00
(II) NVIDIA(0): Detected AGP rate: 8X
(--) NVIDIA(0): Interlaced video modes are supported on this GPU
(--) NVIDIA(0): Connected display device(s) on GeForce FX 5500 at PCI:1:0:0:
(--) NVIDIA(0):     LG L1730S (CRT-0)
(--) NVIDIA(0): LG L1730S (CRT-0): 350.0 MHz maximum pixel clock
(II) NVIDIA(0): Assigned Display Device: CRT-0
(==) NVIDIA(0):
(==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
(==) NVIDIA(0):     will be used as the requested mode.
(==) NVIDIA(0):
(II) NVIDIA(0): Validated modes:
(II) NVIDIA(0):     "nvidia-auto-select"
(II) NVIDIA(0): Virtual screen size determined to be 1280 x 1024
(--) NVIDIA(0): DPI set to (95, 96); computed from "UseEdidDpi" X config
(--) NVIDIA(0):     option
(==) NVIDIA(0): Enabling 32-bit ARGB GLX visuals.
(--) Depth 24 pixmap format is 32 bpp
(II) NVIDIA(0): Initialized AGP GART.
(II) NVIDIA(0): Unable to connect to the ACPI daemon; the ACPI daemon may not
(II) NVIDIA(0):     be running or the "AcpidSocketPath" X configuration option
(II) NVIDIA(0):     may not be set correctly.  When the ACPI daemon is
(II) NVIDIA(0):     available, the NVIDIA X driver can use it to receive ACPI
(II) NVIDIA(0):     events.  For details, please see the "ConnectToAcpid" and
(II) NVIDIA(0):     "AcpidSocketPath" X configuration options in Appendix B: X
(II) NVIDIA(0):     Config Options in the README.
(II) NVIDIA(0): Setting mode "nvidia-auto-select"
(II) Loading extension NV-GLX
(II) NVIDIA(0): NVIDIA 3D Acceleration Architecture Initialized
(II) NVIDIA(0): Using the NVIDIA 2D acceleration architecture
(==) NVIDIA(0): Backing store disabled
(==) NVIDIA(0): Silken mouse enabled
(**) NVIDIA(0): DPMS enabled
(II) Loading extension NV-CONTROL
(==) RandR enabled
(II) Initializing built-in extension Generic Event Extension
(II) Initializing built-in extension SHAPE
(II) Initializing built-in extension MIT-SHM
(II) Initializing built-in extension XInputExtension
(II) Initializing built-in extension XTEST
(II) Initializing built-in extension BIG-REQUESTS
(II) Initializing built-in extension SYNC
(II) Initializing built-in extension XKEYBOARD
(II) Initializing built-in extension XC-MISC
(II) Initializing built-in extension XINERAMA
(II) Initializing built-in extension XFIXES
(II) Initializing built-in extension RENDER
(II) Initializing built-in extension RANDR
(II) Initializing built-in extension COMPOSITE
(II) Initializing built-in extension DAMAGE
(II) AIGLX: Screen 0 is not DRI2 capable
(II) AIGLX: Screen 0 is not DRI capable
(II) AIGLX: Loaded and initialized /usr/local/lib/X11/modules/dri/swrast_dri.so
(II) GLX: Initialized DRISWRAST GL provider for screen 0
(**) Option "CoreKeyboard"
(**) Keyboard0: always reports core events
(**) Option "Protocol" "standard"
(**) Keyboard0: Protocol: standard
(**) Option "XkbRules" "base"
(**) Keyboard0: XkbRules: "base"
(**) Option "XkbModel" "pc105"
(**) Keyboard0: XkbModel: "pc105"
(**) Option "XkbLayout" "us"
(**) Keyboard0: XkbLayout: "us"
(**) Option "CustomKeycodes" "off"
(**) Keyboard0: CustomKeycodes disabled
(II) XINPUT: Adding extended input device "Keyboard0" (type: KEYBOARD)
(**) Option "Protocol" "auto"
(**) Option "Device" "/dev/psaux"
(II) Mouse0: Setting mouse protocol to "ExplorerPS/2"
(**) Mouse0: Device: "/dev/psaux"
(**) Mouse0: Protocol: "auto"
(**) Option "CorePointer"
(**) Mouse0: always reports core events
(**) Option "Device" "/dev/psaux"
(**) Option "Emulate3Buttons" "no"
(**) Option "ZAxisMapping" "4 5"
(**) Mouse0: ZAxisMapping: buttons 4 and 5
(**) Mouse0: Buttons: 9
(**) Mouse0: Sensitivity: 1
(II) XINPUT: Adding extended input device "Mouse0" (type: MOUSE)
(**) Mouse0: (accel) keeping acceleration scheme 1
(**) Mouse0: (accel) acceleration profile 0
(II) Mouse0: Setting mouse protocol to "ExplorerPS/2"
(II) Mouse0: ps2EnableDataReporting: succeeded
(II) UnloadModule: "kbd"
(II) UnloadModule: "mouse"
(II) NVIDIA(0): Initialized AGP GART.
(II) NVIDIA(0): Unable to connect to the ACPI daemon; the ACPI daemon may not
(II) NVIDIA(0):     be running or the "AcpidSocketPath" X configuration option
(II) NVIDIA(0):     may not be set correctly.  When the ACPI daemon is
(II) NVIDIA(0):     available, the NVIDIA X driver can use it to receive ACPI
(II) NVIDIA(0):     events.  For details, please see the "ConnectToAcpid" and
(II) NVIDIA(0):     "AcpidSocketPath" X configuration options in Appendix B: X
(II) NVIDIA(0):     Config Options in the README.
(II) NVIDIA(0): Setting mode "nvidia-auto-select"
(II) NVIDIA(0): NVIDIA 3D Acceleration Architecture Initialized
(II) NVIDIA(0): Using the NVIDIA 2D acceleration architecture
(**) NVIDIA(0): DPMS enabled
(==) RandR enabled
(II) AIGLX: Screen 0 is not DRI2 capable
(II) AIGLX: Screen 0 is not DRI capable
(II) AIGLX: Loaded and initialized /usr/local/lib/X11/modules/dri/swrast_dri.so
(II) GLX: Initialized DRISWRAST GL provider for screen 0
(**) Option "CoreKeyboard"
(**) Keyboard0: always reports core events
(**) Option "Protocol" "standard"
(**) Keyboard0: Protocol: standard
(**) Option "XkbRules" "base"
(**) Keyboard0: XkbRules: "base"
(**) Option "XkbModel" "pc105"
(**) Keyboard0: XkbModel: "pc105"
(**) Option "XkbLayout" "us"
(**) Keyboard0: XkbLayout: "us"
(**) Option "CustomKeycodes" "off"
(**) Keyboard0: CustomKeycodes disabled
(II) Mouse0: Setting mouse protocol to "ExplorerPS/2"
(**) Mouse0: Device: "/dev/psaux"
(**) Mouse0: Protocol: "auto"
(**) Option "CorePointer"
(**) Mouse0: always reports core events
(**) Option "Device" "/dev/psaux"
(**) Option "Emulate3Buttons" "no"
(**) Option "ZAxisMapping" "4 5"
(**) Mouse0: ZAxisMapping: buttons 4 and 5
(**) Mouse0: Buttons: 9
(**) Mouse0: Sensitivity: 1
(**) Mouse0: (accel) keeping acceleration scheme 1
(**) Mouse0: (accel) acceleration profile 0
(II) Mouse0: Setting mouse protocol to "ExplorerPS/2"
(II) Mouse0: ps2EnableDataReporting: succeeded

Offline Stone.Giant

  • Full Member
  • ***
  • Posts: 100
[SOLVED] Re: NVIDIA-Linux-x86-173.14.39-pkg1.run
« Reply #99 on: August 16, 2015, 02:04:45 AM »
The long wait is over, NVIDIA-Linux-x86-173.14.39-pkg1 is now an extension. Note: For TC 4.0 kernel 3.0.3 only. Available on the tiny core repo soon.

For those who want to beta test and report some irregularity kindly download the file at http://s000.tinyupload.com/?file_id=08523192522053129820

Supported Products:

Quote
GeForce 200 Series:

GeForce GTX 280, GeForce GTX 260
GeForce 9 Series:

GeForce 9800 GX2, GeForce 9800 GTX/GTX+, GeForce 9800 GT, GeForce 9600 GT, GeForce 9600 GSO, GeForce 9500 GT
GeForce 8 Series:

GeForce 8800 Ultra, GeForce 8800 GTX, GeForce 8800 GTS 512, GeForce 8800 GTS, GeForce 8800 GT, GeForce 8800 GS, GeForce 8600 GTS, GeForce 8600 GT, GeForce 8600 GS, GeForce 8500 GT, GeForce 8400 GS, GeForce 8400 SE, GeForce 8400, GeForce 8300 GS, GeForce 8300, GeForce 8200, GeForce 8200 /nForce 730a, GeForce 8100 /nForce 720a
GeForce 7 Series:

GeForce 7025 / NVIDIA nForce 630a, GeForce 7050 PV / NVIDIA nForce 630a, GeForce 7050 / NVIDIA nForce 610i, GeForce 7050 / NVIDIA nForce 630i, GeForce 7100 / NVIDIA nForce 630i, GeForce 7100 / NVIDIA nForce 620i, GeForce 7100 GS, GeForce 7150 / NVIDIA nForce 630i, GeForce 7300 SE / 7200 GS, GeForce 7300 LE, GeForce 7300 GS, GeForce 7300 GT, GeForce 7350 LE, GeForce 7500 LE, GeForce 7550 LE, GeForce 7600 LE, GeForce 7600 GS, GeForce 7600 GT, GeForce 7650 GS, GeForce 7800 GS, GeForce 7800 GTX, GeForce 7800 SLI, GeForce 7900 GS, GeForce 7900 GT/GTO, GeForce 7900 GTX, GeForce 7950 GT, GeForce 7950 GX2
GeForce 6 Series:

GeForce 6100, GeForce 6100 nForce 400, GeForce 6100 nForce 405, GeForce 6100 nForce 420, GeForce 6150, GeForce 6150 LE, GeForce 6150LE / Quadro NVS 210S , GeForce 6150SE nForce 430, GeForce 6200, GeForce 6200 A-LE, GeForce 6200 LE, GeForce 6200 TurboCache(TM), GeForce 6200SE TurboCache(TM), GeForce 6250, GeForce 6500, GeForce 6600, GeForce 6600 GT, GeForce 6600 LE, GeForce 6600 VE, GeForce 6610 XL, GeForce 6700 XL, GeForce 6800, GeForce 6800 GS, GeForce 6800 GS/XT, GeForce 6800 GT, GeForce 6800 LE, GeForce 6800 Ultra, GeForce 6800 XE, GeForce 6800 XT
GeForce 5 FX Series:

GeForce FX 5100, GeForce FX 5200, GeForce FX 5200 Ultra, GeForce FX 5200LE, GeForce FX 5500, GeForce FX 5600, GeForce FX 5600 Ultra, GeForce FX 5600XT, GeForce FX 5700, GeForce FX 5700 Ultra, GeForce FX 5700LE, GeForce FX 5700VE, GeForce FX 5800, GeForce FX 5800 Ultra, GeForce FX 5900, GeForce FX 5900 Ultra, GeForce FX 5900XT, GeForce FX 5900ZT, GeForce FX 5950 Ultra, GeForce PCX 5300, GeForce PCX 5750, GeForce PCX 5900
Quadro FX Series:

Quadro FX 330, Quadro FX 350, Quadro FX 370, Quadro FX 500/FX 600, Quadro FX 540, Quadro FX 550, Quadro FX 560, Quadro FX 570, Quadro FX 700, Quadro FX 1000, Quadro FX 1100, Quadro FX 1300, Quadro FX 1400, Quadro FX 1700, Quadro FX 1500, Quadro FX 2000, Quadro FX 3000, Quadro FX 3400/4400, Quadro FX 3450, Quadro FX 3500, Quadro FX 3700, Quadro FX 4000, Quadro FX 4500, Quadro FX 4500 X2, Quadro FX 4600, Quadro FX 4700 X2, Quadro FX 5500, Quadro FX 5600
Quadro FX Series (Notebooks):

Quadro FX 3600M, Quadro FX 2700M, Quadro FX 1700M, Quadro FX 1600M, Quadro FX 570M, Quadro FX 370M, Quadro FX 360M
Quadro NVS Series:

Quadro NVS 285, Quadro NVS 290, Quadro NVS 440
Quadro Plex Series:

Quadro Plex Model II, Quadro Plex Model IV
Quadro Sync Series:

Quadro G-Sync II, Quadro G-Sync I
Quadro SDI:

Quadro SDI
NVS Series:

Quadro NVS 285, Quadro NVS 290, Quadro NVS 440
C-Class:

Tesla C870






Admin kindly marked this as SOLVED
« Last Edit: August 16, 2015, 07:41:58 AM by Rich »