LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 11-14-2016, 11:28 AM   #1
emrekokulu
LQ Newbie
 
Registered: Nov 2016
Posts: 3

Rep: Reputation: Disabled
Question Slackware 14.2 Nvidia GeForce 7025 / nForce 630a problem


Hi, I'm new to Slackware 14.2. Sorry, my Nvidia display card could not be set up like other distributions. How do I do it?

Code:
lspci | grep VGA ; lsmod | grep "kms\|drm" ; find /dev -group video ; \ cat /proc/cmdline ; find /etc/modprobe.d/; cat /etc/modprobe.d/*kms* ; \ ls /etc/X11/xorg.conf ; glxinfo | grep -i "vendor\|rendering" ; \ grep LoadModule /var/log/Xorg.0.log
Top code output
 
Old 11-14-2016, 11:36 AM   #2
emrekokulu
LQ Newbie
 
Registered: Nov 2016
Posts: 3

Original Poster
Rep: Reputation: Disabled
Question Slackware 14.2 {Nvidia GeForce 7025 / nForce 630a problem}

Quote:
Originally Posted by emrekokulu View Post
Hi, I'm new to Slackware 14.2. Sorry, my Nvidia display card could not be set up like other distributions. How do I do it?

Code:
lspci | grep VGA ; lsmod | grep "kms\|drm" ; find /dev -group video ; \ cat /proc/cmdline ; find /etc/modprobe.d/; cat /etc/modprobe.d/*kms* ; \ ls /etc/X11/xorg.conf ; glxinfo | grep -i "vendor\|rendering" ; \ grep LoadModule /var/log/Xorg.0.log
Top code output
Code:
00:0d.0 VGA compatible controller: NVIDIA Corporation C61 [GeForce 7025 / nForce 630a] (rev a2)
drm_kms_helper        118812  1 nouveau
drm                   323478  6 ttm,drm_kms_helper,nouveau
agpgart                31796  3 drm,ttm,nouveau
fb_sys_fops             1730  1 drm_kms_helper
syscopyarea             3458  1 drm_kms_helper
sysfillrect             3950  1 drm_kms_helper
sysimgblt               2608  1 drm_kms_helper
i2c_core               47925  6 drm,i2c_dev,drm_kms_helper,i2c_algo_bit,nouveau,i2c_nforce2
/dev/fb0
/dev/dri/card0
/dev/dri/renderD128
/dev/dri/controlD64
bash:  cat: no command
/etc/modprobe.d/
/etc/modprobe.d/README
cat: '/etc/modprobe.d/*kms*':No such file or directory
bash:  ls: no command
Xlib:  extension "GLX" missing on display ":0.0".
Xlib:  extension "GLX" missing on display ":0.0".
Xlib:  extension "GLX" missing on display ":0.0".
Xlib:  extension "GLX" missing on display ":0.0".
Xlib:  extension "GLX" missing on display ":0.0".
Xlib:  extension "GLX" missing on display ":0.0".
Xlib:  extension "GLX" missing on display ":0.0".
Error: couldn't find RGB GLX visual or fbconfig
Xlib:  extension "GLX" missing on display ":0.0".
Xlib:  extension "GLX" missing on display ":0.0".
Xlib:  extension "GLX" missing on display ":0.0".
Xlib:  extension "GLX" missing on display ":0.0".
Xlib:  extension "GLX" missing on display ":0.0".
Xlib:  extension "GLX" missing on display ":0.0".
Xlib:  extension "GLX" missing on display ":0.0".
Xlib:  extension "GLX" missing on display ":0.0".
Xlib:  extension "GLX" missing on display ":0.0".
bash:  grep: no command
Code:
reboot
The desktop does not open. However, deleting the xorg.conf file opens the Desktop. I can not activate the Nvidia settings panel. How do I do this?


---------------------------------------------------------------------------------------------
Thank you very much for your interest in BassMadrigal. Slackware setup- I believe I made it right. I will give the link to the underground installation. I am having trouble with nemo nouveau and only the video is watching the screen tearing. In the other linux distributions the same alone is not a problem with the nvidia-304 driver in them. I have to use linux-mint-18 to see it.Mint nvidia setting image is below linkte.Yani nouveau to nvidia-304 is not a problem.You are giving me your code again tomorrow slackware 14.2 I would like to share with you your output. Thank you very much for your reply. I wish my health and well-being.


I am doing this as a Slackware institution

https://www.youtube.com/watch?v=DdwZylEQcQ0

Slackware configuration

https://www.youtube.com/watch?v=2JpY_6wy3tE

Last edited by emrekokulu; 11-15-2016 at 10:36 AM.
 
Old 11-14-2016, 02:26 PM   #3
bassmadrigal
LQ Guru
 
Registered: Nov 2003
Location: West Jordan, UT, USA
Distribution: Slackware
Posts: 8,792

Rep: Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656
Is your intention to use the opensource nouveau drivers (lower performance, but opensource) or the proprietary nvidia drivers (higher performance but closed source and requires rebuild after any kernel upgrade)? Based on your mention of trying to open up the Nvidia settings panel, I assume you want the proprietary drivers. Slackware does not include those in the distribution. You'd need to install them using the binary package from their site or using the SlackBuilds on SBo.

However, if you don't want to go through that hassle, you should still be able to get it working with the opensource nouveau that's included with Slackware, but we'll need to do further diagnosing.

I'm not sure where you got that command, because there's a few mistakes in there with the backslashes before cat and ls, making bash think there's a space before the ls, cat, and grep as part of the command (ie, it thinks ' cat', ' ls', and ' grep' are commands, which they aren't). If you want the output of the commands above to work properly (with a bit more detail in the xorg conf files section), try the following:

Code:
lspci | grep VGA ; lsmod | grep "kms\|drm" ; find /dev -group video ; cat /proc/cmdline ; find /etc/modprobe.d/; cat /etc/modprobe.d/*kms* ; ls /etc/X11/xorg.conf{,.d/*.conf} ; glxinfo | grep -i "vendor\|rendering" ; grep LoadModule /var/log/Xorg.0.log
But, it is showing some serious glx errors, which shouldn't occur on a full install out of the box. What all have you done so far? To get basic support with nouveau, you should just need to do a full install, reboot, and startx... you shouldn't need any xorg.conf, but you should post the one you have anyway.
 
1 members found this post helpful.
Old 11-16-2016, 12:06 PM   #4
emrekokulu
LQ Newbie
 
Registered: Nov 2016
Posts: 3

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by emrekokulu View Post
Code:
00:0d.0 VGA compatible controller: NVIDIA Corporation C61 [GeForce 7025 / nForce 630a] (rev a2)
drm_kms_helper        118812  1 nouveau
drm                   323478  6 ttm,drm_kms_helper,nouveau
agpgart                31796  3 drm,ttm,nouveau
fb_sys_fops             1730  1 drm_kms_helper
syscopyarea             3458  1 drm_kms_helper
sysfillrect             3950  1 drm_kms_helper
sysimgblt               2608  1 drm_kms_helper
i2c_core               47925  6 drm,i2c_dev,drm_kms_helper,i2c_algo_bit,nouveau,i2c_nforce2
/dev/fb0
/dev/dri/card0
/dev/dri/renderD128
/dev/dri/controlD64
bash:  cat: no command
/etc/modprobe.d/
/etc/modprobe.d/README
cat: '/etc/modprobe.d/*kms*':No such file or directory
bash:  ls: no command
Xlib:  extension "GLX" missing on display ":0.0".
Xlib:  extension "GLX" missing on display ":0.0".
Xlib:  extension "GLX" missing on display ":0.0".
Xlib:  extension "GLX" missing on display ":0.0".
Xlib:  extension "GLX" missing on display ":0.0".
Xlib:  extension "GLX" missing on display ":0.0".
Xlib:  extension "GLX" missing on display ":0.0".
Error: couldn't find RGB GLX visual or fbconfig
Xlib:  extension "GLX" missing on display ":0.0".
Xlib:  extension "GLX" missing on display ":0.0".
Xlib:  extension "GLX" missing on display ":0.0".
Xlib:  extension "GLX" missing on display ":0.0".
Xlib:  extension "GLX" missing on display ":0.0".
Xlib:  extension "GLX" missing on display ":0.0".
Xlib:  extension "GLX" missing on display ":0.0".
Xlib:  extension "GLX" missing on display ":0.0".
Xlib:  extension "GLX" missing on display ":0.0".
bash:  grep: no command
Code:
reboot
The desktop does not open. However, deleting the xorg.conf file opens the Desktop. I can not activate the Nvidia settings panel. How do I do this?


---------------------------------------------------------------------------------------------
Thank you very much for your interest in BassMadrigal. Slackware setup- I believe I made it right. I will give the link to the underground installation. I am having trouble with nemo nouveau and only the video is watching the screen tearing. In the other linux distributions the same alone is not a problem with the nvidia-304 driver in them. I have to use linux-mint-18 to see it.Mint nvidia setting image is below linkte.Yani nouveau to nvidia-304 is not a problem.You are giving me your code again tomorrow slackware 14.2 I would like to share with you your output. Thank you very much for your reply. I wish my health and well-being.


I am doing this as a Slackware institution

https://www.youtube.com/watch?v=DdwZylEQcQ0

Slackware configuration

https://www.youtube.com/watch?v=2JpY_6wy3tE
Code:
uname -a
Linux slackware 4.4.29 #2 SMP Mon Oct 31 15:02:12 CDT 2016 x86_64 AMD Athlon(tm) II X3 450 Processor AuthenticAMD GNU/Linux
Code:
lspci | grep VGA ; lsmod | grep "kms\|drm" ; find /dev -group video ; \ cat /proc/cmdline ; find /etc/modprobe.d/; cat /etc/modprobe.d/*kms* ; \ ls /etc/X11/xorg.conf ; glxinfo | grep -i "vendor\|rendering" ; \ grep LoadModule /var/log/Xorg.0.log

bash: lspci: komut yok
BOOT_IMAGE=/boot/vmlinuz root=/dev/sda1 ro vt.default_utf8=0 vga = normal
/etc/modprobe.d/
/etc/modprobe.d/README
cat: '/etc/modprobe.d/*kms*': Böyle bir dosya ya da dizin yok
ls: '/etc/X11/xorg.conf''e erişilemedi: Böyle bir dosya ya da dizin yok
/etc/X11/xorg.conf.d/90-keyboard-layout.conf
Xlib:  extension "NV-GLX" missing on display ":0.0".
Xlib:  extension "NV-GLX" missing on display ":0.0".
Xlib:  extension "NV-GLX" missing on display ":0.0".
Xlib:  extension "NV-GLX" missing on display ":0.0".
Xlib:  extension "NV-GLX" missing on display ":0.0".
Xlib:  extension "NV-GLX" missing on display ":0.0".
Xlib:  extension "NV-GLX" missing on display ":0.0".
Xlib:  extension "NV-GLX" missing on display ":0.0".
Xlib:  extension "NV-GLX" missing on display ":0.0".
Xlib:  extension "NV-GLX" missing on display ":0.0".
X Error of failed request:  BadValue (integer parameter out of range for operation)
  Major opcode of failed request:  153 (GLX)
  Minor opcode of failed request:  24 (X_GLXCreateNewContext)
  Value in failed request:  0x0
  Serial number of failed request:  35
  Current serial number in output stream:  36
[    26.742] (II) LoadModule: "glx"
[    26.875] (II) LoadModule: "nouveau"
[    26.983] (II) LoadModule: "nv"
[    27.021] (II) LoadModule: "modesetting"
[    27.070] (II) LoadModule: "fbdev"
[    27.072] (II) LoadModule: "vesa"
[    27.456] (II) LoadModule: "vbe"
[    27.598] (II) LoadModule: "int10"
[    27.726] (II) LoadModule: "ddc"
[    27.906] (II) LoadModule: "shadow"
[    27.933] (II) LoadModule: "fb"
[    27.982] (II) LoadModule: "int10"
[    31.248] (II) LoadModule: "evdev"
bash-4.3$ clear

bash-4.3$ lspci | grep VGA ; lsmod | grep "kms\|drm" ; find /dev -group video ; \ cat /proc/cmdline ; find /etc/modprobe.d/; cat /etc/modprobe.d/*kms* ; \ ls /etc/X11/xorg.conf ; glxinfo | grep -i "vendor\|rendering" ; \ grep LoadModule /var/log/Xorg.0.log
bash: lspci: no command
bash:  cat: no command
/etc/modprobe.d/
/etc/modprobe.d/README
cat: '/etc/modprobe.d/*kms*': No such file or directory
bash:  ls: no command
Xlib:  extension "NV-GLX" missing on display ":0.0".
Xlib:  extension "NV-GLX" missing on display ":0.0".
Xlib:  extension "NV-GLX" missing on display ":0.0".
Xlib:  extension "NV-GLX" missing on display ":0.0".
Xlib:  extension "NV-GLX" missing on display ":0.0".
Xlib:  extension "NV-GLX" missing on display ":0.0".
Xlib:  extension "NV-GLX" missing on display ":0.0".
Xlib:  extension "NV-GLX" missing on display ":0.0".
Xlib:  extension "NV-GLX" missing on display ":0.0".
Xlib:  extension "NV-GLX" missing on display ":0.0".
X Error of failed request:  BadValue (integer parameter out of range for operation)
  Major opcode of failed request:  153 (GLX)
  Minor opcode of failed request:  24 (X_GLXCreateNewContext)
  Value in failed request:  0x0
  Serial number of failed request:  35
  Current serial number in output stream:  36
bash:  grep: no command
http://i.hizliresim.com/1VPd2B.png

http://i.hizliresim.com/LZP3Y0.png

http://i.hizliresim.com/Pn3MYd.png

http://i.hizliresim.com/ZMNdAo.png

Last edited by emrekokulu; 11-16-2016 at 12:10 PM.
 
Old 11-16-2016, 12:24 PM   #5
bassmadrigal
LQ Guru
 
Registered: Nov 2003
Location: West Jordan, UT, USA
Distribution: Slackware
Posts: 8,792

Rep: Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656
You just redid your same broken command. That doesn't provide all the information it is supposed to because it isn't formatted properly.

And the errors in your pictures seemed to be pretty self-explanatory. You can't be running X when you go to install the proprietary drivers. As root, run init 3 to get you out of X so you can install the drivers.

But I question whether that will work, because your system seems to be screwed up based on the errors from running glxinfo. And unfortunately, I don't have time to spend almost an hour watching the videos you used to install and configure your system (I am just on the forum at work during our downtime).

Also, please don't edit your posts to respond to people. The forum doesn't notify anyone of edits, so it's impossible to know that you replied to my previous message. Always reply using a new message to ensure everything is read properly
 
Old 11-17-2016, 03:43 PM   #6
ReaperX7
LQ Guru
 
Registered: Jul 2011
Location: California
Distribution: Slackware64-15.0 Multilib
Posts: 6,558
Blog Entries: 15

Rep: Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097
Try this:

Create a file in /etc/X11/xorg.conf.d directory named as 10-video.conf and insert the following text into the file:

Code:
Section "Device"
        Identifier "GeForce 7025"
        Driver "modesetting"
        Option "SWCursor" "false"
        Option "kmsdev" "/dev/dri/card0"
        Option "ShadowFB" "false"
        Option "AccelMethod" "glamor"
        Option "PageFlip" "true"
        Option "ZaphodHeads" "VGA-1"
EndSection
This SHOULD enable you to get support under Nouveau. The modern Nvidia drivers do not cover or offer support for 6x00/7x00 series chipsets. If you have trouble still and can't get any screens to exist, let us know and we can help you create the proper monitor configuration file also. While this does target the modesetting kms driver, this does however activate the Nouveau EGL driver under X11 for video acceleration.

I highly recommend that once you get this enabled you find the following packages on http://www.slackbuilds.org and use them to supplement your driver as needed:

Code:
driconf
libtxc_dxtn
Unless absolutely needed, you don't need the full xorg.conf file for Nvidia under Nouveau unless you have extensive issues getting stuff working. The Nvidia OEM driver however will recommend using the full xorg.conf and does, but it is a different driver.

Last edited by ReaperX7; 11-17-2016 at 03:46 PM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] nVidia GeForce 7150M / nForce 630M driver for Slackware 14.1 Erik_FL Slackware - Installation 10 02-18-2015 08:21 PM
[SOLVED] Xorg Setup Centos6: Asus VW192T+NVIDIA Geforce 7025 / nForce 630a] (rev a2) ? chrism01 Linux - Hardware 4 04-10-2014 06:34 AM
Nvidia card question NVIDIA GeForce 7025 simion314 Linux - Hardware 2 01-27-2011 03:04 PM
[SOLVED] Geforce 6150 nforce 430 and nVidia-drivers 196.* stiv Linux - Hardware 2 07-22-2010 01:04 PM
How do I config my P5N73-AM WITH NVIDIA GEFORCE 7050/NFORCE 610i linuxpen Linux - Hardware 4 12-14-2008 08:13 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 03:14 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration