Jump to content

Help! first time user installing driver


Visti
 Share

Recommended Posts

Hi! I've just installed my Mandriva and I noticed that there's no hardware acceleration, so I figured I needed a driver for my graphics card. Now, I have no previous experience in linux, so I'm a little stumped. I went to Nvidia.com and got both drivers (Legacy and the other on), both of which are now sitting on my desktop.

 

I try installing them using sh -filename- , but get a message that I have to exit my X session - How would I do this and is it really needed? And is it likely to work then? I'm running a 6600GT.

 

Is there anything more I need to do? It requested binutils at first and I got that through RPM, but I'm stuck again now.

Link to comment
Share on other sites

I tried that, but when I get to the "vi /etc/X11/xorg.conf" step, I just get a blank file.. What do I do then?

Are you sure you have written exactly like that? With all spaces and slashes?

What gives

ls -la /etc/X11/

?

Link to comment
Share on other sites

I tried that, but when I get to the "vi /etc/X11/xorg.conf" step, I just get a blank file.. What do I do then?

Are you sure you have written exactly like that? With all spaces and slashes?

What gives

ls -la /etc/X11/

?

 

It gives me this output:

 

total 80
drwxr-xr-x 12 root root 4096 jan 21 16:08 ./
drwxr-xr-x 91 root root 4096 jan 21 15:01 ../
drwxr-xr-x  2 root root 4096 sep 25 21:04 app-defaults/
drwxr-xr-x  3 root root 4096 dec 14 22:00 dm/
drwxr-xr-x  2 root root 4096 sep 25 20:57 dm.d/
drwxr-xr-x  2 xfs  xfs  4096 sep 25 21:05 fs/
drwxr-xr-x  7 root root 4096 jan 20 23:36 gdm/
-rwxr-xr-x  1 root root  841 sep 19 17:02 lookupdm*
-rwxr-xr-x  1 root root 2531 sep 19 17:02 prefdm*
drwxrwxr-x  2 root root 4096 jan 21 03:48 wmsession.d/
lrwxrwxrwx  1 root root   18 jan 21 16:08 X -> ../../usr/bin/Xorg*
drwxr-xr-x  2 root root 4096 sep 25 20:57 xdm/
lrwxrwxrwx  1 root root	9 jan 21 16:08 XF86Config -> xorg.conf
drwxr-xr-x  2 root root 4096 sep 25 20:57 xinit/
drwxr-xr-x  2 root root 4096 sep 25 21:06 xinit.d/
-rw-r--r--  1 root root  275 aug 29 20:25 Xmodmap
-rw-rw-r--  1 root root 2832 jan 21 16:08 xorg.conf
-rw-rw-r--  1 root root 2740 jan 21 16:07 xorg.conf.old
-rw-r--r--  1 root root 1785 aug 29 20:25 Xresources
-rwxr-xr-x  1 root root 5323 aug 29 20:25 Xsession*
drwxr-xr-x  2 root root 4096 sep 25 21:05 xsetup.d/

 

Now running it again I actually get a screen with info, sorry..

Edited by Visti
Link to comment
Share on other sites

I see that you have xorg.conf there so

vi /etc/X11/xorg.conf

shall open the file for you... make sure you have written it correctly.

 

As I edited in the last post it works now and my computer detects the NVIDIA card and does a small NVIDIA splash at boot and allows me to change resolutions and enable Compiz 3d desktop - However, 3d acceleration is still not enabled.. Is there a simple on/off switch for this?

Link to comment
Share on other sites

Direct Rendering (3D Hardware Acceleration) is usually provided by the DRI extension. Not with nVidia binary drivers. Don’t load the DRI extension, instead make sure the GL library files in /usr/lib/ are the ones provided by nVidia. It should like this (XXXX is the nVidia Driver version).

 

#> ls -l /usr/lib/libGL.so*

lrwxr-xr-x 1 root root 17 2004-10-10 21:53 libGL.so -> libGL.so.1.0.XXXX

lrwxr-xr-x 1 root root 17 2004-10-10 21:53 libGL.so.1 -> libGL.so.1.0.XXXX

-rwxr-xr-x 1 root root 423832 2004-10-09 13:42 libGL.so.1.0.XXXX

-rw-r--r-- 1 root root 1946800 2004-02-15 22:37 libGL.so.1.4.500

#> ls -l /usr/lib/libGLcore.so*

lrwxr-xr-x 1 root root 21 2004-10-09 13:42 libGLcore.so.1 -> libGLcore.so.1.0.XXXX

-rwxr-xr-x 1 root root 7132152 2004-10-09 13:42 libGLcore.so.1.0.XXXX

#> ls -l /usr/X11R6/lib/libGL.so*

lrwxrwxrwx 1 root root 26 2005-03-24 21:19 libGL.so.1 -> /usr/lib/libGL.so.1.0.XXXX

 

If the links are not correct replace them:

 

