[Bug 1920784] Re: qemu-system-ppc64le fails with kvm acceleration

2021-03-28 Thread Thomas Huth
** No longer affects: qemu

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

Title:
  qemu-system-ppc64le fails with kvm acceleration

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-power-systems/+bug/1920784/+subscriptions

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

[Bug 1818881] Re: ath10k_pci crashing

2021-03-28 Thread Kai-Heng Feng
#54 is different to the original issue.

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

Title:
  ath10k_pci crashing

To manage notifications about this bug go to:
https://bugs.launchpad.net/oem-priority/+bug/1818881/+subscriptions

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

[Bug 1913259] Re: Intel AX201 Wi-Fi [8086:43f0] subsystem [1a56:1652]: Direct firmware load for (efault)128.ucode failed with error -2

2021-03-28 Thread You-Sheng Yang
verified linux-oem-5.10 version 5.10.0-1020.21 from focal-proposed.

** Tags removed: verification-needed-focal
** Tags added: verification-done-focal

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

Title:
  Intel AX201 Wi-Fi [8086:43f0] subsystem [1a56:1652]: Direct firmware
  load for (efault)128.ucode failed with error -2

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1913259/+subscriptions

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

[Bug 1921676] [NEW] Problem 5.11.0-xx HWE on the Ryzen 4650g

2021-03-28 Thread Ylya Danilov
Public bug reported:

This kernel not works on the motherboard Gigabyte b550m s2h BIOS Version F12, 
CPU Ryzen 5 PRO 4650g, RAM 2x8Gb. Patriot Viper 4 3200Mhz., screen 1920x1080 
BenQ GW2270. 
Black screen ant not logs. Ubuntu 20.04.2.0

This kernel 5.8.0-48 generic HWE works good.

In future update this HWE 5.11.0-xx-generic.

Probe on the other distributive. Not works 5.11.x on the CPU Ryzen 5 PRO 4650G.
The 5.8.x - 5.10.x good works.

I`m like Ubuntu, fixed problem please in the future HWE. Thenks before.

** Affects: linux-hwe-5.8 (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/1921676

Title:
  Problem 5.11.0-xx HWE on the Ryzen 4650g

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

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

[Bug 1913259] Re: Intel AX201 Wi-Fi [8086:43f0] subsystem [1a56:1652]: Direct firmware load for (efault)128.ucode failed with error -2

2021-03-28 Thread You-Sheng Yang
** Description changed:

+ [SRU Justification]
+ 
+ [Impact]
+ 
+ Intel AX210 Wi-Fi [8086:43f0] subsystem [1a56:1652] requests invalid
+ firmware path and fails device init:
+ 
+   [ 4.146811] Intel(R) Wireless WiFi driver for Linux
+   [ 4.146866] iwlwifi :00:14.3: enabling device ( -> 0002)
+   [ 4.155371] iwlwifi :00:14.3: Direct firmware load for 
(efault)128.ucode failed with error -2
+   [ 4.155388] iwlwifi :00:14.3: Direct firmware load for 
(efault)127.ucode failed with error -2
+   ...
+   [ 4.157058] iwlwifi :00:14.3: Direct firmware load for (efault)1.ucode 
failed with error -2
+   [ 4.157068] iwlwifi :00:14.3: Direct firmware load for (efault)0.ucode 
failed with error -2
+   [ 4.157070] iwlwifi :00:14.3: no suitable firmware found!
+   [ 4.157071] iwlwifi :00:14.3: minimum version required: (efault)0
+   [ 4.157072] iwlwifi :00:14.3: maximum version supported: (efault)128
+   [ 4.157073] iwlwifi :00:14.3: check 
git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git
+ 
+ This is a design flaw in iwlwifi driver source.
+ 
+ In drivers/net/wireless/intel/iwlwifi/pcie/drv.c
+ 
+   static const struct pci_device_id iwl_hw_card_ids[] = {
+ {IWL_PCI_DEVICE(0x4232, 0x1201, iwl5100_agn_cfg)},
+ ...
+ {IWL_PCI_DEVICE(0x43F0, PCI_ANY_ID, iwl_qu_long_latency_trans_cfg)},
+ ...
+   };
+ 
+ The third argument to IWL_PCI_DEVICE macro will be assigned to driver_data 
field
+ of struct pci_device_id. However, iwl5100_agn_cfg has type struct iwl_cfg, and
+ yet iwl_qu_long_latency_trans_cfg has type struct iwl_cfg_trans_params.
+ 
+   struct iwl_cfg_trans_params {
+ ...
+   };
+ 
+   struct iwl_cfg {
+ struct iwl_cfg_trans_params trans;
+ const char *name;
+ const char *fw_name_pre;
+ ...
+   };
+ 
+ It's fine to cast a pointer to struct iwl_cfg, but it's not always valid to 
cast
+ a struct iwl_cfg_trans_params to struct iwl_cfg.
+ 
+ In function iwl_pci_probe, it tries to find an alternative cfg by iterating
+ throughout iwl_dev_info_table, but in our case, [8086:43f0] subsystem
+ [1a56:1652], all of the candidates will be skipped, and
+ iwl_qu_long_latency_trans_cfg will be assigned as the ultimate struct iwl_cfg,
+ which will be certainly wrong when you're trying to refer to anything beyond
+ sizeof(struct iwl_cfg_trans_params), e.g. cfg->fw_name_pre. In this case,
+ ((struct iwl_cfg_trans_params*)_qu_long_latency_trans_cfg)->name will be
+ "'", and ((struct 
iwl_cfg_trans_params*)_qu_long_latency_trans_cfg)->fw_name_pre
+ gives "(efault)", pure garbage data.
+ 
+ [Fix]
+ 
+ Commit 410f758529bc ("iwlwifi: add new cards for So and Qu family") in 
v5.12-rc1
+ add a few additional entries to correctly catch this card.
+ 
+ [Test Case]
+ 
+ Booting from kernel built with aforementioned commit cherry-picked, WiFi
+ interface should be now up and working. Also tested this kernel against 
several
+ iwlwifi supported models on the target and a previous generation platform.
+ 
+ [Where problems could occur]
+ 
+ This card failed initialization previously. With it being up and running, it 
may
+ affect system stability if there are some undiscovered bugs related to this 
new
+ model.
+ 
+ [Other Info]
+ 
+ This change has been backported to stable kernel v5.11.4, so skipped 
nomination
+ for Hirsute/Unstable.
+ 
+ == Original bug report ==
+ 
  00:14.3 Network controller [0280]: Intel Corporation Device [8086:43f0]
   Subsystem: Bigfoot Networks, Inc. Device [1a56:1652]
   Control: I/O- Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
   Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- 
   Kernel modules: iwlwifi
  
  In dmesg:
  [ 4.146811] Intel(R) Wireless WiFi driver for Linux
  [ 4.146866] iwlwifi :00:14.3: enabling device ( -> 0002)
  [ 4.155371] iwlwifi :00:14.3: Direct firmware load for (efault)128.ucode 
failed with error -2
  [ 4.155388] iwlwifi :00:14.3: Direct firmware load for (efault)127.ucode 
failed with error -2
  [ 4.155486] iwlwifi :00:14.3: Direct firmware load for (efault)126.ucode 
failed with error -2
  [ 4.155585] iwlwifi :00:14.3: Direct firmware load for (efault)125.ucode 
failed with error -2
  [ 4.155596] iwlwifi :00:14.3: Direct firmware load for (efault)124.ucode 
failed with error -2
  [ 4.155606] iwlwifi :00:14.3: Direct firmware load for (efault)123.ucode 
failed with error -2
  [ 4.155617] iwlwifi :00:14.3: Direct firmware load for (efault)122.ucode 
failed with error -2
  [ 4.155628] iwlwifi :00:14.3: Direct firmware load for (efault)121.ucode 
failed with error -2
  [ 4.155639] iwlwifi :00:14.3: Direct firmware load for (efault)120.ucode 
failed with error -2
  [ 4.155649] iwlwifi :00:14.3: Direct firmware load for (efault)119.ucode 
failed with error -2
  [ 4.155660] iwlwifi :00:14.3: Direct firmware load for (efault)118.ucode 
failed with error -2
  [ 

[Bug 1891974] Re: [06cb:00be] Synaptics fingerprint reader is not supported

2021-03-28 Thread Rex Tsai
The [06cb:00be] is confirmed non-supported in v1.90.7[1], Closing this
issue to won't fix.

[1]
https://gitlab.freedesktop.org/libfprint/libfprint/-/blob/v1.90.7/libfprint
/fprint-list-udev-rules.c#L47


** Changed in: oem-priority
   Status: Confirmed => Won't Fix

** Changed in: libfprint (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  [06cb:00be] Synaptics fingerprint reader is not supported

To manage notifications about this bug go to:
https://bugs.launchpad.net/oem-priority/+bug/1891974/+subscriptions

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

[Bug 1921673] [NEW] An unresolvable problem occurred while calculating the upgrade. This was likely caused by: * Unofficial software packages not provided by Ubuntu Please use the tool 'ppa-purge' fro

2021-03-28 Thread Neil Browne
Public bug reported:

I just thought it would upgrade from 18.04.5 LTS to 20 automatically but
I get an error message and don't know what to do . What is PPA, PPA-
Purge package and launchpad PPA? How do I know what is official and what
is unoffical Ubuntu software?

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: ubuntu-release-upgrader-core 1:18.04.42
ProcVersionSignature: Ubuntu 4.15.0-139.143-generic 4.15.18
Uname: Linux 4.15.0-139-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.23
Architecture: amd64
CrashDB: ubuntu
CurrentDesktop: ubuntu:GNOME
Date: Mon Mar 29 15:13:23 2021
InstallationDate: Installed on 2017-04-11 (1447 days ago)
InstallationMedia: Ubuntu 16.04.2 LTS "Xenial Xerus" - Release amd64 
(20170215.2)
PackageArchitecture: all
SourcePackage: ubuntu-release-upgrader
UpgradeStatus: Upgraded to bionic on 2021-03-29 (0 days ago)
VarLogDistupgradeTermlog:

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


** Tags: amd64 apport-bug bionic dist-upgrade third-party-packages

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

Title:
  An unresolvable problem occurred while calculating the upgrade.   This
  was likely caused by:  * Unofficial software packages not provided by
  Ubuntu Please use the tool 'ppa-purge' from the ppa-purge  package to
  remove software from a Launchpad PPA and  try the upgrade again.  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'. Comment: I don't know what this means.

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

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

[Bug 1891974] Re: [06cb:00be] Synaptics fingerprint reader is not supported

2021-03-28 Thread Rex Tsai
1:1.90.7+git20210222+tod1-0ubuntu1 is included in hirsute, hirsute
should just work.

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

Title:
  [06cb:00be] Synaptics fingerprint reader is not supported

To manage notifications about this bug go to:
https://bugs.launchpad.net/oem-priority/+bug/1891974/+subscriptions

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

[Bug 1891974] Re: [06cb:00be] Synaptics fingerprint reader is not supported

2021-03-28 Thread Rex Tsai
The [06cb:00be] is confirmed supported in v1.90.7[1]

[1]
https://gitlab.freedesktop.org/libfprint/libfprint/-/blob/v1.90.7/libfprint
/fprint-list-udev-rules.c#L47

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

Title:
  [06cb:00be] Synaptics fingerprint reader is not supported

To manage notifications about this bug go to:
https://bugs.launchpad.net/oem-priority/+bug/1891974/+subscriptions

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

[Bug 1905423] Re: Rabbit reports "file descriptor limit alarm set", does not accept connections

2021-03-28 Thread Launchpad Bug Tracker
[Expired for rabbitmq-server (Ubuntu) because there has been no activity
for 60 days.]

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

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

Title:
  Rabbit reports "file descriptor limit alarm set", does not accept
  connections

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

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

[Bug 1912953] Re: [nvidia] Xorg freezes after suspend

2021-03-28 Thread Launchpad Bug Tracker
[Expired for nvidia-graphics-drivers-450 (Ubuntu) because there has been
no activity for 60 days.]

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

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

Title:
  [nvidia] Xorg freezes after suspend

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

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

[Bug 1913216] Re: unbound DNS service crashing/not starting

2021-03-28 Thread Launchpad Bug Tracker
[Expired for unbound (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  unbound DNS service crashing/not starting

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

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

[Bug 1913366] Re: Login screen freezes when xserver-xorg-video-openchrome is in use

2021-03-28 Thread Launchpad Bug Tracker
[Expired for xserver-xorg-video-openchrome (Ubuntu) because there has
been no activity for 60 days.]

** Changed in: xserver-xorg-video-openchrome (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  Login screen freezes when xserver-xorg-video-openchrome is in use

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-openchrome/+bug/1913366/+subscriptions

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

[Bug 1913402] Re: لوبونتو رو دانلود کردم استخراج نمیشه

2021-03-28 Thread Launchpad Bug Tracker
[Expired for debian-installer (Ubuntu) because there has been no
activity for 60 days.]

** Changed in: debian-installer (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  لوبونتو رو دانلود کردم استخراج نمیشه

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/debian-installer/+bug/1913402/+subscriptions

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

[Bug 1913368] Re: System freeze

2021-03-28 Thread Launchpad Bug Tracker
[Expired for linux (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  System freeze

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

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

[Bug 1913439] Re: "Alert Sound" change has no effect at all

2021-03-28 Thread Launchpad Bug Tracker
[Expired for gnome-control-center (Ubuntu) because there has been no
activity for 60 days.]

** Changed in: gnome-control-center (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  "Alert Sound" change has no effect at all

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

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

[Bug 1913485] Re: PulseEffects + YTMD

2021-03-28 Thread Launchpad Bug Tracker
[Expired for pulseeffects (Ubuntu) because there has been no activity
for 60 days.]

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

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

Title:
  PulseEffects + YTMD

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

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

[Bug 1918466] Re: Garbage window on external 4k display

2021-03-28 Thread Kai-Heng Feng
I guess is that the TBT output is routed to Nvidia GFX instead of Intel GFX.
But we need the output for comment #20 to confirm.

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

Title:
  Garbage window on external 4k display

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

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

[Bug 1897110] Re: [Nvidia] sometimes cannot control brightness on some high-end Lenovo ThinkPads

2021-03-28 Thread Rex Tsai
The issue is addressed in 450.76 driver.

** Changed in: oem-priority
   Status: In Progress => Won't Fix

** Changed in: nvidia-graphics-drivers-450 (Ubuntu)
   Status: New => Won't Fix

** Changed in: oem-priority/focal
   Status: New => Won't Fix

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

Title:
  [Nvidia] sometimes cannot control brightness on some high-end Lenovo
  ThinkPads

To manage notifications about this bug go to:
https://bugs.launchpad.net/oem-priority/+bug/1897110/+subscriptions

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

[Bug 1921452] Re: [SRU] alsa-lib: conf: USB - add "Cmedia Audio" to USB-Audio.pcm.iec958_device

2021-03-28 Thread Rex Tsai
The upstream alia-lib has not yet accepted the patch[1].

Shengyao, Hui, please clarify all "Cmedia Audio" chip does not support
"Digital Output(S/PDIF)" as iec958 device.


[1] conf: USB - add "Cmedia Audio" to USB-Audio.pcm.iec958_device by 
jason77-wang · Pull Request #122 · alsa-project/alsa-lib - 
https://github.com/alsa-project/alsa-lib/pull/122/commits/879d57d979b59be8632ba788d5f567f2b6ec0c19

Regards
-Rex

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

Title:
  [SRU] alsa-lib: conf: USB - add "Cmedia Audio" to USB-
  Audio.pcm.iec958_device

To manage notifications about this bug go to:
https://bugs.launchpad.net/oem-priority/+bug/1921452/+subscriptions

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

[Bug 1919267] Re: Fingerprint reader ASUS VivoBook X507UAR

2021-03-28 Thread Matthew Mirvish
This is being tracked upstream in libfprint at
https://gitlab.freedesktop.org/libfprint/libfprint/-/issues/339. You can
try the prototype driver at https://github.com/mincrmatt12/elan-spi-
fingerprint.

** Bug watch added: gitlab.freedesktop.org/libfprint/libfprint/-/issues #339
   https://gitlab.freedesktop.org/libfprint/libfprint/-/issues/339

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

Title:
  Fingerprint reader ASUS VivoBook X507UAR

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

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

[Bug 1921665] Re: QEMU hits assertion when virtual disk is stored on NFS server and is not 4 kib byte aligned

2021-03-28 Thread Matthew Ruffell
Attached is a debdiff for Groovy which fixes this bug.

** Patch added: "QEMU debdiff for Groovy"
   
https://bugs.launchpad.net/ubuntu/+source/qemu/+bug/1921665/+attachment/5481777/+files/lp1921665_groovy.debdiff

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

Title:
  QEMU hits assertion when virtual disk is stored on NFS server and is
  not 4 kib byte aligned

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

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

[Bug 1921665] Re: QEMU hits assertion when virtual disk is stored on NFS server and is not 4 kib byte aligned

2021-03-28 Thread Matthew Ruffell
Attached is a debdiff for Focal which fixes this bug.

** Patch added: "QEMU debdiff for focal"
   
https://bugs.launchpad.net/ubuntu/+source/qemu/+bug/1921665/+attachment/5481776/+files/lp1921665_focal.debdiff

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

Title:
  QEMU hits assertion when virtual disk is stored on NFS server and is
  not 4 kib byte aligned

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

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

[Bug 1921452] Re: [SRU] alsa-lib: conf: USB - add "Cmedia Audio" to USB-Audio.pcm.iec958_device

2021-03-28 Thread Shengyao Xue
** Changed in: alsa-lib (Ubuntu Focal)
 Assignee: Shengyao Xue (xueshengyao) => (unassigned)

** Changed in: alsa-lib (Ubuntu Groovy)
 Assignee: Shengyao Xue (xueshengyao) => (unassigned)

** Changed in: alsa-lib (Ubuntu Hirsute)
 Assignee: Shengyao Xue (xueshengyao) => (unassigned)

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

Title:
  [SRU] alsa-lib: conf: USB - add "Cmedia Audio" to USB-
  Audio.pcm.iec958_device

To manage notifications about this bug go to:
https://bugs.launchpad.net/oem-priority/+bug/1921452/+subscriptions

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

[Bug 1920836] Re: Show Extended Security Maintenence status

2021-03-28 Thread Robert Ancell
Bionic and focal branches/PPA also updated.

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

Title:
  Show Extended Security Maintenence status

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

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

[Bug 1920836] Re: Show Extended Security Maintenence status

2021-03-28 Thread Robert Ancell
I've updated the xenial branch and version in the PPA with the fixes
requested, thanks!

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

Title:
  Show Extended Security Maintenence status

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

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

[Bug 1921668] [NEW] package codeblocks-dev 20.03 failed to install/upgrade: 正试图覆盖 /usr/include/codeblocks/Alignment.h,它同时被包含于软件包 codeblocks-headers 20.03

2021-03-28 Thread EEBOND
Public bug reported:

buntu@ubuntu:~$ sudo apt-get install -f
正在读取软件包列表... 完成
正在分析软件包的依赖关系树   
正在读取状态信息... 完成   
正在修复依赖关系... 完成
将会同时安装下列软件:
  codeblocks-common codeblocks-contrib codeblocks-dev
推荐安装:
  valgrind
下列软件包将被【卸载】:
  codeblocks-libwxcontrib0 codeblocks-libwxcontrib0-dbgsym
  codeblocks-wxcontrib-dev codeblocks-wxcontrib-headers
下列软件包将被升级:
  codeblocks-common codeblocks-contrib codeblocks-dev
升级了 3 个软件包,新安装了 0 个软件包,要卸载 4 个软件包,有 2 个软件包未被升级。
有 9 个软件包没有被完全安装或卸载。
需要下载 0 B/8,698 kB 的归档。
解压缩后将会空出 6,258 kB 的空间。
您希望继续执行吗? [Y/n] Y
(正在读取数据库 ... 系统当前共安装有 221428 个文件和目录。)
准备解压 .../codeblocks-contrib_20.03-3_amd64.deb  ...
正在解压 codeblocks-contrib (20.03-3) 并覆盖 (20.03) ...
dpkg: 处理归档 /var/cache/apt/archives/codeblocks-contrib_20.03-3_amd64.deb 
(--unpack)时出错:
 正试图覆盖 /usr/lib/codeblocks/wxContribItems/libwxchartctrl.so.0.0.1,它同时被包含于软件包 
codeblocks-libwxcontrib0 20.03
dpkg-deb: 错误: 粘贴 子进程被信号(断开的管道) 终止了
在处理时有错误发生:
 /var/cache/apt/archives/codeblocks-contrib_20.03-3_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

ProblemType: Package
DistroRelease: Ubuntu 20.04
Package: codeblocks-dev 20.03
ProcVersionSignature: Ubuntu 5.8.0-48.54~20.04.1-generic 5.8.18
Uname: Linux 5.8.0-48-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.16
Architecture: amd64
CasperMD5CheckResult: skip
Date: Mon Mar 29 11:20:32 2021
ErrorMessage: 正试图覆盖 /usr/include/codeblocks/Alignment.h,它同时被包含于软件包 
codeblocks-headers 20.03
InstallationDate: Installed on 2021-03-06 (22 days ago)
InstallationMedia: Ubuntu 20.04.2.0 LTS "Focal Fossa" - Release amd64 
(20210209.1)
Python3Details: /usr/bin/python3.8, Python 3.8.5, python3-minimal, 
3.8.2-0ubuntu2
PythonDetails: N/A
RelatedPackageVersions:
 dpkg 1.19.7ubuntu3
 apt  2.0.4
SourcePackage: codeblocks
Title: package codeblocks-dev 20.03 failed to install/upgrade: 正试图覆盖 
/usr/include/codeblocks/Alignment.h,它同时被包含于软件包 codeblocks-headers 20.03
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package focal third-party-packages

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

Title:
  package codeblocks-dev 20.03 failed to install/upgrade: 正试图覆盖
  /usr/include/codeblocks/Alignment.h,它同时被包含于软件包 codeblocks-headers
  20.03

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

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

Re: [Bug 1921661] Re: Simply crashed when installing to a preformatted disk. thats ery unusual. Regards, RL

2021-03-28 Thread RL
Thank you for investigating. The disk is old and I had defective sectors 
earlier. In a second try,

I installed using option 'Full disk' with formatting and that succeeded.

Please close this report as done; no further inspection needed, thank
you.

By the way: using the freshly installed Ubuntu, getting a terminal 
finally did not succeed.

This software is unusable for me, if I dont succed in that. A standard 
selector (left margin) is missing.

I know, one has to search for 'term' (else you are hosed). Selecting 
that gave no final result;

it tried to start up but dropped out finally. I want to use the 
Operating System and not to be fed

(like a Win** dummy) with cannned food

Nevertheless, thanks for achievements so far, R


===

On 3/29/21 4:17 AM, Chris Guiver wrote:
> Thank you for taking the time to report this issue and helping to make
> Ubuntu better.
>
> This problem appears to be related to hardware errors. I notice in the
> logs
>
> Mar 29 00:47:53 ubuntu kernel: [ 1585.461476] sd 2:0:0:0: [sdb] tag#9 FAILED 
> Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE cmd_age=0s
> Mar 29 00:47:53 ubuntu kernel: [ 1585.461518] sd 2:0:0:0: [sdb] tag#9 Sense 
> Key : Illegal Request [current]
> Mar 29 00:47:53 ubuntu kernel: [ 1585.461531] sd 2:0:0:0: [sdb] tag#9 Add. 
> Sense: Invalid field in cdb
> Mar 29 00:47:53 ubuntu kernel: [ 1585.461543] sd 2:0:0:0: [sdb] tag#9 CDB: 
> Write(10) 2a 08 0e 9a cd 60 00 00 08 00
> Mar 29 00:47:53 ubuntu kernel: [ 1585.461557] blk_update_request: critical 
> target error, dev sdb, sector 245026144 op 0x1:(WRITE) flags 0x20800 phys_seg 
> 1 prio class 0
> Mar 29 00:47:53 ubuntu kernel: [ 1585.461607] blk_update_request: critical 
> target error, dev sdb, sector 245026144 op 0x1:(WRITE) flags 0x20800 phys_seg 
> 1 prio class 0
> Mar 29 00:47:53 ubuntu kernel: [ 1585.461741] Aborting journal on device 
> sdb4-8.
> Mar 29 00:47:53 ubuntu kernel: [ 1585.464411] EXT4-fs error (device sdb4): 
> ext4_journal_check_start:83: Detected aborted journal
> Mar 29 00:47:53 ubuntu kernel: [ 1585.464421] EXT4-fs (sdb4): Remounting 
> filesystem read-only
> Mar 29 00:47:53 ubuntu kernel: [ 1585.464720] EXT4-fs error (device sdb4): 
> ext4_journal_check_start:83: Detected aborted journal
>
> I've marked this bug as incomplete (due hardware issues), if you believe
> I'm in error please leave a comment as to why, and you can return the
> status to "New".
>
> I suggest you validate the health of your hardware (esp. disk by
> checking it's SMART status using `smartctl`, `gnome-disks` or whichever
> tool you prefer), and possibly the integrity of your partition table
> (https://help.ubuntu.com/community/Smartmontools). If you're unfamiliar
> with these, I suggest seeking support, options available can be seen at
> https://discourse.ubuntu.com/t/finding-help/709
>
> ** Changed in: ubuntu
> Status: New => Incomplete
>
> ** Package changed: ubuntu => ubiquity (Ubuntu)
>

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

Title:
  Simply crashed when installing to a preformatted disk. thats ery
  unusual. Regards,RL

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

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

[Bug 1920660] Re: Missing Commit for 5.4-Kernel breaks xen Dom0

2021-03-28 Thread Po-Hsu Lin
Thanks for testing this out.

** No longer affects: linux-hwe-5.4 (Ubuntu)

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

** Changed in: linux (Ubuntu Focal)
   Status: New => Fix Committed

** Changed in: linux (Ubuntu)
   Status: Confirmed => Invalid

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

Title:
  Missing Commit for 5.4-Kernel breaks  xen Dom0

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

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

[Bug 1920836] Re: Show Extended Security Maintenence status

2021-03-28 Thread Robert Ancell
This change is based on the expectation that UA tools will be the
version that is about to be SRUd. The old version gracefully fails with
`ua status --format=json`, so should already effectively return (False,
False). I didn't do an explicit check on the version as it's non-trivial
to do and I'd be more worried about introducing a bug in the version
number parsing.

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

Title:
  Show Extended Security Maintenence status

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

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

[Bug 1891810] Re: Missing openat2 syscall, causes problems for fuse-overlayfs in nspawn containers

2021-03-28 Thread Alex Murray
** Changed in: libseccomp (Ubuntu Xenial)
   Status: Confirmed => In Progress

** Changed in: libseccomp (Ubuntu Bionic)
   Status: Confirmed => In Progress

** Changed in: libseccomp (Ubuntu Focal)
   Status: Confirmed => In Progress

** Changed in: libseccomp (Ubuntu Groovy)
   Status: Confirmed => In Progress

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

Title:
  Missing openat2 syscall, causes problems for fuse-overlayfs in nspawn
  containers

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

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

[Bug 1920670] Status changed to Confirmed

2021-03-28 Thread Ubuntu Kernel Bot
This change was made by a bot.

** Changed in: linux (Ubuntu)
   Status: New => Confirmed

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

Title:
  [Dell Precision 5540] Screen glitches temporarily

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

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

[Bug 1921637] Re: Intel UHD Graphics 620

2021-03-28 Thread Daniel van Vugt
Thanks for the bug report.

1. Are you able to attach a video of the problem?

2. Please try selecting 'Ubuntu on Wayland' on the login screen just
before you enter your password (icon in the bottom right corner of the
screen). Does the problem persist after that?

3. Please try some slightly older/newer kernel versions and tell us if
they have the same issue: https://kernel.ubuntu.com/~kernel-
ppa/mainline/?C=M;O=D



** Package changed: xorg (Ubuntu) => linux-hwe-5.8 (Ubuntu)

** Changed in: linux-hwe-5.8 (Ubuntu)
   Status: New => Incomplete

** Summary changed:

- Intel UHD Graphics 620
+ [Lenovo ideapad 720S-13IKB] Flickering display

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

Title:
  [Lenovo ideapad 720S-13IKB] Flickering display

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

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

[Bug 1921665] [NEW] QEMU hits assertion when virtual disk is stored on NFS server and is not 4 kib byte aligned

2021-03-28 Thread Matthew Ruffell
Public bug reported:

[Impact]

QEMU can hit an assertion and crash when attempting to write to a
virtual disk image when the following conditions are met:

1. disk type is "raw"
2. disk cache type set to "none"
3. disk is shared over NFS
4. disk size is not a multiple of 4 kiB

In this case, QEMU assumes that the image needs to be aligned to 4kib,
and that writing to the disk which is not a multiple of 4kib will lead
to writing past the end of the disk image, and will hit the following
assert:

qemu-system-x86_64: /build/qemu-AB62EU/qemu-4.2/block/io.c:1885: 
bdrv_co_write_req_prepare: Assertion `end_sector <= bs->total_sectors || 
child->perm & BLK_PERM_RESIZE' failed.
Aborted (core dumped) 

This is particularly prevalent if you have a disk of size 100 on
the NFS server. You can work-around the problem by making the disk image
a multiple of 4kib, in order to not hit the assert.

[Test case]

This bug is straightforward to reproduce on Focal and Groovy.

Start with a fresh install of Ubuntu Server, install KVM stack:

$ sudo apt-get install qemu-kvm libvirt-daemon-system libvirt-clients 
bridge-utils
$ sudo reboot

Next, install and configure a NFS server:

$ sudo -s
$ sudo apt install nfs-kernel-server
$ mkdir -p /export
$ chown libvirt-qemu:kvm /export
$ echo "/export 127.0.0.1(rw,sync,no_subtree_check)" >> /etc/exports
$ systemctl restart nfs-server

Create a disk image:

$ truncate -s 100 /export/reproducer-centos.img
$ chown libvirt-qemu:kvm /export/reproducer-centos.img
$ chmod 666 /export/reproducer-centos.img

Mount the NFS server to /mnt:

$ mount 127.0.0.1:/export /mnt -o
bg,noacl,noatime,nolock,proto=udp,vers=3,noauto

(for Groovy / 5.8 kernel, drop the proto=udp option)

Download the CentOS image:

$ wget
https://vault.centos.org/7.2.1511/isos/x86_64/CentOS-7-x86_64-Minimal-1511.iso

Start the VM:

$ qemu-system-x86_64 -cdrom ./CentOS-7-x86_64-Minimal-1511.iso -m 1024
-blockdev '{"driver":"file","filename":"/mnt/reproducer-centos.img
","node-name":"disk0","cache":{"direct":true}}' -device virtio-blk-
pci,drive=disk0 -vnc 0.0.0.0:0 -enable-kvm

Connect to the VM with Reminna, configured for VNC connection to the
server on :5900

Click Continue at the language/keyboard selection screen.
Click Installation Destination.
Click Done (no changes needed on that screen).
Click Begin Installation.

It will crash after displaying "Setting up the installation environment"
(which is the second thing printed) or the message about creating the
disk label. If it gets any farther than that (i.e. starts creating
filesystems), it's going to work and you can stop the test.

This is the error I see:

qemu-system-x86_64: /build/qemu-AB62EU/qemu-4.2/block/io.c:1885: 
bdrv_co_write_req_prepare: Assertion `end_sector <= bs->total_sectors || 
child->perm & BLK_PERM_RESIZE' failed.
Aborted (core dumped) 

Test packages are available for Focal and Groovy in the following PPA:

https://launchpad.net/~mruffell/+archive/ubuntu/sf298252-test

When you use the QEMU packages from this PPA, the issue is fixed and the
CentOS installation works properly.

[Where problems could occur]

There are two places where problems could occur.

The first, is around the handling of byte aligned disk images, in the
block subsystem of QEMU.A new check is added to see if we have the write
permission, and not the resize permission, and if that is the case, then
we throw an error. This error is more graceful than hitting an assert,
but it introduces error handling and other risks for regression.

The second, is that NFS is explicitly cleared for byte aligned writes,
and this is enforced by testing for the NFS magic bytes on the start of
the filesystem the disk image is being loaded from. By checking magic
bytes, we ensure no other filesystem type could get mixed up and allow
byte aligned writes when they would not be supported, which reduces the
risk of regression.

If a regression were to occur, it would likely only affect users with
non 4kib aligned disk images, and a workaround would be to resize the
virtual disk image to 4kib alignment, or create new VMs with disk images
as a multiple of 4kib.

[Other]

The commits which fix the problem landed in QEMU 5.1, and are:

commit 9c60a5d1978e6dcf85c0e01b50e6f7f54ca09104
From: Kevin Wolf 
Date: Thu, 16 Jul 2020 16:26:00 +0200
Subject: block: Require aligned image size to avoid assertion failure
Link: 
https://git.qemu.org/?p=qemu.git;a=commit;h=9c60a5d1978e6dcf85c0e01b50e6f7f54ca09104

commit 5edc85571e7b7269dce408735eba7507f18ac666
From: Kevin Wolf 
Date: Thu, 16 Jul 2020 16:26:01 +0200
Subject: file-posix: Allow byte-aligned O_DIRECT with NFS
Link: 
https://git.qemu.org/?p=qemu.git;a=commit;h=5edc85571e7b7269dce408735eba7507f18ac666

Mailing list discussion:
https://www.mail-archive.com/qemu-devel@nongnu.org/msg721982.html

** Affects: qemu (Ubuntu)
 Importance: Undecided
 Status: Fix Released

** Affects: qemu (Ubuntu Focal)
 Importance: Medium
 Assignee: 

[Bug 1921597] Re: locks up

2021-03-28 Thread Daniel van Vugt
*** This bug is a duplicate of bug 1921556 ***
https://bugs.launchpad.net/bugs/1921556

** This bug has been marked a duplicate of bug 1921556
   computer crash

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

Title:
  locks up

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

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

[Bug 1921587] Re: Unlock screen language is same as last used application

2021-03-28 Thread Daniel van Vugt
1. Would you say that https://gitlab.gnome.org/GNOME/gnome-
shell/-/issues/3817 is related?

2. Please run this command to send us more information about the system:

   apport-collect 1921587

** Summary changed:

- Login screen language is same as last used application
+ Unlock screen language is same as last used application

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

** Bug watch added: gitlab.gnome.org/GNOME/gnome-shell/-/issues #3817
   https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/3817

** Changed in: gnome-shell (Ubuntu)
   Status: New => Incomplete

** Tags added: i18n

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

Title:
  Unlock screen language is same as last used application

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

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

[Bug 1921556] Re: computer crash

2021-03-28 Thread Daniel van Vugt
Thanks for the bug report.

Please:

1. Remove your kernel parameter "drm.debug=0xe" as it will prevent us
from easily debugging this problem.

2. Reboot.

3. Reproduce the crash again.

4. Wait 10 seconds.

5. Reboot again.

6. Run:

   journalctl -b-1 > prevboot.txt

7. Attach the resulting text file here.

8. Also follow these steps to check for crashes:
https://wiki.ubuntu.com/Bugs/Responses#Missing_a_crash_report_or_having_a_.crash_attachment

** Package changed: xorg (Ubuntu) => ubuntu

** Changed in: ubuntu
   Status: New => Incomplete

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

Title:
  computer crash

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

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

[Bug 1920036] Re: [DisplayLink] screen flicker on gnome with t450s with ultra dock when using HDMI (but not DisplayPort)

2021-03-28 Thread Daniel van Vugt
** Summary changed:

- [DisplayLink] screen flicker on gnome with t450s with ultra dock
+ [DisplayLink] screen flicker on gnome with t450s with ultra dock when using 
HDMI (but not DisplayPort)

** Description changed:

- picture on monitor connected to DisplayPort flickers occasionally. between 1 
and 20 times per hour.
- searched for similar bugs or problems, related to docking station. Does not 
happen when using laptop standalone / connect screen manually. 
+ picture on monitor connected by DisplayLink flickers occasionally. between 1 
and 20 times per hour.
+ searched for similar bugs or problems, related to docking station. Does not 
happen when using laptop standalone / connect screen manually.
  
  DisplayLink Driver is installed/compiled from official website.
  
  whenever the flickering happens, this appears in log:
  
  "libinput error: client bug: timer event20 debounce short: scheduled
  expiry is in the past (-10ms), your system is too slow"
  
- anything I can contribute? fix? 
+ anything I can contribute? fix?
  I tried to get daily builds of intel-driver but that broke wayland/gdm so I 
rolled back.
  
  only link I could find that seems relevant is
  https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1572667 - which
  expired.
  
  thanks
- 
  
  Andreas
  
  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: mutter 3.36.7+git20201123-0.20.04.1
  ProcVersionSignature: Ubuntu 5.8.0-45.51~20.04.1-generic 5.8.18
  Uname: Linux 5.8.0-45-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27.16
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: GNOME
  Date: Thu Mar 18 16:18:08 2021
  InstallationDate: Installed on 2021-03-13 (5 days ago)
  InstallationMedia: Ubuntu 20.04.2.0 LTS "Focal Fossa" - Release amd64 
(20210209.1)
  SourcePackage: mutter
  UpgradeStatus: No upgrade log present (probably fresh install)

** Changed in: evdi (Ubuntu)
   Status: New => Won't Fix

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

Title:
  [DisplayLink] screen flicker on gnome with t450s with ultra dock when
  using HDMI (but not DisplayPort)

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

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

[Bug 1920670] Re: [Dell Precision 5540] Screen glitches temporarily

2021-03-28 Thread Daniel van Vugt
** Changed in: linux (Ubuntu)
   Status: Incomplete => New

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

Title:
  [Dell Precision 5540] Screen glitches temporarily

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

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

[Bug 1921664] [NEW] Recent update broke qemu-system-riscv64

2021-03-28 Thread Tommy Thorn
Public bug reported:

I regularly run a RISC-V (RV64GC) QEMU VM, but an update a few days ago
broke it.  Now when I launch it, it hits an assertion:


  
OpenSBI v0.6
  
   _  _ 
  / __ \  / |  _ \_   _|
  
 | |  | |_ __   ___ _ __ | (___ | |_) || |  
  
 | |  | | '_ \ / _ \ '_ \ \___ \|  _ < | |  

 
 | |__| | |_) |  __/ | | |) | |_) || |_ 

 
  \/| .__/ \___|_| |_|_/|/_|
  
| | 

 
|_| 
  

  
...
Found /boot/extlinux/extlinux.conf  

 
Retrieving file: /boot/extlinux/extlinux.conf   

 
618 bytes read in 2 ms (301.8 KiB/s)
  
RISC-V Qemu Boot Options
  
1:  Linux kernel-5.5.0-dirty 
2:  Linux kernel-5.5.0-dirty (recovery mode)
Enter choice: 1:Linux kernel-5.5.0-dirty
  
Retrieving file: /boot/initrd.img-5.5.0-dirty   

 
qemu-system-riscv64: ../../block/aio_task.c:64: aio_task_pool_wait_one: 
Assertion `qemu_coroutine_self() == pool->main_co' failed.  
 
