[Touch-packages] [Bug 455779] Re: SB Audigy: Bad audio quality when told to use all 5.1 channels on emu10k1 cards
Thank you for reporting this bug to Ubuntu. Ubuntu 9.10 (karmic) reached end-of-life on April 30, 2011. Ubuntu 12.04 (precise) reached end-of-life on April 28, 2017. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/455779 Title: SB Audigy: Bad audio quality when told to use all 5.1 channels on emu10k1 cards Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio *Everything* that is played through PulseAudio gains a high-pitched ringing tone. It sounds more or less like bad AM radio, but with bass added. I haven't a clue how to fix it so that it works properly. PulseAudio has not worked out of the box on my system for any Ubuntu release in which it has been present, and for the Karmic+1 cycle, it needs to be either *actually* fixed, or removed entirely: this is frankly getting quite ridiculous. PA is the source for a lot of bugs that can't be properly described, cannot be adequately troubleshooted, and it is apparently so difficult to fix that it hasn't properly worked since it was created. I cannot pretend to understand how to fix PA myself, and I'm a relatively technical user with a relatively basic setup, who just wants to listen to some bloody music without having to try to figure out how the audio subsystem is broken in *this* release. ProblemType: Bug Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: mbt3741 F pulseaudio /dev/snd/timer: mbt3741 f pulseaudio Card0.Amixer.info: Card hw:0 'Live'/'SB Live! 5.1 [SB0060] (rev.7, serial:0x80611102) at 0xdc00, irq 19' Mixer name : 'SigmaTel STAC9708,11' Components : 'AC97a:83847608' Controls : 224 Simple ctrls : 45 Date: Mon Oct 19 16:06:29 2009 DistroRelease: Ubuntu 9.10 NonfreeKernelModules: nvidia Package: pulseaudio 1:0.9.19-0ubuntu3 ProcEnviron: LANG=en_US.UTF-8 SHELL=/bin/zsh SourcePackage: pulseaudio Uname: Linux 2.6.31.3-bfs303 x86_64 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/455779/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1688663] Re: udev 97-hid2hci.rules missing usb id for logitech dinovo 2
Interesting. Will look into this. ** Changed in: bluez (Ubuntu) Assignee: (unassigned) => Konrad Zapałowicz (kzapalowicz) ** Tags added: bluez-desktop -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to bluez in Ubuntu. https://bugs.launchpad.net/bugs/1688663 Title: udev 97-hid2hci.rules missing usb id for logitech dinovo 2 Status in bluez package in Ubuntu: New Bug description: Trying to install kubuntu 16.04.2 (Xenial Xerus) today, the Logitech dinovo 2 bluetooth keyboard and mouse didn't work, nor in live cd nor after being installed using another keyboard and mouse. In /lib/udev/rules.d/97-hid2hci.rules there are two lines for Logitech devices: # Logitech devices KERNEL=="hiddev*", ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c70[345abce]|c71[3bc]", \ RUN+="hid2hci --method=logitech-hid --devpath=%p" # Logitech, Inc. diNovo Edge Keyboard KERNEL=="hidraw*", ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c714", \ RUN+="hid2hci --method=logitech-hid --devpath=%p" lsusb shows in my computer: Bus 001 Device 006: ID 046d:c704 Logitech, Inc. diNovo Wireless Desktop The id is almost equal (c714 <> c704). After adding a new line with the missing id, the keyboard and mouse started to work: # Logitech, Inc. diNovo 2 KERNEL=="hidraw*", ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c704", \ RUN+="hid2hci --method=logitech-hid --devpath=%p" I've also followed these other bugs to find out the file that I needed to modify and that my keyboard needs hidraw instead of hiddev: https://bugs.launchpad.net/ubuntu/+source/udev/+bug/872940 https://bugs.launchpad.net/ubuntu/+source/linux-source-2.6.22/+bug/123920 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1688663/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1651923] Re: apt https method decodes redirect locations and sends them to the destination undecoded.
I'm still having this issue. Has the fix been pushed out yet? I'm using Xubuntu 16.04 LTS 64-bit. -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to apt in Ubuntu. https://bugs.launchpad.net/bugs/1651923 Title: apt https method decodes redirect locations and sends them to the destination undecoded. Status in apt package in Ubuntu: Fix Released Status in apt source package in Xenial: Fix Released Status in apt source package in Yakkety: Fix Released Bug description: [Impact] Downloads via HTTPS fail if the URL contains a space (before yakkety only if there is no redirect from a previous space-free https URL). This breaks packages like ttf-mscorefonts-installer and various third party hosters. [Test case] Install/Upgrade apt-transport-https, that's where the fix is. Check that /usr/lib/apt/apt-helper download-file http://kxstudio.linuxaudio.org/repo/pool/free/ardour4_4.7.0-1kxstudio1_i386.deb test.deb can successfully download the file (or at least start downloading it) and does not fail early with a 505 HTTP version not supported error message. This problem does not occur with that file on xenial, as it first redirects to an https URI without a space which then redirects to an HTTPS uri with a space (http w/o space -> https w/o space -> https w/ space). In xenial, https->https redirects where handled internally by curl. Another test (applicable to xenial) is to install ttf-mscorefonts- installer. [Regression potential] The added code is: Uri.Path = QuoteString(Uri.Path, "+~ "); Some servers might not like + or ~ being quoted. We use the same quoting call for the http method too, though, so it seems highly unlikely to cause an issue. [Original bug report] Distributor ID: Ubuntu Description: Ubuntu 16.10 Release: 16.10 Codename: yakkety apt version 1.3.3 (also tried 1.4-beta2 .deb, same results) When trying to install a package hosted on s3 from the kxstudio repo, the download fails with an HTTP error: nico@nico-lenovo-ubuntu:~/Downloads$ sudo apt-get install wineasio-amd64 Reading package lists... Done Building dependency tree Reading state information... Done The following additional packages will be installed: wine1.6-amd64 The following NEW packages will be installed wine1.6-amd64 wineasio-amd64 0 to upgrade, 2 to newly install, 0 to remove and 1 not to upgrade. Need to get 30.9 kB/32.6 kB of archives. After this operation, 184 kB of additional disk space will be used. Do you want to continue? [Y/n] y Err:1 http://kxstudio.linuxaudio.org/repo stable/free amd64 wineasio-amd64 amd64 0.9.0+git20110613-2kxstudio3 505 HTTP Version not supported E: Failed to fetch https://github-cloud.s3.amazonaws.com/releases/39372848/0f048802-2fb5-11e5-9d8c-907ec7b97c46.deb?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAISTNZFOVBIJMK3TQ/20161222/us-east-1/s3/aws4_request&X-Amz-Date=20161222T022041Z&X-Amz-Expires=300&X-Amz-Signature=750f9b2ee076dcb8ae6992cae911f43208b3eec41976362cebf694e3c72b7aef&X-Amz-SignedHeaders=host&actor_id=0&response-content-disposition=attachment; filename=wineasio-amd64_0.9.0.git20110613-2kxstudio3_amd64.deb&response-content-type=application/octet-stream 505 HTTP Version not supported E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing? Error allegedly not present in Ubuntu 14.04 and 16.04 More details in these forum posts: https://github.com/KXStudio/Repository/issues/73#issuecomment-268649503 https://www.linuxmusicians.com/viewtopic.php?t=16056 https://www.drupal.org/node/2324991 (clues on root cause) ProblemType: Bug DistroRelease: Ubuntu 16.10 Package: apt 1.3.3 ProcVersionSignature: Ubuntu 4.8.0-30.32-lowlatency 4.8.6 Uname: Linux 4.8.0-30-lowlatency x86_64 ApportVersion: 2.20.3-0ubuntu8.2 Architecture: amd64 CurrentDesktop: X-Cinnamon Date: Thu Dec 22 02:31:47 2016 InstallationDate: Installed on 2016-10-20 (62 days ago) InstallationMedia: Ubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.2) SourcePackage: apt UpgradeStatus: No upgrade log present (probably fresh install) To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/apt/+bug/1651923/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1688575] Re: Segmentation fault on a slave slapd (sync replication with kerberos authentication)
Hi Ryan, thanks, I'll try to apply the patch by myself. Is libldap the only package to be patched? -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to openldap in Ubuntu. https://bugs.launchpad.net/bugs/1688575 Title: Segmentation fault on a slave slapd (sync replication with kerberos authentication) Status in openldap: Fix Committed Status in openldap package in Ubuntu: New Bug description: I have a slapd problem on a freshly installed 16.04 machine: slapd[17107]: segfault at 1a ip 7f3c12c79f55 sp 7f3c03c2d080 error 4 in libsasl2.so.2.0.25[7f3c12c72000+19000] I'm using the server as Slave LDAP-Server and sync replication with kerberos authentication. The service either starts and runs successfully or it fails with segmentation fault or 100% CPU. Maybe an useful info, I'm replicating two databases. When I deactivate syncrepl for one of them (doesn't matter which one) the problem is not occuring. Linux xxx 4.4.0-75-generic #96-Ubuntu SMP Thu Apr 20 09:56:33 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux slapd 2.4.42+dfsg-2ubuntu3.1 libsasl2-2:amd64 2.1.26.dfsg1-14build1 libsasl2-modules:amd64 2.1.26.dfsg1-14build1 libsasl2-modules-gssapi-mit:amd64 2.1.26.dfsg1-14build1 GDB debug: Starting program: /usr/sbin/slapd -h "ldap:/// ldaps:/// ldapi:///" -u openldap -g openldap -f /etc/ldap/slapd.conf -d 256 [Thread debugging using libthread_db enabled] Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1". 590c82ab @(#) $OpenLDAP: slapd (Ubuntu) (May 11 2016 16:12:05) $ buildd@lgw01-10:/build/openldap-mF7Kfq/openldap-2.4.42+dfsg/debian/build/servers/slapd 590c82ab slapd starting [New Thread 0x7f2e96b7b700 (LWP 42139)] [New Thread 0x7f2e9637a700 (LWP 42140)] [New Thread 0x7f2e95b79700 (LWP 42141)] [New Thread 0x7f2e95378700 (LWP 42142)] [New Thread 0x7f2e94b77700 (LWP 42143)] 590c82ba slap_client_connect: URI=ldap://xxx ldap_sasl_interactive_bind_s failed (-6) 590c82ba do_syncrepl: rid=132 rc -6 retrying (9 retries left) Thread 4 "slapd" received signal SIGSEGV, Segmentation fault. [Switching to Thread 0x7f2e95b79700 (LWP 42141)] 0x7f2ea53035b5 in sasl_client_add_plugin () from /usr/lib/x86_64-linux-gnu/libsasl2.so.2 (gdb) thr apply all bt Thread 6 (Thread 0x7f2e94b77700 (LWP 42143)): #0 pthread_cond_wait@@GLIBC_2.3.2 () at ../sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185 #1 0x7f2ea59463f3 in ?? () from /usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2 #2 0x7f2ea487c6ba in start_thread (arg=0x7f2e94b77700) at pthread_create.c:333 #3 0x7f2ea45b282d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:109 Thread 5 (Thread 0x7f2e95378700 (LWP 42142)): #0 pthread_cond_wait@@GLIBC_2.3.2 () at ../sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185 #1 0x7f2ea59463f3 in ?? () from /usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2 #2 0x7f2ea487c6ba in start_thread (arg=0x7f2e95378700) at pthread_create.c:333 #3 0x7f2ea45b282d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:109 Thread 4 (Thread 0x7f2e95b79700 (LWP 42141)): #0 0x7f2ea53035b5 in sasl_client_add_plugin () from /usr/lib/x86_64-linux-gnu/libsasl2.so.2 #1 0x7f2ea530f250 in ?? () from /usr/lib/x86_64-linux-gnu/libsasl2.so.2 #2 0x7f2ea5303d69 in sasl_client_init () from /usr/lib/x86_64-linux-gnu/libsasl2.so.2 #3 0x7f2ea594da6c in ldap_int_sasl_init () from /usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2 #4 0x7f2ea594db2c in ldap_int_sasl_open () from /usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2 #5 0x7f2ea594e2d4 in ldap_int_sasl_bind () from /usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2 #6 0x7f2ea5951828 in ldap_sasl_interactive_bind () from /usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2 #7 0x7f2ea5951a4e in ldap_sasl_interactive_bind_s () from /usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2 #8 0x561fbc556db4 in slap_client_connect (ldp=0x561fbe1e9f68, sb=0x561fbe1e9d40) at ../../../../servers/slapd/config.c:2063 #9 0x561fbc5c699d in do_syncrep1 (si=0x561fbe1e9d10, op=0x7f2e95b787b0) at ../../../../servers/slapd/syncrepl.c:618 #10 do_syncrepl (ctx=, arg=0x561fbe1e5620) at ../../../../servers/slapd/syncrepl.c:1548 #11 0x7f2ea59463a2 in ?? () from /usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2 #12 0x7f2ea487c6ba in start_thread (arg=0x7f2e95b79700) at pthread_create.c:333 #13 0x7f2ea45b282d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:109 Thread 3 (Thread 0x7f2e9637a700 (LWP 42140)): ---Type to continue, or q to quit--- #0 pthread_cond_wait@@GLIBC_2.3.2 () at ../sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185 #1 0x7f2ea59463f3 in ?? () from /usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2 #2 0x7f2ea487c6ba in start_thread (arg=0x7f2e9637a700) at pthread_create.c:333 #
[Touch-packages] [Bug 1537528] Re: byobu-config segfault with screen backend
Experiencing the same issue on Ubuntu Server 16.04.2 LTS with byobu 5.106. Within byobu (with screen backend) it segfaults: kernel: [69271.057862] python3[8757]: segfault at 0 ip 7faa6ca75982 sp 7fff6e7f7c20 error 4 in libc-2.23.so[7faa6c9f2000+1bf000] Outside via byobu-config it works. -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to newt in Ubuntu. https://bugs.launchpad.net/bugs/1537528 Title: byobu-config segfault with screen backend Status in byobu package in Ubuntu: In Progress Status in newt package in Ubuntu: Confirmed Status in byobu package in Debian: New Bug description: When running byobu with the screen backend byobu-config segfaults when trying to open it by pressing F9. Steps to reproduce. 1. Configure byobu to use screen for the backend 2. Press F9 to open the configuration menu 3. The console flashes then returns to your shell window. Running byobu-config manually within a byobu screen session shows it's segfaulting. It does not crash running it outside of screen. byobu: Installed: 5.101-0ubuntu1~wily Candidate: 5.101-0ubuntu1~wily Version table: *** 5.101-0ubuntu1~wily 0 500 http://ppa.launchpad.net/byobu/ppa/ubuntu/ wily/main amd64 Packages 100 /var/lib/dpkg/status 5.97-0ubuntu1 0 500 http://mirror.us.leaseweb.net/ubuntu/ wily/main amd64 Packages To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/byobu/+bug/1537528/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 458581] Re: Audio lag in AdobeFlash (games, not videos)
Thank you for reporting this bug to Ubuntu. Ubuntu 9.10 (karmic) reached end-of-life on April 30, 2011. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete ** Package changed: archlinux => mir ** No longer affects: mir ** Package changed: baltix => mir ** No longer affects: mir -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/458581 Title: Audio lag in AdobeFlash (games, not videos) Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio Audio lags behind graphics in flash games (e.g., http://jamlegend.com/), but not in flash video players (e.g., YouTube). I first noticed this in Intrepid, but I took a long time to think of PulseAudio as the culprit. Seems that the lag is a bit more than half second. I'm not sure how widespread it is, but although I mainly tested with JamLegend, a few other flashgames were out of sync too. The problem went away after removing PulseAudio and installing OSSv4 instead (tried this on Ubuntu 8.10). Possibly, it is just a matter of tweaking PulseAudio configuration, but I did not manage work it out. -- $ lsb_release -rd Description: Ubuntu 9.10 Release: 9.10 $ apt-cache policy pulseaudio pulseaudio: Installed: 1:0.9.19-0ubuntu3 Candidate: 1:0.9.19-0ubuntu3 Version table: *** 1:0.9.19-0ubuntu3 0 500 http://br.archive.ubuntu.com karmic/main Packages 100 /var/lib/dpkg/status To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/458581/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1688663] Re: udev 97-hid2hci.rules missing usb id for logitech dinovo 2
@jesusdf you have written that: "the Logitech dinovo 2 bluetooth keyboard and mouse didn't work, nor in live cd nor after being installed using another keyboard and mouse." I wonder - were you able to pair it or that did not work too? -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to bluez in Ubuntu. https://bugs.launchpad.net/bugs/1688663 Title: udev 97-hid2hci.rules missing usb id for logitech dinovo 2 Status in bluez package in Ubuntu: New Bug description: Trying to install kubuntu 16.04.2 (Xenial Xerus) today, the Logitech dinovo 2 bluetooth keyboard and mouse didn't work, nor in live cd nor after being installed using another keyboard and mouse. In /lib/udev/rules.d/97-hid2hci.rules there are two lines for Logitech devices: # Logitech devices KERNEL=="hiddev*", ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c70[345abce]|c71[3bc]", \ RUN+="hid2hci --method=logitech-hid --devpath=%p" # Logitech, Inc. diNovo Edge Keyboard KERNEL=="hidraw*", ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c714", \ RUN+="hid2hci --method=logitech-hid --devpath=%p" lsusb shows in my computer: Bus 001 Device 006: ID 046d:c704 Logitech, Inc. diNovo Wireless Desktop The id is almost equal (c714 <> c704). After adding a new line with the missing id, the keyboard and mouse started to work: # Logitech, Inc. diNovo 2 KERNEL=="hidraw*", ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c704", \ RUN+="hid2hci --method=logitech-hid --devpath=%p" I've also followed these other bugs to find out the file that I needed to modify and that my keyboard needs hidraw instead of hiddev: https://bugs.launchpad.net/ubuntu/+source/udev/+bug/872940 https://bugs.launchpad.net/ubuntu/+source/linux-source-2.6.22/+bug/123920 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1688663/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 460351] Re: Sound capture (microphone) works on LiveCD, but don't work after installation
Thank you for reporting this bug to Ubuntu. Ubuntu 9.10 (karmic) reached end-of-life on April 30, 2011. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/460351 Title: Sound capture (microphone) works on LiveCD, but don't work after installation Status in PulseAudio: Unknown Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio Hello! I have started my notebook AcerAspire 5110 with liveCD ubuntu-9.10-rc-desktop-amd64.iso. There was internal and external microphones works. After installation any microphone doesn't work. Sound output works correct internal and external (headphones) at LiveCD and after installation. Sound configuration at LiveCD and after installation is different? ProblemType: Bug Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: leo1553 F pulseaudio /dev/snd/pcmC0D0p: leo1553 F...m pulseaudio Card0.Amixer.info: Card hw:0 'SB'/'HDA ATI SB at 0xf840 irq 16' Mixer name : 'Realtek ALC883' Components : 'HDA:10ec0883,1025009f,0012 HDA:14f12bfa,1025009f,0009' Controls : 23 Simple ctrls : 13 Date: Sun Oct 25 13:23:19 2009 DistroRelease: Ubuntu 9.10 ExecutablePath: /usr/bin/pulseaudio InstallationMedia: Ubuntu 9.10 "Karmic Koala" - Release Candidate amd64 (20091020.3) Package: pulseaudio 1:0.9.19-0ubuntu3 ProcEnviron: LANG=ru_RU.UTF-8 SHELL=/bin/bash ProcVersionSignature: Ubuntu 2.6.31-14.48-generic SourcePackage: pulseaudio Uname: Linux 2.6.31-14-generic x86_64 Workaround: In file /etc/modprobe.d/alsa-base.conf add string: options snd-hda-intel position_fix=1, and restart. To manage notifications about this bug go to: https://bugs.launchpad.net/pulseaudio/+bug/460351/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 459358] Re: stuttering sound on login
Thank you for reporting this bug to Ubuntu. Ubuntu 9.10 (karmic) reached end-of-life on April 30, 2011. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/459358 Title: stuttering sound on login Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: gdm Steps taken: Install Karmik Koala, boot it up, login Symptoms: The soud that plays before and after the login screen stutters, and it may even play twice(not sure about it) ProblemType: Bug Architecture: amd64 Date: Fri Oct 23 21:20:07 2009 DistroRelease: Ubuntu 9.10 Package: gdm 2.28.1-0ubuntu1 ProcEnviron: LANG=hu_HU.UTF-8 SHELL=/bin/bash ProcVersionSignature: Ubuntu 2.6.31-14.48-generic SourcePackage: gdm Uname: Linux 2.6.31-14-generic x86_64 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/459358/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 475852] Re: simultaneous output is unusable
Thank you for reporting this bug to Ubuntu. Ubuntu 9.10 (karmic) reached end-of-life on April 30, 2011. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/475852 Title: simultaneous output is unusable Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio ubuntu 9.10 x86_64, latest updates installed. HDA=Intel sound. rhythmbox plays on "analog output" by default. when switched to "simultaneous output" sound becomes distorted and then disappear. rhythmbox gots completely stalled. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/475852/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 475997] Re: after upgrade to karmic during audio playback a high-frequency whistling can be heard
Thank you for taking the time to report this bug and helping to make Ubuntu better. Please execute the following command only once, as it will automatically gather debugging information, in a terminal: apport-collect 475997 When reporting bugs in the future please use apport by using 'ubuntu- bug' and the name of the package affected. You can learn more about this functionality at https://wiki.ubuntu.com/ReportingBugs. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/475997 Title: after upgrade to karmic during audio playback a high-frequency whistling can be heard Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio with pulseaudio configured for 5.1 sound output there is a high-frequency whistle when playing audio files, independent from the application. when i turn the 5.1 sound output to normal stereo output the whistle is gone. sound onboard: (Mainboard)ALiveSATA2-GLAN (Soundchip)Premium Level HD Audio (ALC888 Audio Codec) with a Creative 5.1 speaker system To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/475997/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 460351] Re: Sound capture (microphone) works on LiveCD, but don't work after installation
** Project changed: pulseaudio => mir ** No longer affects: mir -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/460351 Title: Sound capture (microphone) works on LiveCD, but don't work after installation Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio Hello! I have started my notebook AcerAspire 5110 with liveCD ubuntu-9.10-rc-desktop-amd64.iso. There was internal and external microphones works. After installation any microphone doesn't work. Sound output works correct internal and external (headphones) at LiveCD and after installation. Sound configuration at LiveCD and after installation is different? ProblemType: Bug Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: leo1553 F pulseaudio /dev/snd/pcmC0D0p: leo1553 F...m pulseaudio Card0.Amixer.info: Card hw:0 'SB'/'HDA ATI SB at 0xf840 irq 16' Mixer name : 'Realtek ALC883' Components : 'HDA:10ec0883,1025009f,0012 HDA:14f12bfa,1025009f,0009' Controls : 23 Simple ctrls : 13 Date: Sun Oct 25 13:23:19 2009 DistroRelease: Ubuntu 9.10 ExecutablePath: /usr/bin/pulseaudio InstallationMedia: Ubuntu 9.10 "Karmic Koala" - Release Candidate amd64 (20091020.3) Package: pulseaudio 1:0.9.19-0ubuntu3 ProcEnviron: LANG=ru_RU.UTF-8 SHELL=/bin/bash ProcVersionSignature: Ubuntu 2.6.31-14.48-generic SourcePackage: pulseaudio Uname: Linux 2.6.31-14-generic x86_64 Workaround: In file /etc/modprobe.d/alsa-base.conf add string: options snd-hda-intel position_fix=1, and restart. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/460351/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 460609] Re: Samsung X05: Audio Output via optical spdif distorted due to incorrect sampling rate specified in /etc/pulse/daemon.conf
Thank you for reporting this bug to Ubuntu. Ubuntu 9.10 (karmic) reached end-of-life on April 30, 2011. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/460609 Title: Samsung X05: Audio Output via optical spdif distorted due to incorrect sampling rate specified in /etc/pulse/daemon.conf Status in pulseaudio package in Ubuntu: Incomplete Bug description: When I use the optical spdif out connector, the sound coming out of it is distorted. It sounds a little bit like through a telephone connection or a bad recording with a low bitrate / sampling rate or as if only peaks come through. The output from the internal speakers of the notebook or of headphones sounds normal. When I pull up the slider for the spdif volume, there is no sound from the spdif port. I have to set it to 0% to hear something. This is on Ubuntu 9.10 and was already on Ubuntu 9.04 and maybe before. It once worked, but I'm not sure which version of Ubuntu it was. Hardware didn't change. Since upgrading to 9.10 I can't hear the pc-speaker (e.g. with the command "beep") no matter what I set with alsamixer. I assume it's just a wrong setting for the soundcard (00:1f.5 Multimedia audio controller: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) AC'97 Audio Controller (rev 01)). ProblemType: Bug Architecture: i386 CheckboxCommand: gst_pipeline_test -t 2 'audiotestsrc wave=sine freq=512 ! audioconvert ! audioresample ! gconfaudiosink' CheckboxData: output using optical spdif out is distorted CheckboxTest: playback_auto Date: Sun Oct 25 19:54:12 2009 DistroRelease: Ubuntu 9.10 Package: python-gst0.10 0.10.17-1 ProcEnviron: SHELL=/bin/bash LANG=de_DE.UTF-8 ProcVersionSignature: Ubuntu 2.6.31-14.48-generic SourcePackage: gst0.10-python Tags: checkbox-bug Uname: Linux 2.6.31-14-generic i686 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/460609/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 461087] Re: failed to load "module-esound-protocol-unix"
Thank you for reporting this bug to Ubuntu. Ubuntu 9.10 (karmic) reached end-of-life on April 30, 2011. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/461087 Title: failed to load "module-esound-protocol-unix" Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio I just upgrade to unstable Karmic Koala. Before this upgrade my sound worked fine, but now it doesnt. I'm not sure, whether this is just some sort of misconfiguration or a bug, so maybe you'll have an idea. 1. When I try to start pulseaudio manually by typing it into the terminal, it tells me: E: pid.c: Daemon already running. E: main.c: pa_pid_file_create() failed. 2. /var/log/user.log writes a thousand times something like the following: Oct 24 00:42:34 desktop pulseaudio[11834]: pid.c: Stale PID file, overwriting. Oct 24 15:00:01 desktop pulseaudio[3678]: module-console-kit.c: GetUnixUser() call failed: org.freedesktop.DBus.Error.UnknownMethod: Method "GetUnixUser" with signature "" on interface "org.freedesktop.ConsoleKit.Session" doesn't exist Oct 26 13:37:19 desktop pulseaudio[4057]: pid.c: Stale PID file, overwriting. Oct 26 14:08:57 desktop pulseaudio[6605]: socket-server.c: bind(): Address already in use Oct 26 14:08:57 desktop pulseaudio[6605]: module.c: Failed to load module "module-esound-protocol-unix" (argument: ""): initialization failed. Oct 26 14:08:57 desktop pulseaudio[6605]: main.c: Module load failed. Oct 26 14:08:57 desktop pulseaudio[6605]: main.c: Failed to initialize daemon. Oct 26 14:08:57 desktop pulseaudio[6602]: main.c: Daemon startup failed. Oct 26 14:10:53 desktop pulseaudio[2397]: protocol-esound.c: write(): Broken pipe By the way, I have to run my system with "acpi=off" for being stable, if that might have something to do with this... To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/461087/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 466957] Re: pulseaudio takes 100 % CPU when using 5.1 profile
Thank you for reporting this bug to Ubuntu. Ubuntu 9.10 (karmic) reached end-of-life on April 30, 2011. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/466957 Title: pulseaudio takes 100 % CPU when using 5.1 profile Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio Description: Ubuntu 9.10 Release: 9.10 pulseaudio: Instalovaná verze: 1:0.9.19-0ubuntu4 Kandidát: 1:0.9.19-0ubuntu4 Tabulka verzí: *** 1:0.9.19-0ubuntu4 0 500 http://cz.archive.ubuntu.com karmic/main Packages 100 /var/lib/dpkg/status When I play music, watch films (mpd, mplayer, exaile) pulseaudio in 20 minutes or even in hours takes 95-100 % CPU usage. System is still responding and sound is without changes. I don't have to kill pulseaudio. Stop or pause playing sinks CPU usage to 7 - 9 %. This never happened me in Jaunty Jackalope. I'm using Creative Labs CA0106 Soundblaster. ProblemType: Bug Architecture: i386 Card0.Amixer.info: Card hw:0 'ICH7'/'Intel ICH7 with ALC850 at irq 17' Mixer name : 'Realtek ALC850 rev 0' Components : 'AC97a:414c4790' Controls : 42 Simple ctrls : 27 Card1.Amixer.info: Card hw:1 'CA0106'/'AudigyLS [SB0310] at 0xc880 irq 16' Mixer name : 'CA0106' Components : 'AC97a:83847609' Controls : 35 Simple ctrls : 19 Card2.Amixer.info: Card hw:2 'Camera'/'Camera at usb-:00:1d.0-1, full speed' Mixer name : 'USB Mixer' Components : 'USB046d:08f6' Controls : 3 Simple ctrls : 2 Date: Sat Oct 31 17:05:21 2009 DistroRelease: Ubuntu 9.10 ExecutablePath: /usr/bin/pulseaudio InstallationMedia: Ubuntu 9.10 "Karmic Koala" - Release Candidate i386 (20091020.3) NonfreeKernelModules: nvidia Package: pulseaudio 1:0.9.19-0ubuntu4 ProcEnviron: LANG=cs_CZ.UTF-8 SHELL=/bin/bash ProcVersionSignature: Ubuntu 2.6.31-14.48-generic SourcePackage: pulseaudio Uname: Linux 2.6.31-14-generic i686 mtime.conffile..etc.pulse.daemon.conf: 2009-10-31T14:56:25.918574 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/466957/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 378325] Re: X login screen volume always set to max; crazy loud
"Thank you for reporting this bug to Ubuntu." "Please upgrade to the latest version and re-test." How about you test it? It's simply a case of booting a live CD. The lack of attention to major problem, which cause someone hearing damage if you were unlucky enough to boot whilst wearing earplugs, is lamentable. Assigning this "wishlist" status ensured that it never got attended to despite commenters having identified the problem and provided a very simple fix. Hopeless. -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/378325 Title: X login screen volume always set to max; crazy loud Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: gdm Whenever I boot my laptop from scratch (i.e. not resuming from standy/hibernate), the X/gdm login screen will play a sound effect when it's ready for me to log in. The problem is, this sound effect is always played at the hardware's maximum volume setting (or at least, something insanely loud) which is extremely annoying for other people nearby (and me!) gdm/something should set the volume to some sane level prior to playing this sound. Even better if "gdmsetup" were to allow configuration of the volume. Note, I'm aware of some WARs: * Disable the login sound. Not acceptable: Simply disabling the feature because it's buggy doesn't actually fix the underlying bug. * Plug in headphones, or a dummy jack. Not acceptable: I don't use headphones and hence don't carry them around. I don't want some dummy jack plugged into the side of my laptop, thus changing the laptop's shape (and, I'd have to unplug it after login to use sound) * Various script hacks with "alsactl save/restore". Not acceptable: This feature should "just work" out of the box without my Grandma having to hack at arcane scripts or config files. Note: This issue is visible in Jaunty Jackalope i386 (and presumably all arch's) on either the live CD or an HD-based installation. Note that to fix this on the live CD, a gdmsetup-based volume configuration option wouldn't be useful, because a) it wouldn't solve the issue for the first boot, and b) there's nowhere to store the configuration across reboots (or if there is, it's sufficiently complex that my Grandma couldn't use it) To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/378325/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 475355] Re: Choppy sound on Vortex 2 under Karmic
Thank you for reporting this bug to Ubuntu. Ubuntu 9.10 (karmic) reached end-of-life on April 30, 2011. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: New => Incomplete ** Bug watch removed: ALSA Bug Tracker (discontinued) #4776 https://bugtrack.alsa-project.org/alsa-bug/view.php?id=4776 -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/475355 Title: Choppy sound on Vortex 2 under Karmic Status in linux package in Ubuntu: Invalid Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio Sound in almost in every application is choppy + video playing speed is floating due to sound problems. When sound output switched to another (USB-inserted) card - audio and video became OK. This problem is obviously a pulseaudio problem, because playing some radio through Opera browser has no problems. As I see pulse is not fully used because there is no Opera application in "Sound Preferences"->"Applications" tab when playing radio from browser. Switching to another soundcard in "Sound Preferences" does not affects Opera sound stream - it still outputted from Vortex2, but not from USB-card. And when I "pulseaudio --kill" Opera keeps playing. ProblemType: Bug Architecture: i386 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: dbaskakov 3445 F pulseaudio /dev/snd/pcmC0D0p: dbaskakov 3506 F...m operapluginwrap Card0.Amixer.info: Card hw:0 'au8830'/'Aureal Vortex au8830 at 0x9000 irq 21' Mixer name : 'SigmaTel STAC9704' Components : 'AC97a:83847605' Controls : 45 Simple ctrls : 33 Date: Thu Nov 5 15:40:26 2009 DistroRelease: Ubuntu 9.10 ExecutablePath: /usr/bin/pulseaudio InstallationMedia: Ubuntu 9.10 "Karmic Koala" - Release i386 (20091028.5) Package: pulseaudio 1:0.9.19-0ubuntu4 ProcEnviron: LANGUAGE=en_US.UTF-8 PATH=(custom, user) LANG=en_US.UTF-8 SHELL=/bin/bash ProcVersionSignature: Ubuntu 2.6.31-14.48-generic SourcePackage: pulseaudio Uname: Linux 2.6.31-14-generic i686 mtime.conffile..etc.pulse.daemon.conf: 2009-11-05T12:23:37.042372 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/475355/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 487712] Re: pulseaudio dies several times per day
Thank you for reporting this bug to Ubuntu. Ubuntu 9.10 (karmic) reached end-of-life on April 30, 2011. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/487712 Title: pulseaudio dies several times per day Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio I frequently find that sound suddenly stops when I am using Amarok and I get a message saying that the connection has been broken. Once this has happened, if I then try to make a Skype call, or play a test sound in Skype, Skype will freeze. I say that PulseAudio dies because I assume that it dies and respawns, but I do not know this for certain. I am using Amarok 1.4 from a PPA, as opposed to the version that shipped with Kubuntu Jaunty, but I am using the standard Karmic PulseAudio. One thing I have also noticed is that quite often I try to play a Flash video on the Web and I find that the web player is silent. Only running killall npviewer.bin and starting again brings the sound back. Obviously I suspect this might be connected, but I don't know this for certain. I have not observed any such misbehaviour AFAIR in connection with any other app, ProblemType: Bug Architecture: amd64 ArecordDevices: List of CAPTURE Hardware Devices card 0: Intel [HDA Intel], device 0: CONEXANT Analog [CONEXANT Analog] Subdevices: 1/1 Subdevice #0: subdevice #0 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: robert13725 F pulseaudio robert22350 F kmix Card0.Amixer.info: Card hw:0 'Intel'/'HDA Intel at 0xfe10 irq 17' Mixer name : 'Conexant CX20549 (Venice)' Components : 'HDA:14f15045,17aa20db,00100100' Controls : 18 Simple ctrls : 8 Date: Tue Nov 24 18:07:37 2009 DistroRelease: Ubuntu 9.10 InstallationMedia: Kubuntu 9.10 "Karmic Koala" - Release amd64 (20091027) Package: pulseaudio 1:0.9.19-0ubuntu4 ProcEnviron: LANGUAGE= PATH=(custom, no user) LANG=en_US.UTF-8 SHELL=/bin/bash SourcePackage: pulseaudio Uname: Linux 2.6.31.6-rt19 x86_64 UserAsoundrc: # ALSA library configuration file # Include settings that are under the control of asoundconf(1). # (To disable these settings, comment out this line.) To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/487712/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 483812] Re: Pulseaudio will not route internal/external mic to the speakers/headphones Karmic
Thank you for reporting this bug to Ubuntu. Ubuntu 9.10 (karmic) reached end-of-life on April 30, 2011. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/483812 Title: Pulseaudio will not route internal/external mic to the speakers/headphones Karmic Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio Recording works just fine with both MICs, Skype works fine with no issues at all. what i wanted to do is just route the MIC specially the exteranl MIC to the internal or external speaker by means if when i grap the mic and say Hellewwwo i can hear my voice through the speaker. this had always worked perior to Karmic. i didt tried all Pulseausio tutorials and installed all the extra bells and whistles but there seems no option to route the MIC to the speakers or even sing a Karaoke song. example: this works in windows7 by ticking on the option listen to this device at the MIC preferences To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/483812/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 483045] Re: audio
** Changed in: pulseaudio (Ubuntu) Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/483045 Title: audio Status in pulseaudio package in Ubuntu: Fix Released Bug description: Binary package hint: ubuntuone-client audio crashed without any reasons ProblemType: Bug .home.griachae..cache.ubuntuone.log.oauth.login.log: Ubuntu-One Client Version 1.0.2 wird gestartet Ubuntu-One Client Version 1.0.2 wird gestartet Ubuntu-One Client Version 1.0.2 wird gestartet Ubuntu-One Client Version 1.0.2 wird gestartet .home.griachae..cache.ubuntuone.log.syncdaemon.exceptions.log: .home.griachae..config.ubuntuone.ubuntuone.client.conf: [ubuntuone] bookmarked = True connected = False connect = 0 show_applet = 1 Architecture: amd64 Date: Sun Nov 15 13:15:07 2009 DistroRelease: Ubuntu 9.10 InstallationMedia: Ubuntu 9.10 "Karmic Koala" - Release amd64 (20091027) NonfreeKernelModules: fglrx Package: ubuntuone-client 1.0.2-0ubuntu2 PackageArchitecture: all ProcEnviron: LANG=de_DE.UTF-8 SHELL=/bin/bash ProcVersionSignature: Ubuntu 2.6.31-14.48-generic SourcePackage: ubuntuone-client Uname: Linux 2.6.31-14-generic x86_64 XsessionErrors: (gnome-settings-daemon:2274): GLib-CRITICAL **: g_propagate_error: assertion `src != NULL' failed (nautilus:2518): Eel-CRITICAL **: eel_preferences_get_boolean: assertion `preferences_is_initialized ()' failed (polkit-gnome-authentication-agent-1:2571): GLib-CRITICAL **: g_once_init_leave: assertion `initialization_value != 0' failed To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/483045/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 481213] Re: pulseaudio-module-lirc : NO Notifications on screen
Thank you for reporting this bug to Ubuntu. Ubuntu 9.10 (karmic) reached end-of-life on April 30, 2011. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/481213 Title: pulseaudio-module-lirc : NO Notifications on screen Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: notify-osd I've successfully configured Karmic to change volume via my MCE remote, LIRC. The only missing piece is ON SCREEN NOTIFICATIONS: - When I press volume+ / volume- on keyboard, the notification comes up nicely as it should. OK. - When I press volume+ / volume- on REMOTE, volume goes up/down, but NO notification is shown on screen. BUG. In my opinion, very important piece for those who use Ubuntu as a living room mediacenter. ProblemType: Bug AplayDevices: List of PLAYBACK Hardware Devices card 0: NVidia [HDA NVidia], device 0: ALC1200 Analog [ALC1200 Analog] Subdevices: 1/1 Subdevice #0: subdevice #0 Architecture: i386 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: living 1840 F pulseaudio Card0.Amixer.info: Card hw:0 'NVidia'/'HDA NVidia at 0xefff4000 irq 29' Mixer name : 'Realtek ALC1200' Components : 'HDA:10ec0888,103c2a65,00100101' Controls : 31 Simple ctrls : 19 Date: Thu Nov 12 10:48:38 2009 DistroRelease: Ubuntu 9.10 InstallationMedia: Ubuntu-Netbook-Remix 9.10 "Karmic Koala" - Release i386 (20091028.4) NonfreeKernelModules: nvidia Package: pulseaudio-module-lirc 1:0.9.19-0ubuntu4 ProcEnviron: LANG=it_IT.UTF-8 SHELL=/bin/bash ProcVersionSignature: Ubuntu 2.6.31-15.50-generic SourcePackage: pulseaudio Tags: ubuntu-unr Uname: Linux 2.6.31-15-generic i686 XsessionErrors: (gnome-settings-daemon:1887): GLib-CRITICAL **: g_propagate_error: assertion `src != NULL' failed (gnome-settings-daemon:1887): GLib-CRITICAL **: g_propagate_error: assertion `src != NULL' failed (nautilus:1912): Eel-CRITICAL **: eel_preferences_get_boolean: assertion `preferences_is_initialized ()' failed (polkit-gnome-authentication-agent-1:1940): GLib-CRITICAL **: g_once_init_leave: assertion `initialization_value != 0' failed mtime.conffile..etc.pulse.daemon.conf: 2009-11-12T09:33:55.216262 mtime.conffile..etc.pulse.default.pa: 2009-11-12T10:16:58.051574 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/481213/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 490483] Re: alsa stuttering sound 5.1
Thank you for reporting this bug to Ubuntu. Ubuntu 9.10 (karmic) reached end-of-life on April 30, 2011. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Triaged => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/490483 Title: alsa stuttering sound 5.1 Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio Hi, after new inwstall of Ubuntu Karmic Koala I have noticed several problems with my sound. First, problem of overmodulated sound (buggy setting in sound - also in pavucontrol) mentioned in: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/433237 Daniel T Chen helped me with setting pulseaudio -k && PULSE_NO_SIMD=1 pulseaudio. But I did not get any explanation, why this is happening. In my opinion, this is major bug, and is still not fixed. Am I being punished for buying 5.1 surround? My second problem is stuttering of right front and back channel. After setting PULSE_NO_SIMD (my problem No.1) I got all 6 channels stuttering when overcome certain volume level - so I can not use 5.1 at all. Sound is like blinking (flickering - if it was light and not sound:)). I have tried several modifications in daemon.conf, but no help. I want to add in previous Ubuntu version everything was OK. When using only 2 channels, sounds and volume control is OK. I am not sure but maybe it's has something to to with my MB Asus SLI A8N Deluxe and it's soundcard. Has anybody this problems? Thanks. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/490483/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 378325] Re: X login screen volume always set to max; crazy loud
Peace. Anyone who cares about a bug can update it and stop it from expiring. Unfortunately the Ubuntu and Pulse bug backlogs are so massive that we can't dive into every bug in detail. Automated rules for letting untouched bugs expire need to be used. In more than 99% of cases old bugs like this are abandoned and nobody answers them. So I thank you for caring about the quality of Ubuntu. ** Changed in: pulseaudio (Ubuntu) Status: Incomplete => Confirmed -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/378325 Title: X login screen volume always set to max; crazy loud Status in pulseaudio package in Ubuntu: Confirmed Bug description: Binary package hint: gdm Whenever I boot my laptop from scratch (i.e. not resuming from standy/hibernate), the X/gdm login screen will play a sound effect when it's ready for me to log in. The problem is, this sound effect is always played at the hardware's maximum volume setting (or at least, something insanely loud) which is extremely annoying for other people nearby (and me!) gdm/something should set the volume to some sane level prior to playing this sound. Even better if "gdmsetup" were to allow configuration of the volume. Note, I'm aware of some WARs: * Disable the login sound. Not acceptable: Simply disabling the feature because it's buggy doesn't actually fix the underlying bug. * Plug in headphones, or a dummy jack. Not acceptable: I don't use headphones and hence don't carry them around. I don't want some dummy jack plugged into the side of my laptop, thus changing the laptop's shape (and, I'd have to unplug it after login to use sound) * Various script hacks with "alsactl save/restore". Not acceptable: This feature should "just work" out of the box without my Grandma having to hack at arcane scripts or config files. Note: This issue is visible in Jaunty Jackalope i386 (and presumably all arch's) on either the live CD or an HD-based installation. Note that to fix this on the live CD, a gdmsetup-based volume configuration option wouldn't be useful, because a) it wouldn't solve the issue for the first boot, and b) there's nowhere to store the configuration across reboots (or if there is, it's sufficiently complex that my Grandma couldn't use it) To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/378325/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 518851] Re: pulseaudio crash on assertion failure
Thank you for reporting this bug to Ubuntu. Ubuntu 9.10 (karmic) reached end-of-life on April 30, 2011. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/518851 Title: pulseaudio crash on assertion failure Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio I received an email with a realaudio small attachement with kmail I double click on the attachement and choose to open it with realplayer realplayer opens and starts playing but pulseaudio crashes almost immediately ProblemType: Bug Architecture: i386 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: pascal 3201 F kmix pascal12233 F pulseaudio Card0.Amixer.info: Card hw:0 'Intel'/'HDA Intel at 0xfdff4000 irq 22' Mixer name : 'Realtek ALC888' Components : 'HDA:10ec0888,a0a0062d,0011' Controls : 24 Simple ctrls : 14 Date: Mon Feb 8 15:47:39 2010 DistroRelease: Ubuntu 9.10 InstallationMedia: Kubuntu 9.10 "Karmic Koala" - Release i386 (20091028.5) Package: pulseaudio 1:0.9.19-0ubuntu4.1 ProcEnviron: LANGUAGE= PATH=(custom, user) LANG=fr_FR.UTF-8 SHELL=/bin/bash ProcVersionSignature: Ubuntu 2.6.31-19.56-generic SourcePackage: pulseaudio Uname: Linux 2.6.31-19-generic i686 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/518851/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 515993] Re: Login sound even with disabled/muted internal sound card
Thank you for reporting this bug to Ubuntu. Ubuntu 9.10 (karmic) reached end-of-life on April 30, 2011. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/515993 Title: Login sound even with disabled/muted internal sound card Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: alsa-base In Sound Preferences, I have disabled and muted my internal sound card as I use a headset and simply turn sound back on when required. However, even with no headset connected and the internal sound card disabled and muted, the short drum sound still plays at a reasonable volume from the laptop speakers whenever I start the computer and reach the login screen. I am running Karmic on a Dell Inspiron 6400 with Intel 82801G (ICH7 Family) internal audio. Thanks, James To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/515993/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 496304] Re: Sound's not working
Thank you for reporting this bug to Ubuntu. Ubuntu 9.10 (karmic) reached end-of-life on April 30, 2011. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/496304 Title: Sound's not working Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio Toten sound our moovida sound don't work, I coudn't identify what was missing. ProblemType: Bug Architecture: i386 Date: Sun Dec 13 19:02:30 2009 DistroRelease: Ubuntu 9.10 ExecutablePath: /usr/bin/totem InstallationMedia: Ubuntu 9.10 "Karmic Koala" - Release i386 (20091028.5) Package: pulseaudio 1:0.9.19-0ubuntu4 ProcEnviron: LANGUAGE=pt_BR.UTF-8 LANG=pt_BR.UTF-8 SHELL=/bin/bash ProcVersionSignature: Ubuntu 2.6.31-16.53-generic SourcePackage: pulseaudio Uname: Linux 2.6.31-16-generic i686 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/496304/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 511326] Re: crackling sound after installing audio bluetooth headset
Thank you for reporting this bug to Ubuntu. Ubuntu 9.10 (karmic) reached end-of-life on April 30, 2011. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/511326 Title: crackling sound after installing audio bluetooth headset Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: gdm Ubuntu 9.10 Sound plays fine thru speakers. I connect audio bluetooth -> sound plays fine thru bluetooth headset I disconnect the bluetooth -> no more sound on any choosen device for audio output ProblemType: Package AptOrdering: ubuntu-desktop: Purge indicator-applet-session: Purge indicator-session: Purge gdm-guest-session: Purge gdm: Purge Architecture: i386 Date: Fri Jan 22 19:58:32 2010 DistroRelease: Ubuntu 9.10 ErrorMessage: subprocess installed post-removal script returned error exit status 1 InstallationMedia: Ubuntu 9.10 "Karmic Koala" - Release i386 (20091028.5) Package: gdm (not installed) ProcVersionSignature: Ubuntu 2.6.31-14.48-generic SourcePackage: gdm Title: package gdm (not installed) failed to install/upgrade: subprocess installed post-removal script returned error exit status 1 Uname: Linux 2.6.31-14-generic i686 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/511326/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 496354] Re: amixer doesn't seem to unmute audio
Paul, others, please confirm which Ubuntu releases are still affected. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/496354 Title: amixer doesn't seem to unmute audio Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio When i run amixer -Dhw:0 set 'Master' unmute The volume appears to be unmuted in alsamixer, but the sound is not actually unmuted, and all the GUI tools show the sound is muted. I've attached a log, of the following... pressing the mute button on my keyboard, so the sound is muted. using the unmute command so the sound should be unmuted. playing a sound in pidgin, getting no sound, because the sound is still muted. hitting the mute button on my keyboard again, which actually unmutes the sound. playing a sound in pidgin, and getting sound I've also attached a screenshot, showing the GUI saying the sound is muted, while alsamixer is saying that it isn't. Note that while unmute doesn't work, setting the volume does. amixer -Dhw:0 set 'Master' 100% Works as expected, for example. I'm also affected by #352732, maybe related. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/496354/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 511562] Re: When sound at remote sink, sound doesn't work
Thank you for reporting this bug to Ubuntu. Ubuntu 9.10 (karmic) reached end-of-life on April 30, 2011. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Triaged => Incomplete ** Project changed: pulseaudio => mir ** No longer affects: mir ** Bug watch removed: PulseAudio sound server #786 http://pulseaudio.org/ticket/786 -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/511562 Title: When sound at remote sink, sound doesn't work Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio I'm not sure if this bug is in flashplugin-installer or pulseaudio. Problem: When I use Firefox or Chrome for watching a flash video from Youtube for example, all works good. I then transfer the sound to a remote sink using Sound Preferences > Output > Internal Audio Analog Stereo on myuser@otherhost. After this is done, the flash video halts. This is also true if I restart firefox and start a new video, already having transferred the sound. Sometimes you can see the video taking huge skips forward. For example, on a 3 minute music video, I see 3-4 different frames from different places in the video. The sound is OK though! 100% reproducible and if I transfer the sound back to local speakers the video resumes and plays perfectly. Edit: This doesn't affect just flash, it affects pretty much all applications I can think of. I have narrowed it down to a buffer underrun problem and I can reproduce it by starting a mp3 with rhythmbox, a Xvid video with VLC, a wav-file with aplay etc. ProblemType: Bug Architecture: i386 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: thnov 10738 F pulseaudio Card0.Amixer.info: Card hw:0 'Intel'/'HDA Intel at 0xf910 irq 22' Mixer name : 'Realtek ALC889A' Components : 'HDA:10ec0885,1458a002,00100101' Controls : 43 Simple ctrls : 24 Date: Sat Jan 23 14:17:18 2010 DistroRelease: Ubuntu 9.10 NonfreeKernelModules: nvidia Package: pulseaudio 1:0.9.19-0ubuntu4 ProcEnviron: PATH=(custom, user) LANG=en_DK.UTF-8 SHELL=/bin/bash ProcVersionSignature: Ubuntu 2.6.31-17.54-generic SourcePackage: pulseaudio Uname: Linux 2.6.31-17-generic i686 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/511562/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 502493] Re: Configuring the process priorites of pulseaudio is buggy
Thank you for reporting this bug to Ubuntu. Ubuntu 9.10 (karmic) reached end-of-life on April 30, 2011. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/502493 Title: Configuring the process priorites of pulseaudio is buggy Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio I still have issues with crackling startup sound and occasional stutters in xine. I tried to fix it by reconfiguring pulseaudio. Doing this I think I found several small bugs. I read about the ongoing changes in pulseaudio and rtkit. Some of the bugs might get solved anyway. I opened this bug report to find out if my findings are bugs and that they all get fixed in 10.04. I use Ubuntu 9.10 (Karmic) with pulseaudio 1:0.9.19-0ubuntu4. For my pulseaudio config see bug #265010, comment 12 and 13. Bug A: "high-priority = no" doesn't work. It's always enabled. Bug B: "realtime-scheduling = yes" doesn't work in Karmic, even if log says it does! Bug C: rlimit-nice > 31 is clipped down to 31, which is weird and needless IMHO. To verify bug B, I invoke "chrt -p -v $(ps -C pulseaudio -o pid=)". According to http://pulseaudio.org/wiki/UbuntuBugs bug B is already known, but the misleading log message should be corrected. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/502493/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 497721] Re: Rhythmbox + Lexicon Omega External Soundcard = One has to start playback twice to start playback
Thank you for reporting this bug to Ubuntu. Ubuntu 9.10 (karmic) reached end-of-life on April 30, 2011. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: In Progress => Incomplete ** Changed in: pulseaudio (Ubuntu) Assignee: amyjo (amyjodavis71) => (unassigned) -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/497721 Title: Rhythmbox + Lexicon Omega External Soundcard = One has to start playback twice to start playback Status in pulseaudio package in Ubuntu: Incomplete Status in ubuntuone-client package in Ubuntu: Invalid Bug description: Binary package hint: ubuntuone-client When I try to start playback of a song in Rhythmbox, playback routed to my Lexicon Omega External Soundcard, I have to press play, stop, and play again to get Rhytmbox to start playing the song. This is not a problem when playing through my laptops internal sound card. Sincerely Trond Haram Klykken (I am new to ubuntu. If there is a way to properly format the bug- feedback, please let me know) ProblemType: Bug .home.elektrond..config.ubuntuone.ubuntuone.client.conf: [ubuntuone] bookmarked = True connected = False connect = 2 show_applet = 0 Architecture: i386 Date: Thu Dec 17 12:15:43 2009 DistroRelease: Ubuntu 9.10 InstallationMedia: Ubuntu 9.10 "Karmic Koala" - Release i386 (20091028.5) NonfreeKernelModules: nvidia Package: ubuntuone-client 1.0.2-0ubuntu2 PackageArchitecture: all ProcEnviron: LANG=en_US.UTF-8 SHELL=/bin/bash ProcVersionSignature: Ubuntu 2.6.31-16.53-generic SourcePackage: ubuntuone-client Uname: Linux 2.6.31-16-generic i686 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/497721/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 505428] Re: PulseAudio doesn't automatically use surround profile when available
Thank you for reporting this bug to Ubuntu. Ubuntu 9.10 (karmic) reached end-of-life on April 30, 2011. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/505428 Title: PulseAudio doesn't automatically use surround profile when available Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio ALSA by default in Ubuntu 9.10 duplicates front speakers output to the rear speakers when in stereo mode (so one can attach headphones to the rear output and switch between speakers and headphones easily or use less noisy rear output on SBLive! cards). But PulseAudio doesn't. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/505428/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 492136] Re: Empathy Crashes on Video Call
Thank you for reporting this bug to Ubuntu. Ubuntu 9.10 (karmic) reached end-of-life on April 30, 2011. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Bug watch removed: GNOME Bug Tracker #603795 https://bugzilla.gnome.org/show_bug.cgi?id=603795 -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/492136 Title: Empathy Crashes on Video Call Status in Empathy: Invalid Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: empathy 1) Description: Ubuntu 9.10 Release: 9.10 Gnome-Desktop 2) empathy: Installed: 2.28.1.1-0ubuntu1 Candidate: 2.28.1.1-0ubuntu1 Version table: *** 2.28.1.1-0ubuntu1 0 500 http://es.archive.ubuntu.com karmic-updates/main Packages 100 /var/lib/dpkg/status 2.28.1-1ubuntu1 0 500 http://es.archive.ubuntu.com karmic/main Packages 3) Call windows would appear so I could see/hear user&myself 4) Empathy crashes leaving this error, program trace; user@user:~$ empathy (empathy:12800): tp-fs-DEBUG: GetSessionHandlers replied: (empathy:12800): tp-fs-DEBUG: - session /org/freedesktop/Telepathy/Connection/gabble/jabber/user_40gmail_2ecom_2fTelepathy_2e81b9e9b9/MediaChannel1 (empathy:12800): tp-fs-DEBUG: type rtp (empathy:12800): tp-fs-DEBUG: adding session handler /org/freedesktop/Telepathy/Connection/gabble/jabber/user_40gmail_2ecom_2fTelepathy_2e81b9e9b9/MediaChannel1, type rtp (empathy:12800): tp-fs-DEBUG: calling MediaSessionHandler::Ready (empathy:12800): tp-fs-DEBUG: New stream, stream_id=1, media_type=0, direction=3 (empathy:12800): tp-fs-DEBUG: stream 1 0x86ad140 (audio) get_all_properties_cb: Adding STUN server 209.85.229.126:19302 (empathy:12800): tp-fs-DEBUG: stream 1 0x86ad140 (audio) get_all_properties_cb: Adding relay (udp) 209.85.229.126:19295 Z61D09ju3YDjMae4:p5n1Yn1DXiieqHgN 1 (empathy:12800): tp-fs-DEBUG: stream 1 0x86ad140 (audio) get_all_properties_cb: Adding relay (tcp) 209.85.229.126:19294 Z61D09ju3YDjMae4:p5n1Yn1DXiieqHgN 1 (empathy:12800): tp-fs-DEBUG: stream 1 0x86ad140 (audio) get_all_properties_cb: Adding relay (tls) 209.85.229.126:443 Z61D09ju3YDjMae4:p5n1Yn1DXiieqHgN 1 (empathy:12800): tp-fs-DEBUG: stream 1 0x86ad140 (audio) get_all_properties_cb: Adding relay (udp) 209.85.229.126:19295 H3fLMg0Do24XF9fg:tTAu6BkB8BWbcQvz 2 (empathy:12800): tp-fs-DEBUG: stream 1 0x86ad140 (audio) get_all_properties_cb: Adding relay (tcp) 209.85.229.126:19294 H3fLMg0Do24XF9fg:tTAu6BkB8BWbcQvz 2 (empathy:12800): tp-fs-DEBUG: stream 1 0x86ad140 (audio) get_all_properties_cb: Adding relay (tls) 209.85.229.126:443 H3fLMg0Do24XF9fg:tTAu6BkB8BWbcQvz 2 (empathy:12800): tp-fs-DEBUG: stream 1 0x86ad140 (audio) _tf_stream_try_sending_codecs: called (send_local:1 send_supported:0) (empathy:12800): tp-fs-DEBUG: stream 1 0x86ad140 (audio) _tf_stream_try_sending_codecs: 102: audio SPEEX clock:8000 channels:1 (empathy:12800): tp-fs-DEBUG: stream 1 0x86ad140 (audio) _tf_stream_try_sending_codecs: 103: audio SPEEX clock:16000 channels:1 (empathy:12800): tp-fs-DEBUG: stream 1 0x86ad140 (audio) _tf_stream_try_sending_codecs: 96: audio SIREN clock:16000 channels:0 bitrate=16000 (empathy:12800): tp-fs-DEBUG: stream 1 0x86ad140 (audio) _tf_stream_try_sending_codecs: 0: audio PCMU clock:8000 channels:0 (empathy:12800): tp-fs-DEBUG: stream 1 0x86ad140 (audio) _tf_stream_try_sending_codecs: 8: audio PCMA clock:8000 channels:0 (empathy:12800): tp-fs-DEBUG: stream 1 0x86ad140 (audio) _tf_stream_try_sending_codecs: 3: audio GSM clock:8000 channels:0 (empathy:12800): tp-fs-DEBUG: stream 1 0x86ad140 (audio) _tf_stream_try_sending_codecs: 99: audio telephone-event clock:16000 channels:0 events=0-15 (empathy:12800): tp-fs-DEBUG: stream 1 0x86ad140 (audio) _tf_stream_try_sending_codecs: 100: audio telephone-event clock:8000 channels:0 events=0-15 (empathy:12800): tp-fs-DEBUG: stream 1 0x86ad140 (audio) fs_codecs_to_tp: adding codec SPEEX [102] (empathy:12800): tp-fs-DEBUG: stream 1 0x86ad140 (audio) fs_codecs_to_tp: adding codec SPEEX [103] (empathy:12800): tp-fs-DEBUG: stream 1 0x86ad140 (audio) fs_codecs_to_tp: adding codec SIREN [96] (empathy:12800): tp-fs-DEBUG: stream 1 0x86ad140 (audio) fs_codecs_to_tp: adding codec PCMU [0] (empathy:12800): tp-fs-DEBUG: stream 1 0x86ad140 (audio) fs_codecs_to_tp: adding codec PCMA [8] (empathy:12800): tp-fs-DEBUG: stream 1 0x86ad140 (audio) fs_codecs_to_tp: adding codec GSM [3] (empathy:12800): tp-fs-DEBUG: stream 1 0x86ad140 (audio) fs_codecs_to_tp: adding codec telephone-event [99] (empathy:12800): tp-fs-DEBUG: stream 1 0x86ad140 (audio) fs_codecs_to_tp: adding codec telephone-event [100] (empathy:12800): tp-fs-DEBUG: stream 1 0x86ad140 (aud
[Touch-packages] [Bug 555891] Re: [NFORCE - NVidia CK8S] ALSA test tone not correctly played back
Thank you for reporting this bug to Ubuntu. Ubuntu 10.04 (lucid) reached end-of-life on May 9, 2013. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/555891 Title: [NFORCE - NVidia CK8S] ALSA test tone not correctly played back Status in pulseaudio package in Ubuntu: Incomplete Bug description: I have a surround 5.1 playback problem, but stereo playback works: (1) The sound does not come through continuously, but with crackles and short gaps. (2) The speaker assignment seems wrong (the center channel of an video DVD can be additionally heard on the left front and left rear). ProblemType: Bug DistroRelease: Ubuntu 10.04 Package: alsa-base 1.0.22.1+dfsg-0ubuntu3 ProcVersionSignature: Ubuntu 2.6.32-19.28-generic 2.6.32.10+drm33.1 Uname: Linux 2.6.32-19-generic x86_64 AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21. Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC3: privat 1303 F pulseaudio /dev/snd/controlC0: privat 1303 F pulseaudio /dev/snd/controlC2: privat 1303 F pulseaudio Card0.Amixer.info: Card hw:0 'CK8S'/'NVidia CK8S with ALC850 at irq 20' Mixer name : 'Realtek ALC850 rev 0' Components : 'AC97a:414c4790' Controls : 42 Simple ctrls : 27 Card1.Amixer.info: Card hw:1 'UART'/'MPU-401 UART at 0x300, irq 5' Mixer name : '' Components : '' Controls : 0 Simple ctrls : 0 Card1.Amixer.values: Card2.Amixer.info: Card hw:2 'Bt878'/'Brooktree Bt878 at 0xeeaff000, irq 19' Mixer name : 'Bt87x' Components : '' Controls : 3 Simple ctrls : 5 Card3.Amixer.info: Card hw:3 'U0xeb1a0x2801'/'USB Device 0xeb1a:0x2801 at usb-:00:02.2-1, high speed' Mixer name : 'USB Mixer' Components : 'USBeb1a:2801' Controls : 2 Simple ctrls : 1 Card3.Amixer.values: Simple mixer control 'Line',0 Capabilities: cvolume cvolume-joined cswitch cswitch-joined penum Capture channels: Mono Limits: Capture 0 - 16 Mono: Capture 0 [0%] [0.00dB] [on] Date: Mon Apr 5 19:17:08 2010 InstallationMedia: Ubuntu 10.04 "Lucid Lynx" - Alpha amd64 (20100405) PackageArchitecture: all ProcEnviron: LANG=de_DE.UTF-8 SHELL=/bin/bash SelectedCard: 0 CK8S NFORCE - NVidia CK8S SourcePackage: alsa-driver Symptom: audio Title: [NFORCE - NVidia CK8S] ALSA test tone not correctly played back dmi.bios.date: 02/16/2006 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: 1011.005 dmi.board.name: 'K8N' dmi.board.vendor: ASUSTeK Computer INC. dmi.board.version: Rev 1.xx dmi.chassis.asset.tag: Asset-1234567890 dmi.chassis.type: 3 dmi.chassis.vendor: Chassis Manufacture dmi.chassis.version: Chassis Version dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvr1011.005:bd02/16/2006:svnASUSTekComputerInc.:pnK8N:pvrSystemVersion:rvnASUSTeKComputerINC.:rn'K8N':rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion: dmi.product.name: K8N dmi.product.version: System Version dmi.sys.vendor: ASUSTek Computer Inc. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/555891/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 545854] Re: Pulseaudio should be easier to disable
Thank you for reporting this bug to Ubuntu. Ubuntu 9.10 (karmic) reached end-of-life on April 30, 2011. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/545854 Title: Pulseaudio should be easier to disable Status in pulseaudio package in Ubuntu: Incomplete Bug description: Ubuntu/Karmic || Mint Helena Pulseaudio can not be stopped by deactivating it in the startup manager. If you manage to get it stopped it'll break the system. 1. If I deactivate the PA daemon within the start-up manager. The start-up manager shows PA deactivated though it is still running. This I consider a bug. You can set manually autospawn=no in /etc/pulse/client.conf or by adding a to ~/.pulse/client.conf containing the autospawn=no parameter. This configuration IMO should be done automatically, when disabling the PA daemon in the startup-manager. Easiest would be to set it generally to NO by default. However -- the main issue is that if you manage to stop and disable PA as described above you're catching nasty side effects: 1. Your Gnome Volume Control disappears 2. Your Sound Properties are no longer accessible in preferences. It'll hang up with message: Waiting for sound system to respond. That'll be it. I even made sure - before I switched PA off - that no PA configurations were active in the sound preferences. ( these might be problems with these apps. You'll find posts in the web saying compiling these with disable-pulse will solve the issue - no idea if this are real problem with these apps.) 3. Further if you turn off PA ,care must be taken of a. hardcoded dead PA bodies in e.g. gconf-editor ( gstreamer shows still PA entries) and b. hardcoded alsa configs in /usr/share/pulse/pulse- alsa.conf. This one must be edited to avoid that PA becomes default audio device! I couldn't find a different way to disable it. To me it seems that the PA integration needs a careful review of how it is integrated into the OS. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/545854/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 529853] Re: pulseaudio reports asyncq overrun and ratelimit.c supressed messages
Thank you for reporting this bug to Ubuntu. Ubuntu 11.04 (natty) reached end-of-life on October 28, 2012. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/529853 Title: pulseaudio reports asyncq overrun and ratelimit.c supressed messages Status in pulseaudio package in Ubuntu: Incomplete Status in pulseaudio source package in Lucid: Won't Fix Bug description: Binary package hint: pulseaudio This could be similar to bug 480802, however I didn't see any indication of the asyncq.c overrun messages, so I'm opening a new one. I noticed this while looking into an Xorg crash on Karmic 64bit. In addition to the thousands of lines of ratelimit.c supressed messages, I noticed a few that said this: Feb 28 23:01:45 klaatu pulseaudio[2034]: asyncq.c: q overrun, queuing locally Feb 28 23:01:51 klaatu pulseaudio[2034]: last message repeated 10 times See attached files for hardware specs. This affects pulesaudio. My expectations: 1: eliminate the flooding of syslogd wtih those ratelimit.c messages 2: understand the asyncq.c overrun messages Audio can be somewhat choppy regardless of whether I'm streaming or playing files locally. I normally would expect that of a system running as many apps as I may be running at any given moment, however, on this system: Core i7 Quadcore w/ HT - 16 cores total 4GB ram I would really not expect choppy audio at all unless I was doing something incredibly extreme. ProblemType: Bug AplayDevices: List of PLAYBACK Hardware Devices card 0: Intel [HDA Intel], device 0: STAC92xx Analog [STAC92xx Analog] Subdevices: 1/1 Subdevice #0: subdevice #0 Architecture: amd64 ArecordDevices: List of CAPTURE Hardware Devices card 0: Intel [HDA Intel], device 0: STAC92xx Analog [STAC92xx Analog] Subdevices: 2/2 Subdevice #0: subdevice #0 Subdevice #1: subdevice #1 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: bladernr 12444 F pulseaudio Card0.Amixer.info: Card hw:0 'Intel'/'HDA Intel at 0xf0f2 irq 22' Mixer name : 'IDT 92HD83C1X5' Components : 'HDA:111d7604,102802a2,00100104' Controls : 28 Simple ctrls : 17 CheckboxSubmission: 89874cc6062c150ee1cec9632b63a0a3 CheckboxSystem: 5f30ac82cc48ed91bb5240b61cb4e295 Date: Sun Feb 28 23:34:44 2010 DistroRelease: Ubuntu 9.10 InstallationMedia: Ubuntu 9.10 "Karmic Koala" - Release amd64 (20091027) NonfreeKernelModules: nvidia Package: pulseaudio 1:0.9.19-0ubuntu4.1 ProcEnviron: LANG=en_US.UTF-8 SHELL=/bin/bash ProcVersionSignature: Ubuntu 2.6.31-19.56-generic SourcePackage: pulseaudio Uname: Linux 2.6.31-19-generic x86_64 XsessionErrors: (gnome-settings-daemon:12459): GLib-CRITICAL **: g_propagate_error: assertion `src != NULL' failed (gnome-settings-daemon:12459): GLib-CRITICAL **: g_propagate_error: assertion `src != NULL' failed (polkit-gnome-authentication-agent-1:12574): GLib-CRITICAL **: g_once_init_leave: assertion `initialization_value != 0' failed (nautilus:12555): Eel-CRITICAL **: eel_preferences_get_boolean: assertion `preferences_is_initialized ()' failed (firefox:12718): GLib-WARNING **: g_set_prgname() called multiple times To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/529853/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 544357] Re: Logitech USB headset volume has "speaker" output and muting doesn't work well with PulseAudio
Thank you for reporting this bug to Ubuntu. Ubuntu 10.04 (lucid) reached end-of-life on May 9, 2013. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/544357 Title: Logitech USB headset volume has "speaker" output and muting doesn't work well with PulseAudio Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio After upgrading desktop to Lucid, the volume in my USB headset is too low. Sound is still there, but volume is just too slow. Just for reference, I also have external speakers, and they work ok. Also, I used this headset in Karmic in the desktop, and they worked ok; furthermore, I try this headset in Lucid in my laptop, and they work ok. Regards, ProblemType: Bug AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21. Architecture: i386 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: facundo1533 F pulseaudio /dev/snd/pcmC0D0p: facundo1533 F...m pulseaudio /dev/snd/controlC1: facundo1533 F pulseaudio Card0.Amixer.info: Card hw:0 'Headset'/'Logitech Logitech USB Headset at usb-:00:02.0-1, full speed' Mixer name : 'USB Mixer' Components : 'USB046d:0a01' Controls : 6 Simple ctrls : 2 Card1.Amixer.info: Card hw:1 'default'/'PnP Audio Device at usb-:00:02.0-7, full speed' Mixer name : 'USB Mixer' Components : 'USB0d8c:0201' Controls : 17 Simple ctrls : 6 Date: Mon Mar 22 14:42:58 2010 DistroRelease: Ubuntu 10.04 InstallationMedia: Ubuntu 9.10 "Karmic Koala" - Release i386 (20091028.5) NonfreeKernelModules: nvidia Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu12 PciMultimedia: ProcEnviron: PATH=(custom, user) LANG=es_AR.UTF-8 SHELL=/bin/bash ProcVersionSignature: Ubuntu 2.6.32-16.25-generic-pae SourcePackage: pulseaudio Uname: Linux 2.6.32-16-generic-pae i686 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/544357/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 543448] Re: module-loopback falls back to looping mic to speakers
Thank you for reporting this bug to Ubuntu. Ubuntu 9.10 (karmic) reached end-of-life on April 30, 2011. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/543448 Title: module-loopback falls back to looping mic to speakers Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio I'm using module-loopback to hear A2DP music from my phone, as described at: http://jprvita.wordpress.com/2009/12/15/1-2-3-4-a2dp-stream/ This works, but when my phone disconnects from A2DP for any reason (e.g. I walk away or turn bluetooth off) module-loopback remains loaded and decides instead to play audio from my microphone to my speakers, giving horrible feedback noises as you would expect. I would like a parameter for this module, perhaps fallback=[boolean], so I can say that when the phone goes away, just get rid of this module/instance instead of moving to another source. For now I will locally patch may_move_to to return false. ProblemType: Bug Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: cmb2197 F pulseaudio Card0.Amixer.info: Card hw:0 'SB'/'HDA ATI SB at 0xfe024000 irq 16' Mixer name : 'Realtek ALC888' Components : 'HDA:10ec0888,1458e601,0011' Controls : 39 Simple ctrls : 21 Date: Sun Mar 21 14:24:41 2010 DistroRelease: Ubuntu 9.10 NonfreeKernelModules: nvidia Package: pulseaudio 1:0.9.19-0ubuntu4.1 ProcEnviron: PATH=(custom, user) LANG=en_GB.UTF-8 SHELL=/bin/bash ProcVersionSignature: Ubuntu 2.6.31-20.58-generic SourcePackage: pulseaudio Uname: Linux 2.6.31-20-generic x86_64 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/543448/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 534482] Re: PulseAudio: Unable to create stream: Too large
Thank you for reporting this bug to Ubuntu. Ubuntu 9.10 (karmic) reached end-of-life on April 30, 2011. Ubuntu 12.04 (precise) reached end-of-life on April 28, 2017. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/534482 Title: PulseAudio: Unable to create stream: Too large Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio I have been frustrated with sound failures for as long as pulseaudio has been a part of Linux, and I'm trying my best to diagnose problems. In Ubuntu 9.10, I'm finding that when some apps run, no other app can output sound, and they just freeze. If I am running mythfrontend, and try to play a video from gnome-terminal, the video doesn't even start. When I exit mythfrontend, the video starts. Likewise, any alert sounds (like from pidgin) all play after mythfrontend exits, which is extremely annoying. If I play a streamed Flash movie in Firefox, most of the time any app that tries to output sound after it will be silent, and eventually sound won't work from Flash either. I tried running firefox in debug mode, and saw some interesting output. The relevant portion is HUNDREDS of lines saying "ALSA lib pcm_pulse.c:724:(pulse_prepare) PulseAudio: Unable to create stream: Too large". I searched the PA bug database and didn't find that phrase in any existing bugs. I did see mention of that error in Fedora https://bugzilla.redhat.com/show_bug.cgi?id=554568 but with different circumstances. This is supposedly fixed in PA itself according to lennart. See http://pulseaudio.org/ticket/797 $ lsb_release -rd Description: Ubuntu 9.10 Release: 9.10 $ apt-cache policy pulseaudio pulseaudio: Installed: 1:0.9.19-0ubuntu4.1 Candidate: 1:0.9.19-0ubuntu4.1 Version table: *** 1:0.9.19-0ubuntu4.1 0 500 http://us.archive.ubuntu.com karmic-updates/main Packages 100 /var/lib/dpkg/status 1:0.9.19-0ubuntu4 0 500 http://us.archive.ubuntu.com karmic/main Packages To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/534482/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 378325] Re: X login screen volume always set to max; crazy loud
So this bug proved that even in the 1% where people do contribute and provide a fast easy to implement solution, it still dies of old age rather than getting attended to : mainly because something which could cause physical harm gets classed as "wishlist" importance. -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/378325 Title: X login screen volume always set to max; crazy loud Status in pulseaudio package in Ubuntu: Confirmed Bug description: Binary package hint: gdm Whenever I boot my laptop from scratch (i.e. not resuming from standy/hibernate), the X/gdm login screen will play a sound effect when it's ready for me to log in. The problem is, this sound effect is always played at the hardware's maximum volume setting (or at least, something insanely loud) which is extremely annoying for other people nearby (and me!) gdm/something should set the volume to some sane level prior to playing this sound. Even better if "gdmsetup" were to allow configuration of the volume. Note, I'm aware of some WARs: * Disable the login sound. Not acceptable: Simply disabling the feature because it's buggy doesn't actually fix the underlying bug. * Plug in headphones, or a dummy jack. Not acceptable: I don't use headphones and hence don't carry them around. I don't want some dummy jack plugged into the side of my laptop, thus changing the laptop's shape (and, I'd have to unplug it after login to use sound) * Various script hacks with "alsactl save/restore". Not acceptable: This feature should "just work" out of the box without my Grandma having to hack at arcane scripts or config files. Note: This issue is visible in Jaunty Jackalope i386 (and presumably all arch's) on either the live CD or an HD-based installation. Note that to fix this on the live CD, a gdmsetup-based volume configuration option wouldn't be useful, because a) it wouldn't solve the issue for the first boot, and b) there's nowhere to store the configuration across reboots (or if there is, it's sufficiently complex that my Grandma couldn't use it) To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/378325/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 545592] Re: dummy output, no sound on HDA Intel internal sound card
Thank you for reporting this bug to Ubuntu. Ubuntu 10.04 (lucid) reached end-of-life on May 9, 2013. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/545592 Title: dummy output, no sound on HDA Intel internal sound card Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio On Lucid Lynx daily build from 22th march, my sound card is detected as HDA Intel, but there is no input device, there is only one output device called Dummy output, and there is no sound anymore. Two weeks ago with Alpha 3 everything worked, so this might be a regression, if I understand the term correctly. ProblemType: Bug AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21. Architecture: i386 ArecordDevices: List of CAPTURE Hardware Devices card 0: Intel [HDA Intel], device 0: STAC92xx Analog [STAC92xx Analog] Subdevices: 1/1 Subdevice #0: subdevice #0 AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/dsp', '/dev/snd/by-path', '/dev/snd/controlC0', '/dev/snd/hwC0D0', '/dev/snd/hwC0D1', '/dev/snd/pcmC0D0c', '/dev/snd/pcmC0D0p', '/dev/snd/pcmC0D1p', '/dev/snd/seq', '/dev/snd/timer', '/dev/sequencer2', '/dev/sequencer'] failed with exit code 1: Card0.Amixer.info: Card hw:0 'Intel'/'HDA Intel at 0xefffc000 irq 21' Mixer name : 'SigmaTel STAC9200' Components : 'HDA:83847690,102801cc,00102201 HDA:14f12bfa,14f100c3,0009' Controls : 12 Simple ctrls : 7 Date: Tue Mar 23 23:40:39 2010 DistroRelease: Ubuntu 10.04 LiveMediaBuild: Ubuntu 10.04 "Lucid Lynx" - Alpha i386 (20100322) Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu12 ProcEnviron: LANG=en_US.UTF-8 SHELL=/bin/bash ProcVersionSignature: Ubuntu 2.6.32-16.25-generic SourcePackage: pulseaudio Uname: Linux 2.6.32-16-generic i686 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/545592/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 526201] Re: No sound from Analog Devices AD1884
Thank you for reporting this bug to Ubuntu. Ubuntu 10.10 (maverick) reached end-of-life on April 10, 2012. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: New => Incomplete ** Project changed: alsa-driver => mir ** No longer affects: mir -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/526201 Title: No sound from Analog Devices AD1884 Status in pulseaudio package in Ubuntu: Incomplete Bug description: Codec: Analog Devices AD1884 00:14.2 Audio device: ATI Technologies Inc SBx00 Azalia (Intel HDA) To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/526201/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 546948] Re: Logitech USB headsets work as output devices only after once restarting pulseaudio
Thank you for reporting this bug to Ubuntu. Ubuntu 10.04 (lucid) reached end-of-life on May 9, 2013. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Package changed: pulseaudio (Debian) => mir ** No longer affects: mir -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/546948 Title: Logitech USB headsets work as output devices only after once restarting pulseaudio Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio Using Lucid, my 2 USB headsets are displayed under "Hardware" and can be configured (e.g. Analog Stereo Output + Analog Mono Input). But they are not shown under "Output". On the other hand, my bluetooth headset is shown under Output and can be selected as the default sound device. $ lsusb Bus 007 Device 002: ID 0483:2016 SGS Thomson Microelectronics Fingerprint Reader Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 005 Device 004: ID 046d:0a12 Logitech, Inc. Bus 005 Device 003: ID 046d:0a0c Logitech, Inc. Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 003 Device 005: ID 0a5c:4503 Broadcom Corp. Bus 003 Device 004: ID 0a5c:4502 Broadcom Corp. Bus 003 Device 003: ID 413c:8126 Dell Computer Corp. Wireless 355 Bluetooth Bus 003 Device 002: ID 0a5c:4500 Broadcom Corp. BCM2046B1 USB 2.0 Hub (part of BCM2046 Bluetooth) Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 002 Device 003: ID 05a9:7670 OmniVision Technologies, Inc. OV7670 Webcam Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/546948/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 569526] Re: Having multiple pulseaudio instances open causes physical sinks to be muted upon resume
Thank you for taking the time to report this bug and helping to make Ubuntu better. Please execute the following command only once, as it will automatically gather debugging information, in a terminal: apport-collect 569526 When reporting bugs in the future please use apport by using 'ubuntu- bug' and the name of the package affected. You can learn more about this functionality at https://wiki.ubuntu.com/ReportingBugs. ** Changed in: pulseaudio (Ubuntu) Status: Triaged => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/569526 Title: Having multiple pulseaudio instances open causes physical sinks to be muted upon resume Status in pulseaudio package in Ubuntu: Incomplete Bug description: affects ubuntu/pulseaudio status triaged I noticed this the other day after accidentally going into "Switch User" mode: I had my own pulseaudio instance, and gdm had its own. I then suspending my machine, and upon resuming, sound was muted. The reason for this happening is due to a bug in the 01Pulseaudio pm-utils hook. 1. First, it checks the status of gdm's pulseaudio, stores it, then mutes it. 2. Then, it checks the status of my pulseaudio, stores it, and also mutes it. Due to #1, the sink is already muted, as both sinks were pointing to the same physical device. Hence, the stored states are as follows: gdm's sink is not muted, but mine is. Upon resuming: 1. It reads gdm's state, and unmutes the sink. 2. Then it reads my pulseaudio's saved state, and mutes the sink again. Result: The sink is muted after resuming from suspend. N.B.: This seems to be a corner case that only occurs when multiple pulseaudio instances are running, and both contain sinks pointing to the same underlying device. It can probably be fixed by changing the pm-utils hook order to read and store all the states of the sinks prior to muting them. -- Kind regards, Chow Loong Jin To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/569526/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 570984] Re: [Realtek ALC883] pactl stat failed to find default card
Thank you for reporting this bug to Ubuntu. Ubuntu 10.04 (lucid) reached end-of-life on May 9, 2013. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/570984 Title: [Realtek ALC883] pactl stat failed to find default card Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio There is no audio in Lucid AMD64 with this audio controller. The sound worked when I first installed, then simply stopped working. I can get sound if I forcibly remove Pulseaudio, but of course I'd rather not take that drastic step. I am only mentioning it because it might help debug the issue. When I look in my sound properties under Hardware, I see a "Dummy Output" device, but the real hardware is not found. Again, sound is completely unusable (nonexistent) unless I remove Pulseaudio. ProblemType: Bug DistroRelease: Ubuntu 10.04 Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14 ProcVersionSignature: Ubuntu 2.6.32-21.32-generic 2.6.32.11+drm33.2 Uname: Linux 2.6.32-21-generic x86_64 AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21. Architecture: amd64 AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/dsp', '/dev/snd/by-path', '/dev/snd/controlC0', '/dev/snd/hwC0D0', '/dev/snd/hwC0D1', '/dev/snd/pcmC0D0c', '/dev/snd/pcmC0D0p', '/dev/snd/pcmC0D1p', '/dev/snd/pcmC0D2c', '/dev/snd/pcmC0D3p', '/dev/snd/seq', '/dev/snd/timer', '/dev/sequencer2', '/dev/sequencer'] failed with exit code 1: Card0.Amixer.info: Card hw:0 'Intel'/'HDA Intel at 0xfccf4000 irq 22' Mixer name : 'Silicon Image SiI1392 HDMI' Components : 'HDA:10ec0883,1043829f,0012 HDA:10951392,,0010' Controls : 40 Simple ctrls : 22 Date: Tue Apr 27 18:29:40 2010 InstallationMedia: Ubuntu 10.04 "Lucid Lynx" - Release Candidate amd64 (20100419.1) PactlStat: PactlStatStderr: C o n n e c t i o n f a i l u r e : C o n n e c t i o n r e f u s e d p a _ c o n t e x t _ c o n n e c t ( ) f a i l e d : C o n n e c t i o n r e f u s e d ProcEnviron: LANG=en_US.UTF-8 SHELL=/bin/bash SelectedCard: 0 Intel HDA-Intel - HDA Intel SourcePackage: pulseaudio Symptom: audio Title: [Realtek ALC883] pactl stat failed to find default card dmi.bios.date: 07/16/2008 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: 0604 dmi.board.asset.tag: To Be Filled By O.E.M. dmi.board.name: P5E-VM HDMI dmi.board.vendor: ASUSTeK Computer INC. dmi.board.version: Rev 1.xx dmi.chassis.asset.tag: Asset-1234567890 dmi.chassis.type: 3 dmi.chassis.vendor: Chassis Manufacture dmi.chassis.version: Chassis Version dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvr0604:bd07/16/2008:svnSystemmanufacturer:pnP5E-VMHDMI:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP5E-VMHDMI:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion: dmi.product.name: P5E-VM HDMI dmi.product.version: System Version dmi.sys.vendor: System manufacturer To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/570984/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 570015] Re: Fast respawning when module-alsa-sink can't be loaded
Thank you for reporting this bug to Ubuntu. Ubuntu 10.04 (lucid) reached end-of-life on May 9, 2013. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/570015 Title: Fast respawning when module-alsa-sink can't be loaded Status in pulseaudio package in Ubuntu: Incomplete Bug description: Ah, got it. Pulseaudio won't start (under my user's account) because of: E: module.c: Failed to load module "module-alsa-sink" (argument: "device=plughw:0 rate=44100"): initialization failed. E: main.c: Module load failed. E: main.c: Failed to initialize daemon. And that module was specified in ~/.pulse/default.pa, which is a leftover from the time when pulseaudio wasn't working and I was trying to do something about it. So I deleted ~/.pulse/default.pa, stopped pulseaudio that was started by hand and polkitd is still behaving perfectly fine. Even the music is playing, although I have no pulseaudio running. :-) Then I killed polkitd and it wasn't restarted. So I started pulseudio by hand (from my user's account) and then polkitd appeared. It's peacefully sleeping in poll() and isn't leaking memory. -- Original report: Binary package hint: policykit-1 Upon upgrading to the new build of Lucid, a problem I thought I had fixed with policykit has reappeared. i am getting high CPU usage and a memory leak from the process polkitd, run under policykit-1. Upon boot and logging into a fresh account, I get no problems, but once I log into my main account, the problem appears. Logging out and back into the fresh account carries the problem over to the fresh account as well. I noticed that there were three carry-over processes from the main account: indicator-sound, pulseaudio, and the root process polkitd. I thought I had fixed this through removing respawnable hidden directories in my home folder, but that hasn't worked this time. ProblemType: Bug DistroRelease: Ubuntu 10.04 Package: policykit-1 0.96-2 ProcVersionSignature: Ubuntu 2.6.32-21.32-generic 2.6.32.11+drm33.2 Uname: Linux 2.6.32-21-generic i686 NonfreeKernelModules: nvidia Architecture: i386 Date: Mon Apr 26 00:17:42 2010 ExecutablePath: /usr/lib/policykit-1/polkitd ProcEnviron: SourcePackage: policykit-1 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/570015/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 571987] Re: Only first 20% of the volume slider works
Thank you for reporting this bug to Ubuntu. Ubuntu 10.04 (lucid) reached end-of-life on May 9, 2013. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/571987 Title: Only first 20% of the volume slider works Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio In Karmic, the volume slider worked correctly. Now in Lucid pulse is setting PCM to 100%, and the first 20% of the volume applet slider controls 100% of the 'front' channel. This means that you can't get much granularity in the control and it's very easy to have it far too loud. ProblemType: Bug DistroRelease: Ubuntu 10.04 Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14 ProcVersionSignature: Ubuntu 2.6.32-21.32-generic 2.6.32.11+drm33.2 Uname: Linux 2.6.32-21-generic x86_64 NonfreeKernelModules: nvidia AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21. Architecture: amd64 ArecordDevices: List of CAPTURE Hardware Devices card 0: SB [HDA ATI SB], device 0: VT1708S Analog [VT1708S Analog] Subdevices: 2/2 Subdevice #0: subdevice #0 Subdevice #1: subdevice #1 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: robin 1778 F pulseaudio /dev/snd/pcmC0D0p: robin 1778 F...m pulseaudio Card0.Amixer.info: Card hw:0 'SB'/'HDA ATI SB at 0xf7ff4000 irq 16' Mixer name : 'VIA VT1708S' Components : 'HDA:11060397,104383b7,0010' Controls : 28 Simple ctrls : 16 Date: Fri Apr 30 13:42:16 2010 ProcEnviron: LANGUAGE=nl_NL:nl PATH=(custom, user) LANG=nl_NL.utf8 SHELL=/bin/bash SourcePackage: pulseaudio dmi.bios.date: 07/17/2009 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: 0503 dmi.board.asset.tag: To Be Filled By O.E.M. dmi.board.name: M2A74-AM dmi.board.vendor: ASUSTeK Computer INC. dmi.board.version: Rev X.0x dmi.chassis.asset.tag: Asset-1234567890 dmi.chassis.type: 3 dmi.chassis.vendor: Chassis Manufacture dmi.chassis.version: Chassis Version dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvr0503:bd07/17/2009:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnM2A74-AM:rvrRevX.0x:cvnChassisManufacture:ct3:cvrChassisVersion: dmi.product.name: System Product Name dmi.product.version: System Version dmi.sys.vendor: System manufacturer To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/571987/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 569399] Re: internal mic does not work on Fujitsu P7120
Thank you for reporting this bug to Ubuntu. Ubuntu 10.04 (lucid) reached end-of-life on May 9, 2013. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/569399 Title: internal mic does not work on Fujitsu P7120 Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio On my P7120, running 10.04 final RC, my internal microphones (stereo mic) do not give any signal in sound properties, nor do they record in any application. They work fine in Windows, so the problem is software/driver related. This seems to be first reported in bug #62891 however that bug was marked invalid, seemingly due to a number of problems reported in the one bug report, many of which were resolved. This one was never resolved however. I *did* find the following on the redhat forums, I'm not sure how to implement it due to us using pulseaudio rather than alsa, but hopefully if someone could give me some tests to perform using this info, it would be most appreciated! From: https://bugzilla.redhat.com/show_bug.cgi?id=471331 -QUOTE- Brad Rubenstein 2010-02-08 18:46:26 EST Workaround: I am using FC12 and its included alsa driver (1.0.22) on my Fujitsu P7120. I can use Skype with the built-in mic and headphones by using: In /etc/modprobe.d/alsa-base.conf: options snd-hda-intel model=test Then before running skype: % amixer --stdin << EOF sset LOUT2 0% mute sset LOUT1 60% unmute sset MIC2 60% unmute cap sset 'Input Source' 'MIC2 pin' sset 'MIC2 pin mode' 'Mic 80pc bias' EOF That seems to effectively mute the onboard speakers (LOUT2), unmute the headphones (LOUT1), and unmute/capture the onboard mic (MIC2). I don't know how to tell alsa to use this configuration "by default", and I don't know how to have alsa automatically mute the speakers and unmute the headphones when I plug headphones in, and do the reverse when I unplug them. I bet it's possible (via .asoundrc?), and I'm just ignirrint. I'm not sure which pin complex the Mic jack is connected to on the P7120 (I suspect MIC1). -END QUOTE- ProblemType: Bug DistroRelease: Ubuntu 10.04 Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14 ProcVersionSignature: Ubuntu 2.6.32-21.32-generic 2.6.32.11+drm33.2 Uname: Linux 2.6.32-21-generic i686 AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21. Architecture: i386 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: mike 1418 F pulseaudio Card0.Amixer.info: Card hw:0 'Intel'/'HDA Intel at 0xb000 irq 16' Mixer name : 'Realtek ALC260' Components : 'HDA:10ec0260,10cf,00100400 HDA:11c13026,11c13026,00100600' Controls : 23 Simple ctrls : 15 Date: Sat Apr 24 12:46:00 2010 EcryptfsInUse: Yes InstallationMedia: Ubuntu 10.04 "Lucid Lynx" - Release Candidate i386 (20100419.1) ProcEnviron: LANG=en_GB.utf8 SHELL=/bin/bash SourcePackage: pulseaudio dmi.bios.date: 05/16/2006 dmi.bios.vendor: FUJITSU // Phoenix Technologies Ltd. dmi.bios.version: Version 1.19 dmi.board.name: FJNB1A5 dmi.board.vendor: FUJITSU dmi.board.version: CP254699-01 dmi.chassis.type: 10 dmi.chassis.vendor: FUJITSU SIEMENS dmi.chassis.version: P7120 dmi.modalias: dmi:bvnFUJITSU//PhoenixTechnologiesLtd.:bvrVersion1.19:bd05/16/2006:svnFUJITSUSIEMENS:pnLIFEBOOKP7120:pvr:rvnFUJITSU:rnFJNB1A5:rvrCP254699-01:cvnFUJITSUSIEMENS:ct10:cvrP7120: dmi.product.name: LIFEBOOK P7120 dmi.sys.vendor: FUJITSU SIEMENS To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/569399/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 565987] Re: Videos are not in sync with audio
Thank you for taking the time to report this bug and helping to make Ubuntu better. Please execute the following command only once, as it will automatically gather debugging information, in a terminal: apport-collect 565987 When reporting bugs in the future please use apport by using 'ubuntu- bug' and the name of the package affected. You can learn more about this functionality at https://wiki.ubuntu.com/ReportingBugs. ** Changed in: pulseaudio (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/565987 Title: Videos are not in sync with audio Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio Hello, everytime I watch a music video in totem (or with whatever application) I have the problem that the music is not in sync with the video. There is no "big" latency, but still too much to watch the video without noticing the latency. If you see a drummer you see the stick touch the drum and after that you hear it. With pulseaudio and other abstactions the problem becomes bigger and bigger. If I always I think we need some kind of infrastructure that lets the playback application (e.g. totem) ask the "last" abstraction layer (e.g. pulseaudio) how long the audio latency is. Then Totem for example has to delay the video exactly that long, that both are in sync. If I as a musician watch music videos I go bad, because this latency is not normal/natural. I know that this is "Wishlist" and that many applications are affected, but I think this is a necessary step one have to take. It's really annoying. I also know that there are realtime kernels and other sound servers like jack, but I think it's also important that pulseaudio etc. don't act on the cost of synchron audio/video. Thanks :) To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/565987/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 565849] Re: paprefs do not let me activate upnp lucid
Thank you for reporting this bug to Ubuntu. Ubuntu 10.04 (lucid) reached end-of-life on May 9, 2013. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/565849 Title: paprefs do not let me activate upnp lucid Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio i use lucid amd64 with latest updates, and there is no package "pulseaudio-module-rygel-media-server" any more. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/565849/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 566449] Re: No Sound Through USB Headset
Ryan, Thank you for reporting this bug to Ubuntu. Ubuntu 10.04 (lucid) reached end-of-life on May 9, 2013. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. Raymond: Please log a new bug if you continue to experience problems. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/566449 Title: No Sound Through USB Headset Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio Ubuntu 10.04 64-bit When using a standard USB headset, sound will not play through the headphones. Both input (microphone) and output are detected, but only the microphone works. When switching to use the headphones, no audio seems to play. It previously worked in 9.10 and intermittently after first installing 10.04. --- AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21. Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC1: ryan 7099 F pulseaudio /dev/snd/controlC0: ryan 7099 F pulseaudio Card0.Amixer.info: Card hw:0 'VT82xx'/'HDA VIA VT82xx at 0xfbffc000 irq 17' Mixer name : 'Realtek ALC662 rev1' Components : 'HDA:10ec0662,10438290,00100101' Controls : 36 Simple ctrls : 19 Card1.Amixer.info: Card hw:1 'default'/'C-Media USB Headphone Set at usb-:00:10.2-2, full speed' Mixer name : 'USB Mixer' Components : 'USB0d8c:000c' Controls : 7 Simple ctrls : 3 DistroRelease: Ubuntu 10.04 InstallationMedia: Ubuntu 10.04 "Lucid Lynx" - Beta amd64 (20100406.1) NonfreeKernelModules: nvidia Package: alsa-base 1.0.22.1+dfsg-0ubuntu3 PackageArchitecture: all ProcEnviron: LANG=en_GB.utf8 SHELL=/bin/bash ProcVersionSignature: Ubuntu 2.6.32-21.32-generic 2.6.32.11+drm33.2 Tags: lucid Uname: Linux 2.6.32-21-generic x86_64 UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare dmi.bios.date: 11/15/2007 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: 0503 dmi.board.asset.tag: To Be Filled By O.E.M. dmi.board.name: P5VD2-VM SE dmi.board.vendor: ASUSTeK Computer INC. dmi.board.version: Rev x.xx dmi.chassis.asset.tag: Asset-1234567890 dmi.chassis.type: 3 dmi.chassis.vendor: Chassis Manufacture dmi.chassis.version: Chassis Version dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvr0503:bd11/15/2007:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP5VD2-VMSE:rvrRevx.xx:cvnChassisManufacture:ct3:cvrChassisVersion: dmi.product.name: System Product Name dmi.product.version: System Version dmi.sys.vendor: System manufacturer To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/566449/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 566381] Re: Lag when using module-loopback
Ubuntu 15.04 (vivid) reached end-of-life on February 4, 2016. But 14.04 is still supported for about two more years... -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/566381 Title: Lag when using module-loopback Status in pulseaudio package in Ubuntu: Confirmed Bug description: Binary package hint: pulseaudio Using pactl load-module module-loopback I can route the mic input through output. However, the audio that comes out is about half a second behind the audio coming in. This is okay for some things, but for others, like musical instruments, game consoles, etc., the lag makes it pretty much unusable for these uses. Back in alsa this used to work fine without lag. ProblemType: Bug DistroRelease: Ubuntu 10.04 Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14 ProcVersionSignature: Ubuntu 2.6.32-19.28-generic 2.6.32.10+drm33.1 Uname: Linux 2.6.32-19-generic x86_64 NonfreeKernelModules: nls_iso8859_1 nls_cp437 btrfs zlib_deflate crc32c libcrc32c ufs qnx4 hfsplus hfs minix ntfs vfat msdos fat jfs xfs exportfs reiserfs pata_jmicron acpiphp michael_mic arc4 hidp rfcomm binfmt_misc sco bridge stp bnep l2cap vboxnetadp vboxnetflt dm_crypt snd_hda_codec_idt snd_hda_codec_intelhdmi snd_hda_intel snd_hda_codec snd_hwdep snd_pcm_oss snd_mixer_oss snd_pcm snd_seq_dummy snd_seq_oss snd_seq_midi vboxdrv snd_rawmidi joydev snd_seq_midi_event lp snd_seq snd_timer snd_seq_device lib80211_crypt_tkip snd parport soundcore wl dell_wmi btusb psmouse dell_laptop dcdbas ricoh_mmc snd_page_alloc lib80211 sdhci_pci sdhci led_class serio_raw bluetooth dm_raid45 xor fbcon tileblit font bitblit softcursor vga16fb vgastate usbhid hid i915 drm_kms_helper ohci1394 drm i2c_algo_bit ieee1394 sky2 intel_agp ahci video output AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21. Architecture: amd64 ArecordDevices: List of CAPTURE Hardware Devices card 0: Intel [HDA Intel], device 0: STAC92xx Analog [STAC92xx Analog] Subdevices: 0/1 Subdevice #0: subdevice #0 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: matthew 10508 F pulseaudio /dev/snd/pcmC0D0c: matthew 10508 F...m pulseaudio /dev/snd/pcmC0D0p: matthew 10508 F...m pulseaudio Card0.Amixer.info: Card hw:0 'Intel'/'HDA Intel at 0xfe9fc000 irq 21' Mixer name : 'SigmaTel STAC9228' Components : 'HDA:14f12c06,14f1000f,0010 HDA:10951392,1028022f,0010 HDA:83847616,1028022f,00100402' Controls : 23 Simple ctrls : 12 Date: Sun Apr 18 21:42:33 2010 InstallationMedia: Ubuntu 10.04 "Lucid Lynx" - Beta amd64 (20100318) ProcEnviron: LANG=en_US.utf8 SHELL=/bin/bash SourcePackage: pulseaudio dmi.bios.date: 03/10/2008 dmi.bios.vendor: Dell Inc. dmi.bios.version: A11 dmi.board.name: 0U990C dmi.board.vendor: Dell Inc. dmi.chassis.type: 8 dmi.chassis.vendor: Dell Inc. dmi.modalias: dmi:bvnDellInc.:bvrA11:bd03/10/2008:svnDellInc.:pnInspiron1525:pvr:rvnDellInc.:rn0U990C:rvr:cvnDellInc.:ct8:cvr: dmi.product.name: Inspiron 1525 dmi.sys.vendor: Dell Inc. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/566381/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1689261] [NEW] Network manager says my USB-based ethernet devices are not supported, though I can connect manually
Public bug reported: I have a Dell Precision 5520 laptop with a Thunderbolt USB 3.1 type C port that I connect to a Dell TB15 docking station connected with an Ethernet cable. Network manager section for ethernet connections is all grayed out, and it says "device unsupported". USB subsystem seems to detect the device just fine: ``` $ lsusb Bus 004 Device 003: ID 0bda:8153 Realtek Semiconductor Corp. Bus 004 Device 002: ID 0424:5537 Standard Microsystems Corp. Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 003 Device 004: ID 046d:c31f Logitech, Inc. Bus 003 Device 003: ID 0bda:4014 Realtek Semiconductor Corp. Bus 003 Device 002: ID 0424:2137 Standard Microsystems Corp. Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 8087:0a2b Intel Corp. Bus 001 Device 002: ID 046d:c52f Logitech, Inc. Unifying Receiver Bus 001 Device 004: ID 1bcf:2b95 Sunplus Innovation Technology Inc. Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub ``` ``` $ sudo lsusb -v -d 0bda:8153 Bus 004 Device 003: ID 0bda:8153 Realtek Semiconductor Corp. Device Descriptor: bLength18 bDescriptorType 1 bcdUSB 3.00 bDeviceClass0 (Defined at Interface level) bDeviceSubClass 0 bDeviceProtocol 0 bMaxPacketSize0 9 idVendor 0x0bda Realtek Semiconductor Corp. idProduct 0x8153 bcdDevice 30.01 iManufacturer 1 Realtek iProduct2 USB 10/100/1000 LAN iSerial 6 0100 bNumConfigurations 2 Configuration Descriptor: bLength 9 bDescriptorType 2 wTotalLength 57 bNumInterfaces 1 bConfigurationValue 1 iConfiguration 0 bmAttributes 0xa0 (Bus Powered) Remote Wakeup MaxPower 64mA Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber0 bAlternateSetting 0 bNumEndpoints 3 bInterfaceClass 255 Vendor Specific Class bInterfaceSubClass255 Vendor Specific Subclass bInterfaceProtocol 0 iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x81 EP 1 IN bmAttributes2 Transfer TypeBulk Synch Type None Usage Type Data wMaxPacketSize 0x0400 1x 1024 bytes bInterval 0 bMaxBurst 3 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x02 EP 2 OUT bmAttributes2 Transfer TypeBulk Synch Type None Usage Type Data wMaxPacketSize 0x0400 1x 1024 bytes bInterval 0 bMaxBurst 3 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x83 EP 3 IN bmAttributes3 Transfer TypeInterrupt Synch Type None Usage Type Data wMaxPacketSize 0x0002 1x 2 bytes bInterval 8 bMaxBurst 0 Configuration Descriptor: bLength 9 bDescriptorType 2 wTotalLength 98 bNumInterfaces 2 bConfigurationValue 2 iConfiguration 0 bmAttributes 0xa0 (Bus Powered) Remote Wakeup MaxPower 64mA Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber0 bAlternateSetting 0 bNumEndpoints 1 bInterfaceClass 2 Communications bInterfaceSubClass 6 Ethernet Networking bInterfaceProtocol 0 iInterface 5 CDC Communications Control CDC Header: bcdCDC 1.10 CDC Union: bMasterInterface0 bSlaveInterface 1 CDC Ethernet: iMacAddress 3 D481D773B38D bmEthernetStatistics0x wMaxSegmentSize 1514 wNumberMCFilters0x bNumberPowerFilters 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x83 EP 3 IN bmAttributes3 Transfer TypeInterrupt Synch Type None Usage Type Data wMaxPacketSize 0x0010 1x 16 bytes
[Touch-packages] [Bug 1688364] Re: Non existent host causes 100% cpu utilization by systemd-resolved and dnsmasq
Just a note: nslookup doesn't produce the error, accessing http://science.howstuffworks.com/reverse-osmosis.htm through firefox or chromium does. /etc/resolv.conf is symlinked to ../run/resolvconf/resolv.conf I assume that this is the default option (and dnsmasq issues a warning if it isn't symlinked to this file) ***with dnsmasq stopped*** /etc/resolv.conf nameserver 127.0.0.53 /run/systemd/resolve/resolv.conf nameserver 192.168.2.1 ***after starting dnsmasq*** /etc/resolv.conf nameserver 127.0.0.1 /run/systemd/resolve/resolv.conf nameserver 192.168.2.1 /run/dnsmasq/resolv.conf nameserver 127.0.0.53 -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to dnsmasq in Ubuntu. https://bugs.launchpad.net/bugs/1688364 Title: Non existent host causes 100% cpu utilization by systemd-resolved and dnsmasq Status in dnsmasq package in Ubuntu: Incomplete Bug description: May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] googletagservices.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded googletagservices.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] googletagservices.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded googletagservices.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] googletagservices.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded googletagservices.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] googletagservices.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded googletagservices.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] googletagservices.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded googletagservices.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] googletagservices.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded googletagservices.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] googletagservices.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded googletagservices.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded
[Touch-packages] [Bug 577727] Re: Ubuntu 10.04 sound lag with enemy territory quake wars
Chrisn, Thank you for reporting this bug to Ubuntu. Ubuntu 10.04 (lucid) reached end-of-life on May 9, 2013. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Triaged => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/577727 Title: Ubuntu 10.04 sound lag with enemy territory quake wars Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio To reproduce: Install Ubuntu 10.04 x64 Install drivers and update ubuntu Install enemy territory quake wars demo or full game Start a game vs computer Fire gun in air Sometimes takes a moment or 2 to start lagging. Starts lagging when the sound apparently disappears. demo available at http://www.fileplanet.com/181742/18/fileinfo /Enemy-Territory:-Quake-Wars-Demo-%28Linux%29 Apparently works on Kubuntu according to http://ubuntuforums.org/showpost.php?p=9246877&postcount=5 I've not been able to get it to even start on Kubuntu (executable not found) however ProblemType: Bug DistroRelease: Ubuntu 10.04 Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14 ProcVersionSignature: Ubuntu 2.6.32-22.33-generic 2.6.32.11+drm33.2 Uname: Linux 2.6.32-22-generic x86_64 NonfreeKernelModules: nvidia AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21. Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: chris 2085 F pulseaudio /dev/snd/controlC1: chris 2085 F pulseaudio Card0.Amixer.info: Card hw:0 'D2'/'Asus Virtuoso 200 (rev 2) at 0xe800, irq 16' Mixer name : 'AV200' Components : 'PCM1796 CS5381 AV200' Controls : 23 Simple ctrls : 12 Card1.Amixer.info: Card hw:1 'Intel'/'HDA Intel at 0xf7ff8000 irq 22' Mixer name : 'VIA ID 4441' Components : 'HDA:11064441,104383d0,00100100' Controls : 4 Simple ctrls : 3 Date: Sun May 9 09:09:53 2010 InstallationMedia: Ubuntu 10.04 LTS "Lucid Lynx" - Release amd64 (20100429) ProcEnviron: LANG=en_GB.utf8 SHELL=/bin/bash SourcePackage: pulseaudio dmi.bios.date: 12/07/2009 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: 1207 dmi.board.asset.tag: To Be Filled By O.E.M. dmi.board.name: P7P55D LE dmi.board.vendor: ASUSTeK Computer INC. dmi.board.version: Rev 1.xx dmi.chassis.asset.tag: Asset-1234567890 dmi.chassis.type: 3 dmi.chassis.vendor: Chassis Manufacture dmi.chassis.version: Chassis Version dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvr1207:bd12/07/2009:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP7P55DLE:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion: dmi.product.name: System Product Name dmi.product.version: System Version dmi.sys.vendor: System manufacturer To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/577727/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 577587] Re: installing earcandy brokes pulseaudio server
Thank you for reporting this bug to Ubuntu. Ubuntu 10.04 (lucid) reached end-of-life on May 9, 2013. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/577587 Title: installing earcandy brokes pulseaudio server Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio I've installed Earcandy and it broken my pulseaudio server. I couldn't hear any music from Rhythmbox or the login sound. I'm running Ubuntu 10.04 LTS 64bit. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/577587/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 575910] Re: "sudo pactl list" fails with "Connection refused"
Thank you for reporting this bug to Ubuntu. Ubuntu 10.04 (lucid) reached end-of-life on May 9, 2013. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/575910 Title: "sudo pactl list" fails with "Connection refused" Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio since jaunty, I used a script which check whether music is played. It uses the following command: $ pactl list | grep RUNNING The script is called from rc.local, and as such, it is run by root. While in jaunty and karmic, everything works great, a fresh install of Lucid lets the script die. If I type in $ sudo pactl list | grep RUNNING it gives me the error: Home directory /home/produnis not ours. Connection refused I don't know what this means, as the script isn't stored in my home- folder, and it does no actions in my home-folder In sum: Running the comand as user "produnis", everything works well Running the comand as root, it gives me the error. Unfortunately, I MUST run the script as root (due to other action it does), so, is there any hint why it is not working any longer? [Running Lucid 64bit with current updates] To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/575910/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 577490] Re: After upgrade to Lucid, muting one channel mutes all
Thank you for reporting this bug to Ubuntu. Ubuntu 10.04 (lucid) reached end-of-life on May 9, 2013. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/577490 Title: After upgrade to Lucid, muting one channel mutes all Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: alsa-utils When I mute any of channels(Front, Surround, Center, LFE, Side) in alsamixer of kmix the effect is the same as muting channel Master or all seperately - no sound at all. In karmic those worked properly. I'm using following entry in /etc/modprobe.d/alsa-base.conf: options snd-hda-intel model=lenovo-sky power_save=10 power_save_controller=Y and have loaded following modules: lsmod | grep snd snd_hda_codec_nvhdmi 4760 1 snd_hda_codec_si3054 4236 1 snd_hda_codec_realtek 278890 1 snd_seq_dummy 1782 0 snd_hda_intel 25645 10 snd_seq_oss31219 0 snd_hda_codec 85727 4 snd_hda_codec_nvhdmi,snd_hda_codec_si3054,snd_hda_codec_realtek,snd_hda_intel snd_seq_midi5829 0 snd_pcm_oss41394 0 snd_mixer_oss 16299 1 snd_pcm_oss snd_rawmidi23388 1 snd_seq_midi snd_pcm87850 8 snd_hda_codec_si3054,snd_hda_intel,snd_hda_codec,snd_pcm_oss snd_seq_midi_event 7267 2 snd_seq_oss,snd_seq_midi snd_hwdep 6924 1 snd_hda_codec snd_seq57417 6 snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_seq_midi_event snd_timer 23553 2 snd_pcm,snd_seq snd_seq_device 6824 5 snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_rawmidi,snd_seq snd70978 29 snd_hda_codec_si3054,snd_hda_codec_realtek,snd_hda_intel,snd_seq_oss,snd_hda_codec,snd_pcm_oss,snd_mixer_oss,snd_rawmidi,snd_pcm,snd_hwdep,snd_seq,snd_timer,snd_seq_device soundcore 8052 1 snd snd_page_alloc 8500 2 snd_hda_intel,snd_pcm ProblemType: Bug DistroRelease: Ubuntu 10.04 Package: alsa-utils 1.0.22-0ubuntu5 ProcVersionSignature: Ubuntu 2.6.32-22.33-generic 2.6.32.11+drm33.2 Uname: Linux 2.6.32-22-generic x86_64 NonfreeKernelModules: nvidia Architecture: amd64 Date: Sat May 8 17:28:34 2010 ProcEnviron: LANGUAGE= LANG=pl_PL.UTF-8 SHELL=/bin/bash SourcePackage: alsa-utils To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/577490/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 575840] Re: Bad pulseaudio volumen levels
Thank you for reporting this bug to Ubuntu. Ubuntu 9.10 (karmic) reached end-of-life on April 30, 2011. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/575840 Title: Bad pulseaudio volumen levels Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio My computer is a Dell Studio XPS 16 with Ubuntu 9.10 (also affects Lucid 10.04). The volume levels setted by Pulseaudio are incorrectly sent to Alsa. It causes to mute volume with 15% of the volume shown by pulseaudio; at that value, the master control of alsa is set to 0. The soundcard is IDT 92HD73C1X5 ProblemType: Bug Architecture: amd64 ArecordDevices: List of CAPTURE Hardware Devices card 0: Intel [HDA Intel], device 0: STAC92xx Analog [STAC92xx Analog] Subdevices: 1/2 Subdevice #0: subdevice #0 Subdevice #1: subdevice #1 Card0.Amixer.info: Card hw:0 'Intel'/'HDA Intel at 0xfc40 irq 22' Mixer name : 'IDT 92HD73C1X5' Components : 'HDA:111d7675,10280272,00100103' Controls : 24 Simple ctrls : 15 Card1.Amixer.info: Card hw:1 'HDMI'/'HDA ATI HDMI at 0xcfeec000 irq 17' Mixer name : 'ATI R6xx HDMI' Components : 'HDA:1002aa01,00aa0100,00100100' Controls : 4 Simple ctrls : 1 Card1.Amixer.values: Simple mixer control 'IEC958',0 Capabilities: pswitch pswitch-joined Playback channels: Mono Mono: Playback [off] Date: Wed May 5 17:01:24 2010 DistroRelease: Ubuntu 9.10 InstallationMedia: Ubuntu 9.10 "Karmic Koala" - Release amd64 (20091027) NonfreeKernelModules: fglrx Package: pulseaudio 1:0.9.19-0ubuntu4.1 ProcEnviron: LANG=es_ES.UTF-8 SHELL=/bin/bash ProcVersionSignature: Ubuntu 2.6.31-20.58-generic SourcePackage: pulseaudio Uname: Linux 2.6.31-20-generic x86_64 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/575840/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 572378] Re: Apr 26 19:53:22 sat-inder-laptop pulseaudio[1694]: alsa-sink.c: ALSA woke us up to write new data to the device, but there was actually nothing to write! Apr 26 19:53
Thank you for reporting this bug to Ubuntu. Ubuntu 9.10 (karmic) reached end-of-life on April 30, 2011. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/572378 Title: Apr 26 19:53:22 sat-inder-laptop pulseaudio[1694]: alsa-sink.c: ALSA woke us up to write new data to the device, but there was actually nothing to write! Apr 26 19:53:22 sat-inder-laptop pulseaudio[1694]: alsa-sink.c: Most likely this is a bug in the ALSA driver 'snd_hda_intel'. Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: gnome-utils Apr 26 19:53:22 sat-inder-laptop pulseaudio[1694]: alsa-sink.c: ALSA woke us up to write new data to the device, but there was actually nothing to write! Apr 26 19:53:22 sat-inder-laptop pulseaudio[1694]: alsa-sink.c: Most likely this is a bug in the ALSA driver 'snd_hda_intel'. ProblemType: Bug Architecture: i386 Date: Fri Apr 30 19:57:15 2010 DistroRelease: Ubuntu 9.10 ExecutablePath: /usr/bin/gnome-system-log InstallationMedia: Ubuntu-Netbook-Remix 9.10 "Karmic Koala" - Release i386 (20091028.4) Package: gnome-utils 2.28.1-0ubuntu1 ProcEnviron: LANG=en_IN SHELL=/bin/bash ProcVersionSignature: Ubuntu 2.6.31-20.58-generic SourcePackage: gnome-utils Tags: ubuntu-unr Uname: Linux 2.6.31-20-generic i686 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/572378/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 574137] Re: Toshiba NB30500F pulseaudio problem
Thank you for reporting this bug to Ubuntu. Ubuntu 10.04 (lucid) reached end-of-life on May 9, 2013. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/574137 Title: Toshiba NB30500F pulseaudio problem Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio Toshiba NB305007 netbook. Ubuntu 10.04 LTS - lucid. 2.6.32.21-generic, running ubuntu-netbook-remix. Problem with pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14) . Boot machine and open a gnome-terminal window. At the CLI, hit backspace. You will hear the normal ping/bong. Hit the backspace key a few more times and the sound suddenly changes to a scratchy peep, or may disappear altogether. If I wait 10 seconds the sound returns to normal but repeatedly hitting the key causes the same effect. If I play a song using Rhythmbox the sound goes crappy after a few minutes. Or I can purposefully make it go bad by hitting the backspace key a few times in the gnome terminal window. I have tried all of the common remedies of adding asus-mode4 to the end of the options snd-hda-intel line in /etc/modprobe.d/alsa- base.conf. I tried many different combinations of default-fragments and default-fragments-size-msec in /etc/pulse/daemon.conf, all to no avail. If I purge pulseaudio (apt-get purge pulseaudio) and reboot, the sound is fine although some other sound things do not work as expected (no volume control). But rhythmbox, sound recorder and twinkle all work. NOTE: Purging pulseaudio removes ubuntu-desktop, ubuntu-netbook and ubuntu-netbook remix. But rebooting brings the machine up just fine. If I reinstall pulseaduio, the problems come back... leading me to believe that the problem is with pulseaudio. Any help or ideas would be much appreciated. Thanks ProblemType: Bug DistroRelease: Ubuntu 10.04 Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14 ProcVersionSignature: Ubuntu 2.6.32-21.32-generic 2.6.32.11+drm33.2 Uname: Linux 2.6.32-21-generic i686 AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.22.1. Compiled on Apr 14 2010 for kernel 2.6.32-21-generic (SMP). AplayDevices: List of PLAYBACK Hardware Devices card 0: Intel [HDA Intel], device 0: ALC272 Analog [ALC272 Analog] Subdevices: 1/1 Subdevice #0: subdevice #0 Architecture: i386 ArecordDevices: List of CAPTURE Hardware Devices card 0: Intel [HDA Intel], device 0: ALC272 Analog [ALC272 Analog] Subdevices: 1/1 Subdevice #0: subdevice #0 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: jim1171 F pulseaudio Card0.Amixer.info: Card hw:0 'Intel'/'HDA Intel at 0x40a0 irq 30' Mixer name : 'Realtek ALC272' Components : 'HDA:10ec0272,1179ff30,0011' Controls : 18 Simple ctrls : 11 Date: Sun May 2 18:41:51 2010 InstallationMedia: Ubuntu-Netbook-Remix 9.10 "Karmic Koala" - Release i386 (20091028.4) ProcEnviron: PATH=(custom, no user) LANG=en_CA.utf8 SHELL=/bin/bash SourcePackage: pulseaudio dmi.bios.date: 01/14/2010 dmi.bios.vendor: TOSHIBA dmi.bios.version: V1.30 dmi.board.name: NPVAA dmi.board.vendor: TOSHIBA dmi.board.version: 1.00 dmi.chassis.asset.tag: * dmi.chassis.type: 10 dmi.chassis.vendor: TOSHIBA dmi.chassis.version: N/A dmi.modalias: dmi:bvnTOSHIBA:bvrV1.30:bd01/14/2010:svnTOSHIBA:pnTOSHIBANB305:pvrPLL3AC-00F014:rvnTOSHIBA:rnNPVAA:rvr1.00:cvnTOSHIBA:ct10:cvrN/A: dmi.product.name: TOSHIBA NB305 dmi.product.version: PLL3AC-00F014 dmi.sys.vendor: TOSHIBA To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/574137/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 574504] Re: Regression, system does not capture sound from microphone
palexv, Thank you for reporting this bug to Ubuntu. Ubuntu 10.04 (lucid) reached end-of-life on May 9, 2013. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/574504 Title: Regression, system does not capture sound from microphone Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio Looks like its a regression on 10.04. 1. Boot Karmic 9.04 LiveCD (Kubuntu). Install skype, turn up all bars in KMix. Make test call - skype works well, it hears my voice. 2. Boot Lucid Lynx 10.04. Do the same - skype does not hear my voice. At the same time I can hear my voice in headset in real time. But for some reason it does not be recordered. Tried: 1. Install pulseaudio - no effect 2. Installed linux-backports-modules-alsa-lucid-generic, no effect. 3. Tried to set mono input using pavucontrol - no effect. ProblemType: Bug DistroRelease: Ubuntu 10.04 Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14 ProcVersionSignature: Ubuntu 2.6.32-21.32-generic 2.6.32.11+drm33.2 Uname: Linux 2.6.32-21-generic i686 AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.22.1. Compiled on Apr 14 2010 for kernel 2.6.32-21-generic (SMP). AplayDevices: List of PLAYBACK Hardware Devices card 0: SB [HDA ATI SB], device 0: ALC262 Analog [ALC262 Analog] Subdevices: 1/1 Subdevice #0: subdevice #0 Architecture: i386 ArecordDevices: List of CAPTURE Hardware Devices card 0: SB [HDA ATI SB], device 0: ALC262 Analog [ALC262 Analog] Subdevices: 1/1 Subdevice #0: subdevice #0 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: alexey 1574 F pulseaudio alexey 1598 F kmix Card0.Amixer.info: Card hw:0 'SB'/'HDA ATI SB at 0xc000 irq 16' Mixer name : 'Realtek ALC262' Components : 'HDA:11c11040,2118144d,00100200 HDA:10ec0262,144dc036,0012' Controls : 17 Simple ctrls : 11 Date: Mon May 3 17:02:27 2010 InstallationMedia: Kubuntu 10.04 LTS "Lucid Lynx" - Release i386 (20100427) ProcEnviron: LANGUAGE= LANG=ru_UA.UTF-8 SHELL=/bin/bash SourcePackage: pulseaudio UserAsoundrc: pcm.pulse { type pulse } ctl.pulse { type pulse } dmi.bios.date: 04/30/2007 dmi.bios.vendor: Phoenix Technologies LTD dmi.bios.version: 04YE dmi.board.name: R40P/R41P dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD. dmi.chassis.asset.tag: No Asset Tag dmi.chassis.type: 1 dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD. dmi.chassis.version: N/A dmi.modalias: dmi:bvnPhoenixTechnologiesLTD:bvr04YE:bd04/30/2007:svnSAMSUNGELECTRONICSCO.,LTD.:pnR40P/R41P:pvr04YE:rvnSAMSUNGELECTRONICSCO.,LTD.:rnR40P/R41P:rvr:cvnSAMSUNGELECTRONICSCO.,LTD.:ct1:cvrN/A: dmi.product.name: R40P/R41P dmi.product.version: 04YE dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/574504/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 572580] Re: Video Playback in lucid stuttering
Thank you for reporting this bug to Ubuntu. Ubuntu 10.04 (lucid) reached end-of-life on May 9, 2013. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/572580 Title: Video Playback in lucid stuttering Status in pulseaudio package in Ubuntu: Incomplete Bug description: I reinstalled (not upgraded) from Karmic to Lucid yesterday, and I have serious issues now when trying to playback videos. I tried several players, including Totem, Mplayer and VLC, and all of them show the same symptoms. When playing a video, every minute or so the video hangs for half a second and the audio stutters, then the playback resumes until the next hang. So much about the symptoms. When looking at "top", I also saw that the CPU usage of of Xorg and compiz raises from 5%/5% to about 20%/20%. I surely already tried to disable compiz, but that didn't solve the problem. When looking at various logfiles, I also recognized the following error message repeating in /var/log/messages, but it those messages did not appear in sync with the stuttering: pulseaudio[2049]: ratelimit.c: 2 events suppressed I am using the NVidia binary driver by the way, running a GeForce GTX 240, if that is in any way relevant. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/572580/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 574513] Re: Sound mute by default on fresh installation
Thank you for reporting this bug to Ubuntu. Ubuntu 10.04 (lucid) reached end-of-life on May 9, 2013. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/574513 Title: Sound mute by default on fresh installation Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio This is a fresh installation of Ubuntu on my PC. On starting the PC after installation I observed that sound is muted by default. Not a major problem but can be confusing to new users. ProblemType: Bug DistroRelease: Ubuntu 10.04 Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14 ProcVersionSignature: Ubuntu 2.6.32-21.32-generic 2.6.32.11+drm33.2 Uname: Linux 2.6.32-21-generic i686 AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21. Architecture: i386 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: onkar 1283 F pulseaudio Card0.Amixer.info: Card hw:0 'V8237'/'VIA 8237 with ALC658D at 0xe000, irq 22' Mixer name : 'Realtek ALC658D' Components : 'AC97a:414c4781' Controls : 45 Simple ctrls : 27 CurrentDmesg: [ 22.480041] eth0: no IPv6 routers present [ 27.320048] end_request: I/O error, dev fd0, sector 0 [ 27.364081] end_request: I/O error, dev fd0, sector 0 Date: Mon May 3 19:44:10 2010 InstallationMedia: Ubuntu 10.04 LTS "Lucid Lynx" - Release i386 (20100429) ProcEnviron: LANG=en_IN SHELL=/bin/bash SourcePackage: pulseaudio dmi.bios.date: 12/19/2003 dmi.bios.vendor: Phoenix Technologies, LTD dmi.bios.version: 3.06 dmi.board.name: Kamet2 dmi.board.vendor: ASUSTek Computer INC. dmi.board.version: 2.01 dmi.chassis.type: 3 dmi.chassis.vendor: Hewlett-Packard dmi.modalias: dmi:bvnPhoenixTechnologies,LTD:bvr3.06:bd12/19/2003:svnCompaqPresario061:pnDT381A-ACJS6020ILIN430:pvr01H0411LX101KAME210:rvnASUSTekComputerINC.:rnKamet2:rvr2.01:cvnHewlett-Packard:ct3:cvr: dmi.product.name: DT381A-ACJ S6020IL IN430 dmi.product.version: 01H0411LX101KAME210 dmi.sys.vendor: Compaq Presario 061 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/574513/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 572063] Re: [NO SOUND] 10.04 - Intel Corporation 82801H HD Audio Controller (rev 03)
Robin, Thank you for reporting this bug to Ubuntu. Ubuntu 10.04 (lucid) reached end-of-life on May 9, 2013. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. Others: Please log separate bugs detailing your own systems. ** Changed in: pulseaudio (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/572063 Title: [NO SOUND] 10.04 - Intel Corporation 82801H HD Audio Controller (rev 03) Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio 1) rprice@alienware:~/Desktop$ lsb_release -rd Description: Ubuntu 10.04 LTS Release: 10.04 - 2) rprice@alienware:~/Desktop$ apt-cache policy pulseaudio pulseaudio: Installed: 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14 Candidate: 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14 Version table: *** 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14 0 500 http://us.archive.ubuntu.com/ubuntu/ lucid/main Packages 100 /var/lib/dpkg/status - 3) Audio to work after installation with both analog and digital (HDMI) - 4) Audio does not work after installation. I have been able to get it working by making a file under /etc/modprobe.d with the following: $ cat /etc/modprobe.d/sound options snd_hda_intel model=mbp3 The problem with this is when I go to use HDMI out to my TV, I have to change analog to digital. When I am done, if I want audio back on the laptop, I have to switch from digital to analog. It doesn't "Just work". Please let me know if I need to upload any other information. I am not very good with audio issues. ;( - ProblemType: Bug DistroRelease: Ubuntu 10.04 Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14 ProcVersionSignature: Ubuntu 2.6.32-21.32-generic 2.6.32.11+drm33.2 Uname: Linux 2.6.32-21-generic x86_64 NonfreeKernelModules: nvidia AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21. Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: rprice 1447 F pulseaudio Card0.Amixer.info: Card hw:0 'Intel'/'HDA Intel at 0xf060 irq 22' Mixer name : 'Realtek ALC889A' Components : 'HDA:10ec0885,152d0770,00100103' Controls : 22 Simple ctrls : 12 Date: Fri Apr 30 01:58:26 2010 ExecutablePath: /usr/bin/pulseaudio InstallationMedia: Ubuntu 10.04 "Lucid Lynx" - Beta amd64 (20100406.1) ProcEnviron: LANG=en_US.utf8 SHELL=/bin/bash SourcePackage: pulseaudio XsessionErrors: (polkit-gnome-authentication-agent-1:1466): GLib-CRITICAL **: g_once_init_leave: assertion `initialization_value != 0' failed (gnome-terminal:1562): Gtk-CRITICAL **: gtk_accel_map_unlock_path: assertion `entry != NULL && entry->lock_count > 0' failed dmi.bios.date: 08/29/2008 dmi.bios.vendor: Quanta dmi.bios.version: vX36 P3 dmi.board.name: m15x dmi.board.vendor: Alienware dmi.board.version: Not Applicable dmi.chassis.type: 1 dmi.chassis.vendor: Alienware dmi.chassis.version: N/A dmi.modalias: dmi:bvnQuanta:bvrvX36P3:bd08/29/2008:svnAlienware:pnm15x:pvrNotApplicable:rvnAlienware:rnm15x:rvrNotApplicable:cvnAlienware:ct1:cvrN/A: dmi.product.name: m15x dmi.product.version: Not Applicable dmi.sys.vendor: Alienware To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/572063/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 378325] Re: X login screen volume always set to max; crazy loud
It's much less than 1% and also incorrect to say "dies of old age" because the counter resets every time a comment is added, and now won't timeout at all since it is confirmed again. I agree with your concern about the Wishlist status. That was set on 2010-02-01 and is not related to the current clean-up but I'll certainly fix it up right now. ** Changed in: pulseaudio (Ubuntu) Importance: Wishlist => High -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/378325 Title: X login screen volume always set to max; crazy loud Status in pulseaudio package in Ubuntu: Confirmed Bug description: Binary package hint: gdm Whenever I boot my laptop from scratch (i.e. not resuming from standy/hibernate), the X/gdm login screen will play a sound effect when it's ready for me to log in. The problem is, this sound effect is always played at the hardware's maximum volume setting (or at least, something insanely loud) which is extremely annoying for other people nearby (and me!) gdm/something should set the volume to some sane level prior to playing this sound. Even better if "gdmsetup" were to allow configuration of the volume. Note, I'm aware of some WARs: * Disable the login sound. Not acceptable: Simply disabling the feature because it's buggy doesn't actually fix the underlying bug. * Plug in headphones, or a dummy jack. Not acceptable: I don't use headphones and hence don't carry them around. I don't want some dummy jack plugged into the side of my laptop, thus changing the laptop's shape (and, I'd have to unplug it after login to use sound) * Various script hacks with "alsactl save/restore". Not acceptable: This feature should "just work" out of the box without my Grandma having to hack at arcane scripts or config files. Note: This issue is visible in Jaunty Jackalope i386 (and presumably all arch's) on either the live CD or an HD-based installation. Note that to fix this on the live CD, a gdmsetup-based volume configuration option wouldn't be useful, because a) it wouldn't solve the issue for the first boot, and b) there's nowhere to store the configuration across reboots (or if there is, it's sufficiently complex that my Grandma couldn't use it) To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/378325/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 578853] Re: After changing device profile to "Off", it can't be reenabled without restarting pulseaudio
Thank you for reporting this bug to Ubuntu. Ubuntu 12.04 (precise) reached end-of-life on April 28, 2017. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/578853 Title: After changing device profile to "Off", it can't be reenabled without restarting pulseaudio Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio In the sound preferences "Hardware" tab, if I change the Profile for a device to "Off", all sound stops and all sound-related settings are disabled - so far so good. But, when I switch it back to "Analog Stereo Duplex", input is still disabled, only "Dummy Output" is listed in the output tab, and all sound and volume controls are still disabled. Only fix is to restart pulseaudio. Not a big issue - I only did this by accident, it's not going to be a common action - but I figure as long as the profiles are there they should work properly. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/578853/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 579062] Re: lucid makes 0d8c:0006 usb headset stop working
Thank you for reporting this bug to Ubuntu. Ubuntu 10.04 (lucid) reached end-of-life on May 9, 2013. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/579062 Title: lucid makes 0d8c:0006 usb headset stop working Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio Worked fine in 9.10, so I'm guessing it's not an upstream bug (plus, FreeNode#pulseaudio suggested to file a bug here). More exactly, there's only an "input", no "output". So I can use the microphone but they headset's speakers remain silent. In 9.10 everything was plug-and-play, no problems at all. Attaching output of pulseaudio - from startup, plugging in of the device, clicking through the sound preferences and unplugging the device again. Also attaching lsusb -v output for the device. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/579062/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 577873] Re: Soundblaster 5.1 live. Choppy sound and not all speakers working with Pulseaudio
Thank you for reporting this bug to Ubuntu. Ubuntu 10.04 (lucid) reached end-of-life on May 9, 2013. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/577873 Title: Soundblaster 5.1 live. Choppy sound and not all speakers working with Pulseaudio Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio In 5.1 analog output "Sound only comes out of the Sub and the rear left speaker and it is choppy / chirpy. in 2.0 stereo duplex, the sound quality is fine but it only comes out of the Sub and front right. Using: Ubuntu Lucid 32bit Please let me know if any more info is required. ProblemType: Bug DistroRelease: Ubuntu 10.04 Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14 ProcVersionSignature: Ubuntu 2.6.32-22.33-generic 2.6.32.11+drm33.2 Uname: Linux 2.6.32-22-generic i686 AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21. Architecture: i386 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC1: neil 1076 F pulseaudio /dev/snd/controlC0: neil 1076 F pulseaudio Card0.Amixer.info: Card hw:0 'Live'/'SB Live! 5.1 (rev.7, serial:0x80641102) at 0x8000, irq 18' Mixer name : 'SigmaTel STAC9708,11' Components : 'AC97a:83847608' Controls : 224 Simple ctrls : 45 Card1.Amixer.info: Card hw:1 'U0x20400x7200'/'USB Device 0x2040:0x7200 at usb-:00:03.3-6, high speed' Mixer name : 'USB Mixer' Components : 'USB2040:7200' Controls : 1 Simple ctrls : 1 Card1.Amixer.values: Simple mixer control 'Digital In',0 Capabilities: cswitch cswitch-joined penum Capture channels: Mono Mono: Capture [on] Date: Sun May 9 11:04:17 2010 InstallationMedia: Ubuntu 10.04 LTS "Lucid Lynx" - Release i386 (20100429) ProcEnviron: PATH=(custom, no user) LANG=en_CA.utf8 SHELL=/bin/bash SourcePackage: pulseaudio dmi.bios.date: 11/11/2003 dmi.bios.vendor: Award Software, Inc. dmi.bios.version: ASUS P4S533-X ACPI BIOS Revision 1005 Beta 004 dmi.board.name: P4S533-X dmi.board.vendor: ASUSTeK Computer INC. dmi.board.version: REV 1.xx dmi.chassis.asset.tag: Asset-1234567890 dmi.chassis.type: 7 dmi.chassis.vendor: Chassis Manufacture dmi.chassis.version: Chassis Version dmi.modalias: dmi:bvnAwardSoftware,Inc.:bvrASUSP4S533-XACPIBIOSRevision1005Beta004:bd11/11/2003:svnSystemManufacturer:pnSystemName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP4S533-X:rvrREV1.xx:cvnChassisManufacture:ct7:cvrChassisVersion: dmi.product.name: System Name dmi.product.version: System Version dmi.sys.vendor: System Manufacturer To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/577873/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 577867] Re: Pulseaudio has high latency on stop and start audio playback
Thank you for reporting this bug to Ubuntu. Ubuntu 10.04 (lucid) reached end-of-life on May 9, 2013. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/577867 Title: Pulseaudio has high latency on stop and start audio playback Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio When starting or stopping audio playback there is a latency between keypressing and reaction of the sound system. Uninstalling pulseaudio caused the problem to vanish. Problem is similar to https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/288090 but occurs on karmic. Ubuntu 10.04 LTS pulseaudio: Installed: (none) Candidate: 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14 Version table: 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14 0 500 http://de.archive.ubuntu.com/ubuntu/ lucid/main Packages 100 /var/lib/dpkg/status To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/577867/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 582329] Re: Audio skipping since 10.04
Thank you for reporting this bug to Ubuntu. Ubuntu 10.04 (lucid) reached end-of-life on May 9, 2013. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/582329 Title: Audio skipping since 10.04 Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio I noticed sound skipping since I've moved from 9.10 to 10.04. At first I thought it was the shows I was watching or boxee, but I then noticed it's with all audio. No cracks or pops really, just skipping, in TV shows you almost don't notice most of the time except it's like they just didn't say whatever word got skipped. Music you notice more because the beet misses as well as the words. ProblemType: Bug DistroRelease: Ubuntu 10.04 Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14 ProcVersionSignature: Ubuntu 2.6.32-22.33-generic 2.6.32.11+drm33.2 Uname: Linux 2.6.32-22-generic i686 NonfreeKernelModules: nvidia AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21. Architecture: i386 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: s7726 1723 F pulseaudio /dev/snd/pcmC0D0p: s7726 1723 F...m pulseaudio Card0.Amixer.info: Card hw:0 'V8237'/'VIA 8237 with CMI9761A+ at 0xe400, irq 22' Mixer name : 'C-Media Electronics CMI9761A+' Components : 'AC97a:434d4983' Controls : 41 Simple ctrls : 30 Date: Tue May 18 08:48:55 2010 ProcEnviron: PATH=(custom, user) LANG=en_US.utf8 SHELL=/bin/bash SelectedCard: 0 V8237 VIA8237 - VIA 8237 SourcePackage: pulseaudio SpeakerTestAlsaStderr: W r i t e e r r o r : - 5 , I n p u t / o u t p u t e r r o r x r u n _ r e c o v e r y f a i l e d : - 5 , I n p u t / o u t p u t e r r o r T r a n s f e r f a i l e d : O p e r a t i o n n o t p e r m i t t e d Symptom: audio Title: [VIA8237 - VIA 8237] PA test tone failed (alsa tone succeeded) dmi.bios.date: 07/24/2006 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: 080012 dmi.board.asset.tag: dmi.board.name: P4V8X-MX dmi.board.vendor: ASUSTeK Computer INC. dmi.board.version: Rev 2.00 dmi.chassis.asset.tag: dmi.chassis.type: 3 dmi.chassis.vendor: Chassis Manufacture dmi.chassis.version: 1.00 dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvr080012:bd07/24/2006:svnSystemmanufacturer:pnP4V8X-MX:pvr1.00:rvnASUSTeKComputerINC.:rnP4V8X-MX:rvrRev2.00:cvnChassisManufacture:ct3:cvr1.00: dmi.product.name: P4V8X-MX dmi.product.version: 1.00 dmi.sys.vendor: System manufacturer To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/582329/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 581370] Re: airport express chops sound when streaming from the net
Thank you for reporting this bug to Ubuntu. Ubuntu 10.04 (lucid) reached end-of-life on May 9, 2013. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/581370 Title: airport express chops sound when streaming from the net Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio running lucid lynx. communicating well with airport express and streaming music from rhythmbox works perfectly. Streaming sound from the net is hopeless though - any radiostation, tv program etc. will stream with the sound chopped every second or so. With windows+airfoil it works perfectly. When streaming tv from the computer, the images slow down significantly when the AE is connected - seems like the network is overloaded. Pulseaudio-raop may be doing something strange - but then again, it does work smoothly with the music collection in rhythmbox (??). To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/581370/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 579969] Re: regular sound drops when using Spotify in Wine, Rhythmbox or Clementine
Thank you for reporting this bug to Ubuntu. Ubuntu 10.04 (lucid) reached end-of-life on May 9, 2013. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/579969 Title: regular sound drops when using Spotify in Wine, Rhythmbox or Clementine Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio Using Spotify with ALSA backend, as well as Rhythmbox and Clementine, they will play a few songs then randomly stop playing. Playing other songs does not fix it but restarting the program does. When this has happened, it also kills audio for flash in Opera. ProblemType: Bug DistroRelease: Ubuntu 10.04 Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14 ProcVersionSignature: Ubuntu 2.6.32-22.33-generic-pae 2.6.32.11+drm33.2 Uname: Linux 2.6.32-22-generic-pae i686 AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21. Architecture: i386 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: jack 1789 F pulseaudio /dev/snd/pcmC0D0p: jack 1789 F...m pulseaudio Card0.Amixer.info: Card hw:0 'Intel'/'HDA Intel at 0xf0b4 irq 22' Mixer name : 'Realtek ALC861-VD' Components : 'HDA:10ec0862,11791205,0011 HDA:11c13026,11790001,00100700' Controls : 13 Simple ctrls : 9 Date: Thu May 13 14:28:18 2010 InstallationMedia: Ubuntu 9.10 "Karmic Koala" - Release i386 (20091028.5) ProcEnviron: PATH=(custom, user) LANG=en_GB.utf8 SHELL=/bin/bash SourcePackage: pulseaudio dmi.bios.date: 07/12/2007 dmi.bios.vendor: Phoenix Technologies LTD dmi.bios.version: 6.00 dmi.board.name: CAPELL VALLEY(NAPA) CRB dmi.board.vendor: Intel Corporation dmi.board.version: Not Applicable dmi.chassis.asset.tag: No Asset Tag dmi.chassis.type: 1 dmi.chassis.vendor: No Enclosure dmi.chassis.version: N/A dmi.modalias: dmi:bvnPhoenixTechnologiesLTD:bvr6.00:bd07/12/2007:svnTOSHIBA:pnSatelliteA100:pvrPSAANE-02C02EEN:rvnIntelCorporation:rnCAPELLVALLEY(NAPA)CRB:rvrNotApplicable:cvnNoEnclosure:ct1:cvrN/A: dmi.product.name: Satellite A100 dmi.product.version: PSAANE-02C02EEN dmi.sys.vendor: TOSHIBA To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/579969/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 581135] Re: Pulseaudio is not running (either crashes at startup or never initalizes)
Thank you for reporting this bug to Ubuntu. Ubuntu 10.04 (lucid) reached end-of-life on May 9, 2013. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete ** Changed in: pulseaudio (Ubuntu) Assignee: ViCIo (tithor) => (unassigned) -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/581135 Title: Pulseaudio is not running (either crashes at startup or never initalizes) Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio System Description: Ubuntu 10.04 LTS Release: 10.04 Package version and build pulseaudio: Installed: 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14 Candidate: 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14 Version table: *** 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14 0 500 http://us.archive.ubuntu.com/ubuntu/ lucid/main Packages 100 /var/lib/dpkg/status More information on audio. http://www.alsa-project.org/db/?f=374b42219c927b13bd6347afb7833e184302b1e5 I added these options so my audio jack works correctly (Ubuntu would not recognize when I plug my headphones into the audio jack since 9.04.) I have been using them since Ubuntu 9.04. The bugs below were not affected by these options. I had to add them again after installation. options snd-pcsp index=-2 alias snd-card-0 snd-hda-intel alias sound-slot-0 snd-hda-intel options snd-hda-intel model=hp-dv5 options snd-hda-intel enable_msi=1 Two issues: 1) The volume control applet does not work. When I move the volume slider from the left to right it should change the volume. Instead.. the music works (with multiple programs playing at the same time) the volume control slider reports the audio device is mute. When I move the slider the volume stays the same. GNOME Alsa Mixer can change and mute the sound. When I click on Sound Preferences I get a dialog saying "waiting for sound system to respond". It never changes. Pulseaudio is not running so I try running it. The volume control reports audio however there is no audio. Same with esound. If either is killed sound returns. 2) When I run my sdl game and call the function mix_OpenAudio - reports there is no audio device. In Ubuntu 9.10 it would initialise an audio device to play music just fine. Once again I never had this bug with Ubuntu 9.10. ProblemType: Bug DistroRelease: Ubuntu 10.04 Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14 ProcVersionSignature: Ubuntu 2.6.32-22.33-generic 2.6.32.11+drm33.2 Uname: Linux 2.6.32-22-generic i686 AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.22.1. Compiled on Apr 29 2010 for kernel 2.6.32-22-generic (SMP). Architecture: i386 ArecordDevices: List of CAPTURE Hardware Devices card 0: SB [HDA ATI SB], device 0: STAC92xx Analog [STAC92xx Analog] Subdevices: 1/1 Subdevice #0: subdevice #0 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: john 2813 F totem /dev/snd/pcmC0D0p: john 2813 F...m totem /dev/snd/timer: john 2813 f totem Card0.Amixer.info: Card hw:0 'SB'/'HDA ATI SB at 0xf240 irq 16' Mixer name : 'IDT 92HD75B3X5' Components : 'HDA:111d7603,103c3635,00100202 HDA:11c11040,103c137e,00100200' Controls : 22 Simple ctrls : 14 Card1.Amixer.info: Card hw:1 'HDMI'/'HDA ATI HDMI at 0xf231 irq 29' Mixer name : 'ATI RS690/780 HDMI' Components : 'HDA:1002791a,00791a00,0010' Controls : 4 Simple ctrls : 1 Card1.Amixer.values: Simple mixer control 'IEC958',0 Capabilities: pswitch pswitch-joined penum Playback channels: Mono Mono: Playback [off] CheckboxSubmission: 7f7dc5c430c3fd443a6bff6a7f628070 CheckboxSystem: e704f33cc0866ff0f0256a33de39ea1c Date: Sat May 15 17:05:09 2010 InstallationMedia: Ubuntu 9.10 "Karmic Koala" - Release i386 (20091028.5) ProcEnviron: LANG=en_US.utf8 SHELL=/bin/bash SourcePackage: pulseaudio Symptom: audio Title: Pulseaudio is not running dmi.bios.date: 10/15/2009 dmi.bios.vendor: Hewlett-Packard dmi.bios.version: F.08 dmi.board.name: 3635 dmi.board.vendor: Quanta dmi.board.version: 33.22 dmi.chassis.type: 10 dmi.chassis.vendor: Quanta dmi.chassis.version: N/A dmi.modalias: dmi:bvnHewlett-Packard:bvrF.08:bd10/15/2009:svnHewlett-Packard:pnHPPaviliondv6NotebookPC:pvr039F202412102:rvnQuanta:rn3635:rvr33.22:cvnQuanta:ct10:cvrN/A: dmi.product.name: HP Pavilion dv6 Notebook PC dmi.product.version: 039F202412102 dmi.sys.vendor: Hewlett-Packard To manage notifications about
[Touch-packages] [Bug 579290] Re: Adjusting volume gives uneven response
Thank you for reporting this bug to Ubuntu. Ubuntu 10.04 (lucid) reached end-of-life on May 9, 2013. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/579290 Title: Adjusting volume gives uneven response Status in pulseaudio package in Ubuntu: Incomplete Bug description: I am listening to music using Rhythmbox. To adjust the volume I use the vol -/+ keys built in to my Microsoft Natural 4000 keyboard. This arrangement worked fine in 9.10. A pop-up OSD in the top-right of the screen appeared whenever I changed the volume. The full range of this indicator (from empty to full) correctly corresponded to the full range of silence to maximum volume output over my headphones. Since upgrading to 10.04, the control behaves as follows. At the lowest setting, I get no sound output, as expected. With one press of the vol+ key, the bar becomes one notch full (I note there appear to be 18 discrete values that the OSD can indicate). However, the sound output is fairly loud: around half of the maximum output. After two presses of the vol+ key, the bar is only about 10% full, but the sound output is at or near the maximum (uncomfortably loud through my headphones). Successive presses of vol+ continue to raise the indicated volume, but have no discernible effect on the output volume. I can watch what's going on in alsamixer while I press the vol -/+ keys. (side note: alsamixer says 'Card: HDA ATI SB' and 'Chip: VIA VT1708S'). At volume zero, the bars marked Master Front, PCM and Front are all on zero, and are marked as muted. On volume notch one (after one press of vol+), those channels are marked as unmuted, and have respective values 0, 98, 60. After two presses 0, 98, 88. After three presses 6, 98, 100. Successive presses just increase the Master Front value. If I manually scale the PCM and Front columns using the arrow keys, I get the expected response. i.e. perceived volume output is proportional to the product of PCM and Front. I'm using a Dell Inspiron 546. uname -a gives: Linux alma 2.6.31-17-generic #54-Ubuntu SMP Thu Dec 10 17:01:44 UTC 2009 x86_64 GNU/Linux The bits of lspci that I think are relevant: 00:14.2 Audio device: ATI Technologies Inc SBx00 Azalia (Intel HDA) 01:05.1 Audio device: ATI Technologies Inc RS780 Azalia controller Expected behaviour: output volume scales linearly with the scale displayed on screen. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/579290/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 579599] Re: Glitchy Sound on HDA Intel 5/3400 Series
Thank you for reporting this bug to Ubuntu. Ubuntu 9.04 (jaunty) reached end-of-life on October 23, 2010. Ubuntu 9.10 (karmic) reached end-of-life on April 30, 2011. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: New => Incomplete ** Changed in: gstreamer0.10 (Ubuntu) Status: New => Incomplete ** Changed in: alsa-driver (Ubuntu) Status: New => Incomplete ** Project changed: alsa-driver => mir ** No longer affects: mir -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to gstreamer0.10 in Ubuntu. https://bugs.launchpad.net/bugs/579599 Title: Glitchy Sound on HDA Intel 5/3400 Series Status in alsa-driver package in Ubuntu: Incomplete Status in gstreamer0.10 package in Ubuntu: Incomplete Status in pulseaudio package in Ubuntu: Incomplete Bug description: Sound DOES work, it has high quality and whatnot but the problem: Glitchy sound output whenever the system sounds play, or when I change the volume either via panel or alsamixer. removed pulse, as that's what I thought the problem was, but ALSA still has the problem. Will attach files of some logs you might be interested in. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/579599/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 584322] Re: External Microphone is not recording in Ubuntu 10.04; it is picking up only noise
Thank you for reporting this bug to Ubuntu. Ubuntu 10.04 (lucid) reached end-of-life on May 9, 2013. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/584322 Title: External Microphone is not recording in Ubuntu 10.04; it is picking up only noise Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio I updated from Karmic to Lucid, and my external mic has stopped working since. I tried the advices of several forums, tweaked with the model parameter in /etc/modprobe.d/alsa-base.conf, tweaked with alsamixer but nothing has worked. ProblemType: Bug DistroRelease: Ubuntu 10.04 Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14 ProcVersionSignature: Ubuntu 2.6.32-22.33-generic 2.6.32.11+drm33.2 Uname: Linux 2.6.32-22-generic i686 NonfreeKernelModules: wl .etc.asound.conf: pcm.pulse { type pulse } ctl.pulse { type pulse } pcm.!default { type pulse } ctl.!default { type pulse } AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.23. Compiled on May 21 2010 for kernel 2.6.32-22-generic (SMP). Architecture: i386 ArecordDevices: List of CAPTURE Hardware Devices card 0: Intel [HDA Intel], device 0: CONEXANT Analog [CONEXANT Analog] Subdevices: 1/1 Subdevice #0: subdevice #0 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: arindam4414 F pulseaudio arindam7129 F mixer_applet2 Card0.Amixer.info: Card hw:0 'Intel'/'HDA Intel at 0xd824 irq 26' Mixer name : 'Conexant CX20549 (Venice)' Components : 'HDA:14f15045,103c30bb,00100100' Controls : 19 Simple ctrls : 9 Date: Sat May 22 14:34:34 2010 ProcEnviron: LANGUAGE=en_US:en PATH=(custom, no user) LANG=en_US.utf8 SHELL=/bin/bash SourcePackage: pulseaudio dmi.bios.date: 11/13/2007 dmi.bios.vendor: Hewlett-Packard dmi.bios.version: F.29 dmi.board.name: 30BB dmi.board.vendor: Quanta dmi.board.version: 66.40 dmi.chassis.type: 10 dmi.chassis.vendor: Quanta dmi.chassis.version: N/A dmi.modalias: dmi:bvnHewlett-Packard:bvrF.29:bd11/13/2007:svnHewlett-Packard:pnPresarioV6000(GG228PA#ACJ):pvrRev1:rvnQuanta:rn30BB:rvr66.40:cvnQuanta:ct10:cvrN/A: dmi.product.name: Presario V6000 (GG228PA#ACJ) dmi.product.version: Rev 1 dmi.sys.vendor: Hewlett-Packard To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/584322/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 587008] Re: Pulseaudio not properly shutdown on logout
Corey, Thank you for reporting this bug to Ubuntu. Ubuntu 10.04 (lucid) reached end-of-life on May 9, 2013. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. Others: If you have ongoing issues please log separate bugs. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/587008 Title: Pulseaudio not properly shutdown on logout Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio I have two systems with multiple users, this one I'm reporting on and and AMD 64 desktop. On both systems when I logout of one user and into another. the PA daemon is not shutdown and restarted as the new user so sound stops working. I can shutdown the old instance of PA from the terminal as the former user or sudo, and PA will automagicly restart with the correct user id. I had this problem in karmic as well but was unsure of the cause due to other PA issues and fixes I'd tried, this system however has not been messed with. ProblemType: Bug DistroRelease: Ubuntu 10.04 Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14 ProcVersionSignature: Ubuntu 2.6.32-22.33-generic 2.6.32.11+drm33.2 Uname: Linux 2.6.32-22-generic i686 AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21. AplayDevices: Home directory /home/vgadmin not ours. List of PLAYBACK Hardware Devices card 0: Intel [HDA Intel], device 0: ALC272 Analog [ALC272 Analog] Subdevices: 1/1 Subdevice #0: subdevice #0 Architecture: i386 ArecordDevices: Home directory /home/vgadmin not ours. List of CAPTURE Hardware Devices card 0: Intel [HDA Intel], device 0: ALC272 Analog [ALC272 Analog] Subdevices: 1/1 Subdevice #0: subdevice #0 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: cherished 1483 F pulseaudio Card0.Amixer.info: Card hw:0 'Intel'/'HDA Intel at 0x5834 irq 16' Mixer name : 'Realtek ALC272' Components : 'HDA:10ec0272,1025022f,0011' Controls : 14 Simple ctrls : 8 Date: Fri May 28 16:15:39 2010 InstallationMedia: Ubuntu-Netbook 10.04 "Lucid Lynx" - Release i386 (20100429.4) ProcEnviron: PATH=(custom, no user) LANG=en_CA.utf8 SHELL=/bin/bash SourcePackage: pulseaudio dmi.bios.date: 06/24/2009 dmi.bios.vendor: Acer dmi.bios.version: V1.07 dmi.board.asset.tag: Base Board Asset Tag dmi.board.name: Aspire one dmi.board.vendor: Acer dmi.board.version: V1.07 dmi.chassis.type: 10 dmi.chassis.vendor: Acer dmi.chassis.version: V1.07 dmi.modalias: dmi:bvnAcer:bvrV1.07:bd06/24/2009:svnAcer:pnAspireone:pvrV1.07:rvnAcer:rnAspireone:rvrV1.07:cvnAcer:ct10:cvrV1.07: dmi.product.name: Aspire one dmi.product.version: V1.07 dmi.sys.vendor: Acer To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/587008/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1492180] Re: iwconfig reports wrong bitrate (6 Mb/s)
For conky use this: ${execi 10 iw dev wlp3s0 link | grep rate | awk '{print $3}'} Mbit/s -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to wireless-tools in Ubuntu. https://bugs.launchpad.net/bugs/1492180 Title: iwconfig reports wrong bitrate (6 Mb/s) Status in One Hundred Papercuts: Confirmed Status in wireless-tools package in Ubuntu: Confirmed Bug description: Upgraded to Wily. iwconfig now says the Bitrate is 6 Mb/s when 'iw dev wlan0 link' seems to report the correct bitrate. Firmware iwlwifi-7260-13.ucode ProblemType: Bug DistroRelease: Ubuntu 15.10 Package: wireless-tools 30~pre9-8ubuntu1 ProcVersionSignature: Ubuntu 4.1.0-3.3-generic 4.1.3 Uname: Linux 4.1.0-3-generic x86_64 NonfreeKernelModules: wl ApportVersion: 2.18-0ubuntu9 Architecture: amd64 CurrentDesktop: XFCE Date: Fri Sep 4 12:43:52 2015 Dependencies: gcc-5-base 5.2.1-15ubuntu5 libc6 2.21-0ubuntu4 libgcc1 1:5.2.1-15ubuntu5 libiw30 30~pre9-8ubuntu1 multiarch-support 2.21-0ubuntu4 InstallationDate: Installed on 2011-11-11 (1393 days ago) InstallationMedia: Xubuntu 11.10 "Oneiric Ocelot" - Release amd64 (20111012) SourcePackage: wireless-tools UpgradeStatus: Upgraded to wily on 2015-09-04 (0 days ago) To manage notifications about this bug go to: https://bugs.launchpad.net/hundredpapercuts/+bug/1492180/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 586540] Re: [CA0106/AudigyLS] sound card does not work unless rebooted from windows
The firmware theory is a common one. Some laptops have the same problem. But also... Thank you for reporting this bug to Ubuntu. Ubuntu 10.04 (lucid) reached end-of-life on May 9, 2013. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/586540 Title: [CA0106/AudigyLS] sound card does not work unless rebooted from windows Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio My machine has two sound cards, the first one is the onboard card and the second card (Creative Sound Blaster 5.1 VX) Its detected as "CA0106 Sound Blaster" by pulseaudio. This second card does not work (hissing sound when playing any audio) if I boot directly into ubuntu but works fine if I boot into windows first and then reboot and go to ubuntu. My friend says the card probably uses some firmware which ubuntu is unable to initialize. Hence it works fine when I reboot from windows xp. Let me know if you need any more info. Would really appreciate it if this is fixed, I hate going into windows just to get sound working on ubuntu. Thanks, Relson. ProblemType: Bug DistroRelease: Ubuntu 10.04 Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14 ProcVersionSignature: Ubuntu 2.6.32-21.32-generic 2.6.32.11+drm33.2 Uname: Linux 2.6.32-21-generic i686 NonfreeKernelModules: nvidia AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21. Architecture: i386 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC1: relson 1357 F pulseaudio /dev/snd/controlC0: relson 1357 F pulseaudio Card0.Amixer.info: Card hw:0 'CA0106'/'AudigyLS [Unknown] at 0x1040 irq 21' Mixer name : 'CA0106' Components : '' Controls : 25 Simple ctrls : 13 Card1.Amixer.info: Card hw:1 'Intel'/'HDA Intel at 0x5310 irq 22' Mixer name : 'SigmaTel STAC9227' Components : 'HDA:83847618,8086a201,00100201' Controls : 37 Simple ctrls : 24 CurrentDmesg: [ 23.232008] eth0: no IPv6 routers present Date: Fri May 28 01:43:12 2010 InstallationMedia: Ubuntu 10.04 LTS "Lucid Lynx" - Release i386 (20100429) ProcEnviron: LANG=en_IN SHELL=/bin/bash SourcePackage: pulseaudio dmi.bios.date: 09/11/2006 dmi.bios.vendor: Intel Corp. dmi.bios.version: TS94610J.86A.0047.2006.0911.0110 dmi.board.asset.tag: Base Board Asset Tag dmi.board.name: D946GZIS dmi.board.vendor: Intel Corporation dmi.board.version: AAD66165-302 dmi.chassis.type: 2 dmi.modalias: dmi:bvnIntelCorp.:bvrTS94610J.86A.0047.2006.0911.0110:bd09/11/2006:svn:pn:pvr:rvnIntelCorporation:rnD946GZIS:rvrAAD66165-302:cvn:ct2:cvr: To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/586540/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 584213] Re: no sound with pulseaudio, amarok = ok
Thank you for reporting this bug to Ubuntu. Ubuntu 10.04 (lucid) reached end-of-life on May 9, 2013. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/584213 Title: no sound with pulseaudio, amarok = ok Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio Hello, I have no sound on my computer when using totem, vlc or firefox (throu flash app). Sound in Amarok works well (but not in Kaffeine) Here are some outputs: $ aplay -l Liste des PLAYBACK périphériques carte 0: SB [HDA ATI SB], périphérique 0 : ALC883 Analog [ALC883 Analog] Sous-périphériques: 0/1 Sous-périphérique: #0: subdevice #0 carte 0: SB [HDA ATI SB], périphérique 1 : ALC883 Digital [ALC883 Digital] Sous-périphériques: 1/1 Sous-périphérique: #0: subdevice #0 $ lspci | grep -i audio 00:14.2 Audio device: ATI Technologies Inc SBx00 Azalia (Intel HDA) If you need anymore information, please ask. Sorry for my english. ProblemType: Bug DistroRelease: Ubuntu 10.04 Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14 ProcVersionSignature: Ubuntu 2.6.32-22.33-generic 2.6.32.11+drm33.2 Uname: Linux 2.6.32-22-generic i686 NonfreeKernelModules: nvidia AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21. Architecture: i386 AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/dsp', '/dev/snd/seq', '/dev/snd/by-path', '/dev/snd/controlC0', '/dev/snd/hwC0D0', '/dev/snd/pcmC0D0c', '/dev/snd/pcmC0D0p', '/dev/snd/pcmC0D1c', '/dev/snd/pcmC0D1p', '/dev/snd/pcmC0D2c', '/dev/snd/timer', '/dev/sequencer2', '/dev/sequencer'] failed with exit code 1: Card0.Amixer.info: Card hw:0 'SB'/'HDA ATI SB at 0xfe02 irq 16' Mixer name : 'Realtek ALC883' Components : 'HDA:10ec0883,10438232,0012' Controls : 38 Simple ctrls : 21 Date: Sat May 22 15:42:48 2010 InstallationMedia: Ubuntu 10.04 LTS "Lucid Lynx" - Release i386 (20100429) ProcEnviron: LANG=fr_BE.utf8 SHELL=/bin/bash SourcePackage: pulseaudio dmi.bios.date: 09/11/2007 dmi.bios.vendor: Phoenix Technologies, LTD dmi.bios.version: ASUS M2A-VM ACPI BIOS Revision 1301 dmi.board.name: M2A-VM dmi.board.vendor: ASUSTeK Computer INC. dmi.board.version: 1.XX dmi.chassis.asset.tag: 123456789000 dmi.chassis.type: 3 dmi.chassis.vendor: Chassis Manufacture dmi.chassis.version: Chassis Version dmi.modalias: dmi:bvnPhoenixTechnologies,LTD:bvrASUSM2A-VMACPIBIOSRevision1301:bd09/11/2007:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnM2A-VM:rvr1.XX:cvnChassisManufacture:ct3:cvrChassisVersion: dmi.product.name: System Product Name dmi.product.version: System Version dmi.sys.vendor: System manufacturer To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/584213/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 582849] Re: Multiple capture in same card are not used
Thank you for reporting this bug to Ubuntu. Ubuntu 10.04 (lucid) reached end-of-life on May 9, 2013. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Triaged => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/582849 Title: Multiple capture in same card are not used Status in pulseaudio package in Ubuntu: Incomplete Bug description: The user wants to be able to do multichannel recording with pulseaudio. In this case, we must first make sure that the two subdevices show up independently, then make sure there is a way to combine them into one four channel stream. Binary package hint: pulseaudio With Sound card with multiple capture controls (2 source can be read at the same time), only one is used. On my Gigabyte GA-770TA-UD3 motherboard with a Realtek ALC888 integrated sound card [1002:4383], alsamixer show 2 capture device (card name HDA ATI SB) named Capture and Capture 1. --- AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21. Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC2: mahoru 1762 F pulseaudio /dev/snd/controlC0: mahoru 1762 F pulseaudio /dev/snd/pcmC0D0c: mahoru 1762 F...m pulseaudio /dev/snd/pcmC0D0p: mahoru 1762 F...m pulseaudio Card0.Amixer.info: Card hw:0 'SB'/'HDA ATI SB at 0xfe024000 irq 16' Mixer name : 'Realtek ALC888' Components : 'HDA:10ec0888,1458a042,0011' Controls : 40 Simple ctrls : 22 Card1.Amixer.info: Card hw:1 'Bt878'/'Brooktree Bt878 at 0xfd9fe000, irq 23' Mixer name : 'Bt87x' Components : '' Controls : 3 Simple ctrls : 5 Card2.Amixer.info: Card hw:2 'Namtai'/'Sony corporation EyeToy USB camera Namtai at usb-:00:13.1-3, full speed' Mixer name : 'USB Mixer' Components : 'USB054c:0155' Controls : 0 Simple ctrls : 0 Card2.Amixer.values: DistroRelease: Ubuntu 10.04 InstallationMedia: Ubuntu 10.04 "Lucid Lynx" - Beta amd64 (20100406) NonfreeKernelModules: nvidia Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14 PackageArchitecture: amd64 ProcEnviron: PATH=(custom, user) LANG=fr_FR.utf8 SHELL=/bin/zsh ProcVersionSignature: Ubuntu 2.6.32-22.33-generic 2.6.32.11+drm33.2 Tags: lucid Uname: Linux 2.6.32-22-generic x86_64 UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare vboxusers dmi.bios.date: 11/19/2009 dmi.bios.vendor: Award Software International, Inc. dmi.bios.version: F1 dmi.board.name: GA-770TA-UD3 dmi.board.vendor: Gigabyte Technology Co., Ltd. dmi.board.version: x.x dmi.chassis.type: 3 dmi.chassis.vendor: Gigabyte Technology Co., Ltd. dmi.modalias: dmi:bvnAwardSoftwareInternational,Inc.:bvrF1:bd11/19/2009:svnGigabyteTechnologyCo.,Ltd.:pnGA-770TA-UD3:pvr:rvnGigabyteTechnologyCo.,Ltd.:rnGA-770TA-UD3:rvrx.x:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvr: dmi.product.name: GA-770TA-UD3 dmi.sys.vendor: Gigabyte Technology Co., Ltd. mtime.conffile..etc.pulse.daemon.conf: 2010-05-19T23:51:13.247673 mtime.conffile..etc.pulse.default.pa: 2010-05-19T15:16:40.957753 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/582849/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 584917] Re: Lost sound on Youtube html5 video
kangaroo, Thank you for reporting this bug to Ubuntu. Ubuntu 10.04 (lucid) reached end-of-life on May 9, 2013. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/584917 Title: Lost sound on Youtube html5 video Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio Using google-chrome in youtube.com/html5 activated html5 video player opened 5 yt videos and 20 other tabs video playing till middle then99% of YT player screen stoped showing video playing only in timeline 1% of screen then clicked video timeline to change position and played for 5sec and sound was repeating 1/2 sec long sound part about 1min then no sound anymore on chrome. ProblemType: Bug DistroRelease: Ubuntu 10.04 Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14 ProcVersionSignature: Ubuntu 2.6.32-22.33-generic 2.6.32.11+drm33.2 Uname: Linux 2.6.32-22-generic i686 NonfreeKernelModules: nvidia AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21. AplayDevices: List of PLAYBACK Hardware Devices card 0: rev20 [VIA 82C686A/B rev20], device 0: VIA 82C686A/B rev20 [VIA 82C686A/B rev20] Subdevices: 0/1 Subdevice #0: subdevice #0 Architecture: i386 ArecordDevices: List of CAPTURE Hardware Devices card 0: rev20 [VIA 82C686A/B rev20], device 0: VIA 82C686A/B rev20 [VIA 82C686A/B rev20] Subdevices: 1/1 Subdevice #0: subdevice #0 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: kng1077 F xfce4-volumed kng1091 F pulseaudio kng1164 F xfce4-mixer-plu /dev/snd/pcmC0D0p: kng1091 F...m pulseaudio Card0.Amixer.info: Card hw:0 'rev20'/'VIA 82C686A/B rev20 with AD1881A at 0xdc00, irq 10' Mixer name : 'Analog Devices AD1881A' Components : 'AC97a:41445348' Controls : 31 Simple ctrls : 21 Date: Mon May 24 14:01:56 2010 InstallationMedia: Xubuntu 10.04 "Lucid Lynx" - Release i386 (20100429) ProcEnviron: LANG=en_US.utf8 SHELL=/bin/bash SourcePackage: pulseaudio dmi.bios.date: 08/03/2000 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: 62710 dmi.board.name: 6VX7-4X dmi.board.vendor: GIGABYTE dmi.board.version: 1.0 dmi.chassis.asset.tag: dmi.chassis.type: 3 dmi.chassis.version: Version 1.00 dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvr62710:bd08/03/2000:svnFujitsuSiemens:pnVIA694X/686A:pvr:rvnGIGABYTE:rn6VX7-4X:rvr1.0:cvn:ct3:cvrVersion1.00: dmi.product.name: VIA694X/686A dmi.product.version: dmi.sys.vendor: Fujitsu Siemens To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/584917/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 585770] Re: [Lucid] pulseaudio stops playing any sounds. No error messages. Possibly after muting volume
Thank you for reporting this bug to Ubuntu. Ubuntu 10.04 (lucid) reached end-of-life on May 9, 2013. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/585770 Title: [Lucid] pulseaudio stops playing any sounds. No error messages. Possibly after muting volume Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio On 9.10 sometimes sound died. It seems to be a bit more common on Lucid. Possible factors: - Having multiply sessions (i.e. user foo at VT7, user bar at VT8) - Switching between VT7 VT8 VT1 etc - Sometimes using flash Sound was working. I muted the sound (using key on keyboard), it was muted. Then I unmuted sound, but nothing was playing then. Also, when I play a movie in mplayer then it hangs on first frame waiting probably to contact pulse audio. When I use -ao null then it works (plays the video only). Killed all firefoxes, didnt help. Killed and restarted pulseaudio didnt help. Nothing in dmesg. $ lspci 00:00.0 Host bridge: Intel Corporation 4 Series Chipset DRAM Controller (rev 03) 00:01.0 PCI bridge: Intel Corporation 4 Series Chipset PCI Express Root Port (rev 03) 00:03.0 Communication controller: Intel Corporation 4 Series Chipset HECI Controller (rev 03) 00:03.2 IDE interface: Intel Corporation 4 Series Chipset PT IDER Controller (rev 03) 00:03.3 Serial controller: Intel Corporation 4 Series Chipset Serial KT Controller (rev 03) 00:19.0 Ethernet controller: Intel Corporation 82567LM-3 Gigabit Network Connection (rev 02) 00:1a.0 USB Controller: Intel Corporation 82801JD/DO (ICH10 Family) USB UHCI Controller #4 (rev 02) 00:1a.1 USB Controller: Intel Corporation 82801JD/DO (ICH10 Family) USB UHCI Controller #5 (rev 02) 00:1a.2 USB Controller: Intel Corporation 82801JD/DO (ICH10 Family) USB UHCI Controller #6 (rev 02) 00:1a.7 USB Controller: Intel Corporation 82801JD/DO (ICH10 Family) USB2 EHCI Controller #2 (rev 02) 00:1b.0 Audio device: Intel Corporation 82801JD/DO (ICH10 Family) HD Audio Controller (rev 02) 00:1d.0 USB Controller: Intel Corporation 82801JD/DO (ICH10 Family) USB UHCI Controller #1 (rev 02) 00:1d.1 USB Controller: Intel Corporation 82801JD/DO (ICH10 Family) USB UHCI Controller #2 (rev 02) 00:1d.2 USB Controller: Intel Corporation 82801JD/DO (ICH10 Family) USB UHCI Controller #3 (rev 02) 00:1d.7 USB Controller: Intel Corporation 82801JD/DO (ICH10 Family) USB2 EHCI Controller #1 (rev 02) 00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev a2) 00:1f.0 ISA bridge: Intel Corporation 82801JDO (ICH10DO) LPC Interface Controller (rev 02) 00:1f.2 SATA controller: Intel Corporation 82801JD/DO (ICH10 Family) SATA AHCI Controller (rev 02) 00:1f.3 SMBus: Intel Corporation 82801JD/DO (ICH10 Family) SMBus Controller (rev 02) 00:1f.5 IDE interface: Intel Corporation 82801JD/DO (ICH10 Family) 2-port SATA IDE Controller (rev 02) 01:00.0 VGA compatible controller: nVidia Corporation G92 [GeForce GTS 250] (rev a2) 02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8169 Gigabit Ethernet (rev 10) 02:01.0 FireWire (IEEE 1394): Agere Systems FW322/323 (rev 70) $ pulseaudio -v I: main.c: setrlimit(RLIMIT_NICE, (31, 31)) failed: Operation not permitted I: main.c: setrlimit(RLIMIT_RTPRIO, (9, 9)) failed: Operation not permitted I: core-util.c: Failed to acquire high-priority scheduling: No such file or directory I: main.c: This is PulseAudio 0.9.21-63-gd3efa-dirty I: main.c: Page size is 4096 bytes I: main.c: Machine ID is 4a92091cf990a067b6f4d96e4a4b6eaa. I: main.c: Session ID is 4a92091cf990a067b6f4d96e4a4b6eaa-1274627641.685177-773154348. I: main.c: Using runtime directory /home/rafal/.pulse/4a92091cf990a067b6f4d96e4a4b6eaa-runtime. I: main.c: Using state directory /home/rafal/.pulse. I: main.c: Using modules directory /usr/lib/pulse-0.9.21/modules. I: main.c: Running in system mode: no I: main.c: Fresh high-resolution timers available! Bon appetit! I: cpu-x86.c: CPU flags: CMOV MMX SSE SSE2 SSE3 SSSE3 SSE4_1 I: svolume_mmx.c: Initialising MMX optimized functions. I: remap_mmx.c: Initialising MMX optimized remappers. I: svolume_sse.c: Initialising SSE2 optimized functions. I: remap_sse.c: Initialising SSE2 optimized remappers. I: sconv_sse.c: Initialising SSE2 optimized conversions. I: module-device-restore.c: Sucessfully opened database file '/home/rafal/.pulse/4a92091cf990a067b6f4d96e4a4b6eaa-device-volumes'. I: module.c: Loaded "module-device-restore" (index: #0; argument: ""). I: module-stream-restore.c: Sucessfully opened database fil
[Touch-packages] [Bug 582600] Re: Ubuntu Lucid / PulseAudio Alsa-Plugin : 2 sec delay
Thank you for reporting this bug to Ubuntu. Ubuntu 10.04 (lucid) reached end-of-life on May 9, 2013. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases Please upgrade to the latest version and re-test. ** Changed in: pulseaudio (Ubuntu) Status: Confirmed => Incomplete ** Package changed: pulseaudio (Debian) => mir ** No longer affects: mir -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/582600 Title: Ubuntu Lucid / PulseAudio Alsa-Plugin : 2 sec delay Status in pulseaudio package in Ubuntu: Incomplete Bug description: Binary package hint: pulseaudio I installed a fresh Ubuntu Lucid, and updated from Lucid-proposed. Kernel is 2.6.32-22-generic. Did not installed anything particular. Didn't add any fancy repo or ppa... I'm using xdtv to watch tv, and a descrambler based on alsa. Works nice in Karmic and Jaunty. No noticable latency... But in Lucid I get a 2 sec delay between audio and video. with pulseaudio in verbose mode, I notice very few differences between Lucid and Karmic, when I launch the tv program: The main difference is the order in which "source alsa_input" and "Sink alsa_output" are processed. And there's a 2000 ms latency request here that seems to be my problem. I tried many things from related bugs-reports I found around here starting with checking openal1 from proposed, re-compiling alsa from source, using kernel2.34, audio-dev-team ppa or ricotz ppa for newer alsa and pulseaudio None of which succeeded... Anyone has a clue ? This is my first bug report on launchpad, so I'm sorry if I mispost here or mis-whatever And sorry also for my poor english ! PS : my soundboard is an AC'97, always worked perfectly 9.10, 9.04 8.10...etc To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/582600/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1689272] [NEW] package util-linux 2.29-1ubuntu2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1
Public bug reported: subprocess installed post-installation script returned error exit status 1 Errors were encountered while processing: util-linux E: Sub-process /usr/bin/dpkg returned an error code (1) ProblemType: Package DistroRelease: Ubuntu 16.10 Package: util-linux 2.29-1ubuntu2 ProcVersionSignature: Ubuntu 4.8.0-51.54-generic 4.8.17 Uname: Linux 4.8.0-51-generic x86_64 ApportVersion: 2.20.3-0ubuntu8.2 Architecture: amd64 Date: Mon May 8 22:15:10 2017 ErrorMessage: subprocess installed post-installation script returned error exit status 1 InstallationDate: Installed on 2016-11-16 (172 days ago) InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 (20160719) RelatedPackageVersions: dpkg 1.18.10ubuntu1.1 apt 1.3.5 SourcePackage: util-linux Title: package util-linux 2.29-1ubuntu2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1 UpgradeStatus: Upgraded to yakkety on 2017-05-08 (0 days ago) ** Affects: util-linux (Ubuntu) Importance: Undecided Status: New ** Tags: amd64 apport-package yakkety -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to util-linux in Ubuntu. https://bugs.launchpad.net/bugs/1689272 Title: package util-linux 2.29-1ubuntu2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1 Status in util-linux package in Ubuntu: New Bug description: subprocess installed post-installation script returned error exit status 1 Errors were encountered while processing: util-linux E: Sub-process /usr/bin/dpkg returned an error code (1) ProblemType: Package DistroRelease: Ubuntu 16.10 Package: util-linux 2.29-1ubuntu2 ProcVersionSignature: Ubuntu 4.8.0-51.54-generic 4.8.17 Uname: Linux 4.8.0-51-generic x86_64 ApportVersion: 2.20.3-0ubuntu8.2 Architecture: amd64 Date: Mon May 8 22:15:10 2017 ErrorMessage: subprocess installed post-installation script returned error exit status 1 InstallationDate: Installed on 2016-11-16 (172 days ago) InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 (20160719) RelatedPackageVersions: dpkg 1.18.10ubuntu1.1 apt 1.3.5 SourcePackage: util-linux Title: package util-linux 2.29-1ubuntu2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1 UpgradeStatus: Upgraded to yakkety on 2017-05-08 (0 days ago) To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/util-linux/+bug/1689272/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1689272] Re: package util-linux 2.29-1ubuntu2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1
** Tags removed: need-duplicate-check -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to util-linux in Ubuntu. https://bugs.launchpad.net/bugs/1689272 Title: package util-linux 2.29-1ubuntu2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1 Status in util-linux package in Ubuntu: New Bug description: subprocess installed post-installation script returned error exit status 1 Errors were encountered while processing: util-linux E: Sub-process /usr/bin/dpkg returned an error code (1) ProblemType: Package DistroRelease: Ubuntu 16.10 Package: util-linux 2.29-1ubuntu2 ProcVersionSignature: Ubuntu 4.8.0-51.54-generic 4.8.17 Uname: Linux 4.8.0-51-generic x86_64 ApportVersion: 2.20.3-0ubuntu8.2 Architecture: amd64 Date: Mon May 8 22:15:10 2017 ErrorMessage: subprocess installed post-installation script returned error exit status 1 InstallationDate: Installed on 2016-11-16 (172 days ago) InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 (20160719) RelatedPackageVersions: dpkg 1.18.10ubuntu1.1 apt 1.3.5 SourcePackage: util-linux Title: package util-linux 2.29-1ubuntu2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1 UpgradeStatus: Upgraded to yakkety on 2017-05-08 (0 days ago) To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/util-linux/+bug/1689272/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 378325] Re: X login screen volume always set to max; crazy loud
Thanks, belated but thanks. -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/378325 Title: X login screen volume always set to max; crazy loud Status in pulseaudio package in Ubuntu: Confirmed Bug description: Binary package hint: gdm Whenever I boot my laptop from scratch (i.e. not resuming from standy/hibernate), the X/gdm login screen will play a sound effect when it's ready for me to log in. The problem is, this sound effect is always played at the hardware's maximum volume setting (or at least, something insanely loud) which is extremely annoying for other people nearby (and me!) gdm/something should set the volume to some sane level prior to playing this sound. Even better if "gdmsetup" were to allow configuration of the volume. Note, I'm aware of some WARs: * Disable the login sound. Not acceptable: Simply disabling the feature because it's buggy doesn't actually fix the underlying bug. * Plug in headphones, or a dummy jack. Not acceptable: I don't use headphones and hence don't carry them around. I don't want some dummy jack plugged into the side of my laptop, thus changing the laptop's shape (and, I'd have to unplug it after login to use sound) * Various script hacks with "alsactl save/restore". Not acceptable: This feature should "just work" out of the box without my Grandma having to hack at arcane scripts or config files. Note: This issue is visible in Jaunty Jackalope i386 (and presumably all arch's) on either the live CD or an HD-based installation. Note that to fix this on the live CD, a gdmsetup-based volume configuration option wouldn't be useful, because a) it wouldn't solve the issue for the first boot, and b) there's nowhere to store the configuration across reboots (or if there is, it's sufficiently complex that my Grandma couldn't use it) To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/378325/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1576341] Re: systemd in degraded state on startup in LXD containers
Fixed the format of the open-iscsi conditions, it works nicely in (privileged and not privileged) artful containers. ** Patch added: "open-iscsi_2.0.873+git0.3b4b4500-14ubuntu18.patch" https://bugs.launchpad.net/ubuntu/+source/open-iscsi/+bug/1576341/+attachment/4873428/+files/open-iscsi_2.0.873+git0.3b4b4500-14ubuntu18.patch -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to lvm2 in Ubuntu. https://bugs.launchpad.net/bugs/1576341 Title: systemd in degraded state on startup in LXD containers Status in lvm2 package in Ubuntu: Confirmed Status in lxd package in Ubuntu: Invalid Status in open-iscsi package in Ubuntu: Fix Released Status in systemd package in Ubuntu: Confirmed Bug description: The ubuntu:xenial image shows 'degraded' state in lxd on initial boot. $ lxc launch xenial x1 $ sleep 10 $ lxc file pull x1/etc/cloud/build.info - build_name: server serial: 20160420-145324 $ lxc exec x1 systemctl is-system-running degraded $ lxc exec x1 -- systemctl --state=failed UNIT LOAD ACTIVE SUBDESCRIPTION ● dev-hugepages.mount loaded failed failed Huge Pages File System ● iscsid.serviceloaded failed failed iSCSI initiator daemon (iscsid) ● open-iscsi.serviceloaded failed failed Login to default iSCSI targets ● systemd-remount-fs.serviceloaded failed failed Remount Root and Kernel File Systems ● systemd-sysctl.serviceloaded failed failed Apply Kernel Variables ● lvm2-lvmetad.socket loaded failed failed LVM2 metadata daemon socket ● systemd-journald-audit.socket loaded failed failed Journal Audit Socket LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB= The low-level unit activation state, values depend on unit type. 7 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. ProblemType: Bug DistroRelease: Ubuntu 16.04 Package: open-iscsi 2.0.873+git0.3b4b4500-14ubuntu3 ProcVersionSignature: Ubuntu 4.4.0-18.34-generic 4.4.6 Uname: Linux 4.4.0-18-generic x86_64 ApportVersion: 2.20.1-0ubuntu2 Architecture: amd64 Date: Thu Apr 28 17:28:04 2016 ProcEnviron: TERM=xterm-256color PATH=(custom, no user) SourcePackage: open-iscsi UpgradeStatus: No upgrade log present (probably fresh install) To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/lvm2/+bug/1576341/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1644363] Re: [trusty/arm64] binutils segfaults on bash gettext configure test
This bug was fixed in the package binutils - 2.24-5ubuntu14.2 --- binutils (2.24-5ubuntu14.2) trusty; urgency=medium * 002-dont-segv-on-initial-instructions-overflow.patch: Fix ld crash on arm64 (LP: #1644363) -- Julian Andres Klode Tue, 25 Apr 2017 17:02:10 +0200 ** Changed in: binutils (Ubuntu Trusty) Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to binutils in Ubuntu. https://bugs.launchpad.net/bugs/1644363 Title: [trusty/arm64] binutils segfaults on bash gettext configure test Status in binutils package in Ubuntu: Fix Released Status in binutils source package in Trusty: Fix Released Bug description: On arm64, the bash gettext configure test causes binutils to segv: configure:8453: gcc -o conftest -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror= format-security -Wall -D_FORTIFY_SOURCE=2 -Wl,-Bsymbolic-functions -Wl,-z,relro -static conftest.c >&5 conftest.c: In function 'main': conftest.c:116:8: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] return (int) gettext ("") + (int) ngettext ("", "", 0) + _nl_msg_cat_cntr + *_nl_domain_bindings ^ conftest.c:116:29: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] return (int) gettext ("") + (int) ngettext ("", "", 0) + _nl_msg_cat_cntr + *_nl_domain_bindings ^ collect2: error: ld terminated with signal 11 [Segmentation fault], core dumped configure:8453: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "bash" | #define PACKAGE_TARNAME "bash" | #define PACKAGE_VERSION "4.3-release" | #define PACKAGE_STRING "bash 4.3-release" | #define PACKAGE_BUGREPORT "bug-b...@gnu.org" | #define PACKAGE_URL "" | #define ALIAS 1 | #define PUSHD_AND_POPD 1 | #define RESTRICTED_SHELL 1 | #define PROCESS_SUBSTITUTION 1 | #define PROMPT_STRING_DECODE 1 | #define SELECT_COMMAND 1 | #define HELP_BUILTIN 1 | #define ARRAY_VARS 1 | #define DPAREN_ARITHMETIC 1 | #define BRACE_EXPANSION 1 | #define COMMAND_TIMING 1 | #define EXTENDED_GLOB 1 | #define EXTGLOB_DEFAULT 0 | #define COND_COMMAND 1 | #define COND_REGEXP 1 | #define COPROCESS_SUPPORT 1 | #define ARITH_FOR_COMMAND 1 | #define NETWORK_REDIRECTIONS 1 | #define PROGRAMMABLE_COMPLETION 1 | #define DEBUGGER 1 | #define CASEMOD_ATTRS 1 | #define CASEMOD_EXPANSIONS 1 | #define GLOBASCII_DEFAULT 0 | #define MEMSCRAMBLE 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define READLINE 1 | #define HISTORY 1 | #define BANG_HISTORY 1 | #define _GNU_SOURCE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_LONG_DOUBLE_WIDER 1 | #define HAVE_LONG_DOUBLE 1 | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define restrict __restrict | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define INTDIV0_RAISES_SIGFPE 0 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_UNSIGNED_LONG_LONG 1 | #define HAVE_UINTMAX_T 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_ARGZ_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_NL_TYPES_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_FEOF_UNLOCKED 1 | #define HAVE_FGETS_UNLOCKED 1 | #define HAVE_GETC_UNLOCKED 1 | #define HAVE_GETCWD 1 | #define HAVE_GETEGID 1 | #define HAVE_GETEUID 1 | #define HAVE_GETGID 1 | #define HAVE_GETUID 1 | #define HAVE_MEMPCPY 1 | #define HAVE_MUNMAP 1 | #define HAVE_PUTENV 1 | #define HAVE_SETENV 1 | #define HAVE_SETLOCALE 1 | #define HAVE_LOCALECONV 1 | #define HAVE_STPCPY 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRDUP 1 | #define HAVE_STRTOUL 1 | #define HAVE_TSEARCH 1 | #define HAVE___ARGZ_COUNT 1 | #define HAVE___ARGZ_STRINGIFY 1 | #define HAVE___ARGZ_NEXT 1 | #define HAVE___FSETLOCKING 1 | #define HAVE_ICONV 1 | #define ICONV_CONST | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_LC_MESSAGES 1 | /* end confdefs.h. */ | #include | extern int _nl_msg_cat_cntr; | extern int *_nl_domain_bindings; | int | main () | { | bin
[Touch-packages] [Bug 1644363] Update Released
The verification of the Stable Release Update for binutils has completed successfully and the package has now been released to -updates. Subsequently, the Ubuntu Stable Release Updates Team is being unsubscribed and will not receive messages about this bug report. In the event that you encounter a regression using the package from -updates please report a new bug using ubuntu-bug and tag the bug report regression-update so we can easily find any regressions. -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to binutils in Ubuntu. https://bugs.launchpad.net/bugs/1644363 Title: [trusty/arm64] binutils segfaults on bash gettext configure test Status in binutils package in Ubuntu: Fix Released Status in binutils source package in Trusty: Fix Released Bug description: On arm64, the bash gettext configure test causes binutils to segv: configure:8453: gcc -o conftest -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror= format-security -Wall -D_FORTIFY_SOURCE=2 -Wl,-Bsymbolic-functions -Wl,-z,relro -static conftest.c >&5 conftest.c: In function 'main': conftest.c:116:8: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] return (int) gettext ("") + (int) ngettext ("", "", 0) + _nl_msg_cat_cntr + *_nl_domain_bindings ^ conftest.c:116:29: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] return (int) gettext ("") + (int) ngettext ("", "", 0) + _nl_msg_cat_cntr + *_nl_domain_bindings ^ collect2: error: ld terminated with signal 11 [Segmentation fault], core dumped configure:8453: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "bash" | #define PACKAGE_TARNAME "bash" | #define PACKAGE_VERSION "4.3-release" | #define PACKAGE_STRING "bash 4.3-release" | #define PACKAGE_BUGREPORT "bug-b...@gnu.org" | #define PACKAGE_URL "" | #define ALIAS 1 | #define PUSHD_AND_POPD 1 | #define RESTRICTED_SHELL 1 | #define PROCESS_SUBSTITUTION 1 | #define PROMPT_STRING_DECODE 1 | #define SELECT_COMMAND 1 | #define HELP_BUILTIN 1 | #define ARRAY_VARS 1 | #define DPAREN_ARITHMETIC 1 | #define BRACE_EXPANSION 1 | #define COMMAND_TIMING 1 | #define EXTENDED_GLOB 1 | #define EXTGLOB_DEFAULT 0 | #define COND_COMMAND 1 | #define COND_REGEXP 1 | #define COPROCESS_SUPPORT 1 | #define ARITH_FOR_COMMAND 1 | #define NETWORK_REDIRECTIONS 1 | #define PROGRAMMABLE_COMPLETION 1 | #define DEBUGGER 1 | #define CASEMOD_ATTRS 1 | #define CASEMOD_EXPANSIONS 1 | #define GLOBASCII_DEFAULT 0 | #define MEMSCRAMBLE 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define READLINE 1 | #define HISTORY 1 | #define BANG_HISTORY 1 | #define _GNU_SOURCE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_LONG_DOUBLE_WIDER 1 | #define HAVE_LONG_DOUBLE 1 | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define restrict __restrict | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define INTDIV0_RAISES_SIGFPE 0 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_UNSIGNED_LONG_LONG 1 | #define HAVE_UINTMAX_T 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_ARGZ_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_NL_TYPES_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_FEOF_UNLOCKED 1 | #define HAVE_FGETS_UNLOCKED 1 | #define HAVE_GETC_UNLOCKED 1 | #define HAVE_GETCWD 1 | #define HAVE_GETEGID 1 | #define HAVE_GETEUID 1 | #define HAVE_GETGID 1 | #define HAVE_GETUID 1 | #define HAVE_MEMPCPY 1 | #define HAVE_MUNMAP 1 | #define HAVE_PUTENV 1 | #define HAVE_SETENV 1 | #define HAVE_SETLOCALE 1 | #define HAVE_LOCALECONV 1 | #define HAVE_STPCPY 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRDUP 1 | #define HAVE_STRTOUL 1 | #define HAVE_TSEARCH 1 | #define HAVE___ARGZ_COUNT 1 | #define HAVE___ARGZ_STRINGIFY 1 | #define HAVE___ARGZ_NEXT 1 | #define HAVE___FSETLOCKING 1 | #define HAVE_ICONV 1 | #define ICONV_CONST | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_LC_MESSAGES 1 | /* end confdefs.h. */ | #include | extern int
[Touch-packages] [Bug 1688663] Re: udev 97-hid2hci.rules missing usb id for logitech dinovo 2
** Tags added: papercuts2017 -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to bluez in Ubuntu. https://bugs.launchpad.net/bugs/1688663 Title: udev 97-hid2hci.rules missing usb id for logitech dinovo 2 Status in bluez package in Ubuntu: New Bug description: Trying to install kubuntu 16.04.2 (Xenial Xerus) today, the Logitech dinovo 2 bluetooth keyboard and mouse didn't work, nor in live cd nor after being installed using another keyboard and mouse. In /lib/udev/rules.d/97-hid2hci.rules there are two lines for Logitech devices: # Logitech devices KERNEL=="hiddev*", ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c70[345abce]|c71[3bc]", \ RUN+="hid2hci --method=logitech-hid --devpath=%p" # Logitech, Inc. diNovo Edge Keyboard KERNEL=="hidraw*", ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c714", \ RUN+="hid2hci --method=logitech-hid --devpath=%p" lsusb shows in my computer: Bus 001 Device 006: ID 046d:c704 Logitech, Inc. diNovo Wireless Desktop The id is almost equal (c714 <> c704). After adding a new line with the missing id, the keyboard and mouse started to work: # Logitech, Inc. diNovo 2 KERNEL=="hidraw*", ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c704", \ RUN+="hid2hci --method=logitech-hid --devpath=%p" I've also followed these other bugs to find out the file that I needed to modify and that my keyboard needs hidraw instead of hiddev: https://bugs.launchpad.net/ubuntu/+source/udev/+bug/872940 https://bugs.launchpad.net/ubuntu/+source/linux-source-2.6.22/+bug/123920 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1688663/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1689261] Re: Network manager says my USB-based ethernet devices are not supported, though I can connect manually
** Attachment added: "Network manager applet screenshot" https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1689261/+attachment/4873431/+files/Zrzut%20ekranu%20z%202017-05-08%2013-05-58.png -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to network-manager in Ubuntu. https://bugs.launchpad.net/bugs/1689261 Title: Network manager says my USB-based ethernet devices are not supported, though I can connect manually Status in network-manager package in Ubuntu: New Bug description: I have a Dell Precision 5520 laptop with a Thunderbolt USB 3.1 type C port that I connect to a Dell TB15 docking station connected with an Ethernet cable. Network manager section for ethernet connections is all grayed out, and it says "device unsupported". USB subsystem seems to detect the device just fine: ``` $ lsusb Bus 004 Device 003: ID 0bda:8153 Realtek Semiconductor Corp. Bus 004 Device 002: ID 0424:5537 Standard Microsystems Corp. Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 003 Device 004: ID 046d:c31f Logitech, Inc. Bus 003 Device 003: ID 0bda:4014 Realtek Semiconductor Corp. Bus 003 Device 002: ID 0424:2137 Standard Microsystems Corp. Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 8087:0a2b Intel Corp. Bus 001 Device 002: ID 046d:c52f Logitech, Inc. Unifying Receiver Bus 001 Device 004: ID 1bcf:2b95 Sunplus Innovation Technology Inc. Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub ``` ``` $ sudo lsusb -v -d 0bda:8153 Bus 004 Device 003: ID 0bda:8153 Realtek Semiconductor Corp. Device Descriptor: bLength18 bDescriptorType 1 bcdUSB 3.00 bDeviceClass0 (Defined at Interface level) bDeviceSubClass 0 bDeviceProtocol 0 bMaxPacketSize0 9 idVendor 0x0bda Realtek Semiconductor Corp. idProduct 0x8153 bcdDevice 30.01 iManufacturer 1 Realtek iProduct2 USB 10/100/1000 LAN iSerial 6 0100 bNumConfigurations 2 Configuration Descriptor: bLength 9 bDescriptorType 2 wTotalLength 57 bNumInterfaces 1 bConfigurationValue 1 iConfiguration 0 bmAttributes 0xa0 (Bus Powered) Remote Wakeup MaxPower 64mA Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber0 bAlternateSetting 0 bNumEndpoints 3 bInterfaceClass 255 Vendor Specific Class bInterfaceSubClass255 Vendor Specific Subclass bInterfaceProtocol 0 iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x81 EP 1 IN bmAttributes2 Transfer TypeBulk Synch Type None Usage Type Data wMaxPacketSize 0x0400 1x 1024 bytes bInterval 0 bMaxBurst 3 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x02 EP 2 OUT bmAttributes2 Transfer TypeBulk Synch Type None Usage Type Data wMaxPacketSize 0x0400 1x 1024 bytes bInterval 0 bMaxBurst 3 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x83 EP 3 IN bmAttributes3 Transfer TypeInterrupt Synch Type None Usage Type Data wMaxPacketSize 0x0002 1x 2 bytes bInterval 8 bMaxBurst 0 Configuration Descriptor: bLength 9 bDescriptorType 2 wTotalLength 98 bNumInterfaces 2 bConfigurationValue 2 iConfiguration 0 bmAttributes 0xa0 (Bus Powered) Remote Wakeup MaxPower 64mA Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber0 bAlternateSetting 0 bNumEndpoints 1 bInterfaceClass 2 Communications bInterfaceSubClass 6 Ethernet Networking bInterfaceProtocol 0 iInter
[Touch-packages] [Bug 1689261] Re: Network manager says my USB-based ethernet devices are not supported, though I can connect manually
To make my workaround permanent, I tried adding the following lines to /etc/network/interfaces: auto eth0 iface eth0 inet dhcp Weirdly, this hosed my system to the point it could no longer boot to login screen. It got totaly stuck at configuring eth0 (no matter if the cable was connected or not). -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to network-manager in Ubuntu. https://bugs.launchpad.net/bugs/1689261 Title: Network manager says my USB-based ethernet devices are not supported, though I can connect manually Status in network-manager package in Ubuntu: New Bug description: I have a Dell Precision 5520 laptop with a Thunderbolt USB 3.1 type C port that I connect to a Dell TB15 docking station connected with an Ethernet cable. Network manager section for ethernet connections is all grayed out, and it says "device unsupported". USB subsystem seems to detect the device just fine: ``` $ lsusb Bus 004 Device 003: ID 0bda:8153 Realtek Semiconductor Corp. Bus 004 Device 002: ID 0424:5537 Standard Microsystems Corp. Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 003 Device 004: ID 046d:c31f Logitech, Inc. Bus 003 Device 003: ID 0bda:4014 Realtek Semiconductor Corp. Bus 003 Device 002: ID 0424:2137 Standard Microsystems Corp. Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 8087:0a2b Intel Corp. Bus 001 Device 002: ID 046d:c52f Logitech, Inc. Unifying Receiver Bus 001 Device 004: ID 1bcf:2b95 Sunplus Innovation Technology Inc. Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub ``` ``` $ sudo lsusb -v -d 0bda:8153 Bus 004 Device 003: ID 0bda:8153 Realtek Semiconductor Corp. Device Descriptor: bLength18 bDescriptorType 1 bcdUSB 3.00 bDeviceClass0 (Defined at Interface level) bDeviceSubClass 0 bDeviceProtocol 0 bMaxPacketSize0 9 idVendor 0x0bda Realtek Semiconductor Corp. idProduct 0x8153 bcdDevice 30.01 iManufacturer 1 Realtek iProduct2 USB 10/100/1000 LAN iSerial 6 0100 bNumConfigurations 2 Configuration Descriptor: bLength 9 bDescriptorType 2 wTotalLength 57 bNumInterfaces 1 bConfigurationValue 1 iConfiguration 0 bmAttributes 0xa0 (Bus Powered) Remote Wakeup MaxPower 64mA Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber0 bAlternateSetting 0 bNumEndpoints 3 bInterfaceClass 255 Vendor Specific Class bInterfaceSubClass255 Vendor Specific Subclass bInterfaceProtocol 0 iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x81 EP 1 IN bmAttributes2 Transfer TypeBulk Synch Type None Usage Type Data wMaxPacketSize 0x0400 1x 1024 bytes bInterval 0 bMaxBurst 3 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x02 EP 2 OUT bmAttributes2 Transfer TypeBulk Synch Type None Usage Type Data wMaxPacketSize 0x0400 1x 1024 bytes bInterval 0 bMaxBurst 3 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x83 EP 3 IN bmAttributes3 Transfer TypeInterrupt Synch Type None Usage Type Data wMaxPacketSize 0x0002 1x 2 bytes bInterval 8 bMaxBurst 0 Configuration Descriptor: bLength 9 bDescriptorType 2 wTotalLength 98 bNumInterfaces 2 bConfigurationValue 2 iConfiguration 0 bmAttributes 0xa0 (Bus Powered) Remote Wakeup MaxPower 64mA Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber0 bAlternateSetting 0 bNumEndpoints 1 bInterfaceClass 2 Communications
[Touch-packages] [Bug 1641328] Re: Ordering of mdns4_minimal and resolve in /etc/nsswitch.conf causes mDNS lookups to fail -- breaks network printing
Hi Mark! Thank you for pointing me to this bug. I spent some time looking into this. It seems that there is currently no established mechanism for ordering NSS modules into nsswitch.conf automatically. Instead every package is doing its own parsing mangling of the file on install. libnss-resolve is appending "[!UNAVAIL=return]" which causes the mdns4_minimal entry to get shadowed, depending on installation order of the packages involved (libnss-mdns and libnss-resolve). A workaround was implemented in Debian in https://anonscm.debian.org/cgit/collab-maint/nss- mdns.git/commit/?id=44550bcc6b49116f927dea52395867ff47d7d3b9 (tests in https://anonscm.debian.org/cgit/collab-maint/nss- mdns.git/commit/?id=0e9b82b91cd9bf9464cf63df2c3f1cbbec3553e0) which appears in Zesty (17.04) which will explain why Zesty appears to work correctly. Though this is still a hack, I think it should work in both ordering cases, so in the short term this should be fixed from a user's perspective. In the long term, Debian have a bug open (https://bugs.debian.org/cgi- bin/bugreport.cgi?bug=846944) to fix the hack. It may be that mDNS resolution moves to libnss-resolve, or that some kind of configuration wrapper is arranged to improve on the ad-hoc mangling of nsswitch.conf. So, for Ubuntu: This is fixed in Zesty onwards. The workaround for Yakkety (as you explained) is to edit /etc/nsswitch.conf and bring "mdns4_minimal [NOTFOUND=return]" in front of "resolve [!UNAVAIL=return]". We could propose an update for Yakkety (16.10). But we have to do it carefully - if there is a bug in the update, we could break DNS resolution for all users. However, Debian have already written the essential "swap it round" code so that will already have had some real world testing. But Yakkety has only two months left before it EOLs, and the workaround for affected users is fairly trivial. So is it worth trying? Opinions welcome. For bug triage, there are effectively two bugs. 1) The fact that it doesn't work for users in Yakkety; and 2) the bigger picture fix for the hack or move of mDNS resolution to libnss-resolve. I see this bug as having been reported for the first issue, and the Debian bug as tracking the second. So I'll mark the systemd task as Invalid, as the fix for this bug was in libnss-mdns (and we can track any SRU for libnss-mdns here). I'm not linking the Debian bug, as that's the separate second issue. If we want to track that in Launchpad, we should file a separate bug for it, so as not to mix up the separate statuses of the two issues. ** Bug watch added: Debian Bug tracker #846944 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=846944 ** Changed in: systemd (Ubuntu) Status: Confirmed => Invalid ** Also affects: nss-mdns (Ubuntu Yakkety) Importance: Undecided Status: New ** Also affects: systemd (Ubuntu Yakkety) Importance: Undecided Status: New ** Changed in: systemd (Ubuntu Yakkety) Status: New => Invalid ** Changed in: nss-mdns (Ubuntu) Status: Confirmed => Fix Released ** Changed in: nss-mdns (Ubuntu Yakkety) Status: New => Triaged ** Changed in: nss-mdns (Ubuntu Yakkety) Importance: Undecided => Medium -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to systemd in Ubuntu. https://bugs.launchpad.net/bugs/1641328 Title: Ordering of mdns4_minimal and resolve in /etc/nsswitch.conf causes mDNS lookups to fail -- breaks network printing Status in nss-mdns package in Ubuntu: Fix Released Status in systemd package in Ubuntu: Invalid Status in nss-mdns source package in Yakkety: Triaged Status in systemd source package in Yakkety: Invalid Bug description: (See also libnss-resolve:amd64 231-9ubuntu1 amd64nss module to resolve names via systemd-resolved) # fresh install of yakkety mtearle@liberation:/etc$ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 16.10 Release: 16.10 Codename: yakkety # package details mtearle@liberation:~$ apt-cache policy libnss-resolve libnss-resolve: Installed: 231-9ubuntu1 Candidate: 231-9ubuntu1 Version table: *** 231-9ubuntu1 500 500 http://mirror.rackspace.com/ubuntu yakkety-updates/main amd64 Packages 100 /var/lib/dpkg/status 231-9git1 500 500 http://mirror.rackspace.com/ubuntu yakkety/main amd64 Packages mtearle@liberation:~$ apt-cache policy systemd systemd: Installed: 231-9ubuntu1 Candidate: 231-9ubuntu1 Version table: *** 231-9ubuntu1 500 500 http://mirror.rackspace.com/ubuntu yakkety-updates/main amd64 Packages 100 /var/lib/dpkg/status 231-9git1 500 500 http://mirror.rackspace.com/ubuntu yakkety/main amd64 Packages # attempt to ping VM elsewhere on network with mDNS hostname mtearle@liberation:/etc$ ping bazzavan.local ping: bazzavan.local: Nam
[Touch-packages] [Bug 544357] Re: Logitech USB headset volume has "speaker" output and muting doesn't work well with PulseAudio
Too old ** Changed in: pulseaudio (Ubuntu) Status: Incomplete => Invalid -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to pulseaudio in Ubuntu. https://bugs.launchpad.net/bugs/544357 Title: Logitech USB headset volume has "speaker" output and muting doesn't work well with PulseAudio Status in pulseaudio package in Ubuntu: Invalid Bug description: Binary package hint: pulseaudio After upgrading desktop to Lucid, the volume in my USB headset is too low. Sound is still there, but volume is just too slow. Just for reference, I also have external speakers, and they work ok. Also, I used this headset in Karmic in the desktop, and they worked ok; furthermore, I try this headset in Lucid in my laptop, and they work ok. Regards, ProblemType: Bug AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21. Architecture: i386 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: facundo1533 F pulseaudio /dev/snd/pcmC0D0p: facundo1533 F...m pulseaudio /dev/snd/controlC1: facundo1533 F pulseaudio Card0.Amixer.info: Card hw:0 'Headset'/'Logitech Logitech USB Headset at usb-:00:02.0-1, full speed' Mixer name : 'USB Mixer' Components : 'USB046d:0a01' Controls : 6 Simple ctrls : 2 Card1.Amixer.info: Card hw:1 'default'/'PnP Audio Device at usb-:00:02.0-7, full speed' Mixer name : 'USB Mixer' Components : 'USB0d8c:0201' Controls : 17 Simple ctrls : 6 Date: Mon Mar 22 14:42:58 2010 DistroRelease: Ubuntu 10.04 InstallationMedia: Ubuntu 9.10 "Karmic Koala" - Release i386 (20091028.5) NonfreeKernelModules: nvidia Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu12 PciMultimedia: ProcEnviron: PATH=(custom, user) LANG=es_AR.UTF-8 SHELL=/bin/bash ProcVersionSignature: Ubuntu 2.6.32-16.25-generic-pae SourcePackage: pulseaudio Uname: Linux 2.6.32-16-generic-pae i686 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/544357/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1688364] Re: Non existent host causes 100% cpu utilization by systemd-resolved and dnsmasq
Yeah the link is fine. But more interesting is that dnsmasq only seems to "care" about reading from /etc/resolv.conf, but ignored your setup in /run/systemd/resolve/resolv.conf. In my working case I had the provider DNS in /etc/resolv.conf but you only had it in /run/systemd/resolve/resolv.conf (I have it there as well, but as I said -also- in /etc/resolv.conf). Due to that your dnsmasq doesn't know about the "uplink-dns" and fail-loops on the systemd-resolvd. In that sense it doesn't do it wrong, it reads /etc/resolv.conf (as is its default in /etc/dnsmasq.conf and thereby only picks up the systemd-resolved ip, but not the uplink). We have to understand how/why your /etc/resolv.conf is the way it is (without the uplink dns). -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to dnsmasq in Ubuntu. https://bugs.launchpad.net/bugs/1688364 Title: Non existent host causes 100% cpu utilization by systemd-resolved and dnsmasq Status in dnsmasq package in Ubuntu: Incomplete Status in resolvconf package in Ubuntu: New Bug description: May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] googletagservices.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded googletagservices.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] googletagservices.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded googletagservices.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] googletagservices.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded googletagservices.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] googletagservices.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded googletagservices.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] googletagservices.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded googletagservices.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] googletagservices.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded googletagservices.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] googletagservices.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded googletagservice
[Touch-packages] [Bug 1688364] Re: Non existent host causes 100% cpu utilization by systemd-resolved and dnsmasq
Since this might be as much about "resolvconf" than it is about dnsmasq I add a bug task. In some sense this is both: a) dnsmasq not picking up info of systemd-resolve b) resolvconf not adding uplink-dns in /etc/resolv.conf We have to understand b) to know if a) is a bug ** Also affects: resolvconf (Ubuntu) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to dnsmasq in Ubuntu. https://bugs.launchpad.net/bugs/1688364 Title: Non existent host causes 100% cpu utilization by systemd-resolved and dnsmasq Status in dnsmasq package in Ubuntu: Incomplete Status in resolvconf package in Ubuntu: New Bug description: May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] googletagservices.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded googletagservices.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] googletagservices.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded googletagservices.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] googletagservices.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded googletagservices.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] googletagservices.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded googletagservices.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] googletagservices.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded googletagservices.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] googletagservices.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded googletagservices.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] googletagservices.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded googletagservices.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/d
[Touch-packages] [Bug 1688364] Re: Non existent host causes 100% cpu utilization by systemd-resolved and dnsmasq
Could you report the output of your systems call to this?: $ /usr/share/resolvconf/dump-debug-info You can see that in my case resolvconf gets the uplink info via /run/resolvconf/interface/eth0.dhclient, how does your system get its config - dhcp as well? If so are you having a comparable file? Here mine from a more or less default zesty container. ## Start of debugging information for resolvconf ## ### ls -l /etc/resolvconf total 12 -rw-r--r-- 1 root root 511 Apr 1 2016 interface-order drwxr-xr-x 2 root root 4096 Apr 25 01:15 resolv.conf.d drwxr-xr-x 2 root root 4096 May 8 11:18 update.d ### cat /etc/resolvconf/interface-order # interface-order(5) lo.inet6 lo.inet lo.@(dnsmasq|pdnsd) lo.!(pdns|pdns-recursor) lo tun* tap* hso* em+([0-9])?(_+([0-9]))* p+([0-9])p+([0-9])?(_+([0-9]))* @(br|eth)*([^.]).inet6 @(br|eth)*([^.]).ip6.@(dhclient|dhcpcd|pump|udhcpc) @(br|eth)*([^.]).inet @(br|eth)*([^.]).@(dhclient|dhcpcd|pump|udhcpc) @(br|eth)* @(ath|wifi|wlan)*([^.]).inet6 @(ath|wifi|wlan)*([^.]).ip6.@(dhclient|dhcpcd|pump|udhcpc) @(ath|wifi|wlan)*([^.]).inet @(ath|wifi|wlan)*([^.]).@(dhclient|dhcpcd|pump|udhcpc) @(ath|wifi|wlan)* ppp* * ### ls -l /etc/resolvconf/resolv.conf.d total 4 -rw-r--r-- 1 root root 0 Apr 1 2016 base -rw-r--r-- 1 root root 282 Nov 28 23:37 head ### cat /etc/resolvconf/resolv.conf.d/base ### cat /etc/resolvconf/resolv.conf.d/head # Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8) # DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN # 127.0.0.53 is the systemd-resolved stub resolver. # run "systemd-resolve --status" to see details about the actual nameservers. ### ls -l /run/resolvconf ### ls -l /run/resolvconf total 4 -rw-r--r-- 1 root root 0 Apr 27 15:54 enable-updates drwxr-xr-x 2 root root 80 May 8 11:18 interface -rw-r--r-- 1 root root 335 May 8 11:18 resolv.conf ### cat /run/resolvconf/enable-updates ### cat /run/resolvconf/resolv.conf # Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8) # DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN # 127.0.0.53 is the systemd-resolved stub resolver. # run "systemd-resolve --status" to see details about the actual nameservers. nameserver 10.0.4.1 nameserver 127.0.0.53 search lxd ### ls -l /run/resolvconf/interface total 8 -rw-r--r-- 1 root root 31 Apr 27 15:54 eth0.dhclient -rw-r--r-- 1 root root 22 Apr 27 15:54 systemd-resolved ### cat /run/resolvconf/interface/eth0.dhclient domain lxd nameserver 10.0.4.1 ### cat /run/resolvconf/interface/systemd-resolved nameserver 127.0.0.53 ### ls -l /etc/resolv.conf lrwxrwxrwx 1 root root 29 Apr 25 09:54 /etc/resolv.conf -> ../run/resolvconf/resolv.conf ### lsattr /etc/resolv.conf lsattr: Operation not supported While reading flags on /etc/resolv.conf ### cat /etc/resolv.conf # Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8) # DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN # 127.0.0.53 is the systemd-resolved stub resolver. # run "systemd-resolve --status" to see details about the actual nameservers. nameserver 10.0.4.1 nameserver 127.0.0.53 search lxd ### cat /etc/NetworkManager/NetworkManager.conf cat: /etc/NetworkManager/NetworkManager.conf: No such file or directory ## End of debugging information for resolvconf ## -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to dnsmasq in Ubuntu. https://bugs.launchpad.net/bugs/1688364 Title: Non existent host causes 100% cpu utilization by systemd-resolved and dnsmasq Status in dnsmasq package in Ubuntu: Incomplete Status in resolvconf package in Ubuntu: New Bug description: May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] googletagservices.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded googletagservices.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded cf.shareasimage.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] googletagservices.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forwarded googletagservices.com to 127.0.0.53 May 04 13:32:07 cannon-fodder dnsmasq[8101]: query[A] cf.shareasimage.com from 127.0.0.1 May 04 13:32:07 cannon-fodder dnsmasq[8101]: forward
[Touch-packages] [Bug 1654600] Update Released
The verification of the Stable Release Update for unattended-upgrades has completed successfully and the package has now been released to -updates. Subsequently, the Ubuntu Stable Release Updates Team is being unsubscribed and will not receive messages about this bug report. In the event that you encounter a regression using the package from -updates please report a new bug using ubuntu-bug and tag the bug report regression-update so we can easily find any regressions. -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to unattended-upgrades in Ubuntu. https://bugs.launchpad.net/bugs/1654600 Title: unattended-upgrade-shutdown hangs when /var is a separate filesystem Status in unattended-upgrades package in Ubuntu: Fix Released Status in unattended-upgrades source package in Xenial: Fix Released Status in unattended-upgrades source package in Yakkety: Fix Released Status in unattended-upgrades source package in Zesty: Fix Released Status in unattended-upgrades package in Debian: Fix Released Bug description: [SRU justification] This fix is needed to make sure that the system does not hang on shutdown when /var is a speparate file system [Impact] System can hang up to 10 minutes if not fixed. [Fix] Change the systemd unit's ExecStart to an ExecStop so the unit is correctly sequenced. Change WantedBy to multi-user.target. This requires working around Debian Bug #797108 which causes the new unit not to be enabled. Remove the unneeded override_dh_isntallinit Add Default-Start levels to the SysV initscript Improve DEP8 testing [Test Case] In a VM with /var separated from the / file system, shutdown the VM. It will hang for 10 minutes [Regression] Upgrade has been tested on Xenial, Yakkety, Zesty. do-release-upgrade has been tested from Trusty to Xenial. All behave as expected. A change of behavior may occur now that the systemd unit is correctly enabled, which would make functionalities like InstallOnShutdown to work as expected whereas it could have been broken previously. This cannot be considered as a regression as it is expected behavior. Shutdown may be slowed down as it now correctly depends on /var and /boot to be available so the unit will run earlier than previously. [Original description of the problem] The systemd unit file unattended-upgrades.service is used to stop a running unattended-upgrade process during shutdown. This unit file is running together with all filesystem unmount services. The unattended-upgrades service checks if the lockfile for unattended-upgrade (in /var/run) exists, and if it does, there is an unattended-upgrade in progress and the service will wait until it finishes (and therefore automatically wait at shutdown). However, if /var is a separate filesystem, it will get unmounted even though /var/run is a tmpfs that's still mounted on top of the /var/run directory in the /var filesystem. The unattended-upgrade script will fail to find lockfile, sleeps for 5 seconds, and tries to check the lockfile again. After 10 minutes (the default timeout), it will finally exit and the system will continue shutdown. The problem is the error handling in /usr/share/unattended-upgrades/unattended-upgrade-shutdown where it tries to lock itself: while True: res = apt_pkg.get_lock(options.lock_file) logging.debug("get_lock returned %i" % res) # exit here if there is no lock if res > 0: logging.debug("lock not taken") break lock_was_taken = True The function apt_pkg.get_lock() either returns a file descriptor, or -1 on an error. File descriptors are just C file descriptors, so they are always positive integers. The code should check the result to be negative, not positive. I have attached a patch to reverse the logic. Additional information: 1) Description: Ubuntu 16.04.1 LTS Release: 16.04 2) unattended-upgrades: Installed: 0.90ubuntu0.3 Candidate: 0.90ubuntu0.3 Version table: *** 0.90ubuntu0.3 500 500 http://nl.archive.ubuntu.com/ubuntu xenial-updates/main amd64 Packages 500 http://nl.archive.ubuntu.com/ubuntu xenial-updates/main i386 Packages 100 /var/lib/dpkg/status 0.90 500 500 http://nl.archive.ubuntu.com/ubuntu xenial/main amd64 Packages 500 http://nl.archive.ubuntu.com/ubuntu xenial/main i386 Packages 3) Fast reboot 4) Very slow reboot (after a 10 minutes timeout) To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/unattended-upgrades/+bug/1654600/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp