[Bug 2062950] [NEW] RE: Flickering problems on external monitor with HDMI after installing Ubuntu 23.10

2024-04-19 Thread J K
Public bug reported:

this is a continuation of the bug reported in
https://bugs.launchpad.net/ubuntu/+bug/2062504

I reinstalled ubuntu 23, and didn't install anything else. I'm still
having the flickering when connecting an HDMI to an external monitor.
please help

ProblemType: Bug
DistroRelease: Ubuntu 23.10
Package: xorg 1:7.7+23ubuntu2
ProcVersionSignature: Ubuntu 6.5.0-28.29-generic 6.5.13
Uname: Linux 6.5.0-28-generic x86_64
ApportVersion: 2.27.0-0ubuntu5
Architecture: amd64
BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
CasperMD5CheckResult: pass
CloudArchitecture: x86_64
CloudID: none
CloudName: none
CloudPlatform: none
CloudSubPlatform: config
CompositorRunning: None
CurrentDesktop: ubuntu:GNOME
Date: Fri Apr 19 22:27:21 2024
DistUpgraded: Fresh install
DistroCodename: mantic
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes, if not too technical
GraphicsCard:
 Intel Corporation Alder Lake-UP3 GT2 [Iris Xe Graphics] [8086:46a8] (rev 0c) 
(prog-if 00 [VGA controller])
   Subsystem: Lenovo Alder Lake-UP3 GT2 [Iris Xe Graphics] [17aa:50a6]
InstallationDate: Installed on 2024-04-20 (0 days ago)
InstallationMedia: Ubuntu 23.10.1 "Mantic Minotaur" - Release amd64 (20231016.1)
MachineType: {report['dmi.sys.vendor']} {report['dmi.product.name']}
ProcEnviron:
 LANG=en_US.UTF-8
 PATH=(custom, no user)
 SHELL=/bin/bash
 TERM=xterm-256color
 XDG_RUNTIME_DIR=
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-6.5.0-28-generic 
root=UUID=92611de2-ed0a-4611-b724-820a5d29be02 ro quiet splash vt.handoff=7
SourcePackage: xorg
Symptom: display
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 02/23/2024
dmi.bios.release: 1.23
dmi.bios.vendor: LENOVO
dmi.bios.version: R1UET46W (1.23 )
dmi.board.asset.tag: Not Available
dmi.board.name: 21B4S4QB00
dmi.board.vendor: LENOVO
dmi.board.version: SDK0T76465 WIN
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: None
dmi.ec.firmware.release: 1.14
dmi.modalias: 
dmi:bvnLENOVO:bvrR1UET46W(1.23):bd02/23/2024:br1.23:efr1.14:svnLENOVO:pn21B4S4QB00:pvrThinkPadL13Gen3:rvnLENOVO:rn21B4S4QB00:rvrSDK0T76465WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21B4_BU_Think_FM_ThinkPadL13Gen3:
dmi.product.family: ThinkPad L13 Gen 3
dmi.product.name: 21B4S4QB00
dmi.product.sku: LENOVO_MT_21B4_BU_Think_FM_ThinkPad L13 Gen 3
dmi.product.version: ThinkPad L13 Gen 3
dmi.sys.vendor: LENOVO
version.compiz: compiz N/A
version.libdrm2: libdrm2 2.4.115-1
version.libgl1-mesa-dri: libgl1-mesa-dri 23.2.1-1ubuntu3
version.libgl1-mesa-glx: libgl1-mesa-glx N/A
version.xserver-xorg-core: xserver-xorg-core 2:21.1.7-3ubuntu2.9
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.1.0-3
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20210115-1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.17-2build1

** Affects: xorg (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug mantic ubuntu 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/2062950

Title:
  RE: Flickering problems on external monitor with HDMI after installing
  Ubuntu 23.10

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


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

[Bug 1943480] Re: flatpak installation permission requirements different from ubuntu software

2024-04-19 Thread Jeff
Can confirm the principle of least surprise being violated here. It took me 
getting a permission error trying to replace a file to test a bugfix to realize 
that:
- Commands without explicit permission elevation do system-wide modifications
- A theoretically user level setup is not fully covered by the backup of user 
files due to modifications escaping outside of the environment modifiable by 
the user
- Storage usage sneaked out of the expected scope (home of the user). Not 
meaning just installed programs, but ".removed" and "repo" added up to double 
digit GiBs, towering above the "app" and "runtime" sizes the user is shown 
during installation

The mentioned issues all stem from the problem that elevation is done with no 
notice and the usual barriers missing like either having to use sudo, or (worse 
case) being asked for a password instead of just denying the operation without 
being root.
However, circumventing the password requirement for privilege escalation 
presents an interesting dilemma:
- Either passwordless sudo is not a security issue as the user is expected to 
keep his account secure, and the additional obstacle of entering the password 
doesn't provide (much) security
- Or the extra step of requiring a password can be relied on as a security 
feature, therefore a combo of app-uninstall + modify-repo + app-install with a 
malicious repository could be used for interactive privilege escalation in some 
cases

Not completely on-topic, but as there's a divergence in privilege elevation 
here, I'll add an extra concern and question:
As hardware security key support is starting to look good, how will it be 
possible to use one universally for privilege elevation? As I understand, 
PolKit is mostly independent from PAM, so merely requiring pam_u2f.so for sudo 
as a second factor might not provide any extra security if PolKit would be 
still okay with just the password.
Can't say I'm a huge fan of PAM, but the centralized configuration surely seems 
to have an advantage, especially in such cases like this where a project is 
allowed to "slip" in rules lowering the security requirements for system 
modification.

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

Title:
  flatpak installation permission requirements different from ubuntu
  software

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


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

[Bug 1943480] Re: flatpak installation permission requirements different from ubuntu software

2024-04-19 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: flatpak (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/1943480

Title:
  flatpak installation permission requirements different from ubuntu
  software

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


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

[Bug 2060429] Re: lubuntu noble - /usr/libexec/fixconkeys-part2 failed to finish in 30 seconds.

2024-04-19 Thread Launchpad Bug Tracker
This bug was fixed in the package calamares-settings-ubuntu - 1:24.04.37

---
calamares-settings-ubuntu (1:24.04.37) noble; urgency=medium

  * Correctly lengthen timeouts for network and initramfs package commands.
(LP: #2060429)

 -- Aaron Rainbolt   Fri, 19 Apr 2024 18:52:09
-0500

** Changed in: calamares-settings-ubuntu (Ubuntu)
   Status: Fix Committed => Fix Released

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

Title:
  lubuntu noble - /usr/libexec/fixconkeys-part2 failed to finish in 30
  seconds.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/calamares-settings-ubuntu/+bug/2060429/+subscriptions


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

[Bug 2060928] Re: First boot after OEM install should have a desktop icon installed for finishing setup

2024-04-19 Thread Launchpad Bug Tracker
This bug was fixed in the package calamares-settings-ubuntu - 1:24.04.37

---
calamares-settings-ubuntu (1:24.04.37) noble; urgency=medium

  * Correctly lengthen timeouts for network and initramfs package commands.
(LP: #2060429)

 -- Aaron Rainbolt   Fri, 19 Apr 2024 18:52:09
-0500

** Changed in: calamares-settings-ubuntu (Ubuntu Noble)
   Status: Fix Committed => Fix Released

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

Title:
  First boot after OEM install should have a desktop icon installed for
  finishing setup

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/calamares-settings-ubuntu/+bug/2060928/+subscriptions


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

[Bug 2062438] Re: pkgselect module offers Thunderbird as a third-party app on Kubuntu when Thunderbird ships with Kubuntu

2024-04-19 Thread Launchpad Bug Tracker
This bug was fixed in the package calamares-settings-ubuntu - 1:24.04.37

---
calamares-settings-ubuntu (1:24.04.37) noble; urgency=medium

  * Correctly lengthen timeouts for network and initramfs package commands.
(LP: #2060429)

 -- Aaron Rainbolt   Fri, 19 Apr 2024 18:52:09
-0500

** Changed in: calamares-settings-ubuntu (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/2062438

Title:
  pkgselect module offers Thunderbird as a third-party app on Kubuntu
  when Thunderbird ships with Kubuntu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/calamares-settings-ubuntu/+bug/2062438/+subscriptions


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

[Bug 2062949] Re: gnome-remote-desktop-daemon crashed with SIGSEGV in g_main_context_iteration()

2024-04-19 Thread bublyapplejuice2
I think the problem is that the Xwayland process is somehow not running
on the GPU. In 22.04's "Ubuntu on Wayland", I found that the GPU runs
three processes: XWayland, gnome-shell, and gnome-remote-desktop-daemon.
But in 24.04's "Ubuntu on Wayland", I found that only gnome-shell and
gnome-remote-desktop-daemon run on GPU, and Xwayland runs on CPU.
Instead, for some reason Xorg is running on the GPU without Xwayland.

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

Title:
  gnome-remote-desktop-daemon crashed with SIGSEGV in
  g_main_context_iteration()

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


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

[Bug 2062949] Re: gnome-remote-desktop-daemon crashed with SIGSEGV in g_main_context_iteration()

2024-04-19 Thread bublyapplejuice2
Additionally, although the RDP screen is completely black, I am able to
move my cursor around the display (cannot see the cursor exactly,
though) and using an SSH terminal watching nvidia-smi, I can see the GPU
utilization go up when I dart the cursor about the screen. So I believe
that input from my RDP client is making it into the VM, but somehow the
compositor is not running (so I cannot see anything on the RDP monitor,
just a blank black screen.)

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

Title:
  gnome-remote-desktop-daemon crashed with SIGSEGV in
  g_main_context_iteration()

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


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

[Bug 2062948] Re: intel-mediasdk: ftbfs with GCC-13

2024-04-19 Thread Bug Watch Updater
** Changed in: intel-mediasdk (Debian)
   Importance: Undecided => Unknown

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

Title:
  intel-mediasdk: ftbfs with GCC-13

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/intel-mediasdk/+bug/2062948/+subscriptions


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

[Bug 2062945] Re: Kubuntu 24.04 (Beta) Installer ISO shows Lubuntu artwork

2024-04-19 Thread Steve Langasek
** Package changed: ubiquity (Ubuntu) => kubuntu-meta (Ubuntu)

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

Title:
  Kubuntu 24.04 (Beta) Installer ISO shows Lubuntu artwork

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/kubuntu-meta/+bug/2062945/+subscriptions


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

[Bug 2062949] [NEW] gnome-remote-desktop-daemon crashed with SIGSEGV in g_main_context_iteration()

2024-04-19 Thread bublyapplejuice2
Public bug reported:

In 24.04, attempting to launch into a Remote Login RDP session (which
uses the wayland compositor) with an Nvidia GPU connected on the host
gives a black screen. The purpose of having the GPU is to provide HW
acceleration to gnome-remote-desktop on the host (the RDP host is a
24.04 VM.) The Nvidia GPU does not have a display adapter, therefore a
dummy adapter cannot be used to fool the machine into believing there is
a monitor attached. The Remote Login session is only black screen if the
Nvidia GPU is attached. When the RDP client (I am using the standard
Remote Desktop connection client on a Windows 10 device) logs out from
gnome-remote-desktop, both grd and gnome-shell crash with SIGSEGV.

In Ubuntu version 22.04, attaching a Nvidia GPU to the 22.04 host VM and
launching a gnome-remote-desktop on "Ubuntu on Wayland" did not cause a
crash or any black screens, and the RDP instance had fully supported HW
acceleration for the desktop.

ProblemType: Crash
DistroRelease: Ubuntu 24.04
Package: gnome-remote-desktop 46.1-1
ProcVersionSignature: Ubuntu 6.8.0-22.22-generic 6.8.1
Uname: Linux 6.8.0-22-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.28.0-0ubuntu1
Architecture: amd64
CasperMD5CheckResult: pass
Date: Fri Apr 19 00:29:37 2024
ExecutablePath: /usr/libexec/gnome-remote-desktop-daemon
InstallationDate: Installed on 2024-04-18 (1 days ago)
InstallationMedia: Ubuntu 24.04 LTS "Noble Numbat" - Beta amd64 (20240410.2)
ProcCmdline: /usr/libexec/gnome-remote-desktop-daemon --system
ProcEnviron:
 LANG=en_US.UTF-8
 PATH=(custom, no user)
SegvAnalysis:
 Segfault happened at: 0x76f9b13c9a11:  cmpq   $0x0,0x18(%rax)
 PC (0x76f9b13c9a11) ok
 source "$0x0" ok
 destination "0x18(%rax)" (0x0018) not located in a known VMA region 
(needed writable region)!
SegvReason: writing NULL VMA
Signal: 11
SignalName: SIGSEGV
SourcePackage: gnome-remote-desktop
StacktraceTop:
 ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
 ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
 ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
 g_main_context_iteration () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
 g_application_run () from /lib/x86_64-linux-gnu/libgio-2.0.so.0
Title: gnome-remote-desktop-daemon crashed with SIGSEGV in 
g_main_context_iteration()
UpgradeStatus: No upgrade log present (probably fresh install)
UserGroups: N/A
separator:

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

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


** Tags: amd64 apport-crash need-amd64-retrace noble

** Information type changed from Private to Public

** Also affects: gnome-shell (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/2062949

Title:
  gnome-remote-desktop-daemon crashed with SIGSEGV in
  g_main_context_iteration()

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


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

[Bug 2053019] Re: [nvidia] Second (external) monitor not active after screen lock in Xorg

2024-04-19 Thread Launchpad Bug Tracker
[Expired for mutter (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  [nvidia] Second (external) monitor not active after screen lock in
  Xorg

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


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

[Bug 2053019] Re: [nvidia] Second (external) monitor not active after screen lock in Xorg

2024-04-19 Thread Launchpad Bug Tracker
[Expired for nvidia-graphics-drivers-535 (Ubuntu) because there has been
no activity for 60 days.]

** Changed in: nvidia-graphics-drivers-535 (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  [nvidia] Second (external) monitor not active after screen lock in
  Xorg

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


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

[Bug 2054270] Re: package rabbitmq-server 3.8.2-0ubuntu1.5 failed to install/upgrade: installed rabbitmq-server package post-installation script subprocess returned error exit status 1

2024-04-19 Thread Launchpad Bug Tracker
[Expired for rabbitmq-server (Ubuntu) because there has been no activity
for 60 days.]

** Changed in: rabbitmq-server (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  package rabbitmq-server 3.8.2-0ubuntu1.5 failed to install/upgrade:
  installed rabbitmq-server package post-installation script subprocess
  returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/rabbitmq-server/+bug/2054270/+subscriptions


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

[Bug 2054181] Re: Monitor Not Detected when Connected to Belkin Docking Station via DisplayPort on Ubuntu

2024-04-19 Thread Launchpad Bug Tracker
[Expired for linux-hwe-6.5 (Ubuntu) because there has been no activity
for 60 days.]

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

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

Title:
  Monitor Not Detected when Connected to Belkin Docking Station via
  DisplayPort on Ubuntu

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


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

[Bug 2062945] Re: Kubuntu 24.04 (Beta) Installer ISO shows Lubuntu artwork

2024-04-19 Thread Ubuntu Foundations Team Bug Bot
** Package changed: ubuntu => ubiquity (Ubuntu)

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

Title:
  Kubuntu 24.04 (Beta) Installer ISO shows Lubuntu artwork

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


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

[Bug 2062406] Re: CVE-2024-32462: Sandbox escape via RequestBackground portal and CWE-88

2024-04-19 Thread Jeff
Covering just Noble isn't really enough with Mantic and Jammy still providing 
vulnerable packages according to the advisory listing affected versions as:
- < 1.10.9
- 1.12.x < 1.12.9
- 1.14.x < 1.14.6
- 1.15.x < 1.15.8

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

Title:
  CVE-2024-32462: Sandbox escape via RequestBackground portal and CWE-88

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


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

[Bug 2062377] Re: Ubuntu 24.04: gnome-shell crashes on Xorg if a legacy X11 cursor theme is selected

2024-04-19 Thread Daniel van Vugt
** Summary changed:

- Ubuntu 24.04. Xorg crash when dmz-white cursor is selected
+ Ubuntu 24.04: gnome-shell crashes on Xorg if a legacy X11 cursor theme is 
selected

** Changed in: mutter (Ubuntu)
 Assignee: (unassigned) => Daniel van Vugt (vanvugt)

** Changed in: mutter (Ubuntu)
Milestone: None => noble-updates

** Changed in: mutter (Ubuntu)
   Status: Confirmed => Triaged

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

Title:
  Ubuntu 24.04: gnome-shell crashes on Xorg if a legacy X11 cursor theme
  is selected

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


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

[Bug 2062538] Re: Dragging the top bar shows desktop icons above app window

2024-04-19 Thread Daniel van Vugt
I thought DING was working on changing the window type to DESKTOP
because of:

https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3108

If we could use the DESKTOP type on Wayland then it would avoid this
bug, but it looks like it's not done yet:

https://gitlab.com/rastersoft/desktop-icons-
ng/-/blob/master/app/desktopGrid.js#L73

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

Title:
  Dragging the top bar shows desktop icons above app window

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell-extension-desktop-icons-ng/+bug/2062538/+subscriptions


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

[Bug 2062538] Re: Clicking the top bar shows desktop icons above app window

2024-04-19 Thread Daniel van Vugt
** Changed in: gnome-shell (Ubuntu)
   Importance: Undecided => Low

** Changed in: gnome-shell-extension-desktop-icons-ng (Ubuntu)
   Importance: Undecided => Low

** Package changed: gnome-shell (Ubuntu) => mutter (Ubuntu)

** Summary changed:

- Clicking the top bar shows desktop icons above app window
+ Dragging the top bar shows desktop icons above app window

** Changed in: gnome-shell-extension-desktop-icons-ng (Ubuntu)
   Status: Confirmed => Triaged

** Changed in: mutter (Ubuntu)
   Status: Confirmed => Triaged

** Tags added: jammy

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

Title:
  Dragging the top bar shows desktop icons above app window

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell-extension-desktop-icons-ng/+bug/2062538/+subscriptions


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

[Bug 2062538] Re: Clicking the top bar shows desktop icons above app window

2024-04-19 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: gnome-shell-extension-desktop-icons-ng (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/2062538

Title:
  Dragging the top bar shows desktop icons above app window

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell-extension-desktop-icons-ng/+bug/2062538/+subscriptions


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

[Bug 2062538] Re: Clicking the top bar shows desktop icons above app window

2024-04-19 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: gnome-shell (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/2062538

Title:
  Dragging the top bar shows desktop icons above app window

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell-extension-desktop-icons-ng/+bug/2062538/+subscriptions


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

[Bug 2062538] Re: Clicking the top bar shows desktop icons above app window

2024-04-19 Thread Daniel van Vugt
I've noticed this in the past. It might be because DING had to use a
maximized window on Wayland:

https://gitlab.com/rastersoft/desktop-icons-ng/-/merge_requests/356

and so it also gets maximize/unmaximize animations if you drag the top
bar.

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

Title:
  Dragging the top bar shows desktop icons above app window

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell-extension-desktop-icons-ng/+bug/2062538/+subscriptions


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

[Bug 2062948] [NEW] intel-mediasdk: ftbfs with GCC-13

2024-04-19 Thread Zixing Liu
Public bug reported:

Imported from Debian bug http://bugs.debian.org/1037699:

Package: src:intel-mediasdk
Version: 22.5.4-1
Severity: normal
Tags: sid trixie
User: debian-...@lists.debian.org
Usertags: ftbfs-gcc-13

[This bug is targeted to the upcoming trixie release]

Please keep this issue open in the bug tracker for the package it
was filed for.  If a fix in another package is required, please
file a bug for the other package (or clone), and add a block in this
package. Please keep the issue open until the package can be built in
a follow-up test rebuild.

The package fails to build in a test rebuild on at least amd64 with
gcc-13/g++-13, but succeeds to build with gcc-12/g++-12. The
severity of this report will be raised before the trixie release.

The full build log can be found at:
http://qa-logs.debian.net/2023/05/22/logs/intel-mediasdk_22.5.4-1_unstable_gccexp.log
The last lines of the build log are at the end of this report.

To build with GCC 13, either set CC=gcc-13 CXX=g++-13 explicitly,
or install the gcc, g++, gfortran, ... packages from experimental.

  apt-get -t=experimental install g++

Common build failures are new warnings resulting in build failures with
-Werror turned on, or new/dropped symbols in Debian symbols files.
For other C/C++ related build failures see the porting guide at
http://gcc.gnu.org/gcc-13/porting_to.html

[...]
cd /<>/build/samples/sample_common && /usr/bin/c++  
-I/<>/api/mediasdk_structures -I/<>/api/include 
-I/<>/build -I/<>/samples/sample_common/include 
-I/<>/samples/sample_common/../sample_misc/wayland/include 
-DMFX_TRACE_ENABLE_STAT -DMFX_TRACE_ENABLE_TEXTLOG -m64 -g -g -O2 
-ffile-prefix-map=/<>=. -fstack-protector-strong -Wformat 
-Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -pipe -fPIC -Wall 
-Wformat -Wformat-security -Wnon-virtual-dtor -Wno-deprecated-declarations 
-Wno-unknown-pragmas -Wno-unused  -DUNIX -D__USE_LARGEFILE64 
-D_FILE_OFFSET_BITS=64 -DLINUX -DLINUX32 -DLINUX64  
-DMFX_BUILD_INFO="\"Linux-5.10.0-21-cloud-amd64 5.10.0-21-cloud-amd64 | GNU 
13.1.0 | glibc 2.36\"" -DMFX_API_VERSION="\"1.35\"" -DMFX_GIT_COMMIT="\"hashsum 
unknown\"" -DMEDIA_VERSION_STR="\"22.5.4\"" -I/usr/include/libdrm -DMFX_VA 
-DLIBVA_SUPPORT -DLIBVA_DRM_SUPPORT -DLIBVA_X11_SUPPORT   -I/usr/include/libdrm 
   -DLIBVA_SUPPORT -DLIBVA_DRM_SUPPORT -DLIBVA_X11_SUPPORT  -DX11_DRI3_SUPPORT 
-DLIBVA_WAYLAND_SUPPORT  -std=gnu++14 -MD -MT 
samples/sample_common/CMakeFiles/sample_common.dir/src/vm/time.cpp.o -MF 
CMakeFiles/sample_common.dir/src/vm/time.cpp.o.d -o 
CMakeFiles/sample_common.dir/src/vm/time.cpp.o -c 
/<>/samples/sample_common/src/vm/time.cpp
[ 10%] Building CXX object 
samples/sample_common/CMakeFiles/sample_common.dir/src/vm/time_linux.cpp.o
cd /<>/build/samples/sample_common && /usr/bin/c++  
-I/<>/api/mediasdk_structures -I/<>/api/include 
-I/<>/build -I/<>/samples/sample_common/include 
-I/<>/samples/sample_common/../sample_misc/wayland/include 
-DMFX_TRACE_ENABLE_STAT -DMFX_TRACE_ENABLE_TEXTLOG -m64 -g -g -O2 
-ffile-prefix-map=/<>=. -fstack-protector-strong -Wformat 
-Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -pipe -fPIC -Wall 
-Wformat -Wformat-security -Wnon-virtual-dtor -Wno-deprecated-declarations 
-Wno-unknown-pragmas -Wno-unused  -DUNIX -D__USE_LARGEFILE64 
-D_FILE_OFFSET_BITS=64 -DLINUX -DLINUX32 -DLINUX64  
-DMFX_BUILD_INFO="\"Linux-5.10.0-21-cloud-amd64 5.10.0-21-cloud-amd64 | GNU 
13.1.0 | glibc 2.36\"" -DMFX_API_VERSION="\"1.35\"" -DMFX_GIT_COMMIT="\"hashsum 
unknown\"" -DMEDIA_VERSION_STR="\"22.5.4\"" -I/usr/include/libdrm -DMFX_VA 
-DLIBVA_SUPPORT -DLIBVA_DRM_SUPPORT -DLIBVA_X11_SUPPORT   -I/usr/include/libdrm 
   -DLIBVA_SUPPORT -DLIBVA_DRM_SUPPORT -DLIBVA_X11_SUPPORT  -DX11_DRI3_SUPPORT 
-DLIBVA_WAYLAND_SUPPORT  -std=gnu++14 -MD -MT 
samples/sample_common/CMakeFiles/sample_common.dir/src/vm/time_linux.cpp.o -MF 
CMakeFiles/sample_common.dir/src/vm/time_linux.cpp.o.d -o 
CMakeFiles/sample_common.dir/src/vm/time_linux.cpp.o -c 
/<>/samples/sample_common/src/vm/time_linux.cpp
[ 10%] Building CXX object 
samples/sample_common/CMakeFiles/sample_common.dir/src/vpp_ex.cpp.o
cd /<>/build/samples/sample_common && /usr/bin/c++  
-I/<>/api/mediasdk_structures -I/<>/api/include 
-I/<>/build -I/<>/samples/sample_common/include 
-I/<>/samples/sample_common/../sample_misc/wayland/include 
-DMFX_TRACE_ENABLE_STAT -DMFX_TRACE_ENABLE_TEXTLOG -m64 -g -g -O2 
-ffile-prefix-map=/<>=. -fstack-protector-strong -Wformat 
-Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -pipe -fPIC -Wall 
-Wformat -Wformat-security -Wnon-virtual-dtor -Wno-deprecated-declarations 
-Wno-unknown-pragmas -Wno-unused  -DUNIX -D__USE_LARGEFILE64 
-D_FILE_OFFSET_BITS=64 -DLINUX -DLINUX32 -DLINUX64  
-DMFX_BUILD_INFO="\"Linux-5.10.0-21-cloud-amd64 5.10.0-21-cloud-amd64 | GNU 
13.1.0 | glibc 2.36\"" -DMFX_API_VERSION="\"1.35\"" -DMFX_GIT_COMMIT="\"hashsum 
unknown\"" -DMEDIA_VERSION_STR="\"22.5.4\"" -I/usr/include/libdrm -DMFX_VA 
-DLIBVA_SUPPORT 

[Bug 2062445] Re: gnome-shell-extension-alphabetical-grid does not compile gschemas upon compilation

2024-04-19 Thread Launchpad Bug Tracker
This bug was fixed in the package gnome-shell-extension-alphabetical-
grid - 40.0-0ubuntu2

---
gnome-shell-extension-alphabetical-grid (40.0-0ubuntu2) noble; urgency=medium

  * d/postinst: compile gschemas upon configuration (LP: #2062445)

 -- Erich Eickmeyer   Thu, 18 Apr 2024 19:11:16
-0700

** Changed in: gnome-shell-extension-alphabetical-grid (Ubuntu)
   Status: Fix Committed => Fix Released

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

Title:
  gnome-shell-extension-alphabetical-grid does not compile gschemas upon
  compilation

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell-extension-alphabetical-grid/+bug/2062445/+subscriptions


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

[Bug 2006590] Re: gdm3 crashes with SIGTRAP on startup

2024-04-19 Thread Allen
*** This bug is a duplicate of bug 1717878 ***
https://bugs.launchpad.net/bugs/1717878

  sudo apt install --reinstall ubuntu-session

worked for me as well

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

Title:
  gdm3 crashes with SIGTRAP on startup

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


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

[Bug 2018504] Re: cups-browsed is using an excessive amount of CPU

2024-04-19 Thread Holden Karau
+1 also running into this
If I restart cups the issue goes away for "awhile" though (interestingly 
printing does not seem to impact cups meaning it's probably behavior that is 
unrelated to the printing).

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

Title:
  cups-browsed is using an excessive amount of CPU

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cups-browsed/+bug/2018504/+subscriptions


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

[Bug 2061313] Re: New Kubuntu icon's transparent background looks broken in some areas

2024-04-19 Thread Launchpad Bug Tracker
This bug was fixed in the package kubuntu-settings - 1:24.04.11

---
kubuntu-settings (1:24.04.11) noble; urgency=medium

  * Actually fix the face icons for both SDDM and Plasma. (LP: #2061313)

 -- Aaron Rainbolt   Fri, 19 Apr 2024 15:30:06
-0400

** Changed in: kubuntu-settings (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/2061313

Title:
  New Kubuntu icon's transparent background looks broken in some areas

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/kubuntu-settings/+bug/2061313/+subscriptions


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

[Bug 2062947] [NEW] chmlib: FTBFS: chm_http.c:167:32: error: implicit declaration of function ‘inet_addr’ [-Werror=implicit-function-declaration]

2024-04-19 Thread Zixing Liu
Public bug reported:

Imported from Debian bug http://bugs.debian.org/1066327:

Source: chmlib
Version: 2:0.40a-8
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> x86_64-linux-gnu-gcc -DPACKAGE_NAME=\"chmlib\" -DPACKAGE_TARNAME=\"chmlib\" 
> -DPACKAGE_VERSION=\"0.40\" -DPACKAGE_STRING=\"chmlib\ 0.40\" 
> -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"chmlib\" 
> -DVERSION=\"0.40\" -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 
> -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 
> -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_DLFCN_H=1 
> -DLT_OBJDIR=\".libs/\" -DHAVE_STRING_H=1 -DHAVE_STRINGS_H=1 -DHAVE_UNISTD_H=1 
> -DHAVE_LIBPTHREAD=1 -DHAVE_MALLOC=1 -I.   -Wdate-time -D_FORTIFY_SOURCE=2  -g 
> -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -DCHM_MT -DCHM_USE_PREAD -DCHM_USE_IO64 
> -MT test_chmLib.o -MD -MP -MF .deps/test_chmLib.Tpo -c -o test_chmLib.o 
> test_chmLib.c
> chm_http.c: In function ‘chmhttp_server’:
> chm_http.c:167:32: error: implicit declaration of function ‘inet_addr’ 
> [-Werror=implicit-function-declaration]
>   167 | bindAddr.sin_addr.s_addr = inet_addr(config_bind);
>   |^
> chm_http.c:179:9: error: implicit declaration of function ‘close’; did you 
> mean ‘pclose’? [-Werror=implicit-function-declaration]
>   179 | close(server.socket);
>   | ^
>   | pclose
> chm_http.c:192:73: warning: pointer targets in passing argument 3 of ‘accept’ 
> differ in signedness [-Wpointer-sign]
>   192 | slave->fd = accept(server.socket, (struct sockaddr 
> *), );
>   |   
>   ^~~~
>   |   
>   |
>   |   
>   int *
> In file included from chm_http.c:43:
> /usr/include/x86_64-linux-gnu/sys/socket.h:307:42: note: expected ‘socklen_t 
> * restrict’ {aka ‘unsigned int * restrict’} but argument is of type ‘int *’
>   307 |socklen_t *__restrict __addr_len);
>   |~~^~
> chm_http.c: In function ‘service_request’:
> chm_http.c:343:9: error: implicit declaration of function ‘write’; did you 
> mean ‘fwrite’? [-Werror=implicit-function-declaration]
>   343 | write(fd, INTERNAL_ERROR, strlen(INTERNAL_ERROR));
>   | ^
>   | fwrite
> chm_http.c:348:5: warning: ignoring return value of ‘fgets’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>   348 | fgets(buffer, 4096, fout);
>   | ^
> mv -f .deps/enum_chmLib.Tpo .deps/enum_chmLib.Po
> libtool: compile:  x86_64-linux-gnu-gcc -DPACKAGE_NAME=\"chmlib\" 
> -DPACKAGE_TARNAME=\"chmlib\" -DPACKAGE_VERSION=\"0.40\" 
> "-DPACKAGE_STRING=\"chmlib 0.40\"" -DPACKAGE_BUGREPORT=\"\" 
> -DPACKAGE_URL=\"\" -DPACKAGE=\"chmlib\" -DVERSION=\"0.40\" -DHAVE_STDIO_H=1 
> -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 
> -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 
> -DSTDC_HEADERS=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_STRING_H=1 
> -DHAVE_STRINGS_H=1 -DHAVE_UNISTD_H=1 -DHAVE_LIBPTHREAD=1 -DHAVE_MALLOC=1 -I. 
> -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wall -Wdate-time -D_FORTIFY_SOURCE=2 -DCHM_MT -DCHM_USE_PREAD -DCHM_USE_IO64 
> -MT lzx.lo -MD -MP -MF .deps/lzx.Tpo -c lzx.c  -fPIC -DPIC -o .libs/lzx.o
> mv -f .deps/enumdir_chmLib.Tpo .deps/enumdir_chmLib.Po
> mv -f .deps/test_chmLib.Tpo .deps/test_chmLib.Po
> libtool: compile:  x86_64-linux-gnu-gcc -DPACKAGE_NAME=\"chmlib\" 
> -DPACKAGE_TARNAME=\"chmlib\" -DPACKAGE_VERSION=\"0.40\" 
> "-DPACKAGE_STRING=\"chmlib 0.40\"" -DPACKAGE_BUGREPORT=\"\" 
> -DPACKAGE_URL=\"\" -DPACKAGE=\"chmlib\" -DVERSION=\"0.40\" -DHAVE_STDIO_H=1 
> -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 
> -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 
> -DSTDC_HEADERS=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_STRING_H=1 
> -DHAVE_STRINGS_H=1 

[Bug 2062945] [NEW] Kubuntu 24.04 (Beta) Installer ISO shows Lubuntu artwork

2024-04-19 Thread ngerima
Public bug reported:

When doing a fresh install of Kubuntu 24.04 (Beta), and choosing the
"install to disk" option rather than the Live CD option, during the
actual installation of the operating system, the artwork and messaging
that's shown to the user (the commercials) are for Lubuntu rather than
Kubuntu. This is probably an oversight but it should probably be
corrected before 24.04 goes live in a few days. Apologies if this bug
has already been reported.

Thank you

ProblemType: Bug
DistroRelease: Ubuntu 24.04
Package: ubiquity (not installed)
ProcVersionSignature: Ubuntu 6.8.0-22.22-generic 6.8.1
Uname: Linux 6.8.0-22-generic x86_64
ApportVersion: 2.28.0-0ubuntu1
Architecture: amd64
CasperMD5CheckResult: unknown
CurrentDesktop: KDE
Date: Fri Apr 19 22:05:28 2024
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz --- quiet splash
InstallationDate: Installed on 2024-04-20 (0 days ago)
InstallationMedia: Kubuntu 24.04 LTS "Noble Numbat" - Beta amd64 (20240411.2)
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: 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/2062945

Title:
  Kubuntu 24.04 (Beta) Installer ISO shows Lubuntu artwork

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


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

[Bug 2060378] Re: ubuntu stuck at every day

2024-04-19 Thread Seth Arnold
Hello, input/output errors like this are usually an indicator of failing
hardware. Make sure your backups are in good working order, and make
sure you don't overwrite backups with bad data.

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

Title:
  ubuntu stuck at every day

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


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

[Bug 2060389] Re: Lock screen doesn't prevent media keys from working

2024-04-19 Thread Seth Arnold
Hello Jussi, thanks for the report. I believe this is an intentional
design choice -- if someone cannot stop music gently they may do so
violently.

Thanks

** Changed in: gnome-shell (Ubuntu)
   Status: New => Won't Fix

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

Title:
  Lock screen doesn't prevent media keys from working

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


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

[Bug 1393322] Re: lsar: verylong doesn't show timestamp correctly

2024-04-19 Thread Bug Watch Updater
** Changed in: unar (Debian)
   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/1393322

Title:
  lsar: verylong doesn't show timestamp correctly

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


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

[Bug 2060084] Re: tracker-extract-3 crashed with SIGSYS in epoll_wait()

2024-04-19 Thread Seth Arnold
Thanks for taking the time to report this bug and helping to make Ubuntu
better. We appreciate the difficulties you are facing, but this appears
to be a "regular" (non-security) bug.  I have unmarked it as a security
issue since this bug does not show evidence of allowing attackers to
cross privilege boundaries nor directly cause loss of data/privacy.
Please feel free to report any other bugs you may find.

** Information type changed from Private Security to Public

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

Title:
  tracker-extract-3 crashed with SIGSYS in epoll_wait()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tracker-miners/+bug/2060084/+subscriptions


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

[Bug 2058690] Re: aa-easyprof: allow mmap and link from easyprof generated profiles

2024-04-19 Thread Seth Arnold
The 'm' permission shouldn't be a default; restricting what the CPU will
execute is a very useful security mitigation.

Thanks

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

Title:
  aa-easyprof: allow mmap and link from easyprof generated profiles

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


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

[Bug 2059125] Re: tracker-extract-3 crashed with SIGSYS in __GI_epoll_pwait()

2024-04-19 Thread Seth Arnold
Thanks for taking the time to report this bug and helping to make Ubuntu
better. We appreciate the difficulties you are facing, but this appears
to be a "regular" (non-security) bug.  I have unmarked it as a security
issue since this bug does not show evidence of allowing attackers to
cross privilege boundaries nor directly cause loss of data/privacy.
Please feel free to report any other bugs you may find.

** Information type changed from Private Security to Public

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

Title:
  tracker-extract-3 crashed with SIGSYS in __GI_epoll_pwait()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tracker-miners/+bug/2059125/+subscriptions


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

[Bug 2058755] Re: tracker-extract-3 crashed with SIGSYS in __GI_epoll_pwait()

2024-04-19 Thread Seth Arnold
Thanks for taking the time to report this bug and helping to make Ubuntu
better. We appreciate the difficulties you are facing, but this appears
to be a "regular" (non-security) bug.  I have unmarked it as a security
issue since this bug does not show evidence of allowing attackers to
cross privilege boundaries nor directly cause loss of data/privacy.
Please feel free to report any other bugs you may find.

** Information type changed from Private Security to Public

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

Title:
  tracker-extract-3 crashed with SIGSYS in __GI_epoll_pwait()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tracker-miners/+bug/2058755/+subscriptions


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

[Bug 2062549] Re: Ubuntu Kylin 24.04 LTS: plymouth text says Ubuntu Kylin 23.10

2024-04-19 Thread handsome_feng
** Changed in: ubuntukylin-theme (Ubuntu)
 Assignee: (unassigned) => handsome_feng (feng-kylin)

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

Title:
  Ubuntu Kylin 24.04 LTS: plymouth text says Ubuntu Kylin 23.10

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntukylin-theme/+bug/2062549/+subscriptions


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

[Bug 2058688] Re: gnome-shell crashed with SIGABRT

2024-04-19 Thread Seth Arnold
Thanks for taking the time to report this bug and helping to make Ubuntu
better. We appreciate the difficulties you are facing, but this appears
to be a "regular" (non-security) bug.  I have unmarked it as a security
issue since this bug does not show evidence of allowing attackers to
cross privilege boundaries nor directly cause loss of data/privacy.
Please feel free to report any other bugs you may find.

** Information type changed from Private Security to Public

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

Title:
  gnome-shell crashed with SIGABRT

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


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

[Bug 2057943] Re: Can't disable or modify snap package apparmor rules

2024-04-19 Thread Seth Arnold
I'm adding the snapd package as it feels plausible that snapd could make
this task easier, too.

** Also affects: snapd (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/2057943

Title:
  Can't disable or modify snap package apparmor rules

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


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

[Bug 2062943] Re: Text select on Ubunut 24.04 doest not copy to clipboard for system use

2024-04-19 Thread MattRose
There's been no changes to Terminator in months, and I can't reproduce
it in 22.04.

btw, all development on terminator has been moved to Github
https://github.com/gnome-terminator/terminator

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

Title:
  Text select on Ubunut 24.04 doest not copy to clipboard for system use

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


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

[Bug 2062412] Re: No input through internal microphone (Ryzen 6000)

2024-04-19 Thread blszyn
Commit b44a34f581b0 applies to type 21J2 but Lenovo Thinkpad P14s (AMD)
Gen 4 is type 21K5.

Mario - you commented on a commit regarding type 21K5 here

https://lore.kernel.org/lkml/cbf8ac6f-5e8d-4430-aba7-853cded5a...@michaelkloos.com/T/

Should 21K5 be included in the Quirks List?

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

Title:
  No input through internal microphone (Ryzen 6000)

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


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

[Bug 2062916] Re: evolution has undefined symbol in newest libwebkit2gtk

2024-04-19 Thread Jeremy Bícha
** Also affects: webkit2gtk (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: webkit2gtk (Ubuntu)
   Importance: Undecided => Critical

** Information type changed from Public to Public Security

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

** Tags added: regression-update

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

Title:
  evolution  has undefined symbol in newest libwebkit2gtk

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


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

[Bug 2062943] [NEW] Text select on Ubunut 24.04 doest not copy to clipboard for system use

2024-04-19 Thread Maxx
Public bug reported:

On the beta release of Ubuntu 24.04.
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=24.04
DISTRIB_CODENAME=noble
DISTRIB_DESCRIPTION="Ubuntu Noble Numbat (development branch)"
(on the up-to-date package upgrade)

The select to copy text that works with previous releases of Ubuntu does not 
copy text to the clipboard for use in other applications. It does work within 
terminator.
The right-click ->  works  but one of the features that makes 
Terminator great is the ability to quickly copy text to the clipboard to paste 
to a browser or IDE, etc, isn't working.
Hopefully it gets fixed before 24.04 gets a full release next week.

** Affects: terminator (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/2062943

Title:
  Text select on Ubunut 24.04 doest not copy to clipboard for system use

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


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

[Bug 2062916] Re: evolution has undefined symbol in newest libwebkit2gtk

2024-04-19 Thread Lloyd Kvam
** Package changed: webkit2gtk (Ubuntu) => evolution (Ubuntu)

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

Title:
  evolution  has undefined symbol in newest libwebkit2gtk

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


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

[Bug 2060973] Re: st: FTBFS on arm{el,hf}: res.c:115:12: error: implicit declaration of function ‘_getshort’; did you mean ‘__putshort’? [-Werror=implicit-function-declaration]

2024-04-19 Thread Bug Watch Updater
** Changed in: st (Debian)
   Status: New => Fix Released

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

Title:
  st: FTBFS on arm{el,hf}: res.c:115:12: error: implicit declaration of
  function ‘_getshort’; did you mean ‘__putshort’? [-Werror=implicit-
  function-declaration]

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


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

[Bug 2052782] Re: kio-gdrive hangs with no apparant reason

2024-04-19 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: signon-ui (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/2052782

Title:
  kio-gdrive hangs with no apparant reason

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/kio-gdrive/+bug/2052782/+subscriptions


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

[Bug 2058692] Re: black autopkgtest fails because python3-typed-ast no longer in archive

2024-04-19 Thread Bug Watch Updater
** Changed in: black (Debian)
   Status: New => Fix Released

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

Title:
  black autopkgtest fails because python3-typed-ast no longer in archive

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


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

[Bug 2061214] Re: Software sources not correctly updated after upgrade and/or new installs

2024-04-19 Thread ԜаӀtеr Ⅼарсһуnѕkі
I also did a fresh install of Kubuntu with Noble 20240419 and the same
results are to be found as with Lubuntu above.

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

Title:
  Software sources not correctly updated after upgrade and/or new
  installs

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/software-properties/+bug/2061214/+subscriptions


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

[Bug 2062942] [NEW] Cannot load Google Drive

2024-04-19 Thread denz
*** This bug is a duplicate of bug 2052782 ***
https://bugs.launchpad.net/bugs/2052782

Public bug reported:

Clicked on File Manager in the bottom task bar. Under Remote clicked on
network, then double clicked on Google Drive. It just sits there on
Loading and never seems to load the files on my Google Drive.

Normally the Google drive should load displaying al the files and
folders there.

This is Kubuntu 24.04 Beta running in a VM.

KDE Plasma Version: 5.27.11
KDE Frameworks Version: 5.115.0
Kernel Version: 6.8.0-28-generic (64-bit)
Graphics Platform: X11

** Affects: kio-gdrive (Ubuntu)
 Importance: Undecided
 Status: New

** Package changed: kdebluetooth (Ubuntu) => kio-gdrive (Ubuntu)

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

Title:
  Cannot load Google Drive

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/kio-gdrive/+bug/2062942/+subscriptions


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

[Bug 2062942] Re: Cannot load Google Drive

2024-04-19 Thread denz
*** This bug is a duplicate of bug 2052782 ***
https://bugs.launchpad.net/bugs/2052782

I think this might be a duplicate. Sorry about that.

** This bug has been marked a duplicate of bug 2052782
   kio-gdrive hangs with no apparant reason

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

Title:
  Cannot load Google Drive

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/kio-gdrive/+bug/2062942/+subscriptions


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

[Bug 2062916] Re: evolution has undefined symbol in newest libwebkit2gtk

2024-04-19 Thread Lloyd Kvam
** Project changed: libwebkitnode => webkit2gtk (Ubuntu)

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

Title:
  evolution  has undefined symbol in newest libwebkit2gtk

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


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

[Bug 2060805] Re: strace fails to build it's tests on arm-linux-gnueabihf with 64bit time_t

2024-04-19 Thread Bug Watch Updater
** Changed in: strace
   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/2060805

Title:
  strace fails to build it's tests on arm-linux-gnueabihf with 64bit
  time_t

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


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

[Bug 2062927] Re: Ambiguity in mdns configuration

2024-04-19 Thread Ubuntu Foundations Team Bug Bot
Thank you for taking the time to report this bug and helping to make
Ubuntu better.  It seems that your bug report is not filed about a
specific source package though, rather it is just filed against Ubuntu
in general.  It is important that bug reports be filed about source
packages so that people interested in the package can find the bugs
about it.  You can find some hints about determining what package your
bug might be about at https://wiki.ubuntu.com/Bugs/FindRightPackage.
You might also ask for help in the #ubuntu-bugs irc channel on
Libera.chat.

To change the source package that this bug is filed about visit
https://bugs.launchpad.net/ubuntu/+bug/2062927/+editstatus and add the
package name in the text box next to the word Package.

[This is an automated message.  I apologize if it reached you
inappropriately; please just reply to this message indicating so.]

** Tags added: bot-comment

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

Title:
  Ambiguity in mdns configuration

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


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

[Bug 2062916] [NEW] evolution has undefined symbol in newest libwebkit2gtk

2024-04-19 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

evolution: symbol lookup error: /lib/x86_64-linux-
gnu/libwebkit2gtk-4.0.so.37: undefined symbol:
gbm_bo_create_with_modifiers2


The libwebkit2gtk version is
libwebkit2gtk-4.0-37_2.44.0-0ubuntu0.22.04.1_amd64.deb

** Affects: webkit2gtk (Ubuntu)
 Importance: Undecided
 Status: New

-- 
evolution  has undefined symbol in newest libwebkit2gtk
https://bugs.launchpad.net/bugs/2062916
You received this bug notification because you are a member of Ubuntu Bugs, 
which is subscribed to Ubuntu.

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

[Bug 2061214] Re: Software sources not correctly updated after upgrade and/or new installs

2024-04-19 Thread ԜаӀtеr Ⅼарсһуnѕkі
Just did a fresh install of Lubuntu with Noble 20240419 and I can
confirm that the "Ubuntu Software" pane is entirely unchecked but
"Prompt=lts" as expected.

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

Title:
  Software sources not correctly updated after upgrade and/or new
  installs

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/software-properties/+bug/2061214/+subscriptions


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

[Bug 2062377] Re: Ubuntu 24.04. Xorg crash when dmz-white cursor is selected

2024-04-19 Thread vadim
I don't know how to write the path to the cursor file
breeze cursors is a separate folder
And the cursor in the yaru is in /Yaru/cursors
I tried to write the full path there and it didn’t work, I don’t know how to 
write the path to the cursor

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

Title:
  Ubuntu 24.04. Xorg crash when dmz-white cursor is selected

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


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

[Bug 2062075] Re: installer does not detect an installation of DragonflyBSD with UFS

2024-04-19 Thread ԜаӀtеr Ⅼарсһуnѕkі
Ok, so trimming the description down to UFS.

Even then, I'm not sure it's reasonable to expect that installers would
detect it. I mean, AFAIK, UFS support is limited to read only. Which
should be sufficient, but, that may explain why it's poorly supported.

** Summary changed:

- installer does not detect an installation of DragonflyBSD with UFS, HAMMER, 
or HAMMER2 filesystems
+ installer does not detect an installation of DragonflyBSD with UFS

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

Title:
  installer does not detect an installation of DragonflyBSD with UFS

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


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

[Bug 2062438] Re: pkgselect module offers Thunderbird as a third-party app on Kubuntu when Thunderbird ships with Kubuntu

2024-04-19 Thread Aaron Rainbolt
Marking as Critical as this is a very user-visible papercut that cannot
be fixed via 0-day SRU for the initial release.

** Changed in: calamares-settings-ubuntu (Ubuntu)
   Status: New => Confirmed

** Changed in: calamares-settings-ubuntu (Ubuntu)
   Importance: Undecided => Critical

** Changed in: calamares-settings-ubuntu (Ubuntu)
 Assignee: (unassigned) => Aaron Rainbolt (arraybolt3)

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

Title:
  pkgselect module offers Thunderbird as a third-party app on Kubuntu
  when Thunderbird ships with Kubuntu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/calamares-settings-ubuntu/+bug/2062438/+subscriptions


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

[Bug 2062075] Re: installer does not detect an installation of DragonflyBSD with UFS, HAMMER, or HAMMER2 filesystems

2024-04-19 Thread Ken Sharp
I **thought** there was a ufs-utils package but I must have dreamt it.
There is a kernel module for UFS though.

The HAMMER filesystems were never ported anywhere outside of DFBSD that
I know of.

Tested Mantic for funsies and the behaviour is the same.

** Tags added: mantic

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

Title:
  installer does not detect an installation of DragonflyBSD with UFS,
  HAMMER, or HAMMER2 filesystems

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


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

[Bug 2062526] Re: DNS for snaps like Firefox and Chromium fails

2024-04-19 Thread pmeerw
is an issue with 6.8.0-25 kernel (lowlatency), solved with 6.8.0-28
kernel

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

Title:
  DNS for snaps like Firefox and Chromium fails

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


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

[Bug 2062526] Re: DNS for snaps like Firefox and Chromium fails

2024-04-19 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: snapd (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/2062526

Title:
  DNS for snaps like Firefox and Chromium fails

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


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

[Bug 2062075] Re: installer does not detect an installation of DragonflyBSD with UFS, HAMMER, or HAMMER2 filesystems

2024-04-19 Thread ԜаӀtеr Ⅼарсһуnѕkі
I certainly don't think it's reasonable to expect any installer outside
of the ones DragonBSD-related distros use to recognize HAMMER(2).

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

Title:
  installer does not detect an installation of DragonflyBSD with UFS,
  HAMMER, or HAMMER2 filesystems

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


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

[Bug 2060897] Re: Xubuntu installation failed: RuntimeError: aborting install since no mirror is usable

2024-04-19 Thread Dan Bungert
@Sean - I believe this is resolved

** Changed in: ubuntu-desktop-provision
   Status: Fix Committed => Fix Released

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

Title:
  Xubuntu installation failed: RuntimeError: aborting install since no
  mirror is usable

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


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

[Bug 2049793] Re: [MTL] x86: Fix Cache info sysfs is not populated

2024-04-19 Thread Bun K Tan
https://git.launchpad.net/~ubuntu-
kernel/ubuntu/+source/linux/+git/noble/commit/?id=95dc0f6212b9eb8769fb40b2359a0a61cfac8494

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

Title:
  [MTL] x86: Fix Cache info sysfs is not populated

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


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

[Bug 2038249] Re: The dump file parsing issue arises from structural changes in Linux kernel 6.2

2024-04-19 Thread Mauricio Faria de Oliveira
Partial review of the Jammy debdiff.
(Still in progress.)

Started with Jammy's patches 0012-0036, which are Mantic's patches 0001-0024 
(already reviewed).
Most patches are identical, and some have context-line changes, as expected 
(8.0.2/8.0.0 delta).
Just had a few changes.

$ for ((i=1; i<=24; i++)); do 
echo "PATCH $i"
echo
diff -U0 \
  mantic/crash-8.0.2/debian/patches/lp2038249-$(printf '%04d' $i)-*.patch \
  jammy/crash-8.0.0/debian/patches/lp2038249-$(printf '%04d' 
$((i+12)))-*.patch
echo
  done 2>&1 | less

patch 13
actually a backport, context line changes

patch 4
likewise

patch 8
augment backport notes

patch 11
actually a backport, context line changes, more
indentation issue, fixed

patch 36 (same note as patch 24/mantic)

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

Title:
  The dump file parsing issue arises from structural changes in Linux
  kernel 6.2

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


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

[Bug 2056100] Re: sru cloud-init (24.1.3 update) Focal, Jammy, and Mantic

2024-04-19 Thread Jeffrey Chang
Hello all,

SQA has tested cloud-init on jammy and focal and didn't run into any
issues.

The results are only visible by Canonical employees but,

The Focal testplan can be found at:
https://solutions.qa.canonical.com/releasetests/24059ebd-9fd9-4d5f-8619-ca359e25809d/

and Jammy testplan can be found at:
https://solutions.qa.canonical.com/releasetests/d49f6faa-7a58-4002-90d3-1f089f30b02d/

Sorry there's a bug in our version report script, which said 23.4.4 in the 
report, 
but we confirmed manually 24.1.3 is actually tested.

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

Title:
  sru cloud-init (24.1.3 update) Focal, Jammy, and Mantic

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


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

[Bug 2062075] Re: installer does not detect an installation of DragonflyBSD with UFS, HAMMER, or HAMMER2 filesystems

2024-04-19 Thread Aaron Rainbolt
I haven't heard of UFS until today, and I don't think Calamares supports
it.

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

Title:
  installer does not detect an installation of DragonflyBSD with UFS,
  HAMMER, or HAMMER2 filesystems

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


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

[Bug 2062428] Re: Kubuntu 24.04 daily builds - Install randomly hangs/fails/crashes on systems with less than ~3GB of RAM

2024-04-19 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: kubuntu-meta (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/2062428

Title:
  Kubuntu 24.04 daily builds - Install randomly hangs/fails/crashes on
  systems with less than ~3GB of RAM

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/calamares-settings-ubuntu/+bug/2062428/+subscriptions


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

[Bug 2059847] Re: Input lag or freezes on Nvidia desktops with X11 after logging "MetaSyncRing: Sync object is not ready -- were events handled properly?"

2024-04-19 Thread Brad Jascob
This does appear to fix the issue for me on 22.4.04 LTS

sudo add-apt-repository ppa:vanvugt/mutter
sudo apt update
Then upgrade mutter-common, libmutter-10-0 and gir1.1-mutter-10 (I'm not 
certain if all 3 of these are required or not).
This will get you version 42.9-0ubuntu7
Reboot !! (required)

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

Title:
  Input lag or freezes on Nvidia desktops with X11 after logging
  "MetaSyncRing: Sync object is not ready -- were events handled
  properly?"

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


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

[Bug 2062075] Re: Ubuntu installer does not detect other operating systems

2024-04-19 Thread ԜаӀtеr Ⅼарсһуnѕkі
Then it is correct that this affects Ubiquity in Jammy (presumedly
Mantic, too) but Calamares in Noble (with Kubuntu)

** Summary changed:

- Ubuntu installer does not detect other operating systems
+ installer does not detect an installation of DragonflyBSD with UFS, HAMMER, 
or HAMMER2 filesystems

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

Title:
  installer does not detect an installation of DragonflyBSD with UFS,
  HAMMER, or HAMMER2 filesystems

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


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

[Bug 2057661] Re: install w/ ZFS + encryption: `cryptsetup luksFormat /dev/zvol/rpool/keystore` failure

2024-04-19 Thread Dan Bungert
Marked fix released for ubuntu-desktop-provision as this fix can be
found in current dailies.

** Changed in: ubuntu-desktop-provision
   Status: Fix Committed => Fix Released

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

Title:
  install w/ ZFS + encryption: `cryptsetup luksFormat
  /dev/zvol/rpool/keystore` failure

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


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

[Bug 2062075] Re: Ubuntu installer does not detect other operating systems

2024-04-19 Thread Ken Sharp
It is an issue with Jammy too. I sent it to Ubiquity because that's what
the QA instructions said to do. Hopefully it's correct.

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

Title:
  Ubuntu installer does not detect other operating systems

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


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

[Bug 2060429] Re: lubuntu noble - /usr/libexec/fixconkeys-part2 failed to finish in 30 seconds.

2024-04-19 Thread ԜаӀtеr Ⅼарсһуnѕkі
** Changed in: calamares-settings-ubuntu (Ubuntu)
   Status: Confirmed => Fix Committed

** Changed in: calamares-settings-ubuntu (Ubuntu)
 Assignee: Simon Quigley (tsimonq2) => ԜаӀtеr Ⅼарсһуnѕkі (wxl)

** Changed in: calamares-settings-ubuntu (Ubuntu)
Milestone: None => ubuntu-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/2060429

Title:
  lubuntu noble - /usr/libexec/fixconkeys-part2 failed to finish in 30
  seconds.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/calamares-settings-ubuntu/+bug/2060429/+subscriptions


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

[Bug 2060727] Re: The keyboard does not work after latest kernel update

2024-04-19 Thread James Fox
The fix hasn't been released yet.

"Fix Committed" status means the source has been updated but hasn't been
released in a package.

"Fix Released" status means the new package has the fix.

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

Title:
  The keyboard does not work after latest kernel update

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


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

[Bug 2062106] Re: lubuntu noble - snap-seed-glue --seed ..calamares..snapd/seed krita -- failed to finish in 900 seconds

2024-04-19 Thread ԜаӀtеr Ⅼарсһуnѕkі
** Changed in: calamares (Ubuntu)
   Status: New => Triaged

** Changed in: calamares (Ubuntu)
   Importance: Undecided => High

** Changed in: calamares (Ubuntu)
 Assignee: (unassigned) => ԜаӀtеr Ⅼарсһуnѕkі (wxl)

** Changed in: calamares (Ubuntu)
Milestone: None => ubuntu-24.04

** Changed in: calamares (Ubuntu)
   Status: Triaged => 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/2062106

Title:
  lubuntu noble - snap-seed-glue --seed ..calamares..snapd/seed krita
  -- failed to finish in 900 seconds

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


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

[Bug 254687] Re: userlist options doesn't work in vsftpd

2024-04-19 Thread Rolf Leggewie
Is this still an issue in 2024?

** Changed in: vsftpd (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/254687

Title:
  userlist options doesn't work in vsftpd

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


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

[Bug 552067] Re: The need to recreate secure_chroot_dir in /var/run/vsftpd when not using the supplied init scripts is not documented

2024-04-19 Thread Rolf Leggewie
Is this still an issue in 2024?

** Changed in: vsftpd (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/552067

Title:
  The need to recreate secure_chroot_dir in /var/run/vsftpd when not
  using the supplied init scripts is not documented

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


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

[Bug 1840774] Re: Faulty modified time of ftp accessed files and directories

2024-04-19 Thread Rolf Leggewie
Is this still an issue in 2024?

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

Title:
  Faulty modified time of ftp accessed files and directories

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


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

[Bug 1301808] Re: no ECDHE cipher suites in vsftpd

2024-04-19 Thread Rolf Leggewie
Is this still an issue in 2024?

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

Title:
  no ECDHE cipher suites in vsftpd

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


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

[Bug 1591552] Re: vsftpd vulnerable to heartbleed (according to testssl)

2024-04-19 Thread Rolf Leggewie
Time to close this one?

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

Title:
  vsftpd vulnerable to heartbleed (according to testssl)

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


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

[Bug 2062931] [NEW] package inkscape-open-symbols (not installed) failed to install/upgrade: tentative de remplacement de « /usr/share/inkscape/symbols/sjjb-amenity.svg », qui appartient aussi au paqu

2024-04-19 Thread Francois-deguerry-a
Public bug reported:

Erreur dans le package

ProblemType: Package
DistroRelease: Ubuntu 22.04
Package: inkscape-open-symbols (not installed)
ProcVersionSignature: Ubuntu 6.5.0-28.29~22.04.1-generic 6.5.13
Uname: Linux 6.5.0-28-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.11-0ubuntu82.5
Architecture: amd64
CasperMD5CheckResult: pass
Date: Fri Apr 19 23:30:36 2024
ErrorMessage: tentative de remplacement de « 
/usr/share/inkscape/symbols/sjjb-amenity.svg », qui appartient aussi au paquet 
inkscape 1:1.3.2+202311252150+091e20ef0f~ubuntu22.04.1
InstallationDate: Installed on 2024-04-07 (12 days ago)
InstallationMedia: Ubuntu 22.04.4 LTS "Jammy Jellyfish" - Release amd64 
(20240220)
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: inkscape-open-symbols
Title: package inkscape-open-symbols (not installed) failed to install/upgrade: 
tentative de remplacement de « /usr/share/inkscape/symbols/sjjb-amenity.svg », 
qui appartient aussi au paquet inkscape 
1:1.3.2+202311252150+091e20ef0f~ubuntu22.04.1
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: inkscape-open-symbols (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/2062931

Title:
  package inkscape-open-symbols (not installed) failed to
  install/upgrade: tentative de remplacement de
  « /usr/share/inkscape/symbols/sjjb-amenity.svg », qui appartient aussi
  au paquet inkscape 1:1.3.2+202311252150+091e20ef0f~ubuntu22.04.1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/inkscape-open-symbols/+bug/2062931/+subscriptions


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

[Bug 2060817] Re: gnome-initial-setup hardcoded to Ubuntu branding, not overridable

2024-04-19 Thread Erich Eickmeyer
Seth,

No, not in the cloud infrastructure automatic provisioning. However, Pro
is still optional for Ubuntu Desktop via subscription for the security
updates. This would also make sense for Ubuntu Desktop Flavors as well,
but due to the 3-year support span there is some ambiguity so we're
looking for some clarification there.

Discussion continues at https://discourse.ubuntu.com/t/question-about-
ubuntu-pro-for-official-ubuntu-flavors/44290 where I'm looking for
replies from reps of the pro team, who I'm sure are discussing this
before replying.

Cloud doesn't really have much to do with it, this is more in the
context of universe security updates and ESM.

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

Title:
  gnome-initial-setup hardcoded to Ubuntu branding, not overridable

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


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

[Bug 2038249] Re: The dump file parsing issue arises from structural changes in Linux kernel 6.2

2024-04-19 Thread Mauricio Faria de Oliveira
Today, I tackled the Mantic debdiff (made only a few changes; below).

It's now currently building in a PPA for all supported architectures,
(ppa:mfo/lp2038249) and if all goes well I will upload it to Mantic.

Thanks!
Mauricio

---

All 24 commits are included in Noble (12 in 8.0.4 and 12 in 8.0.3).
changelog OK
DEP3 tags OK

I reviewed each commit, with the exception of the big code additions
(patches 8,16: for maple tree and module memory layout): all look OK.

I fixed up patch 24, which is originally 2 trivial and short changes,
but had like ~3800 lines of indentation/formatting changes included
(certainly this wasn't intented, and mistakes happen; so I fixed it).

$ git show 55a43bcefa20161c7e56ed0e309e90e941f47efc | wc -l
57

$ wc -l 
debian/patches/lp2038249-0024-Fix-compilation-error-and-warning-with-gcc-4.8.5.patch
3865 
debian/patches/lp2038249-0024-Fix-compilation-error-and-warning-with-gcc-4.8.5.patch

We can all learn from this -- I will check .patch files with diffstat!

I also just augmented backport notes (thanks for those) to indicate
which functions/hunks had context lines modified/adjusted/refreshed,
since the patch is big (patch 15), and clarify variables (not) used.

-+[chengen - modify x86_64.c context]
++[chengen - modify context in x86_64.c: x86_64_ORC_init() and 
x86_64_get_framesize()]

-+[chengen - initialize init_tss to zero in xen_hyper.c]
++[chengen - initialize only init_tss to zero in xen_hyper.c (there is 
no stack_base yet)]

Very importantly, the detailed test plan will be key to validate the
changes are working correctly, considering their number and size.
Thanks again for it!

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

Title:
  The dump file parsing issue arises from structural changes in Linux
  kernel 6.2

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


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

[Bug 2060817] Re: gnome-initial-setup hardcoded to Ubuntu branding, not overridable

2024-04-19 Thread Seth Arnold
Erich, I think the only 'Ubuntu system builds' that would have Ubuntu
Pro enabled in any way are the images at cloud providers that
automatically attach to Ubuntu Pro with on-demand subscription pricing:

- 
https://aws.amazon.com/about-aws/whats-new/2023/04/amazon-ec2-ubuntu-pro-subscription-model/
- 
https://azuremarketplace.microsoft.com/en-us/marketplace/apps/canonical.0001-com-ubuntu-pro-jammy
- 
https://cloud.google.com/blog/products/compute/ubuntu-pro-available-on-google-cloud

I don't think any images have been prepared for flavors that enable
Ubuntu Pro through the cloud infrastructure automatic provisioning. I'm
not sure flavors even make much sense in the cloud environments.

Are there other images being built somewhere out of packages only
available with an Ubuntu Pro subscription?

Thanks

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

Title:
  gnome-initial-setup hardcoded to Ubuntu branding, not overridable

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


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

[Bug 2062075] Re: Ubuntu installer does not detect other operating systems

2024-04-19 Thread ԜаӀtеr Ⅼарсһуnѕkі
And this is also an issue with Kubuntu Jammy, thus the reason this
points at Ubiquity, too?

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

Title:
  Ubuntu installer does not detect other operating systems

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


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

[Bug 2062428] Re: Kubuntu 24.04 daily builds - Install randomly hangs/fails/crashes on systems with less than ~3GB of RAM

2024-04-19 Thread Eugene San
@wxl
People on #kubuntu-dev decided to skip zram for now since they wanted for issue 
to be recognized as "release critical " for that change.

You can see more details at the end of
https://irclogs.ubuntu.com/2024/04/18/%23kubuntu-devel.html

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

Title:
  Kubuntu 24.04 daily builds - Install randomly hangs/fails/crashes on
  systems with less than ~3GB of RAM

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/calamares-settings-ubuntu/+bug/2062428/+subscriptions


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

[Bug 1991130] Re: Add lrm autogenerated transitional independent of variants

2024-04-19 Thread Launchpad Bug Tracker
This bug was fixed in the package linux-restricted-modules - 6.8.0-28.28

---
linux-restricted-modules (6.8.0-28.28) noble; urgency=medium

  * Main version: 6.8.0-28.28

  * Packaging resync (LP: #1786013)
- [Packaging] debian/tracking-bug -- resync from main package

 -- Paolo Pisati   Tue, 16 Apr 2024 19:03:14
+0200

** Changed in: linux-restricted-modules (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/1991130

Title:
  Add lrm autogenerated transitional independent of variants

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


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

[Bug 2046315] Re: panel flickering after the i915.psr2 is enabled

2024-04-19 Thread Launchpad Bug Tracker
This bug was fixed in the package linux-oem-6.8 - 6.8.0-1004.4

---
linux-oem-6.8 (6.8.0-1004.4) noble; urgency=medium

  * noble/linux-oem-6.8: 6.8.0-1004.4 -proposed tracker (LP: #2062020)

  * panel flickering after the i915.psr2 is enabled (LP: #2046315)
- drm/i915/alpm: Add ALPM register definitions
- drm/i915/psr: Add alpm_parameters struct
- drm/i915/alpm: Calculate ALPM Entry check
- drm/i915/alpm: Alpm aux wake configuration for lnl
- drm/i915/display: Make intel_dp_aux_fw_sync_len available for PSR code
- drm/i915/psr: Improve fast and IO wake lines calculation
- drm/i915/psr: Calculate IO wake and fast wake lines for DISPLAY_VER < 12
- drm/i915/display: Increase number of fast wake precharge pulses

  * Packaging resync (LP: #1786013)
- [Packaging] update Ubuntu.md
- [Packaging] update update.conf
- debian.oem/dkms-versions -- update from kernel-versions (main/d2024.04.04)

  * intel_rapl_common: Add support for ARL and LNL (LP: #2061953)
- powercap: intel_rapl: Add support for Lunar Lake-M paltform
- powercap: intel_rapl: Add support for Arrow Lake

  [ Ubuntu: 6.8.0-28.28 ]

  * noble/linux: 6.8.0-28.28 -proposed tracker (LP: #2061867)
  * linux-gcp 6.8.0-1005.5 (+ others) Noble kernel regression iwth new apparmor
profiles/features (LP: #2061851)
- SAUCE: apparmor4.0.0 [92/90]: fix address mapping for recvfrom

  [ Ubuntu: 6.8.0-25.25 ]

  * noble/linux: 6.8.0-25.25 -proposed tracker (LP: #2061083)
  * Packaging resync (LP: #1786013)
- [Packaging] debian.master/dkms-versions -- update from kernel-versions
  (main/d2024.04.04)
  * Apply mitigations for the native BHI hardware vulnerabilty (LP: #2060909)
- x86/cpufeatures: Add new word for scattered features
- x86/bugs: Change commas to semicolons in 'spectre_v2' sysfs file
- x86/syscall: Don't force use of indirect calls for system calls
- x86/bhi: Add support for clearing branch history at syscall entry
- x86/bhi: Define SPEC_CTRL_BHI_DIS_S
- x86/bhi: Enumerate Branch History Injection (BHI) bug
- x86/bhi: Add BHI mitigation knob
- x86/bhi: Mitigate KVM by default
- KVM: x86: Add BHI_NO
- x86: set SPECTRE_BHI_ON as default
- [Config] enable spectre_bhi=auto by default
  * update apparmor and LSM stacking patch set (LP: #2028253)
- SAUCE: apparmor4.0.0 [01/90]: LSM stacking v39: integrity: disassociate
  ima_filter_rule from security_audit_rule
- SAUCE: apparmor4.0.0 [02/90]: LSM stacking v39: SM: Infrastructure
  management of the sock security
- SAUCE: apparmor4.0.0 [03/90]: LSM stacking v39: LSM: Add the lsmblob data
  structure.
- SAUCE: apparmor4.0.0 [04/90]: LSM stacking v39: IMA: avoid label 
collisions
  with stacked LSMs
- SAUCE: apparmor4.0.0 [05/90]: LSM stacking v39: LSM: Use lsmblob in
  security_audit_rule_match
- SAUCE: apparmor4.0.0 [06/90]: LSM stacking v39: LSM: Add lsmblob_to_secctx
  hook
- SAUCE: apparmor4.0.0 [07/90]: LSM stacking v39: Audit: maintain an lsmblob
  in audit_context
- SAUCE: apparmor4.0.0 [08/90]: LSM stacking v39: LSM: Use lsmblob in
  security_ipc_getsecid
- SAUCE: apparmor4.0.0 [09/90]: LSM stacking v39: Audit: Update shutdown LSM
  data
- SAUCE: apparmor4.0.0 [10/90]: LSM stacking v39: LSM: Use lsmblob in
  security_current_getsecid
- SAUCE: apparmor4.0.0 [11/90]: LSM stacking v39: LSM: Use lsmblob in
  security_inode_getsecid
- SAUCE: apparmor4.0.0 [12/90]: LSM stacking v39: Audit: use an lsmblob in
  audit_names
- SAUCE: apparmor4.0.0 [13/90]: LSM stacking v39: LSM: Create new
  security_cred_getlsmblob LSM hook
- SAUCE: apparmor4.0.0 [14/90]: LSM stacking v39: Audit: Change context data
  from secid to lsmblob
- SAUCE: apparmor4.0.0 [15/90]: LSM stacking v39: Netlabel: Use lsmblob for
  audit data
- SAUCE: apparmor4.0.0 [16/90]: LSM stacking v39: LSM: Ensure the correct 
LSM
  context releaser
- SAUCE: apparmor4.0.0 [17/90]: LSM stacking v39: LSM: Use lsmcontext in
  security_secid_to_secctx
- SAUCE: apparmor4.0.0 [18/90]: LSM stacking v39: LSM: Use lsmcontext in
  security_lsmblob_to_secctx
- SAUCE: apparmor4.0.0 [19/90]: LSM stacking v39: LSM: Use lsmcontext in
  security_inode_getsecctx
- SAUCE: apparmor4.0.0 [20/90]: LSM stacking v39: LSM: Use lsmcontext in
  security_dentry_init_security
- SAUCE: apparmor4.0.0 [21/90]: LSM stacking v39: LSM:
  security_lsmblob_to_secctx module selection
- SAUCE: apparmor4.0.0 [22/90]: LSM stacking v39: Audit: Create audit_stamp
  structure
- SAUCE: apparmor4.0.0 [23/90]: LSM stacking v39: Audit: Allow multiple
  records in an audit_buffer
- SAUCE: apparmor4.0.0 [24/90]: LSM stacking v39: Audit: Add record for
  multiple task security contexts
- SAUCE: apparmor4.0.0 [25/90]: LSM stacking v39: audit: multiple subject 
lsm
  values for netlabel
   

[Bug 2049793] Re: [MTL] x86: Fix Cache info sysfs is not populated

2024-04-19 Thread Launchpad Bug Tracker
This bug was fixed in the package linux - 6.8.0-28.28

---
linux (6.8.0-28.28) noble; urgency=medium

  * noble/linux: 6.8.0-28.28 -proposed tracker (LP: #2061867)

  * linux-gcp 6.8.0-1005.5 (+ others) Noble kernel regression iwth new apparmor
profiles/features (LP: #2061851)
- SAUCE: apparmor4.0.0 [92/90]: fix address mapping for recvfrom

 -- Paolo Pisati   Tue, 16 Apr 2024 18:29:17
+0200

** Changed in: linux (Ubuntu Noble)
   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/2049793

Title:
  [MTL] x86: Fix Cache info sysfs is not populated

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


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

[Bug 2051935] Re: [OVN] SNAT only happens for subnets directly connected to a router

2024-04-19 Thread Brian Haley
BTW, Terry Wilson found the original neutron bug where this behavior was
introduced in neutron, allowing all subnets indirectly connected to a
router to use the default SNAT address.

https://bugs.launchpad.net/neutron/+bug/1386041

Wanted to make sure that was documented.

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

Title:
  [OVN] SNAT only happens for subnets directly connected to a router

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


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

[Bug 2059147] Re: New upstream relase 535.171.04

2024-04-19 Thread Launchpad Bug Tracker
This bug was fixed in the package nvidia-graphics-drivers-535 -
535.171.04-0ubuntu2

---
nvidia-graphics-drivers-535 (535.171.04-0ubuntu2) noble; urgency=medium

  * remove 
debian/dkms_nvidia/patches/buildfix_kernel_6.8-nv_drm_ioctls-DRM_UNLOCKED-is-now-the-default-behavi.patch
  * remove debian/dkms_nvidia/patches/buildfix_kernel_6.8-gpl-pfn_valid.patch
  * remove 
debian/open-kernel/patches/buildfix_kernel_6.8-nv_drm_ioctls-DRM_UNLOCKED-is-now-the-default-behavi.patch
  * remove debian/open-kernel/patches/buildfix_kernel_6.8-gpl-pfn_valid.patch

 -- Bartlomiej Zolnierkiewicz 
Wed, 27 Mar 2024 14:45:04 +0100

** Changed in: nvidia-graphics-drivers-535 (Ubuntu Noble)
   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/2059147

Title:
  New upstream relase 535.171.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-535/+bug/2059147/+subscriptions


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

[Bug 2052469] Re: Provide an arm64 linux-oracle 64k kernel variant

2024-04-19 Thread Launchpad Bug Tracker
This bug was fixed in the package linux-oracle - 6.8.0-1004.4

---
linux-oracle (6.8.0-1004.4) noble; urgency=medium

  * noble/linux-oracle: 6.8.0-1004.4 -proposed tracker (LP: #2061873)

  * Rebase on Ubuntu-6.8.0-28.28

 -- Paolo Pisati   Tue, 16 Apr 2024 19:36:13
+0200

** Changed in: linux-oracle (Ubuntu Noble)
   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/2052469

Title:
  Provide an arm64 linux-oracle 64k kernel variant

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


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

[Bug 2060909] Re: Apply mitigations for the native BHI hardware vulnerabilty

2024-04-19 Thread Launchpad Bug Tracker
This bug was fixed in the package linux - 6.8.0-28.28

---
linux (6.8.0-28.28) noble; urgency=medium

  * noble/linux: 6.8.0-28.28 -proposed tracker (LP: #2061867)

  * linux-gcp 6.8.0-1005.5 (+ others) Noble kernel regression iwth new apparmor
profiles/features (LP: #2061851)
- SAUCE: apparmor4.0.0 [92/90]: fix address mapping for recvfrom

 -- Paolo Pisati   Tue, 16 Apr 2024 18:29:17
+0200

** Changed in: linux (Ubuntu Noble)
   Status: Fix Committed => Fix Released

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

Title:
  Apply mitigations for the native BHI hardware vulnerabilty

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


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

[Bug 2056475] Re: aws: Backport latest ENA driver in upstream Linux to enable IRQ moderation

2024-04-19 Thread Launchpad Bug Tracker
This bug was fixed in the package linux-aws - 6.8.0-1006.6

---
linux-aws (6.8.0-1006.6) noble; urgency=medium

  * noble/linux-aws: 6.8.0-1006.6 -proposed tracker (LP: #2061868)

  * Rebase on 6.8.0-28.28

 -- Andrea Righi   Tue, 16 Apr 2024 19:26:16
+0200

** Changed in: linux-aws (Ubuntu Noble)
   Status: Fix Committed => Fix Released

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

Title:
  aws: Backport latest ENA driver in upstream Linux to enable IRQ
  moderation

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


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

[Bug 2061851] Re: linux-gcp 6.8.0-1005.5 (+ others) Noble kernel regression iwth new apparmor profiles/features

2024-04-19 Thread Launchpad Bug Tracker
This bug was fixed in the package linux - 6.8.0-28.28

---
linux (6.8.0-28.28) noble; urgency=medium

  * noble/linux: 6.8.0-28.28 -proposed tracker (LP: #2061867)

  * linux-gcp 6.8.0-1005.5 (+ others) Noble kernel regression iwth new apparmor
profiles/features (LP: #2061851)
- SAUCE: apparmor4.0.0 [92/90]: fix address mapping for recvfrom

 -- Paolo Pisati   Tue, 16 Apr 2024 18:29:17
+0200

** Changed in: linux (Ubuntu Noble)
   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/2061851

Title:
  linux-gcp 6.8.0-1005.5 (+ others) Noble kernel regression iwth new
  apparmor profiles/features

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


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

[Bug 2061953] Re: intel_rapl_common: Add support for ARL and LNL

2024-04-19 Thread Launchpad Bug Tracker
This bug was fixed in the package linux-oem-6.8 - 6.8.0-1004.4

---
linux-oem-6.8 (6.8.0-1004.4) noble; urgency=medium

  * noble/linux-oem-6.8: 6.8.0-1004.4 -proposed tracker (LP: #2062020)

  * panel flickering after the i915.psr2 is enabled (LP: #2046315)
- drm/i915/alpm: Add ALPM register definitions
- drm/i915/psr: Add alpm_parameters struct
- drm/i915/alpm: Calculate ALPM Entry check
- drm/i915/alpm: Alpm aux wake configuration for lnl
- drm/i915/display: Make intel_dp_aux_fw_sync_len available for PSR code
- drm/i915/psr: Improve fast and IO wake lines calculation
- drm/i915/psr: Calculate IO wake and fast wake lines for DISPLAY_VER < 12
- drm/i915/display: Increase number of fast wake precharge pulses

  * Packaging resync (LP: #1786013)
- [Packaging] update Ubuntu.md
- [Packaging] update update.conf
- debian.oem/dkms-versions -- update from kernel-versions (main/d2024.04.04)

  * intel_rapl_common: Add support for ARL and LNL (LP: #2061953)
- powercap: intel_rapl: Add support for Lunar Lake-M paltform
- powercap: intel_rapl: Add support for Arrow Lake

  [ Ubuntu: 6.8.0-28.28 ]

  * noble/linux: 6.8.0-28.28 -proposed tracker (LP: #2061867)
  * linux-gcp 6.8.0-1005.5 (+ others) Noble kernel regression iwth new apparmor
profiles/features (LP: #2061851)
- SAUCE: apparmor4.0.0 [92/90]: fix address mapping for recvfrom

  [ Ubuntu: 6.8.0-25.25 ]

  * noble/linux: 6.8.0-25.25 -proposed tracker (LP: #2061083)
  * Packaging resync (LP: #1786013)
- [Packaging] debian.master/dkms-versions -- update from kernel-versions
  (main/d2024.04.04)
  * Apply mitigations for the native BHI hardware vulnerabilty (LP: #2060909)
- x86/cpufeatures: Add new word for scattered features
- x86/bugs: Change commas to semicolons in 'spectre_v2' sysfs file
- x86/syscall: Don't force use of indirect calls for system calls
- x86/bhi: Add support for clearing branch history at syscall entry
- x86/bhi: Define SPEC_CTRL_BHI_DIS_S
- x86/bhi: Enumerate Branch History Injection (BHI) bug
- x86/bhi: Add BHI mitigation knob
- x86/bhi: Mitigate KVM by default
- KVM: x86: Add BHI_NO
- x86: set SPECTRE_BHI_ON as default
- [Config] enable spectre_bhi=auto by default
  * update apparmor and LSM stacking patch set (LP: #2028253)
- SAUCE: apparmor4.0.0 [01/90]: LSM stacking v39: integrity: disassociate
  ima_filter_rule from security_audit_rule
- SAUCE: apparmor4.0.0 [02/90]: LSM stacking v39: SM: Infrastructure
  management of the sock security
- SAUCE: apparmor4.0.0 [03/90]: LSM stacking v39: LSM: Add the lsmblob data
  structure.
- SAUCE: apparmor4.0.0 [04/90]: LSM stacking v39: IMA: avoid label 
collisions
  with stacked LSMs
- SAUCE: apparmor4.0.0 [05/90]: LSM stacking v39: LSM: Use lsmblob in
  security_audit_rule_match
- SAUCE: apparmor4.0.0 [06/90]: LSM stacking v39: LSM: Add lsmblob_to_secctx
  hook
- SAUCE: apparmor4.0.0 [07/90]: LSM stacking v39: Audit: maintain an lsmblob
  in audit_context
- SAUCE: apparmor4.0.0 [08/90]: LSM stacking v39: LSM: Use lsmblob in
  security_ipc_getsecid
- SAUCE: apparmor4.0.0 [09/90]: LSM stacking v39: Audit: Update shutdown LSM
  data
- SAUCE: apparmor4.0.0 [10/90]: LSM stacking v39: LSM: Use lsmblob in
  security_current_getsecid
- SAUCE: apparmor4.0.0 [11/90]: LSM stacking v39: LSM: Use lsmblob in
  security_inode_getsecid
- SAUCE: apparmor4.0.0 [12/90]: LSM stacking v39: Audit: use an lsmblob in
  audit_names
- SAUCE: apparmor4.0.0 [13/90]: LSM stacking v39: LSM: Create new
  security_cred_getlsmblob LSM hook
- SAUCE: apparmor4.0.0 [14/90]: LSM stacking v39: Audit: Change context data
  from secid to lsmblob
- SAUCE: apparmor4.0.0 [15/90]: LSM stacking v39: Netlabel: Use lsmblob for
  audit data
- SAUCE: apparmor4.0.0 [16/90]: LSM stacking v39: LSM: Ensure the correct 
LSM
  context releaser
- SAUCE: apparmor4.0.0 [17/90]: LSM stacking v39: LSM: Use lsmcontext in
  security_secid_to_secctx
- SAUCE: apparmor4.0.0 [18/90]: LSM stacking v39: LSM: Use lsmcontext in
  security_lsmblob_to_secctx
- SAUCE: apparmor4.0.0 [19/90]: LSM stacking v39: LSM: Use lsmcontext in
  security_inode_getsecctx
- SAUCE: apparmor4.0.0 [20/90]: LSM stacking v39: LSM: Use lsmcontext in
  security_dentry_init_security
- SAUCE: apparmor4.0.0 [21/90]: LSM stacking v39: LSM:
  security_lsmblob_to_secctx module selection
- SAUCE: apparmor4.0.0 [22/90]: LSM stacking v39: Audit: Create audit_stamp
  structure
- SAUCE: apparmor4.0.0 [23/90]: LSM stacking v39: Audit: Allow multiple
  records in an audit_buffer
- SAUCE: apparmor4.0.0 [24/90]: LSM stacking v39: Audit: Add record for
  multiple task security contexts
- SAUCE: apparmor4.0.0 [25/90]: LSM stacking v39: audit: multiple subject 
lsm
  values for netlabel
   

[Bug 2062545] Re: Still, No keyboard after kernel update Linux t-l15 6.5.0-1020-oem

2024-04-19 Thread Launchpad Bug Tracker
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/2062545

Title:
  Still, No keyboard after kernel update Linux t-l15 6.5.0-1020-oem

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


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

[Bug 2060727] Re: The keyboard does not work after latest kernel update

2024-04-19 Thread Ganton
> Is this new kernel working for you, Ganton?

No, it does not.

I've updated the kernel:
$ uname -a
Linux hostname 6.5.0-28-generic #29-Ubuntu SMP PREEMPT_DYNAMIC Thu Mar 28 
23:46:48 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux
although in the end, after rebooting, I have experimented the same problem.

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

Title:
  The keyboard does not work after latest kernel update

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


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

[Bug 2062424] Re: When accelerometer detects rotation, it goes into airplane mode

2024-04-19 Thread joaquin
Here:


dmidecode: HP ENVY x360 2-in-1 Laptop 15-ew1xxx

As of evtest: there was no device clearly labeled accelerometer or mode,
so I tried running it for the more ambiguously-named peripherals.

Some devices that produced evtest output while I rotated the laptop (90
deg to the right and back):

###

Input device name: "Intel HID events"
Supported events:
  Event type 0 (EV_SYN)
  Event type 1 (EV_KEY)
Event code 69 (KEY_NUMLOCK)
Event code 102 (KEY_HOME)
Event code 104 (KEY_PAGEUP)
Event code 107 (KEY_END)
Event code 109 (KEY_PAGEDOWN)
Event code 113 (KEY_MUTE)
Event code 114 (KEY_VOLUMEDOWN)
Event code 115 (KEY_VOLUMEUP)
Event code 116 (KEY_POWER)
Event code 142 (KEY_SLEEP)
Event code 164 (KEY_PLAYPAUSE)
Event code 166 (KEY_STOPCD)
Event code 224 (KEY_BRIGHTNESSDOWN)
Event code 225 (KEY_BRIGHTNESSUP)
Event code 240 (KEY_UNKNOWN)
Event code 247 (KEY_RFKILL)
  Event type 4 (EV_MSC)
Event code 4 (MSC_SCAN)
Properties:
Testing ... (interrupt to exit)
Event: time 1713559327.147635, type 4 (EV_MSC), code 4 (MSC_SCAN), value 08
Event: time 1713559327.147635, type 1 (EV_KEY), code 247 (KEY_RFKILL), value 1
Event: time 1713559327.147635, -- SYN_REPORT 
Event: time 1713559327.147678, type 1 (EV_KEY), code 247 (KEY_RFKILL), value 0
Event: time 1713559327.147678, -- SYN_REPORT 
Event: time 1713559328.859118, type 4 (EV_MSC), code 4 (MSC_SCAN), value 08
Event: time 1713559328.859118, type 1 (EV_KEY), code 247 (KEY_RFKILL), value 1
Event: time 1713559328.859118, -- SYN_REPORT 
Event: time 1713559328.859129, type 1 (EV_KEY), code 247 (KEY_RFKILL), value 0
Event: time 1713559328.859129, -- SYN_REPORT 
Event: time 1713559332.220385, type 4 (EV_MSC), code 4 (MSC_SCAN), value 08
Event: time 1713559332.220385, type 1 (EV_KEY), code 247 (KEY_RFKILL), value 1
Event: time 1713559332.220385, -- SYN_REPORT 
Event: time 1713559332.220402, type 1 (EV_KEY), code 247 (KEY_RFKILL), value 0
Event: time 1713559332.220402, -- SYN_REPORT 


###


Input driver version is 1.0.1
Input device ID: bus 0x19 vendor 0x0 product 0x0 version 0x0
Input device name: "Intel HID switches"
Supported events:
  Event type 0 (EV_SYN)
  Event type 5 (EV_SW)
Event code 1 (SW_TABLET_MODE) state 0
Properties:
Testing ... (interrupt to exit)
Event: time 1713559693.522534, type 5 (EV_SW), code 1 (SW_TABLET_MODE), value 1
Event: time 1713559693.522534, -- SYN_REPORT 
Event: time 1713559695.829933, type 5 (EV_SW), code 1 (SW_TABLET_MODE), value 0
Event: time 1713559695.829933, -- SYN_REPORT 


###

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

Title:
  When accelerometer detects rotation, it goes into airplane mode

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


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

  1   2   3   4   5   >