./run.sh: line 31:  1604 Aborted (core dumped) 
qemu-system-riscv64 -machine virt -nographic -smp 8 -m 8G -bios fw_payload.bin 
-device virtio-blk-devi
ce,drive=hd0 -object rng-random,filename=/dev/urandom,id=rng0 -device 
virtio-rng-device,rng=rng0 -drive 
file=riscv64-UbuntuFocal-qemu.qcow2,format=qcow2,id=hd0 -devi
ce virtio-net-device,netdev=usernet -netdev user,id=usernet,$ports  
  

Interestingly this doesn't happen on the AMD64 version of Ubuntu 21.04
(fully updated).


Think you have everything already, but just in case:

$ lsb_release -rd
Description:Ubuntu Hirsute Hippo (development branch)
Release:21.04

$ uname -a
Linux minimacvm 5.11.0-11-generic #12-Ubuntu SMP Mon Mar 1 19:27:36 UTC 2021 
aarch64 aarch64 aarch64 GNU/Linux
(note this is a VM running on macOS/M1)

$ apt-cache policy qemu
qemu:
  Installed: 1:5.2+dfsg-9ubuntu1
  Candidate: 1:5.2+dfsg-9ubuntu1
  Version table:
 *** 1:5.2+dfsg-9ubuntu1 500
500 http://ports.ubuntu.com/ubuntu-ports hirsute/universe arm64 Packages
100 /var/lib/dpkg/status

ProblemType: Bug
DistroRelease: Ubuntu 21.04
Package: qemu 1:5.2+dfsg-9ubuntu1
ProcVersionSignature: Ubuntu 5.11.0-11.12-generic 5.11.0
Uname: Linux 5.11.0-11-generic aarch64
ApportVersion: 2.20.11-0ubuntu61
Architecture: arm64
CasperMD5CheckResult: unknown
CurrentDmesg:
 Error: command ['pkexec', 'dmesg'] failed with exit code 127: 
polkit-agent-helper-1: error response to PolicyKit daemon: 
GDBus.Error:org.freedesktop.PolicyKit1.Error.Failed: No session for cookie
 Error executing command as another user: Not authorized
 
 This incident has been reported.
Date: Mon Mar 29 02:33:25 2021
Dependencies:
 
KvmCmdLine: COMMAND STAT  EUID  RUID PIDPPID %CPU COMMAND
Lspci-vt:
 -[:00]-+-00.0  Apple Inc. Device f020
+-01.0  Red Hat, Inc. Virtio network device
+-05.0  Red Hat, Inc. Virtio console
+-06.0  Red Hat, Inc. Virtio block device
\-07.0  Red Hat, Inc. Virtio RNG
Lsusb: Error: command ['lsusb'] failed with exit code 1:
Lsusb-t:
 
Lsusb-v: Error: command ['lsusb', '-v'] failed with exit code 1:
ProcEnviron:
 TERM=screen
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=C.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: console=hvc0 root=/dev/vda
SourcePackage: qemu
UpgradeStatus: Upgraded to hirsute on 2020-12-30 (88 days ago)
acpidump:
 Error: command ['pkexec', '/usr/share/apport/dump_acpi_tables.py'] failed with 
exit code 127: polkit-agent-helper-1: error response to PolicyKit daemon: 
GDBus.Error:org.freedesktop.PolicyKit1.Error.Failed: No session for cookie
 Error 

[Bug 1921531] Re: with breeze dark theme, buttons in thunderbird become hard to distinguish

2021-03-28 Thread Daniel van Vugt
This looks like a bug in the breeze theme and not a bug in Ubuntu. You
will need to report it to wherever you got the theme from.

** Summary changed:

- with breeze dark theme, buttons in thunderbird become indistinguishable
+ with breeze dark theme, buttons in thunderbird become hard to distinguish

** Package changed: xorg (Ubuntu) => ubuntu

** Changed in: 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/1921531

Title:
  with breeze dark theme, buttons in thunderbird become hard to
  distinguish

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

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

[Bug 1835660] Re: initramfs unpacking failed

2021-03-28 Thread Daniel van Vugt
** Changed in: initramfs-tools (Ubuntu Focal)
 Assignee: Armandoobnaiala (armando1986) => (unassigned)

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

Title:
  initramfs unpacking failed

To manage notifications about this bug go to:
https://bugs.launchpad.net/oem-priority/+bug/1835660/+subscriptions

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

[Bug 1920632] Re: use of Wacom stylus causes immediate system hang with kernel 5.8.0-45, but 5.8.0-44 works

2021-03-28 Thread Daniel van Vugt
** Changed in: linux-hwe-5.8 (Ubuntu)
   Status: Confirmed => Fix Committed

** Changed in: linux-signed-hwe-5.8 (Ubuntu)
   Status: Confirmed => Fix Committed

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

Title:
  use of Wacom stylus causes immediate system hang with kernel 5.8.0-45,
  but 5.8.0-44 works

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

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

[Bug 1921598] Re: opened windows extend behind dock after screen unlock

2021-03-28 Thread Daniel van Vugt
*** This bug is a duplicate of bug 1917939 ***
https://bugs.launchpad.net/bugs/1917939

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

** This bug has been marked a duplicate of bug 1917939
   Windows maximise underneath dock after monitor sleep

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

Title:
  opened windows extend behind dock after screen unlock

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

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

[Bug 1824874] Re: undismissable, unclickable authentication dialog left on screen (top-left corner) after policykit authentication [pushModal: invocation of begin_modal failed]

2021-03-28 Thread Daniel van Vugt
** Tags added: rls-ff-incoming

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

Title:
  undismissable, unclickable authentication dialog left on screen (top-
  left corner) after policykit authentication [pushModal: invocation of
  begin_modal failed]

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

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

[Bug 1918402] Re: super-tab or alt-tab only recognising two apps when more open

2021-03-28 Thread Daniel van Vugt
*** This bug is a duplicate of bug 1917926 ***
https://bugs.launchpad.net/bugs/1917926

** This bug has been marked a duplicate of bug 1917926
   Window focus/clicking/moving failures for Xorg sessions in 3.38.3-3ubuntu1

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

Title:
  super-tab or alt-tab  only recognising two apps when more open

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

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

[Bug 1918880] Re: pulseaudio threaded-ml suspend issue

2021-03-28 Thread Daniel van Vugt
** No longer affects: pulseaudio (Ubuntu)

** Changed in: linux-oem-5.6 (Ubuntu)
   Status: Incomplete => Confirmed

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

Title:
  pulseaudio threaded-ml suspend issue

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

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

[Bug 1921661] Re: Simply crashed when installing to a preformatted disk. thats ery unusual. Regards, RL

2021-03-28 Thread Chris Guiver
Thank you for taking the time to report this issue and helping to make
Ubuntu better.

This problem appears to be related to hardware errors. I notice in the
logs

Mar 29 00:47:53 ubuntu kernel: [ 1585.461476] sd 2:0:0:0: [sdb] tag#9 FAILED 
Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE cmd_age=0s
Mar 29 00:47:53 ubuntu kernel: [ 1585.461518] sd 2:0:0:0: [sdb] tag#9 Sense Key 
: Illegal Request [current] 
Mar 29 00:47:53 ubuntu kernel: [ 1585.461531] sd 2:0:0:0: [sdb] tag#9 Add. 
Sense: Invalid field in cdb
Mar 29 00:47:53 ubuntu kernel: [ 1585.461543] sd 2:0:0:0: [sdb] tag#9 CDB: 
Write(10) 2a 08 0e 9a cd 60 00 00 08 00
Mar 29 00:47:53 ubuntu kernel: [ 1585.461557] blk_update_request: critical 
target error, dev sdb, sector 245026144 op 0x1:(WRITE) flags 0x20800 phys_seg 1 
prio class 0
Mar 29 00:47:53 ubuntu kernel: [ 1585.461607] blk_update_request: critical 
target error, dev sdb, sector 245026144 op 0x1:(WRITE) flags 0x20800 phys_seg 1 
prio class 0
Mar 29 00:47:53 ubuntu kernel: [ 1585.461741] Aborting journal on device sdb4-8.
Mar 29 00:47:53 ubuntu kernel: [ 1585.464411] EXT4-fs error (device sdb4): 
ext4_journal_check_start:83: Detected aborted journal
Mar 29 00:47:53 ubuntu kernel: [ 1585.464421] EXT4-fs (sdb4): Remounting 
filesystem read-only
Mar 29 00:47:53 ubuntu kernel: [ 1585.464720] EXT4-fs error (device sdb4): 
ext4_journal_check_start:83: Detected aborted journal

I've marked this bug as incomplete (due hardware issues), if you believe
I'm in error please leave a comment as to why, and you can return the
status to "New".

I suggest you validate the health of your hardware (esp. disk by
checking it's SMART status using `smartctl`, `gnome-disks` or whichever
tool you prefer), and possibly the integrity of your partition table
(https://help.ubuntu.com/community/Smartmontools). If you're unfamiliar
with these, I suggest seeking support, options available can be seen at
https://discourse.ubuntu.com/t/finding-help/709

** Changed in: ubuntu
   Status: New => Incomplete

** Package changed: ubuntu => ubiquity (Ubuntu)

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

Title:
  Simply crashed when installing to a preformatted disk. thats ery
  unusual. Regards,RL

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

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

[Bug 1919408] Re: GUI freeze

2021-03-28 Thread Daniel van Vugt
The good news is there are no more "general protection fault" app
crashes in those logs so the new RAM has fixed one big problem.

As for the remaining freezes, we need a different approach. Next time a
freeze happens, please:

1. Wait 10 seconds.

2. Reboot.

3. Run:

   journalctl -b-1 > freezeboot.txt

4. Attach the resulting text file here.

5. Check for crashes using these instructions:
https://wiki.ubuntu.com/Bugs/Responses#Missing_a_crash_report_or_having_a_.crash_attachment

** Summary changed:

- General protection fault, kernel panics on ASUS M5A99FX PRO R2.0
+ GUI freeze

** Tags added: amdgpu

** Summary changed:

- GUI freeze
+ [amdgpu] GUI freeze

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

Title:
  [amdgpu] GUI freeze

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

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

[Bug 1916469] Re: Apps don't use Wayland by default

2021-03-28 Thread Daniel van Vugt
** Also affects: thunderbird (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: thunderbird (Ubuntu)
   Status: New => Incomplete

** Changed in: thunderbird (Ubuntu)
   Status: Incomplete => Confirmed

** Changed in: thunderbird (Ubuntu)
   Importance: Undecided => Medium

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

Title:
  Apps don't use Wayland by default

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

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

[Bug 1918874] Re: [regression] Application windows appear over the icon grid when Ubuntu Dock or Dash To Dock is loaded

2021-03-28 Thread Daniel van Vugt
** Also affects: gnome-shell-extension-ubuntu-dock (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: gnome-shell-extension-ubuntu-dock (Ubuntu)
   Status: New => Fix Released

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

Title:
  [regression] Application windows appear over the icon grid when Ubuntu
  Dock or Dash To Dock is loaded

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

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

[Bug 1919972] Re: Icon grid flashes briefly before the spring animation

2021-03-28 Thread Daniel van Vugt
Fixed in https://launchpad.net/ubuntu/+source/gnome-shell-extension-
ubuntu-dock/69ubuntu1 (ignore the typo in the changelog)

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

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

Title:
  Icon grid flashes briefly before the spring animation

To manage notifications about this bug go to:
https://bugs.launchpad.net/dash-to-dock/+bug/1919972/+subscriptions

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

[Bug 1921661] Re: Simply crashed when installing to a preformatted disk. thats ery unusual. Regards, RL

2021-03-28 Thread RL
possibly the error is induced because of (not using your sole  [!] ) ZFS

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

Title:
  Simply crashed when installing to a preformatted disk. thats ery
  unusual. Regards,RL

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

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

[Bug 1921661] [NEW] Simply crashed when installing to a preformatted disk. thats ery unusual. Regards, RL

2021-03-28 Thread RL
Public bug reported:

Tried to install Ubuntu 20 Desktop from an USB Stick to an external USB disk 
with reformatting
existing partitions (/boot 500M ext3, /boot/efi 200M Efi (=FAT), 32GB / ext3, 
no swap as ample RAM
16GB at hand) So no /var/log or else.just CRASH. uNTIL NOW, DONT LIKE 
fEDORA/bsd, posasibly have
to reconsider.
Regards, RL

ProblemType: Bug
DistroRelease: Ubuntu 20.10
Package: ubiquity 20.10.13
ProcVersionSignature: Ubuntu 5.8.0-25.26-generic 5.8.14
Uname: Linux 5.8.0-25-generic x86_64
NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
ApportVersion: 2.20.11-0ubuntu50
Architecture: amd64
CasperMD5CheckResult: skip
CasperVersion: 1.455
CurrentDesktop: ubuntu:GNOME
Date: Mon Mar 29 03:01:27 2021
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed 
maybe-ubiquity quiet splash ---
LiveMediaBuild: Ubuntu 20.10 "Groovy Gorilla" - Release amd64 (20201022)
ProcEnviron:
 LANGUAGE=en_US.UTF-8
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 LC_NUMERIC=C.UTF-8
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: ubuntu
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug groovy ubiquity-20.10.13 ubuntu

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

Title:
  Simply crashed when installing to a preformatted disk. thats ery
  unusual. Regards,RL

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

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

[Bug 1825126] Re: Shell dialog shadows are clipped on the top and left edges

2021-03-28 Thread Daniel van Vugt
The fixes required are listed in

https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/1090#note_948171

They are all in GNOME 40. I don't imagine we will need to patch them
sooner than that.

** Bug watch added: gitlab.gnome.org/GNOME/gnome-shell/-/issues #1090
   https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/1090

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

Title:
  Shell dialog shadows are clipped on the top and left edges

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

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

[Bug 1860537] Re: ipmctl 02.00.00.3673+ds-2 breaks on ACPI PMTT v0.1 BIOS

2021-03-28 Thread Bug Watch Updater
** Changed in: ipmctl
   Status: New => Fix Released

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

Title:
  ipmctl 02.00.00.3673+ds-2 breaks on ACPI PMTT v0.1 BIOS

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

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

[Bug 1917939] Re: Windows maximise underneath dock after monitor sleep

2021-03-28 Thread Daniel van Vugt
mutter (3.38.4-1ubuntu1) hirsute; urgency=medium

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

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

Title:
  Windows maximise underneath dock after monitor sleep

To manage notifications about this bug go to:
https://bugs.launchpad.net/dash-to-dock/+bug/1917939/+subscriptions

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

[Bug 1821525] Re: totem assert failure: totem: totem: gen9_mfd.c:649: gen9_hcpd_get_reference_picture_frame_id: Assertion `0' failed.

2021-03-28 Thread Bug Watch Updater
** Changed in: libva
   Status: Unknown => New

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

Title:
  totem assert failure: totem: totem: gen9_mfd.c:649:
  gen9_hcpd_get_reference_picture_frame_id: Assertion `0' failed.

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

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

[Bug 1921654] Re: package libp11-kit-gnome-keyring (not installed) failed to install/upgrade: trying to overwrite '/usr/share/p11-kit/modules/gnome-keyring.module', which is also in package gnome-keyr

2021-03-28 Thread Apport retracing service
** Package changed: ubuntu => gnome-keyring (Ubuntu)

** Tags removed: need-duplicate-check

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

Title:
  package libp11-kit-gnome-keyring (not installed) failed to
  install/upgrade: trying to overwrite '/usr/share/p11-kit/modules
  /gnome-keyring.module', which is also in package gnome-keyring-
  pkcs11:amd64 3.36.0-1ubuntu1

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

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

[Bug 1921654] [NEW] package libp11-kit-gnome-keyring (not installed) failed to install/upgrade: trying to overwrite '/usr/share/p11-kit/modules/gnome-keyring.module', which is also in package gnome-ke

2021-03-28 Thread Darin Schlinger
Public bug reported:

don't know

ProblemType: Package
DistroRelease: Ubuntu 20.04
Package: libp11-kit-gnome-keyring (not installed)
ProcVersionSignature: Ubuntu 5.8.0-48.54~20.04.1-generic 5.8.18
Uname: Linux 5.8.0-48-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.16
Architecture: amd64
CasperMD5CheckResult: skip
Date: Sun Mar 28 19:28:01 2021
DuplicateSignature:
 package:libp11-kit-gnome-keyring:(not installed)
 Unpacking libp11-kit-gnome-keyring:amd64 (3.18.3-0ubuntu2.1) ...
 dpkg: error processing archive 
/tmp/apt-dpkg-install-WPMJE1/002-libp11-kit-gnome-keyring_3.18.3-0ubuntu2.1_amd64.deb
 (--unpack):
  trying to overwrite '/usr/share/p11-kit/modules/gnome-keyring.module', which 
is also in package gnome-keyring-pkcs11:amd64 3.36.0-1ubuntu1
ErrorMessage: trying to overwrite 
'/usr/share/p11-kit/modules/gnome-keyring.module', which is also in package 
gnome-keyring-pkcs11:amd64 3.36.0-1ubuntu1
InstallationDate: Installed on 2021-01-18 (69 days ago)
InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
Python3Details: /usr/bin/python3.8, Python 3.8.5, python3-minimal, 
3.8.2-0ubuntu2
PythonDetails: /usr/bin/python2.7, Python 2.7.18, python-is-python2, 2.7.17-4
RelatedPackageVersions:
 dpkg 1.19.7ubuntu3
 apt  2.0.4
SourcePackage: gnome-keyring
Title: package libp11-kit-gnome-keyring (not installed) failed to 
install/upgrade: trying to overwrite 
'/usr/share/p11-kit/modules/gnome-keyring.module', which is also in package 
gnome-keyring-pkcs11:amd64 3.36.0-1ubuntu1
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package focal package-conflict

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

Title:
  package libp11-kit-gnome-keyring (not installed) failed to
  install/upgrade: trying to overwrite '/usr/share/p11-kit/modules
  /gnome-keyring.module', which is also in package gnome-keyring-
  pkcs11:amd64 3.36.0-1ubuntu1

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

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

[Bug 1921656] [NEW] thunderbird calendar is blank on opening

2021-03-28 Thread Humphrey van Polanen Petel
Public bug reported:

at first thunderbird calendar displays "enable" buttons for each calendar, but 
clicking those has no visible effect. 
Then clicking and clicking again the "eye" to first hide and then to display 
the calendars also has no visible effect.
NOTE that this has been the case for some weeks now.

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: thunderbird 1:78.7.1+build1-0ubuntu0.20.04.1
ProcVersionSignature: Ubuntu 5.8.0-48.54~20.04.1-generic 5.8.18
Uname: Linux 5.8.0-48-generic x86_64
AddonCompatCheckDisabled: False
ApportVersion: 2.20.11-0ubuntu27.16
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  humphrey   2419 F pulseaudio
BuildID: 20210203182138
CasperMD5CheckResult: skip
Channel: Unavailable
CurrentDesktop: Unity:Unity7:ubuntu
Date: Mon Mar 29 11:44:24 2021
DefaultProfileExtensions: extensions.sqlite corrupt or missing
DefaultProfileIncompatibleExtensions: Unavailable (corrupt or non-existant 
compatibility.ini or extensions.sqlite)
DefaultProfileLocales: extensions.sqlite corrupt or missing
DefaultProfilePrefErrors: Unexpected character ',' before close parenthesis @ 
/usr/lib/thunderbird/omni.ja:greprefs.js:732
DefaultProfilePrefSources: prefs.js
DefaultProfileThemes: extensions.sqlite corrupt or missing
ExecutablePath: /usr/lib/thunderbird/thunderbird
ForcedLayersAccel: False
IfupdownConfig:
 # interfaces(5) file used by ifup(8) and ifdown(8)
 # Include files from /etc/network/interfaces.d:
 source-directory /etc/network/interfaces.d
InstallationDate: Installed on 2021-01-14 (73 days ago)
InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
IpRoute:
 default via 192.168.0.1 dev eno1 proto dhcp metric 100 
 default via 192.168.1.1 dev wlx001325ad55e1 proto dhcp metric 600 
 169.254.0.0/16 dev wlx001325ad55e1 scope link metric 1000 
 192.168.0.0/24 dev eno1 proto kernel scope link src 192.168.0.10 metric 100 
 192.168.1.0/24 dev wlx001325ad55e1 proto kernel scope link src 192.168.1.103 
metric 600
MostRecentCrashID: bp-d8ee9043-ef35-483e-8c89-c1b0d0181224
Profile1Extensions: extensions.sqlite corrupt or missing
Profile1IncompatibleExtensions: Unavailable (corrupt or non-existant 
compatibility.ini or extensions.sqlite)
Profile1Locales: extensions.sqlite corrupt or missing
Profile1PrefErrors: Unexpected character ',' before close parenthesis @ 
/usr/lib/thunderbird/omni.ja:greprefs.js:732
Profile1PrefSources: prefs.js
Profile1Themes: extensions.sqlite corrupt or missing
Profiles:
 Profile1 - LastVersion=68.10.0/20200629235513 (Out of date)
 Profile0 (Default) - LastVersion=78.7.1/20210203182138 (In use)
RunningIncompatibleAddons: False
SourcePackage: thunderbird
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 07/14/2020
dmi.bios.release: 2.48
dmi.bios.vendor: HP
dmi.bios.version: N01 Ver. 02.48
dmi.board.name: 8054
dmi.board.vendor: HP
dmi.board.version: KBC Version 05.39
dmi.chassis.type: 4
dmi.chassis.vendor: HP
dmi.ec.firmware.release: 5.57
dmi.modalias: 
dmi:bvnHP:bvrN01Ver.02.48:bd07/14/2020:br2.48:efr5.57:svnHP:pnHPEliteDesk800G2SFF:pvr:rvnHP:rn8054:rvrKBCVersion05.39:cvnHP:ct4:cvr:
dmi.product.family: 103C_53307F G=D
dmi.product.name: HP EliteDesk 800 G2 SFF
dmi.product.sku: L1G76AV
dmi.sys.vendor: HP

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


** Tags: amd64 apport-bug focal

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

Title:
  thunderbird calendar is blank on opening

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

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

[Bug 1921647] Re: sudo apt-get install build-essential checkinstall Reading package lists... Done Building dependency tree Reading state information... Done checkinstall is already the newest version

2021-03-28 Thread Steve Langasek
Please show the output of 'apt policy libc6-dev' and 'apt policy libc6'.

** Changed in: build-essential (Ubuntu)
   Status: New => Incomplete

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

Title:
  sudo  apt-get install build-essential checkinstall Reading package
  lists... Done Building dependency treeReading state
  information... Done checkinstall is already the newest version
  (1.6.2+git20170426.d24a630-2ubuntu1). Some packages could not be
  installed. This may mean that you have requested an impossible
  situation or if you are using the unstable distribution that some
  required packages have not yet been created or been moved out of
  Incoming. The following information may help to resolve the situation:
  The following packages have unmet dependencies:  build-essential :
  Depends: libc6-dev but it is not going to be installed or
  libc-devDepends: g++ (>= 4:9.2) but it is not
  going to be installed E: Unable to correct problems, you have held
  broken packages.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/build-essential/+bug/1921647/+subscriptions

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

[Bug 1907686] Re: ovn: instance unable to retrieve metadata

2021-03-28 Thread Edin S
For visibility: I've filed a bug for adding monitoring of the Metadata
agent via the HTTP layer: LP#1921653

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

Title:
  ovn: instance unable to retrieve metadata

To manage notifications about this bug go to:
https://bugs.launchpad.net/charm-ovn-chassis/+bug/1907686/+subscriptions

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

[Bug 1921652] [NEW] clear history timeout should start counting from the last copy, not from last cleaning

2021-03-28 Thread SamInside
Public bug reported:

There's the option to auto-clear history after X seconds, very cool feature.
Problem is it should count from the last copy, not from the last cleaning, 
otherwise, sometimes you copy something and it immediately gets erased because 
it was just one second before the next cleaning.

** Affects: clipit (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/1921652

Title:
  clear history timeout should start counting from the last copy, not
  from last cleaning

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

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

[Bug 1919563] Re: updated sssd with smart cards now brick systems without full cert chain

2021-03-28 Thread Treviño
when *not* using -partial_chain

** Changed in: sssd (Ubuntu)
   Status: New => In Progress

** Changed in: sssd (Ubuntu)
 Assignee: (unassigned) => Marco Trevisan (Treviño) (3v1n0)

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

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

Title:
  updated sssd with smart cards now brick systems without full cert
  chain

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

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

[Bug 1921651] Re: colon in name causes gvfs hang when copying to phone

2021-03-28 Thread Dan Kegel
Also: if the colon is in the name of a directory you are copying, the
directory gets created with the colon in the name, but any attempt to
put files in it hangs.

Deleting the colon-named things via Files does seem to work, though.

And transferring files with spaces, dashes, and umlauts in the names
works fine, too.  It's just the colon that causes trouble.

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

Title:
  colon in name causes gvfs hang when copying to phone

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

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

[Bug 1921651] [NEW] colon in name causes gvfs hang when copying to phone

2021-03-28 Thread Dan Kegel
Public bug reported:

A colon in a file or directory name causes the operation to hang when
copying to a phone via ptp.

To reproduce:

On android phone:
1) plug usb cable between phone and computer
2) Go to settings.  Search for USB. Click on "Standard USB configuration".
  (Alternately, notice mystery status card at very bottom of notifications 
saying "Android system - charging over USB, click for options", and click on 
it.) 
3) Select PTP.

Then on Ubuntu 20.04 (and probably other recent vintages as well):

0) observe your phone popping up in dock and in Files
1) cp good.mp3 bad:.mp3
2) xdg-open .
3) In dock or Files, also open your phone
4) drag good.mp3 to your phone, note that it succeeds
5) drag bad:.mpd to your phone, note that it hangs

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: gvfs 1.44.1-1ubuntu1
ProcVersionSignature: Ubuntu 5.8.0-48.54~20.04.1-generic 5.8.18
Uname: Linux 5.8.0-48-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.11-0ubuntu27.16
Architecture: amd64
CasperMD5CheckResult: skip
CurrentDesktop: ubuntu:GNOME
Date: Sun Mar 28 15:28:32 2021
InstallationDate: Installed on 2020-10-17 (162 days ago)
InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: gvfs
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug focal

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

Title:
  colon in name causes gvfs hang when copying to phone

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

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

[Bug 1919563] Re: updated sssd with smart cards now brick systems without full cert chain

2021-03-28 Thread Treviño
Yeah, sure...

As per man page:

  -partial_chain
   Allow verification to succeed even if a complete chain cannot be 
built to a self-signed trust-anchor,
   provided it is possible to construct a chain to a trusted 
certificate that might not be self-signed.

And you can test it quite easily with the attached generated certs
using:

  openssl verify [-partial_chain] \
-CAfile test_CA/intermediate_CA/SSSD_test_intermediate_CA.pem \
test_CA/intermediate_CA/SSSD_test_intermediate_CA_cert_x509_0001.pem

While when using -partial_chain will only match when using
test_CA/intermediate_CA/SSSD_test_intermediate_CA_full_db.pem as CAfile

** Attachment added: "Test CA certificates chain"
   
https://bugs.launchpad.net/ubuntu/+source/sssd/+bug/1919563/+attachment/5481720/+files/test_CA.tar.xz

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

Title:
  updated sssd with smart cards now brick systems without full cert
  chain

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

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

[Bug 1920847] Re: ACPI Error: Aborting method \_SB.PCI0.LPCB.ECDV._Q66 due to previous error (AE_AML_NOT_OWNER) (20200528/psparse-529)

2021-03-28 Thread Axil Kythe Frankland
I would like to note that is error spontaneously resolved after
reinstalling. maybe something happened during installation, or my ISO
was dirty.

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

Title:
  ACPI Error: Aborting method \_SB.PCI0.LPCB.ECDV._Q66 due to previous
  error (AE_AML_NOT_OWNER) (20200528/psparse-529)

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

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

[Bug 1921632] Re: Internal Speakers Bang & Olufsen on HP Spectre X360 Convertible model 13-aw2025na don't work at all probably because of missing kernel/ALSA driver or wrong driver configuration

2021-03-28 Thread Marian Klein
** Summary changed:

- Internal Speakers Bang & Olufsen on HP Spectre X360 Convertible model 
13-aw2025na don't work at all probably because of driver missing or wrongly 
configured
+ Internal Speakers Bang & Olufsen on HP Spectre X360 Convertible model 
13-aw2025na don't work at all probably because of missing kernel/ALSA driver or 
wrong driver configuration

** Changed in: linux (Ubuntu)
   Status: Incomplete => Confirmed

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

Title:
  Internal Speakers Bang & Olufsen on HP Spectre X360 Convertible model
  13-aw2025na don't work at all probably because of missing kernel/ALSA
  driver or wrong driver configuration

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

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

[Bug 1921632] acpidump.txt

2021-03-28 Thread Marian Klein
apport information

** Attachment added: "acpidump.txt"
   
https://bugs.launchpad.net/bugs/1921632/+attachment/5481719/+files/acpidump.txt

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

Title:
  Internal Speakers Bang & Olufsen on HP Spectre X360 Convertible model
  13-aw2025na don't work at all probably because of driver missing or
  wrongly configured

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

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

[Bug 1921632] ProcInterrupts.txt

2021-03-28 Thread Marian Klein
apport information

** Attachment added: "ProcInterrupts.txt"
   
https://bugs.launchpad.net/bugs/1921632/+attachment/5481714/+files/ProcInterrupts.txt

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

Title:
  Internal Speakers Bang & Olufsen on HP Spectre X360 Convertible model
  13-aw2025na don't work at all probably because of driver missing or
  wrongly configured

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

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

[Bug 1921632] Lsusb-v.txt

2021-03-28 Thread Marian Klein
apport information

** Attachment added: "Lsusb-v.txt"
   
https://bugs.launchpad.net/bugs/1921632/+attachment/5481710/+files/Lsusb-v.txt

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

Title:
  Internal Speakers Bang & Olufsen on HP Spectre X360 Convertible model
  13-aw2025na don't work at all probably because of driver missing or
  wrongly configured

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

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

[Bug 1921632] Lsusb.txt

2021-03-28 Thread Marian Klein
apport information

** Attachment added: "Lsusb.txt"
   https://bugs.launchpad.net/bugs/1921632/+attachment/5481708/+files/Lsusb.txt

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

Title:
  Internal Speakers Bang & Olufsen on HP Spectre X360 Convertible model
  13-aw2025na don't work at all probably because of driver missing or
  wrongly configured

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

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

[Bug 1921632] ProcModules.txt

2021-03-28 Thread Marian Klein
apport information

** Attachment added: "ProcModules.txt"
   
https://bugs.launchpad.net/bugs/1921632/+attachment/5481715/+files/ProcModules.txt

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

Title:
  Internal Speakers Bang & Olufsen on HP Spectre X360 Convertible model
  13-aw2025na don't work at all probably because of driver missing or
  wrongly configured

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

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

[Bug 1921632] ProcCpuinfo.txt

2021-03-28 Thread Marian Klein
apport information

** Attachment added: "ProcCpuinfo.txt"
   
https://bugs.launchpad.net/bugs/1921632/+attachment/5481712/+files/ProcCpuinfo.txt

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

Title:
  Internal Speakers Bang & Olufsen on HP Spectre X360 Convertible model
  13-aw2025na don't work at all probably because of driver missing or
  wrongly configured

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

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

[Bug 1921632] UdevDb.txt

2021-03-28 Thread Marian Klein
apport information

** Attachment added: "UdevDb.txt"
   https://bugs.launchpad.net/bugs/1921632/+attachment/5481717/+files/UdevDb.txt

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

Title:
  Internal Speakers Bang & Olufsen on HP Spectre X360 Convertible model
  13-aw2025na don't work at all probably because of driver missing or
  wrongly configured

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

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

[Bug 1921632] RfKill.txt

2021-03-28 Thread Marian Klein
apport information

** Attachment added: "RfKill.txt"
   https://bugs.launchpad.net/bugs/1921632/+attachment/5481716/+files/RfKill.txt

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

Title:
  Internal Speakers Bang & Olufsen on HP Spectre X360 Convertible model
  13-aw2025na don't work at all probably because of driver missing or
  wrongly configured

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

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

[Bug 1921632] WifiSyslog.txt

2021-03-28 Thread Marian Klein
apport information

** Attachment added: "WifiSyslog.txt"
   
https://bugs.launchpad.net/bugs/1921632/+attachment/5481718/+files/WifiSyslog.txt

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

Title:
  Internal Speakers Bang & Olufsen on HP Spectre X360 Convertible model
  13-aw2025na don't work at all probably because of driver missing or
  wrongly configured

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

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

[Bug 1921632] PaInfo.txt

2021-03-28 Thread Marian Klein
apport information

** Attachment added: "PaInfo.txt"
   https://bugs.launchpad.net/bugs/1921632/+attachment/5481711/+files/PaInfo.txt

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

Title:
  Internal Speakers Bang & Olufsen on HP Spectre X360 Convertible model
  13-aw2025na don't work at all probably because of driver missing or
  wrongly configured

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

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

[Bug 1921632] Lsusb-t.txt

2021-03-28 Thread Marian Klein
apport information

** Attachment added: "Lsusb-t.txt"
   
https://bugs.launchpad.net/bugs/1921632/+attachment/5481709/+files/Lsusb-t.txt

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

Title:
  Internal Speakers Bang & Olufsen on HP Spectre X360 Convertible model
  13-aw2025na don't work at all probably because of driver missing or
  wrongly configured

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

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

[Bug 1921632] ProcCpuinfoMinimal.txt

2021-03-28 Thread Marian Klein
apport information

** Attachment added: "ProcCpuinfoMinimal.txt"
   
https://bugs.launchpad.net/bugs/1921632/+attachment/5481713/+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/1921632

Title:
  Internal Speakers Bang & Olufsen on HP Spectre X360 Convertible model
  13-aw2025na don't work at all probably because of driver missing or
  wrongly configured

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

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

[Bug 1921632] Lspci-vt.txt

2021-03-28 Thread Marian Klein
apport information

** Attachment added: "Lspci-vt.txt"
   
https://bugs.launchpad.net/bugs/1921632/+attachment/5481707/+files/Lspci-vt.txt

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

Title:
  Internal Speakers Bang & Olufsen on HP Spectre X360 Convertible model
  13-aw2025na don't work at all probably because of driver missing or
  wrongly configured

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

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

[Bug 1921632] Re: Internal Speakers Bang & Olufsen on HP Spectre X360 Convertible model 13-aw2025na don't work at all probably because of driver missing or wrongly configured

2021-03-28 Thread Marian Klein
apport information

** Tags added: apport-collected hirsute

** Description changed:

  See also
  https://bugzilla.kernel.org/show_bug.cgi?id=212465
  
  Default kernel from
  https://cdimage.ubuntu.com/kubuntu/daily-live/20210327/
  and also upstream kernel 
  https://kernel.ubuntu.com/~kernel-ppa/mainline/v5.12-rc4/
  
  tested and both do not work.
+ --- 
+ ProblemType: Bug
+ ApportVersion: 2.20.11-0ubuntu61
+ Architecture: amd64
+ AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/by-path', 
'/dev/snd/controlC0', '/dev/snd/hwC0D2', '/dev/snd/pcmC0D3p', 
'/dev/snd/pcmC0D2p', '/dev/snd/pcmC0D1p', '/dev/snd/pcmC0D7c', 
'/dev/snd/pcmC0D6c', '/dev/snd/seq', '/dev/snd/timer'] failed with exit code 1:
+ CasperMD5CheckResult: pass
+ DistroRelease: Ubuntu 21.04
+ InstallationDate: Installed on 2021-03-28 (0 days ago)
+ InstallationMedia: Kubuntu 21.04 "Hirsute Hippo" - Alpha amd64 (20210326)
+ MachineType: HP HP Spectre x360 Convertible 13-aw2xxx
+ Package: linux (not installed)
+ ProcEnviron:
+  LANGUAGE=en_GB:en
+  TERM=xterm-256color
+  PATH=(custom, no user)
+  LANG=en_GB.UTF-8
+  SHELL=/bin/bash
+ ProcFB: 0 i915drmfb
+ ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.11.0-11-generic 
root=/dev/mapper/sys-root ro quiet splash vt.handoff=7
+ ProcVersionSignature: Ubuntu 5.11.0-11.12-generic 5.11.0
+ PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
+ RelatedPackageVersions:
+  linux-restricted-modules-5.11.0-11-generic N/A
+  linux-backports-modules-5.11.0-11-generic  N/A
+  linux-firmware 1.195
+ Tags:  hirsute
+ Uname: Linux 5.11.0-11-generic x86_64
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups: N/A
+ _MarkForUpload: True
+ dmi.bios.date: 12/08/2020
+ dmi.bios.release: 15.10
+ dmi.bios.vendor: AMI
+ dmi.bios.version: F.10
+ dmi.board.asset.tag: Base Board Asset Tag
+ dmi.board.name: 8709
+ dmi.board.vendor: HP
+ dmi.board.version: 31.30
+ dmi.chassis.type: 31
+ dmi.chassis.vendor: HP
+ dmi.chassis.version: Chassis Version
+ dmi.ec.firmware.release: 31.30
+ dmi.modalias: 
dmi:bvnAMI:bvrF.10:bd12/08/2020:br15.10:efr31.30:svnHP:pnHPSpectrex360Convertible13-aw2xxx:pvr:rvnHP:rn8709:rvr31.30:cvnHP:ct31:cvrChassisVersion:
+ dmi.product.family: 103C_5335KV HP Spectre
+ dmi.product.name: HP Spectre x360 Convertible 13-aw2xxx
+ dmi.product.sku: 2G2D8EA#ABU
+ dmi.sys.vendor: HP

** Attachment added: "AlsaInfo.txt"
   
https://bugs.launchpad.net/bugs/1921632/+attachment/5481702/+files/AlsaInfo.txt

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

Title:
  Internal Speakers Bang & Olufsen on HP Spectre X360 Convertible model
  13-aw2025na don't work at all probably because of driver missing or
  wrongly configured

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

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

[Bug 1921632] IwConfig.txt

2021-03-28 Thread Marian Klein
apport information

** Attachment added: "IwConfig.txt"
   
https://bugs.launchpad.net/bugs/1921632/+attachment/5481705/+files/IwConfig.txt

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

Title:
  Internal Speakers Bang & Olufsen on HP Spectre X360 Convertible model
  13-aw2025na don't work at all probably because of driver missing or
  wrongly configured

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

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

[Bug 1921632] CurrentDmesg.txt

2021-03-28 Thread Marian Klein
apport information

** Attachment added: "CurrentDmesg.txt"
   
https://bugs.launchpad.net/bugs/1921632/+attachment/5481704/+files/CurrentDmesg.txt

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

Title:
  Internal Speakers Bang & Olufsen on HP Spectre X360 Convertible model
  13-aw2025na don't work at all probably because of driver missing or
  wrongly configured

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

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

[Bug 1921632] Lspci.txt

2021-03-28 Thread Marian Klein
apport information

** Attachment added: "Lspci.txt"
   https://bugs.launchpad.net/bugs/1921632/+attachment/5481706/+files/Lspci.txt

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

Title:
  Internal Speakers Bang & Olufsen on HP Spectre X360 Convertible model
  13-aw2025na don't work at all probably because of driver missing or
  wrongly configured

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

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

[Bug 1921632] CRDA.txt

2021-03-28 Thread Marian Klein
apport information

** Attachment added: "CRDA.txt"
   https://bugs.launchpad.net/bugs/1921632/+attachment/5481703/+files/CRDA.txt

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

Title:
  Internal Speakers Bang & Olufsen on HP Spectre X360 Convertible model
  13-aw2025na don't work at all probably because of driver missing or
  wrongly configured

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

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

[Bug 1920096] Re: Cursor bleeds on the platform with Mali armsoc driver

2021-03-28 Thread Rex Tsai
** Tags added: oem-priority

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

Title:
  Cursor bleeds on the platform with Mali armsoc driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/oem-priority/+bug/1920096/+subscriptions

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

[Bug 1921650] [NEW] package lvm2 2.03.07-1ubuntu1 failed to install/upgrade: installed lvm2 package post-installation script subprocess returned error exit status 1

2021-03-28 Thread mikeit
Public bug reported:

$ sudo apt install gns3-gui gns3-server
Reading package lists... Done
Building dependency tree   
Reading state information... Done
The following additional packages will be installed:
  cpu-checker cpulimit dmeventd dynamips ibverbs-providers ipxe-qemu 
ipxe-qemu-256k-compat-efi-roms libaio1 libavahi-gobject0 libcacard0
  libdevmapper-event1.02.1 libfdt1 libgtk-vnc-2.0-0 libgvnc-1.0-0 libibverbs1 
libiscsi7 liblua5.2-0 liblvm2cmd2.03 libphodav-2.0-0
  libphodav-2.0-common libpmem1 libqt5designer5 libqt5help5 libqt5multimedia5 
libqt5multimedia5-plugins libqt5multimediagsttools5
  libqt5multimediawidgets5 libqt5sql5 libqt5sql5-sqlite libqt5test5 
libqt5websockets5 librados2 librbd1 librdmacm1 libreadline5 libslirp0
  libsmi2ldbl libspandsp2 libspice-client-glib-2.0-8 libspice-client-gtk-3.0-5 
libspice-server1 libusbredirhost1 libusbredirparser1
  libvirglrenderer1 libvirt-clients libvirt-daemon libvirt-daemon-driver-qemu 
libvirt-daemon-driver-storage-rbd libvirt-daemon-system
  libvirt-daemon-system-systemd libvirt0 libvncserver1 libwireshark-data 
libwireshark13 libwiretap10 libwsutil11 lvm2 msr-tools ovmf
  python3-pyqt5 python3-pyqt5.qtsvg python3-pyqt5.qtwebsockets python3-sip 
qemu-block-extra qemu-kvm qemu-system-common qemu-system-data
  qemu-system-gui qemu-system-x86 qemu-utils seabios 
spice-client-glib-usb-acl-helper thin-provisioning-tools ubridge vinagre vpcs
  wireshark wireshark-common wireshark-qt x11vnc
Suggested packages:
  gns3 snmp-mibs-downloader gstreamer1.0-plugins-bad libvirt-daemon-driver-lxc 
libvirt-daemon-driver-vbox libvirt-daemon-driver-xen
  libvirt-daemon-driver-storage-gluster libvirt-daemon-driver-storage-zfs numad 
auditd nfs-common open-iscsi pm-utils radvd systemtap
  zfsutils geoipupdate geoip-database-extra libjs-leaflet 
libjs-leaflet.markercluster wireshark-doc python3-pyqt5-dbg samba vde2
  debootstrap
The following NEW packages will be installed:
  cpu-checker cpulimit dmeventd dynamips gns3-gui gns3-server ibverbs-providers 
ipxe-qemu ipxe-qemu-256k-compat-efi-roms libaio1
  libavahi-gobject0 libcacard0 libdevmapper-event1.02.1 libfdt1 
libgtk-vnc-2.0-0 libgvnc-1.0-0 libibverbs1 libiscsi7 liblua5.2-0
  liblvm2cmd2.03 libphodav-2.0-0 libphodav-2.0-common libpmem1 libqt5designer5 
libqt5help5 libqt5multimedia5 libqt5multimedia5-plugins
  libqt5multimediagsttools5 libqt5multimediawidgets5 libqt5sql5 
libqt5sql5-sqlite libqt5test5 libqt5websockets5 librados2 librbd1
  librdmacm1 libreadline5 libslirp0 libsmi2ldbl libspandsp2 
libspice-client-glib-2.0-8 libspice-client-gtk-3.0-5 libspice-server1
  libusbredirhost1 libusbredirparser1 libvirglrenderer1 libvirt-clients 
libvirt-daemon libvirt-daemon-driver-qemu
  libvirt-daemon-driver-storage-rbd libvirt-daemon-system 
libvirt-daemon-system-systemd libvirt0 libvncserver1 libwireshark-data
  libwireshark13 libwiretap10 libwsutil11 lvm2 msr-tools ovmf python3-pyqt5 
python3-pyqt5.qtsvg python3-pyqt5.qtwebsockets python3-sip
  qemu-block-extra qemu-kvm qemu-system-common qemu-system-data qemu-system-gui 
qemu-system-x86 qemu-utils seabios
  spice-client-glib-usb-acl-helper thin-provisioning-tools ubridge vinagre vpcs 
wireshark wireshark-common wireshark-qt x11vnc
0 upgraded, 82 newly installed, 0 to remove and 0 not upgraded.
Need to get 71,9 MB of archives.
After this operation, 332 MB of additional disk space will be used.
Do you want to continue? [Y/n] 
Get:1 http://ppa.launchpad.net/gns3/ppa/ubuntu focal/main amd64 dynamips amd64 
0.2.21-1~focal1 [358 kB]
Get:2 http://ftp.tu-ilmenau.de/mirror/ubuntu focal/main amd64 msr-tools amd64 
1.3-3 [10,0 kB]
Get:3 http://ppa.launchpad.net/gns3/ppa/ubuntu focal/main amd64 ubridge amd64 
0.9.18-1~focal1 [33,2 kB]
Get:4 http://ppa.launchpad.net/gns3/ppa/ubuntu focal/main amd64 vpcs amd64 
1:0.8.1-1~focal1 [69,2 kB]
Get:5 http://ppa.launchpad.net/gns3/ppa/ubuntu focal/main amd64 gns3-gui amd64 
2.2.19~focal1 [7.175 kB]
Get:6 http://ftp.tu-ilmenau.de/mirror/ubuntu focal/main amd64 cpu-checker amd64 
0.7-1.1 [6.936 B]
Get:7 http://ftp.tu-ilmenau.de/mirror/ubuntu focal/universe amd64 cpulimit 
amd64 2.6-2 [17,4 kB]
Get:8 http://ftp.tu-ilmenau.de/mirror/ubuntu focal/main amd64 
libdevmapper-event1.02.1 amd64 2:1.02.167-1ubuntu1 [11,9 kB]
Get:9 http://ftp.tu-ilmenau.de/mirror/ubuntu focal/main amd64 libaio1 amd64 
0.3.112-5 [7.184 B]
Get:10 http://ftp.tu-ilmenau.de/mirror/ubuntu focal/main amd64 liblvm2cmd2.03 
amd64 2.03.07-1ubuntu1 [673 kB]
Get:11 http://ppa.launchpad.net/gns3/ppa/ubuntu focal/main amd64 gns3-server 
amd64 2.2.19~focal1 [8.768 kB]
Get:12 http://ftp.tu-ilmenau.de/mirror/ubuntu focal/main amd64 dmeventd amd64 
2:1.02.167-1ubuntu1 [35,1 kB]
Get:13 http://ftp.tu-ilmenau.de/mirror/ubuntu focal/main amd64 libibverbs1 
amd64 28.0-1ubuntu1 [53,6 kB]
Get:14 http://ftp.tu-ilmenau.de/mirror/ubuntu focal/main amd64 
ibverbs-providers amd64 28.0-1ubuntu1 [232 kB]
Get:15 http://ftp.tu-ilmenau.de/mirror/ubuntu focal-updates/main amd64 
ipxe-qemu all 

[Bug 1921649] Status changed to Confirmed

2021-03-28 Thread Ubuntu Kernel Bot
This change was made by a bot.

** Changed in: linux (Ubuntu)
   Status: New => Confirmed

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

Title:
  'Ideapad S145 Touchpad' not working at all. Not even detected after a
  fresh Ubuntu 20.10 install.

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

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

[Bug 1921649] [NEW] 'Ideapad S145 Touchpad' not working at all. Not even detected after a fresh Ubuntu 20.10 install.

2021-03-28 Thread Netto
Public bug reported:

Just installed Ubuntu 20.10 in a new Lenovo Ideapad S145 82DJBR and
touchpad does not work. It's not detected as seen here:

$ xinput list
⎡ Virtual core pointer  id=2[master pointer  (3)]
⎜   ↳ Virtual core XTEST pointerid=4[slave  pointer  (2)]
⎣ Virtual core keyboard id=3[master keyboard (2)]
↳ Virtual core XTEST keyboard   id=5[slave  keyboard (3)]
↳ Power Button  id=6[slave  keyboard (3)]
↳ Video Bus id=7[slave  keyboard (3)]
↳ Power Button  id=8[slave  keyboard (3)]
↳ Integrated Camera: Integrated C   id=10   [slave  keyboard (3)]
↳ Ideapad extra buttons id=11   [slave  keyboard (3)]
↳ AT Translated Set 2 keyboard  id=12   [slave  keyboard (3)]

ProblemType: Bug
DistroRelease: Ubuntu 20.10
Package: linux-image-5.8.0-48-generic 5.8.0-48.54
ProcVersionSignature: Ubuntu 5.8.0-48.54-generic 5.8.18
Uname: Linux 5.8.0-48-generic x86_64
ApportVersion: 2.20.11-0ubuntu50.5
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  netto  1359 F pulseaudio
CasperMD5CheckResult: skip
CurrentDesktop: ubuntu:GNOME
Date: Sun Mar 28 17:30:14 2021
InstallationDate: Installed on 2021-03-20 (7 days ago)
InstallationMedia: Ubuntu 20.10 "Groovy Gorilla" - Release amd64 (20201022)
Lsusb:
 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
 Bus 001 Device 003: ID 174f:1176 Syntek Integrated Camera
 Bus 001 Device 002: ID 0461:4d51 Primax Electronics, Ltd 0Y357C PMX-MMOCZUL 
(B) [Dell Laser Mouse]
 Bus 001 Device 004: ID 8087:0aaa Intel Corp. Bluetooth 9460/9560 Jefferson 
Peak (JfP)
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
MachineType: LENOVO 82DJ
ProcFB: 0 i915drmfb
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-48-generic 
root=UUID=8f45bc43-cd22-4cfa-83ee-4cb09fd58f0c ro quiet splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-5.8.0-48-generic N/A
 linux-backports-modules-5.8.0-48-generic  N/A
 linux-firmware1.190.3
SourcePackage: linux
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 07/22/2020
dmi.bios.release: 1.48
dmi.bios.vendor: LENOVO
dmi.bios.version: DKCN48WW
dmi.board.asset.tag: NO Asset Tag
dmi.board.name: LNVNB161216
dmi.board.vendor: LENOVO
dmi.board.version: SDK0J40688 WIN
dmi.chassis.asset.tag: NO Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Lenovo IdeaPad S145-15IIL
dmi.ec.firmware.release: 1.48
dmi.modalias: 
dmi:bvnLENOVO:bvrDKCN48WW:bd07/22/2020:br1.48:efr1.48:svnLENOVO:pn82DJ:pvrLenovoIdeaPadS145-15IIL:rvnLENOVO:rnLNVNB161216:rvrSDK0J40688WIN:cvnLENOVO:ct10:cvrLenovoIdeaPadS145-15IIL:
dmi.product.family: IdeaPad S145-15IIL
dmi.product.name: 82DJ
dmi.product.sku: LENOVO_MT_82DJ_BU_idea_FM_IdeaPad S145-15IIL
dmi.product.version: Lenovo IdeaPad S145-15IIL
dmi.sys.vendor: LENOVO

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


** Tags: amd64 apport-bug groovy

** Attachment added: "devices"
   https://bugs.launchpad.net/bugs/1921649/+attachment/5481674/+files/devices

** Summary changed:

- 'Ideappad S145 Touchpad' not working at all. Not even detected after a fresh 
Ubuntu 20.10 install.
+ 'Ideapad S145 Touchpad' not working at all. Not even detected after a fresh 
Ubuntu 20.10 install.

** Description changed:

- Just installed Ubuntu 20.10 in a new Lenovo Ideappad S145 82DJBR and
- touchpad does not work. It is not listed as seen here:
+ Just installed Ubuntu 20.10 in a new Lenovo Ideapad S145 82DJBR and
+ touchpad does not work. It's not detected as seen here:
  
  $ xinput list
  ⎡ Virtual core pointerid=2[master pointer  (3)]
  ⎜   ↳ Virtual core XTEST pointer  id=4[slave  pointer 
 (2)]
  ⎣ Virtual core keyboard   id=3[master keyboard (2)]
- ↳ Virtual core XTEST keyboard id=5[slave  
keyboard (3)]
- ↳ Power Buttonid=6[slave  
keyboard (3)]
- ↳ Video Bus   id=7[slave  
keyboard (3)]
- ↳ Power Buttonid=8[slave  
keyboard (3)]
- ↳ Integrated Camera: Integrated C id=10   [slave  
keyboard (3)]
- ↳ Ideapad extra buttons   id=11   [slave  
keyboard (3)]
- ↳ AT Translated Set 2 keyboardid=12   [slave  
keyboard (3)]
+ ↳ Virtual core XTEST keyboard id=5[slave  
keyboard (3)]
+ ↳ Power Buttonid=6[slave  
keyboard (3)]
+ ↳ Video Bus   id=7[slave  
keyboard (3)]
+ ↳ Power Button 

Re: [Bug 1919563] updated sssd with smart cards now brick systems without full cert chain

2021-03-28 Thread Karl Grindley
Marco,

Great!  This should be easy for me to test, and I’d be happy to do so.

I may be able to do a regression test to make sure the automated NSSDB
-> openssl upgrade works as well.  This would mean however that the
upgrade would need to drop the appropriate sssd.conf.d to configure the
partial_chain config option on upgrade.

I assume partial_chain will work even if the full chain is present?

Karl

> On Mar 28, 2021, at 4:15 PM, Marco Trevisan (Treviño) 
> <1919...@bugs.launchpad.net> wrote:
> 
> So, I've done some work on SSSD upstream to make this to happen:
> https://github.com/SSSD/sssd/pull/5558
> 
> With that we'll just be able to set on upgraders the option
> `certification_verification = partial_chain`, and this will just make
> the SSSD's PEM ring to work as the NSS db used to work: and so verify a
> certificate if its only its issuer is in the SSSD's CA certificates DB.
> 
> This comes with unit tests covering the case with generated
> certificates, not sure if I can personally test this with real hardware
> (for SRU purposes) though... We may still need to simulate it.
> 
> At the end, it's just as doing:
>  openssl verify -partial_chain -CAfile intermediate_CA.pem 
> intermediate_CA_issued_cert.pem
> 
> Karl, will this be enough for you?
> 
> -- 
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1919563
> 
> Title:
>  updated sssd with smart cards now brick systems without full cert
>  chain
> 
> Status in sssd package in Ubuntu:
>  New
> 
> Bug description:
>  With the latest sssd release supporting OpenSSL PKI authentication for
>  Ubuntu 20.04, the behavior between nssdb and OpenSSL has adversely
>  affected many systems which are configured for PKI only
>  authentication.
> 
>  The NSSDB implementation of sssd/p11_child ONLY requires the issuing
>  certificate to be populated to the nssdb and marked as trusted.  While
>  this may be considered a poorly configured system, it is still
>  technically valid.
> 
>  The OpenSSL implementation of the sssd/p11_child requires the FULL
>  cert chain to the root cert (which is then also trusted by the system
>  root chain) in order to allow a certificate to authenticate.
> 
>  By upgrading to the latest packages, the conversion process from nssdb
>  to the OpenSSL pam file fails to check the chain of trust, thereby
>  creating a denial of service for some systems configured to require
>  smart card/PKI authentication in the pam stack via pam_sss and
>  require_cert_auth flag.
> 
>  Note that this is a popular configuration due to many organizations
>  are required to follow NIST 800-171 (and other) security derived
>  policy.  Often policy requires PKI based authentication to be enforced
>  and all other authentication methods disabled.
> 
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/ubuntu/+source/sssd/+bug/1919563/+subscriptions

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

Title:
  updated sssd with smart cards now brick systems without full cert
  chain

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

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

[Bug 1921638] Re: installer crashes on choosing time zone

2021-03-28 Thread Erich Eickmeyer 
Thank you for reporting this bug to Ubuntu.

Ubuntu 19.04 (disco) reached end-of-life on January 23, 2020.

See this document for currently supported Ubuntu releases:
https://wiki.ubuntu.com/Releases

Please upgrade to the latest Ubuntu version and re-test. If you then
find the bug is still present in the newer Ubuntu version, please add a
comment here telling us which new version it is in.

** Changed in: ubiquity (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/1921638

Title:
  installer crashes on choosing time zone

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

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

[Bug 1921626] Re: apt install - File has unexpected size - http pipeline

2021-03-28 Thread Rossen
> I am also a bit worried about the screenshot in the referred bugreport
as that shows two different servers replying (Apache vs some python via
a proxy).

The saltstack repository is served by pulp, so client -> httpd -> pulp.
I've verified that httpd responds with correctly. Not sure why pulpcore
response is slightly larger, maybe something to do with wsgi.

> Please let me know if you can reproduce this with 2.2.2 in hirsute

I don't have that mirrored, but I have focal, and I could not reproduce.
Apt 2.0.2

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

Title:
  apt install - File has unexpected size - http pipeline

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

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

[Bug 1921647] [NEW] sudo apt-get install build-essential checkinstall Reading package lists... Done Building dependency tree Reading state information... Done checkinstall is already the newest versio

2021-03-28 Thread habil qasimov
Public bug reported:

sudo  apt-get install build-essential
Reading package lists... Done
Building dependency tree   
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 build-essential : Depends: libc6-dev but it is not going to be installed or
libc-dev
   Depends: g++ (>= 4:9.2) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

** Affects: build-essential (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/1921647

Title:
  sudo  apt-get install build-essential checkinstall Reading package
  lists... Done Building dependency treeReading state
  information... Done checkinstall is already the newest version
  (1.6.2+git20170426.d24a630-2ubuntu1). Some packages could not be
  installed. This may mean that you have requested an impossible
  situation or if you are using the unstable distribution that some
  required packages have not yet been created or been moved out of
  Incoming. The following information may help to resolve the situation:
  The following packages have unmet dependencies:  build-essential :
  Depends: libc6-dev but it is not going to be installed or
  libc-devDepends: g++ (>= 4:9.2) but it is not
  going to be installed E: Unable to correct problems, you have held
  broken packages.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/build-essential/+bug/1921647/+subscriptions

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

[Bug 1921643] Re: Thunderbolt docking station drops USB

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

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

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

** Tags added: bot-comment

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

Title:
  Thunderbolt docking station drops USB

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

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

[Bug 1871268] Re: Installation fails due to useless immediate configuration error when "Install Third-Party Drivers" is selected

2021-03-28 Thread dann frazier
** Changed in: ubuntu-cdimage
 Assignee: kevindorseymacka...@gmail.com (kevindorseymackall1) => 
(unassigned)

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

Title:
  Installation fails due to useless immediate configuration error when
  "Install Third-Party Drivers" is selected

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

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

[Bug 1919563] Re: updated sssd with smart cards now brick systems without full cert chain

2021-03-28 Thread Treviño
So, I've done some work on SSSD upstream to make this to happen:
https://github.com/SSSD/sssd/pull/5558

With that we'll just be able to set on upgraders the option
`certification_verification = partial_chain`, and this will just make
the SSSD's PEM ring to work as the NSS db used to work: and so verify a
certificate if its only its issuer is in the SSSD's CA certificates DB.

This comes with unit tests covering the case with generated
certificates, not sure if I can personally test this with real hardware
(for SRU purposes) though... We may still need to simulate it.

At the end, it's just as doing:
  openssl verify -partial_chain -CAfile intermediate_CA.pem 
intermediate_CA_issued_cert.pem

Karl, will this be enough for you?

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

Title:
  updated sssd with smart cards now brick systems without full cert
  chain

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

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

[Bug 1921644] [NEW] doc command as per man page fails due missing dependency

2021-03-28 Thread Cesar Rabak
Public bug reported:

According picolisp man page (about 50th line):

  Here you can access the reference manual

  : (doc)

   and the online documentation for most functions,

  : (doc 'vi)

However when installed through apt this fails with the info that 'w3m'
is not available.

Once apt install w3m is performed, the documentation function works like
a charm!

Please include the w3m as dependency for picolisp package.

TIA

** Affects: picolisp (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/1921644

Title:
  doc command as per man page fails due missing dependency

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

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

  1   2   >