#> ln -sf /usr/lib/libGL.so.1.0.XXXX /usr/lib/libGL.so

#> ln -sf /usr/lib/libGL.so.1.0.XXXX /usr/lib/libGL.so.1

#> ln -sf /usr/lib/libGLcore.so.1.0.XXXX /usr/lib/libGLcore.so.1

#> ln -sf /usr/lib/libGL.so.1.0.XXXX /usr/X11R6/lib/libGL.so.1

 

glxinfo should indicate that direct rendering is ON

Link to comment
Share on other sites

These are the outputs I get:

 

Desktop]# ls -l /usr/lib/libGL.so*
lrwxrwxrwx 1 root root	 26 jan 21 20:54 /usr/lib/libGL.so -> /usr/lib/libGL.so.1.0.XXXX
lrwxrwxrwx 1 root root	 26 jan 21 20:54 /usr/lib/libGL.so.1 -> /usr/lib/libGL.so.1.0.XXXX
-rwxr-xr-x 1 root root 419508 sep 16 16:20 /usr/lib/libGL.so.1.2*

 

Desktop]# ls -l /usr/lib/libGLcore.so*
lrwxrwxrwx 1 root root 30 jan 21 20:54 /usr/lib/libGLcore.so.1 -> /usr/lib/libGLcore.so.1.0.XXXX

 

Desktop]# ls -l /usr/X11R6/lib/libGL.so*
lrwxrwxrwx 1 root root 26 jan 21 20:54 /usr/X11R6/lib/libGL.so.1 -> /usr/lib/libGL.so.1.0.XXXX

 

I don't suppose that it's good when they're lined in red, is it? I tried replacing them with what you put, but still no go..

 

 

 

 

Here's my 'glxinfo' just for good measure:

 

Desktop]$ glxinfo
name of display: :93.0
display: :93  screen: 0
direct rendering: No
server glx vendor string: SGI
server glx version string: 1.2
server glx extensions:
GLX_ARB_multisample, GLX_EXT_visual_info, GLX_EXT_visual_rating, 
GLX_EXT_import_context, GLX_EXT_texture_from_pixmap, GLX_OML_swap_method, 
GLX_SGI_make_current_read, GLX_SGIS_multisample, GLX_SGIX_hyperpipe, 
GLX_SGIX_swap_barrier, GLX_SGIX_fbconfig
client glx vendor string: NVIDIA Corporation
client glx version string: 1.4
client glx extensions:
GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_visual_info, 
GLX_EXT_visual_rating, GLX_EXT_import_context, GLX_SGI_video_sync, 
GLX_NV_swap_group, GLX_NV_video_out, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer, 
GLX_SGI_swap_control, GLX_NV_float_buffer, GLX_ARB_fbconfig_float, 
GLX_EXT_fbconfig_packed_float, GLX_EXT_texture_from_pixmap
GLX version: 1.2
GLX extensions:
GLX_ARB_multisample, GLX_EXT_visual_info, GLX_EXT_visual_rating, 
GLX_EXT_import_context, GLX_EXT_texture_from_pixmap, GLX_SGIX_fbconfig, 
GLX_ARB_get_proc_address
OpenGL vendor string: NVIDIA Corporation
OpenGL renderer string: GeForce 6600 GT/PCI/SSE2/3DNOW!
OpenGL version string: 1.2 (2.1.0 NVIDIA 96.31)
OpenGL extensions:
GL_ARB_depth_texture, GL_ARB_imaging, GL_ARB_multitexture, 
GL_ARB_point_parameters, GL_ARB_point_sprite, GL_ARB_shadow, 
GL_ARB_texture_border_clamp, GL_ARB_texture_cube_map, 
GL_ARB_texture_env_add, GL_ARB_texture_env_combine, 
GL_ARB_texture_env_dot3, GL_ARB_texture_mirrored_repeat, 
GL_ARB_window_pos, GL_ARB_texture_non_power_of_two, GL_ARB_vertex_program, 
GL_ARB_fragment_program, GL_EXT_abgr, GL_EXT_bgra, GL_EXT_blend_color, 
GL_EXT_blend_func_separate, GL_EXT_blend_minmax, GL_EXT_blend_subtract, 
GL_EXT_draw_range_elements, GL_EXT_fog_coord, GL_EXT_multi_draw_arrays, 
GL_EXT_packed_pixels, GL_EXT_rescale_normal, GL_EXT_secondary_color, 
GL_EXT_separate_specular_color, GL_EXT_shadow_funcs, GL_EXT_stencil_wrap, 
GL_EXT_texture3D, GL_EXT_texture_edge_clamp, GL_EXT_texture_env_add, 
GL_EXT_texture_env_combine, GL_EXT_texture_env_dot3, GL_EXT_texture_lod, 
GL_EXT_texture_lod_bias, GL_EXT_texture_object, GL_EXT_vertex_array, 
GL_ATI_texture_mirror_once, GL_HP_occlusion_test, 
GL_IBM_texture_mirrored_repeat, GL_NV_blend_square, 
GL_NV_texgen_reflection, GL_NV_texture_rectangle, 
GL_NV_texture_env_combine4, GL_SGIS_generate_mipmap, GL_SGIS_texture_lod, 
GL_SGIX_depth_texture, GL_SGIX_shadow
glu version: 1.3
glu extensions:
GLU_EXT_nurbs_tessellator, GLU_EXT_object_space_tess

  visual  x  bf lv rg d st colorbuffer ax dp st accumbuffer  ms  cav
id dep cl sp sz l  ci b ro  r  g  b  a bf th cl  r  g  b  a ns b eat
----------------------------------------------------------------------
0x2c 24 tc  0 32  0 r  y  .  8  8  8  8  0 24  8  0  0  0  0 875782711 1664378173 None
0x2d 24 tc  0 32  0 r  .  .  8  8  8  8  0  0  0  0  0  0  0 809332084 1647192634 None
0x2e 32 tc  0 32  0 r  y  .  8  8  8  8  0 24  8  0  0  0  0 825245040 1769614890 Ncon
0x2f 32 tc  0 32  0 r  .  .  8  8  8  8  0  0  0  0  0  0  0 774519349 859517232 Ncon

Link to comment
Share on other sites

The filenames are marked with red in the terminal..

 

This is Xorg.0.log;

 

X Window System Version 7.1.1
Release Date: 12 May 2006
X Protocol Version 11, Revision 0, Release 7.1.1
Build Operating System: Linux 2.6.17-4mdv i686 
Current Operating System: Linux d40a9f57.rev.stofanet.dk 2.6.17-5mdvlegacy #1 SMP Wed Sep 13 14:40:00 EDT 2006 i686
Build Date: 17 September 2006
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: Sun Jan 21 20:51:37 2007
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "layout1"
(**) |-->Screen "screen1" (0)
(**) |   |-->Monitor "monitor1"
(**) |   |-->Device "device1"
(**) |-->Input Device "Keyboard1"
(**) |-->Input Device "Mouse1"
(**) FontPath set to:
unix/:-1,
/usr/share/fonts/misc:unscaled
(==) RgbPath set to "/usr/share/X11/rgb"
(==) ModulePath set to "/usr/lib/xorg/modules"
(**) Option "AllowMouseOpenFail"
(**) Extension "Composite" is enabled
(II) Open ACPI successful (/var/run/acpid.socket)
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.3
X.Org Video Driver: 1.0
X.Org XInput driver : 0.6
X.Org Server Extension : 0.3
X.Org Font Renderer : 0.5
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/lib/xorg/modules/fonts/libbitmap.so
(II) Module bitmap: vendor="X.Org Foundation"
compiled for 7.1.1, module version = 1.0.0
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.5
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/lib/xorg/modules/libpcidata.so
(II) Module pcidata: vendor="X.Org Foundation"
compiled for 7.1.1, module version = 1.0.0
ABI class: X.Org Video Driver, version 1.0
(++) using VT number 7

