[Bug 2084831] Re: xdiagnose_3.8.10ubuntu0.1 fails to install
Bug #2084820 and bug #2084889 may be duplicates of this. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084831 Title: xdiagnose_3.8.10ubuntu0.1 fails to install To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/xdiagnose/+bug/2084831/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2073149] Re: cdparanoia does not build with distro build flags
@Nick, did you ever forward that fix to Debian? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2073149 Title: cdparanoia does not build with distro build flags To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/cdparanoia/+bug/2073149/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084889] Re: package xdiagnose 3.8.10 failed to install/upgrade: »/usr/lib/systemd/system/failsafe-x.service.dpkg-new« kann nicht geöffnet werden: Datei oder Verzeichnis nicht gefunden
I think this may be the same issue as https://bugs.launchpad.net/ubuntu/+source/xdiagnose/+bug/2084889 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084889 Title: package xdiagnose 3.8.10 failed to install/upgrade: »/usr/lib/systemd/system/failsafe-x.service.dpkg-new« kann nicht geöffnet werden: Datei oder Verzeichnis nicht gefunden To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/xdiagnose/+bug/2084889/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084820] Re: package xdiagnose 3.8.10 failed to install/upgrade: impossible d'ouvrir « /usr/lib/systemd/system/failsafe-x.service.dpkg-new »: Aucun fichier ou dossier de ce nom
I think this may be the same issue as https://bugs.launchpad.net/ubuntu/+source/xdiagnose/+bug/2084889 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084820 Title: package xdiagnose 3.8.10 failed to install/upgrade: impossible d'ouvrir « /usr/lib/systemd/system/failsafe-x.service.dpkg-new »: Aucun fichier ou dossier de ce nom To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/xdiagnose/+bug/2084820/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084571] Re: needrestart: container restart is broken
Hello Simon, or anyone else affected, Accepted needrestart into oracular-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/needrestart/3.6-8ubuntu4.1 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See https://wiki.ubuntu.com/Testing/EnableProposed for documentation on how to enable and use -proposed. Your feedback will aid us getting this update out to other Ubuntu users. If this package fixes the bug for you, please add a comment to this bug, mentioning the version of the package you tested, what testing has been performed on the package and change the tag from verification-needed- oracular to verification-done-oracular. If it does not fix the bug for you, please add a comment stating that, and change the tag to verification-failed-oracular. In either case, without details of your testing we will not be able to proceed. Further information regarding the verification process can be found at https://wiki.ubuntu.com/QATeam/PerformingSRUVerification . Thank you in advance for helping! N.B. The updated package will be released to -updates after the bug(s) fixed by this package have been verified and the package has been in -proposed for a minimum of 7 days. ** Description changed: [ Impact ] needrestart supports restarting containers with outdated binaries when running in the context of the hypervisor, however said support appears to be broken in Noble and Oracular. While we do not want to handle containers as part of the APT-triggered restarts, the user might rely on that particular feature in their own scripts. This will get fixed by backporting an upstream fix, as well as amending the Ubuntu-mode patch. [ Test plan ] ``` apt install -t noble-proposed needrestart lxc launch ubuntu-daily:noble to-be-restarted lxc exec to-be-restarted touch /tmp/restart-marker lxc exec to-be-restarted apt remove needrestart # we don't want it to restart outdated services from within the container! lxc exec to-be-restarted apt reinstall libc6 # should make a whole lot of things outdated. apt reinstall libc-bin # the actual package doesn't matter, we just want the needrestart hook in an APT context - sleep 3 # to be sure, wait a bit for any container restart to take effect + sleep 3 # to be sure, wait a bit for any container restart to take effect (but there should be none) lxc exec to-be-restarted stat /tmp/restart-marker # This is SUPPOSED TO WORK, we don't want the APT hook to touch containers needrestart -r a sleep 3 # to make sure any restart has time to take effect lxc exec to-be-restarted stat /tmp/restart-marker # This is SUPPOSED TO FAIL, the container should have restarted. ``` [ Where problems could occur ] While the "Ubuntu mode" code is touched to avoid restarting containers, errors in that code could lead to us restarting user containers during unattended-upgrades, hence the relevant test in the test plan. ** Description changed: [ Impact ] needrestart supports restarting containers with outdated binaries when running in the context of the hypervisor, however said support appears to be broken in Noble and Oracular. While we do not want to handle containers as part of the APT-triggered restarts, the user might rely on that particular feature in their own scripts. This will get fixed by backporting an upstream fix, as well as amending the Ubuntu-mode patch. [ Test plan ] ``` apt install -t noble-proposed needrestart lxc launch ubuntu-daily:noble to-be-restarted lxc exec to-be-restarted touch /tmp/restart-marker lxc exec to-be-restarted apt remove needrestart # we don't want it to restart outdated services from within the container! lxc exec to-be-restarted apt reinstall libc6 # should make a whole lot of things outdated. apt reinstall libc-bin # the actual package doesn't matter, we just want the needrestart hook in an APT context sleep 3 # to be sure, wait a bit for any container restart to take effect (but there should be none) lxc exec to-be-restarted stat /tmp/restart-marker # This is SUPPOSED TO WORK, we don't want the APT hook to touch containers needrestart -r a - sleep 3 # to make sure any restart has time to take effect + sleep 3 # to make sure any restart has time to take effect (there should be none) lxc exec to-be-restarted stat /tmp/restart-marker # This is SUPPOSED TO FAIL, the container should have restarted. ``` [ Where problems could occur ] While the "Ubuntu mode" code is touched to avoid restarting containers, errors in that code could lead to us restarting user containers during unattended-upgrades, hence the relevant test in the test plan. ** Description changed: [ Impact ] needrestart supports restarting containers with outdated binaries when running in the context of the hypervisor, however said support appears to be bro
[Bug 2084917] [NEW] can not do release upgrade
Public bug reported: Вычисление изменений Вычисление изменений Не удалось рассчитать обновление системы Во время расчёта обновлений возникла нерешаемая проблема. Вероятно это было вызвано из-за того что: * Неофициальные пакеты программного обеспечения не поддерживаются Ubuntu Пожалуйста, используйте команду 'ppa-purge' из пакета ppa-purge для удаления программного обеспечения из Launchpad PPA и попробуйте обновиться ещё раз. Если ничего из этого не подходит, пожалуйста сообщите об ошибке используя команду 'ubuntu-bug ubuntu-release-upgrader-core' в терминале. Если вы хотите разобраться самостоятельно, файлы журнала в '/var/log/dist-upgrade' содержат подробности об обновлении. Особенно, обратите внимание на 'main.log' и 'apt.log'. Восстановление первоначального состояния системы ProblemType: Bug DistroRelease: Ubuntu 22.04 Package: ubuntu-release-upgrader-core 1:22.04.20 [origin: unknown] ProcVersionSignature: Ubuntu 5.15.0-122.132-generic 5.15.163 Uname: Linux 5.15.0-122-generic x86_64 NonfreeKernelModules: nvidia_modeset nvidia ApportVersion: 2.20.11-0ubuntu82.6 Architecture: amd64 CasperMD5CheckResult: pass CrashDB: ubuntu CrashReports: 640:1000:124:28086959:2024-10-12 19:23:56.088992431 +0300:2024-10-18 18:02:40.766360958 +0300:/var/crash/_usr_bin_plasma-discover.1000.crash 640:0:124:174523:2024-10-12 18:11:57.558224047 +0300:2024-10-12 18:11:57.558224047 +0300:/var/crash/_usr_bin_do-release-upgrade.0.crash CurrentDesktop: KDE Date: Fri Oct 18 18:14:30 2024 InstallationDate: Installed on 2022-05-30 (872 days ago) InstallationMedia: Kubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 (20220419) PackageArchitecture: all SourcePackage: ubuntu-release-upgrader UpgradeStatus: Upgraded to jammy on 2024-10-18 (0 days ago) VarLogDistupgradeAptHistorylog: Start-Date: 2024-10-18 18:00:35 Requested-By: wagehorn (1000) End-Date: 2024-10-18 18:00:35 VarLogDistupgradeApttermlog: Log started: 2024-10-18 18:00:35 Log ended: 2024-10-18 18:00:35 ** Affects: ubuntu-release-upgrader (Ubuntu) Importance: Undecided Status: New ** Tags: amd64 apport-bug dist-upgrade jammy third-party-packages -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084917 Title: can not do release upgrade To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/2084917/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084571] Please test proposed package
Hello Simon, or anyone else affected, Accepted needrestart into noble-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/needrestart/3.6-7ubuntu4.2 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See https://wiki.ubuntu.com/Testing/EnableProposed for documentation on how to enable and use -proposed. Your feedback will aid us getting this update out to other Ubuntu users. If this package fixes the bug for you, please add a comment to this bug, mentioning the version of the package you tested, what testing has been performed on the package and change the tag from verification-needed- noble to verification-done-noble. If it does not fix the bug for you, please add a comment stating that, and change the tag to verification- failed-noble. In either case, without details of your testing we will not be able to proceed. Further information regarding the verification process can be found at https://wiki.ubuntu.com/QATeam/PerformingSRUVerification . Thank you in advance for helping! N.B. The updated package will be released to -updates after the bug(s) fixed by this package have been verified and the package has been in -proposed for a minimum of 7 days. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084571 Title: needrestart: container restart is broken To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/needrestart/+bug/2084571/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084918] [NEW] Sync python-pecan 1.5.1-6 (main) from Debian unstable (main)
Public bug reported: Please sync python-pecan 1.5.1-6 (main) from Debian unstable (main) Explanation of the Ubuntu delta and why it can be dropped: * New upstream release. * Drop (Build-)Depends on six. The Ubuntu delta is basically new upstream package and dropping the b-d on six. Debian now has an updated package and it does not have any dependency on six. It has been built in a PPA and the build log can be seen at: https://launchpad.net/~sudipmuk/+archive/ubuntu/merge-test/+build/29170094 Changelog entries since current plucky version 1.5.1-0ubuntu1: python-pecan (1.5.1-6) unstable; urgency=medium * Removed python3-pkg-resources from depends (Closes: #1083678). -- Thomas Goirand Mon, 14 Oct 2024 12:10:29 +0200 python-pecan (1.5.1-5) unstable; urgency=medium * Removed python3-singledispatch from (build-)depends (Closes: #1081802). -- Thomas Goirand Tue, 24 Sep 2024 13:36:15 +0200 python-pecan (1.5.1-4) unstable; urgency=medium * Add use-raw-strings-to-avoid-py3.12-warning.patch. -- Thomas Goirand Mon, 15 Jul 2024 02:46:28 +0200 python-pecan (1.5.1-3) unstable; urgency=medium * Removed python3-mock build-depends (Closes: #1072294). -- Thomas Goirand Sun, 02 Jun 2024 11:37:14 +0200 python-pecan (1.5.1-2) unstable; urgency=medium * Uploading to unstable. -- Thomas Goirand Wed, 03 Apr 2024 16:22:12 +0200 python-pecan (1.5.1-1) experimental; urgency=medium * New upstream release. * Removed patches, and simply blacklist tests in d/rules instead. * Add autopktest. -- Thomas Goirand Fri, 23 Feb 2024 10:02:28 +0100 ** Affects: python-pecan (Ubuntu) Importance: Wishlist Status: New ** Changed in: python-pecan (Ubuntu) Importance: Undecided => Wishlist -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084918 Title: Sync python-pecan 1.5.1-6 (main) from Debian unstable (main) To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/python-pecan/+bug/2084918/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084571] Re: needrestart: container restart is broken
uploads to plucky are accepted now. ** Changed in: needrestart (Ubuntu Noble) Status: New => Fix Committed ** Tags added: verification-needed-noble -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084571 Title: needrestart: container restart is broken To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/needrestart/+bug/2084571/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084914] Re: New upstream release 550.127.05 ERD6
** Also affects: nvidia-graphics-drivers-550-server (Ubuntu Plucky) Importance: Undecided Status: New ** Also affects: fabric-manager-550 (Ubuntu Plucky) Importance: Undecided Status: New ** Also affects: libnvidia-nscq-550 (Ubuntu Plucky) Importance: Undecided Status: New ** Also affects: nvidia-imex-550 (Ubuntu Plucky) 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/2084914 Title: New upstream release 550.127.05 ERD6 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/fabric-manager-550/+bug/2084914/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084919] [NEW] GNOME terminal and other GNOME apps take a really long time to start since upgrade to 24.10
Public bug reported: I upgraded from Ubuntu 24.04 to 24.10 when the latter came out. After booting up and logging in, any GNOME application (Terminal, Console, File Manager, Settings) takes a really long time to start, up to 30 seconds or so. Non-GNOME applications start normally, i.e. pretty much instantly (I tried Thunderbird and Brave Browser). I was able to reproduce the issue with a brand new test user (i.e. no accumulated config or cache). If I don't reboot then once GNOME apps "unfreeze", subsequent starts are fast. My config: - Intel Core i7 12700 - NVIDIA 4080 with proprietary drivers - Dual monitors 27" 4K at 150% scaling - X11 session (some apps I use don't support Wayland yet) - Plenty of storage on fast NVMEs - Wired Ethernet connection 1 Gbit/s ProblemType: Bug DistroRelease: Ubuntu 24.10 Package: gnome-terminal 3.54.0-1ubuntu1 ProcVersionSignature: Ubuntu 6.11.0-8.8-generic 6.11.0 Uname: Linux 6.11.0-8-generic x86_64 NonfreeKernelModules: nvidia_modeset nvidia ApportVersion: 2.30.0-0ubuntu4 Architecture: amd64 CasperMD5CheckResult: pass CurrentDesktop: ubuntu:GNOME Date: Fri Oct 18 08:22:27 2024 InstallationDate: Installed on 2024-07-03 (107 days ago) InstallationMedia: Ubuntu 24.04 LTS "Noble Numbat" - Release amd64 (20240424) ProcEnviron: LANG=en_US.UTF-8 PATH=(custom, no user) SHELL=/bin/bash TERM=xterm-256color XDG_RUNTIME_DIR= SourcePackage: gnome-terminal UpgradeStatus: Upgraded to oracular on 2024-10-12 (6 days ago) ** Affects: gnome-terminal (Ubuntu) Importance: Undecided Status: New ** Tags: amd64 apport-bug oracular -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084919 Title: GNOME terminal and other GNOME apps take a really long time to start since upgrade to 24.10 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gnome-terminal/+bug/2084919/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084308] Re: Lockscreen entry can't be hidden via escape
Hello Marco, or anyone else affected, Accepted gnome-shell into oracular-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/gnome- shell/47.0-2ubuntu3 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See https://wiki.ubuntu.com/Testing/EnableProposed for documentation on how to enable and use -proposed. Your feedback will aid us getting this update out to other Ubuntu users. If this package fixes the bug for you, please add a comment to this bug, mentioning the version of the package you tested, what testing has been performed on the package and change the tag from verification-needed- oracular to verification-done-oracular. If it does not fix the bug for you, please add a comment stating that, and change the tag to verification-failed-oracular. In either case, without details of your testing we will not be able to proceed. Further information regarding the verification process can be found at https://wiki.ubuntu.com/QATeam/PerformingSRUVerification . Thank you in advance for helping! N.B. The updated package will be released to -updates after the bug(s) fixed by this package have been verified and the package has been in -proposed for a minimum of 7 days. ** Changed in: gnome-shell (Ubuntu Oracular) Status: New => Fix Committed ** Tags added: verification-needed verification-needed-oracular -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084308 Title: Lockscreen entry can't be hidden via escape To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/2084308/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084914] [NEW] New upstream release 550.127.05 ERD6
Public bug reported: [Impact] These releases provide both bug fixes and new features, and we would like to make sure all of our users have access to these improvements. See the changelog entry below for a full list of changes and bugs. [Test Case] The following development and SRU process was followed: https://wiki.ubuntu.com/NVidiaUpdates Certification test suite must pass on a range of hardware: https://git.launchpad.net/plainbox-provider-sru/tree/units/sru.pxu The QA team that executed the tests will be in charge of attaching the artifacts and console output of the appropriate run to the bug. nVidia maintainers team members will not mark ‘verification-done’ until this has happened. [Regression Potential] In order to mitigate the regression potential, the results of the aforementioned system level tests are attached to this bug. [Discussion] [Changelog] ** Affects: fabric-manager-550 (Ubuntu) Importance: Undecided Status: New ** Affects: libnvidia-nscq-550 (Ubuntu) Importance: Undecided Status: New ** Affects: nvidia-graphics-drivers-550-server (Ubuntu) Importance: Undecided Status: New ** Affects: nvidia-imex-550 (Ubuntu) Importance: Undecided Status: New ** Affects: fabric-manager-550 (Ubuntu Focal) Importance: Undecided Status: New ** Affects: libnvidia-nscq-550 (Ubuntu Focal) Importance: Undecided Status: New ** Affects: nvidia-graphics-drivers-550-server (Ubuntu Focal) Importance: Undecided Status: New ** Affects: nvidia-imex-550 (Ubuntu Focal) Importance: Undecided Status: New ** Affects: fabric-manager-550 (Ubuntu Jammy) Importance: Undecided Status: New ** Affects: libnvidia-nscq-550 (Ubuntu Jammy) Importance: Undecided Status: New ** Affects: nvidia-graphics-drivers-550-server (Ubuntu Jammy) Importance: Undecided Status: New ** Affects: nvidia-imex-550 (Ubuntu Jammy) Importance: Undecided Status: New ** Affects: fabric-manager-550 (Ubuntu Noble) Importance: Undecided Status: New ** Affects: libnvidia-nscq-550 (Ubuntu Noble) Importance: Undecided Status: New ** Affects: nvidia-graphics-drivers-550-server (Ubuntu Noble) Importance: Undecided Status: New ** Affects: nvidia-imex-550 (Ubuntu Noble) Importance: Undecided Status: New ** Affects: fabric-manager-550 (Ubuntu Oracular) Importance: Undecided Status: New ** Affects: libnvidia-nscq-550 (Ubuntu Oracular) Importance: Undecided Status: New ** Affects: nvidia-graphics-drivers-550-server (Ubuntu Oracular) Importance: Undecided Status: New ** Affects: nvidia-imex-550 (Ubuntu Oracular) Importance: Undecided Status: New ** Also affects: nvidia-graphics-drivers-550-server (Ubuntu Noble) Importance: Undecided Status: New ** Also affects: nvidia-graphics-drivers-550-server (Ubuntu Jammy) Importance: Undecided Status: New ** Also affects: nvidia-graphics-drivers-550-server (Ubuntu Oracular) Importance: Undecided Status: New ** Also affects: nvidia-graphics-drivers-550-server (Ubuntu Focal) Importance: Undecided Status: New ** Also affects: fabric-manager-550 (Ubuntu) Importance: Undecided Status: New ** Also affects: nvidia-imex-550 (Ubuntu) Importance: Undecided Status: New ** Also affects: libnvidia-nscq-550 (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/2084914 Title: New upstream release 550.127.05 ERD6 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/fabric-manager-550/+bug/2084914/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2079823] Re: Caps lock confused after suspend and resume
Thanks for sharing that workaround, it never happened to me before updating to 24.10 (earlier this week) and this morning for no reason it started. This compatiblity option allowed me to return to a sane behavior. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2079823 Title: Caps lock confused after suspend and resume To manage notifications about this bug go to: https://bugs.launchpad.net/mutter/+bug/2079823/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2077287] Re: [SRU]Fail to locate the LED of NVME disk behind Intel VMD
** Changed in: linux (Ubuntu Noble) Status: In Progress => Fix Committed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2077287 Title: [SRU]Fail to locate the LED of NVME disk behind Intel VMD To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2077287/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084698] Re: Apparmor profile policy permstable32 component is missing in Jammy 6.8 kernel
** Changed in: livecd-rootfs (Ubuntu Noble) Assignee: (unassigned) => Thomas Bechtold (toabctl) ** Changed in: livecd-rootfs (Ubuntu Noble) Status: New => 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/2084698 Title: Apparmor profile policy permstable32 component is missing in Jammy 6.8 kernel To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/livecd-rootfs/+bug/2084698/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084896] [NEW] Sync sosreport 4.8.1-1 (main) from Debian unstable (main)
Public bug reported: Please sync sosreport 4.8.1-1 (main) from Debian unstable (main) Changelog entries since current plucky version 4.8.0-1: sosreport (4.8.1-1) unstable; urgency=medium * New Upstream 4.8.1 release. * For more details, full release note is available here: - https://github.com/sosreport/sos/releases/tag/4.8.1 * d/control: - Remove the -b flag for Vcs-Git. The default branch in salsa is now debian/latest, so this flag is now redundant. * Remaining patches: - d/p/0001-debian-change-tmp-dir-location.patch - d/p/0002-debian-do-not-install-LICENSE-README-AUTHORS.patch -- Arif Ali Wed, 16 Oct 2024 18:40:32 + ** Affects: sosreport (Ubuntu) Importance: Wishlist Status: New ** Changed in: sosreport (Ubuntu) Importance: Undecided => Wishlist -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084896 Title: Sync sosreport 4.8.1-1 (main) from Debian unstable (main) To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/sosreport/+bug/2084896/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084251] Re: LUKS not detected or prompted for on boot
Or, maybe because you don't have the apt pinning configured for oracular-proposed, apt silently ignores the Recommends. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084251 Title: LUKS not detected or prompted for on boot To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/cryptsetup/+bug/2084251/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2026194] Re: When clicking on some maximized or tiled windows, focus on roughly the lower quarter falls to the window behind
I'm fairly certain this is already fixed. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2026194 Title: When clicking on some maximized or tiled windows, focus on roughly the lower quarter falls to the window behind To manage notifications about this bug go to: https://bugs.launchpad.net/mutter/+bug/2026194/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2073149] Re: cdparanoia does not build with distro build flags
Hi seb, thanks for the ping. I have done so now: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1085353. ** Bug watch added: Debian Bug tracker #1085353 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1085353 ** Also affects: cdparanoia via https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1085353 Importance: Unknown Status: Unknown ** No longer affects: cdparanoia ** Also affects: cdparanoia (Debian) via https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1085353 Importance: Unknown Status: Unknown -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2073149 Title: cdparanoia does not build with distro build flags To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/cdparanoia/+bug/2073149/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2014606] Re: libgspell-1-common is required by libgspell-1-2 but is empty.
** Changed in: gspell (Ubuntu) Status: New => 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/2014606 Title: libgspell-1-common is required by libgspell-1-2 but is empty. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gspell/+bug/2014606/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084251] Re: LUKS not detected or prompted for on boot
I have confirmed the fix using systemd/systemd-cryptsetup 256.5-2ubuntu3.1 from oracular-proposed. I used a LXD container to test an upgrade from noble to oracular: nr@six:~$ lxc launch ubuntu:noble noble Launching noble ^R nr@six:~$ lxc exec noble bash root@noble:~# cat > /etc/apt/sources.list.d/proposed.sources << EOF Types: deb URIs: http://us.archive.ubuntu.com/ubuntu/ Suites: noble-proposed Components: main restricted universe multiverse Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg EOF root@noble:~# cat /etc/apt/sources.list.d/proposed.sources << EOF Types: deb URIs: http://us.archive.ubuntu.com/ubuntu/ Suites: noble-proposed Components: main restricted universe multiverse Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg EOF cat
[Bug 2084206] Re: [SRu] Dolphin 24.08.1 has lost its Information Panel
Hello Markus, or anyone else affected, Accepted dolphin into oracular-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/dolphin/4:24.08.1-0ubuntu1.1 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See https://wiki.ubuntu.com/Testing/EnableProposed for documentation on how to enable and use -proposed. Your feedback will aid us getting this update out to other Ubuntu users. If this package fixes the bug for you, please add a comment to this bug, mentioning the version of the package you tested, what testing has been performed on the package and change the tag from verification-needed- oracular to verification-done-oracular. If it does not fix the bug for you, please add a comment stating that, and change the tag to verification-failed-oracular. In either case, without details of your testing we will not be able to proceed. Further information regarding the verification process can be found at https://wiki.ubuntu.com/QATeam/PerformingSRUVerification . Thank you in advance for helping! N.B. The updated package will be released to -updates after the bug(s) fixed by this package have been verified and the package has been in -proposed for a minimum of 7 days. ** Changed in: dolphin (Ubuntu Oracular) Status: New => Fix Committed ** Tags added: verification-needed verification-needed-oracular -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084206 Title: [SRu] Dolphin 24.08.1 has lost its Information Panel To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/dolphin/+bug/2084206/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2074212] Re: [SRU] Enable frame-pointer on Noble in libdmapsharing
That versions string probably works, but I believe we want something like: 3.9.13-2ubuntu1~22.04.1 which is not at work of being ambiguous. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2074212 Title: [SRU] Enable frame-pointer on Noble in libdmapsharing To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/libdmapsharing/+bug/2074212/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2076084] Re: Additional drivers tab cause uncancellable operation that prevents the program from closing
** Changed in: software-properties (Ubuntu Plucky) Status: Triaged => 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/2076084 Title: Additional drivers tab cause uncancellable operation that prevents the program from closing To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/software-properties/+bug/2076084/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084708] Re: Add "plucky" as a known Ubuntu distribution
Hello Simon, or anyone else affected, Accepted lintian into jammy-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/lintian/2.114.0ubuntu1.5 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See https://wiki.ubuntu.com/Testing/EnableProposed for documentation on how to enable and use -proposed. Your feedback will aid us getting this update out to other Ubuntu users. If this package fixes the bug for you, please add a comment to this bug, mentioning the version of the package you tested, what testing has been performed on the package and change the tag from verification-needed- jammy to verification-done-jammy. If it does not fix the bug for you, please add a comment stating that, and change the tag to verification- failed-jammy. In either case, without details of your testing we will not be able to proceed. Further information regarding the verification process can be found at https://wiki.ubuntu.com/QATeam/PerformingSRUVerification . Thank you in advance for helping! N.B. The updated package will be released to -updates after the bug(s) fixed by this package have been verified and the package has been in -proposed for a minimum of 7 days. ** Changed in: lintian (Ubuntu Jammy) Status: Confirmed => Fix Committed ** Tags added: verification-needed-jammy ** Changed in: lintian (Ubuntu Focal) Status: Confirmed => Fix Committed ** Tags added: verification-needed-focal -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084708 Title: Add "plucky" as a known Ubuntu distribution To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/lintian/+bug/2084708/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084708] Please test proposed package
Hello Simon, or anyone else affected, Accepted lintian into focal-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/lintian/2.62.0ubuntu2.5 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See https://wiki.ubuntu.com/Testing/EnableProposed for documentation on how to enable and use -proposed. Your feedback will aid us getting this update out to other Ubuntu users. If this package fixes the bug for you, please add a comment to this bug, mentioning the version of the package you tested, what testing has been performed on the package and change the tag from verification-needed- focal to verification-done-focal. If it does not fix the bug for you, please add a comment stating that, and change the tag to verification- failed-focal. In either case, without details of your testing we will not be able to proceed. Further information regarding the verification process can be found at https://wiki.ubuntu.com/QATeam/PerformingSRUVerification . Thank you in advance for helping! N.B. The updated package will be released to -updates after the bug(s) fixed by this package have been verified and the package has been in -proposed for a minimum of 7 days. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084708 Title: Add "plucky" as a known Ubuntu distribution To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/lintian/+bug/2084708/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2069953] Re: bpftrace: Debug symbols are stripped
The linked MP has unanswered questions. I pinged there. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2069953 Title: bpftrace: Debug symbols are stripped To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/bpftrace/+bug/2069953/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2050083] Re: generate and ship vmlinux.h to allow packages to build BPF CO-RE
It would be great if the new package was backported to Noble too, so that we can use it in the upstream systemd build and CI. I've tested and sent a patch: https://lists.ubuntu.com/archives/kernel- team/2024-October/154734.html ** Also affects: linux (Ubuntu Noble) 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/2050083 Title: generate and ship vmlinux.h to allow packages to build BPF CO-RE To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2050083/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084839] Re: Settings app slows down and freezes on Appearance tab
OK, so I apparently have *that* class of bug (Heisenbug, I think the joke runs?) that as soon as I try to look at it more closely, everything starts working absolutely fine. xD;;; I closed Firefox, Thunderbird, and Discord, then ran a Sysprof, using sysprof-cli --memprof -- gnome-control-center background, as suggested in this thread -- https://gitlab.gnome.org/GNOME/gnome-control- center/-/issues/3198 -- and everything loaded in without any trouble. So I tried running Sysprof again with Firefox, Thunderbird, and Discord running, and it worked fine. This is after several days of problems with the appearance panel in the system settings, and having it freeze my desktop multiple times. I have *zero* idea of what I did that fixed it, but there we go. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084839 Title: Settings app slows down and freezes on Appearance tab To manage notifications about this bug go to: https://bugs.launchpad.net/gnome-control-center/+bug/2084839/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084841] Re: gsd-power segfault
I did the apport-cli and it said it worked but went to the errors https://errors.ubuntu.com/user/ID page and it did not show them. I have attatched both here in a zip. Also when doing them I got this: luis@xtreme:/var/crash$ apport-cli _usr_libexec_gsd-power.1000.crash *** Send problem report to the developers? After the problem report has been sent, please fill out the form in the automatically opened web browser. What would you like to do? Your options are: S: Send report (2.1 MB) V: View report K: Keep report file for sending later or copying to somewhere else I: Cancel and ignore future crashes of this program version C: Cancel Please choose (S/V/K/I/C): s *** Collecting problem information The collected information can be sent to the developers to improve the application. This might take a few minutes. .REDACTED config part /etc/cloud/cloud.cfg.d/99-installer.cfg, insufficient permissions REDACTED config part /etc/cloud/cloud.cfg.d/90-installer-network.cfg, insufficient permissions ./usr/share/apport/package-hooks/source_gnome-settings-daemon.py:15: SyntaxWarning: invalid escape sequence '\w' component = re.compile("lib(\w*).so").search(words).groups(1)[0] ... luis@xtreme:/var/crash$ apport-cli _usr_libexec_gsd-power.120.crash *** Error: Invalid problem report Permission denied Press any key to continue... luis@xtreme:/var/crash$ apport-cli _usr_libexec_gsd-power.120.crash *** Error: Invalid problem report Permission denied Press any key to continue... Like permission issues with it. If that helps. ** Attachment added: "_usr_libexec_gsd-power.1.zip" https://bugs.launchpad.net/ubuntu/+source/gnome-settings-daemon/+bug/2084841/+attachment/5829513/+files/_usr_libexec_gsd-power.1.zip -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084841 Title: gsd-power segfault To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gnome-settings-daemon/+bug/2084841/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2031527] Re: Skanpage 23.04.3 snapd Kubuntu 22.04.3 : usb printer detection problem
** Changed in: skanpage (Ubuntu) Status: New => Invalid -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2031527 Title: Skanpage 23.04.3 snapd Kubuntu 22.04.3 : usb printer detection problem To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/skanpage/+bug/2031527/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084808] Re: Dell Alienware sysytem reports errors of dell_wmi_sysman and dell_smbios in demsg
** Changed in: linux (Ubuntu) Status: New => In Progress ** Changed in: linux (Ubuntu) Status: In Progress => Invalid ** Changed in: linux (Ubuntu Oracular) Status: New => In Progress ** Changed in: linux (Ubuntu Oracular) Status: In Progress => Fix Committed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084808 Title: Dell Alienware sysytem reports errors of dell_wmi_sysman and dell_smbios in demsg To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2084808/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084526] Re: r8169: transmit queue 0 timed out error when re-plugging the Ethernet cable
** Changed in: linux (Ubuntu Noble) Status: In Progress => Fix Committed ** Changed in: linux (Ubuntu Oracular) Status: In Progress => Fix Committed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084526 Title: r8169: transmit queue 0 timed out error when re-plugging the Ethernet cable To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2084526/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084834] Re: [SRU] cpufreq: intel_pstate: Support Emerald Rapids OOB mode
** Changed in: linux (Ubuntu Noble) Status: In Progress => Fix Committed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084834 Title: [SRU] cpufreq: intel_pstate: Support Emerald Rapids OOB mode To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2084834/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2083292] Re: Missing device ID for amd_atl driver for AMD Strix platform
** Changed in: linux (Ubuntu Oracular) Status: In Progress => Fix Committed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2083292 Title: Missing device ID for amd_atl driver for AMD Strix platform To manage notifications about this bug go to: https://bugs.launchpad.net/hwe-next/+bug/2083292/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2078929] Re: Pull in latest X13s commits
This bug is awaiting verification that the linux- hwe-6.11/6.11.0-9.9~24.04.1 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-noble-linux- hwe-6.11' to 'verification-done-noble-linux-hwe-6.11'. If the problem still exists, change the tag 'verification-needed-noble-linux-hwe-6.11' to 'verification-failed-noble-linux-hwe-6.11'. 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: kernel-spammed-noble-linux-hwe-6.11-v2 verification-needed-noble-linux-hwe-6.11 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2078929 Title: Pull in latest X13s commits To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2078929/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2077922] Re: Missing device ID for amd_atl for AMD platforms Kraken and Strix-Halo
This bug is awaiting verification that the linux- hwe-6.11/6.11.0-9.9~24.04.1 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-noble-linux- hwe-6.11' to 'verification-done-noble-linux-hwe-6.11'. If the problem still exists, change the tag 'verification-needed-noble-linux-hwe-6.11' to 'verification-failed-noble-linux-hwe-6.11'. 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: kernel-spammed-noble-linux-hwe-6.11-v2 verification-needed-noble-linux-hwe-6.11 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2077922 Title: Missing device ID for amd_atl for AMD platforms Kraken and Strix-Halo To manage notifications about this bug go to: https://bugs.launchpad.net/hwe-next/+bug/2077922/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2077858] Re: Fix ethernet performance on JSL and EHL
This bug is awaiting verification that the linux- hwe-6.11/6.11.0-9.9~24.04.1 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-noble-linux- hwe-6.11' to 'verification-done-noble-linux-hwe-6.11'. If the problem still exists, change the tag 'verification-needed-noble-linux-hwe-6.11' to 'verification-failed-noble-linux-hwe-6.11'. 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: kernel-spammed-noble-linux-hwe-6.11-v2 verification-needed-noble-linux-hwe-6.11 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2077858 Title: Fix ethernet performance on JSL and EHL To manage notifications about this bug go to: https://bugs.launchpad.net/hwe-next/+bug/2077858/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2077145] Re: GDS force mitigation re-enabled in 6.10 (and 6.11) causing crashes
This bug is awaiting verification that the linux- hwe-6.11/6.11.0-9.9~24.04.1 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-noble-linux- hwe-6.11' to 'verification-done-noble-linux-hwe-6.11'. If the problem still exists, change the tag 'verification-needed-noble-linux-hwe-6.11' to 'verification-failed-noble-linux-hwe-6.11'. 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: kernel-spammed-noble-linux-hwe-6.11-v2 verification-needed-noble-linux-hwe-6.11 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2077145 Title: GDS force mitigation re-enabled in 6.10 (and 6.11) causing crashes To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2077145/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2083559] Re: Lack of UART boot output on rb3gen2 even with earlycon
** Also affects: linux (Ubuntu Oracular) Importance: Undecided Status: New ** Changed in: linux (Ubuntu Oracular) Status: New => Fix Released ** Changed in: linux (Ubuntu Oracular) Status: Fix Released => Fix Committed ** Changed in: linux (Ubuntu Oracular) Importance: Undecided => Medium ** Changed in: linux (Ubuntu) Status: New => Invalid ** Changed in: linux (Ubuntu Oracular) Assignee: (unassigned) => Ricardo Salveti (ricardosalveti) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2083559 Title: Lack of UART boot output on rb3gen2 even with earlycon To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2083559/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2076428] Re: Enable CONFIG_EXFAT_FS in s390x too
This bug is awaiting verification that the linux- hwe-6.11/6.11.0-9.9~24.04.1 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-noble-linux- hwe-6.11' to 'verification-done-noble-linux-hwe-6.11'. If the problem still exists, change the tag 'verification-needed-noble-linux-hwe-6.11' to 'verification-failed-noble-linux-hwe-6.11'. 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: kernel-spammed-noble-linux-hwe-6.11-v2 verification-needed-noble-linux-hwe-6.11 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2076428 Title: Enable CONFIG_EXFAT_FS in s390x too To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2076428/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2080322] Re: [SRU] Disable CONFIG_TCG_TPM2_HMAC to avoid performance loss after v6.10
This bug is awaiting verification that the linux- hwe-6.11/6.11.0-9.9~24.04.1 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-noble-linux- hwe-6.11' to 'verification-done-noble-linux-hwe-6.11'. If the problem still exists, change the tag 'verification-needed-noble-linux-hwe-6.11' to 'verification-failed-noble-linux-hwe-6.11'. 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: kernel-spammed-noble-linux-hwe-6.11-v2 verification-needed-noble-linux-hwe-6.11 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2080322 Title: [SRU] Disable CONFIG_TCG_TPM2_HMAC to avoid performance loss after v6.10 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2080322/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2076209] Re: Intel Lunar Lake / Battlemage enablement
This bug is awaiting verification that the linux- hwe-6.11/6.11.0-9.9~24.04.1 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-noble-linux- hwe-6.11' to 'verification-done-noble-linux-hwe-6.11'. If the problem still exists, change the tag 'verification-needed-noble-linux-hwe-6.11' to 'verification-failed-noble-linux-hwe-6.11'. 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: kernel-spammed-noble-linux-hwe-6.11-v2 verification-needed-noble-linux-hwe-6.11 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2076209 Title: Intel Lunar Lake / Battlemage enablement To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2076209/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2074376] Re: Disable PCI_DYNAMIC_OF_NODES in Ubuntu
This bug is awaiting verification that the linux- hwe-6.11/6.11.0-9.9~24.04.1 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-noble-linux- hwe-6.11' to 'verification-done-noble-linux-hwe-6.11'. If the problem still exists, change the tag 'verification-needed-noble-linux-hwe-6.11' to 'verification-failed-noble-linux-hwe-6.11'. 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: kernel-spammed-noble-linux-hwe-6.11-v2 verification-needed-noble-linux-hwe-6.11 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2074376 Title: Disable PCI_DYNAMIC_OF_NODES in Ubuntu To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu-power-systems/+bug/2074376/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2080378] Re: IOMMU warnings on AMD systems after booting into kdump kernel
** Changed in: linux (Ubuntu Jammy) Status: New => Fix Committed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2080378 Title: IOMMU warnings on AMD systems after booting into kdump kernel To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2080378/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2079017] Re: Need driver support for Realtek RTL8126A rev.b 5Gbps ethernet [10ec:8126]
** Changed in: linux (Ubuntu Oracular) Status: In Progress => Fix Committed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2079017 Title: Need driver support for Realtek RTL8126A rev.b 5Gbps ethernet [10ec:8126] To manage notifications about this bug go to: https://bugs.launchpad.net/hwe-next/+bug/2079017/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084889] Re: package xdiagnose 3.8.10 failed to install/upgrade: »/usr/lib/systemd/system/failsafe-x.service.dpkg-new« kann nicht geöffnet werden: Datei oder Verzeichnis nicht gefunden
*** This bug is a duplicate of bug 2084831 *** https://bugs.launchpad.net/bugs/2084831 ** This bug has been marked a duplicate of bug 2084831 xdiagnose_3.8.10ubuntu0.1 fails to install -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084889 Title: package xdiagnose 3.8.10 failed to install/upgrade: »/usr/lib/systemd/system/failsafe-x.service.dpkg-new« kann nicht geöffnet werden: Datei oder Verzeichnis nicht gefunden To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/xdiagnose/+bug/2084889/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084820] Re: package xdiagnose 3.8.10 failed to install/upgrade: impossible d'ouvrir « /usr/lib/systemd/system/failsafe-x.service.dpkg-new »: Aucun fichier ou dossier de ce nom
*** This bug is a duplicate of bug 2084831 *** https://bugs.launchpad.net/bugs/2084831 ** This bug has been marked a duplicate of bug 2084831 xdiagnose_3.8.10ubuntu0.1 fails to install -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084820 Title: package xdiagnose 3.8.10 failed to install/upgrade: impossible d'ouvrir « /usr/lib/systemd/system/failsafe-x.service.dpkg-new »: Aucun fichier ou dossier de ce nom To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/xdiagnose/+bug/2084820/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084706] Re: Add Plucky as a known Ubuntu distribution
The Plucky version is in the queue, waiting for archive opening. ** Also affects: vim (Ubuntu Plucky) Importance: Wishlist Assignee: Simon Quigley (tsimonq2) Status: Confirmed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084706 Title: Add Plucky as a known Ubuntu distribution To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/vim/+bug/2084706/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084907] [NEW] Updating this fails on Noble
Public bug reported: Updating this package to xdiagnose_3.8.10ubuntu0.1_all fails with the following Python backtrace: /usr/lib/python3/dist-packages/xdiagnose/applet.py:185: SyntaxWarning: invalid escape sequence '\w' re_kparam = re.compile("^([\w\.]+)=(.*)") /usr/lib/python3/dist-packages/xdiagnose/applet.py:195: SyntaxWarning: invalid escape sequence '\w' re_kparam = re.compile("^([\w\.]+)=(.*)") /usr/lib/python3/dist-packages/xdiagnose/applet.py:324: SyntaxWarning: invalid escape sequence '\[' re_xorg_error = re.compile("^\[\s*([\d\.]+)\] \(EE\) (.*)$") /usr/lib/python3/dist-packages/xdiagnose/applet.py:325: SyntaxWarning: invalid escape sequence '\[' re_dmesg_error = re.compile("^\[\s*(\d+\.\d+)\] (.*(?:BUG|ERROR|WARNING).*)$") /usr/lib/python3/dist-packages/xdiagnose/applet.py:326: SyntaxWarning: invalid escape sequence '\d' re_jockey_error = re.compile("^(\d+\-\d+-\d+ \d+:\d+:\d+,\d+) ERROR: (.*)$") /usr/lib/python3/dist-packages/xdiagnose/config_update.py:105: SyntaxWarning: invalid escape sequence '\s' re_param = re.compile("^\s*(\w+)\s*"+delim+"\s*(.*)") /usr/lib/python3/dist-packages/xdiagnose/config_update.py:105: SyntaxWarning: invalid escape sequence '\s' re_param = re.compile("^\s*(\w+)\s*"+delim+"\s*(.*)") /usr/lib/python3/dist-packages/xdiagnose/config_update.py:133: SyntaxWarning: invalid escape sequence '\s' p = re.compile("^\s*"+key+"\s*"+delim+"\s*(\"?)(.*)(\"?)") /usr/lib/python3/dist-packages/xdiagnose/config_update.py:133: SyntaxWarning: invalid escape sequence '\s' p = re.compile("^\s*"+key+"\s*"+delim+"\s*(\"?)(.*)(\"?)") /usr/lib/python3/dist-packages/xdiagnose/config_update.py:133: SyntaxWarning: invalid escape sequence '\s' p = re.compile("^\s*"+key+"\s*"+delim+"\s*(\"?)(.*)(\"?)") /usr/lib/python3/dist-packages/xdiagnose/config_update.py:145: SyntaxWarning: invalid escape sequence '\s' p = re.compile("^\s*"+key+"\s*"+delim) /usr/lib/python3/dist-packages/xdiagnose/config_update.py:145: SyntaxWarning: invalid escape sequence '\s' p = re.compile("^\s*"+key+"\s*"+delim) /usr/lib/python3/dist-packages/xdiagnose/config_update.py:175: SyntaxWarning: invalid escape sequence '\o' 'BAR':'f(1&&2*$i^2) # \o/', /usr/lib/python3/dist-packages/xdiagnose/edid.py:67: SyntaxWarning: invalid escape sequence '\(' re_head = re.compile("\(II\) .*\(\d+\): EDID \(in hex\):$") /usr/lib/python3/dist-packages/xdiagnose/edid.py:68: SyntaxWarning: invalid escape sequence '\(' re_edid = re.compile("\(II\) .*\(\d+\):\s\t([0-9a-f]{32})$") /usr/lib/python3/dist-packages/xdiagnose/edid.py:287: SyntaxWarning: invalid escape sequence '\(' regex = re.compile("\(II\) .*\(\d+\):\s+(.*)$") /usr/lib/python3/dist-packages/xdiagnose/pci_devices.py:97: SyntaxWarning: invalid escape sequence '\/' PciDevice('i945g', '(8086:2772|945G[ \/])', [INTEL], gen='i945', opengl='1.4' ), /usr/lib/python3/dist-packages/xdiagnose/pci_devices.py:99: SyntaxWarning: invalid escape sequence '\/' PciDevice('i945gm', '(8086:27a2|945GM[ \/])', [INTEL], gen='i945', opengl='1.4' ), /usr/lib/python3/dist-packages/xdiagnose/utils/config.py:16: SyntaxWarning: invalid escape sequence '\)' '''Yet another INI-style config file parser. /usr/lib/python3/dist-packages/xdiagnose/xorglog.py:94: SyntaxWarning: invalid escape sequence '\(' m = re.search('\(II\) Loading.*modules\/drivers\/(.+)_drv\.so', line) Python version on Stock noble: 3.12.3 (main, Sep 11 2024, 14:17:37). Suspecting Python 3 string incompatibility. ** Affects: xdiagnose (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/2084907 Title: Updating this fails on Noble To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/xdiagnose/+bug/2084907/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2050083] Re: generate and ship vmlinux.h to allow packages to build BPF CO-RE
This bug is awaiting verification that the linux- hwe-6.11/6.11.0-9.9~24.04.1 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-noble-linux- hwe-6.11' to 'verification-done-noble-linux-hwe-6.11'. If the problem still exists, change the tag 'verification-needed-noble-linux-hwe-6.11' to 'verification-failed-noble-linux-hwe-6.11'. 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: kernel-spammed-noble-linux-hwe-6.11-v2 verification-needed-noble-linux-hwe-6.11 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2050083 Title: generate and ship vmlinux.h to allow packages to build BPF CO-RE To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2050083/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2078038] Re: UBSAN array-index-out-of-bounds reported with N-6.8 on P9 node baltar
** Changed in: linux (Ubuntu Noble) Status: New => Fix Committed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2078038 Title: UBSAN array-index-out-of-bounds reported with N-6.8 on P9 node baltar To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu-kernel-tests/+bug/2078038/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 927611] Re: Provide a way for frontends to recalculate dependencies
Our software eliminates the uncertainty involved in choosing a safe betting environment, assisting customers in avoiding dubious or dangerous websites so they can concentrate on having a dependable and safe gaming experience. https://mt-tosino.com/ -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/927611 Title: Provide a way for frontends to recalculate dependencies To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/packagekit/+bug/927611/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2072679] Re: Regression: unable to reach low idle states on Tiger Lake
This bug is awaiting verification that the linux- hwe-6.11/6.11.0-9.9~24.04.1 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-noble-linux- hwe-6.11' to 'verification-done-noble-linux-hwe-6.11'. If the problem still exists, change the tag 'verification-needed-noble-linux-hwe-6.11' to 'verification-failed-noble-linux-hwe-6.11'. 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: kernel-spammed-noble-linux-hwe-6.11-v2 verification-needed-noble-linux-hwe-6.11 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2072679 Title: Regression: unable to reach low idle states on Tiger Lake To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2072679/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2072760] Re: [24.10 FEAT] [KRN1911] Vertical CPU Polarization Support Stage 2
This bug is awaiting verification that the linux- hwe-6.11/6.11.0-9.9~24.04.1 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-noble-linux- hwe-6.11' to 'verification-done-noble-linux-hwe-6.11'. If the problem still exists, change the tag 'verification-needed-noble-linux-hwe-6.11' to 'verification-failed-noble-linux-hwe-6.11'. 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: kernel-spammed-noble-linux-hwe-6.11-v2 verification-needed-noble-linux-hwe-6.11 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2072760 Title: [24.10 FEAT] [KRN1911] Vertical CPU Polarization Support Stage 2 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu-z-systems/+bug/2072760/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084831] Re: xdiagnose_3.8.10ubuntu0.1 fails to install
This has also been reported in Bug #2083754 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084831 Title: xdiagnose_3.8.10ubuntu0.1 fails to install To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/xdiagnose/+bug/2084831/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084698] Re: Apparmor profile policy permstable32 component is missing in Jammy 6.8 kernel
** Also affects: livecd-rootfs (Ubuntu Jammy) Importance: Undecided Status: New ** Also affects: livecd-rootfs (Ubuntu Noble) 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/2084698 Title: Apparmor profile policy permstable32 component is missing in Jammy 6.8 kernel To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/livecd-rootfs/+bug/2084698/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084895] [NEW] libproxy: gobject-introspection support is disabled
Public bug reported: Currently libproxy is build without gobject-introspection support leading to missing support for different programming language. This leads to application written in vala, python & co not being able to use the correct proxy within such an environment. Please build libproxy with gobject-introspection support enabled. ** Affects: libproxy (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/2084895 Title: libproxy: gobject-introspection support is disabled To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/libproxy/+bug/2084895/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084571] Re: needrestart: container restart is broken
** Changed in: needrestart (Ubuntu Noble) Importance: Undecided => Medium ** Also affects: needrestart (Ubuntu Plucky) Importance: Medium Assignee: Simon Chopin (schopin) Status: 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/2084571 Title: needrestart: container restart is broken To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/needrestart/+bug/2084571/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2064566] Re: nautilus opens only in light mode
probably the issue is also described here: https://askubuntu.com/questions/1530113/nautilus-files-crashes-on-x11-after-upgrade-to-ubuntu-24-10-works-fine-on-way does it happen with wayland as well? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2064566 Title: nautilus opens only in light mode To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/2064566/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084831] Re: xdiagnose_3.8.10ubuntu0.1 fails to install
Bug #2084820 and bug #2084889 are identical, the only difference being the French and German error text. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084831 Title: xdiagnose_3.8.10ubuntu0.1 fails to install To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/xdiagnose/+bug/2084831/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084698] Re: Apparmor profile policy permstable32 component is missing in Jammy 6.8 kernel
** Merge proposal linked: https://code.launchpad.net/~toabctl/livecd-rootfs/+git/livecd-rootfs-1/+merge/475417 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084698 Title: Apparmor profile policy permstable32 component is missing in Jammy 6.8 kernel To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/livecd-rootfs/+bug/2084698/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084898] [NEW] [SRU] incorrect spelling of dalmatian codename
Public bug reported: [Impact] This package provides the codename for the openstack release associate with the series of Ubuntu - it does not impact direct users of the OpenStack packages but does impact automated deployment tooling that uses this package to determine the release. [Test Case] sudo apt install openstack-release $ cat /etc/openstack-release OPENSTACK_CODENAME=dalmation [Regression Potential] Minimal - we're just correcting a spelling however any tooling that also contains the same mis-spelling would be impacted. [Original bug report] The oracular version of this package spells dalmatian -> dalmation. 'ian' is the correct ending. ** Affects: openstack-release (Ubuntu) Importance: High Status: Triaged ** Affects: openstack-release (Ubuntu Oracular) Importance: High Status: Triaged ** Affects: openstack-release (Ubuntu Plucky) Importance: High Status: Triaged ** Also affects: openstack-release (Ubuntu Oracular) Importance: Undecided Status: New ** Also affects: openstack-release (Ubuntu Plucky) Importance: Undecided Status: New ** Changed in: openstack-release (Ubuntu Plucky) Status: New => Triaged ** Changed in: openstack-release (Ubuntu Oracular) Status: New => Triaged ** Changed in: openstack-release (Ubuntu Oracular) Importance: Undecided => High ** Changed in: openstack-release (Ubuntu Plucky) Importance: Undecided => High ** Description changed: + [Impact] + This package provides the codename for the openstack release associate with the series of Ubuntu - it does not impact direct users of the OpenStack packages but does impact automated deployment tooling that uses this package to determine the release. + + [Test Case] + sudo apt install openstack-release + $ cat /etc/openstack-release + OPENSTACK_CODENAME=dalmation + + [Regression Potential] + Minimal - we're just correcting a spelling however any tooling that also contains the same mis-spelling would be impacted. + + [Original bug report] The oracular version of this package spells dalmatian -> dalmation. 'ian' is the correct ending. ** Summary changed: - incorrect spelling of dalmatian codename + [SRU] incorrect spelling of dalmatian codename -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084898 Title: [SRU] incorrect spelling of dalmatian codename To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/openstack-release/+bug/2084898/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084820] Re: package xdiagnose 3.8.10 failed to install/upgrade: impossible d'ouvrir « /usr/lib/systemd/system/failsafe-x.service.dpkg-new »: Aucun fichier ou dossier de ce nom
Status changed to 'Confirmed' because the bug affects multiple users. ** Changed in: xdiagnose (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/2084820 Title: package xdiagnose 3.8.10 failed to install/upgrade: impossible d'ouvrir « /usr/lib/systemd/system/failsafe-x.service.dpkg-new »: Aucun fichier ou dossier de ce nom To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/xdiagnose/+bug/2084820/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2071698] Re: Integrated Sensor Hub (ISH) support for Intel Lunar Lake platform
This bug is awaiting verification that the linux- hwe-6.11/6.11.0-9.9~24.04.1 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-noble-linux- hwe-6.11' to 'verification-done-noble-linux-hwe-6.11'. If the problem still exists, change the tag 'verification-needed-noble-linux-hwe-6.11' to 'verification-failed-noble-linux-hwe-6.11'. 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: kernel-spammed-noble-linux-hwe-6.11-v2 verification-needed-noble-linux-hwe-6.11 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2071698 Title: Integrated Sensor Hub (ISH) support for Intel Lunar Lake platform To manage notifications about this bug go to: https://bugs.launchpad.net/hwe-next/+bug/2071698/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2028253] Re: update apparmor and LSM stacking patch set
This bug is awaiting verification that the linux- hwe-6.11/6.11.0-9.9~24.04.1 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-noble-linux- hwe-6.11' to 'verification-done-noble-linux-hwe-6.11'. If the problem still exists, change the tag 'verification-needed-noble-linux-hwe-6.11' to 'verification-failed-noble-linux-hwe-6.11'. 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: kernel-spammed-noble-linux-hwe-6.11-v2 verification-needed-noble-linux-hwe-6.11 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2028253 Title: update apparmor and LSM stacking patch set To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2028253/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 720638] Re: snmpd crashes with segfault (libnetsnmpmibs.so.15.1.2)
** Changed in: net-snmp (Ubuntu Jammy) Status: Triaged => In Progress -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to the bug report. https://bugs.launchpad.net/bugs/720638 Title: snmpd crashes with segfault (libnetsnmpmibs.so.15.1.2) To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/net-snmp/+bug/720638/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1960841] Re: Make linux-tools-common Provide linux-cpupower
This bug is awaiting verification that the linux- hwe-6.11/6.11.0-9.9~24.04.1 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-noble-linux- hwe-6.11' to 'verification-done-noble-linux-hwe-6.11'. If the problem still exists, change the tag 'verification-needed-noble-linux-hwe-6.11' to 'verification-failed-noble-linux-hwe-6.11'. 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: kernel-spammed-noble-linux-hwe-6.11-v2 verification-needed-noble-linux-hwe-6.11 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1960841 Title: Make linux-tools-common Provide linux-cpupower To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1960841/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2074049] Re: please help enable more EROFS compression algorithms
This bug is awaiting verification that the linux- hwe-6.11/6.11.0-9.9~24.04.1 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-noble-linux- hwe-6.11' to 'verification-done-noble-linux-hwe-6.11'. If the problem still exists, change the tag 'verification-needed-noble-linux-hwe-6.11' to 'verification-failed-noble-linux-hwe-6.11'. 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: kernel-spammed-noble-linux-hwe-6.11-v2 verification-needed-noble-linux-hwe-6.11 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2074049 Title: please help enable more EROFS compression algorithms To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2074049/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2025265] Re: Remove non-LPAE kernel flavor
This bug is awaiting verification that the linux- hwe-6.11/6.11.0-9.9~24.04.1 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-noble-linux- hwe-6.11' to 'verification-done-noble-linux-hwe-6.11'. If the problem still exists, change the tag 'verification-needed-noble-linux-hwe-6.11' to 'verification-failed-noble-linux-hwe-6.11'. 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: kernel-spammed-noble-linux-hwe-6.11-v2 verification-needed-noble-linux-hwe-6.11 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2025265 Title: Remove non-LPAE kernel flavor To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2025265/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2062951] Re: Random flickering with Intel i915 (Gen9 GPUs in 6th-8th gen CPUs) on Linux 6.8
This bug is awaiting verification that the linux- hwe-6.11/6.11.0-9.9~24.04.1 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-noble-linux- hwe-6.11' to 'verification-done-noble-linux-hwe-6.11'. If the problem still exists, change the tag 'verification-needed-noble-linux-hwe-6.11' to 'verification-failed-noble-linux-hwe-6.11'. 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: kernel-spammed-noble-linux-hwe-6.11-v2 verification-needed-noble-linux-hwe-6.11 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2062951 Title: Random flickering with Intel i915 (Gen9 GPUs in 6th-8th gen CPUs) on Linux 6.8 To manage notifications about this bug go to: https://bugs.launchpad.net/linux/+bug/2062951/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2073881] Re: gnome-terminal stopped accepting arguments: # Failed to parse arguments: Too many arguments
Ok, I think I've fixed it. Please bear with me if the fix is not perfect / there's something wrong with it that I've missed, I'm no Python developer nor I've ever developed for GNOME projects. Here's the patch: --- /usr/bin/gnome-terminal 2024-09-16 15:44:46.0 +0200 +++ gnome-terminal 2024-10-18 19:04:30.926428246 +0200 @@ -39,10 +39,8 @@ def server_appeared(self, con, name, owner): # start gnome-terminal now - Gio.Subprocess.new(['/usr/bin/gnome-terminal.real', - '--app-id', name] + - self.args, - Gio.SubprocessFlags.NONE) + self.args[1:1]=['--app-id', name] + Gio.Subprocess.new(self.args, Gio.SubprocessFlags.NONE) def spawn_terminal_server(self, name, cls): args = ['/usr/libexec/gnome-terminal-server', The issue is with a superflous argument during the invocation of `gnome-terminal.real` (as Egmont Koblinger mentioned) *and* with how arguments are ordered before the invocation; self.args already contains `/usr/bin/gnome-terminal.real` (along with the list of arguments), so the fix is to *not* inject another `/usr/bin/gnome-terminal.real` + `--app-id=name` at the start of the argument list and rather inject just `--app-id=name` after the first element in self.args (hence after `/usr/bin/gnome-terminal.real`). I haven't tested this extensively, but after the patch I can succesfully start the server and invoke new instances passing `--class`. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2073881 Title: gnome-terminal stopped accepting arguments: # Failed to parse arguments: Too many arguments To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gnome-terminal/+bug/2073881/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2072165] Re: Bismuth fails when using binary installation
I had this issue, and thankfully the above suggestions got it - almost - working on latest Kubuntu 24.04.1 (KDE 5.27.11). However shortcuts don't show up and thus I am not able to issue any tiling commands, even after enabling the tiling checkbox. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2072165 Title: Bismuth fails when using binary installation To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/bismuth/+bug/2072165/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2077225] Re: Ubuntu bootup is slow
[Expired for plymouth (Ubuntu) because there has been no activity for 60 days.] ** Changed in: plymouth (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/2077225 Title: Ubuntu bootup is slow To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/chromium/+bug/2077225/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2077225] Re: Ubuntu bootup is slow
[Expired for chromium (Ubuntu) because there has been no activity for 60 days.] ** Changed in: chromium (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/2077225 Title: Ubuntu bootup is slow To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/chromium/+bug/2077225/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2077281] Re: package php8.1-fpm 8.1.2-1ubuntu2.18 failed to install/upgrade: »installiertes php8.1-fpm-Skript des Paketes post-installation«-Unterprozess gab den Fehlerwert 1 zurück
[Expired for php8.1 (Ubuntu) because there has been no activity for 60 days.] ** Changed in: php8.1 (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/2077281 Title: package php8.1-fpm 8.1.2-1ubuntu2.18 failed to install/upgrade: »installiertes php8.1-fpm-Skript des Paketes post- installation«-Unterprozess gab den Fehlerwert 1 zurück To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/php8.1/+bug/2077281/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2071550] Re: Binary packages missing
** Changed in: 0ad (Debian) Status: Unknown => 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/2071550 Title: Binary packages missing To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/0ad/+bug/2071550/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084948] [NEW] I am facing very slowness after ubuntu 22 update
Public bug reported: ctrl + shift + A capture only logs within the window size only I am unable to copy the logs ProblemType: Bug DistroRelease: Ubuntu 22.04 Package: gnome-terminal 3.44.0-1ubuntu1 ProcVersionSignature: Ubuntu 6.8.0-45.45~22.04.1-generic 6.8.12 Uname: Linux 6.8.0-45-generic x86_64 ApportVersion: 2.20.11-0ubuntu82.6 Architecture: amd64 CasperMD5CheckResult: unknown CurrentDesktop: ubuntu:GNOME Date: Fri Oct 18 15:45:40 2024 InstallationDate: Installed on 2024-08-26 (53 days ago) InstallationMedia: Ubuntu 22.04.4 LTS "Jammy Jellyfish" - Release amd64 (20240220) RebootRequiredPkgs: Error: path contained symlinks. SourcePackage: gnome-terminal UpgradeStatus: No upgrade log present (probably fresh install) ** Affects: gnome-terminal (Ubuntu) Importance: Undecided Status: New ** Tags: amd64 apport-bug jammy wayland-session ** Attachment added: "select all text in the logs" https://bugs.launchpad.net/bugs/2084948/+attachment/5829642/+files/Screenshot%20from%202024-10-18%2015-48-51.png -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084948 Title: I am facing very slowness after ubuntu 22 update To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gnome-terminal/+bug/2084948/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084947] Re: package tzdata 2024a-0ubuntu0.22.04.1 failed to install/upgrade: installed tzdata package post-installation script subprocess returned error exit status 10
Thank you for taking the time to report this bug and helping to make Ubuntu better. What is the output of following command: ``` ls -l /etc/localtime ``` -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084947 Title: package tzdata 2024a-0ubuntu0.22.04.1 failed to install/upgrade: installed tzdata package post-installation script subprocess returned error exit status 10 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/tzdata/+bug/2084947/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084947] Re: package tzdata 2024a-0ubuntu0.22.04.1 failed to install/upgrade: installed tzdata package post-installation script subprocess returned error exit status 10
** Package changed: ubuntu => tzdata (Ubuntu) ** 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/2084947 Title: package tzdata 2024a-0ubuntu0.22.04.1 failed to install/upgrade: installed tzdata package post-installation script subprocess returned error exit status 10 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/tzdata/+bug/2084947/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084839] Re: Settings app slows down and freezes on Appearance tab
** Attachment added: "Logs from Sysprof" https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/2084839/+attachment/5829611/+files/Screenshot%20From%202024-10-18%2020-38-42.png -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084839 Title: Settings app slows down and freezes on Appearance tab To manage notifications about this bug go to: https://bugs.launchpad.net/gnome-control-center/+bug/2084839/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084942] Re: Bildschirm bleibt schwarz/flackert im Vollbildmodus
** Package changed: ubuntu => xorg (Ubuntu) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084942 Title: Bildschirm bleibt schwarz/flackert im Vollbildmodus To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/2084942/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2052834] Please test proposed package
Hello Mark, or anyone else affected, Accepted landscape-client into jammy-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/landscape- client/23.02-0ubuntu1~22.04.4 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See https://wiki.ubuntu.com/Testing/EnableProposed for documentation on how to enable and use -proposed. Your feedback will aid us getting this update out to other Ubuntu users. If this package fixes the bug for you, please add a comment to this bug, mentioning the version of the package you tested, what testing has been performed on the package and change the tag from verification-needed- jammy to verification-done-jammy. If it does not fix the bug for you, please add a comment stating that, and change the tag to verification- failed-jammy. In either case, without details of your testing we will not be able to proceed. Further information regarding the verification process can be found at https://wiki.ubuntu.com/QATeam/PerformingSRUVerification . Thank you in advance for helping! N.B. The updated package will be released to -updates after the bug(s) fixed by this package have been verified and the package has been in -proposed for a minimum of 7 days. ** Changed in: landscape-client (Ubuntu Focal) Status: New => Fix Committed ** Tags added: verification-needed-focal -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2052834 Title: Incomplete network info showing in both web and API :: landscape- server 23.03 To manage notifications about this bug go to: https://bugs.launchpad.net/landscape/+bug/2052834/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084698] Re: Apparmor profile policy permstable32 component is missing in Jammy 6.8 kernel
** Changed in: livecd-rootfs (Ubuntu Jammy) Assignee: (unassigned) => Jess Jang (jessica-youjeong) ** Changed in: livecd-rootfs (Ubuntu Jammy) Status: New => 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/2084698 Title: Apparmor profile policy permstable32 component is missing in Jammy 6.8 kernel To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/livecd-rootfs/+bug/2084698/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2071550] Re: Binary packages missing
The fixes were merged in Debian, and 0.0.26-6 was uploaded to unstable. ** Bug watch added: Debian Bug tracker #1085385 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1085385 ** Also affects: 0ad (Debian) via https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1085385 Importance: Unknown Status: Unknown -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2071550 Title: Binary packages missing To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/0ad/+bug/2071550/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2028153] Re: [SRU] dh-cargo: Backport vendored dependencies support to Jammy
This says it's needed for jammy but it doesn't say what the status is for noble, please clarify. ** Changed in: dh-cargo (Ubuntu) Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2028153 Title: [SRU] dh-cargo: Backport vendored dependencies support to Jammy To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/dh-cargo/+bug/2028153/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084206] Re: [SRu] Dolphin 24.08.1 has lost its Information Panel
** Tags removed: verification-needed ** Tags added: verification-done -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084206 Title: [SRu] Dolphin 24.08.1 has lost its Information Panel To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/dolphin/+bug/2084206/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084945] Re: PS Ethernet does not get a DHCP address at boot with latest Ubuntu 24.04 Image
I am also seeing this issue with the x04 image on my KV260 board. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084945 Title: PS Ethernet does not get a DHCP address at boot with latest Ubuntu 24.04 Image To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux-xilinx-zynqmp/+bug/2084945/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084947] [NEW] package tzdata 2024a-0ubuntu0.22.04.1 failed to install/upgrade: installed tzdata package post-installation script subprocess returned error exit status 10
Public bug reported: Received the following error while upgrading... dpkg: error processing package cloud-init (--configure): dependency problems - leaving unconfigured Errors were encountered while processing: tzdata ubuntu-minimal chrony python3-tz python3-babel python3-jinja2 cloud-init Upgrade complete The upgrade has completed but there were errors during the upgrade process. ProblemType: Package DistroRelease: Ubuntu 22.04 Package: tzdata 2024a-0ubuntu0.22.04.1 ProcVersionSignature: Ubuntu 5.15.0-1070.78~20.04.1-gcp 5.15.163 Uname: Linux 5.15.0-1070-gcp x86_64 ApportVersion: 2.20.11-0ubuntu82.6 Architecture: amd64 CasperMD5CheckResult: unknown CloudArchitecture: x86_64 CloudID: gce CloudName: gce CloudPlatform: gce CloudRegion: us-east1 CloudSubPlatform: metadata (http://metadata.google.internal/computeMetadata/v1/) Date: Fri Oct 18 18:03:01 2024 DuplicateSignature: package:tzdata:2024a-0ubuntu0.22.04.1 Setting up tzdata (2024a-0ubuntu0.22.04.1) ... dpkg: error processing package tzdata (--configure): installed tzdata package post-installation script subprocess returned error exit status 10 ErrorMessage: installed tzdata package post-installation script subprocess returned error exit status 10 PackageArchitecture: all Python3Details: /usr/bin/python3.10, Python 3.10.12, python3-minimal, 3.10.6-1~22.04.1 PythonDetails: N/A RebootRequiredPkgs: Error: path contained symlinks. RelatedPackageVersions: dpkg 1.21.1ubuntu2.3 apt 2.4.13 SourcePackage: tzdata Title: package tzdata 2024a-0ubuntu0.22.04.1 failed to install/upgrade: installed tzdata package post-installation script subprocess returned error exit status 10 UpgradeStatus: Upgraded to jammy on 2024-10-18 (0 days ago) ** Affects: tzdata (Ubuntu) Importance: Undecided Status: New ** Tags: amd64 apport-package jammy uec-images -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084947 Title: package tzdata 2024a-0ubuntu0.22.04.1 failed to install/upgrade: installed tzdata package post-installation script subprocess returned error exit status 10 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/tzdata/+bug/2084947/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084706] Re: Add Plucky as a known Ubuntu distribution
= Oracular verification: passed = Baseline results in a fresh LXD container - # lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description:Ubuntu 24.10 Release:24.10 Codename: oracular # dpkg -s vim | grep Version Version: 2:9.1.0496-1ubuntu6 # apt update && apt -y install devscripts # dget -u https://launchpad.net/ubuntu/plucky/+upload/34546457/+files/skanlite_24.08.2-1ubuntu1.dsc dget: retrieving https://launchpad.net/ubuntu/plucky/+upload/34546457/+files/skanlite_24.08.2-1ubuntu1.dsc % Total% Received % Xferd Average Speed TimeTime Time Current Dload Upload Total SpentLeft Speed 0 00 00 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 2721 100 27210 0 2903 0 --:--:-- --:--:-- --:--:-- 2903 dget: retrieving https://launchpad.net/ubuntu/plucky/+upload/34546457/+files/skanlite_24.08.2.orig.tar.xz % Total% Received % Xferd Average Speed TimeTime Time Current Dload Upload Total SpentLeft Speed 0 00 00 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 2328k 100 2328k0 0 984k 0 0:00:02 0:00:02 --:--:-- 2725k dget: retrieving https://launchpad.net/ubuntu/plucky/+upload/34546457/+files/skanlite_24.08.2.orig.tar.xz.asc % Total% Received % Xferd Average Speed TimeTime Time Current Dload Upload Total SpentLeft Speed 0 00 00 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 833 100 8330 0884 0 --:--:-- --:--:-- --:--:-- 884 dget: retrieving https://launchpad.net/ubuntu/plucky/+upload/34546457/+files/skanlite_24.08.2-1ubuntu1.debian.tar.xz % Total% Received % Xferd Average Speed TimeTime Time Current Dload Upload Total SpentLeft Speed 0 00 00 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 15504 100 155040 0 12717 0 0:00:01 0:00:01 --:--:-- 0 dpkg-source: info: extracting skanlite in skanlite-24.08.2 dpkg-source: info: unpacking skanlite_24.08.2.orig.tar.xz dpkg-source: info: unpacking skanlite_24.08.2-1ubuntu1.debian.tar.xz # cd skanlite-24.08.2/ skanlite-24.08.2# vim debian/changelog This shows plucky highlighted in red. Results with package in -proposed - # dpkg -s vim | grep Version Version: 2:9.1.0496-1ubuntu6.1 skanlite-24.08.2# vim debian/changelog This no longer shows plucky highlighted in red. ** Tags removed: verification-needed-oracular ** Tags added: verification-done-oracular -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084706 Title: Add Plucky as a known Ubuntu distribution To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/vim/+bug/2084706/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084706] Re: Add Plucky as a known Ubuntu distribution
= Noble verification: passed = Baseline results in a fresh LXD container - # lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description:Ubuntu 24.04.1 LTS Release:24.04 Codename: noble # dpkg -s vim | grep Version Version: 2:9.1.0016-1ubuntu7.3 # apt update && apt -y install devscripts # dget -u https://launchpad.net/ubuntu/plucky/+upload/34546457/+files/skanlite_24.08.2-1ubuntu1.dsc dget: retrieving https://launchpad.net/ubuntu/plucky/+upload/34546457/+files/skanlite_24.08.2-1ubuntu1.dsc % Total% Received % Xferd Average Speed TimeTime Time Current Dload Upload Total SpentLeft Speed 0 00 00 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 2721 100 27210 0 2181 0 0:00:01 0:00:01 --:--:-- 2181 dget: retrieving https://launchpad.net/ubuntu/plucky/+upload/34546457/+files/skanlite_24.08.2.orig.tar.xz % Total% Received % Xferd Average Speed TimeTime Time Current Dload Upload Total SpentLeft Speed 0 00 00 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 2328k 100 2328k0 0 831k 0 0:00:02 0:00:02 --:--:-- 1652k dget: retrieving https://launchpad.net/ubuntu/plucky/+upload/34546457/+files/skanlite_24.08.2.orig.tar.xz.asc % Total% Received % Xferd Average Speed TimeTime Time Current Dload Upload Total SpentLeft Speed 0 00 00 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 833 100 8330 0893 0 --:--:-- --:--:-- --:--:-- 3332 dget: retrieving https://launchpad.net/ubuntu/plucky/+upload/34546457/+files/skanlite_24.08.2-1ubuntu1.debian.tar.xz % Total% Received % Xferd Average Speed TimeTime Time Current Dload Upload Total SpentLeft Speed 0 00 00 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 15504 100 155040 0 13397 0 0:00:01 0:00:01 --:--:-- 13397 dpkg-source: info: extracting skanlite in skanlite-24.08.2 dpkg-source: info: unpacking skanlite_24.08.2.orig.tar.xz dpkg-source: info: unpacking skanlite_24.08.2-1ubuntu1.debian.tar.xz # cd skanlite-24.08.2/ skanlite-24.08.2# vim debian/changelog This shows plucky highlighted in red. Results with package in -proposed - # dpkg -s vim | grep Version Version: 2:9.1.0016-1ubuntu7.4 skanlite-24.08.2# vim debian/changelog This no longer shows plucky highlighted in red. ** Tags removed: verification-needed-noble ** Tags added: verification-done-noble -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084706 Title: Add Plucky as a known Ubuntu distribution To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/vim/+bug/2084706/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2083022] Re: [SRU] Fix AST DP output after resume
** Changed in: linux (Ubuntu Noble) Status: In Progress => Fix Committed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2083022 Title: [SRU] Fix AST DP output after resume To manage notifications about this bug go to: https://bugs.launchpad.net/hwe-next/+bug/2083022/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084838] Re: snapd 2.65.3+22.04 fails systemd-analyze verify
The same happens to me, with the same equipment. Ubuntu 22.04.5 Lts It's the same error. I do not know if it is because the snapd to do sudo info snapd tells you that the stable is the 2.63 and the rest candidates etc, is 2.66 I do not know if it is because when you do the sudo apt update I got, has a package to update see apt upgradable and then to give, the first time in sudo apt upgrade, told me it was snapd, but was retained, the next day, told me it was not retained, and 2.65.3+22.04 was installed. And on top of that it tells you with the command, SNAPD_DEBUG=1 snap version 2024/10/18 16:24:46.064417 logger.go:99: DEBUG: snap (at “/snap/snapd/current”) is older (“2.63”) than distribution package (“2.65.3+22.04”) snap 2.65.3+22.04 snapd 2.65.3+22.04 snapd 2.65.3+22.04 ubuntu 22.04 kernel 6.8.0-47-generic What do we do with this issue? It is telling you that we have 2.63 is old, for the distribution of the package. But the issue goes further, the snapcraft.io roadmap says: snapd 2.65.3 Fix missing aux info from store on snap setup Bump squashfuse from version 0.5.0 to 0.5.2 (used in snapd deb only) beta 13 September 2024 candidate 18 September 2024 stable 8 October 2024 - HIGH IMPACT BUG - REVERTED TO SNAPD 2.63 So the stable does not exist, and yet on the website https://launchpad.net/ubuntu/jammy/+source/snapd You get this: Published versions Release The versions of the packages that were released at the time of the distribution release. snapd 2.55.3+22.04 (main) Security Versions of packages that contain security fixes for the released distribution. It is a good idea to have security updates enabled for your system. snapd 2.63+22.04ubuntu0.1 (main) Updates Package releases that include new features after the release of the distribution. Updates are usually enabled by default after a new installation. snapd 2.65.3+22.04 (main) -- You are updating a snap deb package, which is not even stable. Because if you go to https://launchpad.net/snapd/trunk and go to Milestones and releases, it tells you that 2.65.3 is not available yet: Milestones and releases 1 → 58 of 58 results First - Previous - Next - Last Expected Version Release Summary snapd 2.66 None not yet released Bugs targeted: 2 Fix Committed snapd 2.65.3 None not yet released snapd 2.65 None not yet released Bugs targeted: 1 Fix Committed snapd 2.64 None This is an inactive milestone This release has been abandoned due to lack of time. snapd 2.63.1 None not yet released Maintenance release for Oracular/Noble Detected bugs: 1 In progress snapd 2.63 None 2024-05-22 I think this should be reviewed, I do not blame anyone, but why insist on 2.65 and its derivatives snapd 2.65.1, .2 and .3, if they have only given big problems, and even the 2.64 was abandoned, why not wait to put the 2.66, which said the snapcraft.io roadmap, that on October 16 would have the candidate and October 25 the stable. As an Ubuntu user since 9.04, and snap since its release, it seems to me to play with respect with the user's patience, because he fears that he will not be able to use his computer, since the programs come through snap. And as Nick Waller says, who is the one who opened this bug, just turn on the pc, if you go to the gnome logs and look for snap the first thing that will come out is the error he mentions: /lib/systemd/system/snapd.service:23: Unknown key name 'RestartMode' in section 'Service', ignoring. The only thing I can contribute, is that with a minipc with Ubuntu 20.04.06 lts, it seems to go well, because I update a snap, having that error that Nick mentions, and it works fine, but you can not be with a version if you put snap info snapd, which puts as stable the 2.63 and candidates betas etc, the 2.66, and by apt tell you install the deb, 2.65.3 as update package is nonsense. And is that the store also tells you that the stable is 2.63 and the rest to come is 2.66. Any solution, can anyone contribute something, to help the ordinary user? Thanks for all. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084838 Title: snapd 2.65.3+22.04 fails systemd-analyze verify To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/snapd/+bug/2084838/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2079966] Re: tzdata 2024b release
Hello Benjamin, or anyone else affected, Accepted tzdata into oracular-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/tzdata/2024b-1ubuntu2 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See https://wiki.ubuntu.com/Testing/EnableProposed for documentation on how to enable and use -proposed. Your feedback will aid us getting this update out to other Ubuntu users. If this package fixes the bug for you, please add a comment to this bug, mentioning the version of the package you tested, what testing has been performed on the package and change the tag from verification-needed- oracular to verification-done-oracular. If it does not fix the bug for you, please add a comment stating that, and change the tag to verification-failed-oracular. In either case, without details of your testing we will not be able to proceed. Further information regarding the verification process can be found at https://wiki.ubuntu.com/QATeam/PerformingSRUVerification . Thank you in advance for helping! N.B. The updated package will be released to -updates after the bug(s) fixed by this package have been verified and the package has been in -proposed for a minimum of 7 days. ** Tags added: verification-needed verification-needed-oracular -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2079966 Title: tzdata 2024b release To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/tzdata/+bug/2079966/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084493] Re: thinkpad having issues with freeze after boot
Ok. tkanks for the explanation -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084493 Title: thinkpad having issues with freeze after boot To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2084493/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084706] Re: Add Plucky as a known Ubuntu distribution
= Jammy verification: passed = Baseline results in a fresh LXD container - # lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 22.04.5 LTS Release: 22.04 Codename: jammy # dpkg -s vim | grep Version Version: 2:8.2.3995-1ubuntu2.19 # apt update && apt -y install devscripts # dget -u https://launchpad.net/ubuntu/plucky/+upload/34546457/+files/skanlite_24.08.2-1ubuntu1.dsc dget: retrieving https://launchpad.net/ubuntu/plucky/+upload/34546457/+files/skanlite_24.08.2-1ubuntu1.dsc % Total% Received % Xferd Average Speed TimeTime Time Current Dload Upload Total SpentLeft Speed 0 00 00 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 2721 100 27210 0 1234 0 0:00:02 0:00:02 --:--:-- 2429 dget: retrieving https://launchpad.net/ubuntu/plucky/+upload/34546457/+files/skanlite_24.08.2.orig.tar.xz % Total% Received % Xferd Average Speed TimeTime Time Current Dload Upload Total SpentLeft Speed 0 00 00 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 2328k 100 2328k0 0 556k 0 0:00:04 0:00:04 --:--:-- 707k dget: retrieving https://launchpad.net/ubuntu/plucky/+upload/34546457/+files/skanlite_24.08.2.orig.tar.xz.asc % Total% Received % Xferd Average Speed TimeTime Time Current Dload Upload Total SpentLeft Speed 0 00 00 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 833 100 8330 0596 0 0:00:01 0:00:01 --:--:-- 596 dget: retrieving https://launchpad.net/ubuntu/plucky/+upload/34546457/+files/skanlite_24.08.2-1ubuntu1.debian.tar.xz % Total% Received % Xferd Average Speed TimeTime Time Current Dload Upload Total SpentLeft Speed 0 00 00 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 15504 100 155040 0 9920 0 0:00:01 0:00:01 --:--:-- 46698 dpkg-source: info: extracting skanlite in skanlite-24.08.2 dpkg-source: info: unpacking skanlite_24.08.2.orig.tar.xz dpkg-source: info: unpacking skanlite_24.08.2-1ubuntu1.debian.tar.xz # cd skanlite-24.08.2/ skanlite-24.08.2# vim debian/changelog This shows plucky highlighted in red. Results with package in -proposed - # dpkg -s vim | grep Version Version: 2:8.2.3995-1ubuntu2.20 skanlite-24.08.2# vim debian/changelog This no longer shows plucky highlighted in red. ** Tags removed: verification-needed-jammy ** Tags added: verification-done-jammy -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084706 Title: Add Plucky as a known Ubuntu distribution To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/vim/+bug/2084706/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084839] Re: Settings app slows down and freezes on Appearance tab
I've linked a Debian bug & its upstream link that sounds to me like it's the same issue. ** Bug watch added: Debian Bug tracker #1079580 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1079580 ** Also affects: gnome-control-center (Debian) via https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1079580 Importance: Unknown Status: Unknown ** Bug watch added: gitlab.gnome.org/GNOME/gnome-control-center/-/issues #3198 https://gitlab.gnome.org/GNOME/gnome-control-center/-/issues/3198 ** Also affects: gnome-control-center via https://gitlab.gnome.org/GNOME/gnome-control-center/-/issues/3198 Importance: Unknown Status: Unknown -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084839 Title: Settings app slows down and freezes on Appearance tab To manage notifications about this bug go to: https://bugs.launchpad.net/gnome-control-center/+bug/2084839/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084045] Re: far2ledit command fails to open files in /etc
Hello Unxed, or anyone else affected, Accepted far2l into oracular-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/far2l/2.6.3~beta+ds-1ubuntu4.1 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See https://wiki.ubuntu.com/Testing/EnableProposed for documentation on how to enable and use -proposed. Your feedback will aid us getting this update out to other Ubuntu users. If this package fixes the bug for you, please add a comment to this bug, mentioning the version of the package you tested, what testing has been performed on the package and change the tag from verification-needed- oracular to verification-done-oracular. If it does not fix the bug for you, please add a comment stating that, and change the tag to verification-failed-oracular. In either case, without details of your testing we will not be able to proceed. Further information regarding the verification process can be found at https://wiki.ubuntu.com/QATeam/PerformingSRUVerification . Thank you in advance for helping! N.B. The updated package will be released to -updates after the bug(s) fixed by this package have been verified and the package has been in -proposed for a minimum of 7 days. ** Changed in: far2l (Ubuntu Oracular) Status: New => Fix Committed ** Tags added: verification-needed verification-needed-oracular -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084045 Title: far2ledit command fails to open files in /etc To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/far2l/+bug/2084045/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2084911] [NEW] Sync python-json-pointer 2.4-2 (main) from Debian unstable (main)
Public bug reported: Please sync python-json-pointer 2.4-2 (main) from Debian unstable (main) Explanation of the Ubuntu delta and why it can be dropped: * New upstream version. There is no Ubuntu specific change in the package its just a new upstream release. And Debian now has an updated version. It has been built in a PPA and the build log can be seen at: https://launchpad.net/~sudipmuk/+archive/ubuntu/merge-test/+build/29170086 Changelog entries since current plucky version 2.0-0ubuntu1: python-json-pointer (2.4-2) unstable; urgency=medium * Uploading to unstable. -- Thomas Goirand Wed, 03 Apr 2024 16:15:50 +0200 python-json-pointer (2.4-1) experimental; urgency=medium * New upstream release. -- Thomas Goirand Fri, 23 Feb 2024 13:39:15 +0100 python-json-pointer (2.3-3) unstable; urgency=medium * Cleans better (Closes: #1046832). -- Thomas Goirand Fri, 18 Aug 2023 10:48:20 +0200 python-json-pointer (2.3-2) unstable; urgency=medium * Uploading to unstable. -- Thomas Goirand Fri, 23 Sep 2022 11:59:14 +0200 python-json-pointer (2.3-1) experimental; urgency=medium * New upstream release. -- Thomas Goirand Tue, 30 Aug 2022 15:10:56 +0200 python-json-pointer (2.2-2) unstable; urgency=medium * Uploading to unstable. -- Thomas Goirand Thu, 24 Mar 2022 11:49:06 +0100 python-json-pointer (2.2-1) experimental; urgency=medium * New upstream release. -- Thomas Goirand Tue, 15 Feb 2022 17:28:29 +0100 python-json-pointer (2.1-3) unstable; urgency=medium * Add Multi-Arch: foreign to the binary packages (Closes: #983957). -- Thomas Goirand Tue, 28 Dec 2021 18:09:58 +0100 python-json-pointer (2.1-2) unstable; urgency=medium * Uploading to unstable. -- Thomas Goirand Thu, 30 Sep 2021 15:27:46 +0200 python-json-pointer (2.1-1) experimental; urgency=medium * New upstream release. -- Thomas Goirand Wed, 25 Aug 2021 09:28:37 +0200 python-json-pointer (2.0-2) unstable; urgency=medium * Uploading to unstable. -- Thomas Goirand Fri, 08 May 2020 11:01:02 +0200 python-json-pointer (2.0-1) experimental; urgency=medium [ Ondřej Nový ] * Run wrap-and-sort -bastk. [ Michal Arbet ] * New upstream version * d/copyright: Add me to copyright * d/control: - Add me to uploaders - Bump standards to 4.5.0 - Bump debhelper-compat to 11 -- Michal Arbet Tue, 05 May 2020 10:37:52 +0200 ** Affects: python-json-pointer (Ubuntu) Importance: Wishlist Status: New ** Changed in: python-json-pointer (Ubuntu) Importance: Undecided => Wishlist -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2084911 Title: Sync python-json-pointer 2.4-2 (main) from Debian unstable (main) To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/python-json-pointer/+bug/2084911/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs