[Bug 2056555] Re: Allow bitbake to create user namespace

2024-07-25 Thread Richard-purdie-1
Trying to recreate our own execution environment inside this executable
will likely be a bit painful and awkward.

it isn't impossible but we'd likely have to add a new execution
environment to our list at the top level in the way we have fakeroot and
non-fakeroot environments today with new network and nonetwork options.
There comes a point where this becomes so distro specific that we drop
it, useful as the functionality is. Sad that security is stopping what
amounts to a better security profile for our builds.

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

Title:
  Allow bitbake to create user namespace

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


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

[Bug 1860228] Re: addition of zfsutils-linux scrib every 2nd sunday

2024-07-24 Thread Richard Laager
[This comment was seemingly hidden?]

> The real question is, why is "[ $(date +\%w) -eq 0 ]" in there, when
cron can do day-of-week like:
>
> 24 0 8-14 * 0 root [ -x /usr/lib/zfs-linux/scrub ] && /usr/lib/zfs-
linux/scrub

This is because if you specify the "day of month" and the "day of week"
fields, they are ORed, not ANDed. From crontab(5), "If both fields are
restricted (i.e., aren't *), the command will be run when either field
matches the current time."

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

Title:
  addition of zfsutils-linux scrib every 2nd sunday

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


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

[Bug 2073446] [NEW] i686 cross libm.a missing fmod

2024-07-17 Thread Richard Henderson
Public bug reported:

The only symbol in e_fmod.o is

e_fmod.o:
 T __ieee754_fmod

Compare

w_fmodl.o:
 W fmodf64x
 T __fmodl
 W fmodl

or x86_64

e_fmod.o:
 T __fmod
 W fmod
 W fmodf32x
 W fmodf64
 T __ieee754_fmod

Package version:
libc6-dev-i386-cross 2.39-0ubuntu8cross1

Ubuntu version:
$ lsb_release -rd
No LSB modules are available.
Description:Ubuntu 24.04 LTS
Release:24.04

ProblemType: Bug
DistroRelease: Ubuntu 24.04
Package: libc6-dev-i386-cross 2.39-0ubuntu8cross1
ProcVersionSignature: Ubuntu 6.8.0-38.38-generic 6.8.8
Uname: Linux 6.8.0-38-generic x86_64
ApportVersion: 2.28.1-0ubuntu3
Architecture: amd64
CasperMD5CheckResult: pass
CurrentDesktop: ubuntu:GNOME
Date: Thu Jul 18 15:38:33 2024
Dependencies:
 libc6-i386-cross 2.39-0ubuntu8cross1
 linux-libc-dev-i386-cross 6.8.0-25.25cross1
InstallationDate: Installed on 2024-07-06 (11 days ago)
InstallationMedia: Ubuntu 24.04 LTS "Noble Numbat" - Release amd64 (20240424)
PackageArchitecture: all
ProcEnviron:
 LANG=en_US.UTF-8
 PATH=(custom, no user)
 SHELL=/bin/bash
 TERM=xterm-256color
 XDG_RUNTIME_DIR=
SourcePackage: cross-toolchain-base
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: cross-toolchain-base (Ubuntu)
 Importance: Undecided
 Status: New


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

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

Title:
  i686 cross libm.a missing fmod

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cross-toolchain-base/+bug/2073446/+subscriptions


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

[Bug 2071679] [NEW] Python syntax warning on installation

2024-07-01 Thread Daniel Richard G.
Public bug reported:

This concerns rhythmbox-plugin-alternative-toolbar 0.20.4-1 on Ubuntu
noble.

I see this on installation:

Setting up rhythmbox-plugin-alternative-toolbar (0.20.4-1) ...
/usr/lib/rhythmbox/plugins/alternative-toolbar/alttoolbar_plugins.py:171: 
SyntaxWarning: invalid escape sequence '\('
  translation = re.sub('\(..\)', '', translation, flags=re.DOTALL)

** Affects: rhythmbox-plugin-alternative-toolbar (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: noble

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

Title:
  Python syntax warning on installation

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/rhythmbox-plugin-alternative-toolbar/+bug/2071679/+subscriptions


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

[Bug 2071678] [NEW] Python syntax warnings on installation

2024-07-01 Thread Daniel Richard G.
Public bug reported:

This concerns python3-aptdaemon 1.1.1+bzr982-0ubuntu44 in Ubuntu noble.

During installation, I see this:

Setting up python3-aptdaemon (1.1.1+bzr982-0ubuntu44) ...
/usr/lib/python3/dist-packages/aptdaemon/core.py:96: SyntaxWarning: invalid 
escape sequence '\-'
  REGEX_VALID_PACKAGENAME = "^[a-z0-9][a-z0-9\-+.]+(:[a-z0-9]+)?$"
/usr/lib/python3/dist-packages/aptdaemon/core.py:99: SyntaxWarning: invalid 
escape sequence '\-'
  REGEX_VALID_VERSION = "^[0-9][0-9.+\-A-Za-z:~]*$"
/usr/lib/python3/dist-packages/aptdaemon/core.py:101: SyntaxWarning: invalid 
escape sequence '\-'
  REGEX_VALID_RELEASE = "^[a-zA-Z0-9_\-\.]+$"
/usr/lib/python3/dist-packages/aptdaemon/progress.py:57: SyntaxWarning: invalid 
escape sequence '\['
  REGEX_ANSI_ESCAPE_CODE = chr(27) + "\[[;?0-9]*[A-Za-z]"
/usr/lib/python3/dist-packages/aptdaemon/progress.py:667: SyntaxWarning: 
invalid escape sequence '\s'
  match = re.match("\s*\'(.*)\'\s*\'(.*)\'.*", message_raw)
/usr/lib/python3/dist-packages/aptdaemon/progress.py:791: SyntaxWarning: 
invalid escape sequence '\s'
  match = re.match("\s*\'(.*)\'\s*\'(.*)\'.*", status[3])
/usr/lib/python3/dist-packages/aptdaemon/worker/aptworker.py:462: 
SyntaxWarning: invalid escape sequence '\S'
  if re.match("(http|https|ftp)://\S+?:\S+?@\S+", uri):
/usr/lib/python3/dist-packages/aptdaemon/worker/pkworker.py:89: SyntaxWarning: 
invalid escape sequence '\d'
  MATCH_CVE = "CVE-\d{4}-\d{4}"
/usr/lib/python3/dist-packages/aptdaemon/worker/pkworker.py:325: SyntaxWarning: 
invalid escape sequence '\/'
  pattern = "^%s$" % filename[1:].replace("/", "\/")
/usr/lib/python3/dist-packages/aptdaemon/worker/pkworker.py:327: SyntaxWarning: 
invalid escape sequence '\/'
  pattern = "\/%s$" % filename
/usr/lib/python3/dist-packages/aptdaemon/worker/pkworker.py:350: SyntaxWarning: 
invalid escape sequence '\/'
  pattern = "^%s$" % filename.replace("/", "\/")
/usr/lib/python3/dist-packages/aptdaemon/worker/pkworker.py:352: SyntaxWarning: 
invalid escape sequence '\/'
  pattern = ".*\/%s$" % filename
/usr/lib/python3/dist-packages/aptdaemon/worker/pkworker.py:661: SyntaxWarning: 
invalid escape sequence '\+'
  "(?P.+) (?P[-\+][0-9]+)$",

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


** Tags: noble

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

Title:
  Python syntax warnings on installation

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


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

[Bug 2071533] [NEW] KWorker acpi _notify running 90+ processes and consuming 100% of a cpu core

2024-06-29 Thread Richard Perine
Public bug reported:

KWorker is running a cpu core at 100%.   I am running an HP Victus 15.6
Gaming Laptop with a Ryzen 7 8000 series CPU with an nvidua 4060 gpu.
Sometimes it goes away and other times it comes back.

ProblemType: Bug
DistroRelease: Ubuntu 24.04
Package: evince (not installed)
ProcVersionSignature: Ubuntu 6.8.0-36.36-generic 6.8.4
Uname: Linux 6.8.0-36-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.28.1-0ubuntu3
Architecture: amd64
CasperMD5CheckResult: unknown
CurrentDesktop: KDE
Date: Sat Jun 29 19:05:48 2024
InstallationDate: Installed on 2024-06-24 (5 days ago)
InstallationMedia: Kubuntu 24.04 LTS "Noble Numbat" - Release amd64 (20240425.1)
SourcePackage: evince
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: evince (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/2071533

Title:
  KWorker acpi _notify running 90+ processes and consuming 100% of a cpu
  core

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


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

[Bug 2068738] Re: AMD GPUs fail with null pointer dereference when IOMMU enabled, leading to black screen

2024-06-28 Thread Richard Durso
Tried to use "nomodeset" or "amd_iommu=off" to
GRUB_CMDLINE_LINUX_DEFAULT which allowed screen to work for booting -113
kernel, however PCIe based I225-V network card was not detected.  I was
left with only a loopback device.

PC: HP T740 Thin PC / AMD Ryzen V1756B

00:00.2 IOMMU: Advanced Micro Devices, Inc. [AMD] Raven/Raven2 IOMMU
Subsystem: Hewlett-Packard Company Raven/Raven2 IOMMU
Flags: bus master, fast devsel, latency 0, IRQ 25
Capabilities: [40] Secure device 
Capabilities: [64] MSI: Enable+ Count=1/4 Maskable- 64bit+
Capabilities: [74] HyperTransport: MSI Mapping Enable+ Fixed+

01:00.0 Ethernet controller: Intel Corporation Ethernet Controller I225-V (rev 
03)
Subsystem: Intel Corporation Ethernet Controller I225-V
Flags: bus master, fast devsel, latency 0, IRQ 30, IOMMU group 7
Memory at fe70 (32-bit, non-prefetchable) [size=1M]
Memory at fe80 (32-bit, non-prefetchable) [size=16K]
Expansion ROM at fe60 [disabled] [size=1M]
Capabilities: [40] Power Management version 3
Capabilities: [50] MSI: Enable- Count=1/1 Maskable+ 64bit+
Capabilities: [70] MSI-X: Enable+ Count=5 Masked-
Capabilities: [a0] Express Endpoint, MSI 00
Capabilities: [100] Advanced Error Reporting
Capabilities: [140] Device Serial Number 88-c9-b3-ff-ff-bf-72-fc
Capabilities: [1c0] Latency Tolerance Reporting
Capabilities: [1f0] Precision Time Measurement
Capabilities: [1e0] L1 PM Substates
Kernel driver in use: igc
Kernel modules: igc

$ journalctl -b  | grep amdgpu
Jun 28 18:00:20 k3s03 kernel: [drm] amdgpu kernel modesetting enabled.
Jun 28 18:00:20 k3s03 kernel: amdgpu: Topology: Add APU node [0x0:0x0]
Jun 28 18:00:20 k3s03 kernel: amdgpu :03:00.0: enabling device (0106 -> 
0107)
Jun 28 18:00:20 k3s03 kernel: amdgpu :03:00.0: amdgpu: Trusted Memory Zone 
(TMZ) feature enabled
Jun 28 18:00:20 k3s03 kernel: amdgpu :03:00.0: amdgpu: Fetched VBIOS from 
VFCT
Jun 28 18:00:20 k3s03 kernel: amdgpu: ATOM BIOS: 113-RAVEN-111
Jun 28 18:00:20 k3s03 kernel: amdgpu :03:00.0: vgaarb: deactivate vga 
console
Jun 28 18:00:20 k3s03 kernel: amdgpu :03:00.0: amdgpu: VRAM: 256M 
0x00F4 - 0x00F40FFF (256M used)
Jun 28 18:00:20 k3s03 kernel: amdgpu :03:00.0: amdgpu: GART: 1024M 
0x - 0x3FFF
Jun 28 18:00:20 k3s03 kernel: amdgpu :03:00.0: amdgpu: AGP: 267419648M 
0x00F8 - 0x
Jun 28 18:00:20 k3s03 kernel: [drm] amdgpu: 256M of VRAM memory ready
Jun 28 18:00:20 k3s03 kernel: [drm] amdgpu: 3072M of GTT memory ready.
Jun 28 18:00:20 k3s03 kernel: amdgpu :03:00.0: amdgpu: PSP runtime database 
doesn't exist
Jun 28 18:00:20 k3s03 kernel: amdgpu: hwmgr_sw_init smu backed is smu10_smu
Jun 28 18:00:20 k3s03 kernel: amdgpu :03:00.0: amdgpu: Will use PSP to load 
VCN firmware
Jun 28 18:00:20 k3s03 kernel: amdgpu :03:00.0: amdgpu: RAS: optional ras ta 
ucode is not available
Jun 28 18:00:20 k3s03 kernel: amdgpu :03:00.0: amdgpu: RAP: optional rap ta 
ucode is not available
Jun 28 18:00:20 k3s03 kernel: amdgpu :03:00.0: amdgpu: SECUREDISPLAY: 
securedisplay ta ucode is not available
Jun 28 18:00:20 k3s03 kernel: kfd kfd: amdgpu: Allocated 3969056 bytes on gart
Jun 28 18:00:20 k3s03 kernel: amdgpu: HMM registered 256MB device memory
Jun 28 18:00:20 k3s03 kernel: amdgpu: Topology: Add APU node [0x15dd:0x1002]
Jun 28 18:00:20 k3s03 kernel: kfd kfd: amdgpu: added device 1002:15dd
Jun 28 18:00:20 k3s03 kernel: amdgpu :03:00.0: amdgpu: SE 1, SH per SE 1, 
CU per SH 11, active_cu_number 8
Jun 28 18:00:20 k3s03 kernel: fbcon: amdgpudrmfb (fb0) is primary device
Jun 28 18:00:20 k3s03 kernel: amdgpu :03:00.0: [drm] fb0: amdgpudrmfb frame 
buffer device
Jun 28 18:00:20 k3s03 kernel: amdgpu :03:00.0: amdgpu: ring gfx uses VM inv 
eng 0 on hub 0
Jun 28 18:00:20 k3s03 kernel: amdgpu :03:00.0: amdgpu: ring comp_1.0.0 uses 
VM inv eng 1 on hub 0
Jun 28 18:00:20 k3s03 kernel: amdgpu :03:00.0: amdgpu: ring comp_1.1.0 uses 
VM inv eng 4 on hub 0
Jun 28 18:00:20 k3s03 kernel: amdgpu :03:00.0: amdgpu: ring comp_1.2.0 uses 
VM inv eng 5 on hub 0
Jun 28 18:00:20 k3s03 kernel: amdgpu :03:00.0: amdgpu: ring comp_1.3.0 uses 
VM inv eng 6 on hub 0
Jun 28 18:00:20 k3s03 kernel: amdgpu :03:00.0: amdgpu: ring comp_1.0.1 uses 
VM inv eng 7 on hub 0
Jun 28 18:00:20 k3s03 kernel: amdgpu :03:00.0: amdgpu: ring comp_1.1.1 uses 
VM inv eng 8 on hub 0
Jun 28 18:00:20 k3s03 kernel: amdgpu :03:00.0: amdgpu: ring comp_1.2.1 uses 
VM inv eng 9 on hub 0
Jun 28 18:00:20 k3s03 kernel: amdgpu :03:00.0: amdgpu: ring comp_1.3.1 uses 
VM inv eng 10 on hub 0
Jun 28 18:00:20 k3s03 kernel: amdgpu :03:00.0: amdgpu: ring kiq_2.1.0 uses 
VM inv eng 11 on hub 0
Jun 28 18:00:20 k3s03 kernel: amdgpu :03:00.0: amdgpu: ring sdma0 uses VM 
inv eng 0 on hub 1
Jun 28 

[Bug 2055114] Re: fail2ban is broken in 24.04 Noble

2024-06-25 Thread Richard Laager
Note that fail2ban is in universe, not main. This was surprising to me,
and something I only realized because of this bug. I too think of
fail2ban as a core security component. I wish Ubuntu would promote it to
main, but that's a different conversation.

Traditionally, being in universe has meant that support is "best
effort". In my opinion, that was generally security/CVE support at most.
Canonical has recently announced expanded support of packages in
universe, which is great. However, I share your concern that they may
not be able to keep up with all of the packages in universe. Time will
tell.

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

Title:
  fail2ban is broken in 24.04 Noble

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


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

[Bug 2069763] [NEW] Ubuntu 24.04 Openshot 3.1.1 fails to export video content

2024-06-18 Thread Richard Bruce Baxter
Public bug reported:

Openshot 3.1.1 of Ubuntu 24.04 fails to export video content (only
audio).

Replication:
File - export project - export video - select MP4 (h.264) - export video

Actual result:
mp4 file is created with audio only

Expected result:
mp4 file is created with video and audio.

This bug has been reported previously;

https://github.com/OpenShot/openshot-qt/issues/5300
https://www.reddit.com/r/OpenShot/comments/1d4256l/video_is_not_exporting/
https://www.reddit.com/r/OpenShot/comments/1af1ezi/openshot_only_exports_audio_on_black_screen/

The current solution involves uninstalling openshot, then downloading and 
executing the latest daily build of openshot 3.1.1;
https://www.openshot.org/download/#daily (e.g. 8 June 2024)
sudo apt remove openshot
chmod 755 OpenShot-v3.1.1-dev-daily-12440-9424cc0c-5e9fa273-x86_64.AppImage
execute OpenShot-v3.1.1-dev-daily-12440-9424cc0c-5e9fa273-x86_64.AppImage

** Affects: openshot-qt (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/2069763

Title:
  Ubuntu 24.04 Openshot 3.1.1 fails to export video content

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openshot-qt/+bug/2069763/+subscriptions


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

[Bug 2069743] [NEW] Ubuntu 24.04 7zip v23.01 multi-part zip archive error

2024-06-18 Thread Richard Bruce Baxter
Public bug reported:

7zip v23.01 released with Ubuntu 24.04 (Nobel) throws an error when
creating multi-part zip archives:

This bug has been reported on sourceforge;
https://sourceforge.net/p/sevenzip/bugs/2407/

Replication instructions:
Assume fileName.gz is larger than 150MB, and wish to create a multi-part zip 
archive (archive.zip.001, archive.zip.002 etc);
7z a -tzip -v150M archive.zip fileName.gz

Actual result:
System ERROR:
errno=17 : File exists

Expected result:
Everything is Ok

Confirmed the bug is not present in the version of 7zip released with Ubuntu 
22.04 (Jammy);
download jammy p7zip packages;
  https://packages.ubuntu.com/jammy/p7zip-full
  https://packages.ubuntu.com/jammy/p7zip
sudo apt remove 7zip
sudo dpkg -i p7zip_16.02+dfsg-8_amd64.deb p7zip-full_16.02+dfsg-8_amd64.deb

** Affects: p7zip (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/2069743

Title:
  Ubuntu 24.04 7zip v23.01 multi-part zip archive error

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


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

[Bug 1879466] Re: Purging grub-pc package deletes /etc/default/grub file owned by grub-efi-amd64

2024-06-18 Thread Daniel Richard G.
Looks like a reasonable solution. But why not just move the file
instead, if that's the end goal?

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

Title:
  Purging grub-pc package deletes /etc/default/grub file owned by grub-
  efi-amd64

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


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

[Bug 1879558] Re: grub-efi-amd64 postinst fails to install GRUB if previous GRUB install is not detected

2024-06-18 Thread Daniel Richard G.
> You can just run grub-install once by hand, and it will all update
correctly afterwards.

The package already has a good debconf-driven install process for GRUB
---requiring the user to do it manually not only discards the benefit of
that, it's a delicate and error-prone operation that most users are not
accustomed to doing (hence wrapping it in debconf).

The core of the problem is the chicken-and-egg scenario of requiring
GRUB to be installed in order to install GRUB. I just want to do e.g.
"dpkg-reconfigure grub-efi-amd64" on a newborn system, and have the
instalL_devices question come up. Right now, in order to get that, I
have to fool the postinst script by running "touch
/boot/grub/x86_64-efi/core.efi" beforehand. That's not a reasonable UI.

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

Title:
  grub-efi-amd64 postinst fails to install GRUB if previous GRUB install
  is not detected

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


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

[Bug 2055114] Re: fail2ban is broken in 24.04 Noble

2024-06-03 Thread Richard Laager
I tested (rebuilt in a PPA) the version from:
https://launchpadlibrarian.net/731722634/fail2ban_1.0.2-3_1.0.2-3ubuntu1.24.04.1.diff.gz

It works for me. I can't mark this verification-done, as I didn't use
the actual version from -proposed (since it isn't available there yet).

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

Title:
  fail2ban is broken in 24.04 Noble

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


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

[Bug 2055114] Re: fail2ban is broken in 24.04 Noble

2024-05-29 Thread Richard Laager
@ghadi-rahme:

The version in the changelog is wrong. You have "1.0.2-ubuntu1", which
should presumably be "1.0.2-3ubuntu1". You are missing the "3" after the
dash.

Also, configure-setup-to-install-fail2ban.compat.patch does not apply
cleanly. Your version has spaces throughout the whole patch (both the
context lines and the line you are adding), where the code in the
package uses tabs.

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

Title:
  fail2ban is broken in 24.04 Noble

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


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

[Bug 1848709] Re: implementation is unusably old and contains significant security problems

2024-05-21 Thread Richard van der Hoff
> > but Debian does not include matrix-synapse in Debian Stable releases.
>
> [citation needed]

https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1036954,
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1036806#30

You're right that it's not *policy*. But, for now at least, Debian are
not including matrix-synapse in their stable releases.

> And the bug originally reported here was against the version of the
package in bionic, a year and a half after bionic released. That
security vulnerabilities were discovered in a package over the life
cycle of a stable release is also not a reason for us to remove it.

Is it not? Ubuntu claims to support its LTS releases for five years; I'd
argue pretty strongly that the expectation is that security
vulnerabilities, at least, are patched for those five years. If you're
unable to do that (and I appreciate that it's a lot of work), better not
to ship the package in the first place. Ubuntu users are much better
served by the upstream packages.

To be clear, this problem was originally reported against Bionic, but
it's true of every Ubuntu release before and since. CVE-2024-31208 is a
High severity CVE which affects all current Ubuntu releases.
CVE-2023-45129 affects the version of matrix-synapse in Mantic and
Noble. The version in Jammy is, frankly, prehistoric.

> But https://ubuntu.com/security/cves?q==matrix-
synapse=== also shows none of these CVEs are
scored above 'medium' priority.

True, but doesn't that rather reflect lack of triage, than any actual
severity?


** Bug watch added: Debian Bug tracker #1036954
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1036954

** CVE added: https://cve.mitre.org/cgi-bin/cvename.cgi?name=2023-45129

** CVE added: https://cve.mitre.org/cgi-bin/cvename.cgi?name=2024-31208

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

Title:
  implementation is unusably old and contains significant security
  problems

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/matrix-synapse/+bug/1848709/+subscriptions


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

[Bug 2065639] [NEW] Splash screen shows Ubuntu 23.10 instead of 24.04 and forces logout

2024-05-13 Thread Richard M
Public bug reported:

We performed a minimal install of Ubuntu Server 24.04, disabled swap.
This is a machine with limited resources (8GB SSD, 2GB RAM).

Installed ubuntu-desktop-minimal, stopped/disabled/removed gdm3;
installed lightdm and rebooted.

After reboot we see the maroon X splash asking us to login. However at
the bottom right of the screen it says "Ubuntu 23.10", not "Ubuntu
24.04".

When we login by entering the password  we get a white screen with a sad face 
icon and the words:
"Oh no! Something has gone wrong. A problem has occurred and the system can't 
recover. Please log out and try again." Trying again results in the same 
problems.

The above set of install steps works fine using the Ubuntu Server ISO
for Ubuntu 22.04.4.

ProblemType: Bug
DistroRelease: Ubuntu 24.04
Package: xorg 1:7.7+23ubuntu3
ProcVersionSignature: Ubuntu 6.8.0-31.31-generic 6.8.1
Uname: Linux 6.8.0-31-generic x86_64
ApportVersion: 2.28.1-0ubuntu3
Architecture: amd64
BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
CasperMD5CheckResult: unknown
Date: Tue May 14 00:48:58 2024
DistUpgraded: Fresh install
DistroCodename: noble
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes
GraphicsCard:
 Intel Corporation Atom Processor Z36xxx/Z37xxx Series Graphics & Display 
[8086:0f31] (rev 11) (prog-if 00 [VGA controller])
   Subsystem: Intel Corporation Atom Processor Z36xxx/Z37xxx Series Graphics & 
Display [8086:7270]
InstallationDate: Installed on 2024-05-13 (0 days ago)
InstallationMedia: Ubuntu-Server 24.04 LTS "Noble Numbat" - Release amd64 
(20240423)
MachineType: Insyde VT_mIPC_BT35M X64
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.8.0-31-generic 
root=UUID=9a078d64-3727-4836-823b-04c78b734b8a ro noapic quiet splash 
console=ttyS0 plymouth.ignore-serial-consoles systemd.log_level=0 
systemd.show_status=0 net.ifnames=0 biosdevname=0
SourcePackage: xorg
Symptom: display
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 10/18/2017
dmi.bios.release: 228.250
dmi.bios.vendor: INSYDE Corp.
dmi.bios.version: RJX400B101_v2.2
dmi.board.asset.tag: Type2 - Board Asset Tag
dmi.board.name: Type2 - Board Product Name
dmi.board.vendor: Type2 - Board Manufacturer
dmi.board.version: Type2 - Board Version
dmi.chassis.asset.tag: Chassis Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: Chassis Manufacturer
dmi.chassis.version: Chassis Version
dmi.ec.firmware.release: 0.0
dmi.modalias: 
dmi:bvnINSYDECorp.:bvrRJX400B101_v2.2:bd10/18/2017:br228.250:efr0.0:svnInsyde:pnVT_mIPC_BT35MX64:pvrType1-TBDbyOEM:rvnType2-BoardManufacturer:rnType2-BoardProductName:rvrType2-BoardVersion:cvnChassisManufacturer:ct10:cvrChassisVersion:skuType1-SKU0:
dmi.product.family: Type1 - Family
dmi.product.name: VT_mIPC_BT35M X64
dmi.product.sku: Type1 - SKU0
dmi.product.version: Type1 - TBD by OEM
dmi.sys.vendor: Insyde
version.compiz: compiz N/A
version.libdrm2: libdrm2 2.4.120-2build1
version.libgl1-mesa-dri: libgl1-mesa-dri 24.0.5-1ubuntu1
version.libgl1-mesa-glx: libgl1-mesa-glx N/A
version.xserver-xorg-core: xserver-xorg-core 2:21.1.12-1ubuntu1
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A

** Affects: ubuntu
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug noble ubuntu

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

Title:
  Splash screen shows Ubuntu 23.10 instead of 24.04 and forces logout

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


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

[Bug 2061091] Re: Freezing user space processes failed after 20.008 seconds (1 tasks refusing to freeze, wq_busy=0)

2024-05-07 Thread Richard van der Hoff
I reported this upstream at
https://bugzilla.kernel.org/show_bug.cgi?id=218816. Perhaps someone
there can help.

** Bug watch added: Linux Kernel Bug Tracker #218816
   https://bugzilla.kernel.org/show_bug.cgi?id=218816

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

Title:
  Freezing user space processes failed after 20.008 seconds (1 tasks
  refusing to freeze, wq_busy=0)

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


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

[Bug 2064878] [NEW] You are missing a file in nvidia-cuda-samples package

2024-05-05 Thread Richard Henschel
Public bug reported:

make failed because:
cuda-samples/Samples/0_Introduction/matrixMulDynlinkJIT/cuda_drvapi_dynlink.c
is missing.

** Affects: nvidia-cuda-samples (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/2064878

Title:
  You are missing a file in nvidia-cuda-samples package

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


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

[Bug 2033121] Re: Traffic Server crashes when trying to CONNECT to an unroutable IP

2024-05-04 Thread Richard Schwab
Given the complete lack of any feedback after 8 months and now 24.04
being released, which ships a newer version not affected by this bug, I
don't care about this bug being addressed anymore.

It seems like there's virtually zero usage of this functionality, so
this frequent denial of service during regular operation doesn't affect
many other users.

If anyone else runs into this, you'll probably either want to switch to
Ubuntu 24.04 or build your own package.

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

Title:
  Traffic Server crashes when trying to CONNECT to an unroutable IP

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


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

[Bug 2064543] Re: cannot upgrade to 24.04 says their are unsupported launchpads

2024-05-02 Thread Richard Seitz
I added the dist-upgrade main.log for review.

** Attachment added: "main.log"
   
https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/2064543/+attachment/5774162/+files/main.log

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

Title:
  cannot upgrade to 24.04 says their are unsupported launchpads

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


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

[Bug 2064543] Re: cannot upgrade to 24.04 says their are unsupported launchpads

2024-05-02 Thread Richard Seitz
i cleaned my cache and now I get 
Error during update 

A problem occurred during the update. This is usually some sort of 
network problem, please check your network connection and retry. 


Restoring original system state

Aborting
Reading package lists... Done
Building dependency tree... Done 
Reading state information... Done

network connection is fine and working correctly

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

Title:
  cannot upgrade to 24.04 says their are unsupported launchpads

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


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

[Bug 2064543] [NEW] cannot upgrade to 24.04 says their are unsupported launchpads

2024-05-01 Thread Richard Seitz
Public bug reported:

This was caused by: 
* Upgrading to a pre-release version of Ubuntu 
This is most likely a transient problem, 
please try again later. 
If none of this applies, then please report this bug using the 
command 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal. If 
you want to investigate this yourself the log files in 
'/var/log/dist-upgrade' will contain details about the upgrade. 
Specifically, look at 'main.log' and 'apt.log'. 


Restoring original system state

Aborting
Reading package lists... Done
Building dependency tree... Done 
Reading state information... Done

ProblemType: Bug
DistroRelease: Ubuntu 23.10
Package: ubuntu-release-upgrader-core 1:23.10.14
ProcVersionSignature: Ubuntu 6.5.0-28.29-generic 6.5.13
Uname: Linux 6.5.0-28-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.27.0-0ubuntu5
Architecture: amd64
CasperMD5CheckResult: pass
CrashDB: ubuntu
CurrentDesktop: KDE
Date: Wed May  1 16:24:33 2024
InstallationDate: Installed on 2022-12-15 (503 days ago)
InstallationMedia: Kubuntu 22.10 "Kinetic Kudu" - Release amd64 (20221020)
PackageArchitecture: all
SourcePackage: ubuntu-release-upgrader
UpgradeStatus: Upgraded to mantic on 2024-05-01 (0 days ago)
VarLogDistupgradeAptHistorylog:
 Start-Date: 2024-05-01  16:23:45
 Requested-By: rick (1000)
 End-Date: 2024-05-01  16:23:45
VarLogDistupgradeApttermlog:
 Log started: 2024-05-01  16:23:45
 Log ended: 2024-05-01  16:23:45

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


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

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

Title:
  cannot upgrade to 24.04 says their are unsupported launchpads

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


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

[Bug 2061091] Re: Freezing user space processes failed after 20.008 seconds (1 tasks refusing to freeze, wq_busy=0)

2024-05-01 Thread Richard van der Hoff
Seems I was mistaken. This happens on 6.8 as well.

** Attachment added: "kern.log"
   
https://bugs.launchpad.net/ubuntu/+source/linux-signed-hwe-6.5/+bug/2061091/+attachment/5773507/+files/kern.log

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

Title:
  Freezing user space processes failed after 20.008 seconds (1 tasks
  refusing to freeze, wq_busy=0)

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


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

[Bug 2064372] Re: While upgrading to 24.04 I got:'E:Sub-process /usr/bin/dpkg returned an error code (1)'

2024-04-30 Thread Richard Henschel
I did manage to create a cpio archive of /var/log/dist-upgrade directory
with:

root@multivac:/var/log/dist-upgrade# find . -type f -print | cpio -ov > 
/tmp/dist-upgrade.cpio
./history.log
./apt.log
./apt-clone_system_state.tar.gz
./main.log
./apt-term.log
./eipp.log.xz
./lspci.txt
3017 blocks

Hope it helps.

Note that ls works if I don't give it any flags.


** Attachment added: "dist-upgrade.cpio"
   
https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/2064372/+attachment/5773482/+files/dist-upgrade.cpio

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

Title:
  While upgrading to 24.04 I got:'E:Sub-process /usr/bin/dpkg returned
  an error code (1)'

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


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

[Bug 2064372] [NEW] While upgrading to 24.04 I got:'E:Sub-process /usr/bin/dpkg returned an error code (1)'

2024-04-30 Thread Richard Henschel
Public bug reported:

Probably an issue with libc causes ls and tar to core dump when run, so
don't know how I can get you files as requested.

root@multivac:~# cd /var/log/dist-upgrade/
root@multivac:/var/log/dist-upgrade# ls -latr
total 1532
Segmentation fault (core dumped)
root@multivac:/var/log# tar -cvzpf /tmp/dist-upgrade.tar.gz ./dist-upgrade
Segmentation fault (core dumped)

Here is a list of terminal output.  It occurred very early in upgrade:


Upgrading
Fetched 0 B in 0s (0 B/s)   

   Upgrading: libc6-dev:amd64 < 2.38-1ubuntu6.2 | 2.39-0ubuntu8.1 @ii umH Ib > 
due to libc6-dev:amd64 Depends on libc6:amd64 < 2.38-1ubuntu6.2 -> 
2.39-0ubuntu8.1 @ii umU Ib > (= 2.38-1ubuntu6.2)
   Upgrading: libc6-dbg:amd64 < 2.38-1ubuntu6.2 | 2.39-0ubuntu8.1 @ii umH Ib > 
due to libc6-dbg:amd64 Depends on libc6:amd64 < 2.38-1ubuntu6.2 -> 
2.39-0ubuntu8.1 @ii umU Ib > (= 2.38-1ubuntu6.2)
   Upgrading: libc-dev-bin:amd64 < 2.38-1ubuntu6.2 | 2.39-0ubuntu8.1 @ii umH Ib 
> due to libc-dev-bin:amd64 Depends on libc6:amd64 < 2.38-1ubuntu6.2 -> 
2.39-0ubuntu8.1 @ii umU Ib > (< 2.39)
   Upgrading: libc-bin:amd64 < 2.38-1ubuntu6.2 | 2.39-0ubuntu8.1 @ii umH Ib > 
due to libc-bin:amd64 Depends on libc6:amd64 < 2.38-1ubuntu6.2 -> 
2.39-0ubuntu8.1 @ii umU Ib > (< 2.39)
  MarkInstall libc6:amd64 < 2.38-1ubuntu6.2 -> 2.39-0ubuntu8.1 @ii umU Ib > FU=1
  Upgrading glibc-source:amd64 < 2.38-1ubuntu6.2 | 2.39-0ubuntu8.1 @ii umH > 
due to libc6:amd64
  Upgrading libc6-dev-amd64:i386 < 2.38-1ubuntu6.2 | 2.39-0ubuntu8.1 @ii umH 
NPb IPb > due to libc6:amd64
  Upgrading libc6-dev:i386 < 2.38-1ubuntu6.2 | 2.39-0ubuntu8.1 @ii umH > due to 
libc6:amd64
  Upgrading libc6-amd64:i386 < 2.38-1ubuntu6.2 | 2.39-0ubuntu8.1 @ii umH > due 
to libc6:amd64
  Upgrading libc6:i386 < 2.38-1ubuntu6.2 | 2.39-0ubuntu8.1 @ii umH Ib > due to 
libc6:amd64
  Upgrading locales:amd64 < 2.38-1ubuntu6.2 | 2.39-0ubuntu8.1 @ii umH > due to 
libc6:amd64
  Upgrading libc6-dev:amd64 < 2.38-1ubuntu6.2 | 2.39-0ubuntu8.1 @ii umH Ib > 
due to libc6:amd64
  Upgrading libc6-dbg:amd64 < 2.38-1ubuntu6.2 | 2.39-0ubuntu8.1 @ii umH Ib > 
due to libc6:amd64
  Upgrading libc-devtools:amd64 < 2.38-1ubuntu6.2 | 2.39-0ubuntu8.1 @ii umH > 
due to libc6:amd64
  Upgrading libc-dev-bin:amd64 < 2.38-1ubuntu6.2 | 2.39-0ubuntu8.1 @ii umH Ib > 
due to libc6:amd64
  Upgrading libc-bin:amd64 < 2.38-1ubuntu6.2 | 2.39-0ubuntu8.1 @ii umH Ib > due 
to libc6:amd64
  Upgrading glibc-doc:amd64 < 2.38-1ubuntu6.2 | 2.39-0ubuntu8.1 @ii umH > due 
to libc6:amd64
MarkInstall libc6-dev-amd64:i386 < 2.38-1ubuntu6.2 -> 2.39-0ubuntu8.1 @ii 
umU NPb IPb > FU=0
ignore old unsatisfied important dependency on gcc-multilib:i386

Upgrading
Fetched 0 B in 0s (0 B/s)   

Preconfiguring packages ...
Preconfiguring packages ...
Preconfiguring packages ...
(Reading database ... 774707 files and directories currently installed.)
Preparing to unpack .../00-libc6-dev-amd64_2.39-0ubuntu8.1_i386.deb ...
Unpacking libc6-dev-amd64:i386 (2.39-0ubuntu8.1) over (2.38-1ubuntu6.2) ...
Preparing to unpack .../01-libc6-dev_2.39-0ubuntu8.1_i386.deb ...
De-configuring libc6-dev:amd64 (2.38-1ubuntu6.2), to allow configuration of 
libc6-dev:i386 (2.39-0ubuntu8.1) ...

Progress: [  5%]
Unpacking libc6-dev:i386 (2.39-0ubuntu8.1) over (2.38-1ubuntu6.2) ...
Preparing to unpack .../02-libc6-dev_2.39-0ubuntu8.1_amd64.deb ...
Unpacking libc6-dev:amd64 (2.39-0ubuntu8.1) over (2.38-1ubuntu6.2) ...

Progress: [ 11%]
Preparing to unpack .../03-libc-devtools_2.39-0ubuntu8.1_amd64.deb ...
Unpacking libc-devtools (2.39-0ubuntu8.1) over (2.38-1ubuntu6.2) ...
Preparing to unpack .../04-libc-dev-bin_2.39-0ubuntu8.1_amd64.deb ...

Progress: [ 16%]
Unpacking libc-dev-bin (2.39-0ubuntu8.1) over (2.38-1ubuntu6.2) ...
Preparing to unpack .../05-libc6-amd64_2.39-0ubuntu8.1_i386.deb ...
Unpacking libc6-amd64:i386 (2.39-0ubuntu8.1) over (2.38-1ubuntu6.2) ...

Progress: [ 22%]
dpkg-deb: error: tar subprocess was killed by signal (Segmentation fault), core 
dumped
dpkg: error processing archive 
/tmp/apt-dpkg-install-4QyvEU/06-libc6-dbg_2.39-0ubuntu8.1_amd64.deb (--unpack):
 dpkg-deb --control subprocess returned error exit status 2
dpkg-deb: error: tar subprocess was killed by signal (Segmentation fault), core 
dumped
dpkg: error processing archive 
/tmp/apt-dpkg-install-4QyvEU/07-locales_2.39-0ubuntu8.1_all.deb (--unpack):
 dpkg-deb --control subprocess returned error exit status 2
dpkg-deb: error: tar subprocess was killed by signal (Segmentation fault), core 
dumped
dpkg: error processing archive 
/tmp/apt-dpkg-install-4QyvEU/08-libc6_2.39-0ubuntu8.1_amd64.deb (--unpack):
 dpkg-deb --control subprocess returned error exit status 2
dpkg-deb: error: tar subprocess was killed by signal (Segmentation fault), core 
dumped
dpkg: 

[Bug 2061091] Re: Freezing user space processes failed after 20.008 seconds (1 tasks refusing to freeze, wq_busy=0)

2024-04-29 Thread Richard van der Hoff
Ok, I reproduced this on a rebuild of 6.5.0-34 with
CONFIG_PROVE_LOCKING. Here are some relevant-looking bits of the logs.
It looks like the wireplumber process and the usb_disconnect process
have deadlocked?

[Thinking about this further, possibly the action that triggers it is to
disconnect the dock while the system is suspended, then resume the
system.]

Apr 29 21:24:36 xps9320 kernel: [280990.641315] INFO: task wireplumber:3263 
blocked for more than 241 seconds.
Apr 29 21:24:36 xps9320 kernel: [280990.641334]   Tainted: G   OE   
   6.5.13+ #18
Apr 29 21:24:36 xps9320 kernel: [280990.641341] "echo 0 > 
/proc/sys/kernel/hung_task_timeout_secs" disables this message.
Apr 29 21:24:36 xps9320 kernel: [280990.641346] task:wireplumber state:D 
stack:0 pid:3263  ppid:3253   flags:0x0002
Apr 29 21:24:36 xps9320 kernel: [280990.641360] Call Trace:
Apr 29 21:24:36 xps9320 kernel: [280990.641367]  
Apr 29 21:24:36 xps9320 kernel: [280990.641382]  __schedule+0x4cc/0x1ad0
Apr 29 21:24:36 xps9320 kernel: [280990.641401]  ? trace_hardirqs_on+0x65/0xc0
Apr 29 21:24:36 xps9320 kernel: [280990.641414]  ? 
_raw_spin_unlock_irqrestore+0x31/0x70
Apr 29 21:24:36 xps9320 kernel: [280990.641424]  ? 
__wake_up_common_lock+0x8d/0xd0
Apr 29 21:24:36 xps9320 kernel: [280990.641442]  schedule+0x68/0x110
Apr 29 21:24:36 xps9320 kernel: [280990.641456]  
snd_power_ref_and_wait+0xbd/0x120 [snd]
Apr 29 21:24:36 xps9320 kernel: [280990.641486]  ? 
__pfx_autoremove_wake_function+0x10/0x10
Apr 29 21:24:36 xps9320 kernel: [280990.641501]  snd_ctl_elem_info+0x4f/0x1b0 
[snd]
Apr 29 21:24:36 xps9320 kernel: [280990.641532]  
snd_ctl_elem_info_user+0x4e/0xb0 [snd]
Apr 29 21:24:36 xps9320 kernel: [280990.641581]  snd_ctl_ioctl+0x1ec/0x850 [snd]
Apr 29 21:24:36 xps9320 kernel: [280990.641608]  ? __fget_files+0xde/0x1d0
Apr 29 21:24:36 xps9320 kernel: [280990.641625]  __x64_sys_ioctl+0x9d/0xe0
Apr 29 21:24:36 xps9320 kernel: [280990.641637]  x64_sys_call+0x1fe9/0x2570
Apr 29 21:24:36 xps9320 kernel: [280990.641646]  do_syscall_64+0x56/0x90
Apr 29 21:24:36 xps9320 kernel: [280990.641657]  ? do_syscall_64+0x63/0x90
Apr 29 21:24:36 xps9320 kernel: [280990.641665]  ? do_syscall_64+0x63/0x90
Apr 29 21:24:36 xps9320 kernel: [280990.641675]  
entry_SYSCALL_64_after_hwframe+0x73/0xdd
Apr 29 21:24:36 xps9320 kernel: [280990.641683] RIP: 0033:0x70991f71a94f
Apr 29 21:24:36 xps9320 kernel: [280990.641692] RSP: 002b:7ffc84003090 
EFLAGS: 0246 ORIG_RAX: 0010
Apr 29 21:24:36 xps9320 kernel: [280990.641701] RAX: ffda RBX: 
7ffc84003100 RCX: 70991f71a94f
Apr 29 21:24:36 xps9320 kernel: [280990.641707] RDX: 7ffc84003100 RSI: 
c1105511 RDI: 0022
Apr 29 21:24:36 xps9320 kernel: [280990.641713] RBP: 7ffc840032e0 R08: 
6231bc666330 R09: 0004
Apr 29 21:24:36 xps9320 kernel: [280990.641718] R10: f314 R11: 
0246 R12: 6231bc90dc50
Apr 29 21:24:36 xps9320 kernel: [280990.641723] R13: 6231bc7c9140 R14: 
7ffc84003280 R15: 7ffc84003220
Apr 29 21:24:36 xps9320 kernel: [280990.641745]  
Apr 29 21:24:36 xps9320 kernel: [280990.64] INFO: task kworker/2:3:67822 
blocked for more than 241 seconds.
Apr 29 21:24:36 xps9320 kernel: [280990.642229]   Tainted: G   OE   
   6.5.13+ #18
Apr 29 21:24:36 xps9320 kernel: [280990.642234] "echo 0 > 
/proc/sys/kernel/hung_task_timeout_secs" disables this message.
Apr 29 21:24:36 xps9320 kernel: [280990.642239] task:kworker/2:3 state:D 
stack:0 pid:67822 ppid:2  flags:0x4000
Apr 29 21:24:36 xps9320 kernel: [280990.642250] Workqueue: usb_hub_wq hub_event
Apr 29 21:24:36 xps9320 kernel: [280990.642262] Call Trace:
Apr 29 21:24:36 xps9320 kernel: [280990.642266]  
Apr 29 21:24:36 xps9320 kernel: [280990.642274]  __schedule+0x4cc/0x1ad0
Apr 29 21:24:36 xps9320 kernel: [280990.642285]  ? mark_held_locks+0x4d/0x90
Apr 29 21:24:36 xps9320 kernel: [280990.642303]  schedule+0x68/0x110
Apr 29 21:24:36 xps9320 kernel: [280990.642312]  
schedule_preempt_disabled+0x15/0x30
Apr 29 21:24:36 xps9320 kernel: [280990.642321]  
rwsem_down_write_slowpath+0x2bc/0x820
Apr 29 21:24:36 xps9320 kernel: [280990.642342]  down_write+0xde/0xe0
Apr 29 21:24:36 xps9320 kernel: [280990.642353]  
snd_pcm_dev_disconnect+0x1cb/0x280 [snd_pcm]
Apr 29 21:24:36 xps9320 kernel: [280990.642386]  
snd_device_disconnect_all+0x47/0xa0 [snd]
Apr 29 21:24:36 xps9320 kernel: [280990.642411]  
snd_card_disconnect.part.0+0x10d/0x270 [snd]
Apr 29 21:24:36 xps9320 kernel: [280990.642439]  snd_card_disconnect+0x13/0x30 
[snd]
Apr 29 21:24:36 xps9320 kernel: [280990.642462]  
usb_audio_disconnect+0x116/0x290 [snd_usb_audio]
Apr 29 21:24:36 xps9320 kernel: [280990.642504]  usb_unbind_interface+0x90/0x280
Apr 29 21:24:36 xps9320 kernel: [280990.642518]  device_remove+0x69/0x80
Apr 29 21:24:36 xps9320 kernel: [280990.642528]  
device_release_driver_internal+0x20d/0x280
Apr 29 21:24:36 xps9320 kernel: [280990.642539]  

[Bug 2061091] Re: Freezing user space processes failed after 20.008 seconds (1 tasks refusing to freeze, wq_busy=0)

2024-04-25 Thread Richard van der Hoff
Oddly, I don't seem to be able to reproduce this problem on an upstream
6.8 kernel. I'll try with a rebuild of 6.5.0-27-generic instead.

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

Title:
  Freezing user space processes failed after 20.008 seconds (1 tasks
  refusing to freeze, wq_busy=0)

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


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

[Bug 2044630] Re: zfs-dkms 2.1.5-1ubuntu6~22.04.2- Kernel module failed to build

2024-04-22 Thread Richard Harris
Same here: can't appear to install anything new

zfs-2.1.5-1ubuntu6~22.04.4
zfs-kmod-2.2.0-0ubuntu1~23.10.2

I'm not seeing any time-to-fix notices

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

Title:
  zfs-dkms 2.1.5-1ubuntu6~22.04.2- Kernel module failed to build

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


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

[Bug 2061933] Re: plasma-discover "Unable to load applications"

2024-04-18 Thread Richard Pratt
Same issue observed on Lubuntu Noble Numbat 24.04 Beta daily build
(normal installation) 20240416 on a Dell Wyse 3040

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

Title:
  plasma-discover "Unable to load applications"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/plasma-discover/+bug/2061933/+subscriptions


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

[Bug 2061091] Re: Freezing user space processes failed after 20.008 seconds (1 tasks refusing to freeze, wq_busy=0)

2024-04-17 Thread Richard van der Hoff
> And this call trace looks is related to current issue, I guess
snd_power_ref_and_wait was waiting for snd_card_disconnect which wakes
up power_sleep at the end of the code, but snd_card_disconnect ->
snd_device_disconnect_all -> snd_pcm_dev_disconnect was blocked for some
reason.

Yes, interesting. Good spot.

> Looks suspend/resume can be completed sometimes.

Yes. I think what causes the problem is when I disconnect from my USB
dock. After that, I can't suspend until I reboot. Once I reboot, it can
suspend again until I once more disconnect the dock.

> Could you rebuild kernel with CONFIG_PROVE_LOCKING option to discover locking 
> related deadlocks? Then upload the log after reproduce the issue by shut down 
> laptop with the new kernel. Also please attach the output of lsusb given it 
> could be usb relevant.
>
> And it also would be helpful to try with latest noble kernel or recent 
> upstream kernel, thanks.

Sure. I'll try an upstream kernel with CONFIG_PROVE_LOCKING.

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

Title:
  Freezing user space processes failed after 20.008 seconds (1 tasks
  refusing to freeze, wq_busy=0)

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


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

[Bug 2061091] Re: Freezing user space processes failed after 20.008 seconds (1 tasks refusing to freeze, wq_busy=0)

2024-04-16 Thread Richard van der Hoff
rav@xps9320:~$ cat /proc/asound/modules
 0 snd_soc_sof_sdw
 1 snd_usb_audio

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

Title:
  Freezing user space processes failed after 20.008 seconds (1 tasks
  refusing to freeze, wq_busy=0)

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


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

[Bug 2061091] Re: Freezing user space processes failed after 20.008 seconds (1 tasks refusing to freeze, wq_busy=0)

2024-04-16 Thread Richard van der Hoff
Here's the kern.log since the last-but-one reboot.

** Attachment added: "kern.log"
   
https://bugs.launchpad.net/ubuntu/+source/linux-signed-hwe-6.5/+bug/2061091/+attachment/5766127/+files/kern.log.gz

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

Title:
  Freezing user space processes failed after 20.008 seconds (1 tasks
  refusing to freeze, wq_busy=0)

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


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

[Bug 1948881] Re: XSane plugin not available in GIMP File menu

2024-04-15 Thread Richard Hansen
Workaround: https://askubuntu.com/a/1427981

** Bug watch added: gitlab.com/sane-project/frontend/xsane/-/issues #50
   https://gitlab.com/sane-project/frontend/xsane/-/issues/50

** Also affects: xsane via
   https://gitlab.com/sane-project/frontend/xsane/-/issues/50
   Importance: Unknown
   Status: Unknown

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

Title:
  XSane plugin not available in GIMP File menu

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


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

[Bug 2061233] [NEW] Lubuntu Noble 24.04 Beta - qapt-deb-installer - No longer working

2024-04-13 Thread Richard Pratt
Public bug reported:

[Symptoms]
When attempting to install local deb packages using qapt-deb-installer on 
Lubuntu Noble Numbat 24.04 BETA 20240412, the deb package install fails with 
same error for a number of deb packages.

The error displayed is Status: Error: Cannot satisfy dependencies

NOTE: The qapt-deb-installer was working fine with Lubuntu Noble Numbat
24.04 ALPHA daily builds in March/April so appears to have been
introduced in the Beta.

Same symptoms experienced when installing local deb packages for (i) Balena 
Etcher (ii) Opera Browser
Same symptoms for Minimal and Normal Installations
Lubuntu beta installed on base hardware Dell Wyse 3040 (UEFI).

[Possibly Related Symptom Reports]
https://www.reddit.com/r/Kubuntu/comments/v94ghk/every_deb_i_try_to_install_with_the_installer_it/?rdt=34637

[Workaround]
Have to install via the CLI terminal command "sudo apt install 
/path/to/package.deb"

ProblemType: Bug
DistroRelease: Ubuntu 24.04
Package: qapt-deb-installer 3.0.5-2build3
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: LXQt
Date: Sat Apr 13 17:39:20 2024
InstallationDate: Installed on 2024-04-13 (1 days ago)
InstallationMedia: Lubuntu 24.04 LTS "Noble Numbat" - Beta amd64 (20240412)
SourcePackage: libqapt
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: 24.04 amd64 apport-bug beta noble qapt-deb-installer

** Attachment added: "Screenshot of error for balena etcher deb package install"
   https://bugs.launchpad.net/bugs/2061233/+attachment/5764745/+files/screen.jpg

** Description changed:

  [Symptoms]
- When attempting to install local deb packages using qapt-deb-installer on 
Lubuntu Noble Numbat 24.04 BETA 20240412, the deb package install fails with 
same error for a number of deb packages.  
+ When attempting to install local deb packages using qapt-deb-installer on 
Lubuntu Noble Numbat 24.04 BETA 20240412, the deb package install fails with 
same error for a number of deb packages.
  
  The error displayed is Status: Error: Cannot satisfy dependencies
  
- NOTE: The was working fine with Lubuntu Noble Numbat 24.04 ALPHA daily
- builds in March/April so appears to have been introduced in the Beta.
+ NOTE: The qapt-deb-installer was working fine with Lubuntu Noble Numbat
+ 24.04 ALPHA daily builds in March/April so appears to have been
+ introduced in the Beta.
  
  Same symptoms experienced when installing local deb packages for (i) Balena 
Etcher (ii) Opera Browser
  Same symptoms for Minimal and Normal Installations
  Lubuntu beta installed on base hardware Dell Wyse 3040 (UEFI).
  
  [Possibly Related Symptom Reports]
  
https://www.reddit.com/r/Kubuntu/comments/v94ghk/every_deb_i_try_to_install_with_the_installer_it/?rdt=34637
  
  [Workaround]
  Have to install via the CLI terminal command "sudo apt install 
/path/to/package.deb"
- 
- 
- [Apport Summary]
- ProblemType: Bug
- ApportVersion: 2.28.0-0ubuntu1
- Architecture: amd64
- CasperMD5CheckResult: unknown
- CurrentDesktop: LXQt
- Date: Sat Apr 13 12:52:26 2024
- DistroRelease: Ubuntu 24.04
- InstallationDate: Installed on 2024-04-13 (0 days ago)
- InstallationMedia: Lubuntu 24.04 LTS "Noble Numbat" - Beta amd64 (20240412)
- Package: qapt-deb-installer 3.0.5-2build3
- PackageArchitecture: amd64
- ProcVersionSignature: Ubuntu 6.8.0-22.22-generic 6.8.1
- SourcePackage: libqapt
- Tags: noble
- Uname: Linux 6.8.0-22-generic x86_64
- UpgradeStatus: No upgrade log present (probably fresh install)
- _MarkForUpload: True
  
  ProblemType: Bug
  DistroRelease: Ubuntu 24.04
  Package: qapt-deb-installer 3.0.5-2build3
  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: LXQt
  Date: Sat Apr 13 17:39:20 2024
  InstallationDate: Installed on 2024-04-13 (1 days ago)
  InstallationMedia: Lubuntu 24.04 LTS "Noble Numbat" - Beta amd64 (20240412)
  SourcePackage: libqapt
  UpgradeStatus: No upgrade log present (probably fresh install)

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

Title:
  Lubuntu Noble 24.04 Beta - qapt-deb-installer - No longer working

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


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

[Bug 2061113] [NEW] Default included php-fpm profile prevent php-fpm installation

2024-04-12 Thread Thibault Richard
Public bug reported:

Package apparmor-profiles

To reproduce the bug


apt install apparmor-profiles
apt install php-fpm

php-fpm installation will crash

Resolution
**

a) It's safer to set by default the php-fpm profile in complain mode

/etc/apparmor.d/php-fpm

Line 7 :
profile php-fpm /usr/sbin/php-fpm* flags=(attach_disconnected, complain) {  
(addition of ", complain)

b) The real problem resolution is to add this at line 47

owner /run/systemd/notify w,

ProblemType: Bug
DistroRelease: Ubuntu 24.04
Package: apparmor-profiles 4.0.0-beta3-0ubuntu3
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: pass
Date: Fri Apr 12 09:47:15 2024
InstallationDate: Installed on 2024-04-10 (2 days ago)
InstallationMedia: Ubuntu-Server 24.04 LTS "Noble Numbat" - Beta amd64 
(20240409)
PackageArchitecture: all
ProcEnviron:
 LANG=en_US.UTF-8
 PATH=(custom, no user)
 SHELL=/bin/bash
 TERM=xterm
 XDG_RUNTIME_DIR=
ProcKernelCmdline: BOOT_IMAGE=/vmlinuz-6.8.0-22-generic 
root=/dev/mapper/ubuntu--vg-ubuntu--lv ro
SourcePackage: apparmor
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: apparmor (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/2061113

Title:
  Default included php-fpm profile prevent php-fpm installation

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


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

[Bug 2061091] Re: Freezing user space processes failed after 20.008 seconds (1 tasks refusing to freeze, wq_busy=0)

2024-04-12 Thread Richard van der Hoff
I found a very similar report at
https://discussion.fedoraproject.org/t/freezing-user-space-processes-
failed-after-20-000-seconds-2-tasks-refusing-to-freeze-wq-busy-0/92672,
but no resolution there.

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

Title:
  Freezing user space processes failed after 20.008 seconds (1 tasks
  refusing to freeze, wq_busy=0)

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


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

[Bug 2061091] [NEW] Freezing user space processes failed after 20.008 seconds (1 tasks refusing to freeze, wq_busy=0)

2024-04-12 Thread Richard van der Hoff
Public bug reported:

Sometimes, when trying to shut down or suspend my laptop, it gets stuck
on the console screen. If I was suspending, it eventually gives up and
goes back to the X session. During a shutdown it hangs forever and the
only solution seems to be to force a reboot with Magic-SysRq.

The following appears in `kern.log`:

```
Apr 12 08:59:54 xps9320 kernel: [173172.510341] Freezing user space processes 
failed after 20.008 seconds (1 tasks refusing to freeze, wq_busy=0):
Apr 12 08:59:54 xps9320 kernel: [173172.515669] task:wireplumber state:D 
stack:0 pid:2408  ppid:2398   flags:0x0006
Apr 12 08:59:54 xps9320 kernel: [173172.518923] Call Trace:
Apr 12 08:59:54 xps9320 kernel: [173172.521755]  
Apr 12 08:59:54 xps9320 kernel: [173172.524099]  __schedule+0x2cb/0x750
Apr 12 08:59:54 xps9320 kernel: [173172.526333]  schedule+0x63/0x110
Apr 12 08:59:54 xps9320 kernel: [173172.528585]  
snd_power_ref_and_wait+0xe5/0x140 [snd]
Apr 12 08:59:54 xps9320 kernel: [173172.530825]  ? 
__pfx_autoremove_wake_function+0x10/0x10
Apr 12 08:59:54 xps9320 kernel: [173172.533103]  snd_ctl_elem_info+0x4f/0x1b0 
[snd]
Apr 12 08:59:54 xps9320 kernel: [173172.535354]  
snd_ctl_elem_info_user+0x59/0xc0 [snd]
Apr 12 08:59:54 xps9320 kernel: [173172.537598]  snd_ctl_ioctl+0x1d4/0x650 [snd]
Apr 12 08:59:54 xps9320 kernel: [173172.539846]  ? __fget_light+0xa5/0x120
Apr 12 08:59:54 xps9320 kernel: [173172.542082]  __x64_sys_ioctl+0xa0/0xf0
Apr 12 08:59:54 xps9320 kernel: [173172.544334]  do_syscall_64+0x58/0x90
Apr 12 08:59:54 xps9320 kernel: [173172.546566]  ? 
syscall_exit_to_user_mode+0x37/0x60
Apr 12 08:59:54 xps9320 kernel: [173172.548838]  ? do_syscall_64+0x67/0x90
Apr 12 08:59:54 xps9320 kernel: [173172.551085]  ? do_syscall_64+0x67/0x90
Apr 12 08:59:54 xps9320 kernel: [173172.553342]  ? 
syscall_exit_to_user_mode+0x37/0x60
Apr 12 08:59:54 xps9320 kernel: [173172.96]  ? do_syscall_64+0x67/0x90
Apr 12 08:59:54 xps9320 kernel: [173172.557828]  ? common_interrupt+0x54/0xb0
Apr 12 08:59:54 xps9320 kernel: [173172.560075]  
entry_SYSCALL_64_after_hwframe+0x6e/0xd8
Apr 12 08:59:54 xps9320 kernel: [173172.562321] RIP: 0033:0x70f3adb1a94f
Apr 12 08:59:54 xps9320 kernel: [173172.564650] RSP: 002b:7ffef2072940 
EFLAGS: 0246 ORIG_RAX: 0010
Apr 12 08:59:54 xps9320 kernel: [173172.566925] RAX: ffda RBX: 
7ffef20729b0 RCX: 70f3adb1a94f
Apr 12 08:59:54 xps9320 kernel: [173172.569222] RDX: 7ffef20729b0 RSI: 
c1105511 RDI: 0022
Apr 12 08:59:54 xps9320 kernel: [173172.571501] RBP: 7ffef2072b90 R08: 
65107d2b6070 R09: 0004
Apr 12 08:59:54 xps9320 kernel: [173172.573762] R10: f014 R11: 
0246 R12: 65107d2ee100
Apr 12 08:59:54 xps9320 kernel: [173172.576047] R13: 65107d1fb400 R14: 
7ffef2072b30 R15: 7ffef2072ad0
Apr 12 08:59:54 xps9320 kernel: [173172.578308]  
```


Another point of interest is that, when in this situation:
 * `lsusb` hangs after printing out a few lines
 * Outgoing SSH connections hang unless I clear SSH_AUTH_SOCK. gpg-agent 
appears to be trying to check for smartcards.

So I guess there is some sort of deadlock in the USB subsystem which is
causing all the other problems?

ProblemType: Bug
DistroRelease: Ubuntu 22.04
Package: linux-image-6.5.0-27-generic 6.5.0-27.28~22.04.1
ProcVersionSignature: Ubuntu 6.5.0-27.28~22.04.1-generic 6.5.13
Uname: Linux 6.5.0-27-generic x86_64
ApportVersion: 2.20.11-0ubuntu82.5
Architecture: amd64
CasperMD5CheckResult: pass
CurrentDesktop: ubuntu:GNOME
Date: Fri Apr 12 09:42:52 2024
InstallationDate: Installed on 2022-06-28 (653 days ago)
InstallationMedia: Xubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
SourcePackage: linux-signed-hwe-6.5
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: linux-signed-hwe-6.5 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug jammy 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/2061091

Title:
  Freezing user space processes failed after 20.008 seconds (1 tasks
  refusing to freeze, wq_busy=0)

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


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

[Bug 2059417] Re: Sync xz-utils 5.6.1-1 (main) from Debian unstable (main)

2024-03-29 Thread Daniel Richard G.
Important context from https://lists.debian.org/debian-security-
announce/2024/msg00057.html :

  Andres Freund discovered that the upstream source tarballs for xz-utils,
  the XZ-format compression utilities, are compromised and inject
  malicious code, at build time, into the resulting liblzma5 library.

  Right now no Debian stable versions are known to be affected.
  Compromised packages were part of the Debian testing, unstable and
  experimental distributions, with versions ranging from 5.5.1alpha-0.1
  (uploaded on 2024-02-01), up to and including 5.6.1-1. The package has
  been reverted to use the upstream 5.4.5 code, which we have versioned
  5.6.1+really5.4.5-1.

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

Title:
  Sync xz-utils 5.6.1-1 (main) from Debian unstable (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xz-utils/+bug/2059417/+subscriptions


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

[Bug 2059738] Re: Kernel 6.8 - Shutdown/Reboot hangs on Lubuntu Noble 24.04

2024-03-28 Thread Richard Pratt
Last observed on Lubuntu Noble Numbat 24.04 Daily Build noble-desktop-
amd64.iso 2024-03-28 both in the Live USB boot and installed to SSD
(eMMC).

For some reason this build wont let me generated ubuntu-bug files as it
reports

*** Collecting problem information

The collected information can be sent to the developers to improve the
application. This might take a few minutes.
.

*** Problem in linux-image-6.8.0-11-generic

The problem cannot be reported:

This does not seem to be an official Ubuntu package. Please retry after
updating the indexes of available packages. If that does not work, then
remove related third party packages and try again.

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

Title:
  Kernel 6.8 - Shutdown/Reboot hangs on Lubuntu Noble 24.04

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


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

[Bug 2059738] [NEW] Kernel 6.8 - Shutdown/Reboot hangs on Lubuntu Noble 24.04

2024-03-28 Thread Richard Pratt
Public bug reported:

[Overview]
I have been testing installations of a number of Lubuntu and Xubuntu Noble 
Numbat 24.04 Daily builds since Feb 2024 on a DELL Wyse 3040 (UEFI bios), more 
latterly focused on Lubuntu.

It would appear that since introduction of Kernel 6.8 into the daily
builds, the installed system fails to carry out a successful reboot or
power off  when commanded from the desktop or the command line

[Symptoms]
When selecting either Leave-->Shutdown or Leave-->Reboot from the control 
panel, the process starts shutting down processes in an orderly fashion, until 
it gets to the part where it needs to power off hardware, where it hangs.

shutdown -H now also fails in the same manner
shutdown -r now also fails in the same manner

With quiet bootflag disabled, the last system message on display before the 
hang is
"Starting reboot..." or "Starting power-off..."

[Workaround]
The power button must be pressed for 5 secs to power down the hardware

[Possibly related bugs]
#1594023 Poweroff or reboot hangs. Laptop won't shutdown. 16.04
#2036987 Laptop Does Not Power Off After Installing Daily Build Of 23.10

[Unsuccessful Workarounds]
Tried boot flags acpi=force acpi=nocrq reboot=pci suggested in #1594023 - No 
effect

[Observations]
I do believe that shutdown/reboot was working correctly on a live USB Lubuntu 
Noble Numbat Alpha build on the same hardware downloaded 22-Feb-2024.  This 
release had an earlier kernel than 6.8. Sadly i no longer have the .iso to 
confirm this.  

All Lubuntu Noble daily builds since kernel 6.8 was introduced appear to
exhibit the symptoms as above

[System info]
Operating System: Ubuntu Noble Numbat (development branch)
  Kernel: Linux 6.8.0-11-generic
Architecture: x86-64
 Hardware Vendor: Dell Inc.
  Hardware Model: Wyse 3040 Thin Client
Firmware Version: 1.2.5
   Firmware Date: Mon 2018-08-20

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

** Affects: linux-meta (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: 24.04 6.8 hang kernel lubuntu noble numbat reboot shutdown xubuntu

** Also affects: linux (Ubuntu)
   Importance: Undecided
   Status: New

** Package changed: calamares (Ubuntu) => linux-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/2059738

Title:
  Kernel 6.8 - Shutdown/Reboot hangs on Lubuntu Noble 24.04

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


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

[Bug 1874938] Re: SyntaxWarning at install

2024-03-26 Thread Daniel Richard G.
I'm seeing much more than that, installing on noble:

Setting up onboard (1.4.1-5ubuntu2) ...
/usr/lib/python3/dist-packages/Onboard/Appearance.py:924: SyntaxWarning: 
invalid escape sequence '\w'
  _key_ids_pattern = re.compile('[\w-]+(?:[.][\w-]+)?', re.UNICODE)
/usr/lib/python3/dist-packages/Onboard/Appearance.py:1066: SyntaxWarning: 
invalid escape sequence '\w'
  key_ids = [x for x in re.findall('\w+(?:[.][\w-]+)?', text) if x]
/usr/lib/python3/dist-packages/Onboard/LayoutLoaderSVG.py:98: SyntaxWarning: 
invalid escape sequence '\('
  self._layout_regex = re.compile("([^\(]+) (?: \( ([^\)]*) \) )?",
/usr/lib/python3/dist-packages/Onboard/LayoutLoaderSVG.py:447: SyntaxWarning: 
'str' object is not callable; perhaps you missed a comma?
  raise Exceptions.LayoutFileError("Unrecognized modifier %s in" \
/usr/lib/python3/dist-packages/Onboard/SpellChecker.py:324: SyntaxWarning: 
invalid escape sequence '\s'
  SPLITWORDS = re.compile("[^-_\s]+", re.UNICODE|re.DOTALL)
/usr/lib/python3/dist-packages/Onboard/TextDomain.py:144: SyntaxWarning: 
invalid escape sequence '\s'
  strings = re.split('(\s+)', context)
/usr/lib/python3/dist-packages/Onboard/TextDomain.py:161: SyntaxWarning: 
invalid escape sequence '\s'
  """
/usr/lib/python3/dist-packages/Onboard/TextDomain.py:291: SyntaxWarning: 
invalid escape sequence '\s'
  _growth_sections_pattern = re.compile("[^\s?#@]+", re.DOTALL)
/usr/lib/python3/dist-packages/Onboard/TextDomain.py:447: SyntaxWarning: 
invalid escape sequence '\['
  "^In \[[0-9]*\]: ",   # ipython
/usr/lib/python3/dist-packages/Onboard/TextDomain.py:450: SyntaxWarning: 
invalid escape sequence '\?'
  "^\?",# vi reverse search
/usr/lib/python3/dist-packages/Onboard/TextDomain.py:451: SyntaxWarning: 
invalid escape sequence '\$'
  "\$ ",# generic prompt
/usr/lib/python3/dist-packages/Onboard/TextDomain.py:459: SyntaxWarning: 
invalid escape sequence '\('
  "^\(.*\)`.*': ",  # bash incremental search
/usr/lib/python3/dist-packages/Onboard/TextDomain.py:739: SyntaxWarning: 
invalid escape sequence '\w'
  _url_pattern = re.compile("([\w-]+)|(\W+)", re.UNICODE)
/usr/lib/python3/dist-packages/Onboard/WordSuggestions.py:1253: SyntaxWarning: 
invalid escape sequence '\S'
  _section_begin_pattern = re.compile("\S*\s*$")
/usr/lib/python3/dist-packages/Onboard/WordSuggestions.py:1254: SyntaxWarning: 
invalid escape sequence '\S'
  _section_end_pattern = re.compile("\S*(?=\s*)")
/usr/lib/python3/dist-packages/Onboard/pypredict/lm_wrapper.py:302: 
SyntaxWarning: invalid escape sequence '\s'
  """ .*?
/usr/lib/python3/dist-packages/Onboard/pypredict/lm_wrapper.py:368: 
SyntaxWarning: invalid escape sequence '\s'
  tokenize_pattern = """
/usr/lib/python3/dist-packages/Onboard/pypredict/lm_wrapper.py:467: 
SyntaxWarning: invalid escape sequence '\w'
  if not re.match("""
/usr/lib/python3/dist-packages/Onboard/pypredict/lm_wrapper.py:504: 
SyntaxWarning: invalid escape sequence '\d'
  result = re.search("ngram (\d+)=\d+", line)
/usr/lib/python3/dist-packages/Onboard/pypredict/lm_wrapper.py:624: 
SyntaxWarning: invalid escape sequence '\w'
  target_word = re.search("^([\w]|[-'])*", prefix_to_end, re.UNICODE).group()
/usr/lib/python3/dist-packages/Onboard/utils.py:151: SyntaxWarning: invalid 
escape sequence '\d'
  """
/usr/lib/python3/dist-packages/Onboard/utils.py:220: SyntaxWarning: invalid 
escape sequence '\s'
  pattern = re.compile('>\n\s+([^<>\s].*?)\n\s+\g<1>https://bugs.launchpad.net/bugs/1874938

Title:
  SyntaxWarning at install

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


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

[Bug 2056595] Re: Lot of SyntaxWarning messages for rhythmbox

2024-03-26 Thread Daniel Richard G.
Same here:

Setting up rhythmbox-plugins (3.4.7-2ubuntu2) ...
/usr/lib/x86_64-linux-gnu/rhythmbox/plugins/lyrics/AstrawebParser.py:64: 
SyntaxWarning: invalid escape sequence '\/'
  url = re.split('(\/display[^"]*)', entry)[1]
/usr/lib/x86_64-linux-gnu/rhythmbox/plugins/lyrics/AstrawebParser.py:66: 
SyntaxWarning: invalid escape sequence '\/'
  title = re.split('(\/display[^>]*)([^<]*)', entry)[2][1:].strip()
[...]

** Tags added: noble

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

Title:
  Lot of SyntaxWarning messages for rhythmbox

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


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

[Bug 2059059] [NEW] Problem with -fno-stack-clash-protection flag on armhf

2024-03-25 Thread Daniel Richard G.
Public bug reported:

This concerns libdpkg-perl 1.22.4ubuntu5 in Ubuntu noble.

In /usr/share/perl5/Dpkg/Vendor/Ubuntu.pm, there is this bit:

# Debian enables -fstack-clash-protection but it causes troubles on armhf
# (which are not fully analyzed as of writing this); disable it there in
# order to have time to investigate
if ($arch eq 'armhf') {
# Stack clash protector only available on amd64 and arm.
$flags->set_feature('hardening', 'stackclash', 0);
}

Then in /usr/share/perl5/Dpkg/Vendor/Debian.pm, this logic:

# Stack clash
if ($flags->use_feature('hardening', 'stackclash')) {
my $flag = '-fstack-clash-protection';
$flags->append($_, $flag) foreach @compile_flags;
} else {
my $flag = '-fno-stack-clash-protection';
$flags->append($_, $flag) foreach @compile_flags;
}

Which causes -fno-stack-clash-protection to be added to the package
build flags.

Unfortunately, in building Chromium for armhf on noble, I see this
(build log excerpt):

[27780/60083] CXX 
obj/net/third_party/quiche/quiche/qpack_decoder_stream_receiver.o
clang++-16: warning: argument unused during compilation: 
'-fno-stack-clash-protection' [-Wunused-command-line-argument]
[27781/60083] CXX 
obj/net/third_party/quiche/quiche/qpack_encoder_stream_receiver.o
clang++-16: warning: argument unused during compilation: 
'-fno-stack-clash-protection' [-Wunused-command-line-argument]
[27782/60083] CXX 
obj/net/third_party/quiche/quiche/qpack_decoder_stream_sender.o
clang++-16: warning: argument unused during compilation: 
'-fno-stack-clash-protection' [-Wunused-command-line-argument]
[27783/60083] CXX 
obj/net/third_party/quiche/quiche/qpack_index_conversions.o
clang++-16: warning: argument unused during compilation: 
'-fno-stack-clash-protection' [-Wunused-command-line-argument]
[27784/60083] CXX 
obj/net/third_party/quiche/quiche/qpack_encoder_stream_sender.o
clang++-16: warning: argument unused during compilation: 
'-fno-stack-clash-protection' [-Wunused-command-line-argument]
[27785/60083] CXX obj/net/third_party/quiche/quiche/qpack_encoder.o
clang++-16: warning: argument unused during compilation: 
'-fno-stack-clash-protection' [-Wunused-command-line-argument]
[27786/60083] CXX 
obj/net/third_party/quiche/quiche/qpack_instruction_decoder.o
clang++-16: warning: argument unused during compilation: 
'-fno-stack-clash-protection' [-Wunused-command-line-argument]
[27787/60083] CXX obj/net/third_party/quiche/quiche/qpack_header_table.o
clang++-16: warning: argument unused during compilation: 
'-fno-stack-clash-protection' [-Wunused-command-line-argument]
[27788/60083] CXX 
obj/net/third_party/quiche/quiche/qpack_instruction_encoder.o
clang++-16: warning: argument unused during compilation: 
'-fno-stack-clash-protection' [-Wunused-command-line-argument]
[27789/60083] CXX obj/net/third_party/quiche/quiche/qpack_instructions.o
clang++-16: warning: argument unused during compilation: 
'-fno-stack-clash-protection' [-Wunused-command-line-argument]

Basically, *every* invocation of the C or C++ compiler gives this
warning.

I think the flag needs to be dropped altogether for armhf, not just
negated.

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


** Tags: noble

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

Title:
  Problem with -fno-stack-clash-protection flag on armhf

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


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

[Bug 2057982] Re: [SRU] Is a ca-certificates dependency missing?

2024-03-22 Thread Richard Lander
Validated .NET 8 with `jammy-proposed`

Validated .NET 7 with `jammy-proposed`

Validated .NET 6 with `jammy-proposed`

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

Title:
  [SRU] Is a ca-certificates dependency missing?

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


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

[Bug 2057982] Re: [SRU] Is a ca-certificates dependency missing?

2024-03-22 Thread Richard Lander
Thanks!

I may be a bit early still. I tried testing with mantic, in an
ubuntu:mantic container.


root@476df89cabec:/# apt install dotnet8/mantic-proposed
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Selected version '8.0.103-8.0.3-0ubuntu1~23.10.2' (Ubuntu:23.10/mantic-proposed 
[amd64]) for 'dotnet8'
The following additional packages will be installed:
  aspnetcore-runtime-8.0 aspnetcore-targeting-pack-8.0 dotnet-apphost-pack-8.0
  dotnet-host-8.0 dotnet-hostfxr-8.0 dotnet-runtime-8.0 dotnet-sdk-8.0
  dotnet-targeting-pack-8.0 dotnet-templates-8.0 libicu72 liblttng-ust-common1
  liblttng-ust-ctl5 liblttng-ust1 libnuma1 libssl3
  netstandard-targeting-pack-2.1-8.0
The following NEW packages will be installed:
  aspnetcore-runtime-8.0 aspnetcore-targeting-pack-8.0 dotnet-apphost-pack-8.0
  dotnet-host-8.0 dotnet-hostfxr-8.0 dotnet-runtime-8.0 dotnet-sdk-8.0
  dotnet-targeting-pack-8.0 dotnet-templates-8.0 dotnet8 libicu72
  liblttng-ust-common1 liblttng-ust-ctl5 liblttng-ust1 libnuma1 libssl3
  netstandard-targeting-pack-2.1-8.0


I didn't see ca-certificates there and was able to later demonstrate that it 
wasn't present, both with apt apt list --installed and by validating that 
dotnet restore failed due to it missing certs.

I can try again later.

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

Title:
  [SRU] Is a ca-certificates dependency missing?

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


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

[Bug 2056647] Re: Calamares Install fail - Lubuntu Noble 24.04 - Could not unmount target system

2024-03-15 Thread Richard Pratt
09.03.24 Initial case  - Install fails (per bug description)
   Lubuntu 24.04 Daily build 07.03.24 using manual partitioning
   Manual partition scheme
  Devices mmc (built in eMMC SSD) + sda (USB 3.0 128gb stick formatted ext4)
/dev/mmcblk0p0 /boot/efi fat32
/dev/mmcblk0p1 / ext4
/dev/sda1 /home ext4
/dev/sda2 /usr ext4
/dev/sda3 /var ext4

15.03.24 Retest - Manual partition scheme with /var on eMMC rather than on USB 
- install SUCCESS
   Manual partition scheme
  Devices mmc (built in eMMC SSD) + sda (USB 3.0 128gb stick formatted ext4)
/dev/mmcblk0p0 /boot/efi fat32
/dev/mmcblk0p1 /var ext4
/dev/sda1 / ext4

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

Title:
  Calamares Install fail - Lubuntu Noble 24.04 - Could not unmount
  target system

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


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

[Bug 2057982] Re: Is a ca-certificates dependency missing?

2024-03-15 Thread Richard Lander
Thanks for addressing this issue.

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

Title:
  Is a ca-certificates dependency missing?

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


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

[Bug 2057982] Re: Is a ca-certificates dependency missing?

2024-03-15 Thread Richard Lander
The issue may be that .NET 7, for example, needs to grab the .NET 6
targeting pack. I'm guessing that it cannot reuse the targeting pack
that .NET 6 brings with it.

"targeting pack" == the reference assemblies that the compiler needs to
satisfy `net6.0` or `net7.0`

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

Title:
  Is a ca-certificates dependency missing?

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


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

[Bug 2057982] Re: Is a ca-certificates dependency missing?

2024-03-14 Thread Richard Lander
This appears to be a related issue:
https://github.com/dotnet/sdk/issues/39544

However, it still seems like we're missing a ca-certificates dependency.
I use .NET on Ubuntu plenty, but on a desktop install, so this scenario
never showed up for me before.

** Bug watch added: github.com/dotnet/sdk/issues #39544
   https://github.com/dotnet/sdk/issues/39544

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

Title:
  Is a ca-certificates dependency missing?

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


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

[Bug 2057982] [NEW] Is a ca-certificates dependency missing?

2024-03-14 Thread Richard Lander
Public bug reported:

I was doing some (very basic) testing on Jammy. I didn't get the
behavior I was expecting. I installed `ca-certificates` and the problem
was resolved. I'm wondering if we're just missing having `ca-
certificates` as a dependency.

Observed behavior:
https://gist.github.com/richlander/27c03db34b3f06fd044c611562def589

** Affects: dotnet7 (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/2057982

Title:
  Is a ca-certificates dependency missing?

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


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

[Bug 2056647] Re: Calamares Install fail - Lubuntu Noble 24.04 - Could not unmount target system

2024-03-09 Thread Richard Pratt
** Description changed:

- When attemoting an install of Lubuntu 22.04 Daily build 07.03.24 using
+ When attemoting an install of Lubuntu 24.04 Daily build 07.03.24 using
  manual partitioning with partitions across two devices, the install
  failed with an error (see screenshot) indicating failure to unmount /var
  partition.
  
  Error Installation failed
  Could not unmount target system
  The device '/dev/sda3' is mounted in the target system.
  It is mounted at '/tmp/calamares-root-7ckays/var'.
  The device could not be unmounted.
  
- 
- Calamarares install session log indicates a timeout waiting for umount to 
complete (>1ms) for /var.
+ Calamarares install session log indicates a timeout waiting for umount
+ to complete (>1ms) for /var.
  
  When inspecting the mount state sometime after failure, the partition
  appeared to be unmounted, suggesting the timeout was not long enough.
  
  Note there may be a relevant info here
  https://github.com/calamares/calamares/issues/2006
  
  Calamares log session found at
  /home/lubuntu.cache/calamares/session.log
  
  Manual partition scheme
  Devices mmc (built in eMMC SSD) + sda (USB 3.0 128gb stick formatted ext4)
  /dev/mmcblk0p0 /boot/efi  fat32
  /dev/mmcblk0p1 /  ext4
  /dev/sda1  /home  ext4
  /dev/sda2  /usr   ext4
  /dev/sda3  /var   ext4

** Description changed:

- When attemoting an install of Lubuntu 24.04 Daily build 07.03.24 using
+ When attempting an install of Lubuntu 24.04 Daily build 07.03.24 using
  manual partitioning with partitions across two devices, the install
  failed with an error (see screenshot) indicating failure to unmount /var
  partition.
  
  Error Installation failed
  Could not unmount target system
  The device '/dev/sda3' is mounted in the target system.
  It is mounted at '/tmp/calamares-root-7ckays/var'.
  The device could not be unmounted.
  
  Calamarares install session log indicates a timeout waiting for umount
  to complete (>1ms) for /var.
  
  When inspecting the mount state sometime after failure, the partition
  appeared to be unmounted, suggesting the timeout was not long enough.
  
  Note there may be a relevant info here
  https://github.com/calamares/calamares/issues/2006
  
  Calamares log session found at
  /home/lubuntu.cache/calamares/session.log
  
  Manual partition scheme
  Devices mmc (built in eMMC SSD) + sda (USB 3.0 128gb stick formatted ext4)
  /dev/mmcblk0p0 /boot/efi  fat32
  /dev/mmcblk0p1 /  ext4
  /dev/sda1  /home  ext4
  /dev/sda2  /usr   ext4
  /dev/sda3  /var   ext4

** Description changed:

  When attempting an install of Lubuntu 24.04 Daily build 07.03.24 using
  manual partitioning with partitions across two devices, the install
  failed with an error (see screenshot) indicating failure to unmount /var
  partition.
  
  Error Installation failed
  Could not unmount target system
  The device '/dev/sda3' is mounted in the target system.
  It is mounted at '/tmp/calamares-root-7ckays/var'.
  The device could not be unmounted.
  
- Calamarares install session log indicates a timeout waiting for umount
- to complete (>1ms) for /var.
+ Calamares install session log indicates a timeout waiting for umount to
+ complete (>1ms) for /var.
  
  When inspecting the mount state sometime after failure, the partition
  appeared to be unmounted, suggesting the timeout was not long enough.
  
  Note there may be a relevant info here
  https://github.com/calamares/calamares/issues/2006
  
  Calamares log session found at
  /home/lubuntu.cache/calamares/session.log
  
  Manual partition scheme
  Devices mmc (built in eMMC SSD) + sda (USB 3.0 128gb stick formatted ext4)
  /dev/mmcblk0p0 /boot/efi  fat32
  /dev/mmcblk0p1 /  ext4
  /dev/sda1  /home  ext4
  /dev/sda2  /usr   ext4
  /dev/sda3  /var   ext4

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

Title:
  Calamares Install fail - Lubuntu Noble 24.04 - Could not unmount
  target system

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


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

[Bug 2056647] Re: Calamares Install fail - Lubuntu Noble 24.04 - Could not unmount target system

2024-03-09 Thread Richard Pratt
** Attachment added: "20240309_154531.jpg"
   
https://bugs.launchpad.net/ubuntu/+source/calamares/+bug/2056647/+attachment/5754366/+files/20240309_154531.jpg

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

Title:
  Calamares Install fail - Lubuntu Noble 24.04 - Could not unmount
  target system

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


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

[Bug 2056647] [NEW] Calamares Install fail - Lubuntu Noble 24.04 - Could not unmount target system

2024-03-09 Thread Richard Pratt
Public bug reported:

When attemoting an install of Lubuntu 22.04 Daily build 07.03.24 using
manual partitioning with partitions across two devices, the install
failed with an error (see screenshot) indicating failure to unmount /var
partition.

Error Installation failed
Could not unmount target system
The device '/dev/sda3' is mounted in the target system.
It is mounted at '/tmp/calamares-root-7ckays/var'.
The device could not be unmounted.


Calamarares install session log indicates a timeout waiting for umount to 
complete (>1ms) for /var.

When inspecting the mount state sometime after failure, the partition
appeared to be unmounted, suggesting the timeout was not long enough.

Note there may be a relevant info here
https://github.com/calamares/calamares/issues/2006

Calamares log session found at
/home/lubuntu.cache/calamares/session.log

Manual partition scheme
Devices mmc (built in eMMC SSD) + sda (USB 3.0 128gb stick formatted ext4)
/dev/mmcblk0p0 /boot/efi  fat32
/dev/mmcblk0p1 /  ext4
/dev/sda1  /home  ext4
/dev/sda2  /usr   ext4
/dev/sda3  /var   ext4

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


** Tags: calamares install lubuntu noble timeout umount

** Attachment added: "session.log"
   
https://bugs.launchpad.net/bugs/2056647/+attachment/5754365/+files/session.log

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

Title:
  Calamares Install fail - Lubuntu Noble 24.04 - Could not unmount
  target system

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


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

[Bug 2054795] Re: Calamares - Installation failed - Bad main script file

2024-03-08 Thread Richard Pratt
Tested manual workaround identified by wxl (Upstream Fix) on Lubuntu
Daily Build 07.03.24 on the Dell Wyse 3040 (See Related Bug #2054697)
and this workaround resolves failed installation allowing it to complete
correctly.

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

Title:
  Calamares -  Installation failed - Bad main script file

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


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

[Bug 2056302] Re: tar(1) on noble gives EPERM [Operation not permitted] errors when extracting symlinks

2024-03-06 Thread Daniel Richard G.
Tracked down the cause to the Docker host, which runs on jammy, not
knowing about fchmodat2(). The syscall should normally return ENOTSUP
when called with AT_SYMLINK_NOFOLLOW on Linux, but the Docker seccomp
profile causes it to return EPERM, which confuses tar(1). Closing.

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

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

Title:
  tar(1) on noble gives EPERM [Operation not permitted] errors when
  extracting symlinks

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


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

[Bug 2056302] [NEW] tar(1) on noble gives EPERM [Operation not permitted] errors when extracting symlinks

2024-03-06 Thread Daniel Richard G.
Public bug reported:

This concerns tar 1.35+dfsg-3 in Ubuntu noble. This does NOT affect tar
1.34+dfsg-1.2ubuntu1.1 in mantic.

I'm seeing errors like this:

$ tar xvJf /extern/source/chromium_122.0.6261.111.orig.tar.xz --wildcards 
chromium-122.0.6261.111/ash/webui/camera_app_ui/resources/cca\*
chromium-122.0.6261.111/ash/webui/camera_app_ui/resources/cca
tar: chromium-122.0.6261.111/ash/webui/camera_app_ui/resources/cca: Cannot 
change mode to rwxr-xr-x: Operation not permitted

(I am running this in a noble Docker container environment, and the
command is extracting into normal user file space.)

This is what strace shows:

23symlinkat("utils/cca.py", AT_FDCWD, 
"chromium-122.0.6261.111/ash/webui/camera_app_ui/resources/cca") = 0
23utimensat(AT_FDCWD, 
"chromium-122.0.6261.111/ash/webui/camera_app_ui/resources/cca", [UTIME_OMIT, 
{tv_sec=1709684076, tv_nsec=0} /* 2024-03-06T00:14:36+ */], 
AT_SYMLINK_NOFOLLOW) = 0
23newfstatat(AT_FDCWD, 
"chromium-122.0.6261.111/ash/webui/camera_app_ui/resources/cca", 
{st_mode=S_IFLNK|0777, st_size=12, ...}, AT_SYMLINK_NOFOLLOW) = 0
23fchmodat2(AT_FDCWD, 
"chromium-122.0.6261.111/ash/webui/camera_app_ui/resources/cca", 0755, 
AT_SYMLINK_NOFOLLOW) = -1 EPERM (Operation not permitted)

The fchmodat(2) man page has the following verbiage:

   AT_SYMLINK_NOFOLLOW
  If pathname is a symbolic link, do not dereference  it:  instead
  operate  on  the link itself.  This flag is not currently imple‐
  mented.

For comparison, this is what happens on mantic:

24symlinkat("utils/cca.py", AT_FDCWD, 
"chromium-122.0.6261.111/ash/webui/camera_app_ui/resources/cca") = 0
24utimensat(AT_FDCWD, 
"chromium-122.0.6261.111/ash/webui/camera_app_ui/resources/cca", [UTIME_OMIT, 
{tv_sec=1709684076, tv_nsec=0} /* 2024-03-06T00:14:36+ */], 
AT_SYMLINK_NOFOLLOW) = 0
24newfstatat(AT_FDCWD, 
"chromium-122.0.6261.111/ash/webui/camera_app_ui/resources/cca", 
{st_mode=S_IFLNK|0777, st_size=12, ...}, AT_SYMLINK_NOFOLLOW) = 0
24openat(AT_FDCWD, 
"chromium-122.0.6261.111/ash/webui/camera_app_ui/resources/cca", 
O_RDONLY|O_NOFOLLOW|O_CLOEXEC|O_PATH) = 3
24newfstatat(3, "", {st_mode=S_IFLNK|0777, st_size=12, ...}, AT_EMPTY_PATH) 
= 0
24close(3)  = 0

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


** Tags: noble

** Summary changed:

- tar(1) gives EPERM errors when extracting symlinks
+ tar(1) on noble gives EPERM [Operation not permitted] errors when extracting 
symlinks

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

Title:
  tar(1) on noble gives EPERM [Operation not permitted] errors when
  extracting symlinks

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


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

[Bug 2056231] Re: Error when installing nvidia-utils-535: "Invalid cross-device link"

2024-03-05 Thread Daniel Richard G.
Seeing some strange "Device or resource busy" errors on the
/usr/bin/nvidia-debugdump file, seemingly due to Nvidia lossage. Closing
as likely unrelated to the packaging.

** Changed in: nvidia-graphics-drivers-535 (Ubuntu)
   Status: New => Invalid

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

Title:
  Error when installing nvidia-utils-535: "Invalid cross-device link"

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


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

[Bug 2056231] [NEW] Error when installing nvidia-utils-535: "Invalid cross-device link"

2024-03-05 Thread Daniel Richard G.
Public bug reported:

This concerns nvidia-utils-535 (535.161.07-0ubuntu3) in Ubuntu noble.

I had already installed nvidia-cuda-toolkit, and then...

# apt-get install nvidia-utils-535
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Suggested packages:
  nvidia-driver-535
The following NEW packages will be installed:
  nvidia-utils-535
0 upgraded, 1 newly installed, 0 to remove and 23 not upgraded.
Need to get 405 kB of archives.
After this operation, 1157 kB of additional disk space will be used.
Get:1 http://apt.example.com/ubuntu noble/restricted amd64 nvidia-utils-535 
amd64 535.161.07-0ubuntu3 [405 kB]
Fetched 405 kB in 0s (2693 kB/s)
debconf: delaying package configuration, since apt-utils is not installed
Selecting previously unselected package nvidia-utils-535.
(Reading database ... 51672 files and directories currently installed.)
Preparing to unpack .../nvidia-utils-535_535.161.07-0ubuntu3_amd64.deb ...
Unpacking nvidia-utils-535 (535.161.07-0ubuntu3) ...
dpkg: error processing archive 
/var/cache/apt/archives/nvidia-utils-535_535.161.07-0ubuntu3_amd64.deb 
(--unpack):
 unable to make backup link of './usr/bin/nvidia-debugdump' before installing 
new version: Invalid cross-device link
dpkg-deb: error: paste subprocess was killed by signal (Broken pipe)
Errors were encountered while processing:
 /var/cache/apt/archives/nvidia-utils-535_535.161.07-0ubuntu3_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

** Affects: nvidia-graphics-drivers-535 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: noble

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

Title:
  Error when installing nvidia-utils-535: "Invalid cross-device link"

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


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

[Bug 2055752] Re: fatal error: SPI.h: No such file or directory

2024-03-05 Thread Richard C. Andrews
I've been doing some research and reading. It looks like I should write
a standard SPI library starting with the Atmega 8-bit MPU's.

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

Title:
  fatal error: SPI.h: No such file or directory

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/avr-libc/+bug/2055752/+subscriptions


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

[Bug 2055752] [NEW] fatal error: SPI.h: No such file or directory

2024-03-01 Thread Richard C. Andrews
Public bug reported:

No SPI.h included.

** Affects: avr-libc (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/2055752

Title:
  fatal error: SPI.h: No such file or directory

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/avr-libc/+bug/2055752/+subscriptions


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

[Bug 2054697] Re: Lubuntu Noble Apha - Calamares installer crash (exception in Networkcfg/Main.py)

2024-02-26 Thread Richard Pratt
*** This bug is a duplicate of bug 2054795 ***
https://bugs.launchpad.net/bugs/2054795

** Tags added: calamares lubuntu networkcfg noble numbat

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

Title:
  Lubuntu Noble Apha - Calamares installer crash (exception in
  Networkcfg/Main.py)

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


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

[Bug 2054697] Re: Lubuntu Noble Apha - Calamares installer crash (exception in Networkcfg/Main.py)

2024-02-26 Thread Richard Pratt
Looks like a bug is the script /usr/lib/x86_64-linux-
gnu/calamares/networkcfg/main.py (attached) for a string literal 0o600
in the os.chmod function at line 158.

Currently it is : os.chmod(f, 0o600)
Should it be : os.chmod(f, "0o600")  ?

I tried editing the script and re-running but this has no effect - I
guess it takes the script off the USB Live iso each time.  Any ideas how
to patch this temporarily??field.comment=Looks like a bug is the script
/usr/lib/x86_64-linux-gnu/calamares/networkcfg/main.py (attached) for a
string literal 0o600 in the os.chmod function at line 158.

Currently it is : os.chmod(f, 0o600)
Should it be : os.chmod(f, "0o600")  ?

I tried editing the script and re-running but this has no effect - I
guess it takes the script off the USB Live iso each time.  Any ideas how
to patch this temporarily?

** Attachment added: "main.py"
   
https://bugs.launchpad.net/ubuntu/+source/lubuntu-meta/+bug/2054697/+attachment/5749478/+files/main.py

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

Title:
  Lubuntu Noble Apha - Calamares installer crash (exception in
  Networkcfg/Main.py)

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


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

[Bug 2054697] Re: Lubuntu Noble Apha - Calamares installer crash (exception in Networkcfg/Main.py)

2024-02-26 Thread Richard Pratt
Running Ubuntu-bug calamares reveals thh following relevant error in the
apport log (see attached):-

 2024-02-26 - 13:16:51 [1]: ERROR: Error while running: TypeError: chmod: 
path should be string, bytes, os.PathLike or integer, not TextIOWrapper
 
 At:
   /usr/lib/x86_64-linux-gnu/calamares/modules/networkcfg/main.py(158): run
  


** Attachment added: "Apport log for clalamares package"
   
https://bugs.launchpad.net/ubuntu/+source/lubuntu-meta/+bug/2054697/+attachment/5749475/+files/apport.calamares.fyyqrv1r.apport

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

Title:
  Lubuntu Noble Apha - Calamares installer crash (exception in
  Networkcfg/Main.py)

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


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

[Bug 1990886] Re: Security updates missing after 91.11.0

2023-08-04 Thread Richard Muller
For transition from TB 102.x to 115.x please look here:
https://bugs.launchpad.net/ubuntu/+source/thunderbird/+bug/2029913

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

Title:
  Security updates missing after 91.11.0

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


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

[Bug 1973403] Re: gnome-shell is using over 13GB of ram after 5 days

2022-06-03 Thread Richard e Collins
You can close this bug now. After 11 days gnome-shell memory usage has
been stable. I must have had an application causing the issue. As I
leave my PC on for a long time, never shutdown, I do not know what it
would have been that caused this. But I am sure it is not gnome-shell.

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

Title:
  gnome-shell is using over 13GB of ram after  5 days

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


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

[Bug 235101]

2022-05-26 Thread Richard Marti
Comment on attachment 8965427
make-ab-view-text-selectable.patch

Yes, everything can be selected. But I think it makes not much sense to
select the whole pane as the output isn't well formed to use directly.

Better all can be selected than nothing how it is now.

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

Title:
  Can't select/copy/paste address block from Address Book in Thunderbird

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


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

[Bug 235101]

2022-05-26 Thread Richard Marti
Is the header really needed? When you select all the content (without
the headers) the formatting isn't like the card view. But if you really
want the headers, you need to add ".CardViewHeading".

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

Title:
  Can't select/copy/paste address block from Address Book in Thunderbird

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


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

[Bug 235101]

2022-05-26 Thread Richard Marti
Comment on attachment 8965043
make-ab-view-text-selectable.patch

Thanks, Ruslan.

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

Title:
  Can't select/copy/paste address block from Address Book in Thunderbird

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


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

[Bug 1974104] [NEW] package usrmerge 25ubuntu1.1 failed to install/upgrade: installed usrmerge package post-installation script subprocess returned error exit status 1

2022-05-18 Thread Richard Kimball
Public bug reported:

Upgrading from Ubuntu 20.04 LTS to 22.04 LTS

ProblemType: Package
DistroRelease: Ubuntu 21.10
Package: usrmerge 25ubuntu1.1
ProcVersionSignature: Ubuntu 5.4.0-107.121-generic 5.4.174
Uname: Linux 5.4.0-107-generic x86_64
ApportVersion: 2.20.11-0ubuntu71.2
Architecture: amd64
CasperMD5CheckResult: unknown
Date: Wed May 18 19:48:36 2022
ErrorMessage: installed usrmerge package post-installation script subprocess 
returned error exit status 1
InstallationDate: Installed on 2018-07-28 (1390 days ago)
InstallationMedia: Ubuntu 18.04.1 LTS "Bionic Beaver" - Release amd64 (20180725)
PackageArchitecture: all
Python3Details: /usr/bin/python3.9, Python 3.9.7, python3-minimal, 3.9.4-1build1
PythonDetails: /usr/bin/python2.7, Python 2.7.18, python-is-python2, 2.7.18-9
RebootRequiredPkgs: Error: path contained symlinks.
RelatedPackageVersions:
 dpkg 1.20.9ubuntu2
 apt  2.3.9ubuntu0.1
SourcePackage: usrmerge
Title: package usrmerge 25ubuntu1.1 failed to install/upgrade: installed 
usrmerge package post-installation script subprocess returned error exit status 
1
UpgradeStatus: Upgraded to impish on 2022-05-18 (0 days ago)

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


** Tags: amd64 apport-package impish need-duplicate-check

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

Title:
  package usrmerge 25ubuntu1.1 failed to install/upgrade: installed
  usrmerge package post-installation script subprocess returned error
  exit status 1

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


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

[Bug 1973598] Re: mtd-self-test failure on arm64 (mtdram module)

2022-05-17 Thread Richard Hughes
Thanks Lukas!

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

Title:
  mtd-self-test failure on arm64 (mtdram module)

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


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

[Bug 1973598] Re: mtd-self-test failure on arm64 (mtdram module)

2022-05-16 Thread Richard Hughes
I suspect the self tests need to check the name is "mtdram test device"
before running.

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

Title:
  mtd-self-test failure on arm64 (mtdram module)

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


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

[Bug 1973403] Re: gnome-shell is using over 13GB of ram after 5 days

2022-05-16 Thread Richard e Collins
I have looked in ~/.local/share/gnome-shell/ There is no extensions
folder. This is a new install of Ubuntu 22.04 with no modifications yet.
Here is the ls output of the folder ~/.local/share/gnome-shell/

drwx--  2 richard richard 4.0K May 16 07:24 .
drwx-- 23 richard richard 4.0K May 15 16:21 ..
-rw-rw-r--  1 richard richard 2.0K May 16 07:24 application_state
-rw-rw-r--  1 richard richard0 May  7 15:13 gnome-overrides-migrated
-rw-rw-r--  1 richard richard  592 May 14 23:56 notifications

I will apply a updates again, if there are any, reboot and create the
file you need. It'll take a day or so.

Many thanks for your feedback. :)

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

Title:
  gnome-shell is using over 13GB of ram after  5 days

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


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

[Bug 1973403] [NEW] gnome-shell is using over 13GB of ram after 5 days

2022-05-14 Thread Richard e Collins
Public bug reported:

This is on Ubuntu 22.04
All updates
After 5 days gnome-shell is using 13GB or ram.

System is a Asus PN50
512 GB m.2 drive
64 GIG Ram.
AMD 4800U

ProblemType: Bug
DistroRelease: Ubuntu 22.04
Package: gnome-shell 42.0-2ubuntu1
ProcVersionSignature: Ubuntu 5.15.0-27.28-generic 5.15.30
Uname: Linux 5.15.0-27-generic x86_64
ApportVersion: 2.20.11-0ubuntu82
Architecture: amd64
CasperMD5CheckResult: pass
CurrentDesktop: ubuntu:GNOME
Date: Sat May 14 11:27:20 2022
DisplayManager: gdm3
InstallationDate: Installed on 2022-05-07 (6 days ago)
InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 (20220419)
RebootRequiredPkgs: Error: path contained symlinks.
RelatedPackageVersions: mutter-common 42.0-3ubuntu2
SourcePackage: gnome-shell
UpgradeStatus: No upgrade log present (probably fresh install)

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


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

** Attachment added: "Screen shot of resource viewer"
   
https://bugs.launchpad.net/bugs/1973403/+attachment/5589711/+files/Screenshot%20from%202022-05-14%2011-34-11.png

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

Title:
  gnome-shell is using over 13GB of ram after  5 days

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


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

[Bug 1966162] Re: Display still powers down after screensaver and power management are disabled

2022-05-14 Thread Daniel Richard G.
On an installed system, with both the aforementioned settings disabled,
the display still blanks (black screen) but does not power down. "xset
-q" run on the system via ssh shows "DPMS is Disabled".

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

Title:
  Display still powers down after screensaver and power management are
  disabled

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xfce4-power-manager/+bug/1966162/+subscriptions


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

[Bug 1973298] ProcCpuinfoMinimal.txt

2022-05-13 Thread Daniel Richard G.
apport information

** Attachment added: "ProcCpuinfoMinimal.txt"
   
https://bugs.launchpad.net/bugs/1973298/+attachment/5589672/+files/ProcCpuinfoMinimal.txt

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

Title:
  Does not terminate at end of session

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


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

[Bug 1973298] ProcEnviron.txt

2022-05-13 Thread Daniel Richard G.
apport information

** Attachment added: "ProcEnviron.txt"
   
https://bugs.launchpad.net/bugs/1973298/+attachment/5589673/+files/ProcEnviron.txt

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

Title:
  Does not terminate at end of session

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


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

[Bug 1973298] Re: Does not terminate at end of session

2022-05-13 Thread Daniel Richard G.
apport information

** Tags added: apport-collected

** Description changed:

  This concerns ayatana-indicator-application 22.2.0-1 in Ubuntu jammy.
  
  When I am logged into an Xfce session, I see this:
  
# loginctl list-sessions
SESSION  UID USER  SEAT  TTY
  40 root
 c2 1000 skunk seat0 
  
  2 sessions listed.
  
# loginctl session-status c2
c2 - skunk (1000)
   Since: Fri 2022-05-13 05:38:18 EDT; 51s ago
  Leader: 1172 (lightdm)
Seat: seat0; vc7
 Display: :0
 Service: lightdm; type x11; class user
 Desktop: xubuntu
   State: active
Unit: session-c2.scope
  ├─1172 lightdm --session-child 12 19
  ├─1197 xfce4-session
  ├─1367 /usr/bin/VBoxClient --seamless
  ├─1368 /usr/bin/VBoxClient --seamless
  ├─1472 /usr/bin/ssh-agent -s
  ├─1482 xfwm4 --replace
  ├─1491 xfsettingsd
  ├─1500 xfce4-panel
  ├─1504 Thunar --daemon
  ├─1513 xfdesktop
  ├─1516 
/usr/lib/x86_64-linux-gnu/xfce4/panel/wrapper-2.0 /usr>
  ├─1517 
/usr/lib/x86_64-linux-gnu/xfce4/panel/wrapper-2.0 /usr>
  ├─1519 
/usr/lib/x86_64-linux-gnu/xfce4/panel/wrapper-2.0 /usr>
  ├─1521 
/usr/lib/x86_64-linux-gnu/xfce4/panel/wrapper-2.0 /usr>
  ├─1522 
/usr/lib/x86_64-linux-gnu/xfce4/panel/wrapper-2.0 /usr>
  ├─1544 xcape -e Super_L Control_L Escape
  ├─1562 xfce4-power-manager
  ├─1565 
/usr/lib/policykit-1-gnome/polkit-gnome-authentication>
  ├─1576 
/usr/lib/x86_64-linux-gnu/xfce4/notifyd/xfce4-notifyd
  ├─1579 
/usr/libexec/ayatana-indicator-application/ayatana-ind>
  ├─1587 nm-applet
  ├─1596 update-notifier
  └─1597 xiccd
  
  After I log out, and wait ten minutes, I see this:
  
# loginctl list-sessions
SESSION  UID USERSEAT  TTY
  40 root  
 c2 1000 skunk   seat0 
 c3  117 lightdm seat0 
  
  3 sessions listed.
  
# loginctl session-status c2 | cat
c2 - skunk (1000)
   Since: Fri 2022-05-13 05:38:18 EDT; 12min ago
  Leader: 1172
Seat: seat0; vc7
 Display: :0
 Service: lightdm; type x11; class user
 Desktop: xubuntu
   State: closing
Unit: session-c2.scope
  └─1579 
/usr/libexec/ayatana-indicator-application/ayatana-indicator-application-service
  
- The ayatana-indicator-application program is refusing to exit for some
- reason. If I "kill -INT 1579", then the session finally closes.
+ The ayatana-indicator-application program is refusing to exit for some 
reason. If I "kill -INT 1579", then the session finally closes.
+ --- 
+ ProblemType: Bug
+ ApportVersion: 2.20.11-0ubuntu82
+ Architecture: amd64
+ CasperMD5CheckResult: unknown
+ DistroRelease: Ubuntu 22.04
+ Package: ayatana-indicator-application 22.2.0-1
+ PackageArchitecture: amd64
+ ProcVersionSignature: Ubuntu 5.15.0-30.31-generic 5.15.30
+ Tags:  jammy
+ Uname: Linux 5.15.0-30-generic x86_64
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups: N/A
+ _MarkForUpload: True

** Attachment added: "Dependencies.txt"
   
https://bugs.launchpad.net/bugs/1973298/+attachment/5589671/+files/Dependencies.txt

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

Title:
  Does not terminate at end of session

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


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

[Bug 1973302] [NEW] "/usr/bin/VBoxClient --vmsvga" causes black screen inside VirtualBox host

2022-05-13 Thread Daniel Richard G.
Public bug reported:

This concerns virtualbox-guest-x11 6.1.32-dfsg-1build1 in Ubuntu jammy.

I am running the Xubuntu (Xfce) desktop inside of a VirtualBox host
(5.2.42-dfsg-0~ubuntu1.18.04.1) on Ubuntu bionic.

The system boots fine, and I get to the lightdm login prompt without
issue. Shortly after logging in, however, the entire (guest) screen
turns black.

The desktop appears to be running normally, I can start X applications
from a virtual terminal, I can even confirm with xev(1) that mouse
movements are being recognized within the black screen. However, nothing
I do gets anything to display, other than killing the session from a VT
and returning to lightdm.

I have tracked down the issue to the invocation of "/usr/bin/VBoxClient
--vmsvga" in /etc/X11/Xsession.d/98vboxadd-xclient . If I comment out
that line, then the session appears normally. If I re-enable it, the
black screen returns. Heck, if I run that in a terminal in a working
session, the black screen returns. Killing the VBoxClient process at
fault does not restore normal video.

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


** Tags: jammy

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

Title:
  "/usr/bin/VBoxClient --vmsvga" causes black screen inside VirtualBox
  host

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


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

[Bug 1973298] [NEW] Does not terminate at end of session

2022-05-13 Thread Daniel Richard G.
Public bug reported:

This concerns ayatana-indicator-application 22.2.0-1 in Ubuntu jammy.

When I am logged into an Xfce session, I see this:

# loginctl list-sessions
SESSION  UID USER  SEAT  TTY
  40 root
 c2 1000 skunk seat0 

2 sessions listed.

# loginctl session-status c2
c2 - skunk (1000)
   Since: Fri 2022-05-13 05:38:18 EDT; 51s ago
  Leader: 1172 (lightdm)
Seat: seat0; vc7
 Display: :0
 Service: lightdm; type x11; class user
 Desktop: xubuntu
   State: active
Unit: session-c2.scope
  ├─1172 lightdm --session-child 12 19
  ├─1197 xfce4-session
  ├─1367 /usr/bin/VBoxClient --seamless
  ├─1368 /usr/bin/VBoxClient --seamless
  ├─1472 /usr/bin/ssh-agent -s
  ├─1482 xfwm4 --replace
  ├─1491 xfsettingsd
  ├─1500 xfce4-panel
  ├─1504 Thunar --daemon
  ├─1513 xfdesktop
  ├─1516 
/usr/lib/x86_64-linux-gnu/xfce4/panel/wrapper-2.0 /usr>
  ├─1517 
/usr/lib/x86_64-linux-gnu/xfce4/panel/wrapper-2.0 /usr>
  ├─1519 
/usr/lib/x86_64-linux-gnu/xfce4/panel/wrapper-2.0 /usr>
  ├─1521 
/usr/lib/x86_64-linux-gnu/xfce4/panel/wrapper-2.0 /usr>
  ├─1522 
/usr/lib/x86_64-linux-gnu/xfce4/panel/wrapper-2.0 /usr>
  ├─1544 xcape -e Super_L Control_L Escape
  ├─1562 xfce4-power-manager
  ├─1565 
/usr/lib/policykit-1-gnome/polkit-gnome-authentication>
  ├─1576 
/usr/lib/x86_64-linux-gnu/xfce4/notifyd/xfce4-notifyd
  ├─1579 
/usr/libexec/ayatana-indicator-application/ayatana-ind>
  ├─1587 nm-applet
  ├─1596 update-notifier
  └─1597 xiccd

After I log out, and wait ten minutes, I see this:

# loginctl list-sessions
SESSION  UID USERSEAT  TTY
  40 root  
 c2 1000 skunk   seat0 
 c3  117 lightdm seat0 

3 sessions listed.

# loginctl session-status c2 | cat
c2 - skunk (1000)
   Since: Fri 2022-05-13 05:38:18 EDT; 12min ago
  Leader: 1172
Seat: seat0; vc7
 Display: :0
 Service: lightdm; type x11; class user
 Desktop: xubuntu
   State: closing
Unit: session-c2.scope
  └─1579 
/usr/libexec/ayatana-indicator-application/ayatana-indicator-application-service

The ayatana-indicator-application program is refusing to exit for some
reason. If I "kill -INT 1579", then the session finally closes.

** Affects: ayatana-indicator-application (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: jammy

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

Title:
  Does not terminate at end of session

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


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

[Bug 1973291] [NEW] "VBoxClient --draganddrop" does not terminate at end of session

2022-05-13 Thread Daniel Richard G.
Public bug reported:

This concerns virtualbox-guest-x11 6.1.32-dfsg-1build1 in Ubuntu jammy.

When I am logged in to an Xfce session, the view from loginctl(1) is as
follows:

# loginctl list-sessions
SESSION  UID USER  SEAT  TTY
  40 root
c24 1000 skunk seat0 

2 sessions listed.

# loginctl session-status c24
c24 - skunk (1000)
   Since: Fri 2022-05-13 04:53:43 EDT; 41s ago
  Leader: 8502 (lightdm)
Seat: seat0; vc7
 Display: :0
 Service: lightdm; type x11; class user
 Desktop: xfce
   State: active
Unit: session-c24.scope
  ├─8502 lightdm --session-child 12 19
  ├─8527 xfce4-session
  ├─8698 /usr/bin/VBoxClient --seamless
  ├─8699 /usr/bin/VBoxClient --seamless
  ├─8705 /usr/bin/VBoxClient --draganddrop
  ├─8706 /usr/bin/VBoxClient --draganddrop
  ├─8806 /usr/bin/ssh-agent -s
  ├─8815 xfwm4
  ├─8824 xfsettingsd
  ├─8827 xfce4-panel
  ├─8831 Thunar --daemon
  ├─8836 xfdesktop
  ├─8839 
/usr/lib/x86_64-linux-gnu/xfce4/notifyd/xfce4-notifyd
  ├─8840 update-notifier
  ├─8843 xiccd
  ├─8847 nm-applet
  ├─8887 xfce4-power-manager
  ├─8899 
/usr/lib/policykit-1-gnome/polkit-gnome-authentication>
  ├─8927 
/usr/lib/x86_64-linux-gnu/xfce4/panel/wrapper-2.0 /usr>
  ├─8928 
/usr/lib/x86_64-linux-gnu/xfce4/panel/wrapper-2.0 /usr>
  ├─8929 
/usr/lib/x86_64-linux-gnu/xfce4/panel/wrapper-2.0 /usr>
  └─8949 
/usr/lib/x86_64-linux-gnu/xfce4/panel/wrapper-2.0 /usr>

After I log out, and wait ten minutes, I see this:

# loginctl list-sessions
SESSION  UID USERSEAT  TTY
  40 root  
c24 1000 skunk   seat0 
c25  117 lightdm seat0 

3 sessions listed.

# loginctl session-status c24
c24 - skunk (1000)
   Since: Fri 2022-05-13 04:53:43 EDT; 13min ago
  Leader: 8502
Seat: seat0; vc7
 Display: :0
 Service: lightdm; type x11; class user
 Desktop: xfce
   State: closing
Unit: session-c24.scope
  ├─8705 /usr/bin/VBoxClient --draganddrop
  └─8706 /usr/bin/VBoxClient --draganddrop

The "VBoxClient --draganddrop" program, for some reason, is refusing to
exit so that the session can be closed. If I do "kill -INT 8706", then I
see

# loginctl list-sessions
SESSION UID USERSEAT  TTY
  4   0 root  
c25 117 lightdm seat0 

2 sessions listed.

which is what should have happened without intervention.

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


** Tags: jammy

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

Title:
  "VBoxClient --draganddrop" does not terminate at end of session

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


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

[Bug 1966066] Re: audio from external sound card is distorted

2022-05-10 Thread Richard Vincent
I can confirm the "5.13.0-41-lowlatency" kernel which I just grabbed on
my Ubuntu Studio laptop has fixed the distorted USB audio bug.

Thank you devs!

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

Title:
  audio from external sound card is distorted

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


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

Re: [Bug 1875114] Re: freeipa-server package missing on Ubuntu 20.04

2022-05-04 Thread Richard Young
Are you saying it is in 22.04?   I thought I read it was not in it.


Richard Young
Virtualization and Linux Lead
Executive IT Specialist
IBM Systems Lab Services

[2D barcode - encoded with contact information] Mobile: 
1-262-893-8662
E-mail:ryou...@us.ibm.com<mailto:ryou...@us.ibm.com>


777 E Wisconsin Ave
Milwaukee, WI 53202-5302
United States


On May 4, 2022, at 6:51 AM, Frank Heimes <1875...@bugs.launchpad.net> wrote:

Would it be possible for 22.10 instead?

--
You received this bug notification because you are subscribed to the bug
report.
https://bugs.launchpad.net/bugs/1875114

Title:
 freeipa-server package missing on Ubuntu 20.04

Status in freeipa package in Ubuntu:
 Triaged
Status in libp11 package in Ubuntu:
 Fix Released
Status in softhsm2 package in Ubuntu:
 Fix Released

Bug description:
 previous releases of Ubuntu have freeipa-server package to install freeipa 
server
 but on 20.04 only client part can be found


 $ apt-cache search freeipa
 libipa-hbac-dev - FreeIPA HBAC Evaluator library -- development files
 libipa-hbac0 - FreeIPA HBAC Evaluator library
 libnss-sss - Nss library for the System Security Services Daemon
 libpam-sss - Pam module for the System Security Services Daemon
 python3-sss - Python3 module for the System Security Services Daemon
 sssd - System Security Services Daemon -- metapackage
 sssd-common - System Security Services Daemon -- common files
 sssd-tools - System Security Services Daemon -- tools
 cockpit-ws - Cockpit Web Service
 freeipa-client - FreeIPA centralized identity framework -- client
 freeipa-client-samba - FreeIPA centralized identity framework -- Samba client
 freeipa-common - FreeIPA centralized identity framework -- common files
 puppet-module-joshuabaird-ipaclient - Puppet module for Joshuabaird IPAclient
 python3-ipaclient - FreeIPA centralized identity framework -- Python3 modules 
for ipaclient
 python3-ipalib - FreeIPA centralized identity framework -- shared Python3 
modules
 python3-libipa-hbac - Python3 bindings for the FreeIPA HBAC Evaluator library

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

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

Title:
  freeipa-server package missing on Ubuntu 20.04

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


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

[Bug 1966066] Re: audio from external sound card is distorted

2022-04-29 Thread Richard Vincent
Anyone know when we will see this in the Ubuntu Studio Low Latency
kernel??

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

Title:
  audio from external sound card is distorted

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


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

[Bug 1969767] Re: totem crashes when attempting to play mp4 files [gst_buffer_get_meta: assertion 'buffer != NULL' failed]

2022-04-27 Thread Richard Dowty
On my computer when I try to play mp4. I loose horz sync.

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

Title:
  totem crashes when attempting to play mp4 files [gst_buffer_get_meta:
  assertion 'buffer != NULL' failed]

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


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

[Bug 1966066] Re: audio from external sound card is distorted

2022-04-26 Thread Richard Vincent
This bug is affecting me as well. Considering I run ubuntu studio, and
the reason I run it is for audio, this is definitely more than a medium
priority bug for me. This is happening on my Scarlett 2i2 audio
interface.

I am running kernel:

5.13.0-40-lowlatency

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

Title:
  audio from external sound card is distorted

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


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

[Bug 1970017] [NEW] Warning from certificate file with non-ASCII characters

2022-04-23 Thread Daniel Richard G.
Public bug reported:

This concerns ca-certificates-java 20190909 in Ubuntu jammy.

Seen during installation of Java packages:

[...]
Setting up libatk-wrapper-java (0.38.0-5build1) ...
Setting up default-jdk-doc (2:1.11-72build2) ...
Setting up libatk-wrapper-java-jni:amd64 (0.38.0-5build1) ...
Setting up ca-certificates-java (20190909) ...
head: cannot open '/etc/ssl/certs/java/cacerts' for reading: No such file 
or directory
Adding debian:DigiCert_Assured_ID_Root_G3.pem
Warning: there was a problem reading the certificate file 
/etc/ssl/certs/NetLock_Arany_=Class_Gold=_F?tan?s?tv?ny.pem. Message:
  /etc/ssl/certs/NetLock_Arany_=Class_Gold=_F?tan?s?tv?ny.pem (No such file 
or directory)
Adding debian:E-Tugra_Certification_Authority.pem
Adding debian:Entrust_Root_Certification_Authority_-_G2.pem
Adding debian:SecureTrust_CA.pem
[...]

The "cannot open" error also seems in need of attention.

** Affects: ca-certificates-java (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: jammy

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

Title:
  Warning from certificate file with non-ASCII characters

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ca-certificates-java/+bug/1970017/+subscriptions


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

[Bug 1404172] Re: lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory

2022-04-23 Thread Daniel Richard G.
*** This bug is a duplicate of bug 1949970 ***
https://bugs.launchpad.net/bugs/1949970

This appears to have been addressed in bug #1949970 by making use of a
feature of the PAM config. In /etc/pam.d/lightdm, I see e.g.

-authoptionalpam_gnome_keyring.so
-authoptionalpam_kwallet.so
-authoptionalpam_kwallet5.so

From the pam.conf(5) man page:

   If the *type* value from the list above
   is prepended with a - character the PAM
   library will not log to the system log if
   it is not possible to load the module
   because it is missing in the system. This
   can be useful especially for modules
   which are not always installed on the
   system and are not required for correct
   authentication and authorization of the
   login session.

I'll mark this issue as a duplicate of the newer one, even though it
should be the other way around.

** This bug has been marked a duplicate of bug 1949970
   attempt to dlopen nonexistent pam_kwallet.so spams log

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

Title:
  lightdm: PAM unable to dlopen(pam_kwallet.so):
  /lib/security/pam_kwallet.so: cannot open shared object file: No such
  file or directory

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


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

[Bug 66830] Re: Problem with Socket Inter-Process Communication

2022-04-19 Thread Richard Ayres
This Printer is connected via a usb cable (Dont need wifi) All I require
of it is the occasional scan and photocopy It has been nothing but
trouble since I bought it. HP support is a Joke!!

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

Title:
  Problem with Socket Inter-Process Communication

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


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

[Bug 1966048] Re: xrdp fails to bind to localhost

2022-03-28 Thread Daniel Richard G.
On further digging, I've found that this issue is due to an AppArmor
rule, which for some reason was treating localhost differently (as IPv6)
than a regular network address (IPv4). Closing.

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

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

Title:
  xrdp fails to bind to localhost

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


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

[Bug 1918410] Re: isc-dhcp-client denied by apparmor

2022-03-28 Thread Daniel Richard G.
Note to everyone watching this bug:

The file that John modified above is in the "extra profiles" section of
the upstream AppArmor source repository. It may be found on an Ubuntu
system at

/usr/share/apparmor/extra-profiles/sbin.dhclient

and in jammy, it has his fix.

However, the isc-dhcp-client package provides its own separate profile,
which is installed at

/etc/apparmor.d/sbin.dhclient

and is quite different.

Most people are likely going to be using this latter one, as it is
enabled by default. So they will not receive the benefit of John's fix.
I've confirmed that the original "DENIED" messages still occur on jammy.

** 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/1918410

Title:
  isc-dhcp-client denied by apparmor

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/isc-dhcp/+bug/1918410/+subscriptions


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

[Bug 1934933] Re: cloud-init dhclient apparmor denied with noexec on /var/tmp

2022-03-27 Thread Daniel Richard G.
This message...

type=AVC msg=audit(1625678140.496:1898): apparmor="DENIED"
operation="open" profile="/{,usr/}sbin/dhclient"
name="/proc/8537/task/8540/comm" pid=8537 comm="dhclient"
requested_mask="wr" denied_mask="wr" fsuid=0 ouid=0

...is actually for a different issue, discussed at LP: #1918410.

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

Title:
  cloud-init dhclient apparmor denied with noexec on /var/tmp

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/isc-dhcp/+bug/1934933/+subscriptions


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

[Bug 1961413] Re: [BLUEFIELD] dmesg is flooded with apparmor="DENIED" for dhclient messages

2022-03-27 Thread Daniel Richard G.
Note that the /proc/XX/task/YY/comm denials are addressed in LP:
#1918410.

That leaves two of this sort:

audit: type=1400 audit(1645193286.560:2012): apparmor="DENIED"
operation="mknod" profile="/{,usr/}sbin/dhclient"
name="/run/NetworkManager/dhclient-oob_net0.pid" pid=103303
comm="dhclient" requested_mask="c" denied_mask="c" fsuid=0 ouid=0

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

Title:
  [BLUEFIELD] dmesg is flooded with apparmor="DENIED"  for dhclient
  messages

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/isc-dhcp/+bug/1961413/+subscriptions


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

[Bug 1940665] Re: Lenovo Carbon X1 9th gen no longer powers off

2022-03-27 Thread Richard
To add here, I just started experiencing the same (or very similar)
issue on a X1 Carbon 9th Gen -- but when suspending rather than trying
to power off.

Closing the lid would appear to put the machine into suspend but:
  (1) it still runs --> gets hot in a bag --> eventually powers off due to 
overheat (occurred several times over a period of a week)
  (2) lid open and touchpad movement would not reawaken the machine (which they 
did before)

In my case it started with an update to `linux-image-5.14.0-1027-oem`
and persisted in 1029 after that. Reverting to `linux-
image-5.14.0-1024-oem` and booting that kernel removes the issue.

apport-bug output attached

** Attachment added: "apport-bug-output.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux-oem-5.10/+bug/1940665/+attachment/5573564/+files/apport-bug-output.txt

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

Title:
  Lenovo Carbon X1 9th gen no longer powers off

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


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

[Bug 1966433] [NEW] Pipewire services start up on remote (ssh) logins

2022-03-25 Thread Daniel Richard G.
Public bug reported:

This concern pipewire 0.3.48-1ubuntu1 in Ubuntu jammy.

I log into an installed system via ssh, and I see

skunk@darkstar:~$ ps auxww | grep skunk
root   13771  0.5  0.1  19772 12224 ?Ss   07:35   0:00 sshd: skunk 
[priv]
skunk  13774  5.4  0.1  17160  9940 ?Ss   07:35   0:00 
/lib/systemd/systemd --user
skunk  13775  0.0  0.0  25600  5292 ?S07:35   0:00 (sd-pam)
skunk  13782  0.4  0.0  34460  6360 ?Ssl  07:35   0:00 
/usr/bin/pipewire
skunk  13783  0.4  0.0  18632  6856 ?Ssl  07:35   0:00 
/usr/bin/pipewire-media-session
skunk  13801  0.0  0.0   8412  4340 ?Ss   07:35   0:00 
/usr/bin/dbus-daemon --session --address=systemd: --nofork --nopidfile 
--systemd-activation --syslog-only
skunk  13831  0.0  0.0  19932  8052 ?S07:35   0:00 sshd: 
skunk@pts/0
skunk  13832  0.0  0.0   5256  4124 pts/0Ss   07:35   0:00 -bash
skunk  13854  0.0  0.0   7692  3328 pts/0R+   07:35   0:00 ps auxww
skunk  13855  0.0  0.0   4024  2144 pts/0S+   07:35   0:00 grep 
--color=auto skunk

Pipewire is a multimedia service. It should not be running in a remote,
non-graphical login.

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


** Tags: jammy

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

Title:
  Pipewire services start up on remote (ssh) logins

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


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

[Bug 1965923] Re: rc.apparmor.functions should not mount /sys/kernel/security inside a chroot environment

2022-03-23 Thread Daniel Richard G.
** 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/1965923

Title:
  rc.apparmor.functions should not mount /sys/kernel/security inside a
  chroot environment

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


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

[Bug 1966034] Re: Request: Add Xubuntu trusty backdrop to xubuntu-wallpapers

2022-03-23 Thread Daniel Richard G.
** 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/1966034

Title:
  Request: Add Xubuntu trusty backdrop to xubuntu-wallpapers

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xubuntu-artwork/+bug/1966034/+subscriptions


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

[Bug 1966162] [NEW] Display still powers down after screensaver and power management are disabled

2022-03-23 Thread Daniel Richard G.
Public bug reported:

This concerns xubuntu-desktop 2.240 in Ubuntu jammy. (Please redirect
this bug to a more suitable package if appropriate.)

I am testing the Xubuntu 22.04 live desktop system, running from a
daily-build ISO. I do not want the display to blank, nor switch off,
when the system is idle.

After a normal "Try Xubuntu" startup, in the Settings Manager, I
switched off

Screensaver -> Screensaver (tab) -> Enable Screensaver

Power Manager -> Display (tab) -> Display power management

However, the display still powers down after some idle time.

** Affects: xubuntu-meta (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: jammy

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

Title:
  Display still powers down after screensaver and power management are
  disabled

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


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

[Bug 1966048] Re: xrdp fails to bind to localhost

2022-03-23 Thread Daniel Richard G.
** 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/1966048

Title:
  xrdp fails to bind to localhost

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


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

[Bug 1966048] [NEW] xrdp fails to bind to localhost

2022-03-23 Thread Daniel Richard G.
Public bug reported:

This concerns xrdp 0.9.17-2ubuntu2 in Ubuntu jammy.

I want to have xrdp listen on a localhost port. When I configure the
server to use

[Globals]
...
port=tcp://.:3389

in /etc/xrdp/xrdp.ini, and I attempt to start the server, I get an
error:

# /etc/init.d/xrdp start
Starting xrdp (via systemctl): xrdp.serviceJob for xrdp.service failed 
because the control 
process exited with error code.
See "systemctl status xrdp.service" and "journalctl -xeu xrdp.service" for 
details.
 failed!

In /var/log/xrdp.log, I see

[20220323-05:02:00] [INFO ] address [127.0.0.1] port [3389] mode 4
[20220323-05:02:00] [INFO ] listening to port 3389 on 127.0.0.1
[20220323-05:02:00] [ERROR] trans_listen_address failed
[20220323-05:02:00] [ERROR] Failed to start xrdp daemon, possibly address 
already in use.

The port is free. Nothing is using it:

$ telnet localhost 3389
Trying ::1...
Trying 127.0.0.1...
telnet: Unable to connect to remote host: Connection refused

I tried building the latest upstream release of xrdp (v0.9.19 as of this
writing) with the same build configuration as the Ubuntu package. It
starts without error.

Please update the package to v0.9.19.

** Affects: xrdp (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/1966048

Title:
  xrdp fails to bind to localhost

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


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

[Bug 1966034] [NEW] Request: Add Xubuntu trusty backdrop to xubuntu-wallpapers

2022-03-23 Thread Daniel Richard G.
Public bug reported:

This concerns xubuntu-wallpapers 22.04 in Ubuntu jammy.

Please add the Xubuntu backdrop from the trusty release, i.e.

https://3.bp.blogspot.com/-pLKk0mvZIQE/U05l_GluNyI/SPM/X6PzqUZhH_s/s1600/xubuntu-
trusty.png

I miss that mouse.

** Affects: xubuntu-artwork (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/1966034

Title:
  Request: Add Xubuntu trusty backdrop to xubuntu-wallpapers

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xubuntu-artwork/+bug/1966034/+subscriptions


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

  1   2   3   4   5   6   7   8   9   10   >