Sound no longer working on AAO ZG5

I just reinstalled Arch on my ZG5 -- before I reinstalled everything sound-related was working by using snd-intel-hda and ALSA, all I had to do was add the line
options snd-hda-intel model=acer-aspire
in /etc/modprobe.conf, unmute the channels, and ALSA took it from there. After my reinstall, I did the same things I did to get it to work last time, and no sound appears, despite the device being listed.
Here are outputs from commands that may be useful:
aplay -l
**** List of PLAYBACK Hardware Devices ****
card 0: Intel [HDA Intel], device 0: ALC268 Analog [ALC268 Analog]
Subdevices: 1/1
Subdevice #0: subdevice #0
cat /proc/asound/modules
0 snd_hda_intel
ls -l /sys/module/snd/holders
total 0
lrwxrwxrwx 1 root root 0 Mar 14 19:43 snd_hda_codec -> ../../snd_hda_codec
lrwxrwxrwx 1 root root 0 Mar 14 19:43 snd_hda_codec_realtek -> ../../snd_hda_codec_realtek
lrwxrwxrwx 1 root root 0 Mar 14 19:43 snd_hda_intel -> ../../snd_hda_intel
lrwxrwxrwx 1 root root 0 Mar 14 19:43 snd_hwdep -> ../../snd_hwdep
lrwxrwxrwx 1 root root 0 Mar 14 19:43 snd_mixer_oss -> ../../snd_mixer_oss
lrwxrwxrwx 1 root root 0 Mar 14 19:43 snd_pcm -> ../../snd_pcm
lrwxrwxrwx 1 root root 0 Mar 14 19:43 snd_pcm_oss -> ../../snd_pcm_oss
lrwxrwxrwx 1 root root 0 Mar 14 19:43 snd_seq -> ../../snd_seq
lrwxrwxrwx 1 root root 0 Mar 14 19:43 snd_seq_device -> ../../snd_seq_device
lrwxrwxrwx 1 root root 0 Mar 14 19:43 snd_seq_oss -> ../../snd_seq_oss
lrwxrwxrwx 1 root root 0 Mar 14 19:43 snd_timer -> ../../snd_timer
ls -l /dev/snd
total 0
drwxr-xr-x 2 root root 60 Mar 14 19:36 by-path
crw-rw---- 1 root audio 116, 6 Mar 14 19:36 controlC0
crw-rw---- 1 root audio 116, 5 Mar 14 19:36 hwC0D0
crw-rw---- 1 root audio 116, 4 Mar 14 19:36 pcmC0D0c
crw-rw---- 1 root audio 116, 3 Mar 14 19:37 pcmC0D0p
crw-rw---- 1 root audio 116, 7 Mar 14 19:36 seq
crw-rw---- 1 root audio 116, 2 Mar 14 19:36 timer
lsmod | grep '^snd'
snd_seq_dummy 1119 0
snd_seq_oss 25232 0
snd_seq_midi_event 4568 1 snd_seq_oss
snd_seq 41912 5 snd_seq_dummy,snd_seq_oss,snd_seq_midi_event
snd_seq_device 4409 3 snd_seq_dummy,snd_seq_oss,snd_seq
snd_hda_codec_realtek 224540 1
snd_hda_intel 18988 0
snd_pcm_oss 33950 0
snd_hda_codec 64796 2 snd_hda_codec_realtek,snd_hda_intel
snd_mixer_oss 15366 1 snd_pcm_oss
snd_hwdep 4804 1 snd_hda_codec
snd_pcm 59496 3 snd_hda_intel,snd_pcm_oss,snd_hda_codec
snd_timer 15687 2 snd_seq,snd_pcm
snd 43987 11 snd_seq_oss,snd_seq,snd_seq_device,snd_hda_codec_realtek,snd_hda_intel,snd_pcm_oss,snd_hda_codec,snd_hwdep,snd_mixer_oss,snd_pcm,snd_timer
snd_page_alloc 6021 2 snd_hda_intel,snd_pcm
cat /etc/rc.conf
# /etc/rc.conf - Main Configuration for Arch Linux
# LOCALIZATION
# LOCALE: available languages can be listed with the 'locale -a' command
# HARDWARECLOCK: set to "UTC" or "localtime", any other value will result
# in the hardware clock being left untouched (useful for virtualization)
# 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_GB.UTF-8"
HARDWARECLOCK="UTC"
TIMEZONE="Europe/London"
KEYMAP="uk"
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=(!snd-pcsp acpi_cpufreq r8169 pciehp ath5k !uvcvideo)
# Scan for LVM volume groups at startup, required if you use LVM
USELVM="no"
# NETWORKING
# HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
HOSTNAME="helios"
# 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
#Static IP example
#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)
Thanks for any help
EDIT: Just tested with another distro and sound works out of the box with ALSA and the same output from the above commands... hm.
Last edited by neurolysis (2011-03-14 21:36:48)

Hi,
Don't know if it is possible but what about using a small pin with strong glue? (depending on the force needed to get it out).
/rob

Similar Messages

  • HT204266 The sound no longer works on my ipad?

    The sound no longer works on my iPad although when I put headphones in it does. When I press the volume button it comes up as "sound effects" but with no dots that would normally go up or down. When I double click the start button there is the normal volume bit but no button to move up or down. Has anyone ever had this before?

    The disappearing sound is typically one of three things that could be going on. Read this and see which one applies to your situation.
    1. If you have no sound at all, even in the Music App, try rebooting the iPad.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.
    2. If you lost sounds for keyboard clicks, games or other apps, email notifications and other notifications, system sounds may have been muted.
    System sounds can be muted and controlled two different ways. The screen lock rotation can be controlled in the same manner as well.
    Settings>General>Use Side Switch to: Mute System sounds. If this option is selected, the switch on the side of the iPad above the volume rocker will mute system sounds.
    If you choose Lock Screen Rotation, then the switch locks the screen. If the screen is locked, you will see a lock icon in the upper right corner next to the battery indicator gauge.
    If you have the side switch set to lock screen rotation then the system sound control is in the task bar. Double tap the home button and in the task bar at the bottom, swipe all the way to the right. The speaker icon is all the way to the left. Tap on it and system sounds will return.
    If you have the side switch set to mute system sounds, then the screen lock rotation can be accessed via the task bar in the same manner as described above.
    This support article from Apple explains how the side switch works.
    http://support.apple.com/kb/HT4085
    3. If you still have no sound at all - except when using headphones ....try cleaning the dock connector opening of the iPad with a soft brush and just a little bit of rubbing alcohol.

  • Sound no longer working after graphics card installation

    Okay, so my problem is:
    I recently added a graphics card to my windows 8.1 PC. The card itself works fine (a GTX 750Ti), but since installing it my sound no longer works from either port. Things I have already tried:
    Rebooting (obviously)
    Taking the card out and then replacing it
    Going through all the control panel audio settings (more on this later)
    Disabling the HDMI audio on the card
    Trying different (provably working) speakers and headphones
    Updating/installing drivers (not that you need them for headphones)
    The "playback devices" screen declared that nothing whatsoever is plugged in (it is). I'm concerned I might have damaged something during installation, but nothing seems obviously damaged, and I would have expected static to either do no damage
    or wipe out the entire motherboard. The back port is working, so it isn't the cable. My monitor output is HDMI (with no speakers on the monitor), if that makes any difference.
    Penny for anyone's thoughts?

    The back port is working, so it isn't the cable.
    I’m confused as to what this means. If you have audio via the ports on the back of the computer but not in front ports you may have damaged the front audio cable or connection on the motherboard
    or at the front ports. Find the HD Audio (or AC’97) port on your motherboard and verify that the cable is connected and intact, then follow this cable forward to your front audio ports. If you stressed this cable by tugging or pushing, it could have damaged
    the connection to the front ports. Sometimes these ports are connected by a header like the motherboard and this connection could have come loose.
    Brandon
    Windows Outreach Team- IT Pro
    Windows for IT Pros on TechNet

  • The sound no longer works in my husband's iPad and it keeps shutting itself down. This started today. We checked all the settings and everything looks right. Is there something we might be missing?

    The sound no longer works in my husband's iPad and it keeps shutting itself down. This started today. We checked all the settings and everything looks right. Is there something we might be missing?

    Try a reset first: Press and hold both Sleep/Wake and Home buttons until the Apple logo appears.
    If the reset doesn't fix it, try a restore:
    http://support.apple.com/kb/HT1414

  • My sound no longer works, my sound no longer works

    Since i downloaded new OS my sound no longer works, this if for itunes, spotify and trying to listen to youtube videos

    I just found out that a few of my slideshows have the music intact.  For the rest, it looks like I will have to go through the cumbersome process of re-loading the music.
    I can't tell is this was caused by the Mavericks upgrade or Iphoto Update.

  • My sound no longer works on my Apple 5c cell phone.  What should the settings be?

    My sound no longer works on my phone.  What should the settings be?

    What do you by "what should the settings be?  Volume is either up or down.

  • Sound no longer works after upgrade to Windows 8.1

    System:
    Operating System
    Windows 8.1 64-bit
    CPU
    Intel Core i5 3330 @ 3.00GHz
    23 °C
    Ivy Bridge 22nm Technology
    RAM
    8.00GB Dual-Channel DDR3 (11-11-11-28)
    Motherboard
    LENOVO MAHOBAY (SOCKET 0)
    18 °C
    Audio
    ASUS Xonar DGX Audio Device
    I sucessfully upgrading to Windows 8.1 and everything was functioning after the upgrade.  However, after the first time I restarted my system after the upgrade the intergrated soundcard no longer worked.
    I attempted to remove and reinstall the RealTek audio driver, downloading the newest 8.1 compatible driver from the Lenovo support site.
    The drive refused to installed, either via the executable or by manually installing the driver through a device manager upgrade.  
    So I attempted to install a stand alone soundcard, to no success.   
    In device manager this is displayed for both the integrated motherboard audio and the new Asus sound card:
    Windows cannot verify the digital signature for the drivers required for this device. A recent hardware or software change might have installed a file that is signed incorrectly or damaged, or that might be malicious software from an unknown source. (Code
    52)
    If I disable the driver driver signature enforcement, neither audio option works.  Instead I get this error in device manager:
    "Windows cannot load the device driver for this hardware. The driver may be corrupted or missing.
    (Code 39)"
    Attempting to update the driver in device manager, Windows tell me I am on the most up-to-date, recommended driver, yet at the same time refuses to
    allow it to function.
    Extremely frustrating.
    Any help would be greatly appreciated.

    I have also attempted to clear out the registry Upper/Lower Filters to no success.
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E96C-E325-11CE-BFC1-08002BE10318}
    At that registry key, in the right window, is there, under "Name", either an UpperFilters orLowerFilters value?
    If so, for each of the UpperFilters and/or LowerFilters value, what is listed under "Data"?
    There could be an improper entry at one of these values which may be causing the problem.

  • Mail sounds no longer working

    After upgrading to Mountain Lion, the Mail app (6.0) no longer makes sounds for checking, sending, or receiving email messages.  Sounds are enabled in both Mail preferences as well as the mail section of Notifications.  Sounds elsewhere still work, just not in Mail.  Any thoughts?
    I've already searched for, and found, the various threads about activities Mail being curtailed (no spinning wheels for example).  I can think of no good reason to remove visual/audio feedback from an application (or make it configurable).

    Certainly.  This is something that has been around in Mac's for a very long time, but this Apple KB will tell you what to do.  Very simple:
    http://support.apple.com/kb/PH4405
    I've found since my post that I still occasionally lose sound, but quitting and restarting the Mail app has been sufficient; no need to reset the PRAM anymore.

  • Mail Sounds No Longer Work on iPhone 4.

    The sounds for mail, incoming or outgoing, no longer work on my iPhone 4 (4.3.3).  All it does is vibrate even though that is set to Off.   All the other feature settings are set to ON. I have checked all the sounds and they work, they just don't work with the Mail any more.  This is a MobileMe IMAP account.  I tried re-setting everything without deleting data and that made no difference.  The sounds worked perfectly up until a week or so ago.  Any ideas on how to have them function again?  In addition, when I connect the iPhone to my iMac (Snow Leopard 10.6.7) the phone also vibrates.  This is a new feature as well.  Any chance a setting in iTunes might have caused this, and, if so, how to remedy it.
    Thanks!

    Problem solved.  No further action.

  • Sounds no longer working on iPhone 4

    Hello,
    So a few days ago I dropped my iPhone 4. I'm not 100% sure but I think that is when my sound stopped working. The speakers are working fine, I can hear music and things like that. None of the phone sounds such as clicking when lock/unlocked, keyboard clicks etc are working. When I press the + and - volume buttons the icon does not appear, same as when i mute/unmute it. No sounds, nothing appears. Also, when I receive incoming calls the ringer no longer works.
    I have tried cleaning with toothbrush, restarting, restoring, blowing in the phone, etc.
    Any help or advice would be greatly appreciated.
    I do not have insurance on my phone (I know, I know) but I was in the process of buying a house and moving when they did the switch from mobileprotect to att&t so I apparently missed it and it was too late :/

    I have no doubt that this is a hardware issue, probably caused by the drop as you said. By restarting and restoring without success, you have basically ruled out a software issue. All you can do now is pay $149 for an out-of-warranty replacement, or try to find one elsewhere for cheaper.

  • BEWARE....Sound No Longer Works Since 2.2 Update

    ....not sure what the heck is going on, but, since upgrading to v 2.2 tonight, my speaker no longer works. No music, no movies....I hope this lil sucka rings when I get a phone call. THAT would be really f 'd. I've checked my settings and everything looks fine. Any suggestions? Anyone else having this problem?

    when I flick my silent switch on no sound comes from applications like iSleep or any other music type apps
    This might be a new bug... Or it may be by design.
    Also if silent switch is off and music is playing, once the screen timesout (mine set to 1 min) then the music again cuts off!!!
    This has been reported on a number of threads, but it should not affect the iPod App that comes with the phone. Is that what you are seeing, or are these other app-store apps that are going silent.???
    (Those app-store apps may need an update from their vendors according to one post).

  • Sound no longer working in 10.5.2

    I've installed 10.5.2 on my PowerBook G4 15" 1.67GHz, and now, sound output no longer works. The "clicks" of the volume change don't work and neither does music playing in iTunes.
    Any ideas?

    Sorry - mistakenly assumed you would have tried that
    LN

  • G62-348NR laptop sound no longer works after installing Firefox4.

    I'm not that computer savvy.  I have no problem doing as much as I can with as much help as I can get.  When looking online for help I usually look for a chat feature.  Maybe I missed it here but I could not find one.  I am good with step by step at a kindergarten level.   
    I'm working off Windows 7, 64-bit.  I have been using Firefox for about 4-5 years because a co-worker suggested it.  He was my go-to "computer geek".  And I say computer geek with much love and respect because I just don't have the computer mentality.  I update when Firefox prompts me to.  I updated to Firefox 4 recently.  After the update was complete I no longer had sound.  I would open the speaker icon on the taksbar to adjust the sound and all seemed in working order.  You could see the graphics of the adjustment.  But still there was no sound at all.  I went to the forums on Firefox and others had the same problem so I reverted back to Firefox 3.16.  Still no sound.  I have now exhausted my very limited computer "smarts".  I want my sound back please.  If there is any further information you need from me please let me know.  Thank you to anyone who can help me resolve this issue.   

    I have also attempted to clear out the registry Upper/Lower Filters to no success.
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E96C-E325-11CE-BFC1-08002BE10318}
    At that registry key, in the right window, is there, under "Name", either an UpperFilters orLowerFilters value?
    If so, for each of the UpperFilters and/or LowerFilters value, what is listed under "Data"?
    There could be an improper entry at one of these values which may be causing the problem.

  • Why is sound no longer working with MBA?

    The top right sound icon is no longer available eventhough system preferences has shown volume in menu bar ticked. In systems preferences, the sound is on mute and cannot remove the mute so there is no sound. In output devices, no output device is available. This is also for input devices which means I can no longer listen to iTunes or use skype.
    Can anyone please help? this is a major cause of pain:(

    My MBA had no sound for a while, there were no hardware to choose/select in the system preference nor in About this MAC option.
    I've tried everything possible (other then sending it in for repairs) to restore the sound.
    I've tried all of the options suggested in forums etc.
    1. Reset the NVRAM = no success
    2. Reset the SMC (System Management Controller) = No Success
    1. MacBook Air
    A. If the MacBook Air is on, turn it off.
    B. Connect the power adaptor to a working power source.
    C. On the MacBook Air keyboard, press (left) Shift-Control-Option along with the power button once. Note: You must use the keys on the left side of the MacBook Air keyboard.
    D. Wait 5 seconds and press the power button to start the MacBook Air.
    3. Ran Apple Hardware Diagnostics = No problems found.
    Well long story short. I had order a hard shell cover for my MBA. During the process of snapping on my cover, my sound came back! I couldn't believe it, I thought it was from something other than the MBA. I realize during the process of putting on the shell cover, I had to apply pressure at specific points on my MBA. I applied pressure to each location where the cover had a snap lever.
    I believe this pressure may have push in the cabling / pins for the sound card. Since then I have not loss my sound capabilities.
    I thought it might have been a fluke. Therefore I shut the MBA down and restarted it and I heard the startup sound. I did this several times to ensure it was working properly.
    So far it has been two weeks and sound still works!
    What do you have to loose? Try applying pressure (not too hard though) on the sides of the MBA, along the left and right sides of the monitor and the left and right of the keyboard. It may or may not work, but it is worth a try before sending the MBA in for repairs.
    Good luck and I hope it works for those who are having sound problems with their MBA.
    Regards,
    I Am Webhead

  • After updating my IPAD The sounds no longer work.

    IPad no longer has sound after updating to  new version.

    You have system sounds muted. Read my boilerplate about this issue.
    System sounds can be muted and controlled two different ways. The screen lock rotation can be controlled in the same manner as well.
    Settings>General>Use Side Switch to: Mute System sounds. If this option is selected, the switch on the side of the iPad above the volume rocker will mute system sounds.
    If you choose Lock Screen Rotation, then the switch locks the screen. If the screen is locked, you will see a lock icon in the upper right corner next to the battery indicator gauge.
    If you have the side switch set to lock screen rotation then the system sound control is in the control center if you are running iOS 7 Or iOS 8, Swipe up from the bottom of the screen to get to control center . Tap on the bell icon and system sounds will return.
    If you have the side switch set to mute system sounds, then the screen lock can be accessed in the same manner as described above.
    This support article from Apple explains how the side switch works.
    http://support.apple.com/kb/HT4085

Maybe you are looking for

  • XSLT Mapping: how to add one day to TimeStamp

    Hello Experts, My requirement is to add one day to current timestamp. Used $TimeSent to get the currenttimestamp. In Expired field, the need to add one day say Created= 2011-03-30T20:29:13Z        Expired = 2011-03-31T20:29:13Z      <xsl:param name="

  • 32-bit chroot failed to start

    I was going about the process to set up the 32-bit chroot so I could use Adobe Acrobat on my system, but systemctl failed to start the service. Output of "systemctl status arch32.service" is as follows: Loaded: loaded (/etc/systemd/system/arch32.serv

  • Mini with dual monitors

    Hi, I'd like to set up a mini using two monitors, both VGA , and both running different resolutions and different apps. Can this be done? Thanks, Carl

  • ITunes Home sharing unavailable in Mountain Lion

    iTunes Home sharing isn't working in ML. Mac Pro 2x2.93 quad core (3.2009) and Mac Mini (12.2009). On Mac pro I don't see the Mini Library on the left, on Mini I see the Pro Library but is impossible to see the content. I had no problems with Lion. I

  • Xquery evaluation

    I'm trying to execute the xquery function 'GuidsReferencingTo' (code is below) and getting this error ''Error: It is an error for the context item to be undefined when using it [err:XPDY0002], <query>:42:58'. The error happens in the function 'GuidCh