[Bug 1577197] Re: Pulseaudio bluez5-util.c: TryAcquire() failed - Operation Not Authorized
After two years of changing profile, disconnectiong, reconnecting and setting a2dp profile, for my headset manually about 6-7 times per day, i decided to throw the pain out for ever, anyway. You are welcome, Jônata Tyska Carvalho. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1577197 Title: Pulseaudio bluez5-util.c: TryAcquire() failed - Operation Not Authorized To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1577197/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1577197] Re: Pulseaudio bluez5-util.c: TryAcquire() failed - Operation Not Authorized
+1, The same problem. any update? patch? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1577197 Title: Pulseaudio bluez5-util.c: TryAcquire() failed - Operation Not Authorized To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1577197/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1577197] Re: Pulseaudio bluez5-util.c: TryAcquire() failed - Operation Not Authorized
After testing all workarounds, i wrote a python script to change profile, disconnect, reconnect and set profile to a2dp. it's working/ run it after pair/turning-on the device with python3.5. https://gist.github.com/pylover/d68be364adac5f946887b85e6ed6e7ae#file- a2dp-py -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1577197 Title: Pulseaudio bluez5-util.c: TryAcquire() failed - Operation Not Authorized To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1577197/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1350782] Re: Upstart does not reopen /var/log/upstart/* logfiles upon log rotation
Useful thread -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1350782 Title: Upstart does not reopen /var/log/upstart/* logfiles upon log rotation To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/upstart/+bug/1350782/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1577197] Re: Pulseaudio bluez5-util.c: TryAcquire() failed - Operation Not Authorized
The original gist updated to work with 16.10 also: https://gist.github.com/pylover/d68be364adac5f946887b85e6ed6e7ae#file- a2dp-py -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1577197 Title: Pulseaudio bluez5-util.c: TryAcquire() failed - Operation Not Authorized To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1577197/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1491663] [NEW] avahi doesn't load the services/squid-deb-proxy.service
Public bug reported: after restart the `squid-deb-proxy` in syslog: `Failed to load service group file /services/squid-deb-proxy.service, ignoring.` So i added the : service avahi-daemon reload in `/usr/share/squid-deb-proxy# nano init-common.sh` at the last line of post_start: post_start() { # create avahi service PORT=$(grep http_port /etc/squid-deb-proxy/squid-deb-proxy.conf|cut -d' ' -f2) if [ -n "$PORT" ] && [ -d /etc/avahi/services/ ]; then cat > $AVAHIFILE << EOF Squid deb proxy on %h _apt_proxy._tcp $PORT _apt_proxy._tcp $PORT EOF # ensure proper permissions chmod 0644 $AVAHIFILE fi service avahi-daemon reload } Now, it's working perfectly ** Affects: squid-deb-proxy (Ubuntu) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1491663 Title: avahi doesn't load the services/squid-deb-proxy.service To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/squid-deb-proxy/+bug/1491663/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1491663] Re: avahi doesn't load the services/squid-deb-proxy.service
** Description changed: - after restart the `squid-deb-proxy` in syslog: `Failed to load service + After restart the `squid-deb-proxy` in syslog: `Failed to load service group file /services/squid-deb-proxy.service, ignoring.` So i added the : - service avahi-daemon reload + service avahi-daemon reload - in `/usr/share/squid-deb-proxy# nano init-common.sh` + in the `/usr/share/squid-deb-proxy/init-common.sh` - at the last line of post_start: + at the last line of the `post_start` function: - post_start() { - # create avahi service - PORT=$(grep http_port /etc/squid-deb-proxy/squid-deb-proxy.conf|cut -d' ' -f2) - if [ -n "$PORT" ] && [ -d /etc/avahi/services/ ]; then - cat > $AVAHIFILE << EOF - - - - Squid deb proxy on %h - - _apt_proxy._tcp - $PORT - - - _apt_proxy._tcp - $PORT - - - EOF - # ensure proper permissions - chmod 0644 $AVAHIFILE - fi + post_start() { + # create avahi service + PORT=$(grep http_port /etc/squid-deb-proxy/squid-deb-proxy.conf|cut -d' ' -f2) + if [ -n "$PORT" ] && [ -d /etc/avahi/services/ ]; then + cat > $AVAHIFILE << EOF + + + + Squid deb proxy on %h + + _apt_proxy._tcp + $PORT + + + _apt_proxy._tcp + $PORT + + + EOF + # ensure proper permissions + chmod 0644 $AVAHIFILE + fi - service avahi-daemon reload + service avahi-daemon reload - } - + } Now, it's working perfectly -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1491663 Title: avahi doesn't load the services/squid-deb-proxy.service To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/squid-deb-proxy/+bug/1491663/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 696841] Re: vlc stops playing audio after pause/resume or seek
I have the exact same problem. It seems we don't have any relaxation in the open-source world ! -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/696841 Title: vlc stops playing audio after pause/resume or seek To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/vlc/+bug/696841/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 696841] Re: vlc stops playing audio after pause/resume or seek
the Alsa and pulseaudio are the bad & ugly gays. all stuff relating to those libraries are not working properly. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/696841 Title: vlc stops playing audio after pause/resume or seek To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/vlc/+bug/696841/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1296112] Re: Failed to load module "module-alsa-sink"
I have the same problem in 14.04 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1296112 Title: Failed to load module "module-alsa-sink" To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/1296112/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1170647] Re: Clicking on Nautilus’ launcher icon opens new window instead of restoring the minimized one when browsing external drives/locations
The same problem always happens to me. on 13.04 and after upgrade to 13.10. so always i have two nautilus windows. its hurt me. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1170647 Title: Clicking on Nautilus’ launcher icon opens new window instead of restoring the minimized one when browsing external drives/locations To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/bamf/+bug/1170647/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1170647] Re: Nautilus opens new window instead of restoring the minimized window
I have the same problem, in 13.04. i decided to use another file manager.until debug -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1170647 Title: Nautilus opens new window instead of restoring the minimized window To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1170647/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs