LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 08-06-2015, 05:21 AM   #1
glinkels
LQ Newbie
 
Registered: May 2012
Location: /home/glinkels
Distribution: Arch
Posts: 12

Rep: Reputation: Disabled
My sound card is not being detected by Debian 8 (Alsa and Pulseaudio)


I'm not so good in the use of Linux, since I am just 12 and TRYING to, so I would like you to as friendly as possible even though I'm sort of "noob".

Anyways, recently I started up my computer after a 3/4 week vacation and my sound wasn't working! I checked pavucontrol and all I saw was Dummy Output without a profile, whenever I checked "Configuration" I saw "No cards available for configuration."

Please help
 
Old 08-06-2015, 09:58 AM   #2
rokytnji
LQ Veteran
 
Registered: Mar 2008
Location: Waaaaay out West Texas
Distribution: antiX 22, MX 21 Fluxbox
Posts: 6,849
Blog Entries: 21

Rep: Reputation: 3399Reputation: 3399Reputation: 3399Reputation: 3399Reputation: 3399Reputation: 3399Reputation: 3399Reputation: 3399Reputation: 3399Reputation: 3399Reputation: 3399
12? Kool Beans.

Post what terminal spits out in code tags (# symbol in toolbar of reply box) in the advanced reply window.

Code:
cat /proc/asound/cards
Code:
lspci -v | grep -i audio
Code:
aplay –list-devices
And if you type in

Code:
alsamixer
Does the F6 key show your sound card from the previous commands given?

Good luck with it.
 
Old 08-07-2015, 07:30 AM   #3
glinkels
LQ Newbie
 
Registered: May 2012
Location: /home/glinkels
Distribution: Arch
Posts: 12

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by rokytnji View Post
12? Kool Beans.

Post what terminal spits out in code tags (# symbol in toolbar of reply box) in the advanced reply window.

Code:
cat /proc/asound/cards
Code:
lspci -v | grep -i audio
Code:
aplay –list-devices
And if you type in

Code:
alsamixer
Does the F6 key show your sound card from the previous commands given?

Good luck with it.
Code:
#cat /proc/asound/cards 
cat: /proc/asound/cards: No such file or directory
Code:
#lspci -v | grep -i audio
00:1b.0 Audio device: Intel Corporation 6 Series/C200 Series Chipset Family High Definition Audio Controller (rev05)
01:00.1 Audio device: Advanced Micro Devices, Inc. [AMD/ATI] Redwood HDMI Audio [Radeon HD 5000 Series]
Code:
#aplay --list-devices
aplay: device_list:268: no soundcards found...
Code:
#alsamixer
When I press F6 it just says
- (default)
enter device name...

Thanks for your reply and motivation to help me
 
Old 08-07-2015, 07:39 AM   #4
glinkels
LQ Newbie
 
Registered: May 2012
Location: /home/glinkels
Distribution: Arch
Posts: 12

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by rokytnji View Post
12? Kool Beans.

Post what terminal spits out in code tags (# symbol in toolbar of reply box) in the advanced reply window.

Code:
cat /proc/asound/cards
Code:
lspci -v | grep -i audio
Code:
aplay list-devices
And if you type in

Code:
alsamixer
Does the F6 key show your sound card from the previous commands given?

Good luck with it.
I attached a screenshot, I would usually type this out, but my terminal doesn't let me copy and paste and LinuxQuestions didn't post what I replied to you, so yeah.

Code:
#alsamixer
F6 and alsamixer replies with:
-(default)
enter device name

Thanks for replying and your motivation to help me
Attached Thumbnails
Click image for larger version

Name:	Commands output.png
Views:	978
Size:	11.4 KB
ID:	19111  
 
Old 08-07-2015, 08:13 AM   #5
rokytnji
LQ Veteran
 
Registered: Mar 2008
Location: Waaaaay out West Texas
Distribution: antiX 22, MX 21 Fluxbox
Posts: 6,849
Blog Entries: 21

Rep: Reputation: 3399Reputation: 3399Reputation: 3399Reputation: 3399Reputation: 3399Reputation: 3399Reputation: 3399Reputation: 3399Reputation: 3399Reputation: 3399Reputation: 3399
You should be able to copy and paste in your threads here.
While looking in your screenshot and typing out meticulously
your screenshot readout. I got kicked out of this thread so
this is a start over.

You have 2 sound chips on your laptop. Intel C200 and Radeon/ATI 5000 series.

What is the model of your laptop?
 
Old 08-07-2015, 10:29 AM   #6
glinkels
LQ Newbie
 
Registered: May 2012
Location: /home/glinkels
Distribution: Arch
Posts: 12

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by rokytnji View Post
You should be able to copy and paste in your threads here.
While looking in your screenshot and typing out meticulously
your screenshot readout. I got kicked out of this thread so
this is a start over.

You have 2 sound chips on your laptop. Intel C200 and Radeon/ATI 5000 series.

What is the model of your laptop?
Well, it's a Desktop PC and I built it myself.

I have an intel moherboard and an AMD Radeon Graphics card
The IntelC200 is what I use, the Radeon 5650 is the DVI/HDMI output for if your monitor has speakers.

BTW, Sorry for replying so late everytime. I'm sort of helping friends (A LOT) while looking for an answer to my sound not working.

Last edited by glinkels; 08-07-2015 at 10:47 AM.
 
Old 08-07-2015, 04:03 PM   #7
maples
Member
 
Registered: Oct 2013
Location: IN, USA
Distribution: Arch, Debian Jessie
Posts: 814

Rep: Reputation: 265Reputation: 265Reputation: 265
What distro are you using?

And could you post the output of
Code:
lsmod | grep snd_hda_intel
The lsmod command lists the loaded kernel modules, which are similar to Windows drivers. The grep command searches its input for a string. In this case, we're searching for "snd_hda_intel" which is the name of the Intel HD Audio kernel module. The "|" is called a pipe, and that's what sends the output of lsmod into the input of grep.

When you tried to copy from the terminal, did you use CTRL+C or did you right-click -> copy? CTRL+C doesn't work; that key combo is used to stop running commands in the terminal.

Last edited by maples; 08-07-2015 at 04:08 PM.
 
Old 08-07-2015, 08:47 PM   #8
glinkels
LQ Newbie
 
Registered: May 2012
Location: /home/glinkels
Distribution: Arch
Posts: 12

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by maples View Post
What distro are you using?

And could you post the output of
Code:
lsmod | grep snd_hda_intel
The lsmod command lists the loaded kernel modules, which are similar to Windows drivers. The grep command searches its input for a string. In this case, we're searching for "snd_hda_intel" which is the name of the Intel HD Audio kernel module. The "|" is called a pipe, and that's what sends the output of lsmod into the input of grep.

When you tried to copy from the terminal, did you use CTRL+C or did you right-click -> copy? CTRL+C doesn't work; that key combo is used to stop running commands in the terminal.
I tried to right click, but nothing happens, I tried CTRL+SHIFT+C what is also used, nothing happens (yes I am aware of what the CTRL+C does).

Code:
#lsmod | grep snd_hda_intel
Nothing happens
 
Old 08-08-2015, 01:23 PM   #9
glinkels
LQ Newbie
 
Registered: May 2012
Location: /home/glinkels
Distribution: Arch
Posts: 12

Original Poster
Rep: Reputation: Disabled
I fixed it

Recently when I came back I did an upgrade to Debian 8, for some reason it installed alsa-oss too.
To fix it I did=
Code:
#apt-get remove --purge alsa-oss
And since oss uses old intel sound drivers I did
Code:
#modprobe snd_hda_intel
Thanks for your help
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 is very faint (alsa and pulseaudio, Fedora 10) bach-fiend Linux - Newbie 3 02-16-2009 03:11 PM
USB sound card not detected by ALSA but is by lsusb, using alsa 1.0.15 mjkelly93 Linux - Hardware 1 10-20-2007 10:23 AM
Sound card not detected by ALSA anon061 Arch 8 07-03-2007 04:33 PM
Sound card not detected - Intel 82801G, ALSA 1.0.14 as2100 Linux - Hardware 5 06-11-2007 10:21 PM
alsa - card detected, media plays, no sound, not the usual problem qwijibow Linux - General 8 06-02-2005 01:35 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 04:04 AM.

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