(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 10de,02f5 card 1849,02f5 rev a2 class 05,00,00 hdr 80
(II) PCI: 00:00:1: chip 10de,02fa card 1849,02fa rev a2 class 05,00,00 hdr 80
(II) PCI: 00:00:2: chip 10de,02fe card 1849,02fe rev a2 class 05,00,00 hdr 80
(II) PCI: 00:00:3: chip 10de,02f8 card 1849,02f8 rev a2 class 05,00,00 hdr 80
(II) PCI: 00:00:4: chip 10de,02f9 card 1849,02f9 rev a2 class 05,00,00 hdr 00
(II) PCI: 00:00:5: chip 10de,02ff card 1849,02ff rev a2 class 05,00,00 hdr 80
(II) PCI: 00:00:6: chip 10de,027f card 1849,027f rev a2 class 05,00,00 hdr 80
(II) PCI: 00:00:7: chip 10de,027e card 1849,027e rev a2 class 05,00,00 hdr 80
(II) PCI: 00:02:0: chip 10de,02fc card 0000,0000 rev a1 class 06,04,00 hdr 01
(II) PCI: 00:03:0: chip 10de,02fd card 0000,0000 rev a1 class 06,04,00 hdr 01
(II) PCI: 00:04:0: chip 10de,02fb card 0000,0000 rev a1 class 06,04,00 hdr 01
(II) PCI: 00:09:0: chip 10de,0270 card 1849,0270 rev a2 class 05,00,00 hdr 00
(II) PCI: 00:0a:0: chip 10de,0261 card 1849,0261 rev a2 class 06,01,00 hdr 80
(II) PCI: 00:0a:1: chip 10de,0264 card 1849,0264 rev a2 class 0c,05,00 hdr 80
(II) PCI: 00:0b:0: chip 10de,026d card 1849,026d rev a2 class 0c,03,10 hdr 80
(II) PCI: 00:0b:1: chip 10de,026e card 1849,026e rev a2 class 0c,03,20 hdr 80
(II) PCI: 00:0d:0: chip 10de,0265 card 1849,0265 rev a1 class 01,01,8a hdr 00
(II) PCI: 00:0e:0: chip 10de,0266 card 1849,0266 rev a1 class 01,01,85 hdr 00
(II) PCI: 00:10:0: chip 10de,026f card 0000,0000 rev a2 class 06,04,01 hdr 81
(II) PCI: 00:10:2: chip 10de,026b card 1849,0850 rev a2 class 04,01,00 hdr 80
(II) PCI: 00:14:0: chip 10de,0269 card 1849,0269 rev a1 class 06,80,00 hdr 00
(II) PCI: 00:18:0: chip 1022,1100 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 00:18:1: chip 1022,1101 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 00:18:2: chip 1022,1102 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 00:18:3: chip 1022,1103 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 03:00:0: chip 10de,0140 card 107d,2a20 rev a2 class 03,00,00 hdr 00
(II) PCI: End of PCI scan
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:2:0), (0,1,1), BCTRL: 0x0002 (VGA_EN is cleared)
(II) PCI-to-PCI bridge:
(II) Bus 2: bridge is at (0:3:0), (0,2,2), BCTRL: 0x0002 (VGA_EN is cleared)
(II) PCI-to-PCI bridge:
(II) Bus 3: bridge is at (0:4:0), (0,3,3), BCTRL: 0x000a (VGA_EN is set)
(II) Bus 3 non-prefetchable memory range:
[0] -1	0	0xf4a00000 - 0xfeafffff (0xa100000) MX[B]
(II) Bus 3 prefetchable memory range:
[0] -1	0	0xcff00000 - 0xdfefffff (0x10000000) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:10:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(II) Subtractive PCI-to-PCI bridge:
(II) Bus 4: bridge is at (0:16:0), (0,4,4), BCTRL: 0x0202 (VGA_EN is cleared)
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:24:0), (0,0,4), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
[0] -1	0	0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 0 non-prefetchable memory range:
[0] -1	0	0x00000000 - 0xffffffff (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
[0] -1	0	0x00000000 - 0xffffffff (0x0) MX[B]
(--) PCI:*(3:0:0) nVidia Corporation NV43 [GeForce 6600 GT] rev 162, Mem @ 0xf8000000/26, 0xd0000000/27, 0xfd000000/24, BIOS @ 0xfeae0000/17
(II) Addressable bus resource ranges are
[0] -1	0	0x00000000 - 0xffffffff (0x0) MX[B]
[1] -1	0	0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) OS-reported resource ranges:
[0] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[1] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
[2] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
[3] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
[4] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
[5] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
(II) Active PCI resource ranges:
[0] -1	0	0xfebbb000 - 0xfebbbfff (0x1000) MX[B]
[1] -1	0	0xfebbc000 - 0xfebbcfff (0x1000) MX[B]
[2] -1	0	0xfebbd000 - 0xfebbdfff (0x1000) MX[B]
[3] -1	0	0xfebbfc00 - 0xfebbfcff (0x100) MX[B]
[4] -1	0	0xfebbe000 - 0xfebbefff (0x1000) MX[B]
[5] -1	0	0xfeae0000 - 0xfeafffff (0x20000) MX[B](B)
[6] -1	0	0xfd000000 - 0xfdffffff (0x1000000) MX[B](B)
[7] -1	0	0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
[8] -1	0	0xf8000000 - 0xfbffffff (0x4000000) MX[B](B)
[9] -1	0	0x0000dc00 - 0x0000dc07 (0x8) IX[B]
[10] -1	0	0x0000d400 - 0x0000d4ff (0x100) IX[B]
[11] -1	0	0x0000d800 - 0x0000d8ff (0x100) IX[B]
[12] -1	0	0x0000e000 - 0x0000e00f (0x10) IX[B]
[13] -1	0	0x00000e00 - 0x00000e03 (0x4) IX[B]
[14] -1	0	0x00000e80 - 0x00000e87 (0x8) IX[B]
[15] -1	0	0x00000f00 - 0x00000f03 (0x4) IX[B]
[16] -1	0	0x00000f80 - 0x00000f87 (0x8) IX[B]
[17] -1	0	0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
[18] -1	0	0x00006000 - 0x0000603f (0x40) IX[B]
[19] -1	0	0x00005000 - 0x0000503f (0x40) IX[B]
(II) Active PCI resource ranges after removing overlaps:
[0] -1	0	0xfebbb000 - 0xfebbbfff (0x1000) MX[B]
[1] -1	0	0xfebbc000 - 0xfebbcfff (0x1000) MX[B]
[2] -1	0	0xfebbd000 - 0xfebbdfff (0x1000) MX[B]
[3] -1	0	0xfebbfc00 - 0xfebbfcff (0x100) MX[B]
[4] -1	0	0xfebbe000 - 0xfebbefff (0x1000) MX[B]
[5] -1	0	0xfeae0000 - 0xfeafffff (0x20000) MX[B](B)
[6] -1	0	0xfd000000 - 0xfdffffff (0x1000000) MX[B](B)
[7] -1	0	0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
[8] -1	0	0xf8000000 - 0xfbffffff (0x4000000) MX[B](B)
[9] -1	0	0x0000dc00 - 0x0000dc07 (0x8) IX[B]
[10] -1	0	0x0000d400 - 0x0000d4ff (0x100) IX[B]
[11] -1	0	0x0000d800 - 0x0000d8ff (0x100) IX[B]
[12] -1	0	0x0000e000 - 0x0000e00f (0x10) IX[B]
[13] -1	0	0x00000e00 - 0x00000e03 (0x4) IX[B]
[14] -1	0	0x00000e80 - 0x00000e87 (0x8) IX[B]
[15] -1	0	0x00000f00 - 0x00000f03 (0x4) IX[B]
[16] -1	0	0x00000f80 - 0x00000f87 (0x8) IX[B]
[17] -1	0	0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
[18] -1	0	0x00006000 - 0x0000603f (0x40) IX[B]
[19] -1	0	0x00005000 - 0x0000503f (0x40) IX[B]
(II) OS-reported resource ranges after removing overlaps with PCI:
[0] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[1] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
[2] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
[3] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
[4] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
[5] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
(II) All system resource ranges:
[0] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[1] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
[2] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
[3] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
[4] -1	0	0xfebbb000 - 0xfebbbfff (0x1000) MX[B]
[5] -1	0	0xfebbc000 - 0xfebbcfff (0x1000) MX[B]
[6] -1	0	0xfebbd000 - 0xfebbdfff (0x1000) MX[B]
[7] -1	0	0xfebbfc00 - 0xfebbfcff (0x100) MX[B]
[8] -1	0	0xfebbe000 - 0xfebbefff (0x1000) MX[B]
[9] -1	0	0xfeae0000 - 0xfeafffff (0x20000) MX[B](B)
[10] -1	0	0xfd000000 - 0xfdffffff (0x1000000) MX[B](B)
[11] -1	0	0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
[12] -1	0	0xf8000000 - 0xfbffffff (0x4000000) MX[B](B)
[13] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
[14] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
[15] -1	0	0x0000dc00 - 0x0000dc07 (0x8) IX[B]
[16] -1	0	0x0000d400 - 0x0000d4ff (0x100) IX[B]
[17] -1	0	0x0000d800 - 0x0000d8ff (0x100) IX[B]
[18] -1	0	0x0000e000 - 0x0000e00f (0x10) IX[B]
[19] -1	0	0x00000e00 - 0x00000e03 (0x4) IX[B]
[20] -1	0	0x00000e80 - 0x00000e87 (0x8) IX[B]
[21] -1	0	0x00000f00 - 0x00000f03 (0x4) IX[B]
[22] -1	0	0x00000f80 - 0x00000f87 (0x8) IX[B]
[23] -1	0	0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
[24] -1	0	0x00006000 - 0x0000603f (0x40) IX[B]
[25] -1	0	0x00005000 - 0x0000503f (0x40) IX[B]
(II) LoadModule: "dbe"
(II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
(II) Module dbe: vendor="X.Org Foundation"
compiled for 7.1.1, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 0.3
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "v4l"
(II) Loading /usr/lib/xorg/modules/drivers/v4l_drv.so
(II) Module v4l: vendor="X.Org Foundation"
compiled for 7.1.0, module version = 0.1.1
ABI class: X.Org Video Driver, version 1.0
(II) LoadModule: "extmod"
(II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
compiled for 7.1.1, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 0.3
(II) Loading extension SHAPE
(II) Loading extension Multi-Buffering
(II) Loading extension MIT-SUNDRY-NONSTANDARD
(II) Loading extension BIG-REQUESTS
(II) Loading extension SYNC
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XC-MISC
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-Misc
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension TOG-CUP
(II) Loading extension Extended-Visual-Information
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "type1"
(II) Loading /usr/lib/xorg/modules/fonts/libtype1.so
(II) Module type1: vendor="X.Org Foundation"
compiled for 7.1.1, module version = 1.0.2
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.5
(II) Loading font Type1
(II) LoadModule: "freetype"
(II) Loading /usr/lib/xorg/modules/fonts/libfreetype.so
(II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
compiled for 7.1.1, module version = 2.1.0
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.5
(II) Loading font FreeType
(II) LoadModule: "/usr/lib/xorg/modules/extensions/nvidia/libglx.so" (glx)
(WW) LoadModule: given non-canonical module name "/usr/lib/xorg/modules/extensions/nvidia/libglx.so"
(II) Loading /usr/lib/xorg/modules/extensions/nvidia/libglx.so
(II) Module glx: vendor="NVIDIA Corporation"
compiled for 4.0.2, module version = 1.0.9631
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 0.1
(II) Loading extension GLX
(II) LoadModule: "nvidia"
(II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
(II) Module nvidia: vendor="NVIDIA Corporation"
compiled for 4.0.2, module version = 1.0.9631
Module class: X.Org Video Driver
(II) LoadModule: "kbd"
(II) Loading /usr/lib/xorg/modules/input/kbd_drv.so
(II) Module kbd: vendor="X.Org Foundation"
compiled for 7.1.0, module version = 1.1.0
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 0.6
(II) LoadModule: "mouse"
(II) Loading /usr/lib/xorg/modules/input/mouse_drv.so
(II) Module mouse: vendor="X.Org Foundation"
compiled for 7.1.0, module version = 1.1.1
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 0.6
(II) v4l driver for Video4Linux
(II) NVIDIA dlloader X Driver  1.0-9631  Thu Nov  9 17:39:58 PST 2006
(II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
(II) Primary Device is: PCI 03:00:0
(--) Assigning device section with no busID to primary device
(--) Chipset NVIDIA GPU found
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/lib/xorg/modules/libfb.so
(II) Module fb: vendor="X.Org Foundation"
compiled for 7.1.1, module version = 1.0.0
ABI class: X.Org ANSI C Emulation, version 0.3
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Loading /usr/lib/xorg/modules/libramdac.so
(II) Module ramdac: vendor="X.Org Foundation"
compiled for 7.1.1, module version = 0.1.0
ABI class: X.Org Video Driver, version 1.0
(II) resource ranges after xf86ClaimFixedResources() call:
[0] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[1] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
[2] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
[3] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
[4] -1	0	0xfebbb000 - 0xfebbbfff (0x1000) MX[B]
[5] -1	0	0xfebbc000 - 0xfebbcfff (0x1000) MX[B]
[6] -1	0	0xfebbd000 - 0xfebbdfff (0x1000) MX[B]
[7] -1	0	0xfebbfc00 - 0xfebbfcff (0x100) MX[B]
[8] -1	0	0xfebbe000 - 0xfebbefff (0x1000) MX[B]
[9] -1	0	0xfeae0000 - 0xfeafffff (0x20000) MX[B](B)
[10] -1	0	0xfd000000 - 0xfdffffff (0x1000000) MX[B](B)
[11] -1	0	0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
[12] -1	0	0xf8000000 - 0xfbffffff (0x4000000) MX[B](B)
[13] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
[14] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
[15] -1	0	0x0000dc00 - 0x0000dc07 (0x8) IX[B]
[16] -1	0	0x0000d400 - 0x0000d4ff (0x100) IX[B]
[17] -1	0	0x0000d800 - 0x0000d8ff (0x100) IX[B]
[18] -1	0	0x0000e000 - 0x0000e00f (0x10) IX[B]
[19] -1	0	0x00000e00 - 0x00000e03 (0x4) IX[B]
[20] -1	0	0x00000e80 - 0x00000e87 (0x8) IX[B]
[21] -1	0	0x00000f00 - 0x00000f03 (0x4) IX[B]
[22] -1	0	0x00000f80 - 0x00000f87 (0x8) IX[B]
[23] -1	0	0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
[24] -1	0	0x00006000 - 0x0000603f (0x40) IX[B]
[25] -1	0	0x00005000 - 0x0000503f (0x40) IX[B]
(II) resource ranges after probing:
[0] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[1] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
[2] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
[3] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
[4] -1	0	0xfebbb000 - 0xfebbbfff (0x1000) MX[B]
[5] -1	0	0xfebbc000 - 0xfebbcfff (0x1000) MX[B]
[6] -1	0	0xfebbd000 - 0xfebbdfff (0x1000) MX[B]
[7] -1	0	0xfebbfc00 - 0xfebbfcff (0x100) MX[B]
[8] -1	0	0xfebbe000 - 0xfebbefff (0x1000) MX[B]
[9] -1	0	0xfeae0000 - 0xfeafffff (0x20000) MX[B](B)
[10] -1	0	0xfd000000 - 0xfdffffff (0x1000000) MX[B](B)
[11] -1	0	0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
[12] -1	0	0xf8000000 - 0xfbffffff (0x4000000) MX[B](B)
[13] 0	0	0x000a0000 - 0x000affff (0x10000) MS[B]
[14] 0	0	0x000b0000 - 0x000b7fff (0x8000) MS[B]
[15] 0	0	0x000b8000 - 0x000bffff (0x8000) MS[B]
[16] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
[17] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
[18] -1	0	0x0000dc00 - 0x0000dc07 (0x8) IX[B]
[19] -1	0	0x0000d400 - 0x0000d4ff (0x100) IX[B]
[20] -1	0	0x0000d800 - 0x0000d8ff (0x100) IX[B]
[21] -1	0	0x0000e000 - 0x0000e00f (0x10) IX[B]
[22] -1	0	0x00000e00 - 0x00000e03 (0x4) IX[B]
[23] -1	0	0x00000e80 - 0x00000e87 (0x8) IX[B]
[24] -1	0	0x00000f00 - 0x00000f03 (0x4) IX[B]
[25] -1	0	0x00000f80 - 0x00000f87 (0x8) IX[B]
[26] -1	0	0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
[27] -1	0	0x00006000 - 0x0000603f (0x40) IX[B]
[28] -1	0	0x00005000 - 0x0000503f (0x40) IX[B]
[29] 0	0	0x000003b0 - 0x000003bb (0xc) IS[B]
[30] 0	0	0x000003c0 - 0x000003df (0x20) IS[B]
(II) Setting vga for screen 0.
(**) 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): Option "TwinView"
(**) NVIDIA(0): Option "TwinViewOrientation" "Clone"
(**) NVIDIA(0): Enabling RENDER acceleration
(WW) NVIDIA(0): No TwinView "MetaModes" specified; will fall back to Display
(WW) NVIDIA(0):	 SubSection modes.
(**) NVIDIA(0): TwinView enabled
(II) NVIDIA(0): Support for GLX with the Damage and Composite X extensions is
(II) NVIDIA(0):	 enabled.
(II) NVIDIA(0): NVIDIA GPU GeForce 6600 GT at PCI:3:0:0 (GPU-0)
(--) NVIDIA(0): Memory: 131072 kBytes
(--) NVIDIA(0): VideoBIOS: 05.43.02.16.00
(II) NVIDIA(0): Detected PCI Express Link width: 16X
(--) NVIDIA(0): Interlaced video modes are supported on this GPU
(--) NVIDIA(0): Connected display device(s) on GeForce 6600 GT at PCI:3:0:0:
(--) NVIDIA(0):	 STAC Electronics  Sampo Tech.KM-712 (CRT-0)
(--) NVIDIA(0):	 NVIDIA TV Encoder (TV-0)
(--) NVIDIA(0): STAC Electronics  Sampo Tech.KM-712 (CRT-0): 400.0 MHz maximum
(--) NVIDIA(0):	 pixel clock
(--) NVIDIA(0): NVIDIA TV Encoder (TV-0): 400.0 MHz maximum pixel clock
(--) NVIDIA(0): TV encoder: NVIDIA
(II) NVIDIA(0): Assigned Display Devices: CRT-0, TV-0
(WW) NVIDIA(0): No valid modes for "480x360"; removing.
(II) NVIDIA(0): Validated modes:
(II) NVIDIA(0):	 "1280x1024"
(II) NVIDIA(0):	 "1152x864"
(II) NVIDIA(0):	 "1024x768"
(II) NVIDIA(0):	 "832x624"
(II) NVIDIA(0):	 "800x600"
(II) NVIDIA(0):	 "640x480"
(II) NVIDIA(0):	 "320x240"
(II) NVIDIA(0): Virtual screen size determined to be 1280 x 1024
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Loading /usr/lib/xorg/modules/libint10.so
(II) Module int10: vendor="X.Org Foundation"
compiled for 7.1.1, module version = 1.0.0
ABI class: X.Org Video Driver, version 1.0
(WW) NVIDIA(0): Bad V_BIOS checksum
(II) NVIDIA(0): Primary V_BIOS segment is: 0xc000
(--) NVIDIA(0): DPI set to (101, 108); computed from "UseEdidDpi" X config
(--) NVIDIA(0):	 option
(--) Depth 24 pixmap format is 32 bpp
(II) do I need RAC?  No, I don't.
(II) resource ranges after preInit:
[0] 0	0	0xfd000000 - 0xfdffffff (0x1000000) MX[B]
[1] 0	0	0xd0000000 - 0xd7ffffff (0x8000000) MX[B]
[2] 0	0	0xf8000000 - 0xfbffffff (0x4000000) MX[B]
[3] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[4] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
[5] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
[6] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
[7] -1	0	0xfebbb000 - 0xfebbbfff (0x1000) MX[B]
[8] -1	0	0xfebbc000 - 0xfebbcfff (0x1000) MX[B]
[9] -1	0	0xfebbd000 - 0xfebbdfff (0x1000) MX[B]
[10] -1	0	0xfebbfc00 - 0xfebbfcff (0x100) MX[B]
[11] -1	0	0xfebbe000 - 0xfebbefff (0x1000) MX[B]
[12] -1	0	0xfeae0000 - 0xfeafffff (0x20000) MX[B](B)
[13] -1	0	0xfd000000 - 0xfdffffff (0x1000000) MX[B](B)
[14] -1	0	0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
[15] -1	0	0xf8000000 - 0xfbffffff (0x4000000) MX[B](B)
[16] 0	0	0x000a0000 - 0x000affff (0x10000) MS[B](OprD)
[17] 0	0	0x000b0000 - 0x000b7fff (0x8000) MS[B](OprD)
[18] 0	0	0x000b8000 - 0x000bffff (0x8000) MS[B](OprD)
[19] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
[20] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
[21] -1	0	0x0000dc00 - 0x0000dc07 (0x8) IX[B]
[22] -1	0	0x0000d400 - 0x0000d4ff (0x100) IX[B]
[23] -1	0	0x0000d800 - 0x0000d8ff (0x100) IX[B]
[24] -1	0	0x0000e000 - 0x0000e00f (0x10) IX[B]
[25] -1	0	0x00000e00 - 0x00000e03 (0x4) IX[B]
[26] -1	0	0x00000e80 - 0x00000e87 (0x8) IX[B]
[27] -1	0	0x00000f00 - 0x00000f03 (0x4) IX[B]
[28] -1	0	0x00000f80 - 0x00000f87 (0x8) IX[B]
[29] -1	0	0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
[30] -1	0	0x00006000 - 0x0000603f (0x40) IX[B]
[31] -1	0	0x00005000 - 0x0000503f (0x40) IX[B]
[32] 0	0	0x000003b0 - 0x000003bb (0xc) IS[B](OprU)
[33] 0	0	0x000003c0 - 0x000003df (0x20) IS[B](OprU)
(II) NVIDIA(0): Setting mode "1280x1024"
(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
(**) Option "dpms"
(**) NVIDIA(0): DPMS enabled
(II) Loading extension NV-CONTROL
(==) RandR enabled
(II) Initializing built-in extension MIT-SHM
(II) Initializing built-in extension XInputExtension
(II) Initializing built-in extension XTEST
(II) Initializing built-in extension XKEYBOARD
(II) Initializing built-in extension LBX
(II) Initializing built-in extension XC-APPGROUP
(II) Initializing built-in extension SECURITY
(II) Initializing built-in extension XINERAMA
(II) Initializing built-in extension XFIXES
(II) Initializing built-in extension XFree86-Bigfont
(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) Initializing built-in extension XEVIE
(II) Initializing extension GLX
(**) Option "CoreKeyboard"
(**) Keyboard1: Core Keyboard
(**) Option "Protocol" "standard"
(**) Keyboard1: Protocol: standard
(**) Option "AutoRepeat" "500 30"
(**) Option "XkbRules" "xorg"
(**) Keyboard1: XkbRules: "xorg"
(**) Option "XkbModel" "pc105"
(**) Keyboard1: XkbModel: "pc105"
(**) Option "XkbLayout" "dk"
(**) Keyboard1: XkbLayout: "dk"
(**) Option "XkbOptions" "compose:rwin"
(**) Keyboard1: XkbOptions: "compose:rwin"
(**) Option "CustomKeycodes" "off"
(**) Keyboard1: CustomKeycodes disabled
(**) Option "Protocol" "ExplorerPS/2"
(**) Mouse1: Device: "/dev/mouse"
(**) Mouse1: Protocol: "ExplorerPS/2"
(**) Option "CorePointer"
(**) Mouse1: Core Pointer
(**) Option "Device" "/dev/mouse"
(==) Mouse1: Emulate3Buttons, Emulate3Timeout: 50
(**) Mouse1: ZAxisMapping: buttons 4 and 5
(**) Mouse1: Buttons: 9
(II) XINPUT: Adding extended input device "Mouse1" (type: MOUSE)
(II) XINPUT: Adding extended input device "Keyboard1" (type: KEYBOARD)
(II) XINPUT: Adding extended input device "NVIDIA Damage Notification Manager" (type: Other)
(II) XINPUT: Adding extended input device "NVIDIA Kernel RC Handler" (type: Other)
(II) XINPUT: Adding extended input device "NVIDIA Event Handler" (type: Other)
(II) Mouse1: ps2EnableDataReporting: succeeded
(II) Open ACPI successful (/var/run/acpid.socket)
(II) NVIDIA(0): Setting mode "1280x1024"
(II) Mouse1: ps2EnableDataReporting: succeeded
(II) Open ACPI successful (/var/run/acpid.socket)
(II) APM registered successfully
(II) NVIDIA(0): Setting mode "1280x1024"
(II) NVIDIA(0): NVIDIA 3D Acceleration Architecture Initialized
(II) NVIDIA(0): Using the NVIDIA 2D acceleration architecture
(**) NVIDIA(0): DPMS enabled
(==) RandR enabled
(II) Initializing extension GLX
(II) Mouse1: ps2EnableDataReporting: succeeded
(II) 3rd Button detected: disabling emulate3Button

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

×
×
  • Create New...