[Bug 1921468] Re: [UBUNTU 20.04] KVM guest fails to find zipl boot menu index

2021-03-29 Thread Christian Ehrhardt 
** Description changed:

+ 
+ [Impact] 
+ 
+  * When reading boot and boot-menu information from a block device (like a 
+passed through dasd) the bootloader can stumble over some data 
+structures due to mistakes in the code.
+ 
+  * The fix is to improve the bootloader code to no more fail in those 
+situations. The fixes are upstream for a while, small and well 
+reviewable
+ 
+ [Test Plan]
+ 
+  * The bad-case triggers when boot menu entries are in a given form. There 
+is this fix applied here to be able to handle those, but there are also 
+fixes to src:s390-tools to have zipl not write those hard-to-handle 
+entries. Due to that only zipl versions 2.12/2.13 (in the KVM guest) 
+should cause issues, and also then only in some combinations of 
+zipl.conf entries.
+The best known case to reliable trigger it can feel a bit cubersome for 
+a Ubuntu user as it includes usage of a suse installation media
+SLE-15-SP2-Full-s390x-GM-Media1.iso that happens to 
+bring the combinatino triggering this.
+Based on the guest code, focal guests would be affected as well, but we 
+haven't found (nor searched) which zipl.conf we'd need to recreate it 
+there.
+IBM will do the tests as they have doen when finding this issues as 
+they have the suse ISOs triggering this reliably.
+ 
+ [Where problems could occur]
+ 
+  * Issues would be s390x only and bootup-only which already is a very 
+narrow field one can easily look for in coming bug reports.
+In that area the thing one can think of is e.g. special bootloader 
+configs (many entries, long entries, ...) that might now fail to be 
+handled correctly.
+ 
+ [Other Info]
+  
+  * Suse iso can be downloaded (behind license - free trial - wall) from
+https://www.suse.com/download/sles/
+ 
+ 
+ 
+ 
+ 
  ---Problem Description---
- A KVM guest fails to find the zipl boot menu index if the "zIPL" magic value 
is listed at the end of a disk block. 
-  
+ A KVM guest fails to find the zipl boot menu index if the "zIPL" magic value 
is listed at the end of a disk block.
+ 
  ---System Hang---
  System sits in disabled wait, last console display
  LOADPARM=[]
  Using virtio-blk.
  Using ECKD scheme (block size  4096), CDL
  VOLSER=[0X0067]
-  
-  
+ 
  ---Steps to Reproduce---
- 1. Install Distro KVM guest from ISO on a DASD, e.g. using virt-install, my 
invocation was 
+ 1. Install Distro KVM guest from ISO on a DASD, e.g. using virt-install, my 
invocation was
  $ virt-install --name secguest2 --memory 2048 --disk 
path=/dev/disk/by-path/ccw-0.0.af6a --cdrom /var/lib/libvirt/images/xx.iso
  
  2. Select DHCP networking and ASCII console, and accept all defaults of
  the installer
  
  3. Let the installer reboot after the installation completes
  
  It is possible to recover by editing the domain XML with an explicit loadparm 
to select a boot menu entry. E.g. I changed the disk definition to
-
-   
-   
-   
-   
-   
- 
+    
+   
+   
+   
+   
+   
+ 
  
  The patches are now upstream:
  5f97ba0c74cc ("pc-bios/s390-ccw: fix off-by-one error")
  468184ec9024 ("pc-bios/s390-ccw: break loop if a null block number is 
reached")
  
  Current versions of qemu within Ubuntu
  
  focal (20.04LTS) 1:4.2-3ubuntu6 [ports]: arm64 armhf ppc64el s390x
  focal-updates (metapackages): 1:4.2-3ubuntu6.14: amd64 arm64 armhf ppc64el 
s390x
  
  groovy (20.10) (metapackages): 1:5.0-5ubuntu9 [ports]: arm64 armhf ppc64el 
s390x
  groovy-updates (metapackages): 1:5.0-5ubuntu9.6: amd64 arm64 armhf ppc64el 
s390x
  
  hirsute (metapackages): 1:5.2+dfsg-9ubuntu1: amd64 arm64 armhf ppc64el
  s390x
  
- 
- git-commits will apply seamlessley for the requested levels if not already 
integrated
+ git-commits will apply seamlessley for the requested levels if not
+ already integrated

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1921468

Title:
  [UBUNTU 20.04] KVM guest fails to find zipl boot menu index

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-z-systems/+bug/1921468/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1887535] Re: build operates differently if source is a git repo

2021-03-29 Thread Christian Ehrhardt 
** Description changed:

  [impact]
  
  the 'configure' file checks for the existence of a '.git' directory, and
  if present it enables special build options that aren't used for
  'normal' builds, some of which may cause the build to fail. This doesn't
  affect builds in PPAs or in the archive, since those do not happen in a
  git repo checkout, but this does cause very confusing failures and/or
  alternate behavior when building locally from a 'git ubuntu' checkout of
  the package.
  
  [test case]
  
  pull-lp-source qemu and build; assuming the build-deps are installed, it
  will build correctly.
  
  git ubuntu clone qemu and build; it will likely fail to build even if
  build-deps are installed, and even if it does build, the result will be
  different than a non-git build.
  
  [regression potential]
  
- any regression would likely cause a failed build, or incorrectly built
- package.
+ A regression would likely cause a failed build, or incorrectly built
+ package. We need to differ here for "packaging build" and "local
+ (manual) build". For the "local (manual) build" the regression is net to
+ zero as it currently does not work (or only with many many hurdles). The
+ "packaging build" is the more interesting one for this category. Here
+ the change should essentially turn out as no-op, but in case the most
+ likely regression is that this turns out to "change" the build result in
+ unexpected ways.
  
  [scope]
  
  this 'feature' comes from upstream, so this is needed in all releases.
  
  [other info]
  
  submitted patch upstream:
  https://lists.nongnu.org/archive/html/qemu-trivial/2020-07/msg00180.html
  
  and to Debian:
  https://salsa.debian.org/qemu-team/qemu/-/merge_requests/14
  
  this is related to bug 1887823, since building for bionic from a git
  repo fails due to that bug also.

** Description changed:

  [impact]
  
  the 'configure' file checks for the existence of a '.git' directory, and
  if present it enables special build options that aren't used for
  'normal' builds, some of which may cause the build to fail. This doesn't
  affect builds in PPAs or in the archive, since those do not happen in a
  git repo checkout, but this does cause very confusing failures and/or
  alternate behavior when building locally from a 'git ubuntu' checkout of
  the package.
  
  [test case]
  
  pull-lp-source qemu and build; assuming the build-deps are installed, it
  will build correctly.
  
  git ubuntu clone qemu and build; it will likely fail to build even if
  build-deps are installed, and even if it does build, the result will be
  different than a non-git build.
  
- [regression potential]
+ [Where problems could occur]
  
  A regression would likely cause a failed build, or incorrectly built
  package. We need to differ here for "packaging build" and "local
  (manual) build". For the "local (manual) build" the regression is net to
  zero as it currently does not work (or only with many many hurdles). The
  "packaging build" is the more interesting one for this category. Here
  the change should essentially turn out as no-op, but in case the most
  likely regression is that this turns out to "change" the build result in
  unexpected ways.
  
  [scope]
  
  this 'feature' comes from upstream, so this is needed in all releases.
  
  [other info]
  
  submitted patch upstream:
  https://lists.nongnu.org/archive/html/qemu-trivial/2020-07/msg00180.html
  
  and to Debian:
  https://salsa.debian.org/qemu-team/qemu/-/merge_requests/14
  
  this is related to bug 1887823, since building for bionic from a git
  repo fails due to that bug also.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1887535

Title:
  build operates differently if source is a git repo

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu/+bug/1887535/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1891810] Re: Backport 2.5.1 to fix missing openat2 syscall, causing problems for fuse-overlayfs in nspawn containers

2021-03-29 Thread Alex Murray
For the focal autopkgtest failures above:

docker.io/19.03.8-0ubuntu1.20.04.2 (arm64)
systemd/245.4-4ubuntu3.5 (ppc64el)

The docker.io/arm64 failed due to network issues in the test
infrastructure:

+ lxc launch ubuntu-daily:focal/arm64 docker -c security.nesting=true
Creating docker
Error: Failed instance creation: Get 
"https://cloud-images.ubuntu.com/daily/streams/v1/index.json": Unable to 
connect to: cloud-images.ubuntu.com:443


So should hopefully be fine if retriggered.

And again the systemd/ppc64el failure is already known and covered by
https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1918696

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1891810

Title:
  Backport 2.5.1 to fix missing openat2 syscall, causing problems for
  fuse-overlayfs in nspawn containers

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libseccomp/+bug/1891810/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1838151] Re: Poor quality audio with modern Bluetooth headsets in HSP/HFP. Missing wide band speech support (Bluetooth A2DP codecs).

2021-03-29 Thread Oscar Pérez del Campo
I guess this bug has been solved. As stated in 
https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/issues/776 by @rmeissn, 
from gnome-settings, when the headset is connected, you can switch from HSP/HFP 
to A2DP.
Once changed this setting my headsed sounds perfectly.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1838151

Title:
  Poor quality audio with modern Bluetooth headsets in HSP/HFP.  Missing
  wide band speech support (Bluetooth A2DP codecs).

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/1838151/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1915492] Re: ayatana-indicator-keyboard-service crashed with SIGSEGV in keyboard_GetLayout()

2021-03-29 Thread Bill (franksmcb)
** Information type changed from Private to Public Security

** Information type changed from Public Security to Public

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1915492

Title:
  ayatana-indicator-keyboard-service crashed with SIGSEGV in
  keyboard_GetLayout()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ayatana-indicator-keyboard/+bug/1915492/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1765363] Re: prime-select intel is not powering off the nvidia card

2021-03-29 Thread Chih-Hsyuan Ho
On-demand mode does not have this issue.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1765363

Title:
  prime-select intel is not powering off the nvidia card

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-prime/+bug/1765363/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1921583] Re: Can't run System Monitor in Ubuntu Unity 21.04

2021-03-29 Thread Robert Roth
@seb128, the crash in my opinion is not related to the theme, but rather
the same as reported upstream https://gitlab.gnome.org/GNOME/gnome-
system-monitor/-/issues/182, coming from the migration to LibHandy, on
non-GNOME environments. The issue was fixed upstream with commit
https://gitlab.gnome.org/GNOME/gnome-system-
monitor/-/commit/69224a7b27a85e7485fb47f9e9f14ce674798c28 on master and
with commit https://gitlab.gnome.org/GNOME/gnome-system-
monitor/-/commit/ba93af5b3e429db5a9c4dd7e2d06b800735a9071 on the
gnome-40 stable branch, and will be available with the next stable
release.

** Bug watch added: gitlab.gnome.org/GNOME/gnome-system-monitor/-/issues #182
   https://gitlab.gnome.org/GNOME/gnome-system-monitor/-/issues/182

** Also affects: libgtop via
   https://gitlab.gnome.org/GNOME/gnome-system-monitor/-/issues/182
   Importance: Unknown
   Status: Unknown

** No longer affects: libgtop

** Also affects: gnome-system-monitor via
   https://gitlab.gnome.org/GNOME/gnome-system-monitor/-/issues/182
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1921583

Title:
  Can't run System Monitor in Ubuntu Unity 21.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-system-monitor/+bug/1921583/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1891810] Autopkgtest regression report (libseccomp/2.5.1-1ubuntu1~20.04.1)

2021-03-29 Thread Ubuntu SRU Bot
All autopkgtests for the newly accepted libseccomp (2.5.1-1ubuntu1~20.04.1) for 
focal have finished running.
The following regressions have been reported in tests triggered by the package:

docker.io/19.03.8-0ubuntu1.20.04.2 (arm64)
systemd/245.4-4ubuntu3.5 (ppc64el)


Please visit the excuses page listed below and investigate the failures, 
proceeding afterwards as per the StableReleaseUpdates policy regarding 
autopkgtest regressions [1].

https://people.canonical.com/~ubuntu-archive/proposed-
migration/focal/update_excuses.html#libseccomp

[1] https://wiki.ubuntu.com/StableReleaseUpdates#Autopkgtest_Regressions

Thank you!

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1891810

Title:
  Backport 2.5.1 to fix missing openat2 syscall, causing problems for
  fuse-overlayfs in nspawn containers

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libseccomp/+bug/1891810/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1920682] Re: Lenovo x1 Yoga freeze after stylus touches the display

2021-03-29 Thread jomuller
*** This bug is a duplicate of bug 1920632 ***
https://bugs.launchpad.net/bugs/1920632

@RazTaz : you can force shutdown of the Thinkpad Yoga X11 by pressing
the power button during more than 5 seconds. By the way, there is a fix
of this bug (see https://bugs.launchpad.net/ubuntu/+source/linux-signed-
hwe-5.8/+bug/1920632) with a patch on the kernel (5.8.45) that can be
installed via proposed channel (see
https://wiki.ubuntu.com/Testing/EnableProposed).

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1920682

Title:
  Lenovo x1 Yoga freeze after stylus touches the display

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libwacom/+bug/1920682/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1891810] Re: Backport 2.5.1 to fix missing openat2 syscall, causing problems for fuse-overlayfs in nspawn containers

2021-03-29 Thread Alex Murray
The systemd/229-4ubuntu21.29 (i386) test looks very flaky - this seems
to fail more often than not looking at
https://autopkgtest.ubuntu.com/packages/s/systemd/xenial/i386 - and the
tests which failed for the libseccomp 2.5.1-1ubuntu1~16.04.1 run (boot-
and-services and boot-smoke) also failed for a recent linux-
meta/4.4.0.206.212 linux/4.4.0-206.238 run too -
https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac
/autopkgtest-xenial/xenial/i386/s/systemd/20210317_135037_af8e7@/log.gz
- but then passed on the next linux-meta upload. So this look like a
false positive in this case.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1891810

Title:
  Backport 2.5.1 to fix missing openat2 syscall, causing problems for
  fuse-overlayfs in nspawn containers

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libseccomp/+bug/1891810/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1913207] Re: unable to connect dell E6400 to wifi

2021-03-29 Thread Launchpad Bug Tracker
[Expired for linux (Ubuntu) because there has been no activity for 60
days.]

** Changed in: linux (Ubuntu)
   Status: Incomplete => Expired

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1913207

Title:
  unable to connect dell E6400 to wifi

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1913207/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1913614] Re: package shim-signed 1.40.4+15+1552672080.a4a1fbe-0ubuntu2 failed to install/upgrade: dependency problems - leaving triggers unprocessed

2021-03-29 Thread Launchpad Bug Tracker
[Expired for shim-signed (Ubuntu) because there has been no activity for
60 days.]

** Changed in: shim-signed (Ubuntu)
   Status: Incomplete => Expired

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1913614

Title:
  package shim-signed 1.40.4+15+1552672080.a4a1fbe-0ubuntu2 failed to
  install/upgrade: dependency problems - leaving triggers unprocessed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/shim-signed/+bug/1913614/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1921798] Re: I think it couldn't estimate what was needed for the upgrade and said it couldn't proceed

2021-03-29 Thread Neil Browne
Same as before.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1921798

Title:
  I think it couldn't estimate what was needed for the upgrade and said
  it couldn't proceed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1921798/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1918305] Re: mobile-tweaks packages breaks debootstrap with default variant

2021-03-29 Thread You-Sheng Yang
Strangely, important tag is not specified in the Ubuntu's source
package, and actually that downloaded source package is completely
identical to that of Debian Sid:

  $ grep -nr important hirsute/mobile-tweaks-3/debian || echo "Not found"
  Not found

  $ diff -qr hirsute/mobile-tweaks-3/ sid/mobile-tweaks-3/ && echo Identical
  Identical

The binary packages built from that downloaded source package have
priority set to optional:

  $ cd hirsute/mobile-tweaks-3
  $ fakeroot debian/rules binary
  $ dpkg-deb -I ../librem5-tweaks_3_all.deb | grep ^Priority
  Priority: optional

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1918305

Title:
  mobile-tweaks packages breaks debootstrap with default variant

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mobile-tweaks/+bug/1918305/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1894843] Re: [dvr_snat] Router update deletes rfp interface from qrouter even when VM port is present on this host

2021-03-29 Thread Hemanth Nakkina
** Tags added: sts

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1894843

Title:
  [dvr_snat] Router update deletes rfp interface from qrouter even when
  VM port is present on this host

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-archive/+bug/1894843/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1576559] Re: Refused to switch profile to headset_head_unit: Not connected

2021-03-29 Thread Ryan Ruen
@Daniel van Vugt - Thank you for suggesting the change in post #60. It
didn't work for me though.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1576559

Title:
  Refused to switch profile to headset_head_unit: Not connected

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/1576559/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1258838] Re: [Lenovo ThinkPad X230] suspend/resume failure

2021-03-29 Thread ALinuxUser
Not fixed for me, on 5.8 and 5.10 kernels.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1258838

Title:
  [Lenovo ThinkPad X230] suspend/resume failure

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1258838/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1891810] Autopkgtest regression report (libseccomp/2.5.1-1ubuntu1~16.04.1)

2021-03-29 Thread Ubuntu SRU Bot
All autopkgtests for the newly accepted libseccomp (2.5.1-1ubuntu1~16.04.1) for 
xenial have finished running.
The following regressions have been reported in tests triggered by the package:

systemd/229-4ubuntu21.29 (i386)


Please visit the excuses page listed below and investigate the failures, 
proceeding afterwards as per the StableReleaseUpdates policy regarding 
autopkgtest regressions [1].

https://people.canonical.com/~ubuntu-archive/proposed-
migration/xenial/update_excuses.html#libseccomp

[1] https://wiki.ubuntu.com/StableReleaseUpdates#Autopkgtest_Regressions

Thank you!

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1891810

Title:
  Backport 2.5.1 to fix missing openat2 syscall, causing problems for
  fuse-overlayfs in nspawn containers

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libseccomp/+bug/1891810/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1921766] Re: Output device not remembered after connecting/disconnecting another

2021-03-29 Thread Daniel van Vugt
Thanks for the bug report.

First please try editing /etc/pulse/default.pa and comment out:

  load-module module-switch-on-port-available
  load-module module-switch-on-connect

and then reboot. If that hasn't fixed the problem then please subscribe
to:

  https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/issues/44

** Bug watch added: gitlab.freedesktop.org/pulseaudio/pulseaudio/-/issues #44
   https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/issues/44

** Also affects: pulseaudio via
   https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/issues/44
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1921766

Title:
  Output device not remembered after connecting/disconnecting another

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/1921766/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1921803] [NEW] visual-regexp fails to start complaining “wish8.5” not found

2021-03-29 Thread Cesar Rabak
Public bug reported:

The Tcl file visual-regexp installed at /usr/bin has the interpreter
“wish8.5” hard coded in the shebang line.

However newer versions of Tcl have wish8.6 installed.

A solution would be to remove the specific version on the shebang line
leaving only "wish" as the installation of Tcl automatically creates a
link to the correct version of wish.

Presently the possibility of having too earlier versions of wish in a
machine are remote, so just this correction should sufice.

If it is deemed a more conservative approach should be used, then the
mechanisms of checking the interpreter version could be put at the very
start of the program.

HTH
--
Cesar Rabak

** Affects: visual-regexp (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/1921803

Title:
  visual-regexp fails to start complaining “wish8.5” not found

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/visual-regexp/+bug/1921803/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1921664] Re: Recent update broke qemu-system-riscv64

2021-03-29 Thread Tommy Thorn
FWIW, I just now built qemu-system-riscv64 from git ToT and that works
fine.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1921664

Title:
  Recent update broke qemu-system-riscv64

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu/+bug/1921664/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1921766] Re: Output device not remembered after connecting/disconnecting another

2021-03-29 Thread Daniel van Vugt
** Tags added: groovy

** Changed in: pulseaudio (Ubuntu)
   Importance: Undecided => Low

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1921766

Title:
  Output device not remembered after connecting/disconnecting another

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/1921766/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1921764] Re: Bug affichage.

2021-03-29 Thread Daniel van Vugt
** Tags added: radeon

** Summary changed:

- Bug affichage.
+ [radeon] Bug affichage.

** Package changed: xorg (Ubuntu) => xserver-xorg-video-ati (Ubuntu)

** Changed in: xserver-xorg-video-ati (Ubuntu)
   Status: New => Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1921764

Title:
  [radeon] Bug affichage.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-ati/+bug/1921764/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1891810] Re: Backport 2.5.1 to fix missing openat2 syscall, causing problems for fuse-overlayfs in nspawn containers

2021-03-29 Thread Alex Murray
Regarding the failing autopkgtests from bionic reported in comment #28:

 - the containerd and chrony ones on s390x are transient failures due to
networking issues in the test infrastructure so should hopefully pass on
a re-run.

 - I can't reproduce the flatpak/amd64 failure locally so I assume this
may pass on a re-run as well - this was run locally via:

autopkgtest --apt-pocket proposed=src:libseccomp --apt-upgrade flatpak
-- qemu /home/amurray/images/autopkgtest-bionic-amd64.img


 - the systemd/ppc64el failure is addressed by LP: #1918696

 - lxc/i386 is a flaky test timeout - this failure has been observed in
past runs of this as well as can be seen in the following:

https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-bionic/bionic/i386/l/lxc/20210120_133932_9027d@/log.gz
https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-bionic/bionic/i386/l/lxc/20210113_162315_b38c3@/log.gz
https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-bionic/bionic/i386/l/lxc/20210111_172145_15dd5@/log.gz

  so with any luck this test should also pass on a re-run too

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1891810

Title:
  Backport 2.5.1 to fix missing openat2 syscall, causing problems for
  fuse-overlayfs in nspawn containers

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libseccomp/+bug/1891810/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1921637] Re: [Lenovo ideapad 720S-13IKB] Flickering display

2021-03-29 Thread Daniel van Vugt
** Changed in: linux-hwe-5.8 (Ubuntu)
   Status: Incomplete => New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1921637

Title:
  [Lenovo ideapad 720S-13IKB] Flickering display

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-hwe-5.8/+bug/1921637/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1913439] Re: "Alert Sound" change has no effect at all

2021-03-29 Thread Daniel van Vugt
** Changed in: gnome-control-center (Ubuntu)
   Status: Expired => New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1913439

Title:
  "Alert Sound" change has no effect at all

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1913439/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1921595] Re: Screen flickers in Ubuntu Mate 21.04 and Ubuntu Unity 21.04

2021-03-29 Thread Daniel van Vugt
*** This bug is a duplicate of bug 1867668 ***
https://bugs.launchpad.net/bugs/1867668

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug 1867668, so it is being marked as such. Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report. Feel free to continue to report any other bugs you may
find.


** Tags added: groovy hirsute

** This bug has been marked a duplicate of bug 1867668
   Visual artifacts in Gnome Shell when using the old 'intel' Xorg driver

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1921595

Title:
  Screen flickers in Ubuntu Mate 21.04 and Ubuntu Unity 21.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1921595/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1921764] Re: Bug affichage.

2021-03-29 Thread Chris Guiver
Thank you for taking the time to report this bug and helping to make
Ubuntu better.

Unfortunately, we cannot work on this bug because your description
didn't include enough information. You may find it helpful to read "How
to report bugs effectively"
http://www.chiark.greenend.org.uk/~sgtatham/bugs.html. We'd be grateful
if you would then provide a more complete description of the problem.

We have instructions on debugging some types of problems at
http://wiki.ubuntu.com/DebuggingProcedures.

At a minimum, we need:

1. The specific steps or actions you took that caused you to encounter the 
problem.
2. The behavior you expected.
3. The behavior you actually encountered (in as much detail as possible).

Thank you!

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1921764

Title:
  Bug affichage.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1921764/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1891810] Re: Backport 2.5.1 to fix missing openat2 syscall, causing problems for fuse-overlayfs in nspawn containers

2021-03-29 Thread Alex Murray
Tested for libseccomp as follows:

cat 

[Bug 1891810] Re: Backport 2.5.1 to fix missing openat2 syscall, causing problems for fuse-overlayfs in nspawn containers

2021-03-29 Thread Alex Murray
The fix for systemd's LP: #1918696 is not in the systemd xenial SRU
since, as noted in that bug, systemd in xenial doesn't include upstream
commit 469830d1426a91e0897c321fdc8ee428f0a750c1 which reworked the code
to switch from seccomp_rule_add to seccomp_rule_add_exact. In this case
systemd could handle lack of arch support itself, instead of allowing
the 'not exact' seccomp syscall to just ignore the call due to lack of
arch support.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1891810

Title:
  Backport 2.5.1 to fix missing openat2 syscall, causing problems for
  fuse-overlayfs in nspawn containers

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libseccomp/+bug/1891810/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1918696] Re: libseccomp 2.5.1 will break unit tests on ppc

2021-03-29 Thread Alex Murray
Yes this is not needed for xenial since that version of systemd is not
new enough to be affected by this issue (see the bug description for
more details).

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1918696

Title:
  libseccomp 2.5.1 will break unit tests on ppc

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1918696/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1921802] [NEW] Realtek ALC294 Recording problem, all sound output piped through input

2021-03-29 Thread alienbiker99
Public bug reported:

I have encountered an issue with Ubuntu 21.04 where any audio output is
piped to the mic in incorrectly. This is happening by default when using
the 3.5 aux in & out ports. This would be great if I wanted a loopback
but I don't. This fundamentally breaks my workflow and would like to
find a resolution, but no idea what else to try.

This seems to happens on both the default pulseaudio server & force
switching to pipewire

Microphone is a vmoda boom pro
PC is a lenovo thinkcentre m910q tiny which has:
 - 1x mic jack
 - 1x combo headphone/mic jack
 - running on the realtek alc294
I have tested this by recording with parec with the physical microphone switch 
off and on, with a youtube video playing in the background. I have also done 
the same test with microphone detached from headphones and it still is piped 
through.
All audio is recorded, which to me seems to confirm there is an issue/bug 
somewhere in the audio stack.

I have only found one other example of this happening, where that was on
a different distro (manjaro) & reporter said to use usb, where I am
using aux/ 3.5mm plugs. However, that thread just stopped with no
resolution: https://forum.manjaro.org/t/all-the-sound-is-going-through-
my-microphone/41760/10

I have attempted the tests in that thread, and I can confirm that there
is some sort of software cross talk happening here.

I have also attempted both recommendation for hdajackretask, and setting
custom quirks in alsa-base.conf in this thread:
https://superuser.com/questions/1312970/headset-microphone-not-detected-
by-pulse-und-alsa

hdajackretask was tried to get the combo headphone/mic jack to work, but
did not find any setting to get that to work. Using two separate plugs,
headphones & microphone do work, so not an issue with the pin setup.

I tried the specific quirk for this codec, alc294-lenovo-mic, but that
did not work either.

Have tried:

options snd-hda-intel model=alc294-lenovo-mic
options snd-hda-intel model=headset-mic
options snd-hda-intel model=dell-headset-multi
In all variations, but this does not solve the issue of all of my audio is 
getting sent through the input for no good reason.

I am not sure how else to debug at this point and looking for any
insight possible.

ProblemType: Bug
DistroRelease: Ubuntu 21.04
Package: alsa-base 1.0.25+dfsg-0ubuntu7
Uname: Linux 5.11.0-051100rc7-generic x86_64
ApportVersion: 2.20.11-0ubuntu61
Architecture: amd64
CasperMD5CheckResult: unknown
CurrentDesktop: ubuntu:GNOME
Date: Mon Mar 29 20:41:36 2021
InstallationDate: Installed on 2021-02-05 (52 days ago)
InstallationMedia: Ubuntu 21.04 "Hirsute Hippo" - Alpha amd64 (20210123)
PackageArchitecture: all
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: alsa-driver
Symptom: audio
Symptom_AlsaRecordingTest: ALSA recording test through plughw:PCH successful
Symptom_Card: Built-in Audio - HDA Intel PCH
Symptom_Jack: Pink Mic, Front
Symptom_PulseAudioRecordingTest: PulseAudio recording test through plughw:PCH 
successful
Symptom_Type: None of the above
Title: [10MV000MUS, Realtek ALC294, Pink Mic, Front] Recording problem
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 09/18/2018
dmi.bios.release: 1.41
dmi.bios.vendor: LENOVO
dmi.bios.version: M1AKT3BA
dmi.board.name: 310B
dmi.board.vendor: LENOVO
dmi.board.version: SDK0J40697 WIN 3305150443148
dmi.chassis.type: 35
dmi.chassis.vendor: LENOVO
dmi.chassis.version: None
dmi.ec.firmware.release: 1.18
dmi.modalias: 
dmi:bvnLENOVO:bvrM1AKT3BA:bd09/18/2018:br1.41:efr1.18:svnLENOVO:pn10MV000MUS:pvrThinkCentreM910q:rvnLENOVO:rn310B:rvrSDK0J40697WIN3305150443148:cvnLENOVO:ct35:cvrNone:
dmi.product.family: ThinkCentre M910q
dmi.product.name: 10MV000MUS
dmi.product.sku: LENOVO_MT_10MV_BU_Think_FM_ThinkCentre M910q
dmi.product.version: ThinkCentre M910q
dmi.sys.vendor: LENOVO
mtime.conffile..etc.modprobe.d.alsa-base.conf: 2021-03-29T17:12:38.893779

** Affects: alsa-driver (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug hirsute wayland-session

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1921802

Title:
  Realtek ALC294 Recording problem, all sound output piped through input

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1921802/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1891270] Re: Iranian calendar shows in Azerbaijani language

2021-03-29 Thread Mohammad
I have this problem too!

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1891270

Title:
  Iranian calendar shows in Azerbaijani language

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-calendar/+bug/1891270/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1891270] Re: Iranian calendar shows in Azerbaijani language

2021-03-29 Thread Alireza Ahmadi
The screen shot of the Language Support's problem in the last daily
build of Xubuntu about this bug.

As you can see Azerbaijani is the default. Also Persian isn't exist.

** Attachment added: "Bug in Xubuntu"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-calendar/+bug/1891270/+attachment/5482240/+files/az.jpg

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1891270

Title:
  Iranian calendar shows in Azerbaijani language

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-calendar/+bug/1891270/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1920825] Re: FTBFS and autopkgtest failure in Hirsute (badly generated symbols files)

2021-03-29 Thread Dan Bungert
I appreciate the feedback Matthias.
Please see my new patch.  I have seen some unexpected behavior from dh-exec, 
and this patch provides a workaround.  Tomorrow I plan to play with dh-exec 
more and expect to be filing a bug.

** Patch added: "2-2.3.1-2ubuntu1.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/talloc/+bug/1920825/+attachment/5482239/+files/2-2.3.1-2ubuntu1.debdiff

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1920825

Title:
  FTBFS and autopkgtest failure in Hirsute (badly generated symbols
  files)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ldb/+bug/1920825/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1921801] Re: package grub-efi-amd64-signed 1.167+2.04-1ubuntu44 failed to install/upgrade: installed grub-efi-amd64-signed package post-installation script subprocess returned error exit status 3

2021-03-29 Thread Apport retracing service
** Tags removed: need-duplicate-check

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1921801

Title:
  package grub-efi-amd64-signed 1.167+2.04-1ubuntu44 failed to
  install/upgrade: installed grub-efi-amd64-signed package post-
  installation script subprocess returned error exit status 32

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/grub2-signed/+bug/1921801/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1921801] [NEW] package grub-efi-amd64-signed 1.167+2.04-1ubuntu44 failed to install/upgrade: installed grub-efi-amd64-signed package post-installation script subprocess returned error exit status

2021-03-29 Thread Hugo Becerra
Public bug reported:

Not sure what the issue was. I was doing a system update after a clean
install on an external USB I use to boot with as I have Garuda
dragonized edition currently installed on my internal eMMC drive.

ProblemType: Package
DistroRelease: Ubuntu 20.10
Package: grub-efi-amd64-signed 1.167+2.04-1ubuntu44
ProcVersionSignature: Ubuntu 5.8.0-48.54-generic 5.8.18
Uname: Linux 5.8.0-48-generic x86_64
ApportVersion: 2.20.11-0ubuntu50.5
Architecture: amd64
CasperMD5CheckResult: skip
Date: Mon Mar 29 17:22:49 2021
DuplicateSignature:
 package:grub-efi-amd64-signed:1.167+2.04-1ubuntu44
 Setting up grub-efi-amd64-signed (1.167+2.04-1ubuntu44) ...
 mount: /var/lib/grub/esp: special device /, does not exist.
 dpkg: error processing package grub-efi-amd64-signed (--configure):
  installed grub-efi-amd64-signed package post-installation script subprocess 
returned error exit status 32
ErrorMessage: installed grub-efi-amd64-signed package post-installation script 
subprocess returned error exit status 32
InstallationDate: Installed on 2021-03-29 (1 days ago)
InstallationMedia: Ubuntu 20.10 "Groovy Gorilla" - Release amd64 (20201022)
Python3Details: /usr/bin/python3.8, Python 3.8.6, python3-minimal, 
3.8.6-0ubuntu1
PythonDetails: N/A
RebootRequiredPkgs:
 libc6
 gnome-shell
RelatedPackageVersions:
 dpkg 1.20.5ubuntu2
 apt  2.1.10ubuntu0.3
SourcePackage: grub2-signed
Title: package grub-efi-amd64-signed 1.167+2.04-1ubuntu44 failed to 
install/upgrade: installed grub-efi-amd64-signed package post-installation 
script subprocess returned error exit status 32
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: grub2-signed (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package groovy package-from-proposed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1921801

Title:
  package grub-efi-amd64-signed 1.167+2.04-1ubuntu44 failed to
  install/upgrade: installed grub-efi-amd64-signed package post-
  installation script subprocess returned error exit status 32

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/grub2-signed/+bug/1921801/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1891810] Autopkgtest regression report (libseccomp/2.5.1-1ubuntu1~18.04.1)

2021-03-29 Thread Ubuntu SRU Bot
All autopkgtests for the newly accepted libseccomp (2.5.1-1ubuntu1~18.04.1) for 
bionic have finished running.
The following regressions have been reported in tests triggered by the package:

containerd/1.3.3-0ubuntu1~18.04.4 (s390x)
lxc/3.0.3-0ubuntu1~18.04.1 (i386)
flatpak/1.0.9-0ubuntu0.2 (amd64)
systemd/237-3ubuntu10.45 (ppc64el)
chrony/3.2-4ubuntu4.5 (s390x)


Please visit the excuses page listed below and investigate the failures, 
proceeding afterwards as per the StableReleaseUpdates policy regarding 
autopkgtest regressions [1].

https://people.canonical.com/~ubuntu-archive/proposed-
migration/bionic/update_excuses.html#libseccomp

[1] https://wiki.ubuntu.com/StableReleaseUpdates#Autopkgtest_Regressions

Thank you!

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1891810

Title:
  Backport 2.5.1 to fix missing openat2 syscall, causing problems for
  fuse-overlayfs in nspawn containers

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libseccomp/+bug/1891810/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1891270] Re: Iranian calendar shows in Azerbaijani language

2021-03-29 Thread Alireza Ahmadi
I also have this bug in the last daily build on all flavors.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1891270

Title:
  Iranian calendar shows in Azerbaijani language

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-calendar/+bug/1891270/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1921798] Re: I think it couldn't estimate what was needed for the upgrade and said it couldn't proceed

2021-03-29 Thread Neil Browne
2nd time this has occurred.

** Attachment added: "See screenshot of error message"
   
https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1921798/+attachment/5482220/+files/Screenshot%20from%202021-03-30%2010-02-23.png

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1921798

Title:
  I think it couldn't estimate what was needed for the upgrade and said
  it couldn't proceed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1921798/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1878194] Re: [Sennheiser HD 4.50 BTNC] Bluetooth headset not working when selecting HSP/HFP audio profile in Focal Fossa

2021-03-29 Thread Michael Davis
*** This bug is a duplicate of bug 1871794 ***
https://bugs.launchpad.net/bugs/1871794

Correction to #81, I meant to say on the A2DP I've got no microphone (as
I understand it this is expected as A2DP is unidirectional) and on the
HSP/HFP profile I have access to the microphone, but the audio quality
is very poor and unusable.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1878194

Title:
  [Sennheiser HD 4.50 BTNC] Bluetooth headset not working when selecting
  HSP/HFP audio profile in Focal Fossa

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1878194/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1921796] Re: [FFe] Upgrade Ardour to 6.6+git for gcc 10 + glib 2.68 compatibility

2021-03-29 Thread Łukasz Zemczak
Ok, this is really quite a lot of changes, but since this has been +1'ed
by the Ubuntu Studio lead (and being only seeded there), I guess let's
do it. Hopefully this won't slow the Beta down! If it does, I'll be
angry! FFe approved.

** Changed in: ardour (Ubuntu)
   Status: New => Triaged

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1921796

Title:
  [FFe] Upgrade Ardour to 6.6+git for gcc 10 + glib 2.68 compatibility

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ardour/+bug/1921796/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1921796] Re: [FFe] Upgrade Ardour to 6.6+git for gcc 10 + glib 2.68 compatibility

2021-03-29 Thread Erich Eickmeyer 
** Description changed:

  Ardour 6.5 currently FTBFS against glib 2.68 and its RCs. Per [1], this
  failure was introduced as a regression against glib 2.67.5 causing a
  complete failure to build from source. We were not made aware of this
  regression until Matthias Klouse (doko) did the mass test rebuild in the
  hours leading up to Beta Freeze.
  
  After working with the Ardour developers, namely Dr. Robin Gareus, we
  determined this failure to be solved in Ardour 6.6's git master (soon to
  be Ardour 6.7) with a minor patch. Unfortunately, since Ardour 6.6
  introduces several new features, this is requiring a Feature Freeze
  Exception to introduce the relevant fixes which were added after 6.6's
  release.
  
  The only flavor of Ubuntu currently seeding Ardour is Ubuntu Studio. As
  the Ubuntu Studio lead, I give my approval for this exception.
  
  This package update has been uploaded awaiting approval.
  
- [1] https://people.canonical.com/~doko/ftbfs-report/test-
- rebuild-20210325-hirsute-hirsute.html
+ List of changes is available in [2].
+ 
+ [1] 
https://people.canonical.com/~doko/ftbfs-report/test-rebuild-20210325-hirsute-hirsute.html
+ [2] http://ardour.org/whatsnew.html

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1921796

Title:
  [FFe] Upgrade Ardour to 6.6+git for gcc 10 + glib 2.68 compatibility

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ardour/+bug/1921796/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1921798] [NEW] I think it couldn't estimate what was needed for the upgrade and said it couldn't proceed

2021-03-29 Thread Neil Browne
Public bug reported:

I have made several attempt to upgrade. I think the error massage is
different each time. This is the second one where I have submitted a
report as recommended.

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: ubuntu-release-upgrader-core 1:18.04.42
ProcVersionSignature: Ubuntu 4.15.0-139.143-generic 4.15.18
Uname: Linux 4.15.0-139-generic x86_64
NonfreeKernelModules: lkp_Ubuntu_4_15_0_139_143_generic_75
ApportVersion: 2.20.9-0ubuntu7.23
Architecture: amd64
CrashDB: ubuntu
CurrentDesktop: ubuntu:GNOME
Date: Tue Mar 30 09:41:48 2021
InstallationDate: Installed on 2017-04-11 (1448 days ago)
InstallationMedia: Ubuntu 16.04.2 LTS "Xenial Xerus" - Release amd64 
(20170215.2)
PackageArchitecture: all
SourcePackage: ubuntu-release-upgrader
UpgradeStatus: Upgraded to bionic on 2021-03-29 (0 days ago)
VarLogDistupgradeTermlog:

** Affects: ubuntu-release-upgrader (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug bionic dist-upgrade third-party-packages

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1921798

Title:
  I think it couldn't estimate what was needed for the upgrade and said
  it couldn't proceed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1921798/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1920682] Re: Lenovo x1 Yoga freeze after stylus touches the display

2021-03-29 Thread RazTaz
*** This bug is a duplicate of bug 1920632 ***
https://bugs.launchpad.net/bugs/1920632

I confirm this bug on Thinkpad Yoga X11 gen.3 Laptop freezes completely
and it cannot even be rebooted. The only solution was to let it drain
the battery before charging to reboot. This is a very ugly bug.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1920682

Title:
  Lenovo x1 Yoga freeze after stylus touches the display

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libwacom/+bug/1920682/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1873952] Re: Call trace during manual controller reset on NVMe/RoCE array

2021-03-29 Thread Jennifer Duong
This call trace is also seen while manually resetting a NVIDIA Mellanox
InfiniBand Switch that is connected to an NVMe/IB EF600 storage array.
The server has an MCX354A-FCBT installed running with FW 2.42.5000. The
system is connected to a QM8700 and SB7800. Both switches are running
with MLNX OS 3.9.2110. The message logs have been attached.

** Attachment added: "ICTM1605S01H4-switch-port-fail"
   
https://bugs.launchpad.net/ubuntu/+source/nvme-cli/+bug/1873952/+attachment/5482212/+files/ICTM1605S01H4-switch-port-fail

** Summary changed:

- Call trace during manual controller reset on NVMe/RoCE array
+ Call trace during manual controller reset on NVMe/RoCE array and switch reset 
on NVMe/IB array

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1873952

Title:
  Call trace during manual controller reset on NVMe/RoCE array and
  switch reset on NVMe/IB array

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvme-cli/+bug/1873952/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1916301] Re: I can't play live videos on YouTube (problem with live transmission) - Ubuntu 18.04.5

2021-03-29 Thread Piotr
*of course I mean that Mozilla can't run these kind of videos. I wrote
that can run but this is not true. Firefox can't run in my PC mp4 video.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1916301

Title:
  I can't play live videos on YouTube (problem with live transmission) -
  Ubuntu 18.04.5

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/firefox/+bug/1916301/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1916301] Re: I can't play live videos on YouTube (problem with live transmission) - Ubuntu 18.04.5

2021-03-29 Thread Piotr
@madbiologist, I have problems with this video from the link and I can
confirm that this is MP4 video:

"video/mp4; codecs=\"avc1.4d4020\"","bitrate":3481000,


I don't have installed libavcodec57 yet but I would like to know if it is 
normal that Mozilla can run these kind videos (mp4) by default?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1916301

Title:
  I can't play live videos on YouTube (problem with live transmission) -
  Ubuntu 18.04.5

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/firefox/+bug/1916301/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1917101] Re: Booting into desktop results in flickering (also when I logout from the session or log in to the session)

2021-03-29 Thread Piotr
I recorded video but I must send it. This looks like problem with
drivers or kernel compatibility with old AMD cards. On new PC with Intel
UHD630 I don't have this issue for Ubuntu 20.04 LTS. This issue is only
for old AMD cards for both Ubuntu 18.04.5 and Ubuntu 20.04 LTS.

I will be back with video or picture.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1917101

Title:
  Booting into desktop results in flickering (also when I logout from
  the session or log in to the session)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-hwe-5.4/+bug/1917101/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1921796] [NEW] [FFe] Upgrade Ardour to 6.6+git for gcc 10 + glib 2.68 compatibility

2021-03-29 Thread Erich Eickmeyer 
Public bug reported:

Ardour 6.5 currently FTBFS against glib 2.68 and its RCs. Per [1], this
failure was introduced as a regression against glib 2.67.5 causing a
complete failure to build from source. We were not made aware of this
regression until Matthias Klouse (doko) did the mass test rebuild in the
hours leading up to Beta Freeze.

After working with the Ardour developers, namely Dr. Robin Gareus, we
determined this failure to be solved in Ardour 6.6's git master (soon to
be Ardour 6.7) with a minor patch. Unfortunately, since Ardour 6.6
introduces several new features, this is requiring a Feature Freeze
Exception to introduce the relevant fixes which were added after 6.6's
release.

The only flavor of Ubuntu currently seeding Ardour is Ubuntu Studio. As
the Ubuntu Studio lead, I give my approval for this exception.

This package update has been uploaded awaiting approval.

[1] https://people.canonical.com/~doko/ftbfs-report/test-
rebuild-20210325-hirsute-hirsute.html

** Affects: ardour (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/1921796

Title:
  [FFe] Upgrade Ardour to 6.6+git for gcc 10 + glib 2.68 compatibility

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ardour/+bug/1921796/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1918714] Re: Fix close/open corner cases

2021-03-29 Thread Ubuntu Kernel Bot
This bug is awaiting verification that the kernel in -proposed solves
the problem. Please test the kernel and update this bug with the
results. If the problem is solved, change the tag 'verification-needed-
bionic' to 'verification-done-bionic'. If the problem still exists,
change the tag 'verification-needed-bionic' to 'verification-failed-
bionic'.

If verification is not done by 5 working days from today, this fix will
be dropped from the source code, and this bug will be closed.

See https://wiki.ubuntu.com/Testing/EnableProposed for documentation how
to enable and use -proposed. Thank you!


** Tags added: verification-needed-bionic

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1918714

Title:
  Fix close/open corner cases

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1918714/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1921411] Re: linux-azure: Install PMEM modules by default

2021-03-29 Thread Ubuntu Kernel Bot
This bug is awaiting verification that the kernel in -proposed solves
the problem. Please test the kernel and update this bug with the
results. If the problem is solved, change the tag 'verification-needed-
bionic' to 'verification-done-bionic'. If the problem still exists,
change the tag 'verification-needed-bionic' to 'verification-failed-
bionic'.

If verification is not done by 5 working days from today, this fix will
be dropped from the source code, and this bug will be closed.

See https://wiki.ubuntu.com/Testing/EnableProposed for documentation how
to enable and use -proposed. Thank you!


** Tags added: verification-needed-bionic

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1921411

Title:
  linux-azure: Install PMEM modules by default

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-azure/+bug/1921411/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1916301] Re: I can't play live videos on YouTube (problem with live transmission) - Ubuntu 18.04.5

2021-03-29 Thread Piotr
I will try this soon. I can see that this libavcodec57 is from universe
repositories. Is it safe program? Why Ubuntu don't have installed this
by default? Is it licence problem? Second question is to updates for
libavcodec57 after April 2021 year. This is from Universe repositories
so this package will be not get updates in the future? This is very
important for me because I want to have bionic and I want to not migrate
to focal.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1916301

Title:
  I can't play live videos on YouTube (problem with live transmission) -
  Ubuntu 18.04.5

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/firefox/+bug/1916301/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1921794] [NEW] connection to scanner very slow

2021-03-29 Thread Amnon Yekutieli
Public bug reported:


When starting simple scan it does "search for scanners" for about 30 seconds, 
until "ready to scan". 

Previously (forgot when that was, but same hardware) it was almost
immediate.

Seems to be some software bug.

---

The printer/scanner and driver are:

Description:HP LaserJet MFP M426fdn
Location:   Local Printer
Driver: HP LaserJet Pro MFP M426-M427 Postscript 
via CUPS.

---

Running 
  hp-check -i 
gives this output:


Missing Required Dependencies
error: 'libcups2' package is missing/incompatible 
error: 'python3-pyqt4' package is missing/incompatible 
error: 'gtk2-engines-pixbuf' package is missing/incompatible 

Missing Optional Dependencies
error: 'python3-dbus.mainloop.qt' package is missing/incompatible

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: simple-scan 3.36.3-0ubuntu0.20.04.0
ProcVersionSignature: Ubuntu 5.4.0-70.78-generic 5.4.94
Uname: Linux 5.4.0-70-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.16
Architecture: amd64
CasperMD5CheckResult: skip
CurrentDesktop: KDE
Date: Tue Mar 30 00:59:36 2021
ExecutablePath: /usr/bin/simple-scan
InstallationDate: Installed on 2018-06-15 (1018 days ago)
InstallationMedia: Kubuntu 18.04 LTS "Bionic Beaver" - Release amd64 (20180426)
LocalLibraries: /usr/local/lib/libjpeg-x86_64.so.9.2.0
MachineType: Dell Inc. OptiPlex 7040
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-70-generic 
root=UUID=63e54e9f-567c-498f-883a-5216d348a80f ro quiet splash vt.handoff=7
SourcePackage: simple-scan
UpgradeStatus: Upgraded to focal on 2020-08-20 (221 days ago)
dmi.bios.date: 07/19/2019
dmi.bios.vendor: Dell Inc.
dmi.bios.version: 1.15.5
dmi.board.name: 0HD5W2
dmi.board.vendor: Dell Inc.
dmi.board.version: A01
dmi.chassis.type: 3
dmi.chassis.vendor: Dell Inc.
dmi.modalias: 
dmi:bvnDellInc.:bvr1.15.5:bd07/19/2019:svnDellInc.:pnOptiPlex7040:pvr:rvnDellInc.:rn0HD5W2:rvrA01:cvnDellInc.:ct3:cvr:
dmi.product.family: OptiPlex
dmi.product.name: OptiPlex 7040
dmi.product.sku: 06B9
dmi.sys.vendor: Dell Inc.

** Affects: simple-scan (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug focal local-libs

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1921794

Title:
  connection to scanner very slow

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/simple-scan/+bug/1921794/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1915605] Re: Firefox (circle spinning while run program) problem on Ubuntu bionic family - 18.04.5

2021-03-29 Thread Piotr
Bug still exists in Mozilla Firefox 87.0. Ubuntu 20.04.2.0 don't have
this issue. Problem only in Bionic system. When you will fix this issue?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1915605

Title:
  Firefox (circle spinning while run program) problem on Ubuntu bionic
  family - 18.04.5

To manage notifications about this bug go to:
https://bugs.launchpad.net/firefox/+bug/1915605/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1920829] Re: do-release-upgrade fails complaining of held broken packages that apt-get upgrade or dist-upgrade does not report

2021-03-29 Thread Brian Murray
*** This bug is a duplicate of bug 1069133 ***
https://bugs.launchpad.net/bugs/1069133

Reviewing the files from your upgrade attempt you seem to have enabled a
PPA that provides Xorg packages. This will prevent the upgrade as that
PPA contains package version numbers greater than the release to which
you are upgrading. You can revert the PPA by installing the ppa-purge
package from the official Ubuntu archive and then running 'sudo ppa-
purge ppa:oibaf/graphics-drivers'.  After that you can try upgrading
again and if it still fails open a new bug report.  Thanks and good
luck!

** Changed in: ubuntu-release-upgrader (Ubuntu)
   Status: New => Invalid

** Tags added: ppa xorg-oibaf-ppa

** This bug has been marked a duplicate of bug 1069133
   Get upgrade error 12.04 - 12.10 "Could not determine upgrade" - xorg from ppa

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1920829

Title:
  do-release-upgrade fails complaining of held broken packages that apt-
  get upgrade or dist-upgrade does not report

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1920829/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1529827] Re: battstat-applet memory leak

2021-03-29 Thread Ondřej Bojar
I recently upgraded my 16.04 to 18.04 and then immediately to 20.04 (no
restart between 16->18 and 18->20, if I remember correctly). I have
always been using MATE and always had battery indicator in the taskbar
(obviously, it was visually different in 16.04).

Today, I spotted a memory leak in battstat-applet, reaching up to 3% of
my RAM.

No LSB modules are available.
Distributor ID: Ubuntu
Description:Ubuntu 20.04.2 LTS
Release:20.04
Codename:   focal

I seem to have the freshest mate-applets available for 20.04:

$ sudo apt install mate-applets
Reading package lists... Done
Building dependency tree   
Reading state information... Done
mate-applets is already the newest version (1.24.0-1).

Do I understand correctly that the fix is available also in 20.04 focal? Why I 
do not get it?
Or is there a way to install a 20.10 package to my 20.04?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1529827

Title:
  battstat-applet memory leak

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mate-applets/+bug/1529827/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1871332] Re: Many records created at the same time may lead to a race condition

2021-03-29 Thread Nicolas Bock
** Also affects: designate (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/1871332

Title:
  Many records created at the same time may lead to a race condition

To manage notifications about this bug go to:
https://bugs.launchpad.net/designate/+bug/1871332/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1824874] Re: undismissable, unclickable authentication dialog left on screen (top-left corner) after policykit authentication [pushModal: invocation of begin_modal failed]

2021-03-29 Thread James Nelson
Another user affected on 20.04.  Happened to me after resuming from
sleep.  Alt+F2: R made it go away for me as well.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1824874

Title:
  undismissable, unclickable authentication dialog left on screen (top-
  left corner) after policykit authentication [pushModal: invocation of
  begin_modal failed]

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-shell/+bug/1824874/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 3904] Re: sceenblank ignores $SCREEN_LOCK in /etc/default/acpi-support

2021-03-29 Thread Colin Watson
** Changed in: acpi-support (Ubuntu)
 Assignee: a59ff5 (a59ff5a59ff5) => (unassigned)

** Information type changed from Public Security to Public

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/3904

Title:
  sceenblank ignores $SCREEN_LOCK in /etc/default/acpi-support

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/acpi-support/+bug/3904/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 161000] Re: Hang using window switcher (alt-Tab)

2021-03-29 Thread Colin Watson
** Changed in: compiz (Ubuntu)
   Status: Fix Released => Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/161000

Title:
  Hang using window switcher (alt-Tab)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/compiz/+bug/161000/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 740854] Re: compiz crashed with SIGSEGV in WallScreen::drawCairoTextureOnScreen()

2021-03-29 Thread Colin Watson
** Changed in: compiz (Ubuntu)
   Status: Fix Released => Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/740854

Title:
  compiz crashed with SIGSEGV in WallScreen::drawCairoTextureOnScreen()

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity/+bug/740854/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1546931] Re: libgit2-dev depends on libcurl4-openssl-dev, not libcurl4-dev (Xenial, 16.04)

2021-03-29 Thread Utkarsh Gupta
** Changed in: libgit2 (Ubuntu)
   Status: Confirmed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1546931

Title:
  libgit2-dev depends on libcurl4-openssl-dev, not libcurl4-dev (Xenial,
  16.04)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libgit2/+bug/1546931/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1572515] Re: package libgit2-24 (not installed) failed to install/upgrade: podproces dpkg-deb --control zwrócił kod błędu 2

2021-03-29 Thread Utkarsh Gupta
** Changed in: libgit2 (Ubuntu)
   Status: New => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1572515

Title:
  package libgit2-24 (not installed) failed to install/upgrade:
  podproces dpkg-deb --control zwrócił kod błędu 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libgit2/+bug/1572515/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1575053] Re: Please move the "$HOME/snap" directory to a less obtrusive location

2021-03-29 Thread Colin Watson
** Changed in: snapd (Ubuntu)
   Status: Fix Released => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1575053

Title:
  Please move the "$HOME/snap" directory to a less obtrusive location

To manage notifications about this bug go to:
https://bugs.launchpad.net/snapd/+bug/1575053/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1595565] Re: No https support in gitlib2

2021-03-29 Thread Utkarsh Gupta
** Changed in: libgit2 (Ubuntu)
   Status: Confirmed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1595565

Title:
  No https support in gitlib2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libgit2/+bug/1595565/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1778817] Re: release upgrade from xenial to bionic desktop: screen locks itself, password to unlock fails

2021-03-29 Thread Colin Watson
** Changed in: compiz (Ubuntu Bionic)
   Status: Fix Released => Invalid

** Changed in: compiz (Ubuntu)
   Status: Fix Released => Triaged

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1778817

Title:
  release upgrade from xenial to bionic desktop: screen locks itself,
  password to unlock fails

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/compiz/+bug/1778817/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1512325] Re: unity locks and compiz 100% cpu when clicking on Files from launcher

2021-03-29 Thread Colin Watson
** Changed in: compiz
   Status: Fix Released => Confirmed

** Changed in: compiz (Ubuntu)
   Status: Fix Released => Triaged

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1512325

Title:
  unity locks and compiz 100% cpu when clicking on Files from launcher

To manage notifications about this bug go to:
https://bugs.launchpad.net/compiz/+bug/1512325/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1518411] Re: "Maximum number of clients reached", new in Ubuntu 15.10

2021-03-29 Thread Colin Watson
** Changed in: xorg-server (Ubuntu)
   Status: Fix Released => Confirmed

** Changed in: compiz
   Status: Fix Released => Confirmed

** Changed in: compiz (Ubuntu)
   Status: Fix Released => Triaged

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1518411

Title:
  "Maximum number of clients reached", new in Ubuntu 15.10

To manage notifications about this bug go to:
https://bugs.launchpad.net/compiz/+bug/1518411/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1544814] Re: Pointer disappeared or is a large X after Compiz update.

2021-03-29 Thread Colin Watson
** Changed in: compiz (Ubuntu)
   Status: Fix Released => Triaged

** Changed in: compiz
   Status: Fix Released => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1544814

Title:
  Pointer disappeared or is a large X after Compiz update.

To manage notifications about this bug go to:
https://bugs.launchpad.net/compiz/+bug/1544814/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1574951] Re: Ubuntu 16.04 Screen, mousepad and keyboard freezing

2021-03-29 Thread Colin Watson
** Changed in: compiz (Ubuntu)
   Status: Fix Released => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1574951

Title:
  Ubuntu 16.04 Screen, mousepad and keyboard freezing

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/compiz/+bug/1574951/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1673247] Re: package snapd 2.23.1 failed to install/upgrade: trying to overwrite '/etc/apparmor.d/usr.lib.snapd.snap-confine', which is also in package snap-confine 2.23.1

2021-03-29 Thread Colin Watson
** Changed in: snapd (Ubuntu Xenial)
   Status: Fix Released => Confirmed

** Changed in: snapd (Ubuntu Zesty)
   Status: Fix Released => Confirmed

** Changed in: dpkg (Ubuntu Trusty)
   Status: Fix Released => Confirmed

** Changed in: dpkg (Ubuntu Xenial)
   Status: Fix Released => Confirmed

** Changed in: dpkg (Ubuntu Zesty)
   Status: Fix Released => Confirmed

** Changed in: snapd (Ubuntu Yakkety)
   Status: Fix Released => Invalid

** Changed in: snapd (Ubuntu)
 Assignee: (unassigned) => Michael Vogt (mvo)

** Changed in: dpkg (Ubuntu Yakkety)
   Status: Fix Released => Invalid

** Changed in: snapd (Ubuntu)
   Status: Fix Released => In Progress

** Changed in: dpkg (Ubuntu)
   Status: Fix Released => In Progress

** Changed in: snapd (Ubuntu Trusty)
   Status: Fix Released => In Progress

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1673247

Title:
  package snapd 2.23.1 failed to install/upgrade: trying to overwrite
  '/etc/apparmor.d/usr.lib.snapd.snap-confine', which is also in package
  snap-confine 2.23.1

To manage notifications about this bug go to:
https://bugs.launchpad.net/snapd/+bug/1673247/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1921693] Re: purging samba package does not remove config files

2021-03-29 Thread Sander Sander
The leftovers were caused by dependencies installed alongside with the
samba package. After removing all dependencies from the system the
leftovers disappeared. This is not a bug.

** Changed in: samba (Ubuntu)
   Status: New => Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1921693

Title:
  purging samba package does not remove config files

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/1921693/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 815996] Re: Desktop occasionally freezes/locks up when switching workspaces

2021-03-29 Thread Colin Watson
** Changed in: compiz (Ubuntu)
   Status: Fix Released => Confirmed

** Changed in: compiz-plugins-main (Ubuntu)
   Status: Fix Released => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/815996

Title:
  Desktop occasionally freezes/locks up when switching workspaces

To manage notifications about this bug go to:
https://bugs.launchpad.net/compiz/+bug/815996/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1003842] Re: dnsmasq sometimes fails to resolve private names in networks with non-equivalent nameservers

2021-03-29 Thread Colin Watson
** Changed in: network-manager (Ubuntu)
   Status: Fix Released => Invalid

** Changed in: network-manager (Ubuntu Precise)
   Status: Fix Released => Invalid

** Changed in: dnsmasq (Ubuntu)
   Status: Fix Released => Triaged

** Changed in: dnsmasq (Ubuntu Precise)
   Status: Fix Released => Triaged

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1003842

Title:
  dnsmasq sometimes fails to resolve private names in networks with non-
  equivalent nameservers

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dnsmasq/+bug/1003842/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1163886] Re: software-center crashed with signal 5 with the GNOME3 PPA on 13.04

2021-03-29 Thread Colin Watson
** Changed in: webkitgtk (Ubuntu)
   Status: Fix Released => Triaged

** Changed in: software-center (Ubuntu)
   Status: Fix Released => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1163886

Title:
  software-center crashed with signal 5 with the GNOME3 PPA on 13.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/webkit-open-source/+bug/1163886/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1163886] Re: software-center crashed with signal 5 with the GNOME3 PPA on 13.04

2021-03-29 Thread a59ff5
** Changed in: webkitgtk (Ubuntu)
   Status: Triaged => Fix Released

** Changed in: software-center (Ubuntu)
   Status: Confirmed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1163886

Title:
  software-center crashed with signal 5 with the GNOME3 PPA on 13.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/webkit-open-source/+bug/1163886/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1265192] Re: Install/reinstall wipes out all/other partitions

2021-03-29 Thread Colin Watson
** Changed in: ubiquity (Ubuntu)
 Assignee: a59ff5 (a59ff5a59ff5) => Colin Watson (cjwatson)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1265192

Title:
  Install/reinstall wipes out all/other partitions

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1265192/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1311323] Re: disabling "Show live previews of windows in switcher" leads to wrong mouse position while enabling it breaks "Show Desktop" hot corner

2021-03-29 Thread Colin Watson
** Changed in: compiz
   Status: Fix Released => Confirmed

** Changed in: compiz (Ubuntu)
   Status: Fix Released => Triaged

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1311323

Title:
  disabling "Show live previews of windows in switcher" leads to wrong
  mouse position while enabling it breaks "Show Desktop" hot corner

To manage notifications about this bug go to:
https://bugs.launchpad.net/compiz/+bug/1311323/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1385475] Re: error processing archive /var/cache/apt/archives/dbus-property-service_0.7_all.deb (--unpack): trying to overwrite '/usr/share/autopilot-touch/apparmor/click.rules', which is also in

2021-03-29 Thread Colin Watson
** Changed in: autopilot (Ubuntu)
   Status: Fix Released => Confirmed

** Changed in: dbus-property-service (Ubuntu)
   Status: Fix Released => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1385475

Title:
  error processing archive /var/cache/apt/archives/dbus-property-
  service_0.7_all.deb (--unpack):  trying to overwrite '/usr/share
  /autopilot-touch/apparmor/click.rules', which is also in package
  autopilot-touch 1.5.0+14.10.20140812-0ubuntu1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/autopilot/+bug/1385475/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1401488] Re: [regression] Mir servers (since 0.9) randomly crash in malloc due to heap corruption

2021-03-29 Thread Colin Watson
** Changed in: glib2.0 (Ubuntu)
   Status: Fix Released => Triaged

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1401488

Title:
  [regression] Mir servers (since 0.9) randomly crash in malloc due to
  heap corruption

To manage notifications about this bug go to:
https://bugs.launchpad.net/glib/+bug/1401488/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1509532] Re: Ubuntu 15.10 freezes after userid switch

2021-03-29 Thread Colin Watson
** Changed in: compiz (Ubuntu)
   Status: Fix Released => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1509532

Title:
  Ubuntu 15.10 freezes after userid switch

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/compiz/+bug/1509532/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1509765] Re: Ubuntu 15.10 desktop freezes

2021-03-29 Thread Colin Watson
** Changed in: compiz
   Status: Fix Released => Confirmed

** Changed in: compiz (Ubuntu)
   Status: Fix Released => Triaged

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1509765

Title:
  Ubuntu 15.10 desktop freezes

To manage notifications about this bug go to:
https://bugs.launchpad.net/compiz/+bug/1509765/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1888399] Re: After Update->20.04, Empathy/Salut stops working

2021-03-29 Thread Christian González
BTW, I purged/reinstalled empathy. Did not help.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1888399

Title:
  After Update->20.04, Empathy/Salut stops working

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/empathy/+bug/1888399/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1163886] Re: software-center crashed with signal 5 with the GNOME3 PPA on 13.04

2021-03-29 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: software-center (Ubuntu)
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1163886

Title:
  software-center crashed with signal 5 with the GNOME3 PPA on 13.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/webkit-open-source/+bug/1163886/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1385475] Re: error processing archive /var/cache/apt/archives/dbus-property-service_0.7_all.deb (--unpack): trying to overwrite '/usr/share/autopilot-touch/apparmor/click.rules', which is also in

2021-03-29 Thread a59ff5
** Changed in: autopilot (Ubuntu)
   Status: Confirmed => Fix Released

** Changed in: dbus-property-service (Ubuntu)
   Status: Confirmed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1385475

Title:
  error processing archive /var/cache/apt/archives/dbus-property-
  service_0.7_all.deb (--unpack):  trying to overwrite '/usr/share
  /autopilot-touch/apparmor/click.rules', which is also in package
  autopilot-touch 1.5.0+14.10.20140812-0ubuntu1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/autopilot/+bug/1385475/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1401488] Re: [regression] Mir servers (since 0.9) randomly crash in malloc due to heap corruption

