[Bug 1840686] Re: Xenial images won't reboot if disk size is > 2TB when using GPT
** Description changed: - CPC team has recently converted Xenial images to use GPT instead of MBR. - However, after booting an instance that has a disk size of 2049 GB or + [Impact] + + GCP wishes for xenial images to use GPT instead of MBR as a part of + their efforts to change to efi based booting, but they have hit an issue + where after booting an instance that has a disk size of 2049 GB or higher, we hang on the next subsequent boot (Logs indicate it hanging on "Booting Hard Disk 0". - This works on Bionic, but what makes it strange is that they have the - same kernel revision - 4.15.0-1-37. + This is a problem in grub2 where the system would become unbootable + after ext* online resize if no resize_inode was created at ext* format + time. - patrick_viafore@patviafore-test-3072-xenial:~$ lsb_release -rd - Description:Ubuntu 16.04.6 LTS - Release:16.04 - patrick_viafore@patviafore-test-3072-xenial:~$ sudo dpkg -l | grep linux-gcp - ii linux-gcp4.15.0.1037.51 amd64Complete Google Cloud Platform (GCP) Linux kernel and headers - ii linux-gcp-headers-4.15.0-10374.15.0-1037.39~16.04.1 amd64Header files related to Linux kernel version 4.15.0 + [Test Case] To reproduce: - 1) Create an image with a disk size of 3072 using a serial that has GPT - gcloud compute instances create test-3072-xenial --image daily-ubuntu-1604-xenial-v20190731 --image-project ubuntu-os-cloud-devel --boot-disk-size 3072 + 1) Create an image with a disk size of 3072 using a serial that has GPT: - Reboot the instance + gcloud compute instances create test-3072-xenial --image daily- + ubuntu-1604-xenial-v20190731 --image-project ubuntu-os-cloud-devel + --boot-disk-size 3072 - 2) It will hang on reboot and you cannot connect + 2) Reboot the instance - 3) Please note that later serials have the GPT change reverted. + The instance will hang on reboot and you cannot connect. If you go to + GCP console and select Logs > Serial port 1 (console), you will see the + boot process has stopped at "Booting Hard Disk 0". - You can replace xenial with bionic in the above commands to get a bionic - instance instead. + I have built a test package, which is available here: - To test this out in a more slower fashion: + https://launchpad.net/~mruffell/+archive/ubuntu/lp1840686-test - 1) Create an image with a disk size of 2048 using a serial that has GPT - gcloud compute instances create test-2048-xenial --image daily-ubuntu-1604-xenial-v20190731 --image-project ubuntu-os-cloud-devel --boot-disk-size 2048 + If you do step 1) but do not reboot, and instead add the PPA, install + the new grub like so: - 2) Resize the disk to 3072 + 1) gcloud compute instances create test-3072-xenial --image daily-ubuntu-1604-xenial-v20190731 --image-project ubuntu-os-cloud-devel --boot-disk-size 3072 + 2) sudo add-apt-repository ppa:mruffell/lp1840686-test + 3) sudo apt-get update + 4) sudo apt remove grub-common grub-efi-amd64 grub-efi-amd64-bin grub-efi-amd64-signed grub-pc-bin grub2-common + 5) sudo apt install grub-common grub-efi-amd64 grub-efi-amd64-bin grub-pc-bin grub2-common + 6) sudo grub-install /dev/sda + 7) sudo reboot - 3) Issue growpart /dev/sda 1 + The instance will boot successfully and you will be able to connect. - 4) Issue resize2fs /dev/sda1 + Note, we must use "daily-ubuntu-1604-xenial-v20190731" as the image, as + it is enabled for GPT and efi. GCP was reverted back to MBR and bios + booting because of this bug, so the latest images will not reproduce the + problem. - 5) Issue rsize2fs /dev/sda1 again + [Regression Potential] - On the second resize2fs, it tries to resize again, but on a working - instance, it says there's nothing to resize. + Grub is a core package and every care must be taken in order to not + introduce any regressions. - I've tried starting from a Xenial instance and doing a do-release- - upgrade to get to bionic and then doing the growpart/resize2fs, but the - issue still shows up. + The commit is present in B, D, E and F, and is considered well tested + and widely adopted by the community. + + The commit comes with its own testcase, to test the ext4_metabg fix. + + The changes are localised to ext* based filesystems, although since they + are the most popular family of filesystems used by the community, this + does not reduce risk of breakage by much. + + If a regression were to happen, a regression would have a large impact, + and in the worst case, can lead to unbootable systems and data loss for + users who are not technical enough to reinstall grub from a working + package inside the broken system chroot. + + [Other Info] + + In comment #4, Sultan identifies the fix as: + + commit e20aa39ea4298011ba716087713cff26c6c52006 + Author: Vladimir Serbinenko + Date: Mon Feb 16 20:53:26 2015 +0100 + Subject: ext2: Support META_BG. + + This commit is fr
[Bug 1848795] Re: Internal error in varasm.c
first error with g++-8 and g++-9: expected-results.cpp:67:29: error: initialization of flexible array member in a nested context ** Changed in: gcc-7 (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/1848795 Title: Internal error in varasm.c To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gcc-7/+bug/1848795/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1840686] Re: Xenial images won't reboot if disk size is > 2TB when using GPT
I have built a test package for grub2, which is available here: https://launchpad.net/~mruffell/+archive/ubuntu/lp1840686-test It contains http://git.savannah.gnu.org/cgit/grub.git/commit/?id=e20aa39ea4298011ba716087713cff26c6c52006 mentioned in comment #4. I did the following to test that the test package fixes the problem: 1) gcloud compute instances create test-3072-xenial --image daily-ubuntu-1604-xenial-v20190731 --image-project ubuntu-os-cloud-devel --boot-disk-size 3072 2) sudo add-apt-repository ppa:mruffell/lp1840686-test 3) sudo apt-get update 4) sudo apt remove grub-common grub-efi-amd64 grub-efi-amd64-bin grub-efi-amd64-signed grub-pc-bin grub2-common 5) sudo apt install grub-common grub-efi-amd64 grub-efi-amd64-bin grub-pc-bin grub2-common 6) sudo grub-install /dev/sda 7) sudo reboot The instance started like normal and you can connect to it. ** Changed in: grub (Ubuntu Xenial) Assignee: (unassigned) => Matthew Ruffell (mruffell) ** Changed in: grub (Ubuntu Xenial) Status: Triaged => In Progress ** 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/1840686 Title: Xenial images won't reboot if disk size is > 2TB when using GPT To manage notifications about this bug go to: https://bugs.launchpad.net/cloud-init/+bug/1840686/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 736743] Re: environment block not implemented on btrfs
Thank you for reporting this bug to Ubuntu. Ubuntu 11.04 (natty) reached end-of-life on October 28, 2012. See this document for currently supported Ubuntu releases: https://wiki.ubuntu.com/Releases We appreciate that this bug may be old and you might not be interested in discussing it any more. But if you are then please upgrade to the latest Ubuntu version and re-test. If you then find the bug is still present in the newer Ubuntu version, please add a comment here telling us which new version it is in and change the bug status to Confirmed. ** Changed in: grub2 (Ubuntu) Status: Triaged => Won't Fix -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/736743 Title: environment block not implemented on btrfs To manage notifications about this bug go to: https://bugs.launchpad.net/grub/+bug/736743/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848834] Re: ClusterMon resource creation core-dumps while created with extra_option -E
** Summary changed: - ClusterMon resource core-dumps while created with extr_option -E + ClusterMon resource creation core-dumps while created with extra_option -E -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848834 Title: ClusterMon resource creation core-dumps while created with extra_option -E To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/corosync/+bug/1848834/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1787418] Re: gimp crashed whilst playing with photo filters
I missed Erich's 18.10 is EOL; please re-test - so this is belated sorry. Issue still occurs - box is now eoan (19.10); different image Load picture of bird; trimmed photo to 1920x1440 (didn't bother shrinking to 1920x1040) Filters -> Eg -> ISO Noise reduction ... churns awhile then crash; nothing in /var/crash/ I can't be sure this is the same option I did last time, as I didn't say what it is. ** Changed in: gimp (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/1787418 Title: gimp crashed whilst playing with photo filters To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gimp/+bug/1787418/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848836] [NEW] Unmounted drive shortcut is on the dock
Public bug reported: Hi, On ubuntu 19.10,when the google account is set, there is a shortcut in nautilus. This shortcut, even when if it's not mounted, is visible in the dock when show-mounts option is actived. If i'm not wrong, it should be visible only when it's mounted ** Affects: gnome-shell-extension-ubuntu-dock (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/1848836 Title: Unmounted drive shortcut is on the dock To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gnome-shell-extension-ubuntu-dock/+bug/1848836/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1730924]
Hi Andy, >PCI core *does* the same (*) for you already. OK; I see, with this change, command timeout is not recreated; without this change, just after second iteration I see the issue(as given in comment#103); >Does it mean we have some race there? I need to understand more on this; I was just trying this change because, different open source wireless drivers have this in their resume handler; Regards, Ganapathi -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1730924 Title: Wifi does down "crash" in Surface Pro 4 To manage notifications about this bug go to: https://bugs.launchpad.net/linux/+bug/1730924/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1730924]
(In reply to Ganapathi Bhat from comment #105) > Created attachment 285537 [details] > 0001-mwifiex-set-PCIE-to-PCI_D0-power-state-on-resume > > Hi Tsuchiya/Verdre, > > Could please give a try with attached change; > > Regards, > Ganapathi I'm wondering if it has any effect on any system. PCI core *does* the same (*) for you already. Does it mean we have some race there? *) See implementation of pci_pm_resume(). -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1730924 Title: Wifi does down "crash" in Surface Pro 4 To manage notifications about this bug go to: https://bugs.launchpad.net/linux/+bug/1730924/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848632] Re: eoan/linux-azure: 5.3.0-1004.4 -proposed tracker
** Changed in: kernel-sru-workflow/automated-testing Status: New => Confirmed ** Changed in: kernel-sru-workflow/promote-to-proposed Status: Fix Committed => Fix Released ** Changed in: kernel-sru-workflow/regression-testing Status: New => Confirmed ** Changed in: kernel-sru-workflow/security-signoff Status: New => Confirmed ** Changed in: kernel-sru-workflow/stakeholder-signoff Status: New => Confirmed ** Changed in: kernel-sru-workflow/verification-testing Status: New => Confirmed ** Changed in: kernel-sru-workflow/automated-testing Status: Confirmed => In Progress ** Changed in: kernel-sru-workflow/regression-testing Status: Confirmed => In Progress ** Changed in: kernel-sru-workflow/verification-testing Status: Confirmed => In Progress ** Description changed: This bug will contain status and test results related to a kernel source (or snap) as stated in the title. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- boot-testing-requested: true kernel-stable-master-bug: 1848648 packages: lrm: linux-restricted-modules-azure main: linux-azure meta: linux-meta-azure signed: linux-signed-azure - phase: Promote to Proposed - phase-changed: Friday, 18. October 2019 21:55 UTC + phase: Testing + phase-changed: Saturday, 19. October 2019 06:02 UTC + proposed-announcement-sent: true + proposed-testing-requested: true reason: - promote-to-proposed: Ongoing -- packages waiting in -proposed for mirror sync + automated-testing: Ongoing -- testing in progress + regression-testing: Ongoing -- testing in progress + security-signoff: Pending -- waiting for signoff + stakeholder-signoff: Pending -- waiting for signoff + verification-testing: Ongoing -- testing in progress variant: debs -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848632 Title: eoan/linux-azure: 5.3.0-1004.4 -proposed tracker To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1848632/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848630] Re: eoan/linux-raspi2: 5.3.0-1008.9 -proposed tracker
** Changed in: kernel-sru-workflow/security-signoff Status: New => Confirmed ** Changed in: kernel-sru-workflow/verification-testing Status: Confirmed => In Progress ** Description changed: This bug will contain status and test results related to a kernel source (or snap) as stated in the title. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- boot-testing-requested: true kernel-stable-master-bug: 1848648 packages: main: linux-raspi2 meta: linux-meta-raspi2 phase: Testing phase-changed: Saturday, 19. October 2019 00:11 UTC proposed-announcement-sent: true proposed-testing-requested: true reason: automated-testing: Stalled -- testing FAILED certification-testing: Ongoing -- testing in progress + security-signoff: Pending -- waiting for signoff verification-testing: Ongoing -- testing in progress variant: debs -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848630 Title: eoan/linux-raspi2: 5.3.0-1008.9 -proposed tracker To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1848630/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1847478] Re: eoan kernel does not contain "ipv6: do not free rt if FIB_LOOKUP_NOREF is set on suppress rule"
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- eoan' to 'verification-done-eoan'. If the problem still exists, change the tag 'verification-needed-eoan' to 'verification-failed-eoan'. 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-eoan -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1847478 Title: eoan kernel does not contain "ipv6: do not free rt if FIB_LOOKUP_NOREF is set on suppress rule" To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1847478/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848635] Re: eoan/linux-gcp: 5.3.0-1005.5 -proposed tracker
** Changed in: kernel-sru-workflow/automated-testing Status: New => Confirmed ** Changed in: kernel-sru-workflow/promote-to-proposed Status: Fix Committed => Fix Released ** Changed in: kernel-sru-workflow/regression-testing Status: New => Confirmed ** Changed in: kernel-sru-workflow/security-signoff Status: New => Confirmed ** Changed in: kernel-sru-workflow/verification-testing Status: New => Confirmed ** Changed in: kernel-sru-workflow/automated-testing Status: Confirmed => In Progress ** Changed in: kernel-sru-workflow/regression-testing Status: Confirmed => In Progress ** Changed in: kernel-sru-workflow/verification-testing Status: Confirmed => In Progress ** Description changed: This bug will contain status and test results related to a kernel source (or snap) as stated in the title. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- boot-testing-requested: true kernel-stable-master-bug: 1848648 packages: lrm: linux-restricted-modules-gcp main: linux-gcp meta: linux-meta-gcp signed: linux-signed-gcp - phase: Promote to Proposed - phase-changed: Friday, 18. October 2019 22:02 UTC + phase: Testing + phase-changed: Saturday, 19. October 2019 06:02 UTC + proposed-announcement-sent: true + proposed-testing-requested: true reason: - promote-to-proposed: Ongoing -- packages waiting in -proposed for mirror sync + automated-testing: Ongoing -- testing in progress + regression-testing: Ongoing -- testing in progress + security-signoff: Pending -- waiting for signoff + verification-testing: Ongoing -- testing in progress variant: debs -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848635 Title: eoan/linux-gcp: 5.3.0-1005.5 -proposed tracker To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1848635/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848631] Re: eoan/linux-aws: 5.3.0-1004.4 -proposed tracker
** Changed in: kernel-sru-workflow/security-signoff Status: New => Confirmed ** Changed in: kernel-sru-workflow/verification-testing Status: Confirmed => In Progress ** Description changed: This bug will contain status and test results related to a kernel source (or snap) as stated in the title. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- boot-testing-requested: true kernel-stable-master-bug: 1848648 packages: lrm: linux-restricted-modules-aws main: linux-aws meta: linux-meta-aws phase: Testing phase-changed: Saturday, 19. October 2019 00:15 UTC proposed-announcement-sent: true proposed-testing-requested: true reason: automated-testing: Ongoing -- testing in progress regression-testing: Ongoing -- testing in progress + security-signoff: Pending -- waiting for signoff verification-testing: Ongoing -- testing in progress variant: debs -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848631 Title: eoan/linux-aws: 5.3.0-1004.4 -proposed tracker To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1848631/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848648] Re: eoan/linux: 5.3.0-19.20 -proposed tracker
** Changed in: kernel-sru-workflow/automated-testing Status: New => Confirmed ** Changed in: kernel-sru-workflow/certification-testing Status: New => Confirmed ** Changed in: kernel-sru-workflow/promote-to-proposed Status: Fix Committed => Fix Released ** Changed in: kernel-sru-workflow/regression-testing Status: New => Confirmed ** Changed in: kernel-sru-workflow/security-signoff Status: New => Confirmed ** Changed in: kernel-sru-workflow/verification-testing Status: New => Confirmed ** Changed in: kernel-sru-workflow/automated-testing Status: Confirmed => In Progress ** Changed in: kernel-sru-workflow/regression-testing Status: Confirmed => In Progress ** Changed in: kernel-sru-workflow/verification-testing Status: Confirmed => In Progress ** Description changed: This bug will contain status and test results related to a kernel source (or snap) as stated in the title. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- boot-testing-requested: true + bugs-spammed: true packages: lrm: linux-restricted-modules main: linux meta: linux-meta signed: linux-signed - phase: Promote to Proposed - phase-changed: Friday, 18. October 2019 21:41 UTC + phase: Testing + phase-changed: Saturday, 19. October 2019 06:01 UTC + proposed-announcement-sent: true + proposed-testing-requested: true reason: - promote-to-proposed: Ongoing -- packages waiting in -proposed for mirror sync + automated-testing: Ongoing -- testing in progress + certification-testing: Ongoing -- testing in progress + regression-testing: Ongoing -- testing in progress + security-signoff: Pending -- waiting for signoff + verification-testing: Ongoing -- testing in progress trackers: bionic/linux-hwe-edge: bug 1848645 eoan/linux-aws: bug 1848631 eoan/linux-azure: bug 1848632 eoan/linux-gcp: bug 1848635 eoan/linux-kvm: bug 1848642 eoan/linux-oracle: bug 1848644 eoan/linux-raspi2: bug 1848630 variant: debs -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848648 Title: eoan/linux: 5.3.0-19.20 -proposed tracker To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1848648/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848642] Re: eoan/linux-kvm: 5.3.0-1004.4 -proposed tracker
** Changed in: kernel-sru-workflow/security-signoff Status: New => Confirmed ** Changed in: kernel-sru-workflow/verification-testing Status: Confirmed => In Progress ** Description changed: This bug will contain status and test results related to a kernel source (or snap) as stated in the title. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- boot-testing-requested: true kernel-stable-master-bug: 1848648 packages: main: linux-kvm meta: linux-meta-kvm phase: Testing phase-changed: Saturday, 19. October 2019 00:11 UTC proposed-announcement-sent: true proposed-testing-requested: true reason: automated-testing: Ongoing -- testing in progress regression-testing: Ongoing -- testing in progress + security-signoff: Pending -- waiting for signoff verification-testing: Ongoing -- testing in progress variant: debs -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848642 Title: eoan/linux-kvm: 5.3.0-1004.4 -proposed tracker To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1848642/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848834] [NEW] ClusterMon resource core-dumps while created with extr_option -E
Public bug reported: Hi I have a 2 nodes cluster with a number of resources working fine. I am using Ubuntu 16.04 with Pacemaker: 1.1.14 The moment i create a ClusterMon resource with an extra_option "-E" to run a script, it crashes and i can see the following in dmesg [73880.444953] crm_mon[20739]: segfault at 0 ip 7f948cc5c746 sp 7ffed0cb0fb8 error 4 in libc-2.23.so[7f948cbd1000+1c] I am using the following command to create the resource: pcs resource create newRes ClusterMon user="root" extra_options="-E /usr/local/bin/new.sh " OR pcs resource create newRes ocf:pacemaker:ClusterMon user="root" extra_options="-E /usr/local/bin/new.sh " and immediately i see following in /var/log/messages 2019-10-19T01:53:11.783763-04:00 master daemon notice crmd 17042 notice: Operation newRes_monitor_0: not running (node=master.dhcp, call=85, rc=7, cib-update=58, confirmed=true) 2019-10-19T01:53:12.097529-04:00 master daemon info systemd - Started Session c75 of user root. 2019-10-19T01:53:12.105468-04:00 master auth info systemd-logind - New session c75 of user root. 2019-10-19T01:53:12.150340-04:00 master daemon notice lrmd 17039 notice: newRes_start_0:30376:stderr [ mesg: ttyname failed: Inappropriate ioctl for device ] 2019-10-19T01:53:12.186340-04:00 master daemon notice crmd 17042 notice: Operation newRes_start_0: ok (node=master.dhcp, call=86, rc=0, cib-update=59, confirmed=true) 2019-10-19T01:53:12.195312-04:00 master kern info kernel - crm_mon[30398]: segfault at 0 ip 7f9cfbe41746 sp 7ffd971060e8 error 4 in libc-2.23.so[7f9cfbdb6000+1c] 2019-10-19T01:53:12.216644-04:00 master auth info systemd-logind - Removed session c75. 2019-10-19T01:53:12.241439-04:00 master daemon notice lrmd 17039 notice: newRes_monitor_1:30406:stderr [ /usr/lib/ocf/resource.d/heartbeat/ClusterMon: 155: kill: No such process ] 2019-10-19T01:53:12.241980-04:00 master daemon notice lrmd 17039 notice: newRes_monitor_1:30406:stderr [ ] 2019-10-19T01:53:12.245273-04:00 master daemon notice crmd 17042 notice: master.dhcp-newRes_monitor_1:87 [ /usr/lib/ocf/resource.d/heartbeat/ClusterMon: 155: kill: No such process\n\n ] Note: - All other types of resources i.e. IPAddr, Drbd, systemd are working fine. - Also, if the newRes is created wihtout -E, it works fine. - Script has no complicated code. Event without the "echo" command i am seeing same issue. cat /usr/local/bin/new.sh #!/bin/sh echo "HELLO from Crm_mon script" >> /var/log/messages exit ** Affects: corosync (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/1848834 Title: ClusterMon resource core-dumps while created with extr_option -E To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/corosync/+bug/1848834/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848831] Re: Intel WiFi AX200 firmware loading error resulting in no wifi
Hi, could you also try mainline kernel https://kernel.ubuntu.com /~kernel-ppa/mainline/v5.4-rc3/ as well as backport-iwlwifi dkms from https://launchpad.net/~vicamo/+archive/ubuntu/backport-iwlwifi-dkms ? The firmware blobs in Eoan are already latest openly available ones. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848831 Title: Intel WiFi AX200 firmware loading error resulting in no wifi To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux-firmware/+bug/1848831/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848831] Re: Intel WiFi AX200 firmware loading error resulting in no wifi
The issue could be in: linux-modules-extra-5.3.0-18-generic (iwlwifi module) rather than in intel's firmware -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848831 Title: Intel WiFi AX200 firmware loading error resulting in no wifi To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux-firmware/+bug/1848831/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848630] Re: eoan/linux-raspi2: 5.3.0-1008.9 -proposed tracker
** Changed in: kernel-sru-workflow/automated-testing Status: In Progress => Incomplete ** Description changed: This bug will contain status and test results related to a kernel source (or snap) as stated in the title. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- boot-testing-requested: true kernel-stable-master-bug: 1848648 packages: main: linux-raspi2 meta: linux-meta-raspi2 phase: Testing phase-changed: Saturday, 19. October 2019 00:11 UTC proposed-announcement-sent: true proposed-testing-requested: true reason: - automated-testing: Ongoing -- testing in progress + automated-testing: Stalled -- testing FAILED certification-testing: Ongoing -- testing in progress verification-testing: Ongoing -- testing in progress variant: debs -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848630 Title: eoan/linux-raspi2: 5.3.0-1008.9 -proposed tracker To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1848630/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848831] [NEW] Intel WiFi AX200 firmware loading error resulting in no wifi
Public bug reported: Ubuntu 19.10 - stock kernel - Intel AX200 PCI card in a desktop PC uname -a Linux nahuatl 5.3.0-18-generic #19-Ubuntu SMP Tue Oct 8 20:14:06 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux The card is detected OK as dmesg shows, however the card's firmware fails immediately after loading (see dmesg output below) and wifi doesn't work at all. Big disappointment since the AX200 chip was supposed to be supported on 19.10. Ubuntu includes two ax200 firmware versions, version 48 loads by default in my system (and fails). I tried version 46 (by renaming the version 48 file) and it failed in the exact same manner $ ls /lib/firmware/iwlwifi-cc-* /lib/firmware/iwlwifi-cc-a0-46.ucode /lib/firmware/iwlwifi-cc-a0-48.ucode The card's Bluetooth functionality is also detected and it works fine. It's just the wifi FW loading what seems broken in ubuntu's 5.3 kernel. $ rfkill list 0: hci0: Bluetooth Soft blocked: yes Hard blocked: no ~$ dmesg | grep iwl [ 12.312443] iwlwifi :01:00.0: enabling device ( -> 0002) [ 12.321098] iwlwifi :01:00.0: TLV_FW_FSEQ_VERSION: FSEQ Version: 43.2.23.17 [ 12.321101] iwlwifi :01:00.0: Found debug destination: EXTERNAL_DRAM [ 12.321102] iwlwifi :01:00.0: Found debug configuration: 0 [ 12.321309] iwlwifi :01:00.0: loaded firmware version 48.4fa0041f.0 op_mode iwlmvm [ 12.390389] iwlwifi :01:00.0: Detected Intel(R) Wi-Fi 6 AX200 160MHz, REV=0x340 [ 12.400654] iwlwifi :01:00.0: Applying debug destination EXTERNAL_DRAM [ 12.400893] iwlwifi :01:00.0: Allocated 0x0040 bytes for firmware monitor. [ 13.414781] iwlwifi :01:00.0: Collecting data: trigger 15 fired. [ 13.414908] iwlwifi :01:00.0: Start IWL Error Log Dump: [ 13.414910] iwlwifi :01:00.0: Status: 0x, count: 6 [ 13.414911] iwlwifi :01:00.0: Loaded firmware version: 48.4fa0041f.0 [ 13.414912] iwlwifi :01:00.0: 0x0071 | NMI_INTERRUPT_UMAC_FATAL [ 13.414913] iwlwifi :01:00.0: 0x002022F0 | trm_hw_status0 [ 13.414913] iwlwifi :01:00.0: 0x | trm_hw_status1 [ 13.414914] iwlwifi :01:00.0: 0x004F8E3C | branchlink2 [ 13.414915] iwlwifi :01:00.0: 0x004E4FF4 | interruptlink1 [ 13.414915] iwlwifi :01:00.0: 0x004E4FF4 | interruptlink2 [ 13.414916] iwlwifi :01:00.0: 0x004F3DB0 | data1 [ 13.414917] iwlwifi :01:00.0: 0x1000 | data2 [ 13.414917] iwlwifi :01:00.0: 0xF000 | data3 [ 13.414918] iwlwifi :01:00.0: 0x | beacon time [ 13.414919] iwlwifi :01:00.0: 0x795F | tsf low [ 13.414919] iwlwifi :01:00.0: 0x | tsf hi [ 13.414920] iwlwifi :01:00.0: 0x | time gp1 [ 13.414921] iwlwifi :01:00.0: 0xDFD5 | time gp2 [ 13.414921] iwlwifi :01:00.0: 0x0001 | uCode revision type [ 13.414922] iwlwifi :01:00.0: 0x0030 | uCode version major [ 13.414923] iwlwifi :01:00.0: 0x4FA0041F | uCode version minor [ 13.414923] iwlwifi :01:00.0: 0x0340 | hw version [ 13.414924] iwlwifi :01:00.0: 0x18C89000 | board version [ 13.414925] iwlwifi :01:00.0: 0x8002FF03 | hcmd [ 13.414925] iwlwifi :01:00.0: 0x0002 | isr0 [ 13.414926] iwlwifi :01:00.0: 0x | isr1 [ 13.414926] iwlwifi :01:00.0: 0x08F2 | isr2 [ 13.414927] iwlwifi :01:00.0: 0x00CC | isr3 [ 13.414928] iwlwifi :01:00.0: 0x | isr4 [ 13.414928] iwlwifi :01:00.0: 0x | last cmd Id [ 13.414929] iwlwifi :01:00.0: 0x004F3DB0 | wait_event [ 13.414930] iwlwifi :01:00.0: 0x | l2p_control [ 13.414930] iwlwifi :01:00.0: 0x0020 | l2p_duration [ 13.414931] iwlwifi :01:00.0: 0x | l2p_mhvalid [ 13.414932] iwlwifi :01:00.0: 0x | l2p_addr_match [ 13.414932] iwlwifi :01:00.0: 0x0009 | lmpm_pmg_sel [ 13.414933] iwlwifi :01:00.0: 0x | timestamp [ 13.414934] iwlwifi :01:00.0: 0xF81C | flow_handler [ 13.414974] iwlwifi :01:00.0: Start IWL Error Log Dump: [ 13.414975] iwlwifi :01:00.0: Status: 0x, count: 7 [ 13.414976] iwlwifi :01:00.0: 0x201000A3 | ADVANCED_SYSASSERT [ 13.414976] iwlwifi :01:00.0: 0x | umac branchlink1 [ 13.414977] iwlwifi :01:00.0: 0xC008CC3C | umac branchlink2 [ 13.414978] iwlwifi :01:00.0: 0xC0087660 | umac interruptlink1 [ 13.414978] iwlwifi :01:00.0: 0x | umac interruptlink2 [ 13.414979] iwlwifi :01:00.0: 0xDEADBEEF | umac data1 [ 13.414980] iwlwifi :01:00.0: 0xDEADBEEF | umac data2 [ 13.414980] iwlwifi :01:00.0: 0xDEADBEEF | umac data3 [ 13.414981] iwlwifi :01:00.0: 0x0030 | umac major [ 13.414981] iwlwifi :01:00.0: 0x4FA0041F | umac minor [ 13.414982] iwlwifi :01:00.0: 0xDFC9 | frame pointer [ 13.414983] iwlwifi :01:00.0: 0xC0886C1C | stack pointer [ 13.414983] iwlwifi :01:00.0: 0x | last host cmd [ 13.414984] iwlwifi :01:0
[Bug 1848632] Re: eoan/linux-azure: 5.3.0-1004.4 -proposed tracker
** Description changed: This bug will contain status and test results related to a kernel source (or snap) as stated in the title. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- boot-testing-requested: true kernel-stable-master-bug: 1848648 packages: lrm: linux-restricted-modules-azure main: linux-azure meta: linux-meta-azure signed: linux-signed-azure phase: Promote to Proposed phase-changed: Friday, 18. October 2019 21:55 UTC reason: - promote-to-proposed: Pending -- package copied to Proposed signed:queued + promote-to-proposed: Ongoing -- packages waiting in -proposed for mirror sync variant: debs -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848632 Title: eoan/linux-azure: 5.3.0-1004.4 -proposed tracker To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1848632/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848635] Re: eoan/linux-gcp: 5.3.0-1005.5 -proposed tracker
** Description changed: This bug will contain status and test results related to a kernel source (or snap) as stated in the title. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- boot-testing-requested: true kernel-stable-master-bug: 1848648 packages: lrm: linux-restricted-modules-gcp main: linux-gcp meta: linux-meta-gcp signed: linux-signed-gcp phase: Promote to Proposed phase-changed: Friday, 18. October 2019 22:02 UTC reason: - promote-to-proposed: Pending -- package copied to Proposed signed:queued + promote-to-proposed: Ongoing -- packages waiting in -proposed for mirror sync variant: debs -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848635 Title: eoan/linux-gcp: 5.3.0-1005.5 -proposed tracker To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1848635/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848648] Re: eoan/linux: 5.3.0-19.20 -proposed tracker
** Description changed: This bug will contain status and test results related to a kernel source (or snap) as stated in the title. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- boot-testing-requested: true packages: lrm: linux-restricted-modules main: linux meta: linux-meta signed: linux-signed phase: Promote to Proposed phase-changed: Friday, 18. October 2019 21:41 UTC reason: - promote-to-proposed: Pending -- package copied to Proposed signed:queued + promote-to-proposed: Ongoing -- packages waiting in -proposed for mirror sync trackers: bionic/linux-hwe-edge: bug 1848645 eoan/linux-aws: bug 1848631 eoan/linux-azure: bug 1848632 eoan/linux-gcp: bug 1848635 eoan/linux-kvm: bug 1848642 eoan/linux-oracle: bug 1848644 eoan/linux-raspi2: bug 1848630 variant: debs -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848648 Title: eoan/linux: 5.3.0-19.20 -proposed tracker To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1848648/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1440818] Re: apport-bug does not anonymize udevdb log
[Expired for apport (Ubuntu) because there has been no activity for 60 days.] ** Changed in: apport (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/1440818 Title: apport-bug does not anonymize udevdb log To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/apport/+bug/1440818/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1803405] Re: cannot install libgtk-x11 needed to gimp
[Expired for gimp (Ubuntu) because there has been no activity for 60 days.] ** Changed in: gimp (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/1803405 Title: cannot install libgtk-x11 needed to gimp To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gimp/+bug/1803405/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1838698] Re: Cannot boot ISO unless using nomodeset
[Expired for linux-hwe (Ubuntu) because there has been no activity for 60 days.] ** Changed in: linux-hwe (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/1838698 Title: Cannot boot ISO unless using nomodeset To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux-hwe/+bug/1838698/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1840066] Re: DELL DA300 adaptor's Ethernet port not working after update
[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/1840066 Title: DELL DA300 adaptor's Ethernet port not working after update To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1840066/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1815241] Re: Gimp 2.10 crashes on file > quit
[Expired for gimp (Ubuntu) because there has been no activity for 60 days.] ** Changed in: gimp (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/1815241 Title: Gimp 2.10 crashes on file > quit To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gimp/+bug/1815241/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1816254] Re: GIMP Crashes when trying to copy selected region
[Expired for gimp (Ubuntu) because there has been no activity for 60 days.] ** Changed in: gimp (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/1816254 Title: GIMP Crashes when trying to copy selected region To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gimp/+bug/1816254/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1834113] Re: QEMU touchpad input erratic after wakeup from sleep
[Expired for QEMU because there has been no activity for 60 days.] ** Changed in: qemu 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/1834113 Title: QEMU touchpad input erratic after wakeup from sleep To manage notifications about this bug go to: https://bugs.launchpad.net/qemu/+bug/1834113/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1788439] Re: xubuntu 18.10 - gimp export with thumbnail changes to landscape
[Expired for gimp (Ubuntu) because there has been no activity for 60 days.] ** Changed in: gimp (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/1788439 Title: xubuntu 18.10 - gimp export with thumbnail changes to landscape To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gimp/+bug/1788439/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1831974] Re: turbo boost doesnt work on battery in ubuntu for 8th gen intel core processors , Turbo boost works only when charger is plugged in . This reduces clock speed and causes single core p
[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/1831974 Title: turbo boost doesnt work on battery in ubuntu for 8th gen intel core processors , Turbo boost works only when charger is plugged in . This reduces clock speed and causes single core performance to throttle To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1831974/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1840155] Re: new EC2 is unable to resolve local Amazon DNS
[Expired for ec2-ami-tools (Ubuntu) because there has been no activity for 60 days.] ** Changed in: ec2-ami-tools (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/1840155 Title: new EC2 is unable to resolve local Amazon DNS To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/ec2-ami-tools/+bug/1840155/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1834113] Re: QEMU touchpad input erratic after wakeup from sleep
[Expired for qemu (Ubuntu) because there has been no activity for 60 days.] ** Changed in: qemu (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/1834113 Title: QEMU touchpad input erratic after wakeup from sleep To manage notifications about this bug go to: https://bugs.launchpad.net/qemu/+bug/1834113/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1840603] Re: Installation error with bird2 from ppa:cz.nic-labs/bird on Ubuntu 1804
[Expired for bird2 (Ubuntu) because there has been no activity for 60 days.] ** Changed in: bird2 (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/1840603 Title: Installation error with bird2 from ppa:cz.nic-labs/bird on Ubuntu 1804 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/bird2/+bug/1840603/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1787418] Re: gimp crashed whilst playing with photo filters
[Expired for gimp (Ubuntu) because there has been no activity for 60 days.] ** Changed in: gimp (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/1787418 Title: gimp crashed whilst playing with photo filters To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gimp/+bug/1787418/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1834113] Re: QEMU touchpad input erratic after wakeup from sleep
[Expired for libvirt (Ubuntu) because there has been no activity for 60 days.] ** Changed in: libvirt (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/1834113 Title: QEMU touchpad input erratic after wakeup from sleep To manage notifications about this bug go to: https://bugs.launchpad.net/qemu/+bug/1834113/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
Re: [Bug 1848591] [NEW] sl-modem 2.9.11~20110321-16 ADT test failure with linux 5.4.0-1.2
Please send make.log from build directory -- أحمد المحمودي (Ahmed El-Mahmoudy) Digital design engineer GPG KeyIDs: 4096R/A7EF5671 2048R/EDDDA1B7 GPG Fingerprints: 6E2E E4BB 72E2 F417 D066 6ABF 7B30 B496 A7EF 5761 8206 A196 2084 7E6D 0DF8 B176 BC19 6A94 EDDD A1B7 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848591 Title: sl-modem 2.9.11~20110321-16 ADT test failure with linux 5.4.0-1.2 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/sl-modem/+bug/1848591/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1845011] Re: mcontend stressor SIGBUS's on older armhf platforms
Package is still in Unapproved queue. Fix Committed status should be set once it is in -proposed. ** Changed in: stress-ng (Ubuntu Bionic) Status: Fix Committed => 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/1845011 Title: mcontend stressor SIGBUS's on older armhf platforms To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/stress-ng/+bug/1845011/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1797373]
Reproducible (as in, 3D transitions don't work) on both Ubuntu 19.10 and Debian Stretch against latest 6.3.2 deb from: https://www.libreoffice.org/download/download/?type=deb-x86_64 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1797373 Title: 3D slide transitions don't work at all or tear when played + repeat animations don't work To manage notifications about this bug go to: https://bugs.launchpad.net/df-libreoffice/+bug/1797373/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1797373]
Also, reproducible against latest 6.4.0.0.alpha1-1 deb from: http://dev-builds.libreoffice.org/daily/master/ -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1797373 Title: 3D slide transitions don't work at all or tear when played + repeat animations don't work To manage notifications about this bug go to: https://bugs.launchpad.net/df-libreoffice/+bug/1797373/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1797373] Re: 3D slide transitions don't work at all or tear when played + repeat animations don't work
** Changed in: df-libreoffice 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/1797373 Title: 3D slide transitions don't work at all or tear when played + repeat animations don't work To manage notifications about this bug go to: https://bugs.launchpad.net/df-libreoffice/+bug/1797373/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1501206] Re: router:dhcp ports are open resolvers
** Changed in: neutron (Ubuntu) Status: Triaged => Fix Released ** Also affects: neutron (Ubuntu Bionic) Importance: Undecided Status: New ** Changed in: neutron (Ubuntu Bionic) Status: New => Fix Released ** Changed in: neutron (Ubuntu Bionic) Importance: Undecided => High ** Changed in: neutron (Ubuntu) Assignee: new (cloudie) => (unassigned) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1501206 Title: router:dhcp ports are open resolvers To manage notifications about this bug go to: https://bugs.launchpad.net/neutron/+bug/1501206/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848830] [NEW] New install, one partition ext4 mount point / and 1 partition Fat32 /dos
Public bug reported: I tried something I've never done to see if I could set up for dual boot, which I've done before but not this way and I didn't want to use Gparted later. I am not a power user. 240G hard drive and used 110G for Ubuntu under EXT4 using / as a mounting point, and then I created a 2nd partition using FAT32 /dos. After that there was a pause of about 30 seconds and as I was entering user info I got a crash report. ProblemType: Bug DistroRelease: Ubuntu 19.10 Package: ubiquity 19.10.21 ProcVersionSignature: Ubuntu 5.3.0-18.19-generic 5.3.1 Uname: Linux 5.3.0-18-generic x86_64 NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair ApportVersion: 2.20.11-0ubuntu8 Architecture: amd64 CasperVersion: 1.427 CurrentDesktop: ubuntu:GNOME Date: Fri Oct 18 20:43:35 2019 InstallCmdLine: file=/cdrom/preseed/ubuntu.seed initrd=/casper/initrd quiet splash --- maybe-ubiquity LiveMediaBuild: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) ProcEnviron: LANGUAGE=en_US.UTF-8 PATH=(custom, no user) XDG_RUNTIME_DIR= LANG=en_US.UTF-8 LC_NUMERIC=C.UTF-8 SourcePackage: ubiquity UpgradeStatus: No upgrade log present (probably fresh install) ** Affects: ubiquity (Ubuntu) Importance: Undecided Status: New ** Tags: amd64 apport-bug eoan ubiquity-19.10.21 ubuntu -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848830 Title: New install, one partition ext4 mount point / and 1 partition Fat32 /dos To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1848830/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1845801] Re: Automatic login fails and then all subsequent logins fail. Killing gnome-session-binary fixes it, or just not using automatic login.
I experienced this as well within a VM running Ubuntu 19.10. I have an Nvidia GTX 1060 card. I started the upgrade process to 19.10 and mid way the screen went blank with only a blinking cursor. Rebooted the machine and I was greeted with the login page, but when I logged in there was a screen that said "something went wrong" and logging out started the process again. Rebuilt the VM and this time disabled Automatic login before starting the upgrade. The upgrade went flawlessly and finished. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1845801 Title: Automatic login fails and then all subsequent logins fail. Killing gnome-session-binary fixes it, or just not using automatic login. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gdm3/+bug/1845801/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1699569] Re: bcmwl-kernel-source 6.30.223.271+bdcom-0ubuntu1~1.1: bcmwl kernel module failed to build [error: macro "alloc_netdev" requires 4 arguments, but only 3 given]
** Changed in: bcmwl (Ubuntu) Importance: Undecided => Medium -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1699569 Title: bcmwl-kernel-source 6.30.223.271+bdcom-0ubuntu1~1.1: bcmwl kernel module failed to build [error: macro "alloc_netdev" requires 4 arguments, but only 3 given] To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/bcmwl/+bug/1699569/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1830194] Re: Update gce-compute-image-packages to 20190521
** Tags removed: verification-needed verification-needed-bionic verification-needed-cosmic verification-needed-disco verification- needed-xenial ** This bug is no longer a duplicate of bug 1831436 Update gce-compute-image-packages to 20190522 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1830194 Title: Update gce-compute-image-packages to 20190521 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gce-compute-image-packages/+bug/1830194/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1824212] Re: Update gce-compute-image-packages to 20190315
** This bug is no longer a duplicate of bug 1831436 Update gce-compute-image-packages to 20190522 ** Tags removed: verification-needed-bionic verification-needed-cosmic verification-needed-disco ** Tags removed: verification-needed-xenial -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1824212 Title: Update gce-compute-image-packages to 20190315 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gce-compute-image-packages/+bug/1824212/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848716] Re: Add Ubuntu Focal as a known release
** Changed in: debootstrap (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/1848716 Title: Add Ubuntu Focal as a known release To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/debootstrap/+bug/1848716/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848828] Re: report packages from security pocket
** Description changed: [Impact] I report this bug to add the necessary bit into lds-client for all affected/supported releases. [Test Case] * One must use Landscape server on-prem (version >=19.01) or hosted which already contain the necessary server side change. - * Install landscape-client - * Register a client with the Landscape server - * Security update will only rely on USN notice and could possibly ignore other packages found in -security pocket even if they are there by the fact that there was no USN notice about them. + * Install landscape-client. + * Successfully register a client against Landscape server. + * Security updates will only rely on USN notices and could possibly ignore other packages found in -security pocket even if they are there simply by the fact that there was no USN notice specific for them. - (e.g. systemd has an USN, systemd get updated but its dependencies - and/or derived systemd binary packages aren't updated) + (e.g. systemd has an USN, systemd get updated but its derived systemd + binary packages aren't updated) [Regression Potential] ## TBD by simpoir ## [Other Info] - Upstream details: + * Upstream details: https://github.com/CanonicalLtd/landscape-client/commit/93a3b47965da199785e9b3d226cb61f721e54196 https://github.com/CanonicalLtd/landscape-client/pull/57 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848828 Title: report packages from security pocket To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/landscape-client/+bug/1848828/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1663528] Re: pulseaudio assert failure: pulseaudio: mixer.c:929: snd_mixer_elem_get_callback_private: Assertion `mixer' failed.
** Tags removed: verification-needed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1663528 Title: pulseaudio assert failure: pulseaudio: mixer.c:929: snd_mixer_elem_get_callback_private: Assertion `mixer' failed. To manage notifications about this bug go to: https://bugs.launchpad.net/pulseaudio/+bug/1663528/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1831591] Re: LEDs not working properly during migration
** Changed in: ledmon (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/1831591 Title: LEDs not working properly during migration To manage notifications about this bug go to: https://bugs.launchpad.net/oem-priority/+bug/1831591/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848828] Re: report packages from security pocket
** Description changed: - It appears that the landscape-client change[0] which reports pocket info - (supported Landscape server version >=19.01 which already handle that - part) never got released to SRU. + [Impact] I report this bug to add the necessary bit into lds-client for all affected/supported releases. - [0] - Upstream details: + + [Test Case] + + * One must use Landscape server (on-prem version >=19.01) or hosted which already contain the necessary server side change. + * Install landscape-client + * Register a client with the Landscape server + * Security update will only rely on USN notice and could possibly ignore other packages found in -security pocket even if they are there by the fact that there was no USN notice about them. + + (e.g. systemd has an USN, systemd get updated but its dependencies and/or derived systemd binary packages aren't updated) + + + [Regression Potential] + + ## TBD by simpoir ## + + [Other Info] + + Upstream details: https://github.com/CanonicalLtd/landscape-client/commit/93a3b47965da199785e9b3d226cb61f721e54196 https://github.com/CanonicalLtd/landscape-client/pull/57 ** Description changed: [Impact] I report this bug to add the necessary bit into lds-client for all affected/supported releases. - [Test Case] - * One must use Landscape server (on-prem version >=19.01) or hosted which already contain the necessary server side change. - * Install landscape-client + * One must use Landscape server on-prem (version >=19.01) or hosted which already contain the necessary server side change. + * Install landscape-client * Register a client with the Landscape server * Security update will only rely on USN notice and could possibly ignore other packages found in -security pocket even if they are there by the fact that there was no USN notice about them. - (e.g. systemd has an USN, systemd get updated but its dependencies and/or derived systemd binary packages aren't updated) - + (e.g. systemd has an USN, systemd get updated but its dependencies + and/or derived systemd binary packages aren't updated) [Regression Potential] ## TBD by simpoir ## [Other Info] Upstream details: https://github.com/CanonicalLtd/landscape-client/commit/93a3b47965da199785e9b3d226cb61f721e54196 https://github.com/CanonicalLtd/landscape-client/pull/57 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848828 Title: report packages from security pocket To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/landscape-client/+bug/1848828/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1828639] Re: Unlooping all the trigger loops!!!!!
** Changed in: dpkg (Ubuntu Cosmic) Status: Fix Committed => Won't Fix -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1828639 Title: Unlooping all the trigger loops! To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/dpkg/+bug/1828639/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1800562] Re: Remove obsolete "nousb" option in kdump command-line for newer kernels
** Changed in: makedumpfile (Ubuntu Cosmic) Status: Confirmed => Won't Fix ** Tags added: patch -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1800562 Title: Remove obsolete "nousb" option in kdump command-line for newer kernels To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/makedumpfile/+bug/1800562/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848829] [NEW] upgrade from 19.04 to 19.10 fails
Public bug reported: sudo update-manager -d [sudo] password for frazier: (update-manager:30033): Gtk-WARNING **: 20:09:59.851: Theme parsing error: gtk.css:7:26: The style property GtkRange:slider-width is deprecated and shouldn't be used anymore. It will be removed in a future version (update-manager:30033): Gtk-WARNING **: 20:09:59.851: Theme parsing error: gtk.css:8:26: The style property GtkRange:stepper-size is deprecated and shouldn't be used anymore. It will be removed in a future version (update-manager:30033): Gtk-WARNING **: 20:09:59.851: Theme parsing error: gtk.css:45:6: Expected a valid selector Checking for a new Ubuntu release /usr/lib/python3/dist-packages/DistUpgrade/DistUpgradeFetcher.py:23: PyGIWarning: Gtk was imported without specifying a version first. Use gi.require_version('Gtk', '3.0') before import to ensure that the right version gets loaded. from gi.repository import Gtk, Gdk (do-release-upgrade:2867): Gtk-WARNING **: 20:10:25.756: Theme parsing error: gtk.css:7:26: The style property GtkRange:slider-width is deprecated and shouldn't be used anymore. It will be removed in a future version (do-release-upgrade:2867): Gtk-WARNING **: 20:10:25.756: Theme parsing error: gtk.css:8:26: The style property GtkRange:stepper-size is deprecated and shouldn't be used anymore. It will be removed in a future version (do-release-upgrade:2867): Gtk-WARNING **: 20:10:25.756: Theme parsing error: gtk.css:45:6: Expected a valid selector /usr/lib/python3/dist-packages/DistUpgrade/ReleaseNotesViewerWebkit.py:33: PyGIWarning: WebKit2 was imported without specifying a version first. Use gi.require_version('WebKit2', '4.0') before import to ensure that the right version gets loaded. from gi.repository import WebKit2 as WebKit (WebKitWebProcess:2883): Gtk-WARNING **: 20:10:25.886: Theme parsing error: gtk.css:45:6: Expected a valid selector authenticate 'eoan.tar.gz' against 'eoan.tar.gz.gpg' extracting 'eoan.tar.gz' (eoan:2867): Gtk-WARNING **: 20:10:31.210: Theme parsing error: gtk.css:7:26: The style property GtkRange:slider-width is deprecated and shouldn't be used anymore. It will be removed in a future version (eoan:2867): Gtk-WARNING **: 20:10:31.210: Theme parsing error: gtk.css:8:26: The style property GtkRange:stepper-size is deprecated and shouldn't be used anymore. It will be removed in a future version (eoan:2867): Gtk-WARNING **: 20:10:31.210: Theme parsing error: gtk.css:45:6: Expected a valid selector Traceback (most recent call last): File "/tmp/ubuntu-release-upgrader-aue69nj7/DistUpgrade/DistUpgradeQuirks.py", line 802, in _prepare_snap_replacement_data di.version('%s' % self.controller.fromDist).split()[0] AttributeError: 'UbuntuDistroInfo' object has no attribute 'version' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/tmp/ubuntu-release-upgrader-aue69nj7/eoan", line 8, in sys.exit(main()) File "/tmp/ubuntu-release-upgrader-aue69nj7/DistUpgrade/DistUpgradeMain.py", line 238, in main if app.run(): File "/tmp/ubuntu-release-upgrader-aue69nj7/DistUpgrade/DistUpgradeController.py", line 2084, in run return self.fullUpgrade() File "/tmp/ubuntu-release-upgrader-aue69nj7/DistUpgrade/DistUpgradeController.py", line 1921, in fullUpgrade if not self.doPostInitialUpdate(): File "/tmp/ubuntu-release-upgrader-aue69nj7/DistUpgrade/DistUpgradeController.py", line 927, in doPostInitialUpdate self.quirks.run("PostInitialUpdate") File "/tmp/ubuntu-release-upgrader-aue69nj7/DistUpgrade/DistUpgradeQuirks.py", line 97, in run func() File "/tmp/ubuntu-release-upgrader-aue69nj7/DistUpgrade/DistUpgradeQuirks.py", line 129, in eoanPostInitialUpdate self._calculateSnapSizeRequirements() File "/tmp/ubuntu-release-upgrader-aue69nj7/DistUpgrade/DistUpgradeQuirks.py", line 459, in _calculateSnapSizeRequirements self._prepare_snap_replacement_data() File "/tmp/ubuntu-release-upgrader-aue69nj7/DistUpgrade/DistUpgradeQuirks.py", line 808, in _prepare_snap_replacement_data (r.version for r in di.get_all("object") AttributeError: 'UbuntuDistroInfo' object has no attribute 'get_all' Error in sys.excepthook: Traceback (most recent call last): File "/usr/lib/python3/dist-packages/problem_report.py", line 477, in add_to_existing self.write(f) File "/usr/lib/python3/dist-packages/problem_report.py", line 430, in write block = f.read(1048576) File "/usr/lib/python3.7/codecs.py", line 322, in decode (result, consumed) = self._buffer_decode(data, self.errors, final) UnicodeDecodeError: 'utf-8' codec can't decode byte 0x8b in position 1: invalid start byte Original exception was: Traceback (most recent call last): File "/tmp/ubuntu-release-upgrader-aue69nj7/DistUpgrade/DistUpgradeQuirks.py", line 802, in _prepare_snap_replacement_data di.version('%s' % self.controller.fromDist).split()[0] AttributeError: 'UbuntuDistroInfo' object h
[Bug 1848828] [NEW] report packages from security pocket
Public bug reported: [Impact] I report this bug to add the necessary bit into lds-client for all affected/supported releases. [Test Case] * One must use Landscape server on-prem (version >=19.01) or hosted which already contain the necessary server side change. * Install landscape-client * Register a client with the Landscape server * Security update will only rely on USN notice and could possibly ignore other packages found in -security pocket even if they are there by the fact that there was no USN notice about them. (e.g. systemd has an USN, systemd get updated but its dependencies and/or derived systemd binary packages aren't updated) [Regression Potential] ## TBD by simpoir ## [Other Info] Upstream details: https://github.com/CanonicalLtd/landscape-client/commit/93a3b47965da199785e9b3d226cb61f721e54196 https://github.com/CanonicalLtd/landscape-client/pull/57 ** Affects: landscape-client (Ubuntu) Importance: Medium Assignee: Simon Poirier (simpoir) Status: In Progress ** Affects: landscape-client (Ubuntu Xenial) Importance: Undecided Status: New ** Affects: landscape-client (Ubuntu Bionic) Importance: Undecided Status: New ** Affects: landscape-client (Ubuntu Disco) Importance: Undecided Status: New ** Affects: landscape-client (Ubuntu Eoan) Importance: Undecided Status: New ** Affects: landscape-client (Ubuntu Focal) Importance: Medium Assignee: Simon Poirier (simpoir) Status: In Progress ** Tags: sts ** Tags added: sts ** Also affects: landscape-client (Ubuntu Bionic) Importance: Undecided Status: New ** Also affects: landscape-client (Ubuntu Xenial) Importance: Undecided Status: New ** Also affects: landscape-client (Ubuntu Focal) Importance: Undecided Status: New ** Also affects: landscape-client (Ubuntu Disco) Importance: Undecided Status: New ** Also affects: landscape-client (Ubuntu Eoan) Importance: Undecided Status: New ** Description changed: It appears that the landscape-client change[0] which reports pocket info - (supported Landscape server version >=19.01) already handle that part) - never got released to SRU. + (supported Landscape server version >=19.01 which already handle that + part) never got released to SRU. I report this bug to add the necessary bit into lds-client for all affected/supported releases. [0] - Upstream details: https://github.com/CanonicalLtd/landscape-client/commit/93a3b47965da199785e9b3d226cb61f721e54196 https://github.com/CanonicalLtd/landscape-client/pull/57 ** Changed in: landscape-client (Ubuntu Focal) Assignee: (unassigned) => Simon Poirier (simpoir) ** Changed in: landscape-client (Ubuntu Focal) Status: New => In Progress ** Changed in: landscape-client (Ubuntu Focal) Importance: Undecided => Medium -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848828 Title: report packages from security pocket To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/landscape-client/+bug/1848828/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 307276] Re: scanning dialog does not close
** Changed in: pykaraoke (Debian) 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/307276 Title: scanning dialog does not close To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pykaraoke/+bug/307276/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1835737] Re: SRU: backport Python 3.8 to bionic
** Changed in: python3-stdlib-extensions (Ubuntu) Status: Fix Committed => 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/1835737 Title: SRU: backport Python 3.8 to bionic To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/python3-stdlib-extensions/+bug/1835737/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848827] Re: package sysdig-dkms 0.24.1-1ubuntu3 failed to install/upgrade: installed sysdig-dkms package post-installation script subprocess returned error exit status 10
** 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/1848827 Title: package sysdig-dkms 0.24.1-1ubuntu3 failed to install/upgrade: installed sysdig-dkms package post-installation script subprocess returned error exit status 10 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/sysdig/+bug/1848827/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848827] [NEW] package sysdig-dkms 0.24.1-1ubuntu3 failed to install/upgrade: installed sysdig-dkms package post-installation script subprocess returned error exit status 10
Public bug reported: Release upgrade from 19.04 to 19.10 ProblemType: Package DistroRelease: Ubuntu 19.10 Package: sysdig-dkms 0.24.1-1ubuntu3 ProcVersionSignature: Ubuntu 5.3.0-18.19-generic 5.3.1 Uname: Linux 5.3.0-18-generic x86_64 NonfreeKernelModules: nvidia_modeset nvidia ApportVersion: 2.20.11-0ubuntu8 Architecture: amd64 Date: Fri Oct 18 20:57:40 2019 ErrorMessage: installed sysdig-dkms package post-installation script subprocess returned error exit status 10 InstallationDate: Installed on 2018-01-07 (649 days ago) InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Release amd64 (20171018) PackageArchitecture: all Python3Details: /usr/bin/python3.7, Python 3.7.5rc1, python3-minimal, 3.7.5-1 PythonDetails: /usr/bin/python2.7, Python 2.7.17rc1, python-minimal, 2.7.17-1 RelatedPackageVersions: dpkg 1.19.7ubuntu2 apt 1.9.4 SourcePackage: sysdig Title: package sysdig-dkms 0.24.1-1ubuntu3 failed to install/upgrade: installed sysdig-dkms package post-installation script subprocess returned error exit status 10 UpgradeStatus: Upgraded to eoan on 2019-10-19 (0 days ago) ** Affects: sysdig (Ubuntu) Importance: Undecided Status: New ** Tags: amd64 apport-package eoan -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848827 Title: package sysdig-dkms 0.24.1-1ubuntu3 failed to install/upgrade: installed sysdig-dkms package post-installation script subprocess returned error exit status 10 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/sysdig/+bug/1848827/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848825] Re: Changed email address on account, waited 3 days and still cant reset my account
Thank you for taking the time to report this bug and helping to make Ubuntu better. I'm going to mark this bug as incomplete, as it reads very much that you're an end-user having trouble with a web site, and not the hoster of 'Delta Wars'. If however, you are the hoster of the site having trouble with apache2 running on your server(s), please execute the following command only once, as it will automatically gather debugging information, in a terminal: apport-collect 1848825 which will provide details of your package, your unstated release details etc. When reporting bugs in the future please use apport by using 'ubuntu- bug' and the name of the package affected. You can learn more about this functionality at https://wiki.ubuntu.com/ReportingBugs. ** Changed in: apache2 (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/1848825 Title: Changed email address on account, waited 3 days and still cant reset my account To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/apache2/+bug/1848825/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848826] Re: package grub-pc (not installed) failed to install/upgrade: installed grub-pc package post-installation script subprocess returned error exit status 20
** 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/1848826 Title: package grub-pc (not installed) failed to install/upgrade: installed grub-pc package post-installation script subprocess returned error exit status 20 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/grub2/+bug/1848826/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848826] [NEW] package grub-pc (not installed) failed to install/upgrade: installed grub-pc package post-installation script subprocess returned error exit status 20
Public bug reported: I got around the issue by uninstalling grub https://stackoverflow.com/questions/53203528/errors-grub-efi-amd64-signed-shim-signed ``` # sudo apt-get purge grub\* # sudo apt-get install grub-efi # sudo apt-get autoremove # sudo update-grub ``` ProblemType: Package DistroRelease: Ubuntu 19.10 Package: grub-pc (not installed) ProcVersionSignature: Ubuntu 5.3.0-18.19-generic 5.3.1 Uname: Linux 5.3.0-18-generic x86_64 NonfreeKernelModules: nvidia_modeset nvidia ApportVersion: 2.20.11-0ubuntu8 Architecture: amd64 Date: Fri Oct 18 20:38:46 2019 DuplicateSignature: package:grub-pc:(not installed) Setting up grub-pc (2.04-1ubuntu12) ... dpkg: error processing package grub-pc (--configure): installed grub-pc package post-installation script subprocess returned error exit status 20 ErrorMessage: installed grub-pc package post-installation script subprocess returned error exit status 20 InstallationDate: Installed on 2019-06-12 (128 days ago) InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416) ProcCmdLine: BOOT_IMAGE=/vmlinuz-5.3.0-18-generic root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=7 Python3Details: /usr/bin/python3.7, Python 3.7.5rc1, python3-minimal, 3.7.5-1 PythonDetails: /usr/bin/python2.7, Python 2.7.17rc1, python-minimal, 2.7.17-1 RelatedPackageVersions: dpkg 1.19.7ubuntu2 apt 1.9.4 SourcePackage: grub2 Title: package grub-pc (not installed) failed to install/upgrade: installed grub-pc package post-installation script subprocess returned error exit status 20 UpgradeStatus: Upgraded to eoan on 2019-10-19 (0 days ago) ** Affects: grub2 (Ubuntu) Importance: Undecided Status: New ** Tags: amd64 apport-package eoan -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848826 Title: package grub-pc (not installed) failed to install/upgrade: installed grub-pc package post-installation script subprocess returned error exit status 20 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/grub2/+bug/1848826/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1212621] Re: Duplex option disappearing in the GTK print dialog
** Changed in: evince 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/1212621 Title: Duplex option disappearing in the GTK print dialog To manage notifications about this bug go to: https://bugs.launchpad.net/evince/+bug/1212621/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848825] [NEW] Changed email address on account, waited 3 days and still cant reset my account
Public bug reported: My account Zenmaster5 in delta wars will not let me reset. I had to change the email address because I forgot which email address I had used for the account. Now, every time I log in, it starts my 3 day waiting period all over again. ** Affects: apache2 (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/1848825 Title: Changed email address on account, waited 3 days and still cant reset my account To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/apache2/+bug/1848825/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848824] Re: Mailman3 package full index rebuild can take days
** Description changed: Please consider separating the haystack full index rebuild from the package update as very large archives can literally take days to reindex, blocking any other package updates that are pending. For example, I have a list archive that includes 500K+ emails - the source mbox file was 24G when I imported it from mailman 2.1.x. The full - text reindex has been running for 30 hours on a Xeon processor with an + text reindex has been running for 50+ hours on a Xeon processor with an SSD root disk and is showing no signs of finishing any time soon. The index itself is 2.9G and growing. It would be great if the package update would either: 1) spawn a background process to run the reindex so the rest of the packages can be updated 2) not do the reindex and print a message showing how to kick it off manually - I'm on 19.04 Server, updating from 18.04 Server LTS. I am trying to update to 3.2.0-1ubuntu1. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848824 Title: Mailman3 package full index rebuild can take days To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/mailman3/+bug/1848824/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848824] [NEW] Mailman3 package full index rebuild can take days
Public bug reported: Please consider separating the haystack full index rebuild from the package update as very large archives can literally take days to reindex, blocking any other package updates that are pending. For example, I have a list archive that includes 500K+ emails - the source mbox file was 24G when I imported it from mailman 2.1.x. The full text reindex has been running for 30 hours on a Xeon processor with an SSD root disk and is showing no signs of finishing any time soon. The index itself is 2.9G and growing. It would be great if the package update would either: 1) spawn a background process to run the reindex so the rest of the packages can be updated 2) not do the reindex and print a message showing how to kick it off manually I'm on 19.04 Server, updating from 18.04 Server LTS. I am trying to update to 3.2.0-1ubuntu1. ** Affects: mailman3 (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/1848824 Title: Mailman3 package full index rebuild can take days To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/mailman3/+bug/1848824/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1810183] Re: numpad on touchpad doesn't work in ASUS Zenbook 14
Same here, How can we help to solve it? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1810183 Title: numpad on touchpad doesn't work in ASUS Zenbook 14 To manage notifications about this bug go to: https://bugs.launchpad.net/linux/+bug/1810183/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848642] Re: eoan/linux-kvm: 5.3.0-1004.4 -proposed tracker
** Changed in: kernel-sru-workflow/automated-testing Status: New => Confirmed ** Changed in: kernel-sru-workflow/promote-to-proposed Status: Fix Committed => Fix Released ** Changed in: kernel-sru-workflow/regression-testing Status: New => Confirmed ** Changed in: kernel-sru-workflow/verification-testing Status: New => Confirmed ** Changed in: kernel-sru-workflow/automated-testing Status: Confirmed => In Progress ** Changed in: kernel-sru-workflow/regression-testing Status: Confirmed => In Progress ** Description changed: This bug will contain status and test results related to a kernel source (or snap) as stated in the title. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- boot-testing-requested: true kernel-stable-master-bug: 1848648 packages: main: linux-kvm meta: linux-meta-kvm - phase: Promote to Proposed - phase-changed: Friday, 18. October 2019 22:02 UTC + phase: Testing + phase-changed: Saturday, 19. October 2019 00:11 UTC + proposed-announcement-sent: true + proposed-testing-requested: true reason: - promote-to-proposed: Ongoing -- packages waiting in -proposed for mirror sync + automated-testing: Ongoing -- testing in progress + regression-testing: Ongoing -- testing in progress + verification-testing: Ongoing -- testing in progress variant: debs -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848642 Title: eoan/linux-kvm: 5.3.0-1004.4 -proposed tracker To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1848642/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848790] Re: USB not working under arm64 on Pi4
I reproduced this bug on my rpi4 board. ** Changed in: linux-raspi2 (Ubuntu) Importance: Undecided => High ** Changed in: linux-raspi2 (Ubuntu) Assignee: (unassigned) => Hui Wang (hui.wang) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848790 Title: USB not working under arm64 on Pi4 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux-raspi2/+bug/1848790/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848630] Re: eoan/linux-raspi2: 5.3.0-1008.9 -proposed tracker
** Changed in: kernel-sru-workflow/automated-testing Status: New => Confirmed ** Changed in: kernel-sru-workflow/certification-testing Status: New => Confirmed ** Changed in: kernel-sru-workflow/promote-to-proposed Status: Fix Committed => Fix Released ** Changed in: kernel-sru-workflow/verification-testing Status: New => Confirmed ** Changed in: kernel-sru-workflow/automated-testing Status: Confirmed => In Progress ** Description changed: This bug will contain status and test results related to a kernel source (or snap) as stated in the title. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- boot-testing-requested: true kernel-stable-master-bug: 1848648 packages: main: linux-raspi2 meta: linux-meta-raspi2 - phase: Promote to Proposed - phase-changed: Friday, 18. October 2019 21:55 UTC + phase: Testing + phase-changed: Saturday, 19. October 2019 00:11 UTC + proposed-announcement-sent: true + proposed-testing-requested: true reason: - promote-to-proposed: Ongoing -- packages waiting in -proposed for mirror sync + automated-testing: Ongoing -- testing in progress + certification-testing: Ongoing -- testing in progress + verification-testing: Ongoing -- testing in progress variant: debs -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848630 Title: eoan/linux-raspi2: 5.3.0-1008.9 -proposed tracker To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1848630/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848644] Re: eoan/linux-oracle: 5.3.0-1003.3 -proposed tracker
** Description changed: This bug will contain status and test results related to a kernel source (or snap) as stated in the title. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- kernel-stable-master-bug: 1848648 packages: lrm: linux-restricted-modules-oracle main: linux-oracle meta: linux-meta-oracle signed: linux-signed-oracle phase: Holding before Promote to Proposed phase-changed: Friday, 18. October 2019 20:46 UTC reason: - promote-to-proposed: Pending -- builds not complete in ppa lrm:failed,signed:queued + promote-to-proposed: Pending -- builds not complete in ppa lrm:failed variant: debs -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848644 Title: eoan/linux-oracle: 5.3.0-1003.3 -proposed tracker To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1848644/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848631] Re: eoan/linux-aws: 5.3.0-1004.4 -proposed tracker
** Changed in: kernel-sru-workflow/automated-testing Status: New => Confirmed ** Changed in: kernel-sru-workflow/promote-to-proposed Status: Fix Committed => Fix Released ** Changed in: kernel-sru-workflow/regression-testing Status: New => Confirmed ** Changed in: kernel-sru-workflow/verification-testing Status: New => Confirmed ** Changed in: kernel-sru-workflow/automated-testing Status: Confirmed => In Progress ** Changed in: kernel-sru-workflow/regression-testing Status: Confirmed => In Progress ** Description changed: This bug will contain status and test results related to a kernel source (or snap) as stated in the title. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- boot-testing-requested: true kernel-stable-master-bug: 1848648 packages: lrm: linux-restricted-modules-aws main: linux-aws meta: linux-meta-aws - phase: Promote to Proposed - phase-changed: Friday, 18. October 2019 21:55 UTC + phase: Testing + phase-changed: Saturday, 19. October 2019 00:15 UTC + proposed-announcement-sent: true + proposed-testing-requested: true reason: - promote-to-proposed: Ongoing -- packages waiting in -proposed for mirror sync + automated-testing: Ongoing -- testing in progress + regression-testing: Ongoing -- testing in progress + verification-testing: Ongoing -- testing in progress variant: debs -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848631 Title: eoan/linux-aws: 5.3.0-1004.4 -proposed tracker To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1848631/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848621] Re: [snap] lost all passwords on 19.10 when chromium-browser deb was replaced by a snap
For me, it was: # apt policy chromium-browser chromium-browser: Installed: 77.0.3865.120-0ubuntu1~snap1 Candidate: 77.0.3865.120-0ubuntu1~snap1 Version table: *** 77.0.3865.120-0ubuntu1~snap1 500 500 http://jp.archive.ubuntu.com/ubuntu eoan/universe amd64 Packages 100 /var/lib/dpkg/status # snap connections chromium | grep password password-manager-service chromium:password-manager-service - Running this fixed it: # snap connect chromium:password-manager-service Connect chromium:password-manager-service to core:password-manager-service \ # snap connections chromium | grep password password-manager-service chromium:password-manager-service :password-manager-service manual -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848621 Title: [snap] lost all passwords on 19.10 when chromium-browser deb was replaced by a snap To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/chromium-browser/+bug/1848621/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1770604] Re: Arduino IDE from repository does not work because of "java.lang.NullPointerException thrown while loading gnu.io.RXTXCommDriver"
Same problem, tried fix: configure: WARNING: using JAVA_HOME environmental variable adjusted java.home is /usr/lib/jvm/java-13-oracle checking os.name Linux checking os.arch amd64 checking java.vendor Oracle Corporation checking java.version 13.0.1 checking os.version 4.15.0-65-generic configure: creating ./config.status config.status: creating Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands Ran standard configure. Failed on make with following output: warning: [options] bootstrap class path not set in conjunction with -source 1.3 error: Source option 1.3 is no longer supported. Use 7 or later. error: Target option 1.3 is no longer supported. Use 7 or later. warning: [options] bootstrap class path not set in conjunction with -source 1.3 warning: [options] bootstrap class path not set in conjunction with -source 1.3 error: Source option 1.3 is no longer supported. Use 7 or later. error: Target option 1.3 is no longer supported. Use 7 or later. error: Source option 1.3 is no longer supported. Use 7 or later. error: Target option 1.3 is no longer supported. Use 7 or later. warning: [options] bootstrap class path not set in conjunction with -source 1.3 Makefile:610: recipe for target '/home/walt/dev/rxtx-2.2pre2/gnu/io/UnSupportedLoggerException.class' failed make: *** [/home/walt/dev/rxtx-2.2pre2/gnu/io/UnSupportedLoggerException.class] Error 2 Cannot used Java 8, new ubuntu LTS install and has issues installing Java 8 or Java 11. Java 13 install is fine. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1770604 Title: Arduino IDE from repository does not work because of "java.lang.NullPointerException thrown while loading gnu.io.RXTXCommDriver" To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/arduino/+bug/1770604/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848247] Re: 3A+ boot failure on Eoan
I mean the simplefb driver in the kernel in the #3, I didn't know there is a simplefb driver in the uboot too. So it looks like: uboot.simplefb ---> kernel.simplefb works fine uboot.simplefb ---> kernel.simplefb > drm_vc4_fb works fine (but RPI3A+ crash) uboot.simplefb ---> kernel.simplefb ---> kernel.bcm2708_fb makes the screen flicker -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848247 Title: 3A+ boot failure on Eoan To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux-firmware-raspi2/+bug/1848247/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848644] Re: eoan/linux-oracle: 5.3.0-1003.3 -proposed tracker
** Description changed: This bug will contain status and test results related to a kernel source (or snap) as stated in the title. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- kernel-stable-master-bug: 1848648 packages: lrm: linux-restricted-modules-oracle main: linux-oracle meta: linux-meta-oracle signed: linux-signed-oracle phase: Holding before Promote to Proposed phase-changed: Friday, 18. October 2019 20:46 UTC reason: - promote-to-proposed: Ongoing -- builds not complete in ppa lrm:depwait,meta:depwait,signed:depwait + promote-to-proposed: Pending -- builds not complete in ppa lrm:failed,signed:queued variant: debs -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848644 Title: eoan/linux-oracle: 5.3.0-1003.3 -proposed tracker To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1848644/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848632] Re: eoan/linux-azure: 5.3.0-1004.4 -proposed tracker
** Description changed: This bug will contain status and test results related to a kernel source (or snap) as stated in the title. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- boot-testing-requested: true kernel-stable-master-bug: 1848648 packages: lrm: linux-restricted-modules-azure main: linux-azure meta: linux-meta-azure signed: linux-signed-azure phase: Promote to Proposed phase-changed: Friday, 18. October 2019 21:55 UTC reason: - promote-to-proposed: Ongoing -- package copied to Proposed signed:depwait + promote-to-proposed: Pending -- package copied to Proposed signed:queued variant: debs -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848632 Title: eoan/linux-azure: 5.3.0-1004.4 -proposed tracker To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1848632/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848790] Re: USB not working under arm64 on Pi4
Status changed to 'Confirmed' because the bug affects multiple users. ** Changed in: linux-raspi2 (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/1848790 Title: USB not working under arm64 on Pi4 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux-raspi2/+bug/1848790/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848635] Re: eoan/linux-gcp: 5.3.0-1005.5 -proposed tracker
** Description changed: This bug will contain status and test results related to a kernel source (or snap) as stated in the title. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- boot-testing-requested: true kernel-stable-master-bug: 1848648 packages: lrm: linux-restricted-modules-gcp main: linux-gcp meta: linux-meta-gcp signed: linux-signed-gcp phase: Promote to Proposed phase-changed: Friday, 18. October 2019 22:02 UTC reason: - promote-to-proposed: Ongoing -- package copied to Proposed signed:depwait + promote-to-proposed: Pending -- package copied to Proposed signed:queued variant: debs -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848635 Title: eoan/linux-gcp: 5.3.0-1005.5 -proposed tracker To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1848635/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848648] Re: eoan/linux: 5.3.0-19.20 -proposed tracker
** Description changed: This bug will contain status and test results related to a kernel source (or snap) as stated in the title. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- boot-testing-requested: true packages: lrm: linux-restricted-modules main: linux meta: linux-meta signed: linux-signed phase: Promote to Proposed phase-changed: Friday, 18. October 2019 21:41 UTC reason: - promote-to-proposed: Ongoing -- package copied to Proposed signed:depwait + promote-to-proposed: Pending -- package copied to Proposed signed:queued trackers: bionic/linux-hwe-edge: bug 1848645 eoan/linux-aws: bug 1848631 eoan/linux-azure: bug 1848632 eoan/linux-gcp: bug 1848635 eoan/linux-kvm: bug 1848642 eoan/linux-oracle: bug 1848644 eoan/linux-raspi2: bug 1848630 variant: debs -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848648 Title: eoan/linux: 5.3.0-19.20 -proposed tracker To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1848648/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1609326] Re: adminer .conf file was misplaced in /adminer/apache.conf, now missing
** Changed in: adminer (Debian) 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/1609326 Title: adminer .conf file was misplaced in /adminer/apache.conf, now missing To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/adminer/+bug/1609326/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848755] Re: xubuntu and ubuntustudio should not depend on apt-offline (or fix it)
This bug was fixed in the package ubuntustudio-meta - 0.199 --- ubuntustudio-meta (0.199) focal; urgency=medium * Refreshed dependencies * Removed apt-offline from desktop-recommends (LP: #1848755) -- Erich Eickmeyer Fri, 18 Oct 2019 12:35:04 -0700 ** Changed in: ubuntustudio-meta (Ubuntu) Status: Fix Committed => 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/1848755 Title: xubuntu and ubuntustudio should not depend on apt-offline (or fix it) To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/apt-offline/+bug/1848755/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848337] Re: ppa-purge command not working, neither upgrade taking place
** Changed in: ubuntu-release-upgrader (Ubuntu) Status: Incomplete => Invalid -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848337 Title: ppa-purge command not working, neither upgrade taking place To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1848337/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1827822] Re: kernel null pointer dereference
I'm also encountering this issue, only on 19.10. My GPU is a RX 580. Tested memory for 8 hours using livecd memtest BUG: kernel NULL pointer dereference, address: 02ac #PF: supervisor read access in kernel mode #PF: error_code(0x) - not-present page PGD 0 P4D 0 Oops: [#1] SMP NOPTI CPU: 9 PID: 340 Comm: kworker/u64:9 Tainted: GW OE 5.3.0-18-generic #19-Ubuntu Hardware name: System manufacturer System Product Name/CROSSHAIR VI HERO, BIOS 7501 09/23/2019 Workqueue: events_unbound commit_work [drm_kms_helper] RIP: 0010:dc_stream_log+0x12/0xc0 [amdgpu] Code: 83 f1 01 0f b6 c9 e8 8d c2 81 c7 e9 71 ff ff ff 0f 1f 84 00 00 00 00 00 0f 1f 44 00 00 55 48 89 f2 bf 04 00 00 00 48 89 e5 53 <8b> 86 ac 02 00 00 48 89 f3 8b 8e 0c 01 00 00 50 8b 86 28 01 00 00 RSP: 0018:c017c12d7b80 EFLAGS: 00010202 RAX: RBX: 0001 RCX: 0002 RDX: RSI: RDI: 0004 RBP: c017c12d7b88 R08: R09: 0001 R10: 9efbcea573c8 R11: R12: 9efa9f84 R13: 9efbbae3 R14: 9efa9f84 R15: 9efbbad4 FS: () GS:9efbcea4() knlGS: CS: 0010 DS: ES: CR0: 80050033 CR2: 02ac CR3: 0003fe05 CR4: 003406e0 Call Trace: dc_commit_state+0x7e/0xb0 [amdgpu] amdgpu_dm_atomic_commit_tail+0x3bf/0xfb0 [amdgpu] ? cpumask_next_and+0x1e/0x20 ? free_one_page+0xb7/0x4b0 ? __switch_to_asm+0x40/0x70 ? __switch_to_asm+0x34/0x70 ? __switch_to_asm+0x40/0x70 ? __switch_to_asm+0x34/0x70 ? __switch_to_asm+0x40/0x70 ? __switch_to_asm+0x34/0x70 ? __switch_to_asm+0x40/0x70 ? __switch_to_asm+0x34/0x70 ? __switch_to_asm+0x40/0x70 ? __switch_to_asm+0x34/0x70 ? __switch_to_asm+0x40/0x70 ? __switch_to_asm+0x34/0x70 ? __switch_to_asm+0x40/0x70 ? __switch_to_asm+0x34/0x70 ? __switch_to_asm+0x40/0x70 ? __switch_to_asm+0x34/0x70 ? __switch_to_asm+0x40/0x70 ? __switch_to_asm+0x34/0x70 ? __switch_to_asm+0x40/0x70 ? __switch_to_asm+0x34/0x70 ? _cond_resched+0x19/0x30 ? wait_for_completion_timeout+0x3a/0x120 ? __switch_to_asm+0x34/0x70 ? __switch_to_asm+0x40/0x70 ? __switch_to_asm+0x34/0x70 ? __switch_to_asm+0x40/0x70 commit_tail+0x41/0x70 [drm_kms_helper] ? commit_tail+0x41/0x70 [drm_kms_helper] commit_work+0x12/0x20 [drm_kms_helper] process_one_work+0x1db/0x380 worker_thread+0x4d/0x400 kthread+0x104/0x140 ? process_one_work+0x380/0x380 ? kthread_park+0x80/0x80 ret_from_fork+0x22/0x40 Modules linked in: pci_stub vboxpci(OE) vboxnetadp(OE) xfrm_user vboxnetflt(OE) xfrm4_tunnel tunnel4 ipcomp xfrm_ipcomp esp4 l2tp_ppp l2tp_netlink l2tp_core ah4 ip6_udp_tunnel vboxdrv(OE) udp_tunnel af_key xfrm_algo pppox nls_iso8859_1 snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi snd_hda_intel snd_hda_codec snd_hda_core joydev snd_hwdep input_leds snd_pcm snd_seq_midi snd_seq_midi_event snd_rawmidi snd_seq snd_seq_device snd_timer edac_mce_amd kvm_amd kvm irqbypass eeepc_wmi asus_wmi sparse_keymap video wmi_bmof snd k10temp ccp soundcore mac_hid sch_fq_codel parport_pc ppdev lp parport ip_tables x_tables autofs4 dm_crypt hid_generic usbhid hid amdgpu crct10dif_pclmul crc32_pclmul ghash_clmulni_intel aesni_intel amd_iommu_v2 gpu_sched ttm aes_x86_64 crypto_simd drm_kms_helper syscopyarea cryptd sysfillrect glue_helper sysimgblt fb_sys_fops mxm_wmi drm igb i2c_piix4 nvme dca ahci nvme_core i2c_algo_bit libahci gpio_amdpt wmi gpio_generic CR2: 02ac ---[ end trace 57ff7a836204c53a ]--- RIP: 0010:dc_stream_log+0x12/0xc0 [amdgpu] Code: 83 f1 01 0f b6 c9 e8 8d c2 81 c7 e9 71 ff ff ff 0f 1f 84 00 00 00 00 00 0f 1f 44 00 00 55 48 89 f2 bf 04 00 00 00 48 89 e5 53 <8b> 86 ac 02 00 00 48 89 f3 8b 8e 0c 01 00 00 50 8b 86 28 01 00 00 RSP: 0018:c017c12d7b80 EFLAGS: 00010202 RAX: RBX: 0001 RCX: 0002 RDX: RSI: RDI: 0004 RBP: c017c12d7b88 R08: R09: 0001 R10: 9efbcea573c8 R11: R12: 9efa9f84 R13: 9efbbae3 R14: 9efa9f84 R15: 9efbbad4 FS: () GS:9efbcea4() knlGS: CS: 0010 DS: ES: CR0: 80050033 CR2: 02ac CR3: 0003fe05 CR4: 003406e0 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1827822 Title: kernel null pointer dereference To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1827822/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848819] [NEW] gen-preseed always errors
Public bug reported: In this code: ``` # A bit of a hack.. my $di_path; if (-d "/var/log/installer") { $di_path="/var/log/installer/cdebconf"; } else { $di_path="/var/log/debian-installer/cdebconf"; } if (! -f "$di_path") { print("Unable to find debconf database: $di_path\n"); exit(1); } Debconf::Db->load(readonly => "true"); $Debconf::Db::config=Debconf::Db->makedriver( driver => "File", name => "di_questions", filename => "$di_path/questions.dat", readonly => "true", ); ``` If `cdebconf` is a directory, the second `if` is true and the script exits with "Unable to find debconf database". Yet the `makedriver` instance(s) require `$di_path` to be set to a directory name (which contains files such as `questions.dat`. If `cdebconf` is a file then the `! -f` test passes and `makedriver` tries to use a filename as a directory name and errors with a "could not open" message. If `cdebconf` doesn't exist, then the `-! -f` test does the right thing. In each of those cases, the script is exited and the remainder never runs. To fix this issue, the test should be changed from `! -f` to `! -d`: ``` if (! -d "$di_path") { print("Unable to find debconf database: $di_path\n"); exit(1); } ``` As seen in Bionic and other releases. ```$ apt-cache policy installation-report installation-report: Installed: 2.62ubuntu1 ``` ** Affects: installation-report (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/1848819 Title: gen-preseed always errors To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/installation-report/+bug/1848819/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1784485] Re: [ZenBook S UX391UA, Realtek ALC294, Mic, Internal] No sound at all
Hi, Not sure how to post my specs, but I've been having the same "no audio" issue, which I also believe is related to Windows 10's shutdown behavior. To test this (while no audio was available in Ubuntu 19.04), I started up Windows 10, disabled fast boot in the power settings. Did a full shutdown. Then booted into Ubuntu and audio was once again available. Not sure if this was dumb luck, or a significant result. I'll be glad to share any more details if it will help solve the problem. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1784485 Title: [ZenBook S UX391UA, Realtek ALC294, Mic, Internal] No sound at all To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1784485/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848817] [NEW] Disco update: upstream stable patchset 2019-10-18
Public bug reported: SRU Justification Impact: The upstream process for stable tree updates is quite similar in scope to the Ubuntu SRU process, e.g., each patch has to demonstrably fix a bug, and each patch is vetted by upstream by originating either directly from a mainline/stable Linux tree or a minimally backported form of that patch. The following upstream stable patches should be included in the Ubuntu kernel: upstream stable patchset 2019-10-18 Ported from the following upstream stable releases: v4.19.78, v5.2.20, v5.2.21, v5.3.5 from git://git.kernel.org/ tpm: use tpm_try_get_ops() in tpm-sysfs.c. drm/bridge: tc358767: Increase AUX transfer length limit drm/panel: simple: fix AUO g185han01 horizontal blanking video: ssd1307fb: Start page range at page_offset drm/stm: attach gem fence to atomic state drm/panel: check failure cases in the probe func drm/rockchip: Check for fast link training before enabling psr drm/radeon: Fix EEH during kexec gpu: drm: radeon: Fix a possible null-pointer dereference in radeon_connector_set_property() PCI: rpaphp: Avoid a sometimes-uninitialized warning ipmi_si: Only schedule continuously in the thread in maintenance mode clk: qoriq: Fix -Wunused-const-variable clk: sunxi-ng: v3s: add missing clock slices for MMC2 module clocks drm/amd/display: fix issue where 252-255 values are clipped drm/amd/display: reprogram VM config when system resume powerpc/powernv/ioda2: Allocate TCE table levels on demand for default DMA window clk: actions: Don't reference clk_init_data after registration clk: sirf: Don't reference clk_init_data after registration clk: sprd: Don't reference clk_init_data after registration clk: zx296718: Don't reference clk_init_data after registration powerpc/xmon: Check for HV mode when dumping XIVE info from OPAL powerpc/rtas: use device model APIs and serialization during LPM powerpc/futex: Fix warning: 'oldval' may be used uninitialized in this function powerpc/pseries/mobility: use cond_resched when updating device tree pinctrl: tegra: Fix write barrier placement in pmx_writel powerpc/eeh: Clear stale EEH_DEV_NO_HANDLER flag vfio_pci: Restore original state on release drm/nouveau/volt: Fix for some cards having 0 maximum voltage pinctrl: amd: disable spurious-firing GPIO IRQs clk: renesas: mstp: Set GENPD_FLAG_ALWAYS_ON for clock domain clk: renesas: cpg-mssr: Set GENPD_FLAG_ALWAYS_ON for clock domain drm/amd/display: support spdif drm/amdgpu/si: fix ASIC tests powerpc/64s/exception: machine check use correct cfar for late handler pstore: fs superblock limits clk: qcom: gcc-sdm845: Use floor ops for sdcc clks powerpc/pseries: correctly track irq state in default idle pinctrl: meson-gxbb: Fix wrong pinning definition for uart_c arm64: fix unreachable code issue with cmpxchg clk: at91: select parent if main oscillator or bypass is enabled powerpc: dump kernel log before carrying out fadump or kdump mbox: qcom: add APCS child device for QCS404 clk: sprd: add missing kfree scsi: core: Reduce memory required for SCSI logging dma-buf/sw_sync: Synchronize signal vs syncpt free ext4: fix potential use after free after remounting with noblock_validity MIPS: Ingenic: Disable broken BTB lookup optimization. MIPS: tlbex: Explicitly cast _PAGE_NO_EXEC to a boolean i2c-cht-wc: Fix lockdep warning PCI: tegra: Fix OF node reference leak HID: wacom: Fix several minor compiler warnings livepatch: Nullify obj->mod in klp_module_coming()'s error path ARM: 8898/1: mm: Don't treat faults reported from cache maintenance as writes soundwire: intel: fix channel number reported by hardware ARM: 8875/1: Kconfig: default to AEABI w/ Clang rtc: snvs: fix possible race condition rtc: pcf85363/pcf85263: fix regmap error in set_time HID: apple: Fix stuck function keys when using FN PCI: rockchip: Propagate errors for optional regulators PCI: histb: Propagate errors for optional regulators PCI: imx6: Propagate errors for optional regulators PCI: exynos: Propagate errors for optional PHYs security: smack: Fix possible null-pointer dereferences in smack_socket_sock_rcv_skb() ARM: 8903/1: ensure that usable memory in bank 0 starts from a PMD-aligned address fat: work around race with userspace's read via blockdev while mounting pktcdvd: remove warning on attempting to register non-passthrough dev hypfs: Fix error number left in struct pointer member crypto: hisilicon - Fix double free in sec_free_hw_sgl() kbuild: clean compressed initramfs image ocfs2: wait for recovering done after direct unlock request kmemleak: increase DEBUG_KMEMLEAK_EARLY_LOG_SIZE default to 16K arm64: consider stack randomization for mmap base only when necessary mips: properly account for stack randomization and stack guard gap arm: properly account for stack randomization and stack guard gap arm: use STACK_TOP when computing mmap base address bpf: fix use after free in prog symbol exposure cxgb4:Fix ou
[Bug 1848644] Re: eoan/linux-oracle: 5.3.0-1003.3 -proposed tracker
** Description changed: This bug will contain status and test results related to a kernel source (or snap) as stated in the title. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- kernel-stable-master-bug: 1848648 packages: lrm: linux-restricted-modules-oracle main: linux-oracle meta: linux-meta-oracle signed: linux-signed-oracle phase: Holding before Promote to Proposed phase-changed: Friday, 18. October 2019 20:46 UTC reason: - promote-to-proposed: Ongoing -- builds not complete in ppa lrm:depwait,main:building,meta:depwait,signed:depwait + promote-to-proposed: Ongoing -- builds not complete in ppa lrm:depwait,meta:depwait,signed:depwait variant: debs -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848644 Title: eoan/linux-oracle: 5.3.0-1003.3 -proposed tracker To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1848644/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848818] [NEW] package redmine 3.2.1-2 failed to install/upgrade: Unterprozess installiertes post-installation-Skript gab den Fehlerwert 7 zurück
Public bug reported: Redmine was not able to install. The specila redmin package manager does not work ProblemType: Package DistroRelease: Ubuntu 16.04 Package: redmine 3.2.1-2 ProcVersionSignature: Ubuntu 4.4.0-165.193-generic 4.4.189 Uname: Linux 4.4.0-165-generic x86_64 ApportVersion: 2.20.1-0ubuntu2.19 Architecture: amd64 Date: Sat Oct 19 00:46:20 2019 ErrorMessage: Unterprozess installiertes post-installation-Skript gab den Fehlerwert 7 zurück InstallationDate: Installed on 2012-04-27 (2730 days ago) InstallationMedia: Ubuntu-Server 12.04 LTS "Precise Pangolin" - Release amd64 (20120424.1) PackageArchitecture: all RelatedPackageVersions: dpkg 1.18.4ubuntu1.6 apt 1.2.32 SourcePackage: redmine Title: package redmine 3.2.1-2 failed to install/upgrade: Unterprozess installiertes post-installation-Skript gab den Fehlerwert 7 zurück UpgradeStatus: Upgraded to xenial on 2019-10-18 (0 days ago) ** Affects: redmine (Ubuntu) Importance: Undecided Status: New ** Tags: amd64 apport-package third-party-packages xenial -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848818 Title: package redmine 3.2.1-2 failed to install/upgrade: Unterprozess installiertes post-installation-Skript gab den Fehlerwert 7 zurück To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/redmine/+bug/1848818/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848621] Re: [snap] lost all passwords on 19.10 when chromium-browser deb was replaced by a snap
The connection is persistent. Thanks for confirming that this now works for you. I still need to look into why the connection wasn't made automatically when updating the deb package. ** Changed in: chromium-browser (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/1848621 Title: [snap] lost all passwords on 19.10 when chromium-browser deb was replaced by a snap To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/chromium-browser/+bug/1848621/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848797] Re: After upgrading to 19.10, boot screen shows: "Error: symbol 'grub_file_filters' not found."
Yes, i am sure. I don't think i have done anything to the bootloader, how can i check it? I found the following, if this helps: $ sudo grep -r grub_file_filters /boot/ Binary file /boot/grub/i386-pc/offsetio.mod matches Binary file /boot/grub/i386-pc/gzio.mod matches Binary file /boot/grub/i386-pc/verifiers.mod matches Binary file /boot/grub/i386-pc/lzopio.mod matches Binary file /boot/grub/i386-pc/xzio.mod matches -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848797 Title: After upgrading to 19.10, boot screen shows: "Error: symbol 'grub_file_filters' not found." To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/grub2/+bug/1848797/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848692] Re: Rygel autostarts on Ubuntu 19.10
** Information type changed from Private Security to Public Security -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848692 Title: Rygel autostarts on Ubuntu 19.10 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/rygel/+bug/1848692/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848635] Re: eoan/linux-gcp: 5.3.0-1005.5 -proposed tracker
** Changed in: kernel-sru-workflow/promote-to-proposed Status: In Progress => Fix Committed ** Description changed: This bug will contain status and test results related to a kernel source (or snap) as stated in the title. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- boot-testing-requested: true kernel-stable-master-bug: 1848648 packages: lrm: linux-restricted-modules-gcp main: linux-gcp meta: linux-meta-gcp signed: linux-signed-gcp phase: Promote to Proposed phase-changed: Friday, 18. October 2019 22:02 UTC reason: - promote-to-proposed: Ongoing -- review in progress + promote-to-proposed: Ongoing -- package copied to Proposed signed:depwait variant: debs -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848635 Title: eoan/linux-gcp: 5.3.0-1005.5 -proposed tracker To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1848635/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848631] Re: eoan/linux-aws: 5.3.0-1004.4 -proposed tracker
** Changed in: kernel-sru-workflow/promote-to-proposed Status: In Progress => Fix Committed ** Description changed: This bug will contain status and test results related to a kernel source (or snap) as stated in the title. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- boot-testing-requested: true kernel-stable-master-bug: 1848648 packages: lrm: linux-restricted-modules-aws main: linux-aws meta: linux-meta-aws phase: Promote to Proposed phase-changed: Friday, 18. October 2019 21:55 UTC reason: - promote-to-proposed: Ongoing -- review in progress + promote-to-proposed: Ongoing -- packages waiting in -proposed for mirror sync variant: debs -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848631 Title: eoan/linux-aws: 5.3.0-1004.4 -proposed tracker To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1848631/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848797] Re: After upgrading to 19.10, boot screen shows: "Error: symbol 'grub_file_filters' not found."
Thank you for the bug report. Are you sure of the spelling of the symbol name, 'grub_file_filters'? There is no symbol by this name anywhere in the grub source code. Have you previously done anything to the bootloader on your system that would have involved installing an out-of-tree grub module built from source? ** Package changed: grub (Ubuntu) => grub2 (Ubuntu) ** Changed in: grub2 (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/1848797 Title: After upgrading to 19.10, boot screen shows: "Error: symbol 'grub_file_filters' not found." To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/grub2/+bug/1848797/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848630] Re: eoan/linux-raspi2: 5.3.0-1008.9 -proposed tracker
** Changed in: kernel-sru-workflow/promote-to-proposed Status: In Progress => Fix Committed ** Description changed: This bug will contain status and test results related to a kernel source (or snap) as stated in the title. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- boot-testing-requested: true kernel-stable-master-bug: 1848648 packages: main: linux-raspi2 meta: linux-meta-raspi2 phase: Promote to Proposed phase-changed: Friday, 18. October 2019 21:55 UTC reason: - promote-to-proposed: Ongoing -- review in progress + promote-to-proposed: Ongoing -- packages waiting in -proposed for mirror sync variant: debs -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848630 Title: eoan/linux-raspi2: 5.3.0-1008.9 -proposed tracker To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1848630/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1848632] Re: eoan/linux-azure: 5.3.0-1004.4 -proposed tracker
** Changed in: kernel-sru-workflow/promote-to-proposed Status: In Progress => Fix Committed ** Description changed: This bug will contain status and test results related to a kernel source (or snap) as stated in the title. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- boot-testing-requested: true kernel-stable-master-bug: 1848648 packages: lrm: linux-restricted-modules-azure main: linux-azure meta: linux-meta-azure signed: linux-signed-azure phase: Promote to Proposed phase-changed: Friday, 18. October 2019 21:55 UTC reason: - promote-to-proposed: Ongoing -- review in progress + promote-to-proposed: Ongoing -- package copied to Proposed signed:depwait variant: debs -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1848632 Title: eoan/linux-azure: 5.3.0-1004.4 -proposed tracker To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1848632/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs