You are not logged in.

#1 2009-03-21 18:03:35

Meskarune
Member
From: Helsinki, Finland
Registered: 2009-03-21
Posts: 361
Website

No sound with alsa and integrated Intel sound card, any advice???

I just got a new computer, erased the OEM windows install and installed Arch linux with xfce. I have an Integrated HDA intel sound card with Realtek ALC888 chip
Sound worked just fine in the windows install, so I know the card and speakers work.

I installed alsa and made sure to unmute PCM and Front speakers. Unmuting all of the entries didn't help. Any advice would be greatly appreciated.

lsmod|grep '^snd'
snd_seq_oss            35584  0 
snd_seq_midi_event      9344  1 snd_seq_oss
snd_seq                58336  4 snd_seq_oss,snd_seq_midi_event
snd_seq_device          9364  2 snd_seq_oss,snd_seq
snd_hda_intel         531252  0 
snd_pcm_oss            45440  0 
snd_mixer_oss          18944  1 snd_pcm_oss
snd_hwdep              10632  1 snd_hda_intel
snd_pcm                82952  2 snd_hda_intel,snd_pcm_oss
snd_timer              24720  2 snd_seq,snd_pcm
snd                    65096  9 snd_seq_oss,snd_seq,snd_seq_device,snd_hda_intel,snd_pcm_oss,snd_mixer_oss,snd_hwdep,snd_pcm,snd_timer
snd_page_alloc         11792  2 snd_hda_intel,snd_pcm
aplay -l
**** List of PLAYBACK Hardware Devices ****
card 0: Intel [HDA Intel], device 0: ALC888 Analog [ALC888 Analog]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 0: Intel [HDA Intel], device 1: ALC888 Digital [ALC888 Digital]
  Subdevices: 1/1
  Subdevice #0: subdevice #0

Here is my rc.conf

#
# /etc/rc.conf - Main Configuration for Arch Linux
#

# -----------------------------------------------------------------------
# LOCALIZATION
# -----------------------------------------------------------------------
#
# LOCALE: Type locale -a to see location listing
# HARDWARECLOCK: set to "UTC" or "localtime"
# USEDIRECTISA: use direct I/O requests instead of /dev/rtc for hwclock
# TIMEZONE: timezones are found in /usr/share/zoneinfo
# KEYMAP: keymaps are found in /usr/share/kbd/keymaps
# CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
# CONSOLEMAP: found in /usr/share/kbd/consoletrans
# USECOLOR: use ANSI color sequences in startup messages
#
LOCALE="en_US.utf8"
HARDWARECLOCK="UTC"
USEDIRECTISA="no"
TIMEZONE="America/Detroit"
KEYMAP="us"
CONSOLEFONT=
CONSOLEMAP=
USECOLOR="yes"

# -----------------------------------------------------------------------
# HARDWARE
# -----------------------------------------------------------------------
#
# MOD_AUTOLOAD: Allow autoloading of modules at boot and when needed
# MOD_BLACKLIST: Prevent udev from loading these modules
# MODULES: Modules to load at boot-up. Prefix with a ! to blacklist.
#
# NOTE: Use of 'MOD_BLACKLIST' is deprecated. Please use ! in the MODULES array.
#
MOD_AUTOLOAD="yes"
#MOD_BLACKLIST=() #deprecated
MODULES=()

# Scan for LVM volume groups at startup, required if you use LVM
USELVM="yes"

# -----------------------------------------------------------------------
# NETWORKING
# -----------------------------------------------------------------------
#
# HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
#
HOSTNAME="Lychee"

# Use 'ifconfig -a' or 'ls /sys/class/net/' to see all available interfaces.
#
# Interfaces to start at boot-up (in this order)
# Declare each interface then list in INTERFACES
#   - prefix an entry in INTERFACES with a ! to disable it
#   - no hyphens in your interface names - Bash doesn't like it
# 
# DHCP:     Set your interface to "dhcp" (eth0="dhcp")
# Wireless: See network profiles below
#
#eth0="eth0 192.168.0.2 netmask 255.255.255.0 broadcast 192.168.0.255"
eth0="dhcp"
INTERFACES=(eth0)

# Routes to start at boot-up (in this order)
# Declare each route then list in ROUTES
#   - prefix an entry in ROUTES with a ! to disable it
#
gateway="default gw 192.168.0.1"
ROUTES=(!gateway)
 
# Enable these network profiles at boot-up.  These are only useful
# if you happen to need multiple network configurations (ie, laptop users)
#   - set to 'menu' to present a menu during boot-up (dialog package required)
#   - prefix an entry with a ! to disable it
#
# Network profiles are found in /etc/network.d
#
# This now requires the netcfg package
#
#NETWORKS=(main)

# -----------------------------------------------------------------------
# DAEMONS
# -----------------------------------------------------------------------
#
# Daemons to start at boot-up (in this order)
#   - prefix a daemon with a ! to disable it
#   - prefix a daemon with a @ to start it up in the background
#
DAEMONS=(syslog-ng network netfs crond hal fam)

I am going through the wikiarticl on alsa as well, but if anyone can point out what the issue is hear I would greatly appreciate it.


Homepage  | Arch Linux Women | Arch Linux Classroom
Acer Aspire E5-575G-53VG:
Intel Dual-Core i5-6200U 2.3 GHz; Skylake rev3 | 8GB DDR4 ram | Intel HD Graphics 520 + NVIDIA GeForce 940MX
Qualcomm Atheros QCA9377 802.11ac | Realtek RTL8111/8168/8411 Gigabit Ethernet Controller

Offline

#2 2009-03-21 18:11:00

xelados
Member
Registered: 2007-06-02
Posts: 314
Website

Re: No sound with alsa and integrated Intel sound card, any advice???

Hmm. I have an onboard Intel sound chipset as well.. I noticed your rc.conf doesn't have "snd-hda-intel" in the MODULES array; make sure you add that.

I never figured out how to read the right side of lsmod's output, so I'll assume that, despite having the snd-hda-intel module, you haven't enabled it yet. Try (as root or through sudo) `modprobe snd-hda-intel`. It may need underscores instead of hyphens; they seem to be interchangeable.

Offline

#3 2009-03-21 18:35:05

mike_93
Member
Registered: 2009-01-31
Posts: 60

Re: No sound with alsa and integrated Intel sound card, any advice???

Try OSS, I have an Intel sound card as well and one day ALSA stopped working so I tried OSS and it worked like a charm. There's a good article in the wiki about setting it up as well.


Double booting Arch Linux and Linux Mint
Reader of XKCD

Offline

#4 2009-03-21 18:43:09

bgc1954
Member
From: Edmonton, AB, Canada
Registered: 2006-03-14
Posts: 1,160

Re: No sound with alsa and integrated Intel sound card, any advice???

Well, for one thing, in order for alsa to work at all you need to add alsa to your DAEMONS line in /etc/rc.conf.  If that doesn't help maybe you should try OSS.


Time is a great teacher, but unfortunately it kills all its pupils ... - Louis Hector Berlioz

Offline

#5 2009-03-21 20:01:31

Meskarune
Member
From: Helsinki, Finland
Registered: 2009-03-21
Posts: 361
Website

Re: No sound with alsa and integrated Intel sound card, any advice???

Ok, I added alsa to the DAEMONS in rc.conf and and it worked... >< Thanks so much.

The sound is a little grainy, but at least I hear things now.


Homepage  | Arch Linux Women | Arch Linux Classroom
Acer Aspire E5-575G-53VG:
Intel Dual-Core i5-6200U 2.3 GHz; Skylake rev3 | 8GB DDR4 ram | Intel HD Graphics 520 + NVIDIA GeForce 940MX
Qualcomm Atheros QCA9377 802.11ac | Realtek RTL8111/8168/8411 Gigabit Ethernet Controller

Offline

#6 2009-03-21 20:04:58

esters
Member
Registered: 2006-11-04
Posts: 173

Re: No sound with alsa and integrated Intel sound card, any advice???

Try setting down PCM channel volume in alsamixer.

Offline

#7 2009-03-21 23:25:07

xelados
Member
Registered: 2007-06-02
Posts: 314
Website

Re: No sound with alsa and integrated Intel sound card, any advice???

bgc1954 wrote:

Well, for one thing, in order for alsa to work at all you need to add alsa to your DAEMONS line in /etc/rc.conf.  If that doesn't help maybe you should try OSS.

I thought the daemon just restores the sound levels.

Offline

#8 2009-03-22 00:32:22

test1000
Member
Registered: 2005-04-03
Posts: 834

Re: No sound with alsa and integrated Intel sound card, any advice???

it used to just do that, and it doesn't do much more now so i doubt the reason the op had it working now was because of it. seems more like a pebkac tongue. however just open up /etc/rc.d/alsa and see for yourself

Last edited by test1000 (2009-03-22 00:32:39)


KISS = "It can scarcely be denied that the supreme goal of all theory is to make the irreducible basic elements as simple and as few as possible without having to surrender the adequate representation of a single datum of experience." - Albert Einstein

Offline

Board footer

Powered by FluxBB