2021-03-29 Thread a59ff5
** Changed in: glib2.0 (Ubuntu)
   Status: Triaged => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1401488

Title:
  [regression] Mir servers (since 0.9) randomly crash in malloc due to
  heap corruption

To manage notifications about this bug go to:
https://bugs.launchpad.net/glib/+bug/1401488/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1888399] Re: After Update->20.04, Empathy/Salut stops working

2021-03-29 Thread Christian González
Is there anything I can post here to fix this bug? What else information
do you need?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1888399

Title:
  After Update->20.04, Empathy/Salut stops working

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/empathy/+bug/1888399/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1921785] [NEW] do-release-upgrade breaks due to unresolved packagesources, but i disabled all other sources

2021-03-29 Thread pappou
Public bug reported:

do-release-upgrade breaks due to unresolved packagesources, but i
disabled all other sources

Description:Ubuntu 18.04.5 LTS
Release:18.04

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: ubuntu-release-upgrader-core 1:18.04.42
ProcVersionSignature: Ubuntu 4.15.0-140.144-lowlatency 4.15.18
Uname: Linux 4.15.0-140-lowlatency x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.9-0ubuntu7.23
Architecture: amd64
CrashDB: ubuntu
Date: Mon Mar 29 22:23:21 2021
InstallationDate: Installed on 2019-03-06 (754 days ago)
InstallationMedia: Ubuntu-Studio 18.04 LTS "Bionic Beaver" - Release amd64 
(20180426)
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=de_DE
 TERM=xterm-256color
 PATH=(custom, no user)
 LANG=de_DE.UTF-8
 SHELL=/bin/bash
SourcePackage: ubuntu-release-upgrader
UpgradeStatus: Upgraded to bionic on 2021-03-29 (0 days ago)

** Affects: ubuntu-release-upgrader (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug bionic dist-upgrade

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1921785

Title:
  do-release-upgrade breaks due to unresolved packagesources, but i
  disabled all other sources

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1921785/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1003842] Re: dnsmasq sometimes fails to resolve private names in networks with non-equivalent nameservers

2021-03-29 Thread a59ff5
** Changed in: network-manager (Ubuntu Precise)
   Status: Invalid => Fix Released

** Changed in: network-manager (Ubuntu)
   Status: Invalid => Fix Released

** Changed in: dnsmasq (Ubuntu Precise)
   Status: Triaged => Fix Released

** Changed in: dnsmasq (Ubuntu)
   Status: Triaged => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1003842

Title:
  dnsmasq sometimes fails to resolve private names in networks with non-
  equivalent nameservers

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dnsmasq/+bug/1003842/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1915072] Re: [plugin][ovn-central][ovn-host] include logs

2021-03-29 Thread Eric Desrochers
[Focal regression / autopkgtest]

After a few retried, the tests passed. I had the same failure at the first run 
with Hirsute.
http://autopkgtest.ubuntu.com/packages/s/sosreport/focal/amd64

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1915072

Title:
  [plugin][ovn-central][ovn-host] include logs

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sosreport/+bug/1915072/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1921783] [NEW] ubuntu advantage error

2021-03-29 Thread Muhammad Atif Ali
Public bug reported:

Unexpected error(s) occurred.
For more details, see the log: /var/log/ubuntu-advantage.log
To file a bug run: ubuntu-bug ubuntu-advantage-tools

ProblemType: Bug
DistroRelease: Ubuntu 21.04
Package: ubuntu-advantage-tools 26.2
Uname: Linux 5.4.72-microsoft-standard-WSL2 x86_64
ApportVersion: 2.20.11-0ubuntu61
Architecture: amd64
CasperMD5CheckResult: unknown
Date: Tue Mar 30 01:14:18 2021
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 LANG=C.UTF-8
 SHELL=/bin/bash
SourcePackage: ubuntu-advantage-tools
UpgradeStatus: Upgraded to hirsute on 2021-03-26 (3 days ago)

** Affects: ubuntu-advantage-tools (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug hirsute uec-images

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1921783

Title:
  ubuntu advantage error

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-advantage-tools/+bug/1921783/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1921784] [NEW] Gnome Boxes VM app crashes upon trying to search for an ISO image on my local machine

2021-03-29 Thread Kirkland Johnson
Public bug reported:

Release: Ubuntu 20.04.2 LTS
Package: gnome-boxes 3.36.5-0ubuntu2

Expected: After trying to browse my own files for an iso image i
expected a drop down of my files to populate.


Instead: I am able to open gnome boxes upon start up of my Ubuntu machine. Once 
I click the "+" in order to create a new virtual machine I am prompted to pick 
my OS image. After opting to use an iso image file from my files the 
application freezes and I have to quit the application. After the application 
crashes I am no longer able to open the Boxes app until I restart my Ubuntu 
machine. I was able to open the logs form gnome boxes and i was given this 
message upon opening the logs. "Failed to read AppArmor profiles list 
'/sys/kernel/security/apparmor/profiles': Permission denied"
After traversing to this file I saw that the profiles file had all was 
readable, so I am unsure what the problem is.

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: gnome-boxes 3.36.5-0ubuntu2
ProcVersionSignature: Ubuntu 5.4.0-70.78-generic 5.4.94
Uname: Linux 5.4.0-70-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.11-0ubuntu27.16
Architecture: amd64
CasperMD5CheckResult: skip
CurrentDesktop: ubuntu:GNOME
Date: Mon Mar 29 13:55:17 2021
InstallationDate: Installed on 2019-12-11 (474 days ago)
InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
ProcEnviron:
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: gnome-boxes
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: gnome-boxes (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug focal

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1921784

Title:
  Gnome Boxes VM app crashes upon trying to search for an ISO image on
  my local machine

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-boxes/+bug/1921784/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1915072] Re: [plugin][ovn-central][ovn-host] include logs

2021-03-29 Thread Eric Desrochers
[Focal regression / autopkgtest]

After a few retries, the test passed. I had the same failure at the first run 
with Hirsute.
http://autopkgtest.ubuntu.com/packages/s/sosreport/focal/amd64

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1915072

Title:
  [plugin][ovn-central][ovn-host] include logs

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sosreport/+bug/1915072/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1921773] Re: apt upgrade clears a hold on an uninstalled snapd

2021-03-29 Thread bughit
Is 20.04 going to get 1.20.6? It's currently on 1.19.7.

If not, can this be backported to 1.19.x?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1921773

Title:
  apt upgrade clears a hold on an uninstalled snapd

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dpkg/+bug/1921773/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1575053] Re: Please move the "$HOME/snap" directory to a less obtrusive location

2021-03-29 Thread Ian Johnson
** Changed in: snapd
   Status: Fix Released => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1575053

Title:
  Please move the "$HOME/snap" directory to a less obtrusive location

To manage notifications about this bug go to:
https://bugs.launchpad.net/snapd/+bug/1575053/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1919349] Re: Invalid compatible on CM4 arm64

2021-03-29 Thread Ubuntu Kernel Bot
This bug is awaiting verification that the kernel in -proposed solves
the problem. Please test the kernel and update this bug with the
results. If the problem is solved, change the tag 'verification-needed-
groovy' to 'verification-done-groovy'. If the problem still exists,
change the tag 'verification-needed-groovy' to 'verification-failed-
groovy'.

If verification is not done by 5 working days from today, this fix will
be dropped from the source code, and this bug will be closed.

See https://wiki.ubuntu.com/Testing/EnableProposed for documentation how
to enable and use -proposed. Thank you!


** Tags added: verification-needed-groovy

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1919349

Title:
  Invalid compatible on CM4 arm64

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-raspi/+bug/1919349/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1920272] Re: sru cloud-init (20.4-0 to 21.1-19) Xenial, Bionic, Focal, and Groovy

2021-03-29 Thread James Falcon
Attach file maas-sru-21.1-19.txt.

** Attachment added: "maas-sru-21.1-19.txt"
   
https://bugs.launchpad.net/bugs/1920272/+attachment/5482179/+files/maas-sru-21.1-19.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1920272

Title:
  sru cloud-init (20.4-0 to 21.1-19) Xenial, Bionic, Focal, and Groovy

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/1920272/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1920272] Re: sru cloud-init (20.4-0 to 21.1-19) Xenial, Bionic, Focal, and Groovy

2021-03-29 Thread James Falcon
Attach file curtin-cloudinit-sru-21.1-19.txt.

** Attachment added: "curtin-cloudinit-sru-21.1-19.txt"
   
https://bugs.launchpad.net/bugs/1920272/+attachment/5482178/+files/curtin-cloudinit-sru-21.1-19.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1920272

Title:
  sru cloud-init (20.4-0 to 21.1-19) Xenial, Bionic, Focal, and Groovy

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/1920272/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1920272] Re: sru cloud-init (20.4-0 to 21.1-19) Xenial, Bionic, Focal, and Groovy

2021-03-29 Thread James Falcon
Attach file nocloud-lxd-sru-21.1-19.txt.

** Attachment added: "nocloud-lxd-sru-21.1-19.txt"
   
https://bugs.launchpad.net/bugs/1920272/+attachment/5482176/+files/nocloud-lxd-sru-21.1-19.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1920272

Title:
  sru cloud-init (20.4-0 to 21.1-19) Xenial, Bionic, Focal, and Groovy

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/1920272/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

  1   2   3   4   5   >