After playing System Sound, no other sounds anymore.

Hi,
I'm using KDE4 and this is my problem:
Whenever i use an application with sound (chromium. smplayer, ...) and there's a system sound, the sound of the application disappears and i have to restart the application to get the sound back on. Can somebody help me? I followed all archlinux wiki's but no success. At the moment, i have installed alsa-utils, alsa-oss, and i use xine as a backend.
I don't know what informations are useful so please ask, if you need any.
Greetings

Thanks for your reply. I tried both. No success. When i followed the pulse-wiki i even got an error during boot.
The whole thing is really annoying because i followed the install wiki and did nothing wrong. But it doesn't wanna work.
I think the problem is with phonon. Any ideas?

Similar Messages

  • Transmit FTP - Mini won't play system sounds

    In Transmit FTP 3.5.3 (latest version), you can choose to play a "system sound" upon successful transfers. You can choose any of the Apple system sounds from a drop down menu, from within the preferences of Trasmit.
    The sound was working fine, but now I can't seem to get the sounds to work. If I open the preferences and choose a sound, any sound, but say Basso, it will select it, and then when I close preferences, and come back, the sound will be changed back to none.
    The sound was working fine the other day, and I haven't changed anything. Is there a corrupt sound plist file or something somewhere? I reinstalled Transmit, deleted all plist files for it, and still not sound.
    Can anyone else confirm trouble with the sound for transfers, or is it just me, and what can I do to my mini to get it back to work. I'm using the Core Duo mini.
    Thanks,
    Bryan

    Hi KL archeo,
    If you are only having issues with audio when playing videos (i.e. Music player appears to be fine), and only through the headphone jack (internal speaker appears to be fine), then you may want to try backing up all your data in iTunes, doing a full factory restore, then testing to see if the issue persists before restoring your data back. You may find the following article helpful:
    Use iTunes to restore your iOS device to factory settings
    http://support.apple.com/kb/ht1414
    Regards,
    - Brenden

  • [SOLVED]XMMS stops playing when KDE plays a system sound!

    Well the subject says it all... if KDE reports an error or something... and plays a sound... XMMS stops playing... it's really annoying...
    I use ALSA for the sound server and for XMMS output... never had these problems on other distros...
    Last edited by shockware (2007-09-05 17:28:38)

    I assume you are using ARTS for kde sounds ?
    Try setting the auto-suspend delay to 0 , Control center > sound and multimedia > sound system , general tab
    If that doesn't help, disable the sound system.
    In order to get kde to play system sounds without ARTS :
    Control center > sound and multimedia > system notifications > player settings > use an external player
    the play command from the sox package works very well.

  • Play 2 sounds one after the other

    Hello. I have 2 sound files - each is 0.5[Sec]. I have a function the gets a string that represents 1's and 0's. I try to play the 2 sound file in according to its state: 1 or 0. But - only the first sound file is played. Where am I wrong? 
    public void PlayString(string sb)
                for (int i = 0; i < sb.Length; i++)
                    if (sb[i] == '1' && state == MediaState.Stopped)
                        myMedia.Source = new Uri("/SoundsFolder/450Hz.wav", UriKind.RelativeOrAbsolute);
                        myMedia.Play();
                    else if (sb[i] == '0' && state == MediaState.Stopped)
                        myMedia.Source = new Uri("/SoundsFolder/850Hz.wav", UriKind.RelativeOrAbsolute);
                        myMedia.Play();
                    myMedia.Stop();

    Hi Rob, as you can see my experience in not wide enough but I appreciate that you and your friends are wasting your time, trying to answer my "silly" questions. :) thanks again.
    Now, as you wrote above the loop realy "freezes" the UI and tht is bad. I'll post my MainPage.Xaml.Cs : 
    As I said, I've to operate the
    CurrentStateChanged  event but because the loop nothing seemed to work and 
    now I got stuck. Thanks a lot Rob
    (This is a SilverLight app)
    namespace PhoneApp2
    public partial class MainPage : PhoneApplicationPage
    // Constructor
    public MainPage()
    InitializeComponent();
    private void myClick(object sender, RoutedEventArgs e)
    myTextBlock.Text = GetBits(myTextBox.Text);
    SendString(myTextBlock.Text);
    public string GetBits(string input)//Convert string to 1's & 0's
    StringBuilder sb = new StringBuilder();
    foreach (byte b in Encoding.Unicode.GetBytes(input))
    sb.Append(Convert.ToString(b, 2));
    return sb.ToString();
    public void SendString(string sb)
    myMedia.Source = new Uri("/SoundsFolder/15k.wav", UriKind.RelativeOrAbsolute);
    myMedia2.Source = new Uri("/SoundsFolder/16k.wav", UriKind.RelativeOrAbsolute);
    for (int i = 0; i < sb.Length; i++)
    if (sb[i] == '1')
    myMedia.Play();
    System.Threading.Thread.Sleep(10);
    else if (sb[i] == '0')
    myMedia2.Play();
    System.Threading.Thread.Sleep(10);
    myMedia.Stop();
    myMedia2.Stop();
    private void myRstBtn(object sender, RoutedEventArgs e)
    myMedia.Stop();
    myMedia2.Stop();
    myTextBlock.Text = "";
    myTextBox.Text = "";
    private void my_CurrentStateChange(object sender, RoutedEventArgs e)
    //??? I tried here lot of weird functions but it not seems to come inside.
    The MainPage.Xaml is ike that: 
    <phone:PhoneApplicationPage
    x:Class="PhoneApp2.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
    xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d"
    FontFamily="{StaticResource PhoneFontFamilyNormal}"
    FontSize="{StaticResource PhoneFontSizeNormal}"
    Foreground="{StaticResource PhoneForegroundBrush}"
    SupportedOrientations="Portrait" Orientation="Portrait"
    shell:SystemTray.IsVisible="True">
    <!--LayoutRoot is the root grid where all page content is placed-->
    <Grid x:Name="LayoutRoot" Background="Transparent">
    <Grid.RowDefinitions>
    <RowDefinition Height="Auto"/>
    <RowDefinition Height="*"/>
    </Grid.RowDefinitions>
    <!-- LOCALIZATION NOTE:
    To localize the displayed strings copy their values to appropriately named
    keys in the app's neutral language resource file (AppResources.resx) then
    replace the hard-coded text value between the attributes' quotation marks
    with the binding clause whose path points to that string name.
    For example:
    Text="{Binding Path=LocalizedResources.ApplicationTitle, Source={StaticResource LocalizedStrings}}"
    This binding points to the template's string resource named "ApplicationTitle".
    Adding supported languages in the Project Properties tab will create a
    new resx file per language that can carry the translated values of your
    UI strings. The binding in these examples will cause the value of the
    attributes to be drawn from the .resx file that matches the
    CurrentUICulture of the app at run time.
    -->
    <!--TitlePanel contains the name of the application and page title-->
    <StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,28">
    <TextBlock Style="{StaticResource PhoneTextNormalStyle}" Margin="12,0">
    <Run Text="My "/>
    <LineBreak/>
    <Run Text="Project"/>
    </TextBlock>
    <TextBlock Text="Project" Margin="9,-7,0,0" Style="{StaticResource PhoneTextTitle1Style}"/>
    </StackPanel>
    <!--ContentPanel - place additional content here-->
    <Grid x:Name="ContentPanel" Grid.Row="1" Margin="0,0,24,0">
    <MediaElement x:Name="myMedia" HorizontalAlignment="Left" Height="50" Margin="121,532,0,0" VerticalAlignment="Top" Width="100" CurrentStateChanged="my_CurrentStateChange" />
    <Button x:Name="myBtn" Content="Send" HorizontalAlignment="Left" Margin="344,0,0,0" VerticalAlignment="Top" Click="myClick"/>
    <TextBox x:Name="myTextBox" InputScope="Chat" HorizontalAlignment="Left" Height="72" Margin="6,0,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="335"/>
    <TextBlock x:Name="myTextBlock" HorizontalAlignment="Left" Margin="23,77,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Height="400" Width="406"/>
    <MediaElement x:Name="myMedia2" HorizontalAlignment="Left" Height="50" Margin="260,532,0,0" VerticalAlignment="Top" Width="100" CurrentStateChanged="my_CurrentStateChange" />
    <Button x:Name="myRst" Content="Reset" HorizontalAlignment="Left" Margin="10,518,0,0" VerticalAlignment="Top" Click="myRstBtn"/>
    </Grid>
    <!--Uncomment to see an alignment grid to help ensure your controls are
    aligned on common boundaries. The image has a top margin of -32px to
    account for the System Tray. Set this to 0 (or remove the margin altogether)
    if the System Tray is hidden.
    Before shipping remove this XAML and the image itself.-->
    <!--<Image Source="/Assets/AlignmentGrid.png" VerticalAlignment="Top" Height="800" Width="480" Margin="0,-32,0,0" Grid.Row="0" Grid.RowSpan="2" IsHitTestVisible="False" />-->
    </Grid>
    </phone:PhoneApplicationPage>

  • Lag when system sounds play on Retina MacBook Pro

    I have a problem on my Retina Macbook Pro (Mid 2012, running on 10.9 Mavericks) that has persisted for quite some time.
    Essentially the problem is that whenever an application plays a system sound, the application lags for a few seconds. However, this comes and goes.
    For an example of what I mean, the lag happens when I make the following actions:
    - Deleting a file in Finder (Trash sound should play)
    - Using a 'find' prompt in an app like Chrome, Xcode, TextEdit, and entering a string that cannot be found. That is, the lag occurs when I type the character that causes no result to be found. (Beep should play)
    - Pressing 'delete' (backspace) in any app's text field with no text present (Beep should play)
    - If I go to System Preferences -> Sound, and select a new 'alert sound' in the Sound Effects tab, the lag occurs and the Console prints "System Preferences[52828]: Error 268435460 setting AlertSound"
    While my computer is in 'problem' mode, every single app is guaranteed to lag when these events happen.
    But as I said, the problem comes and goes. It first happened after I had to reinstall one day. I think I screwed something up with preferences, permissions and such, because it took a while for me to fix everything up. But I don't think I quite fixed everything, because this problem started to occur ever since then.
    The problem will appear for days or weeks at a time and then disappear for weeks. Just now I'm posting this thread because it had actually gone away for months, and just reappeared today. Nothing that I have found can explicitly start or stop this problem from occurring, it's seemingly random.
    Does anybody have any idea why this would occur, and what can be done to fix it other than a complete clean reinstall?
    Thanks!

    Sorry wrong post to this thread.
    Now the right post.
    No OS X can not use all 8GBs of RAM when the Windows Virtual Machine is running. As long as the Win VM is up and running it take all the RAM you allocated to it. So if you allocated 2GBs of RAM to the VM OS X can only use the other 6GBs. As for the CPUs OS X can use all the cores and or Virtual core as all current Intel CPUs show as double the physical number of cores. So if you have a Dual Core i5 it will look like you have 4 cores. It's done with HyperThreading.

  • Seperate itunes from other system sounds

    I want to make iTunes play music through
    one interface, and system sounds come out
    someplace else.
    How do I do this?
    I have built in speakers, a firewire audio card,
    and optical spdif connections available.
    I want my Itunes to go through either the firewire
    or optical outputs, and have system beeps go
    through the built in speaker.
    I can't seem to get this to work. I've tried
    the audio system preference panel, and the audio
    Midi setup application. I'm sure I'm missing something
    stupid.
    Is there anyway to have itunes sound go though
    one interface, and all other sound go through
    a different interface? (I think you can do this with an airport express, but, I don't have one of those)

    Maybe Detour can do what you want.
    It's freeware now and not supported anymore, but it should work on systems with Mac OS 10.2 - 10.4 according to the information here,
    M
    17' iMac fp 800 MHz 768 MB RAM   Mac OS X (10.3.9)   Several ext. HD (backup and data)

  • Safari playing youtube sounds after leaving youtube

    I recently upgraded to IOS Lion. I have an iMac 1.83GHz intel Core 2 Duo with 2 GB of RAM. All software is up to date, as is adobe flash.
    What has happened is when I play youtube videos in Safari, when I navigate away from youtube, the sound from the last video keeps playing. This continues to happen after I have rebooted the whole system. Right now, I'm using Firefox, which functions fine. This also suggests that it is not the fault of adobe flash.
    The only way I can stop it is to wipe the cache after playing any flash video. Please advise if you can.
    Regards,
    Rich

    Any chance you have Click2Flash (Safari Extension) installed?
    If so, ensure you have the latest version.

  • T410 - Sound card stopped working after Lenovo System Update

    hi all!
    yesterday I performed a system update trough the ThinkVantage System Update 3, I chose a complete update (even the BIOS).
    After the update, the sound card is not working anymore: everything in the control panel looks fine, volume is up and all's connected, but no sound is coming out, with the exception of the skype system sound when starting/quitting the application...
    No system restore is possible (it looks disabled by our IT dept), updated the drivers via windows update, but no help.
    Any clue?
    Thanks in advance!
    Riccardo
    Solved!
    Go to Solution.

    Remove the audio-driver via Controlpanel  - Add/Remove Software
    Download the audio driver from Lenovo
    Install the driver manually
    My home-forum: http://www.thinkpad-forum.de
    Wiki: Deutsches ThinkPad-Wiki English ThinkWiki
    My ThinkPad-Collection

  • Some system sounds stop playing. Alternatives to fix-by-reboot?

    I have noticed that at some random point Leopard (10.5.5) stops playing certain system sounds. These sounds include e.g. thrash can emptying / dropping, sticky keys sounds etc. They don't include however all sounds like the beep that you hear when you alter the volume.
    From activity monitor one can see that coreaudiod is taking up some % from cpu. After killing the coreaudiod the system sounds returned immediately (coreaudiod is restarted right away).
    Previously I have been fixing this with reboot (which obviously work), but I hope this helps somebody to get back their lost system sounds without the need for reboot.
    btw. the coreaudiod should be fixed

    Welcome to Apple Discussions:
    Do you have any 3rd party audio apps such as AirFoil or WireTap installed?
    If you open the Audio MIDI setup and under Audio devices, Default Output, if you see some SoundFlower or other listings, that is usually the problem.
    If you only have "built-in output" then the problem lies elsewhere.
    FYI: There is an entire forum for coreaudio, well hidden
    http://discussions.apple.com/forum.jspa?forumID=734

  • Hissing after playing higher volume sounds.

    I Have a T5400 speaker system and I find that my speakers will start to hiss for a few seconds after playing a loud sound, going from a high pitch to a low pitch. I also find this happens when I do not play sound at all then start to play a song. This goes from a low pitch to a high pitch. Any help would be appreciated! Thanks!
    P.S. I have a Audigy LS sound card that I bought with my speakers.
    Message Edited by BDahl on 03-18-2005 11:43 PM

    Take your iMac to a friend's house and listen to music.
    If problem persists then off to the Apple store.

  • MBP: no system sounds from internal speakers, other sounds fine

    I have a 15" MacBook Pro (early 2011) running OSX Mountain Lion (10.8.2). Recently, I have noticed that it will occasionally stop making system sounds through my internal speakers following wake from sleep.
    Playback from iTunes, Skype, internet etc seems to work fine, as does the volume increase/decrease feedback sound.
    The problem persists until I reboot, then everything is fine again.
    Not sure what's going on here, sometimes it will start playing all of the system sounds that had been saved up, i think it was when i pluged the headphones in. My Mac had been on for several days, and this playback took about 10-15 seconds of dings, beeps, trash empties etc to complete. From that point forward, things are normal.
    It happens quite often and is getting really anoying.
    Upon further testing I noticed that the system sounds stop (no crumple when emptying trash; no sent mail swoosh or iMessage pop).
    I plug the headphones in and my machine makes all the sounds from the past several hours through the headphones. Again, things were fine from this point forward, whether I continued using the headphones, or unplugged and used the internal speakers.
    Any ideas for things I can try to fix this?
    Is this a hardware issue with the headphone jack?
    If so, why would be stuffing up after a sleep/wake event ?

    PRAM  Reset
    http://support.apple.com/kb/ht1379
    Resetting the SMC
    http://support.apple.com/kb/ht3964

  • After upgrading to itunes 7.3.2 system sound does not work

    I recently upgraded my itunes to 7.3.2 and the sound worked for a short time. it then began to cut on and off until ceasing to work completely after a day or so. I have run diagnostics and my computer can produce sound, but not in any programs or any of the system sounds. i reinstalled windows xp and the sound worked, but when i installed itunes again the sound once again stopped completely. i have checked all the drivers, codecs, hardware etc. and they seem to be in order. what is going on?

    I really struggled with this one and my IT people couldn't help.  They suggested that I add my secure corporate website to the Java Exceptions Sites, and use the Java client, but that didn't work.  I tried the CITRIX Native CLient (ICA Client) and that didn't work either.  So, I searched my Mac for all of the instances of CitrixICAClient, or anything else with ICA in it.  I then deleted all of those files, shut down Safari, rebooted my computer and tried again to log into my corporate site using the Native Client conenction option.  I remembered from years ago, that the first time you try to connect using the native client, that Citrix plugin is downloaded.  THat's exactly what happened and I haven't had any more problems.  So apparently, you have to clean up a little adn make sure that any "old" citrix products are removed.

  • Problem:  While creating a project in iDVD, it plays perfectly on the computer, but after burning the sound is off.  Video soundtrack is not in the right place.  HELP!

    Problem:  While creating a project in iDVD, it plays perfectly on the computer, but after burning the sound is off.  Video soundtrack is not in the right place.  HELP!

    Have you checked out the topics at the right in the More Like This section?
    OT

  • Cannot delete the Folder on the desktop after Mavericks update. when I try to delete it, it is asking for logon password, When I give the logon password, it plays a sound of moving to Trash, but the folder still remains on the desktop

    Cannot delete the Folder on the desktop after Mavericks update. when I try to delete it, it is asking for logon password, When I give the logon password, it plays a sound of moving to Trash, but the folder still remains on the desktop
    Please help

    It is a folder which I have created. Name is "SAP".
    I copied some of my office stuff and then deleted the contents inside the folder. But I couldnt delete the folder SAP.
    This is happening after the Mavericks update.

  • [SOLVED] No sound anymore after latest upgrade

    Hello,
    i did the following upgrade
    [2014-01-25 16:06] [PACMAN] starting full system upgrade
    [2014-01-25 17:38] [ALPM-SCRIPTLET] ==> Füge Schlüssel aus archlinux.gpg hinzu ...
    [2014-01-25 17:38] [ALPM-SCRIPTLET] gpg: 3 marginal-needed, 1 complete-needed, PGP Vertrauensmodell
    [2014-01-25 17:38] [ALPM-SCRIPTLET] gpg: Tiefe: 0 gültig: 1 signiert: 5 Vertrauen: 0-, 0q, 0n, 0m, 0f, 1u
    [2014-01-25 17:38] [ALPM-SCRIPTLET] gpg: Tiefe: 1 gültig: 5 signiert: 59 Vertrauen: 0-, 0q, 0n, 5m, 0f, 0u
    [2014-01-25 17:38] [ALPM-SCRIPTLET] gpg: Tiefe: 2 gültig: 59 signiert: 4 Vertrauen: 59-, 0q, 0n, 0m, 0f, 0u
    [2014-01-25 17:38] [ALPM-SCRIPTLET] gpg: nächste "Trust-DB"-Pflichtüberprüfung am 2016-01-22
    [2014-01-25 17:38] [ALPM-SCRIPTLET] ==> Signiere die vertrauenswürdigen Schlüssel im Schlüsselbund lokal ...
    [2014-01-25 17:38] [ALPM-SCRIPTLET] -> Signiere Schlüssel 0E8B644079F599DFC1DDC3973348882F6AC6A4C2 lokal ...
    [2014-01-25 17:38] [ALPM-SCRIPTLET] -> Signiere Schlüssel 684148BB25B49E986A4944C55184252D824B18E8 lokal ...
    [2014-01-25 17:38] [ALPM-SCRIPTLET] -> Signiere Schlüssel 44D4A033AC140143927397D47EFD567D4C7EA887 lokal ...
    [2014-01-25 17:38] [ALPM-SCRIPTLET] -> Signiere Schlüssel 27FFC4769E19F096D41D9265A04F9397CDFD6BB0 lokal ...
    [2014-01-25 17:38] [ALPM-SCRIPTLET] -> Signiere Schlüssel AB19265E5D7D20687D303246BA1DFB64FFF979E7 lokal ...
    [2014-01-25 17:38] [ALPM-SCRIPTLET] ==> Importiere die Vertrauenswerte des Benutzers ...
    [2014-01-25 17:38] [ALPM-SCRIPTLET] ==> Mache widerrufene Schlüssel im Schlüsselbund unbrauchbar ...
    [2014-01-25 17:38] [ALPM-SCRIPTLET] -> Mache Schlüssel F5A361A3A13554B85E57DDDAAF7EF7873CFD4BB6 unbrauchbar ...
    [2014-01-25 17:38] [ALPM-SCRIPTLET] -> Mache Schlüssel 7FA647CD89891DEDC060287BB9113D1ED21E1A55 unbrauchbar ...
    [2014-01-25 17:38] [ALPM-SCRIPTLET] -> Mache Schlüssel BC1FBE4D2826A0B51E47ED62E2539214C6C11350 unbrauchbar ...
    [2014-01-25 17:38] [ALPM-SCRIPTLET] -> Mache Schlüssel 4A8B17E20B88ACA61860009B5CED81B7C2E5C0D2 unbrauchbar ...
    [2014-01-25 17:38] [ALPM-SCRIPTLET] -> Mache Schlüssel 63F395DE2D6398BBE458F281F2DBB4931985A992 unbrauchbar ...
    [2014-01-25 17:38] [ALPM-SCRIPTLET] -> Mache Schlüssel 0B20CA1931F5DA3A70D0F8D2EA6836E1AB441196 unbrauchbar ...
    [2014-01-25 17:38] [ALPM-SCRIPTLET] -> Mache Schlüssel 8F76BEEA0289F9E1D3E229C05F946DED983D4366 unbrauchbar ...
    [2014-01-25 17:38] [ALPM-SCRIPTLET] -> Mache Schlüssel 66BD74A036D522F51DD70A3C7F2A16726521E06D unbrauchbar ...
    [2014-01-25 17:38] [ALPM-SCRIPTLET] -> Mache Schlüssel 81D7F8241DB38BC759C80FCE3A726C6170E80477 unbrauchbar ...
    [2014-01-25 17:38] [ALPM-SCRIPTLET] -> Mache Schlüssel E7210A59715F6940CF9A4E36A001876699AD6E84 unbrauchbar ...
    [2014-01-25 17:38] [ALPM-SCRIPTLET] ==> Aktualisiere Trust-Datenbank ...
    [2014-01-25 17:38] [ALPM-SCRIPTLET] gpg: nächste "Trust-DB"-Pflichtüberprüfung am 2016-01-22
    [2014-01-25 17:38] [PACMAN] upgraded archlinux-keyring (20140108-1 -> 20140124-1)
    [2014-01-25 17:38] [PACMAN] upgraded libdrm (2.4.51-1 -> 2.4.52-1)
    [2014-01-25 17:38] [PACMAN] upgraded wayland (1.3.0-1 -> 1.4.0-1)
    [2014-01-25 17:38] [PACMAN] upgraded libdbus (1.6.18-3 -> 1.8.0-1)
    [2014-01-25 17:38] [PACMAN] upgraded dbus (1.6.18-3 -> 1.8.0-1)
    [2014-01-25 17:38] [PACMAN] upgraded libgcrypt (1.5.3-1 -> 1.6.0-2)
    [2014-01-25 17:38] [PACMAN] upgraded systemd (208-3 -> 208-10)
    [2014-01-25 17:38] [PACMAN] upgraded llvm-libs (3.3-1 -> 3.4-1)
    [2014-01-25 17:38] [PACMAN] upgraded mesa (10.0.1-2 -> 10.0.2-1)
    [2014-01-25 17:38] [PACMAN] upgraded mesa-libgl (10.0.1-2 -> 10.0.2-1)
    [2014-01-25 17:38] [PACMAN] upgraded ati-dri (10.0.1-2 -> 10.0.2-1)
    [2014-01-25 17:38] [PACMAN] upgraded bluez (5.13-1 -> 5.14-1)
    [2014-01-25 17:38] [PACMAN] upgraded xdg-utils (1.1.0.git20130520-1 -> 1.1.0.git20140109-1)
    [2014-01-25 17:38] [PACMAN] upgraded chromium (31.0.1650.63-1 -> 32.0.1700.77-1)
    [2014-01-25 17:38] [PACMAN] upgraded gdk-pixbuf2 (2.30.2-1 -> 2.30.3-1)
    [2014-01-25 17:38] [PACMAN] upgraded cogl (1.16.0-3 -> 1.16.2-1)
    [2014-01-25 17:38] [PACMAN] upgraded clutter (1.16.2-1 -> 1.16.4-1)
    [2014-01-25 17:38] [PACMAN] upgraded device-mapper (2.02.104-1 -> 2.02.105-1)
    [2014-01-25 17:38] [PACMAN] upgraded cryptsetup (1.6.3-1 -> 1.6.3-2)
    [2014-01-25 17:38] [PACMAN] upgraded curl (7.34.0-2 -> 7.34.0-3)
    [2014-01-25 17:38] [PACMAN] upgraded cython (0.19.2-1 -> 0.20-1)
    [2014-01-25 17:38] [PACMAN] upgraded pth (2.0.7-4 -> 2.0.7-5)
    [2014-01-25 17:38] [PACMAN] upgraded dirmngr (1.1.1-1 -> 1.1.1-2)
    [2014-01-25 17:38] [PACMAN] upgraded gnutls (3.2.8-1 -> 3.2.9-1)
    [2014-01-25 17:38] [PACMAN] upgraded libvorbis (1.3.3-1 -> 1.3.4-1)
    [2014-01-25 17:38] [PACMAN] upgraded ffmpeg (1:2.1.1-3 -> 1:2.1.3-1)
    [2014-01-25 17:38] [PACMAN] upgraded gcr (3.10.1-1 -> 3.10.1-2)
    [2014-01-25 17:38] [PACMAN] upgraded gdbm (1.10-3 -> 1.11-1)
    [2014-01-25 17:38] [PACMAN] upgraded gedit (3.10.3-1 -> 3.10.4-1)
    [2014-01-25 17:38] [PACMAN] upgraded gettext (0.18.3.1-2 -> 0.18.3.2-1)
    [2014-01-25 17:38] [PACMAN] upgraded libcups (1.7.0-2 -> 1.7.1-3)
    [2014-01-25 17:38] [PACMAN] installed libpaper (1.1.24-7)
    [2014-01-25 17:38] [PACMAN] upgraded ghostscript (9.10-1 -> 9.10-3)
    [2014-01-25 17:38] [PACMAN] upgraded glamor-egl (0.5.1-1 -> 0.5.1.r258-1)
    [2014-01-25 17:38] [PACMAN] upgraded gnome-chess (3.10.2-2 -> 3.10.3-1)
    [2014-01-25 17:38] [PACMAN] upgraded gnome-desktop (1:3.10.1-2 -> 1:3.10.2-1)
    [2014-01-25 17:38] [PACMAN] upgraded gnome-keyring (3.10.1-1 -> 3.10.1-2)
    [2014-01-25 17:38] [PACMAN] upgraded gnome-online-miners (3.10.2-1 -> 3.10.3-1)
    [2014-01-25 17:38] [PACMAN] upgraded libsecret (0.16-1 -> 0.16-2)
    [2014-01-25 17:38] [PACMAN] upgraded mutter (3.10.2-2 -> 3.10.3-1)
    [2014-01-25 17:38] [PACMAN] upgraded gnome-shell (3.10.2.1-4 -> 3.10.3-1)
    [2014-01-25 17:38] [PACMAN] upgraded gnupg (2.0.22-1 -> 2.0.22-2)
    [2014-01-25 17:38] [PACMAN] upgraded grilo-plugins (0.2.9-2 -> 0.2.9-3)
    [2014-01-25 17:38] [PACMAN] upgraded gstreamer0.10-ugly (0.10.19-8 -> 0.10.19-9)
    [2014-01-25 17:38] [PACMAN] upgraded libcdio (0.90-2 -> 0.92-1)
    [2014-01-25 17:38] [PACMAN] upgraded gstreamer0.10-ugly-plugins (0.10.19-8 -> 0.10.19-9)
    [2014-01-25 17:38] [PACMAN] upgraded gtk-vnc (0.5.3-1 -> 0.5.3-3)
    [2014-01-25 17:38] [PACMAN] upgraded libcdio-paranoia (10.2+0.90+1-1 -> 10.2+0.90+1-2)
    [2014-01-25 17:38] [PACMAN] upgraded gvfs (1.18.3-1 -> 1.18.3-3)
    [2014-01-25 17:38] [PACMAN] upgraded python-dbus-common (1.2.0-1 -> 1.2.0-2)
    [2014-01-25 17:38] [PACMAN] upgraded python2-dbus (1.2.0-1 -> 1.2.0-2)
    [2014-01-25 17:38] [PACMAN] upgraded libibus (1.5.4-3 -> 1.5.5-1)
    [2014-01-25 17:38] [PACMAN] upgraded ibus (1.5.4-3 -> 1.5.5-1)
    [2014-01-25 17:38] [PACMAN] upgraded inetutils (1.9.1.341-2 -> 1.9.2-1)
    [2014-01-25 17:38] [PACMAN] upgraded iptables (1.4.20-1 -> 1.4.21-1)
    [2014-01-25 17:38] [PACMAN] upgraded iproute2 (3.11.0-1 -> 3.12.0-1)
    [2014-01-25 17:38] [PACMAN] upgraded isl (0.12.1-2 -> 0.12.2-1)
    [2014-01-25 17:38] [PACMAN] upgraded jack (0.121.3-7 -> 0.124.1-1)
    [2014-01-25 17:38] [PACMAN] upgraded lib32-dbus (1.6.18-1 -> 1.8.0-1)
    [2014-01-25 17:38] [PACMAN] upgraded lib32-gettext (0.18.3.1-1 -> 0.18.3.2-1)
    [2014-01-25 17:38] [PACMAN] upgraded lib32-libcap (2.22-2 -> 2.24-1)
    [2014-01-25 17:38] [PACMAN] upgraded lib32-libdrm (2.4.51-1 -> 2.4.52-1)
    [2014-01-25 17:38] [PACMAN] upgraded lib32-libgcrypt (1.5.3-1 -> 1.6.0-1)
    [2014-01-25 17:38] [PACMAN] upgraded lib32-llvm-libs (3.3-1 -> 3.4-1)
    [2014-01-25 17:38] [PACMAN] upgraded lib32-systemd (208-1 -> 208-2)
    [2014-01-25 17:38] [PACMAN] upgraded lib32-mesa (10.0.1-1 -> 10.0.2-1)
    [2014-01-25 17:38] [PACMAN] upgraded lib32-mesa-libgl (10.0.1-1 -> 10.0.2-1)
    [2014-01-25 17:38] [PACMAN] upgraded libxslt (1.1.28-2 -> 1.1.28-3)
    [2014-01-25 17:38] [PACMAN] upgraded libgda (5.2.1-1 -> 5.2.1-2)
    [2014-01-25 17:38] [PACMAN] upgraded libgnome-keyring (3.10.1-1 -> 3.10.1-2)
    [2014-01-25 17:38] [PACMAN] upgraded libraw (0.15.4-3 -> 0.16.0-1)
    [2014-01-25 17:38] [PACMAN] upgraded rasqal (1:0.9.30-3 -> 1:0.9.30-4)
    [2014-01-25 17:38] [PACMAN] upgraded redland (1:1.0.16-2 -> 1:1.0.17-1)
    [2014-01-25 17:38] [PACMAN] upgraded libreoffice-common (4.1.4-1 -> 4.1.4-3)
    [2014-01-25 17:38] [PACMAN] upgraded libreoffice-base (4.1.4-1 -> 4.1.4-3)
    [2014-01-25 17:38] [PACMAN] upgraded libreoffice-calc (4.1.4-1 -> 4.1.4-3)
    [2014-01-25 17:38] [PACMAN] upgraded libreoffice-draw (4.1.4-1 -> 4.1.4-3)
    [2014-01-25 17:38] [PACMAN] upgraded libreoffice-gnome (4.1.4-1 -> 4.1.4-3)
    [2014-01-25 17:38] [PACMAN] upgraded libreoffice-impress (4.1.4-1 -> 4.1.4-3)
    [2014-01-25 17:38] [PACMAN] upgraded libreoffice-math (4.1.4-1 -> 4.1.4-3)
    [2014-01-25 17:38] [PACMAN] upgraded libreoffice-writer (4.1.4-1 -> 4.1.4-3)
    [2014-01-25 17:38] [PACMAN] upgraded libwbclient (4.1.3-1 -> 4.1.4-1)
    [2014-01-25 17:38] [PACMAN] upgraded linux-firmware (20131013.7d0c7a8-1 -> 20140123.418320b-1)
    [2014-01-25 17:38] [ALPM-SCRIPTLET] >>> Updating module dependencies. Please wait ...
    [2014-01-25 17:38] [ALPM-SCRIPTLET] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2014-01-25 17:38] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'default'
    [2014-01-25 17:38] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
    [2014-01-25 17:38] [ALPM-SCRIPTLET] ==> Starting build: 3.12.8-1-ARCH
    [2014-01-25 17:38] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2014-01-25 17:38] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2014-01-25 17:38] [ALPM-SCRIPTLET] -> Running build hook: [autodetect]
    [2014-01-25 17:38] [ALPM-SCRIPTLET] -> Running build hook: [modconf]
    [2014-01-25 17:38] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2014-01-25 17:38] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2014-01-25 17:38] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2014-01-25 17:38] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
    [2014-01-25 17:38] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2014-01-25 17:38] [ALPM-SCRIPTLET] ==> Creating gzip initcpio image: /boot/initramfs-linux.img
    [2014-01-25 17:38] [ALPM-SCRIPTLET] ==> Image generation successful
    [2014-01-25 17:38] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'fallback'
    [2014-01-25 17:38] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
    [2014-01-25 17:38] [ALPM-SCRIPTLET] ==> Starting build: 3.12.8-1-ARCH
    [2014-01-25 17:38] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2014-01-25 17:38] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2014-01-25 17:38] [ALPM-SCRIPTLET] -> Running build hook: [modconf]
    [2014-01-25 17:38] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2014-01-25 17:38] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: aic94xx
    [2014-01-25 17:38] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: smsmdtv
    [2014-01-25 17:38] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2014-01-25 17:38] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2014-01-25 17:38] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
    [2014-01-25 17:38] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2014-01-25 17:38] [ALPM-SCRIPTLET] ==> Creating gzip initcpio image: /boot/initramfs-linux-fallback.img
    [2014-01-25 17:38] [ALPM-SCRIPTLET] ==> Image generation successful
    [2014-01-25 17:38] [PACMAN] upgraded linux (3.12.7-1 -> 3.12.8-1)
    [2014-01-25 17:38] [PACMAN] upgraded lvm2 (2.02.104-1 -> 2.02.105-1)
    [2014-01-25 17:38] [PACMAN] upgraded man-pages (3.55-1 -> 3.56-1)
    [2014-01-25 17:38] [PACMAN] upgraded pcre (8.34-1 -> 8.34-2)
    [2014-01-25 17:38] [PACMAN] upgraded perl (5.18.1-1 -> 5.18.2-2)
    [2014-01-25 17:38] [PACMAN] upgraded procps-ng (3.3.9-1 -> 3.3.9-2)
    [2014-01-25 17:38] [PACMAN] upgraded python-dbus (1.2.0-1 -> 1.2.0-2)
    [2014-01-25 17:38] [PACMAN] upgraded s-nail (14.5.1-1 -> 14.5.2-1)
    [2014-01-25 17:39] [PACMAN] upgraded webkitgtk (2.2.3-1 -> 2.2.4-1)
    [2014-01-25 17:39] [PACMAN] upgraded shotwell (0.15.1-1 -> 0.15.1-2)
    [2014-01-25 17:39] [PACMAN] upgraded smbclient (4.1.3-1 -> 4.1.4-1)
    [2014-01-25 17:39] [PACMAN] upgraded sudo (1.8.8-1 -> 1.8.9.p4-1)
    [2014-01-25 17:39] [PACMAN] upgraded systemd-sysvcompat (208-3 -> 208-10)
    [2014-01-25 17:39] [PACMAN] upgraded totem-plparser (3.10.0-3 -> 3.10.0-4)
    [2014-01-25 17:39] [PACMAN] upgraded vino (3.10.1-1 -> 3.10.1-2)
    [2014-01-25 17:39] [ALPM-SCRIPTLET] In order to use the new version, reload all virtualbox modules manually.
    [2014-01-25 17:39] [PACMAN] upgraded virtualbox-host-modules (4.3.6-3 -> 4.3.6-4)
    [2014-01-25 17:39] [PACMAN] upgraded virtualbox (4.3.6-2 -> 4.3.6-3)
    [2014-01-25 17:39] [PACMAN] upgraded vlc (2.1.2-2 -> 2.1.2-3)
    [2014-01-25 17:39] [PACMAN] upgraded wine (1.7.10-1 -> 1.7.11-1)
    [2014-01-25 17:39] [PACMAN] upgraded xextproto (7.2.1-1 -> 7.3.0-1)
    [2014-01-25 17:39] [PACMAN] upgraded xf86-input-evdev (2.8.2-1 -> 2.8.2-2)
    [2014-01-25 17:39] [PACMAN] upgraded xf86-video-ati (1:7.2.0-1 -> 1:7.2.0-2)
    [2014-01-25 17:39] [PACMAN] upgraded xorg-server-common (1.14.5-2 -> 1.15.0-5)
    [2014-01-25 17:39] [PACMAN] installed libxshmfence (1.1-1)
    [2014-01-25 17:39] [PACMAN] upgraded xorg-server (1.14.5-2 -> 1.15.0-5)
    [2014-01-25 17:39] [PACMAN] upgraded yelp (3.10.1-1 -> 3.10.1-2)
    [2014-01-25 17:39] [PACMAN] upgraded youtube-dl (2014.01.17.2-1 -> 2014.01.23.4-1)
    And dont have any sound anymore, nowhere. PulseAudio is just ignoring my sound-card completely and KDE/GNOME System settings tell me that i do not even have any soundcard
    Alsamixer detects the soundcard fine and if i unmute the soundcard there, it works. But its not really comfortable to change the volume with Alsamixer. Also i have no ability to change between HDMI and Analog.
    Any idea what could have cause this? As you can see in the logs, there havent been any major kernel update nor pulseaudio update.
    This is the Soundcard: Audio device: Advanced Micro Devices, Inc. [AMD/ATI] SBx00 Azalia (Intel HDA)
    Kernel Module is snd_hda_intel which is loaded and working
    Seems like Pulseaudio is not running at all, it also does not start with the message "E: [pulseaudio] core-util.c: Home directory not accessible: Permission denied" which is not true
    Last edited by Vamp898 (2014-01-26 15:29:22)

    Ok, found out it was true.
    Seems like whatever reason i have to find out reset some files (not all) to root, so i was no longer the owner of some random files for whatever reason.
    Works now.

Maybe you are looking for