[Bug 2069488] [NEW] package snapd (not installed) failed to install/upgrade: installed snapd package post-removal script subprocess returned error exit status 1
Public bug reported: I have run this command to improve my boot time. Startup finished in 6.454s (firmware) + 2.977s (loader) + 29.695s (kernel) + 1min 28.443s (userspace) = 2min 7.571s So i have run the below command to improve the boot time to screen. sudo apt purge -y snapd && rm -rf ~/snap && sudo rm -rf /snap && sudo rm -rf /var/snap && sudo rm -rf /var/lib/snapd && sudo apt-mark hold snap It got improved and however i am getting this below issue once i signed in package snapd (not installed) failed to install/upgrade: installed snapd package post-removal script subprocess returned error exit status 1 Description:Ubuntu 22.04.4 LTS Release:22.04 Codename: jammy What i need to do now? Regards, Venkatesh.S ProblemType: Package DistroRelease: Ubuntu 22.04 Package: snapd (not installed) ProcVersionSignature: Ubuntu 6.5.0-35.35~22.04.1-generic 6.5.13 Uname: Linux 6.5.0-35-generic x86_64 ApportVersion: 2.20.11-0ubuntu82.5 AptOrdering: snapd:amd64: Purge NULL: ConfigurePending NULL: PurgePending NULL: ConfigurePending Architecture: amd64 CasperMD5CheckResult: unknown Date: Sat Jun 8 17:10:53 2024 ErrorMessage: installed snapd package post-removal script subprocess returned error exit status 1 InstallationDate: Installed on 2022-11-20 (572 days ago) InstallationMedia: Ubuntu 20.04.3 LTS "Focal Fossa" - Release amd64 (20210819) Python3Details: /usr/bin/python3.10, Python 3.10.12, python3-minimal, 3.10.6-1~22.04 PythonDetails: N/A RelatedPackageVersions: dpkg 1.21.1ubuntu2.3 apt 2.4.12 SourcePackage: snapd Title: package snapd (not installed) failed to install/upgrade: installed snapd package post-removal script subprocess returned error exit status 1 UpgradeStatus: Upgraded to jammy on 2022-11-28 (565 days ago) ** Affects: snapd (Ubuntu) Importance: Undecided Status: New ** Tags: amd64 apport-package jammy -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2069488 Title: package snapd (not installed) failed to install/upgrade: installed snapd package post-removal script subprocess returned error exit status 1 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/snapd/+bug/2069488/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2069489] [NEW] panel icons don't respond to touch screen
Public bug reported: using a touchscreen, you can activate the panel icons buy tapping the battery icon on the dock, but once the panel appears to turn on / of things like Auto Rotate, Airplane Mode, Bluetooth, Wifi, etc - touch screen stops responding so I cannot tap any icons or any other part of the screen to make changes or hide the panel. This makes touchscreens unusable ProblemType: Bug DistroRelease: Ubuntu 24.04 Package: gnome (not installed) ProcVersionSignature: Ubuntu 6.8.0-31.31-generic 6.8.1 Uname: Linux 6.8.0-31-generic x86_64 NonfreeKernelModules: zfs ApportVersion: 2.28.1-0ubuntu2 Architecture: amd64 CasperMD5CheckResult: pass CasperVersion: 1.498 CloudArchitecture: x86_64 CloudID: nocloud CloudName: unknown CloudPlatform: nocloud CloudSubPlatform: seed-dir (/var/lib/cloud/seed/nocloud) CurrentDesktop: ubuntu:GNOME Date: Sat Jun 15 07:17:15 2024 LiveMediaBuild: Ubuntu 24.04 LTS "Noble Numbat" - Release amd64 (20240424) ProcEnviron: LANG=C.UTF-8 PATH=(custom, no user) SHELL=/bin/bash TERM=xterm-256color XDG_RUNTIME_DIR= SourcePackage: meta-gnome3 UpgradeStatus: No upgrade log present (probably fresh install) ** Affects: meta-gnome3 (Ubuntu) Importance: Undecided Status: New ** Tags: amd64 apport-bug noble -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2069489 Title: panel icons don't respond to touch screen To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/meta-gnome3/+bug/2069489/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1786013] Autopkgtest regression report (linux-meta-lowlatency/5.15.0.115.105)
All autopkgtests for the newly accepted linux-meta-lowlatency (5.15.0.115.105) for jammy have finished running. The following regressions have been reported in tests triggered by the package: glibc/unknown (arm64) langford/unknown (arm64) linux-lowlatency/5.15.0-115.125 (amd64, arm64) wireguard-linux-compat/1.0.20210606-1 (arm64) Please visit the excuses page listed below and investigate the failures, proceeding afterwards as per the StableReleaseUpdates policy regarding autopkgtest regressions [1]. https://people.canonical.com/~ubuntu-archive/proposed- migration/jammy/update_excuses.html#linux-meta-lowlatency [1] https://wiki.ubuntu.com/StableReleaseUpdates#Autopkgtest_Regressions Thank you! -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1786013 Title: Packaging resync To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1786013/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2052929]
The releases/gcc-12 branch has been updated by Jakub Jelinek : https://gcc.gnu.org/g:9987fe67cf6211515d8ebf6528cc83c77dfb5bf3 commit r12-10517-g9987fe67cf6211515d8ebf6528cc83c77dfb5bf3 Author: Jakub Jelinek Date: Wed Apr 3 10:02:35 2024 +0200 libquadmath: Don't assume the storage for __float128 arguments is aligned [PR114533] With the register_printf_type/register_printf_modifier/register_printf_specifier APIs the C library is just told the size of the argument and is provided with a callback to fetch the argument from va_list using va_arg into C library provided memory. The C library isn't told what alignment requirement it has, but we were using direct load of a __float128 value from that memory which assumes __alignof (__float128) alignment. The following patch fixes that by using memcpy instead. I haven't been able to reproduce an actual crash, tried #include #include #include int main () { __float128 r; int prec = 20; int width = 46; char buf[128]; r = 2.0q; r = sqrtq (r); int n = quadmath_snprintf (buf, sizeof buf, "%+-#*.20Qe", width, r); if ((size_t) n < sizeof buf) printf ("%s\n", buf); /* Prints: +1.41421356237309504880e+00 */ quadmath_snprintf (buf, sizeof buf, "%Qa", r); if ((size_t) n < sizeof buf) printf ("%s\n", buf); /* Prints: 0x1.6a09e667f3bcc908b2fb1366ea96p+0 */ n = quadmath_snprintf (NULL, 0, "%+-#46.*Qe", prec, r); if (n > -1) { char *str = malloc (n + 1); if (str) { quadmath_snprintf (str, n + 1, "%+-#46.*Qe", prec, r); printf ("%s\n", str); /* Prints: +1.41421356237309504880e+00 */ } free (str); } printf ("%+-#*.20Qe\n", width, r); printf ("%Qa\n", r); printf ("%+-#46.*Qe\n", prec, r); printf ("%d %Qe %d %Qe %d %Qe\n", 1, r, 2, r, 3, r); return 0; } In any case, I think memcpy for loading from it is right. 2024-04-03 Simon Chopin Jakub Jelinek PR libquadmath/114533 * printf/printf_fp.c (__quadmath_printf_fp): Use memcpy to copy __float128 out of args. * printf/printf_fphex.c (__quadmath_printf_fphex): Likewise. Signed-off-by: Simon Chopin (cherry picked from commit 8455d6f6cd43b7b143ab9ee19437452fceba9cc9) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2052929 Title: failed autopkgtests for evolver vs glibc 2.39 on amd64 To manage notifications about this bug go to: https://bugs.launchpad.net/gcc/+bug/2052929/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2052929]
Should be fixed for 12.4+ too. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2052929 Title: failed autopkgtests for evolver vs glibc 2.39 on amd64 To manage notifications about this bug go to: https://bugs.launchpad.net/gcc/+bug/2052929/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2067810] Re: New Apparmor denial with ubuntu-advantage-tools on bionic
This bug was fixed in the package ubuntu-advantage-tools - 32.3.1 --- ubuntu-advantage-tools (32.3.1) oracular; urgency=medium * Adjust the esm_cache apparmor profile to allow reading of dpkg data directory (LP: #2067810): - d/apparmor/ubuntu_pro_esm_cache.jinja2: allow /var/lib/dpkg/** for dpkg and other profiles - features/steps/machines.py: trigger the bug in the behave test suite, which tests the fix * version.py: update version to 32.3.1 -- Andreas Hasenack Fri, 07 Jun 2024 14:52:55 -0300 ** Changed in: ubuntu-advantage-tools (Ubuntu Oracular) Status: In Progress => 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/2067810 Title: New Apparmor denial with ubuntu-advantage-tools on bionic To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/ubuntu-advantage-tools/+bug/2067810/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2069492] [NEW] package chromium-browser (not installed) failed to install/upgrade: new chromium-browser package pre-installation script subprocess returned error exit status 1
Public bug reported: nither google chrome nor chromium get installed in my laptop. ProblemType: Package DistroRelease: Ubuntu 24.04 Package: chromium-browser (not installed) ProcVersionSignature: Ubuntu 6.8.0-35.35-generic 6.8.4 Uname: Linux 6.8.0-35-generic x86_64 NonfreeKernelModules: nvidia_modeset nvidia ApportVersion: 2.28.1-0ubuntu3 AptOrdering: chromium-browser:amd64: Install NULL: ConfigurePending Architecture: amd64 CasperMD5CheckResult: unknown Date: Sat Jun 15 15:00:09 2024 ErrorMessage: new chromium-browser package pre-installation script subprocess returned error exit status 1 InstallationDate: Installed on 2024-06-14 (1 days ago) InstallationMedia: Ubuntu 24.04 LTS "Noble Numbat" - Release amd64 (20240424) Python3Details: /usr/bin/python3.12, Python 3.12.3, python3-minimal, 3.12.3-0ubuntu1 PythonDetails: N/A RelatedPackageVersions: dpkg 1.22.6ubuntu6 apt 2.7.14build2 SourcePackage: chromium-browser Title: package chromium-browser (not installed) failed to install/upgrade: new chromium-browser package pre-installation script subprocess returned error exit status 1 UpgradeStatus: No upgrade log present (probably fresh install) ** Affects: chromium-browser (Ubuntu) Importance: Undecided Status: New ** Tags: amd64 apport-package noble -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2069492 Title: package chromium-browser (not installed) failed to install/upgrade: new chromium-browser package pre-installation script subprocess returned error exit status 1 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/chromium-browser/+bug/2069492/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2069492] Re: package chromium-browser (not installed) failed to install/upgrade: new chromium-browser package pre-installation script subprocess returned error exit status 1
** 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/2069492 Title: package chromium-browser (not installed) failed to install/upgrade: new chromium-browser package pre-installation script subprocess returned error exit status 1 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/chromium-browser/+bug/2069492/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 308874] Re: Directory doesn't exist on new file from other applications
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Changed in: krusader (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/308874 Title: Directory doesn't exist on new file from other applications To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/krusader/+bug/308874/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1822748] Re: pressing ctrl when renaming files causes the rename window to disappear
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. Ubuntu 18.10 (cosmic) reached end-of-life on July 18, 2019. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Changed in: krusader (Ubuntu) Status: New => Incomplete ** Tags removed: ctrl krusader ** Tags added: cosmic -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1822748 Title: pressing ctrl when renaming files causes the rename window to disappear To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/krusader/+bug/1822748/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 778535] Re: krusader1:2.3.0~beta1-1 needs unavailable package kdesu for root mode
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Changed in: krusader (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/778535 Title: krusader1:2.3.0~beta1-1 needs unavailable package kdesu for root mode To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/krusader/+bug/778535/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 451863] Re: Krusader doesn't free memory after closing a viewed file
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. Ubuntu 9.10 (karmic) reached end-of-life on April 30, 2011. and the upstream bug as closed on 2012-11-07 as 'RESOLVED WORKSFORME" I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report will be closed in approximately 60 days time. ** Changed in: krusader (Ubuntu) Status: New => Incomplete ** Tags added: karmic -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/451863 Title: Krusader doesn't free memory after closing a viewed file To manage notifications about this bug go to: https://bugs.launchpad.net/krusader/+bug/451863/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 451862] Re: Krusader doesn't warn against viewing huge files
Upstream issue was closed on 2011-03-05 as 'RESOLVED FIXED' I can confirm using Kubuntu 24.04 and krusader 2.8.1 that a warning is displayed when attempting to view large files. So I'm closing this report as 'Fix Released' in Ubuntu. ** Changed in: krusader (Ubuntu) Status: New => Fix Released -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/451862 Title: Krusader doesn't warn against viewing huge files To manage notifications about this bug go to: https://bugs.launchpad.net/krusader/+bug/451862/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 331616] Re: If single instance mode is enabled, new tabs are not created from CLI
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. Ubuntu 8.10 (intrepid) reached end-of-life on April 30, 2010. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Tags added: intrepid ** Changed in: krusader (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/331616 Title: If single instance mode is enabled, new tabs are not created from CLI To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/krusader/+bug/331616/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2069493] [NEW] megadl bug: fixed by a more recent version, not available
Public bug reported: Hi, I am using megatools 1.10.3 on zorin os 17.1 based on ubuntu 22.04 LTS and, unfortunately, this version has a known bug https://megatools.megous.com/ml/92.html fixed by version 1.11.1 which is not available for ubuntu 22.04, only for 23.10 and 24.04. However, I cannot install megatools 1.11.1 due to dependency problems. I therefore tried to compile the code myself and created a .deb package. During the compilation, I found another known bug https://megatools.megous.com/ml/35.html which I fixed by changing the code from CURLOPT_PROTOCOLS_STR to CURLOPT_PROTOCOLS. I now get a strange error probably related to the change above: ERROR: Can't open folder 'link': API call 'f' failed: HTTP POST failed: CURL error: `Unsupported protocol` Is there any way to get version 1.11.1 on ubuntu 22.04 LTS? Otherwise, I will have to wait for zorin 18.x, maybe two years. Thank you ** Affects: megatools (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/2069493 Title: megadl bug: fixed by a more recent version, not available To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/megatools/+bug/2069493/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 352970] Re: krusader restart gnome session at sftp copy to server process
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. Ubuntu 9.04 (jaunty) reached end-of-life on October 23, 2010. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Tags added: jaunty ** Changed in: krusader (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/352970 Title: krusader restart gnome session at sftp copy to server process To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/krusader/+bug/352970/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 897865] Re: dolphin and clock widgets do not respect system time format
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. Ubuntu 11.10 (oneiric) reached end-of-life on May 9, 2013. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Tags added: oneiric ** Changed in: dolphin (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/897865 Title: dolphin and clock widgets do not respect system time format To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/dolphin/+bug/897865/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 694429] Re: Application: Dolphin (dolphin), signal: Segmentation fault
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. Ubuntu 10.10 (maverick) reached end-of-life on April 10, 2012. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Changed in: dolphin (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/694429 Title: Application: Dolphin (dolphin), signal: Segmentation fault To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/dolphin/+bug/694429/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1335440] Re: 12.04 LTS Dolphin filesystem ext4 - lost directory without delete!
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. Ubuntu 12.04 (precise) reached end-of-life on April 28, 2017. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Changed in: dolphin (Ubuntu) Status: New => Incomplete ** Tags added: precise -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1335440 Title: 12.04 LTS Dolphin filesystem ext4 - lost directory without delete! To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/dolphin/+bug/1335440/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1846951] Re: dolphin & Nautilus
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. Ubuntu 19.04 (disco) reached end-of-life on January 23, 2020. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Changed in: dolphin (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1846951 Title: dolphin & Nautilus To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/dolphin/+bug/1846951/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1955177] Re: Dolphin crashes after packing directory to 7z
As per bug description this issue was fixed over two years ago. I'm closing this as 'Fix Released' as that fix would have been included in the most recent releases of Ubuntu. ** Bug watch added: KDE Bug Tracking System #443540 https://bugs.kde.org/show_bug.cgi?id=443540 ** Also affects: dolphin via https://bugs.kde.org/show_bug.cgi?id=443540 Importance: Unknown Status: Unknown ** Tags added: impish ** Changed in: dolphin (Ubuntu) Status: New => Fix Released -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1955177 Title: Dolphin crashes after packing directory to 7z To manage notifications about this bug go to: https://bugs.launchpad.net/dolphin/+bug/1955177/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1508544] Re: wily: dolphin freezes on symlink to pipe
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. Ubuntu 15.10 (wily) reached end-of-life on July 28, 2016. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Changed in: dolphin (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1508544 Title: wily: dolphin freezes on symlink to pipe To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/dolphin/+bug/1508544/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1859467] Re: Dolphin PDF preview in poor resolution
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. ZeroBit, you didn't even tell us which release of Ubuntu you were using or provide a screenshot. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Changed in: dolphin (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1859467 Title: Dolphin PDF preview in poor resolution To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/dolphin/+bug/1859467/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1862451] Re: Dolphin (file manager) renaming other files when copying a file
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. Ubuntu 18.04 (bionic) reached end-of-standard-support on May 31, 2023. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Tags added: bionic ** Changed in: dolphin (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1862451 Title: Dolphin (file manager) renaming other files when copying a file To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/dolphin/+bug/1862451/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2068562] Autopkgtest regression report (libreoffice/4:24.2.4-0ubuntu0.24.04.1)
All autopkgtests for the newly accepted libreoffice (4:24.2.4-0ubuntu0.24.04.1) for noble have finished running. The following regressions have been reported in tests triggered by the package: libreoffice/4:24.2.4-0ubuntu0.24.04.1 (armhf) Please visit the excuses page listed below and investigate the failures, proceeding afterwards as per the StableReleaseUpdates policy regarding autopkgtest regressions [1]. https://people.canonical.com/~ubuntu-archive/proposed- migration/noble/update_excuses.html#libreoffice [1] https://wiki.ubuntu.com/StableReleaseUpdates#Autopkgtest_Regressions Thank you! -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2068562 Title: [SRU] libreoffice 24.2.4 for noble To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/2068562/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2069495] [NEW] Netplan generator causes systemd, apt and unlock hangs on 24.04
Public bug reported: From the issue in the netplan tracker [1]: During a systemd daemon-reload, the Netplan generator in /usr/lib/systemd/system-generators/netplan tries to reload the udev rules and databases with udevadm control --reload [2], which causes a deadlock, because reloading udev rules and databases requires a functioning systemd-userdbd.service, which is not the case during a systemd daemon-reload. The systemd developers will not consider making changes to any systemd component in order to prevent this deadlock, and instead suggest that the Netplan developers generate their systemd link/network/netdev units using a generator service like systemd- network-generator.service. [1] https://bugs.launchpad.net/netplan/+bug/1999178 On my machine, this causes every 'apt install' to be very slow, enabled / disabling systemd services to be slow, sudo hanging while these processes hang and so on. ProblemType: Bug DistroRelease: Ubuntu 24.04 Package: netplan-generator 1.0-2ubuntu1 ProcVersionSignature: Ubuntu 6.5.0-35.35-generic 6.5.13 Uname: Linux 6.5.0-35-generic x86_64 ApportVersion: 2.28.1-0ubuntu3 Architecture: amd64 CasperMD5CheckResult: pass CurrentDesktop: GNOME Date: Sat Jun 15 12:33:39 2024 InstallationDate: Installed on 2023-09-21 (268 days ago) InstallationMedia: Ubuntu 23.04 "Lunar Lobster" - Release amd64 (20230417) SourcePackage: netplan.io UpgradeStatus: Upgraded to noble on 2024-05-28 (18 days ago) ** Affects: netplan.io (Ubuntu) Importance: Undecided Status: New ** Tags: amd64 apport-bug noble -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2069495 Title: Netplan generator causes systemd, apt and unlock hangs on 24.04 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/netplan.io/+bug/2069495/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2069495] Re: Netplan generator causes systemd and apt hangs on 24.04
Oh fixing this also solved 60 seconds+ hangs when unlocking my desktop after resuming from suspend. ** Summary changed: - Netplan generator causes systemd and apt hangs on 24.04 + Netplan generator causes systemd, apt and unlock hangs on 24.04 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2069495 Title: Netplan generator causes systemd, apt and unlock hangs on 24.04 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/netplan.io/+bug/2069495/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1958633] Re: 32bit Kubuntu 18.04.5 Chromium-browser crash notification didnt came up after 2nd time crashing. This is 7th time
I'm closing this as 'Invalid' as it refers to: 1) An EOL release 2) Specifically refers to a 32-bit release 3) There has been no activity for over two years 4) The issue hasn't been confirmed by another user @kangarooo, if you see this issue in a currently supported release of Ubuntu/Kubuntu then please create a new bug report. ** Changed in: apport (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/1958633 Title: 32bit Kubuntu 18.04.5 Chromium-browser crash notification didnt came up after 2nd time crashing. This is 7th time To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/apport/+bug/1958633/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 889699] Re: In 11.10 using usb-creator-gtk making 10.04LTS Live cant boot
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. Ubuntu 11.10 (oneiric) reached end-of-life on May 9, 2013. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Changed in: usb-creator (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/889699 Title: In 11.10 using usb-creator-gtk making 10.04LTS Live cant boot To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/usb-creator/+bug/889699/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 998025] Re: 2 different shutdowns
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. Ubuntu 12.04 (precise) reached end-of-life on April 28, 2017. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Changed in: gnome-session (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/998025 Title: 2 different shutdowns To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gnome-session/+bug/998025/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1000321] Re: gnome-search-tool Not working CTRL+Q or CTRL+W to quit
Closing as 'Invalid' as this package is no longer in recent releases of Ubuntu. ** Changed in: gnome-search-tool (Ubuntu) Status: Triaged => Invalid ** Changed in: gnome-utils 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/1000321 Title: gnome-search-tool Not working CTRL+Q or CTRL+W to quit To manage notifications about this bug go to: https://bugs.launchpad.net/gnome-utils/+bug/1000321/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2067997] Re: Lenovo T14 Gen3 AMD laptop freezes shortly after suspend resume
*** This bug is a duplicate of bug 2064595 *** https://bugs.launchpad.net/bugs/2064595 Status changed to 'Confirmed' because the bug affects multiple users. ** Changed in: linux (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/2067997 Title: Lenovo T14 Gen3 AMD laptop freezes shortly after suspend resume To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2067997/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1885428] Re: Input language search filter doesnt filter
This bug report has been raised against 'lubuntu-desktop' which wasn't installed at the time of reporting. Kubuntu 20.04 seems to be the desktop environment in use at the time. Both Kubuntu and Lubuntu 20.04 are no longer supported. @Janis Kangaroo, is your issue still relevant when using a currently supported release? ** Changed in: lubuntu-meta (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1885428 Title: Input language search filter doesnt filter To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/lubuntu-meta/+bug/1885428/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1883377] Re: Cant detect microphone
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Changed in: kazam (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1883377 Title: Cant detect microphone To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/kazam/+bug/1883377/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2069416] Re: ThinkPad Z13 + AMDGPU Bootloops on wake from suspend
*** This bug is a duplicate of bug 2064595 *** https://bugs.launchpad.net/bugs/2064595 Status changed to 'Confirmed' because the bug affects multiple users. ** Changed in: linux (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/2069416 Title: ThinkPad Z13 + AMDGPU Bootloops on wake from suspend To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2069416/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2069496] Re: Call Girls In Kailash East Delhi –>9711941996–>Escort Service
** Package changed: chromium-browser (Ubuntu) => null-and-void ** Information type changed from Public to Private ** Changed in: null-and-void 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/2069496 Title: Call Girls In Kailash East Delhi –>9711941996–>Escort Service To manage notifications about this bug go to: https://bugs.launchpad.net/null-and-void/+bug/2069496/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2069496] [NEW] Call Girls In Kailash East Delhi –>9711941996–>Escort Service
Private bug reported: Call Girls In Mahipalpur Delhi –>9711941996–>Escort Service Call Girl In Delhi ∳+91-9711941996❤️Doorstep Delivery Indian Russian We Offering You 100% Genuine Completed Body & Mind Relaxation With Happy Ending Service Done By Most Attractive Charming Soft Spoken Bold Beautiful Full Cooperative Independent & Agency Escort Girls Available In All Star Hotel & Home Service In All Over Delhi,Noida,Gurgaon Call Us ∳+91-9711941996-Call Girls in Delhi Bookings Opens Now Excellent High profile Independent Female Model VIP High Class And Top Class Escorts Service with us will be Best part in your Life ever. ALL HOME/HOTEL DELIVERY SERVICE DOORSTEP SERVICE IN/CALL & OUT/CALL SERVICE WITH MANY OPTIONS AVAILABLE DELHI GURGAON & NOIDA SERVICE IN REASONABLE RATES FROM LOW TO HIGH PROFILE STAFF’S. Escorts Available at all 345* Star Hotels In Delhi Near IGI Airport Mahipalpur-Aerocity C.Place-Mayur Vihar-Noida-Gurgaon Faridabad Call Girls Near Pride Plaza Hotel Aerocity Call Girls Near Park Plaza Shahdara Call Girls Near Hot Deal 5 Star Hotel In Airport Zone Call Girls Near Piccadily Hotel Call Girls Near Fraser Suites Delhi Call Girls Near The Royal Plaza Call Girls Near Jaypee Siddharth Call Girls Near Crowne Plaza Delhi Noida Call Girls Near Lemon Tree Premier Hotel Aerocity Call Girls Near The Lalit Delhi Call Girls Near The Metropolitan Hotel & Spa Call Girls Near The Park Delhi Call Girls Near Holiday Inn Delhi International Airport Call Girls Near Hyatt Regency Delhi Call Girls Near Radisson Blu Plaza Karkardooma Call Girls Near The Park Delhi Call Girls Near The Claridges Delhi Call Girls Near ITC Maurya-A Luxury Collection Hotel Delhi Call Girls Near The Leela Palace Delhi Just call us and Select a girls from our Gallery. ** Affects: null-and-void Importance: Undecided Status: Invalid -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2069496 Title: Call Girls In Kailash East Delhi –>9711941996–>Escort Service To manage notifications about this bug go to: https://bugs.launchpad.net/null-and-void/+bug/2069496/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1958812] Re: If apt installs snap package, then warn, because maybe i dont want snap package.
** Changed in: snapd (Ubuntu) Status: New => Opinion -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1958812 Title: If apt installs snap package, then warn, because maybe i dont want snap package. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/apt/+bug/1958812/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1866763] Re: Kubuntu 18.04.04 doesnt have file manager Dolphin shortcut Meta+E
Ubuntu 18.04 (bionic) reached end-of-standard-support on May 31, 2023 and the Kubuntu flavour some two years earlier. However, I'm not seeing this issue when using Kubuntu 24.04. I do note that the kubuntu-desktop package was not installed when this bug report was raised so I'm closing this as 'Invalid' as no-one else confirmed the issue and *-desktop packages are by default installed in the various flavours of *buntu. @kangaroo, if you observe this issue when using a currently supported release of Kubuntu then please let us know with which one. ** Changed in: kubuntu-meta (Ubuntu) Status: New => Invalid -- You received this bug notification because you are a member of Kubuntu Bugs, which is subscribed to kubuntu-meta in Ubuntu. https://bugs.launchpad.net/bugs/1866763 Title: Kubuntu 18.04.04 doesnt have file manager Dolphin shortcut Meta+E To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/kubuntu-meta/+bug/1866763/+subscriptions -- kubuntu-bugs mailing list kubuntu-b...@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs
[Bug 2069498] [NEW] (jammy) gdm3 login impossible with fprintd but no libpam-fprintd
Public bug reported: (Note that I'm not using the fingerprint reader.) If you have: - fprintd but not: - libpam-fprintd gdm3/pam refuses login. The following logs are observed at boot: dbus-daemon[1928]: [system] Activating via systemd: service name='net.reactivated.Fprint' unit='fprintd.service' requested by ':1.45' (uid=128 pid=2541 comm="/usr/bin/gnome-shell " label="unconfined") fprintd[2799]: libusb: error [udev_hotplug_event] ignoring udev action change fprintd[2799]: libusb: error [udev_hotplug_event] ignoring udev action change dbus-daemon[1928]: [system] Successfully activated service 'net.reactivated.Fprint' systemd[1]: Started Fingerprint Authentication Daemon. This is seen when a gdm login is attempted: gdm-fingerprint][3012]: PAM unable to dlopen(pam_fprintd.so): /lib/security/pam_fprintd.so: cannot open shared object file: No such file or directory gdm-fingerprint][3012]: PAM adding faulty module: pam_fprintd.so gdm-fingerprint][3012]: gkr-pam: no password is available for user Either removing fprintd or installing libpam-fprintd fixes so you can log in again. Versions: - ubuntu 22.04 - gdm3 42.0-1ubuntu7.22.04.4 - fprintd 1.94.2-1ubuntu0.22.04.1 - libpam-fprintd 1.94.2-1ubuntu0.22.04.1 Cheers, Walter Doekes ** Affects: gdm3 (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/2069498 Title: (jammy) gdm3 login impossible with fprintd but no libpam-fprintd To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gdm3/+bug/2069498/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2069497] [NEW] at upgrade linux-image-6.5.0-35-generic script post-removal ha restituito lo stato di errore 127
Public bug reported: linux-image-6.5.0-35-generic script post-removal ha restituito lo stato di errore 127. Stopped for too many errors the update process ProblemType: Bug DistroRelease: Ubuntu 24.04 Package: ubuntu-release-upgrader-core 1:24.04.18 ProcVersionSignature: Ubuntu 6.8.0-31.31-generic 6.8.1 Uname: Linux 6.8.0-31-generic x86_64 NonfreeKernelModules: lkp_Ubuntu_6_8_0_31_31_generic_104 wl ApportVersion: 2.28.1-0ubuntu3 Architecture: amd64 CasperMD5CheckResult: pass CrashDB: ubuntu CrashReports: 600:0:0:170514:2024-06-15 12:06:34.702226635 +0200:2024-06-15 12:06:34.954228340 +0200:/var/crash/linux-image-6.5.0-35-generic.0.crash 600:0:0:141148:2024-06-15 12:45:42.172118220 +0200:2024-06-15 12:45:42.439120732 +0200:/var/crash/linux-image-6.8.0-35-generic.0.crash CurrentDesktop: ubuntu:GNOME Date: Sat Jun 15 13:12:47 2024 InstallationDate: Installed on 2024-05-01 (45 days ago) InstallationMedia: Ubuntu 22.04.4 LTS "Jammy Jellyfish" - Release amd64 (20240220) PackageArchitecture: all SourcePackage: ubuntu-release-upgrader Symptom: release-upgrade UpgradeStatus: No upgrade log present (probably fresh install) VarLogDistupgradeTermlog: ** Affects: ubuntu-release-upgrader (Ubuntu) Importance: Undecided Status: New ** Tags: amd64 apport-bug dist-upgrade noble wayland-session -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2069497 Title: at upgrade linux-image-6.5.0-35-generic script post-removal ha restituito lo stato di errore 127 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/2069497/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1955177] Re: Dolphin crashes after packing directory to 7z
Launchpad has imported 26 comments from the remote bug at https://bugs.kde.org/show_bug.cgi?id=443540. If you reply to an imported comment from within Launchpad, your comment will be sent to the remote bug automatically. Read more about Launchpad's inter-bugtracker facilities at https://help.launchpad.net/InterBugTracking. On 2021-10-10T09:12:30+00:00 Dariusz-tereszkiewicz wrote: Application: dolphin (21.08.2) Qt Version: 5.15.3 Frameworks Version: 5.86.0 Operating System: Linux 5.11.0-36-generic x86_64 Windowing System: X11 Drkonqi Version: 5.22.5 Distribution: KDE neon User Edition 5.22 -- Information about the crash: - What I was doing when the application crashed: Dolphin shuts down after it finishes packing the catalog to 7z The crash can be reproduced every time. -- Backtrace: Application: Dolphin (dolphin), signal: Segmentation fault [New LWP 18907] [New LWP 18908] [New LWP 18909] [New LWP 18910] [New LWP 18911] [New LWP 18912] [Thread debugging using libthread_db enabled] Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1". 0x7f7e00e03aff in __GI___poll (fds=0x7ffcfe335978, nfds=1, timeout=1000) at ../sysdeps/unix/sysv/linux/poll.c:29 [Current thread is 1 (Thread 0x7f7dfc3c09c0 (LWP 18904))] Thread 7 (Thread 0x7f7de77fe700 (LWP 18912)): #0 0x7f7e00e03aff in __GI___poll (fds=0x7f7dd0005240, nfds=1, timeout=-1) at ../sysdeps/unix/sysv/linux/poll.c:29 #1 0x7f7dfee9636e in ?? () from /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0 #2 0x7f7dfee964a3 in g_main_context_iteration () from /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0 #3 0x7f7e013d15eb in QEventDispatcherGlib::processEvents (this=0x7f7ddb60, flags=...) at kernel/qeventdispatcher_glib.cpp:425 #4 0x7f7e0137587b in QEventLoop::exec (this=this@entry=0x7f7de77fdbe0, flags=..., flags@entry=...) at ../../include/QtCore/../../src/corelib/global/qflags.h:141 #5 0x7f7e0118f292 in QThread::exec (this=) at ../../include/QtCore/../../src/corelib/global/qflags.h:121 #6 0x7f7e0119042c in QThreadPrivate::start (arg=0x562b4d28e790) at thread/qthread_unix.cpp:329 #7 0x7f7dff914609 in start_thread (arg=) at pthread_create.c:477 #8 0x7f7e00e10293 in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:95 Thread 6 (Thread 0x7f7de7fff700 (LWP 18911)): #0 futex_abstimed_wait_cancelable (private=, abstime=0x7f7de7ffeb50, clockid=, expected=0, futex_word=0x562b4d3243e4) at ../sysdeps/nptl/futex-internal.h:320 #1 __pthread_cond_wait_common (abstime=0x7f7de7ffeb50, clockid=, mutex=0x562b4d324390, cond=0x562b4d3243b8) at pthread_cond_wait.c:520 #2 __pthread_cond_timedwait (cond=0x562b4d3243b8, mutex=0x562b4d324390, abstime=0x7f7de7ffeb50) at pthread_cond_wait.c:656 #3 0x7f7e01196528 in QWaitConditionPrivate::wait_relative (this=0x562b4d324390, deadline=...) at thread/qwaitcondition_unix.cpp:136 #4 QWaitConditionPrivate::wait (deadline=..., this=0x562b4d324390) at thread/qwaitcondition_unix.cpp:144 #5 QWaitCondition::wait (this=this@entry=0x562b4d286c00, mutex=mutex@entry=0x562b4d3b96b8, deadline=...) at thread/qwaitcondition_unix.cpp:225 #6 0x7f7e01193a31 in QThreadPoolThread::run (this=0x562b4d286bf0) at ../../include/QtCore/../../src/corelib/thread/qmutex.h:275 #7 0x7f7e0119042c in QThreadPrivate::start (arg=0x562b4d286bf0) at thread/qthread_unix.cpp:329 #8 0x7f7dff914609 in start_thread (arg=) at pthread_create.c:477 #9 0x7f7e00e10293 in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:95 Thread 5 (Thread 0x7f7df0ed6700 (LWP 18910)): #0 futex_abstimed_wait_cancelable (private=, abstime=0x7f7df0ed5b50, clockid=, expected=0, futex_word=0x562b4d13b4c4) at ../sysdeps/nptl/futex-internal.h:320 #1 __pthread_cond_wait_common (abstime=0x7f7df0ed5b50, clockid=, mutex=0x562b4d13b470, cond=0x562b4d13b498) at pthread_cond_wait.c:520 #2 __pthread_cond_timedwait (cond=0x562b4d13b498, mutex=0x562b4d13b470, abstime=0x7f7df0ed5b50) at pthread_cond_wait.c:656 #3 0x7f7e01196528 in QWaitConditionPrivate::wait_relative (this=0x562b4d13b470, deadline=...) at thread/qwaitcondition_unix.cpp:136 #4 QWaitConditionPrivate::wait (deadline=..., this=0x562b4d13b470) at thread/qwaitcondition_unix.cpp:144 #5 QWaitCondition::wait (this=this@entry=0x562b4d38f1b0, mutex=mutex@entry=0x562b4d3b96b8, deadline=...) at thread/qwaitcondition_unix.cpp:225 #6 0x7f7e01193a31 in QThreadPoolThread::run (this=0x562b4d38f1a0) at ../../include/QtCore/../../src/corelib/thread/qmutex.h:275 #7 0x7f7e0119042c in QThreadPrivate::start (arg=0x562b4d38f1a0) at thread/qthread_unix.cpp:329 #8 0x7f7dff914609 in start_thread (arg=) at pthread_create.c:477 #9 0x7f7e00e10293 in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:95 Thread 4 (Thread 0x7f7df16d7700 (LWP 18909)): #0 futex_abstimed_wait_cancelable (private=, abstime=0x7f7df16d6b50, clockid=, expected=0, futex_wor
[Bug 2048844] Re: Wiki reporting bugs missing info about "cant report if app is in snap"
Jānis Kangarooo, you seem to be reporting an issue about the Ubuntu Wiki - https://wiki.ubuntu.com/ and may be the page - https://wiki.ubuntu.com/Bugs/FindRightPackage. The Ubuntu Wiki can be edited by anyone with the appropriate access. By asking for access to https://launchpad.net/~ubuntu-wiki-editors you could resolve any issues you may have by editing the appropriate wiki pages. I'm closing this issue as 'Invalid' as the ubuntu-docs package doesn't include issues with the Ubuntu Wiki. ** Changed in: ubuntu-docs (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/2048844 Title: Wiki reporting bugs missing info about "cant report if app is in snap" To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/ubuntu-docs/+bug/2048844/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1958746] Re: Rectangualar screenshot after 4 seconds, made what part to save, mouse pointer dissapeared, double click didnt work, since it needs to be in centre of selected are to double click. N
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. Ubuntu 18.04 (bionic) reached end-of-standard-support on May 31, 2023. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Changed in: spectacle (Ubuntu) Status: New => Incomplete ** Summary changed: - Rectangualar screenshot after 4 seconds, made what part to save, mouse pointer dissapeared, double click didnt work, since it needs to be in centre of selected are to double click. Needed to do ESC. + Rectangular screenshot after 4 seconds, made what part to save, mouse pointer disappeared, double click didn't work, since it needs to be in centre of selected are to double click. Needed to do ESC. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1958746 Title: Rectangular screenshot after 4 seconds, made what part to save, mouse pointer disappeared, double click didn't work, since it needs to be in centre of selected are to double click. Needed to do ESC. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/spectacle/+bug/1958746/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2069493] Re: megadl bug: fixed by a more recent version, not available
** Description changed: Hi, I am using megatools 1.10.3 on zorin os 17.1 based on ubuntu 22.04 LTS and, unfortunately, this version has a known bug https://megatools.megous.com/ml/92.html fixed by version 1.11.1 which is not available for ubuntu 22.04, only for 23.10 and 24.04. - However, I cannot install megatools 1.11.1 due to dependency problems. I therefore tried to compile the code myself and created a .deb package. During the compilation, I found another known bug https://megatools.megous.com/ml/35.html which I fixed by changing the code from CURLOPT_PROTOCOLS_STR to CURLOPT_PROTOCOLS. - I now get a strange error probably related to the change above: - ERROR: Can't open folder 'link': API call 'f' failed: HTTP POST failed: CURL error: `Unsupported protocol` - Is there any way to get version 1.11.1 on ubuntu 22.04 LTS? Otherwise, I will have to wait for zorin 18.x, maybe two years. + However, I cannot install megatools 1.11.1 due to dependency problems. I therefore tried to compile the code myself and created a .deb package. During the compilation, I found another known bug https://megatools.megous.com/ml/35.html which I solved by installing curl >= 7.85.0 from source. Finally, I managed to get a .deb package with the latest megatools. + Is there any way to get version 1.11.1 on ubuntu 22.04 LTS without this long procedure? Otherwise, I will have to wait for zorin 18.x, maybe two years. Thank you -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2069493 Title: megadl bug: fixed by a more recent version, not available To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/megatools/+bug/2069493/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1871420] Re: vlc keeps forgetting volume. Starts at 0%
I can confirm using Kubuntu 24.04. Needs reporting upstream for consideration by vlc developers. ** Tags added: noble ** Changed in: vlc (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/1871420 Title: vlc keeps forgetting volume. Starts at 0% To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/vlc/+bug/1871420/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1958041] Re: Clean install 18.04 Old 32-bit Laptop very slowed down on each start doing update-apt-xapi process for few minutes. Too much co2 emissions.
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. Ubuntu 18.04 (bionic) reached end-of-standard-support on May 31, 2023. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Changed in: apt-xapian-index (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1958041 Title: Clean install 18.04 Old 32-bit Laptop very slowed down on each start doing update-apt-xapi process for few minutes. Too much co2 emissions. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/apt-xapian-index/+bug/1958041/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1865541] Re: Kubuntu settings too big. Need option to slide sides walls. Scroll bar comes up.
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Kubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. Please note that Kubuntu doesn't write the KDE applications so please consider reporting any issues to KDE's upstream bug tracker: https://bugs.kde.org/ ** Changed in: systemsettings (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1865541 Title: Kubuntu settings too big. Need option to slide sides walls. Scroll bar comes up. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/systemsettings/+bug/1865541/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1090561] Re: Cant change wifi connection
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Changed in: network-manager-applet (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1090561 Title: Cant change wifi connection To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/network-manager-applet/+bug/1090561/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1089641] Re: 10.04 netbook LTS made startup boot error or some motherboards
Ubuntu 10.04 (lucid) reached end-of-life on May 9, 2013. An 11+ year old environment which no longer exists, and a report that was never confirmed by another user is not really of any use in modern day Ubuntu so I'm closing this as 'Invalid'. ** Changed in: syslinux (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/1089641 Title: 10.04 netbook LTS made startup boot error or some motherboards To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/syslinux/+bug/1089641/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1092882] Re: Version degradation- cant understand my external USB HDD
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. Ubuntu 12.04 (precise) reached end-of-life on April 28, 2017. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Changed in: smartmontools (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1092882 Title: Version degradation- cant understand my external USB HDD To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/smartmontools/+bug/1092882/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 596469] Re: Installing will take 175mb also unneeded archives
No longer included in recent releases of Ubuntu. ** Changed in: avant-window-navigator (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/596469 Title: Installing will take 175mb also unneeded archives To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/avant-window-navigator/+bug/596469/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 707175] Re: Crashes every time. Remote desktop settings disabling crashes window borders and keyboard shortcuts
No longer included in modern day Ubuntu ** Changed in: tsclient (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/707175 Title: Crashes every time. Remote desktop settings disabling crashes window borders and keyboard shortcuts To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/tsclient/+bug/707175/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 681791] Re: Prism cant make gmail icon
No longer included in modern day Ubuntu. ** Changed in: prism (Ubuntu) Status: New => Incomplete ** Changed in: prism (Ubuntu) Status: Incomplete => Invalid -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/681791 Title: Prism cant make gmail icon To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/prism/+bug/681791/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 678331] Re: Cant log in to wiki.ubuntu.com couse no settings awailable
No longer included in modern day Ubuntu. ** Changed in: editmoin (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/678331 Title: Cant log in to wiki.ubuntu.com couse no settings awailable To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu-website/+bug/678331/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 556859] Re: Gif images showing wrong
No longer included in modern day Ubuntu ** Changed in: arora (Ubuntu) Status: New => Incomplete ** Changed in: arora (Ubuntu) Status: Incomplete => Invalid -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/556859 Title: Gif images showing wrong To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/arora/+bug/556859/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 995964] Re: backport Window-picker-applet from Natty to Precise
** Changed in: window-picker-applet (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/995964 Title: backport Window-picker-applet from Natty to Precise To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/window-picker-applet/+bug/995964/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 794019] Re: Netw app shows its selected on start
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Changed in: gnome-panel (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/794019 Title: Netw app shows its selected on start To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gnome-panel/+bug/794019/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 745333] Re: Firefox Lost Menu
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. Ubuntu 11.04 (natty) reached end-of-life on October 28, 2012. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Changed in: appmenu-gtk (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/745333 Title: Firefox Lost Menu To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/appmenu-gtk/+bug/745333/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
Re: [Bug 1975641] Re: Can't download or update signatures within clamtk
Hi Dave, The computer I had been using when I reported the problem physically broke. I was without a personal computer for a long time. However, I recently got a new one, put Manjaro Linux on it, and am pleased to report that downloading malware definitions was a lot easier compared to when I first tried using ClamTK. The definitions did not download immediately after I clicked on intuitive options. I think I had to set ClamTK to automatically download updates until I saw evidence that the program had loaded malware definitions. Thanks, David From: nore...@launchpad.net on behalf of Dave M <1975...@bugs.launchpad.net> Sent: Thursday, January 25, 2024 12:58 PM To: dlavr...@hotmail.com Subject: [Bug 1975641] Re: Can't download or update signatures within clamtk Hi, Has this issue been resolved? respectfully, Dave M -- You received this bug notification because you are subscribed to the bug report. https://bugs.launchpad.net/bugs/1975641 Title: Can't download or update signatures within clamtk Status in ClamTk: New Status in Ubuntu: New Bug description: Hi, I have Manjaro Linux and installed clamtk v6.14-1 via Pamac 10.4.0-2. clamtk indicates that it has 0 virus signatures, and this does not change once I click update. I was able to update the virus signatures, but only once I found the terminal commands required to do so. I was successful using the commands mentioned at https://wiki.manjaro.org/index.php/ClamAV TLDR: clamtk doesn't come with any virus signatures when installed on Manjaro, and updates via the GUI don't work. The only way to get virus signatures was by typing commands into Terminal. To manage notifications about this bug go to: https://bugs.launchpad.net/clamtk/+bug/1975641/+subscriptions -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1975641 Title: Can't download or update signatures within clamtk To manage notifications about this bug go to: https://bugs.launchpad.net/clamtk/+bug/1975641/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 967360] Re: terminal continues to listen to program which was opened by ubuntu-bug
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. Ubuntu 10.10 (maverick) reached end-of-life on April 10, 2012. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Changed in: gnome-terminal (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/967360 Title: terminal continues to listen to program which was opened by ubuntu-bug To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gnome-terminal/+bug/967360/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 745313] Re: Tryng to resize window in Appmenu area makes app menu beeing slided
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. Ubuntu 11.04 (natty) reached end-of-life on October 28, 2012. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Changed in: appmenu-gtk (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/745313 Title: Tryng to resize window in Appmenu area makes app menu beeing slided To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/appmenu-gtk/+bug/745313/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2069500] [NEW] pyfftw: Please RM from Oracular
Public bug reported: Please remove pyfftw from Oracular. It currently FTBFS and was removed from Debian testing on 2023-12-24. Its autopkgtest regression currently blocks migration of scipy 1.12.0-2. $ reverse-depends src:pyfftw Reverse-Recommends == * astro-python3 (for python3-pyfftw) * science-mathematics-dev (for python3-pyfftw) * science-meteorology-dev (for python3-pyfftw) * science-nanoscale-physics-dev * science-physics-dev (for python3-pyfftw) Packages without architectures listed are reverse-dependencies in: amd64, arm64, armhf, i386, ppc64el, s390x $ reverse-depends src:pyfftw -a source No reverse dependencies found ** Affects: pyfftw (Ubuntu) Importance: Undecided Status: New ** Affects: scipy (Ubuntu) Importance: Undecided Status: New ** Affects: pyfftw (Debian) Importance: Unknown Status: Unknown ** Tags: update-excuse ** Also affects: scipy (Ubuntu) Importance: Undecided Status: New ** Tags added: update-excuse ** Bug watch added: Debian Bug tracker #1071810 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1071810 ** Also affects: pyfftw (Debian) via https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1071810 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/2069500 Title: pyfftw: Please RM from Oracular To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/pyfftw/+bug/2069500/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2067071] Re: cannot upgrade from 23.10 to 24.04, error in _install_t64_replacement_packages
Hi Andreas, The upgrade process downloads the old version (release-upgrader version '24.04.18' started from /var/log/dist-upgrade/main.apt) even though I have 24.04.19 installed (ii ubuntu-release-upgrader-core 1:24.04.19). I even tried pinning the noble-proposed packages to 600 to no avail. Is there a way to get the upgrade process get the new version from noble-proposed too? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2067071 Title: cannot upgrade from 23.10 to 24.04, error in _install_t64_replacement_packages To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/2067071/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1964105] Re: Gwenview install plugins opens Discover with error
Kubuntu 20.04 is no longer supported. If this is still an issue with currently supported releases of Kubtuntu then please gives us the exact steps to reproduce your issue. ** Changed in: gwenview (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1964105 Title: Gwenview install plugins opens Discover with error To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gwenview/+bug/1964105/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2048107] Re: Installing selected to install all updates. Firefox installed 116 version.
Jānis Kangarooo, you reported this bug against the ubiquity package which it appears you didn't have installed at the time. What problem did you see when you reported this issue and does it still exist in whichever release of Ubuntu or Kubuntu you might still be using? ** Package changed: ubiquity (Ubuntu) => ubuntu ** Changed in: ubuntu Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2048107 Title: Installing selected to install all updates. Firefox installed 116 version. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+bug/2048107/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1958046] Re: Cant get bug report again, if i didnt send it in 1st 2 times that i came up. Could come back all the time so latest bug reports can be easy sent.
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. Ubuntu 18.04 (bionic) reached end-of-standard-support on May 31, 2023. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Changed in: apport (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1958046 Title: Cant get bug report again, if i didnt send it in 1st 2 times that i came up. Could come back all the time so latest bug reports can be easy sent. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/apport/+bug/1958046/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1962392] Re: Cant connect to iphone tethering- configuring interface
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. Ubuntu 18.04 (bionic) reached end-of-standard-support on May 31, 2023. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Changed in: network-manager (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1962392 Title: Cant connect to iphone tethering- configuring interface To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1962392/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1866762] Re: Kubuntu 18.04.04 and 18.04.05 ubuntu-bug and apport makes at end of link /+login asking to log in even if logged already logged in
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. Ubuntu 18.04 (bionic) reached end-of-standard-support on May 31, 2023. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Changed in: apport (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1866762 Title: Kubuntu 18.04.04 and 18.04.05 ubuntu-bug and apport makes at end of link /+login asking to log in even if logged already logged in To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/apport/+bug/1866762/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1958436] Re: Cant autocomplete symbol to rm file that was generated from error in some script
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. Ubuntu 18.04 (bionic) reached end-of-standard-support on May 31, 2023. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Changed in: bash-completion (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1958436 Title: Cant autocomplete symbol to rm file that was generated from error in some script To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/bash-completion/+bug/1958436/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1962391] Re: apt dist-Upgrade makes some error messeges but not in gui, also doesnt come up autofix suggestions, so also how to fix it?
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. Ubuntu 18.04 (bionic) reached end-of-standard-support on May 31, 2023. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Changed in: alsa-driver (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1962391 Title: apt dist-Upgrade makes some error messeges but not in gui, also doesnt come up autofix suggestions, so also how to fix it? To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1962391/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2067945] Re: Restart after resume from suspend
I tried "systemctl suspend" and it reproduced the issue right away. It must be the command that gnome shell's menu is triggering. So, I will keep using pm-suspend as a workaround until the issue is fixed. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2067945 Title: Restart after resume from suspend To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2067945/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2064906] Re: White screen and Screen Flickering
Too hacky for my usecase. I'll just wait for the next stable version of the nvidia driver to get released. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2064906 Title: White screen and Screen Flickering To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2064906/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1639524] Re: doesn't view images from archives on xenial
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. Ubuntu 16.04 (xenial) reached end-of-standard-support on April 29, 2021. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) and give us a better description as to how we might reproduce your issue otherwise this bug report can be left to expire in approximately 60 days time. ** Changed in: gwenview (Ubuntu) Status: New => Incomplete ** Tags added: xenial -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1639524 Title: doesn't view images from archives on xenial To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gwenview/+bug/1639524/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1697798] Re: Gwenview Properties empty
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. Ubuntu 16.04 (xenial) reached end-of-standard-support on April 29, 2021. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Changed in: gwenview (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1697798 Title: Gwenview Properties empty To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gwenview/+bug/1697798/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2065839] Re: UBSAN: array-index-out-of-bounds
Status changed to 'Confirmed' because the bug affects multiple users. ** Changed in: broadcom-sta (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/2065839 Title: UBSAN: array-index-out-of-bounds To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/broadcom-sta/+bug/2065839/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1724984] Re: Gwenview is very slow under Wayland
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. Ubuntu 17.10 (artful) reached end-of-life on July 19, 2018. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Changed in: gwenview (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1724984 Title: Gwenview is very slow under Wayland To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gwenview/+bug/1724984/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1697793] Re: Gwenview empty open file dialog
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. Ubuntu 16.04 (xenial) reached end-of-standard-support on April 29, 2021. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Changed in: gwenview (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1697793 Title: Gwenview empty open file dialog To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gwenview/+bug/1697793/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1658827] Re: Gwenview distorting images when rotate button is clicked
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Changed in: gwenview (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1658827 Title: Gwenview distorting images when rotate button is clicked To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gwenview/+bug/1658827/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2065839] Re: UBSAN: array-index-out-of-bounds
Still happens with the latest kernel. ``` [ 15.027316] [ cut here ] [ 15.027323] UBSAN: array-index-out-of-bounds in /var/lib/dkms/broadcom-sta/6.30.223.271/build/src/wl/sys/wl_linux.c:1935:4 [ 15.027329] index 2 is out of range for type 'ether_addr [1]' [ 15.027333] CPU: 3 PID: 63 Comm: kworker/3:1 Tainted: P OE 6.8.0-35-generic #35-Ubuntu [ 15.027336] Hardware name: Apple Inc. MacBookPro11,1/Mac-189A3D4F975D5FFC, BIOS 478.0.0.0.0 01/13/2023 [ 15.027339] Workqueue: ipv6_addrconf addrconf_dad_work [ 15.027346] Call Trace: [ 15.027348] [ 15.027351] dump_stack_lvl+0x48/0x70 [ 15.027360] dump_stack+0x10/0x20 [ 15.027364] __ubsan_handle_out_of_bounds+0xc6/0x110 [ 15.027369] _wl_set_multicast_list+0x211/0x230 [wl] [ 15.027448] wl_set_multicast_list+0x3a/0xa0 [wl] [ 15.027522] __dev_set_rx_mode+0x79/0xe0 [ 15.027528] __dev_mc_add+0x94/0xa0 [ 15.027532] dev_mc_add+0x10/0x20 [ 15.027535] igmp6_group_added+0xe0/0x100 [ 15.027541] __ipv6_dev_mc_inc+0x27d/0x400 [ 15.027545] ipv6_dev_mc_inc+0x10/0x20 [ 15.027549] addrconf_dad_work+0xaa/0x510 [ 15.027553] process_one_work+0x16f/0x350 [ 15.027560] worker_thread+0x306/0x440 [ 15.027564] ? _raw_spin_lock_irqsave+0xe/0x20 [ 15.027569] ? __pfx_worker_thread+0x10/0x10 [ 15.027573] kthread+0xf2/0x120 [ 15.027577] ? __pfx_kthread+0x10/0x10 [ 15.027580] ret_from_fork+0x47/0x70 [ 15.027583] ? __pfx_kthread+0x10/0x10 [ 15.027587] ret_from_fork_asm+0x1b/0x30 [ 15.027592] [ 15.027639] ---[ end trace ]--- ``` -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2065839 Title: UBSAN: array-index-out-of-bounds To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/broadcom-sta/+bug/2065839/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1949762] Re: gwenview cannot save jpegs
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. Please note that you didn't even tell us with which release of Kubuntu or version of Gwenview you were using when you reported the bug. ** Changed in: gwenview (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1949762 Title: gwenview cannot save jpegs To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gwenview/+bug/1949762/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1113410] Re: Gwenview does not allow saving (access denied)
Unsure of comment #3 but as over eleven years have passed without further comment I'm closing this as 'Invalid'. ** Changed in: gwenview (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/1113410 Title: Gwenview does not allow saving (access denied) To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gwenview/+bug/1113410/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2067945] Re: Restart after resume from suspend
I can explain your result. The issue is specifically a race condition with the lock screen triggering after the suspend sequence starts. The driver change that helps it flushes content during the suspend sequence to ensure engines are not running when suspend starts. By using pm utils you don't trigger the lock screen. The proper solution is the patch linked in the bug I referenced. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2067945 Title: Restart after resume from suspend To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2067945/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 348013] Re: No copy to clipboard option
Many years later when using Kubuntu 24.04 and Gwenview 23.08.05 Ctrl-C copies the image to the clipboard ready for pasting into another application. I'm closing this as being fixed. ** Changed in: gwenview (Ubuntu) Status: New => Fix Released -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/348013 Title: No copy to clipboard option To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gwenview/+bug/348013/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1789307] Re: No preview for folders containing images
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. Ubuntu 18.04 (bionic) reached end-of-standard-support on May 31, 2023. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Changed in: gwenview (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1789307 Title: No preview for folders containing images To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gwenview/+bug/1789307/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1743634] Re: Popup unknow protocol remote
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. Ubuntu 16.04 (xenial) reached end-of-standard-support on April 29, 2021. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Changed in: gwenview (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1743634 Title: Popup unknow protocol remote To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gwenview/+bug/1743634/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2069497] Re: at upgrade linux-image-6.5.0-35-generic script post-removal gave error 127
** Summary changed: - at upgrade linux-image-6.5.0-35-generic script post-removal ha restituito lo stato di errore 127 + at upgrade linux-image-6.5.0-35-generic script post-removal gave error 127 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2069497 Title: at upgrade linux-image-6.5.0-35-generic script post-removal gave error 127 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/2069497/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 999821] Re: gwenview has memory leak in presentation mode
Upstream issue was closed 'RESOLVED FIXED' on 2012-05-04 so long time fixed in Kubuntu. ** Changed in: gwenview (Ubuntu) Status: Confirmed => Fix Released -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/999821 Title: gwenview has memory leak in presentation mode To manage notifications about this bug go to: https://bugs.launchpad.net/gwenview/+bug/999821/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1197533] Re: rating menu doesn't work in lubuntu
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. Ubuntu 13.04 (raring) reached end-of-life on January 27, 2014. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Tags added: raring -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1197533 Title: rating menu doesn't work in lubuntu To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gwenview/+bug/1197533/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 367407] Re: preferences dialog responds only after delay
wow that is an old bug. is that still the case? what machine did you run it on, a 20 years old machine? ** Changed in: gnumail (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/367407 Title: preferences dialog responds only after delay To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gnumail/+bug/367407/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1697797] Re: Gwenview list files fails (open, browse, save)
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. Ubuntu 16.04 (xenial) reached end-of-standard-support on April 29, 2021. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Changed in: gwenview (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1697797 Title: Gwenview list files fails (open, browse, save) To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gwenview/+bug/1697797/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 2069204] Re: Kernel fails to enable XSAVE when running in a “v5” AMD SEV-SNP VM
** Also affects: linux-azure (Ubuntu Noble) Importance: Undecided Status: New ** Also affects: linux-azure (Ubuntu Oracular) Importance: Undecided Status: New ** Changed in: linux-azure (Ubuntu Noble) Status: New => Fix Committed ** Changed in: linux-azure (Ubuntu Oracular) 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/2069204 Title: Kernel fails to enable XSAVE when running in a “v5” AMD SEV-SNP VM To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux-azure/+bug/2069204/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 923000] Re: Gwenview restarts lightdm if trying to open a 8000X8000 jpg image (17 Mo)
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. Ubuntu 11.10 (oneiric) reached end-of-life on May 9, 2013. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Changed in: gwenview (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/923000 Title: Gwenview restarts lightdm if trying to open a 8000X8000 jpg image (17 Mo) To manage notifications about this bug go to: https://bugs.launchpad.net/hwe-next/+bug/923000/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 650906] Re: gwenview does not display properly images with ProPhoto RGB color space
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. Please note that your bug report didn't tell us which release of Kubuntu or Gwenview you were using. ** Changed in: gwenview (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/650906 Title: gwenview does not display properly images with ProPhoto RGB color space To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gwenview/+bug/650906/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1949633] Re: gwenview crashes after displaying directory contents
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. Ubuntu 21.10 (impish) reached end-of-life on July 14, 2022. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Changed in: gwenview (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/1949633 Title: gwenview crashes after displaying directory contents To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gwenview/+bug/1949633/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 678358] Re: Showing .png file in gwenview causes X session crash
Ubuntu 10.10 (maverick) reached end-of-life on April 10, 2012. Further to comment #1 the image doesn't crash in my installation of Kubuntu 24.04. With no comments on the report for over 13 years I'm closing this as 'Invalid'. @ippatsuman, please feel free to re-open if still an issue. ** Changed in: gwenview (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/678358 Title: Showing .png file in gwenview causes X session crash To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gwenview/+bug/678358/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1633710] Re: Gwenview gets randomly stuck in full screen
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. Ubuntu 16.10 (yakkety) reached end-of-life on July 20, 2017. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Changed in: gwenview (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1633710 Title: Gwenview gets randomly stuck in full screen To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gwenview/+bug/1633710/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 891536] Re: gwenview do not resize svg image properly
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. Ubuntu 11.10 (oneiric) reached end-of-life on May 9, 2013. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Changed in: gwenview (Ubuntu) Status: New => Incomplete ** Tags added: oneiric -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/891536 Title: gwenview do not resize svg image properly To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gwenview/+bug/891536/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1504071] Re: no left text padding when window touches desktop border
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. Ubuntu 15.10 (wily) reached end-of-life on July 28, 2016. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Changed in: gwenview (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1504071 Title: no left text padding when window touches desktop border To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gwenview/+bug/1504071/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1448787] Re: Gwenview does not display PNM files
Thank you for taking the time to report this bug and helping to make Ubuntu better. We are sorry that we do not always have the capacity to review all reported bugs in a timely manner. Ubuntu 15.04 (vivid) reached end-of-life on February 4, 2016. I'm setting the status of this bug to 'Incomplete' as it's not seen any activity for some time. If this is still an issue when using a currently maintained release of Ubuntu then please let us know which one(s) otherwise this bug report can be left to expire in approximately 60 days time. ** Tags added: oneiric ** Changed in: gwenview (Ubuntu) Status: New => Incomplete ** Tags removed: oneiric ** Tags added: vivid -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1448787 Title: Gwenview does not display PNM files To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gwenview/+bug/1448787/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs