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 06-24-2013, 05:42 PM   #1
Brosch91
LQ Newbie
 
Registered: Jun 2013
Location: Michigan, USA
Distribution: Slackware64 14.1
Posts: 23

Rep: Reputation: Disabled
Sound problems with VIA VT1708S after installing NVIDIA drivers


Hi everyone, I recently installed Slackware 14 on my pc which happens to use the onboard sound VIA VT1708S which worked fine until I rebooted my machine after installing NVIDIA's proprietary drivers. I've searched and I can't find any fixes that work. One example being this one, which didn't work: http://hennr.name/2011/06/29/how-to-...ds-under-linux
So I have no idea what to do at this point. If it helps, heres my /proc/asound/cards output:

root@BroschPOW3R-Linux:~# cat /proc/asound/cards
0 [NVidia ]: HDA-Intel - HDA NVidia
HDA NVidia at 0xf9e78000 irq 21

Thanks in advance, let me know if you need anymore information than that and I will do my best to get it

EDIT: In addition, my motherboard is the ASUS M4N98TD EVO and it uses the Nforce 980a chipset

Last edited by Brosch91; 06-24-2013 at 06:01 PM. Reason: added motherboard info
 
Old 06-24-2013, 06:04 PM   #2
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,383

Rep: Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762
Welcome to LQ!

Does this help? http://docs.slackware.com/howtos:har...s_on_slackware
 
Old 06-24-2013, 06:27 PM   #3
Brosch91
LQ Newbie
 
Registered: Jun 2013
Location: Michigan, USA
Distribution: Slackware64 14.1
Posts: 23

Original Poster
Rep: Reputation: Disabled
Thanks for replying, I appreciate your help!
I tried aplay on 0,0 (which is the analog signal which is the one I need) and this is what happens:
Code:
root@BroschPOW3R-Linux:~#   aplay -D hw0,0 test.wav
ALSA lib pcm.c:2217:(snd_pcm_open_noupdate) Unknown PCM hw0,0
aplay: main:696: audio open error: No such file or directory
root@BroschPOW3R-Linux:~#
any thoughts? Maybe I'm typing that in wrong?

Heres my output of the other two commands, just in case it helps.

Code:
root@BroschPOW3R-Linux:~#   lsmod | grep snd
snd_seq_dummy           1455  0 
snd_seq_oss            29048  0 
snd_seq_midi_event      5620  1 snd_seq_oss
snd_seq                51330  5 snd_seq_midi_event,snd_seq_oss,snd_seq_dummy
snd_seq_device          5228  3 snd_seq,snd_seq_oss,snd_seq_dummy
snd_pcm_oss            39311  0 
snd_mixer_oss          15532  1 snd_pcm_oss
snd_hda_codec_hdmi     23993  0 
snd_hda_codec_via      39067  1 
snd_hda_intel          23299  0 
snd_hda_codec          81989  3 snd_hda_intel,snd_hda_codec_via,snd_hda_codec_hdmi
snd_hwdep               6484  1 snd_hda_codec
snd_pcm                73335  4 snd_hda_codec,snd_hda_intel,snd_hda_codec_hdmi,snd_pcm_oss
snd_page_alloc          7081  2 snd_pcm,snd_hda_intel
snd_timer              18830  2 snd_pcm,snd_seq
snd                    58091  12 snd_timer,snd_pcm,snd_hwdep,snd_hda_codec,snd_hda_intel,snd_hda_codec_via,snd_hda_codec_hdmi,snd_mixer_oss,snd_pcm_oss,snd_seq_device,snd_seq,snd_seq_oss
soundcore               5570  1 snd
Code:
root@BroschPOW3R-Linux:~# aplay -l
**** List of PLAYBACK Hardware Devices ****
card 0: NVidia [HDA NVidia], device 0: VT1708S Analog [VT1708S Analog]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 0: NVidia [HDA NVidia], device 1: VT1708S Digital [VT1708S Digital]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 0: NVidia [HDA NVidia], device 2: VT1708S HP [VT1708S HP]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
 
Old 06-24-2013, 06:40 PM   #4
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,383

Rep: Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762
Quote:
aplay -D hw0,0 test.wav
test.wav needs to a sound file on your system. You could try using /usr/share/sounds/alsa/Noise.wav
Code:
aplay -D hw:0,0 /usr/share/sounds/alsa/Noise.wav

Last edited by allend; 06-24-2013 at 06:54 PM.
 
Old 06-24-2013, 06:45 PM   #5
Brosch91
LQ Newbie
 
Registered: Jun 2013
Location: Michigan, USA
Distribution: Slackware64 14.1
Posts: 23

Original Poster
Rep: Reputation: Disabled
Oh yeah, figures -.-. But either way it still seems to output the same error:

Code:
root@BroschPOW3R-Linux:/usr/share/sounds/alsa# aplay -D hw0,0 Noise.wav
ALSA lib pcm.c:2217:(snd_pcm_open_noupdate) Unknown PCM hw0,0
aplay: main:696: audio open error: No such file or directory
 
Old 06-24-2013, 06:55 PM   #6
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,383

Rep: Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762
Please post the output of 'aplay -L'.
 
Old 06-24-2013, 07:19 PM   #7
Brosch91
LQ Newbie
 
Registered: Jun 2013
Location: Michigan, USA
Distribution: Slackware64 14.1
Posts: 23

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by allend View Post
Please post the output of 'aplay -L'.
here you go:

Code:
root@BroschPOW3R-Linux:~# aplay -L
null
    Discard all samples (playback) or generate zero samples (capture)
sysdefault:CARD=NVidia
    HDA NVidia, VT1708S Analog
    Default Audio Device
front:CARD=NVidia,DEV=0
    HDA NVidia, VT1708S Analog
    Front speakers
surround40:CARD=NVidia,DEV=0
    HDA NVidia, VT1708S Analog
    4.0 Surround output to Front and Rear speakers
surround41:CARD=NVidia,DEV=0
    HDA NVidia, VT1708S Analog
    4.1 Surround output to Front, Rear and Subwoofer speakers
surround50:CARD=NVidia,DEV=0
    HDA NVidia, VT1708S Analog
    5.0 Surround output to Front, Center and Rear speakers
surround51:CARD=NVidia,DEV=0
    HDA NVidia, VT1708S Analog
    5.1 Surround output to Front, Center, Rear and Subwoofer speakers
surround71:CARD=NVidia,DEV=0
    HDA NVidia, VT1708S Analog
    7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
iec958:CARD=NVidia,DEV=0
    HDA NVidia, VT1708S Digital
    IEC958 (S/PDIF) Digital Audio Output
 
Old 06-24-2013, 07:24 PM   #8
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,383

Rep: Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762
Does this work?
Code:
aplay -D sysdefault /usr/share/sounds/alsa/Noise.wav
 
Old 06-24-2013, 07:26 PM   #9
Brosch91
LQ Newbie
 
Registered: Jun 2013
Location: Michigan, USA
Distribution: Slackware64 14.1
Posts: 23

Original Poster
Rep: Reputation: Disabled
Yes it does!!
 
Old 06-24-2013, 07:36 PM   #10
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,383

Rep: Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762
Good. Your 'aplay -L' output does not show a 'default' device.
Try creating a file /etc/asound.conf containing
Code:
pcm.!default {
	type hw
	card 0
        device 0
}

ctl.!default {
	type hw           
	card 0
        device 0
}
It is probably easiest to reboot to test this.

Last edited by allend; 06-24-2013 at 07:40 PM. Reason: Added device specification
 
Old 06-24-2013, 07:48 PM   #11
Brosch91
LQ Newbie
 
Registered: Jun 2013
Location: Michigan, USA
Distribution: Slackware64 14.1
Posts: 23

Original Poster
Rep: Reputation: Disabled
No such luck, I booted up and the sound still didn't work, and XFCE said something about it not working and being reverted back to default or something like that
Also, I didn't think of it, but it says this when I play that test sound under sysdefault

Code:
root@BroschPOW3R-Linux:~# aplay -D sysdefault /usr/share/sounds/alsa/Noise.wav
ALSA lib conf.c:1690:(snd_config_load1) :11:2:Unexpected }
ALSA lib conf.c:3406:(config_file_open) /etc/asound.conf may be old or corrupted: consider to remove or fix it
Playing WAVE '/usr/share/sounds/alsa/Noise.wav' : Signed 16 bit Little Endian, Rate 48000 Hz, Mono
Also I'd like to add that I tried it as "aplay -D default" and that worked too. so both sysdefault and default work, but for some reason it doesn't want to work with anything else still?

Last edited by Brosch91; 06-24-2013 at 08:12 PM.
 
Old 06-24-2013, 09:03 PM   #12
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,383

Rep: Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762
Quote:
ALSA lib conf.c:1690snd_config_load1) :11:2:Unexpected }
This suggests a problem with your /etc/asound.conf file, Perhaps a missing curly bracket?
 
Old 06-24-2013, 09:10 PM   #13
Brosch91
LQ Newbie
 
Registered: Jun 2013
Location: Michigan, USA
Distribution: Slackware64 14.1
Posts: 23

Original Poster
Rep: Reputation: Disabled
I don't know if this might be relevant but I think it's more than a coincidence.
I just setup my laptop to boot right to the graphical interface and I accidentally booted right into KDE instead of XFCE (I did the same thing on my other PC that this topic is mainly concerned about), then after that my laptop's sound is now broken too. Something is going on with KDE that is making my sound cards on both computers non-functional, because my laptop's sound was working just fine until I accidentally booted into KDE. Any thoughts on that?
 
Old 06-25-2013, 08:38 AM   #14
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,383

Rep: Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762
Perhaps KDE is trying to access an inappropriate sound device and causing a lockup.
Try booting into KDE and then go to System Settings -> Hardware -> Multimedia -> Phonon and on the Device Preference tab check the ordering of available audio devices (use the Test button to check for a working device). On the Backend tab check that GStreamer is the default backend.
 
1 members found this post helpful.
Old 06-25-2013, 02:18 PM   #15
Brosch91
LQ Newbie
 
Registered: Jun 2013
Location: Michigan, USA
Distribution: Slackware64 14.1
Posts: 23

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by allend View Post
Perhaps KDE is trying to access an inappropriate sound device and causing a lockup.
Try booting into KDE and then go to System Settings -> Hardware -> Multimedia -> Phonon and on the Device Preference tab check the ordering of available audio devices (use the Test button to check for a working device). On the Backend tab check that GStreamer is the default backend.
Alright thanks for your continued help. I appreciate it very much allend! Anyways, I looked at the settings and GStreamer is #1 in the list, and my VIA VT1708S chip is as well. unfortunately I did a test sound on both default and my VIA chip itself, neither of them would play a sound. So I don't know. But another thing that might help find the cause of my problem is my dmesg, which I put up here, so I don't create a big wall of text on here: http://pastebin.com/92BS2jgm

here are a few things that make me scratch my head from it:

Code:
[   32.948576] snd_hda_intel 0000:04:00.1: PME# disabled
[   32.967231] snd_hda_intel 0000:04:00.1: PCI INT B disabled
That makes me think that maybe my soundcards got disabled somehow from booting into KDE?

Code:
[   10.147102] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:10.0/0000:02:00.0/0000:03:00.0/0000:04:00.1/sound/card1/input7
[   10.147465] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:10.0/0000:02:00.0/0000:03:00.0/0000:04:00.1/sound/card1/input8
[   10.147825] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:10.0/0000:02:00.0/0000:03:00.0/0000:04:00.1/sound/card1/input9
[   10.148185] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:10.0/0000:02:00.0/0000:03:00.0/0000:04:00.1/sound/card1/input10
four inputs of the same thing?
 
  


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
Sound gone after installing NVIDIA Drivers uskomaton Linux - Hardware 1 06-23-2009 07:34 AM
Problems installing nvidia drivers Alexander.s SUSE / openSUSE 3 08-22-2007 04:38 AM
Problems while installing nVIDIA drivers help_a_newbie Mandriva 16 08-18-2007 11:46 PM
Problems installing nvidia drivers BU5T4 Linux - Newbie 3 10-13-2003 06:46 PM
Stuttering Sound after installing Nvidia Drivers Lestat Linux - General 2 06-22-2003 04:54 PM

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

All times are GMT -5. The time now is 09:16 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