[Bug 1887190] Re: MSFT Touchpad not working on Lenovo Legion-5 15ARH05

2020-12-21 Thread Robin Windey
@Piotr Tomaszewski (nfm886) can confirm my touchpad is the MSFT0001:00
06CB:7F28. I booted kernel 5.10.1 into recovery and then resumed regular
boot and my touchpad works.

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

Title:
  MSFT Touchpad not working on Lenovo Legion-5 15ARH05

To manage notifications about this bug go to:
https://bugs.launchpad.net/pop-os/+bug/1887190/+subscriptions

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

[Bug 1887190] Re: MSFT Touchpad not working on Lenovo Legion-5 15ARH05

2020-12-21 Thread wangjun
all the changes are extract from the master branch of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git .

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

Title:
  MSFT Touchpad not working on Lenovo Legion-5 15ARH05

To manage notifications about this bug go to:
https://bugs.launchpad.net/pop-os/+bug/1887190/+subscriptions

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

[Bug 1887190] Re: MSFT Touchpad not working on Lenovo Legion-5 15ARH05

2020-12-21 Thread wangjun
on fedora 33,with kernel 5.10.2 , i use this patch ,then touchpad work!



diff -Narup a/drivers/gpio/gpiolib-acpi.c b/drivers/gpio/gpiolib-acpi.c
--- a/drivers/gpio/gpiolib-acpi.c   2020-12-14 06:41:30.0 +0800
+++ b/drivers/gpio/gpiolib-acpi.c   2020-12-22 14:31:53.078877803 +0800
@@ -205,6 +205,68 @@ static void acpi_gpiochip_request_irqs(s
acpi_gpiochip_request_irq(acpi_gpio, event);
 }
 
+static enum gpiod_flags
+acpi_gpio_to_gpiod_flags(const struct acpi_resource_gpio *agpio, int polarity)
+{
+   /* GpioInt() implies input configuration */
+   if (agpio->connection_type == ACPI_RESOURCE_GPIO_TYPE_INT)
+   return GPIOD_IN;
+
+   switch (agpio->io_restriction) {
+   case ACPI_IO_RESTRICT_INPUT:
+   return GPIOD_IN;
+   case ACPI_IO_RESTRICT_OUTPUT:
+   /*
+* ACPI GPIO resources don't contain an initial value for the
+* GPIO. Therefore we deduce that value from the pull field
+* and the polarity instead. If the pin is pulled up we assume
+* default to be high, if it is pulled down we assume default
+* to be low, otherwise we leave pin untouched. For active low
+* polarity values will be switched. See also
+* Documentation/firmware-guide/acpi/gpio-properties.rst.
+*/
+   switch (agpio->pin_config) {
+   case ACPI_PIN_CONFIG_PULLUP:
+   return polarity == GPIO_ACTIVE_LOW ? GPIOD_OUT_LOW : 
GPIOD_OUT_HIGH;
+   case ACPI_PIN_CONFIG_PULLDOWN:
+   return polarity == GPIO_ACTIVE_LOW ? GPIOD_OUT_HIGH : 
GPIOD_OUT_LOW;
+   default:
+   break;
+   }
+   break;
+   default:
+   break;
+   }
+
+   /*
+* Assume that the BIOS has configured the direction and pull
+* accordingly.
+*/
+   return GPIOD_ASIS;
+}
+
+static struct gpio_desc *acpi_request_own_gpiod(struct gpio_chip *chip,
+   struct acpi_resource_gpio 
*agpio,
+   unsigned int index,
+   const char *label)
+{
+   int polarity = GPIO_ACTIVE_HIGH;
+   enum gpiod_flags flags = acpi_gpio_to_gpiod_flags(agpio, polarity);
+   unsigned int pin = agpio->pin_table[index];
+   struct gpio_desc *desc;
+   int ret;
+
+   desc = gpiochip_request_own_desc(chip, pin, label, polarity, flags);
+   if (IS_ERR(desc))
+   return desc;
+
+   ret = gpio_set_debounce_timeout(desc, agpio->debounce_timeout);
+   if (ret)
+   gpiochip_free_own_desc(desc);
+
+   return ret ? ERR_PTR(ret) : desc;
+}
+
 static bool acpi_gpio_in_ignore_list(const char *controller_in, int pin_in)
 {
const char *controller, *pin_str;
@@ -290,8 +352,8 @@ static acpi_status acpi_gpiochip_alloc_e
if (!handler)
return AE_OK;
 
-   desc = gpiochip_request_own_desc(chip, pin, "ACPI:Event",
-GPIO_ACTIVE_HIGH, GPIOD_IN);
+   desc = acpi_request_own_gpiod(chip, agpio, 0, "ACPI:Event");
+
if (IS_ERR(desc)) {
dev_err(chip->parent,
"Failed to request GPIO for pin 0x%04X, err %ld\n",
@@ -526,39 +588,6 @@ static bool acpi_get_driver_gpio_data(st
return false;
 }
 
-static enum gpiod_flags
-acpi_gpio_to_gpiod_flags(const struct acpi_resource_gpio *agpio)
-{
-   switch (agpio->io_restriction) {
-   case ACPI_IO_RESTRICT_INPUT:
-   return GPIOD_IN;
-   case ACPI_IO_RESTRICT_OUTPUT:
-   /*
-* ACPI GPIO resources don't contain an initial value for the
-* GPIO. Therefore we deduce that value from the pull field
-* instead. If the pin is pulled up we assume default to be
-* high, if it is pulled down we assume default to be low,
-* otherwise we leave pin untouched.
-*/
-   switch (agpio->pin_config) {
-   case ACPI_PIN_CONFIG_PULLUP:
-   return GPIOD_OUT_HIGH;
-   case ACPI_PIN_CONFIG_PULLDOWN:
-   return GPIOD_OUT_LOW;
-   default:
-   break;
-   }
-   default:
-   break;
-   }
-
-   /*
-* Assume that the BIOS has configured the direction and pull
-* accordingly.
-*/
-   return GPIOD_ASIS;
-}
-
 static int
 __acpi_gpio_update_gpiod_flags(enum gpiod_flags *flags, enum gpiod_flags 
update)
 {
@@ -664,6 +693,7 @@ static int acpi_populate_gpio_lookup(str
lookup->desc = acpi_get_gpiod(agpio->resource_source.string_ptr,
  agpio->pin_table[pin_index]);
 

[Bug 1908978] Re: ALSA: hda/realtek - Supported Dell fixed type headset

2020-12-21 Thread koba
** Also affects: linux-oem-5.10 (Ubuntu)
   Importance: Undecided
   Status: New

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

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

** Also affects: linux (Ubuntu Hirsute)
   Importance: Undecided
   Status: Incomplete

** Also affects: linux-oem-5.10 (Ubuntu Hirsute)
   Importance: Undecided
   Status: New

** Changed in: linux (Ubuntu Hirsute)
 Assignee: (unassigned) => koba (kobako)

** Changed in: linux-oem-5.10 (Ubuntu Focal)
 Assignee: (unassigned) => koba (kobako)

** Changed in: linux (Ubuntu Hirsute)
   Status: Incomplete => In Progress

** Changed in: linux-oem-5.10 (Ubuntu Focal)
   Status: New => In Progress

** Description changed:

  [Impact]
  Can't record sounds from external headset
  
  [Fix]
  
https://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git/commit/?id=150927c3674d7db4dd51a7269e01423c8c78e53b
- The patch is provided by the realtek and is archived in the sound sub-system 
tree.
+ The patch is provided by the realtek and has been archived in the sound 
sub-system tree.
  Add "Dell Precision 3650 Tower" in the fix-up table.
  
  [Test Case]
  1. install manifest
  2. plug-in an external headset
  3. try to record sounds via external headset
  
  [Where problems could occur]
  Just add a supported device.

** Tags added: oem-priority originate-from-1904542 somerville

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

Title:
  ALSA: hda/realtek - Supported Dell fixed type headset

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

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

[Bug 1908978] Re: ALSA: hda/realtek - Supported Dell fixed type headset

2020-12-21 Thread koba
** Summary changed:

- ALSA: usb-audio: Support ASUS PRIME TRX40 PRO-S
+ ALSA: hda/realtek - Supported Dell fixed type headset

** Description changed:

  [Impact]
  Can't record sounds from external headset
  
  [Fix]
- Add ASUS PRIME TRX40 PRO-S in the support list.
+ 
https://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git/commit/?id=150927c3674d7db4dd51a7269e01423c8c78e53b
+ The fix is provided by the realtek and is archived in the sound sub-system 
tree. 
+ Add "Dell Precision 3650 Tower" in the fix-up table.
  
  [Test Case]
  1. install manifest
  2. plug-in an external headset
  3. try to record sounds via external headset
  
  [Where problems could occur]
  Just add a supported device.

** Description changed:

  [Impact]
  Can't record sounds from external headset
  
  [Fix]
  
https://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git/commit/?id=150927c3674d7db4dd51a7269e01423c8c78e53b
- The fix is provided by the realtek and is archived in the sound sub-system 
tree. 
+ The patch is provided by the realtek and is archived in the sound sub-system 
tree.
  Add "Dell Precision 3650 Tower" in the fix-up table.
  
  [Test Case]
  1. install manifest
  2. plug-in an external headset
  3. try to record sounds via external headset
  
  [Where problems could occur]
  Just add a supported device.

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

Title:
  ALSA: hda/realtek - Supported Dell fixed type headset

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

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

[Bug 1908978] Missing required logs.

2020-12-21 Thread Ubuntu Kernel Bot
This bug is missing log files that will aid in diagnosing the problem.
While running an Ubuntu kernel (not a mainline or third-party kernel)
please enter the following command in a terminal window:

apport-collect 1908978

and then change the status of the bug to 'Confirmed'.

If, due to the nature of the issue you have encountered, you are unable
to run this command, please add a comment stating that fact and change
the bug status to 'Confirmed'.

This change has been made by an automated script, maintained by the
Ubuntu Kernel Team.

** Changed in: linux (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/1908978

Title:
  ALSA: hda/realtek - Supported Dell fixed type headset

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

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

[Bug 1908978] [NEW] ALSA: hda/realtek - Supported Dell fixed type headset

2020-12-21 Thread koba
Public bug reported:

[Impact]
Can't record sounds from external headset

[Fix]
https://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git/commit/?id=150927c3674d7db4dd51a7269e01423c8c78e53b
The fix is provided by the realtek and is archived in the sound sub-system 
tree. 
Add "Dell Precision 3650 Tower" in the fix-up table.

[Test Case]
1. install manifest
2. plug-in an external headset
3. try to record sounds via external headset

[Where problems could occur]
Just add a supported device.

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

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

Title:
  ALSA: hda/realtek - Supported Dell fixed type headset

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

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

[Bug 1876669] Re: Locked icon auto-arrange on desktop when using gnome-session-flashback on Ubuntu 20.04

2020-12-21 Thread Andrea Bonarini
*** This bug is a duplicate of bug 1875695 ***
https://bugs.launchpad.net/bugs/1875695

The same happened to me when upgrading from 18.04 to 20.04.
Thank you!

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

Title:
  Locked icon auto-arrange on desktop when using gnome-session-flashback
  on Ubuntu 20.04

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

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

[Bug 1903380] Re: package libpython3.9-minimal 3.9.0-1+focal3 failed to install/upgrade: trying to overwrite '/usr/lib/python3.9/typing.py', which is also in package libpython3.9-stdlib:amd64 3.9.0-1

2020-12-21 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: python3.9 (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/1903380

Title:
  package libpython3.9-minimal 3.9.0-1+focal3 failed to install/upgrade:
  trying to overwrite '/usr/lib/python3.9/typing.py', which is also in
  package libpython3.9-stdlib:amd64 3.9.0-1+focal3

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python3.9/+bug/1903380/+subscriptions

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

[Bug 1895298] Re: After tnstall the Ubuntu, I must disable the "Secure Boot " & " Fast Boot " in my sys motherboard. Why ?

2020-12-21 Thread Steve Beattie
** Information type changed from Private Security to Public Security

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

Title:
  After tnstall the Ubuntu, I must disable the "Secure Boot " & " Fast
  Boot " in my sys motherboard. Why ?

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

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

[Bug 1903495] Re: package libpython3.9-stdlib (not installed) failed to install/upgrade: trying to overwrite '/usr/lib/python3.9/typing.py', which is also in package libpython3.9-minimal:amd64 3.9.0~

2020-12-21 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: python3.9 (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/1903495

Title:
  package libpython3.9-stdlib (not installed) failed to install/upgrade:
  trying to overwrite '/usr/lib/python3.9/typing.py', which is also in
  package libpython3.9-minimal:amd64 3.9.0~rc1-1~20.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python3.9/+bug/1903495/+subscriptions

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

[Bug 1311195] Re: [touchscreen] Cannot move window by dragging title bar with default gtk decoration

2020-12-21 Thread Kai-Chuan Hsieh
** Tags added: oem-priority originate-from-1907248 somerville

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

Title:
  [touchscreen] Cannot move window by dragging title bar with default
  gtk decoration

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

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

[Bug 1899460] Re: tpm2_nvdefine without specifying the size issue

2020-12-21 Thread Ivan Hu
Test done with the proposed version, 4.1.1-1ubuntu0.20.04.1 on focal and
4.3.0-1ubuntu0.20.10 on groovy.

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

Title:
  tpm2_nvdefine without specifying the size issue

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tpm2-tools/+bug/1899460/+subscriptions

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

Re: [Bug 1908802] Re: backport-iwlwifi-dkms 7841-ubuntu2~ubuntu18.04.1: backport-iwlwifi kernel module failed to build

2020-12-21 Thread Noriko Kono
Dear Jeremy,

Hello,
Thank you for contacting me.

I think that I didn't let Windows be running. However, I need further
technical support.

This morning the laptop didn't want to boot. When I push the start switch, my 
laptop shut off after around 20 seconds.
I attempted many times, but it didn't boot.
Eventually, the laptop could boot, but it is obvious my laptop has issue.
I already contacted to Dell Linux support team, so they will help me.

Thank you so much for your kindness.
Regards,

Noriko



From: boun...@canonical.com  on behalf of Jeremy 
<1908...@bugs.launchpad.net>
Sent: December 21, 2020 3:22 PM
To: norikoora...@hotmail.com 
Subject: [Bug 1908802] Re: backport-iwlwifi-dkms 7841-ubuntu2~ubuntu18.04.1: 
backport-iwlwifi kernel module failed to build

Did you have another update program running when you got those errors?

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

Title:
  backport-iwlwifi-dkms 7841-ubuntu2~ubuntu18.04.1: backport-iwlwifi
  kernel module failed to build

Status in backport-iwlwifi-dkms package in Ubuntu:
  New

Bug description:
  Sorry, I have no idea about this.

  ProblemType: Package
  DistroRelease: Ubuntu 18.04
  Package: backport-iwlwifi-dkms 7841-ubuntu2~ubuntu18.04.1
  ProcVersionSignature: Ubuntu 5.4.0-58.64~18.04.1-generic 5.4.73
  Uname: Linux 5.4.0-58-generic x86_64
  ApportVersion: 2.20.9-0ubuntu7.2
  Architecture: amd64
  DKMSKernelVersion: 5.4.0-58-generic
  Date: Sat Dec 19 11:25:32 2020
  DistributionChannelDescriptor:
   # This is the distribution channel descriptor for the OEM CDs
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-somerville-bionic-amd64-20180608-47+beaver-three-eyed-raven+X92
  DuplicateSignature: 
dkms:backport-iwlwifi-dkms:7841-ubuntu2~ubuntu18.04.1:/var/lib/dkms/backport-iwlwifi/7841/build/backport-include/linux/skbuff.h:208:12:
 error: ‘struct sk_buff’ has no member named ‘xmit_more’
  InstallationDate: Installed on 2020-12-17 (2 days ago)
  InstallationMedia: Ubuntu 18.04 "Bionic" - Build amd64 LIVE Binary 
20180608-09:38
  PackageArchitecture: all
  PackageVersion: 7841-ubuntu2~ubuntu18.04.1
  Python3Details: /usr/bin/python3.6, Python 3.6.9, python3-minimal, 3.6.5-3
  PythonDetails: /usr/bin/python2.7, Python 2.7.17, python-minimal, 2.7.15~rc1-1
  RelatedPackageVersions:
   dpkg 1.19.0.5ubuntu2
   apt  1.6.12ubuntu0.2
  SourcePackage: backport-iwlwifi-dkms
  Title: backport-iwlwifi-dkms 7841-ubuntu2~ubuntu18.04.1: backport-iwlwifi 
kernel module failed to build
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/backport-iwlwifi-dkms/+bug/1908802/+subscriptions

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

Title:
  backport-iwlwifi-dkms 7841-ubuntu2~ubuntu18.04.1: backport-iwlwifi
  kernel module failed to build

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/backport-iwlwifi-dkms/+bug/1908802/+subscriptions

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

[Bug 1872401] Re: vmx_nm_test in ubuntu_kvm_unit_tests interrupted on X-oracle-4.15 / B-oracle-4.15 / X-KVM / B-KVM

2020-12-21 Thread Po-Hsu Lin
This issue does not exist on Oracle 4.15.0-1059.65~16.04.1 anymore.

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

Title:
  vmx_nm_test in ubuntu_kvm_unit_tests interrupted on X-oracle-4.15 /
  B-oracle-4.15 / X-KVM / B-KVM

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-kernel-tests/+bug/1872401/+subscriptions

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

[Bug 1728062] Re: MIRC color code stripping too greedy

2020-12-21 Thread Logan Rosen
This bug was fixed in the package telepathy-idle - 0.2.2-1

---
telepathy-idle (0.2.2-1) unstable; urgency=medium

  [ Simon McVittie ]
  * Remove myself from Uploaders

  [ Jonny Lamb ]
  * Remove myself from Uploaders.

  [ Laurent Bigonville ]
  * New upstream release
- Build-depend against python3 instead of python2 (Closes: #943285)
  * Explicitly use python2 for build. The unversioned python executable is
going away for Debian 11. Adjust the shebang accordingly. (Closes: #967217)
  * debian/control: Update the Vcs-* fields now that the repository moved to
salsa (Closes: #907465)
  * debian/control: Bump Standards-Version to 4.5.1 (no further changes)
  * debian/watch: Use HTTPS and file format 4
  * Remove Dafydd Harries from uploaders.
Thanks for your past work on this package! (Closes: #965395)
  * Bump debhelper campatibility version to 13

 -- Laurent Bigonville   Thu, 03 Dec 2020 11:02:56
+0100

** Changed in: telepathy-idle (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/1728062

Title:
  MIRC color code stripping too greedy

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/telepathy-idle/+bug/1728062/+subscriptions

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

[Bug 1894778] Re: Cannot probe sata disk on sata controller behind VMD: ata1.00: failed to IDENTIFY (I/O error, err_mask=0x4)

2020-12-21 Thread You-Sheng Yang
@Rex, yes, and I've updated my PPA with kernels rebuilt with that fix
cherry-picked. Tested oem-5.10 and Groovy 5.8 so far. Looks promising
and will proceed to SRU.

** Changed in: linux-oem-5.10 (Ubuntu Focal)
   Importance: Undecided => High

** Changed in: linux-oem-5.10 (Ubuntu Focal)
   Status: Confirmed => In Progress

** Changed in: linux-oem-5.10 (Ubuntu Focal)
 Assignee: (unassigned) => You-Sheng Yang (vicamo)

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

Title:
  Cannot probe sata disk on sata controller behind VMD: ata1.00: failed
  to IDENTIFY (I/O error, err_mask=0x4)

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

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

[Bug 1908969] Traceback

2020-12-21 Thread Ubuntu Foundations Team Bug Bot
Exception during installation:
Dec 22 03:21:35 ubuntu /plugininstall.py: Traceback (most recent call last):
Dec 22 03:21:35 ubuntu /plugininstall.py:   File 
"/usr/share/ubiquity/plugininstall.py", line 1767, in 
Dec 22 03:21:35 ubuntu /plugininstall.py: install.run()
Dec 22 03:21:35 ubuntu /plugininstall.py:   File 
"/usr/share/ubiquity/plugininstall.py", line 62, in wrapper
Dec 22 03:21:35 ubuntu /plugininstall.py: func(self)
Dec 22 03:21:35 ubuntu /plugininstall.py:   File 
"/usr/share/ubiquity/plugininstall.py", line 190, in run
Dec 22 03:21:35 ubuntu /plugininstall.py: self.configure_apt()
Dec 22 03:21:35 ubuntu /plugininstall.py:   File 
"/usr/share/ubiquity/plugininstall.py", line 596, in configure_apt
Dec 22 03:21:35 ubuntu /plugininstall.py: raise 
install_misc.InstallStepError(
Dec 22 03:21:35 ubuntu /plugininstall.py: 
ubiquity.install_misc.InstallStepError: AptSetup failed with code 141
Dec 22 03:21:35 ubuntu /plugininstall.py:

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

Title:
  Live installer crashes after failing to download additional packages
  from "CDROM" drive when installed from USB drive

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

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

[Bug 1908969] Re: Live installer crashes after failing to download additional packages from "CDROM" drive when installed from USB drive

2020-12-21 Thread Ubuntu Foundations Team Bug Bot
Exception during installation:
Dec 22 03:21:35 ubuntu /plugininstall.py: Traceback (most recent call last):
Dec 22 03:21:35 ubuntu /plugininstall.py:   File 
"/usr/share/ubiquity/plugininstall.py", line 1767, in 
Dec 22 03:21:35 ubuntu /plugininstall.py: install.run()
Dec 22 03:21:35 ubuntu /plugininstall.py:   File 
"/usr/share/ubiquity/plugininstall.py", line 62, in wrapper
Dec 22 03:21:35 ubuntu /plugininstall.py: func(self)
Dec 22 03:21:35 ubuntu /plugininstall.py:   File 
"/usr/share/ubiquity/plugininstall.py", line 190, in run
Dec 22 03:21:35 ubuntu /plugininstall.py: self.configure_apt()
Dec 22 03:21:35 ubuntu /plugininstall.py:   File 
"/usr/share/ubiquity/plugininstall.py", line 596, in configure_apt
Dec 22 03:21:35 ubuntu /plugininstall.py: raise 
install_misc.InstallStepError(
Dec 22 03:21:35 ubuntu /plugininstall.py: 
ubiquity.install_misc.InstallStepError: AptSetup failed with code 141
Dec 22 03:21:35 ubuntu /plugininstall.py: 


** Tags added: installer-crash

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

Title:
  Live installer crashes after failing to download additional packages
  from "CDROM" drive when installed from USB drive

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

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

[Bug 197048] Re: If nick is taken telepathy-idle fails

2020-12-21 Thread Logan Rosen
** Changed in: telepathy-idle
   Importance: Wishlist => Unknown

** Changed in: telepathy-idle
 Remote watch: freedesktop.org Bugzilla #14751 => 
gitlab.freedesktop.org/telepathy/telepathy-idle/issues #2

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

Title:
  If nick is taken telepathy-idle fails

To manage notifications about this bug go to:
https://bugs.launchpad.net/telepathy-idle/+bug/197048/+subscriptions

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

[Bug 402216] Re: Karmic: Empathy/telepathy-idle quit message is not displayed on quitting room

2020-12-21 Thread Logan Rosen
** Changed in: telepathy-idle
   Importance: Medium => Unknown

** Changed in: telepathy-idle
 Remote watch: freedesktop.org Bugzilla #22876 => 
gitlab.freedesktop.org/telepathy/telepathy-idle/issues #9

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

Title:
  Karmic:  Empathy/telepathy-idle quit message is not displayed on
  quitting room

To manage notifications about this bug go to:
https://bugs.launchpad.net/telepathy-idle/+bug/402216/+subscriptions

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

[Bug 1899363] Re: After ESM update on ubuntu 14.04.5 Samba not connecting

2020-12-21 Thread Launchpad Bug Tracker
[Expired for samba (Ubuntu) because there has been no activity for 60
days.]

** Changed in: samba (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/1899363

Title:
  After ESM update on ubuntu 14.04.5 Samba not connecting

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

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

[Bug 1893504] Re: System froze

2020-12-21 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/1893504

Title:
  System froze

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

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

[Bug 1900910] Re: [nouveau] Screen freeze after closing lid and suspend

2020-12-21 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/1900910

Title:
  [nouveau] Screen freeze after closing lid and suspend

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

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

[Bug 1900927] Re: Affinity broken due to vector space exhaustion.

2020-12-21 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/1900927

Title:
   Affinity broken due to vector space exhaustion.

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

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

[Bug 1900992] Re: twitch erreur 4000

2020-12-21 Thread Launchpad Bug Tracker
[Expired for firefox (Ubuntu) because there has been no activity for 60
days.]

** Changed in: firefox (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/1900992

Title:
  twitch erreur 4000

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

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

[Bug 1900998] Re: ubiquity graphic problems

2020-12-21 Thread Launchpad Bug Tracker
[Expired for ubiquity (Ubuntu) because there has been no activity for 60
days.]

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

Title:
  ubiquity graphic problems

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

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

[Bug 1901013] Re: failed installation on installing

2020-12-21 Thread Launchpad Bug Tracker
[Expired for ubiquity (Ubuntu) because there has been no activity for 60
days.]

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

Title:
  failed installation on installing

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

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

[Bug 1901061] Re: I'm using Ubuntu 20.04, and my super key doesn't work for any shortcuts or presses.

2020-12-21 Thread Launchpad Bug Tracker
[Expired for gnome-shell (Ubuntu) because there has been no activity for
60 days.]

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

Title:
  I'm using Ubuntu 20.04, and my super key doesn't work for any
  shortcuts or presses.

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

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

[Bug 1901064] Re: Ubuntu installer crashed 20.04

2020-12-21 Thread Launchpad Bug Tracker
[Expired for ubiquity (Ubuntu) because there has been no activity for 60
days.]

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

Title:
  Ubuntu installer crashed 20.04

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

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

[Bug 1901061] Re: I'm using Ubuntu 20.04, and my super key doesn't work for any shortcuts or presses.

2020-12-21 Thread Launchpad Bug Tracker
[Expired for mutter (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  I'm using Ubuntu 20.04, and my super key doesn't work for any
  shortcuts or presses.

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

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

[Bug 1901095] Re: install 20.10 from USB stick failed

2020-12-21 Thread Launchpad Bug Tracker
[Expired for ubiquity (Ubuntu) because there has been no activity for 60
days.]

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

Title:
  install 20.10 from USB stick failed

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

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

[Bug 1901098] Re: failed Ubuntu upgrade from 18 to 20

2020-12-21 Thread Launchpad Bug Tracker
[Expired for ubuntu-release-upgrader (Ubuntu) because there has been no
activity for 60 days.]

** Changed in: ubuntu-release-upgrader (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/1901098

Title:
  failed Ubuntu upgrade from 18 to 20

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

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

[Bug 1908167] Re: [SRU] pulseaudio: the headset-mic or heapdhone-mic could not be selected automatically if there is no internal mic

2020-12-21 Thread Kai-Chuan Hsieh
Verify on Dell CID 202010-28345

1. boot into Ubuntu groovy
2. check sound settings
3. Input Device is empty
4. plug the headset
5. Input Device is still empty
6. enable proposed channel
7. $ sudo apt install pulseaudio
8. $ apt policy pulseaudio
pulseaudio:
  Installed: 1:13.99.2-1ubuntu2.2
  Candidate: 1:13.99.2-1ubuntu2.2
  Version table:
 *** 1:13.99.2-1ubuntu2.2 500
500 http://tw.archive.ubuntu.com/ubuntu groovy-proposed/main amd64 
Packages
100 /var/lib/dpkg/status
 1:13.99.2-1ubuntu2.1 500
500 http://tw.archive.ubuntu.com/ubuntu groovy-updates/main amd64 
Packages
500 http://security.ubuntu.com/ubuntu groovy-security/main amd64 
Packages
 1:13.99.2-1ubuntu1 500
500 http://tw.archive.ubuntu.com/ubuntu groovy/main amd64 Packages
9. $ sudo reboot
10. after boot into Ubuntu groovy
11. open sound settings
12. plug headset
13. can see "Headset Microphone - Built-in-Audio" in "Input Device" field.


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

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

Title:
  [SRU] pulseaudio: the headset-mic or heapdhone-mic could not be
  selected automatically if there is no internal mic

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

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

[Bug 1908969] Re: Live installer crashes after failing to download additional packages from "CDROM" drive when installed from USB drive

2020-12-21 Thread Nick
Thanks Chris, that explains why telling it not to install additional
media did not fix the problem.

** Description changed:

  Installing Ubuntu 20.04.1, it fails upon trying to access the CD drive
  to download additional packages. But I'm installing from USB stick and
  no disc is in the CD drive.
  
  1. I can't get a terminal, I'm in a state where I only have a browser and top 
panel.
  2. ??
  3. What I expected: System to continue and finish fresh install of 20.04.1
  4. It failed and quit after the CD drive attempt.
  
- This page only lets me add one file so I added syslog, hoping it worked.
+ EDIT: I managed get the actual text of the error: 
+ "An attempt to configure apt to install additional packages from the CD 
failed."
  
  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: ubiquity 20.04.15.2
  ProcVersionSignature: Ubuntu 5.4.0-42.46-generic 5.4.44
  Uname: Linux 5.4.0-42-generic x86_64
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  ApportVersion: 2.20.11-0ubuntu27.4
  Architecture: amd64
  CasperMD5CheckMismatches: 
./pool/restricted/n/nvidia-graphics-drivers-440/nvidia-utils-440_440.100-0ubuntu0.20.04.1_amd64.deb
  CasperMD5CheckResult: skip
  CasperVersion: 1.445.1
  CurrentDesktop: ubuntu:GNOME
  Date: Tue Dec 22 16:21:38 2020
  InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed 
maybe-ubiquity quiet splash ---
  LiveMediaBuild: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
  ProcEnviron:
-  LANGUAGE=en_NZ.UTF-8
-  PATH=(custom, no user)
-  XDG_RUNTIME_DIR=
-  LANG=en_NZ.UTF-8
-  LC_NUMERIC=C.UTF-8
+  LANGUAGE=en_NZ.UTF-8
+  PATH=(custom, no user)
+  XDG_RUNTIME_DIR=
+  LANG=en_NZ.UTF-8
+  LC_NUMERIC=C.UTF-8
  SourcePackage: ubiquity
  UpgradeStatus: No upgrade log present (probably fresh install)

** Description changed:

  Installing Ubuntu 20.04.1, it fails upon trying to access the CD drive
  to download additional packages. But I'm installing from USB stick and
  no disc is in the CD drive.
  
- 1. I can't get a terminal, I'm in a state where I only have a browser and top 
panel.
+ 1. Description: Ubuntu 20.04.1 LTS
+ Release: 20.04
+ I managed get the actual text of the error: 
+ "An attempt to configure apt to install additional packages from the CD 
failed."
  2. ??
  3. What I expected: System to continue and finish fresh install of 20.04.1
  4. It failed and quit after the CD drive attempt.
  
- EDIT: I managed get the actual text of the error: 
- "An attempt to configure apt to install additional packages from the CD 
failed."
+ This page only lets me add one file so I added syslog, hoping it worked.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: ubiquity 20.04.15.2
  ProcVersionSignature: Ubuntu 5.4.0-42.46-generic 5.4.44
  Uname: Linux 5.4.0-42-generic x86_64
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  ApportVersion: 2.20.11-0ubuntu27.4
  Architecture: amd64
  CasperMD5CheckMismatches: 
./pool/restricted/n/nvidia-graphics-drivers-440/nvidia-utils-440_440.100-0ubuntu0.20.04.1_amd64.deb
  CasperMD5CheckResult: skip
  CasperVersion: 1.445.1
  CurrentDesktop: ubuntu:GNOME
  Date: Tue Dec 22 16:21:38 2020
  InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed 
maybe-ubiquity quiet splash ---
  LiveMediaBuild: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
  ProcEnviron:
   LANGUAGE=en_NZ.UTF-8
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_NZ.UTF-8
   LC_NUMERIC=C.UTF-8
  SourcePackage: ubiquity
  UpgradeStatus: No upgrade log present (probably fresh install)

** Description changed:

  Installing Ubuntu 20.04.1, it fails upon trying to access the CD drive
  to download additional packages. But I'm installing from USB stick and
  no disc is in the CD drive.
  
  1. Description: Ubuntu 20.04.1 LTS
  Release: 20.04
- I managed get the actual text of the error: 
- "An attempt to configure apt to install additional packages from the CD 
failed."
  2. ??
  3. What I expected: System to continue and finish fresh install of 20.04.1
  4. It failed and quit after the CD drive attempt.
  
  This page only lets me add one file so I added syslog, hoping it worked.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: ubiquity 20.04.15.2
  ProcVersionSignature: Ubuntu 5.4.0-42.46-generic 5.4.44
  Uname: Linux 5.4.0-42-generic x86_64
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  ApportVersion: 2.20.11-0ubuntu27.4
  Architecture: amd64
  CasperMD5CheckMismatches: 
./pool/restricted/n/nvidia-graphics-drivers-440/nvidia-utils-440_440.100-0ubuntu0.20.04.1_amd64.deb
  CasperMD5CheckResult: skip
  CasperVersion: 1.445.1
  CurrentDesktop: ubuntu:GNOME
  Date: Tue Dec 22 16:21:38 2020
  InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed 
maybe-ubiquity quiet splash ---
  LiveMediaBuild: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
  ProcEnviron:
   LANGUAGE=en_NZ.UTF-8
   PATH=(custom, no user

[Bug 1908971] [NEW] TypeError: cannot use a string pattern on a bytes-like object

2020-12-21 Thread Sod Oscarfono
Public bug reported:

user@host:~$ lsb_release -rd
Description:Ubuntu 20.10
Release:20.10
user@host:~$ apt-cache policy duplicity
duplicity:
  Installed: 0.8.11.1612-1
  Candidate: 0.8.11.1612-1
  Version table:
 *** 0.8.11.1612-1 500
500 http://nz.archive.ubuntu.com/ubuntu groovy/main amd64 Packages
100 /var/lib/dpkg/status
user@host:~$ http_proxy= AWS_ACCESS_KEY_ID=[omitted-key-id] 
AWS_SECRET_ACCESS_KEY=[omitted-key] PASSPHRASE=[omitted-encryption-password] 
duplicity --s3-use-new-style --s3-use-ia --s3-use-multiprocessing 
--no-print-statistics --verbosity 1 --exclude-device-files --exclude-filelist 
[omitted-exclude-path] --include-filelist [omitted-include-path] --exclude '**' 
/ [omitted-s3-storage-path]

TypeError: cannot use a string pattern on a bytes-like object

During handling of the above exception, another exception occurred:

Traceback (most recent call last):

...

ProblemType: Bug
DistroRelease: Ubuntu 20.10
Package: duplicity 0.8.11.1612-1
ProcVersionSignature: Ubuntu 5.8.0-33.36-lowlatency 5.8.17
Uname: Linux 5.8.0-33-lowlatency x86_64
ApportVersion: 2.20.11-0ubuntu50.2
Architecture: amd64
CasperMD5CheckResult: skip
CurrentDesktop: KDE
Date: Tue Dec 22 16:37:45 2020
InstallationDate: Installed on 2020-11-19 (33 days ago)
InstallationMedia: Kubuntu 20.10 "Groovy Gorilla" - Release amd64 (20201022)
ProcEnviron:
 LANGUAGE=en_NZ:en
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_NZ.UTF-8
 SHELL=/bin/bash
SourcePackage: duplicity
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug groovy

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

Title:
  TypeError: cannot use a string pattern on a bytes-like object

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

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

[Bug 1908969] Re: Live installer crashes after failing to download additional packages from "CDROM" drive when installed from USB drive

2020-12-21 Thread Chris Guiver
Thank you for taking the time to report this bug and helping to make
Ubuntu better.

Just an FYI, the CD refers to whatever installation media you are using,
be it a CD, DVD, HDD, SSD, thumb-drive, flash-memory-card or anything
else your machine will boot (including file served over network).

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

Title:
  Live installer crashes after failing to download additional packages
  from "CDROM" drive when installed from USB drive

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

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

[Bug 1908167] Re: [SRU] pulseaudio: the headset-mic or heapdhone-mic could not be selected automatically if there is no internal mic

2020-12-21 Thread Kai-Chuan Hsieh
Verify on Dell CID 202010-28345

1. boot into Ubuntu focal
2. check sound settings
3. Input Device is empty
4. plug the headset
5. Input Device is still empty
6. enable proposed channel
7. $ sudo apt install pulseaudio
8. $ apt policy pulseaudio
pulseaudio:
  Installed: 1:13.99.1-1ubuntu3.9
  Candidate: 1:13.99.1-1ubuntu3.9
  Version table:
 *** 1:13.99.1-1ubuntu3.9 500
500 http://archive.ubuntu.com/ubuntu focal-proposed/main amd64 Packages
100 /var/lib/dpkg/status
 1:13.99.1-1ubuntu3.8 500
500 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages
500 http://security.ubuntu.com/ubuntu focal-security/main amd64 Packages
 1:13.99.1-1ubuntu3 500
500 http://archive.ubuntu.com/ubuntu focal/main amd64 Packages
9. $ sudo reboot
10. after boot into Ubuntu focal
11. open sound settings
12. plug headset
13. can see "Headset Microphone - Built-in-Audio" in "Input Device" field.

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

Title:
  [SRU] pulseaudio: the headset-mic or heapdhone-mic could not be
  selected automatically if there is no internal mic

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

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

[Bug 1908167] Re: [SRU] pulseaudio: the headset-mic or heapdhone-mic could not be selected automatically if there is no internal mic

2020-12-21 Thread Kai-Chuan Hsieh
** Tags added: originate-from-1901838

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

Title:
  [SRU] pulseaudio: the headset-mic or heapdhone-mic could not be
  selected automatically if there is no internal mic

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

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

[Bug 1908969] [NEW] Live installer crashes after failing to download additional packages from "CDROM" drive when installed from USB drive

2020-12-21 Thread Nick
Public bug reported:

Installing Ubuntu 20.04.1, it fails upon trying to access the CD drive
to download additional packages. But I'm installing from USB stick and
no disc is in the CD drive.

1. I can't get a terminal, I'm in a state where I only have a browser and top 
panel.
2. ??
3. What I expected: System to continue and finish fresh install of 20.04.1
4. It failed and quit after the CD drive attempt.

This page only lets me add one file so I added syslog, hoping it worked.

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: ubiquity 20.04.15.2
ProcVersionSignature: Ubuntu 5.4.0-42.46-generic 5.4.44
Uname: Linux 5.4.0-42-generic x86_64
NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
ApportVersion: 2.20.11-0ubuntu27.4
Architecture: amd64
CasperMD5CheckMismatches: 
./pool/restricted/n/nvidia-graphics-drivers-440/nvidia-utils-440_440.100-0ubuntu0.20.04.1_amd64.deb
CasperMD5CheckResult: skip
CasperVersion: 1.445.1
CurrentDesktop: ubuntu:GNOME
Date: Tue Dec 22 16:21:38 2020
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed 
maybe-ubiquity quiet splash ---
LiveMediaBuild: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
ProcEnviron:
 LANGUAGE=en_NZ.UTF-8
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_NZ.UTF-8
 LC_NUMERIC=C.UTF-8
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug focal ubiquity-20.04.15.2 ubuntu

** Attachment added: "Syslog as requested"
   https://bugs.launchpad.net/bugs/1908969/+attachment/5445716/+files/syslog

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

Title:
  Live installer crashes after failing to download additional packages
  from "CDROM" drive when installed from USB drive

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

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

[Bug 1908969] Re: Live installer crashes after failing to download additional packages from "CDROM" drive when installed from USB drive

2020-12-21 Thread Nick
** Attachment added: "partman as requested"
   
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1908969/+attachment/5445724/+files/partman

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

Title:
  Live installer crashes after failing to download additional packages
  from "CDROM" drive when installed from USB drive

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

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

[Bug 1899882] Re: hdmi monitor on

2020-12-21 Thread koba
** Changed in: linux (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/1899882

Title:
  hdmi monitor on

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

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

[Bug 1908831] Re: Before finishing installation the installer shows the error ProblemType: Bug DistroRelease: Ubuntu 20.04 Package: ubiquity 20.04.9 ProcVersionSignature: Ubuntu 5.4.0-21.25-generic 5.

2020-12-21 Thread Daniel Manrique
** Project changed: canonical-identity-provider => 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/1908831

Title:
Before finishing installation the installer shows the error
  ProblemType: Bug DistroRelease: Ubuntu 20.04 Package: ubiquity 20.04.9
  ProcVersionSignature: Ubuntu 5.4.0-21.25-generic 5.4.27 Uname: Linux
  5.4.0-21-generic x86_64 NonfreeKernelModules: zfs zunicode zavl icp
  zcommon znvpair ApportVersion: 2.20.11-0ubuntu22 Architecture: amd64
  CasperVersion: 1.442 Date: Mon Apr 6 20:17:07 2020 InstallCmdLine:
  file=/cdrom/preseed/xubuntu.seed only-ubiquity initrd=/casper/initrd
  quiet splash --- LiveMediaBuild: Xubuntu 20.04 LTS "Focal Fossa" -
  Beta amd64 (20200402) ProcEnviron:  LANGUAGE=es_EC.UTF-8
  PATH=(custom, no user)  XDG_RUNTIME_DIR=  LANG=es_EC.UTF-8
  LC_NUMERIC=C.UTF-8 SourcePackage: ubiquity UpgradeStatus: No upgrade
  log present (probably fresh install)

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

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

[Bug 1908831] [NEW] Before finishing installation the installer shows the error ProblemType: Bug DistroRelease: Ubuntu 20.04 Package: ubiquity 20.04.9 ProcVersionSignature: Ubuntu 5.4.0-21.25-generic

2020-12-21 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:


Before finishing installation the installer shows the error

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: ubiquity 20.04.9
ProcVersionSignature: Ubuntu 5.4.0-21.25-generic 5.4.27
Uname: Linux 5.4.0-21-generic x86_64
NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
ApportVersion: 2.20.11-0ubuntu22
Architecture: amd64
CasperVersion: 1.442
Date: Mon Apr 6 20:17:07 2020
InstallCmdLine: file=/cdrom/preseed/xubuntu.seed only-ubiquity 
initrd=/casper/initrd quiet splash ---
LiveMediaBuild: Xubuntu 20.04 LTS "Focal Fossa" - Beta amd64 (20200402)
ProcEnviron:
 LANGUAGE=es_EC.UTF-8
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=es_EC.UTF-8
 LC_NUMERIC=C.UTF-8
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
  Before finishing installation the installer shows the error  ProblemType: Bug 
DistroRelease: Ubuntu 20.04 Package: ubiquity 20.04.9 ProcVersionSignature: 
Ubuntu 5.4.0-21.25-generic 5.4.27 Uname: Linux 5.4.0-21-generic x86_64 
NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair ApportVersion: 
2.20.11-0ubuntu22 Architecture: amd64 CasperVersion: 1.442 Date: Mon Apr 6 
20:17:07 2020 InstallCmdLine: file=/cdrom/preseed/xubuntu.seed only-ubiquity 
initrd=/casper/initrd quiet splash --- LiveMediaBuild: Xubuntu 20.04 LTS "Focal 
Fossa" - Beta amd64 (20200402) ProcEnviron:  LANGUAGE=es_EC.UTF-8  
PATH=(custom, no user)  XDG_RUNTIME_DIR=  LANG=es_EC.UTF-8  
LC_NUMERIC=C.UTF-8 SourcePackage: ubiquity UpgradeStatus: No upgrade log 
present (probably fresh install)
https://bugs.launchpad.net/bugs/1908831
You received this bug notification because you are a member of Ubuntu Bugs, 
which is subscribed to Ubuntu.

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

[Bug 1908960] Re: package emacs-gtk 1:26.3+1-1ubuntu2 failed to install/upgrade: installed emacs-gtk package post-installation script subprocess returned error exit status 1

2020-12-21 Thread Apport retracing service
** 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/1908960

Title:
  package emacs-gtk 1:26.3+1-1ubuntu2 failed to install/upgrade:
  installed emacs-gtk package post-installation script subprocess
  returned error exit status 1

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

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

[Bug 1908960] [NEW] package emacs-gtk 1:26.3+1-1ubuntu2 failed to install/upgrade: installed emacs-gtk package post-installation script subprocess returned error exit status 1

2020-12-21 Thread ElavanResu
Public bug reported:

don't have much info

ProblemType: Package
DistroRelease: Ubuntu 20.04
Package: emacs-gtk 1:26.3+1-1ubuntu2
ProcVersionSignature: Ubuntu 5.4.0-42.46-generic 5.4.44
Uname: Linux 5.4.0-42-generic x86_64
NonfreeKernelModules: lkp_Ubuntu_5_4_0_42_46_generic_73 zfs zunicode zavl icp 
zcommon znvpair
ApportVersion: 2.20.11-0ubuntu27.4
AptOrdering:
 libwebkit2gtk-4.0-37:amd64: Install
 libjavascriptcoregtk-4.0-18:amd64: Install
 gir1.2-webkit2-4.0:amd64: Install
 gir1.2-javascriptcoregtk-4.0:amd64: Install
 NULL: ConfigurePending
Architecture: amd64
CasperMD5CheckResult: skip
Date: Tue Dec 22 07:01:24 2020
ErrorMessage: installed emacs-gtk package post-installation script subprocess 
returned error exit status 1
Python3Details: /usr/bin/python3.8, Python 3.8.2, python3-minimal, 
3.8.2-0ubuntu2
PythonDetails: N/A
RelatedPackageVersions:
 dpkg 1.19.7ubuntu3
 apt  2.0.2ubuntu0.1
SourcePackage: emacs
Title: package emacs-gtk 1:26.3+1-1ubuntu2 failed to install/upgrade: installed 
emacs-gtk package post-installation script subprocess returned error exit 
status 1
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package focal

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

Title:
  package emacs-gtk 1:26.3+1-1ubuntu2 failed to install/upgrade:
  installed emacs-gtk package post-installation script subprocess
  returned error exit status 1

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

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

[Bug 1908885] Re: Fix drm_WARN_ON(common_len <= 0)

2020-12-21 Thread koba
** Changed in: linux (Ubuntu Focal)
   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/1908885

Title:
  Fix drm_WARN_ON(common_len <= 0)

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

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

[Bug 1908435] Re: Ubuntu Installation Failure With Formatted Disk

2020-12-21 Thread Timothy Quinn
I was able to get ubuntu installed successfully using ZFS by doing an
offline minimal installation both `Download Updates` and `Third Party
Software` disabled. The installation was successful and Ubuntu booted
ok. I have now switched my production desktop over to the new
installation.

I suspect the majority of the failures were due to `Third Party
Software` option (https://bugs.launchpad.net/ubuntu-
cdimage/+bug/1871268).

As its possible that I got a false positive on the bug, I suggest that
you close this ticket until I get time to do some playing around to see
if drive formatting is actually an issue with current builds of
ubiquity.

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

Title:
  Ubuntu Installation Failure With Formatted Disk

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

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

[Bug 1820859] Re: nautilus --version segfaults in g_application_impl_get_dbus_object_path

2020-12-21 Thread AES
Hello, what additional info can I provide to help diagnose the issue? I
get these segfaults sometimes right after boot. Not sure if anything is
broken though since the system works fine (aside from other
segfaults/crashes).


```
aes@pop-os:~$ sudo grep segfault /var/log/kern.log | grep nautilus
[sudo] password for aes: 
Dec 21 19:33:44 pop-os kernel: [   23.054275] nautilus[3601]: segfault at 20 ip 
7fa6d519f844 sp 7ffce8181e68 error 4 in 
libgio-2.0.so.0.6600.1[7fa6d50ee000+119000]
Dec 21 21:10:37 pop-os kernel: [   20.034278] nautilus[2479]: segfault at 20 ip 
7f460b754844 sp 7ffd1c7d5de8 error 4 in 
libgio-2.0.so.0.6600.1[7f460b6a3000+119000]
Dec 21 21:16:06 pop-os kernel: [   18.599962] nautilus[2332]: segfault at 20 ip 
7fa6e5036844 sp 7ffcdb30fe68 error 4 in 
libgio-2.0.so.0.6600.1[7fa6e4f85000+119000]
```

I also tried `nautilus --version` and it does reproduce the issue
reliably.

```
aes@pop-os:~$ uname -a
Linux pop-os 5.8.0-7630-generic #32~1606339263~20.10~61c3910-Ubuntu SMP Thu Nov 
26 00:10:35 UTC  x86_64 x86_64 x86_64 GNU/Linux
aes@pop-os:~$ apt search ^nautilus$
Sorting... Done
Full Text Search... Done
nautilus/groovy,now 1:3.38.1-1ubuntu1 amd64 [installed,automatic]
  file manager and graphical shell for GNOME
```

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

Title:
  nautilus --version segfaults in
  g_application_impl_get_dbus_object_path

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

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

[Bug 1872476] Re: Shared files are shown as folders

2020-12-21 Thread rmills
Just updated from 18.04 to 20.04, This seems to still be a bug. I have a
share that only a few files both ubuntu 20.04 and windows 10 clients
show as folders. There seems to be no reason why it's these specific
files either other than time. I copied these the day before the upgrade,
they worked fine after the copy. I did the update and with both my
windows 10 machine and other ubuntu 20.04 clients the issue remains.
Latest samba is installed 2:4.11.6+dfsg-0ubuntu1.6 confirmed SMB3 is in
use with smbstatus. Basic troubleshooting done, restarting, samba,
clients, moving files. The issue follows the files but nothing fixed the
issue. In my case files are both small images and large video files.
There are files copied at the exact same time that work fine while
others don't.

I'm assuming there are no known workarounds?

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

Title:
  Shared files are shown as folders

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

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

[Bug 1908699] Autopkgtest regression report (mesa/20.2.6-0ubuntu0.20.10.1)

2020-12-21 Thread Ubuntu SRU Bot
All autopkgtests for the newly accepted mesa (20.2.6-0ubuntu0.20.10.1) for 
groovy have finished running.
The following regressions have been reported in tests triggered by the package:

euslisp/9.27+dfsg-6 (amd64, armhf)


Please visit the excuses page listed below and investigate the failures, 
proceeding afterwards as per the StableReleaseUpdates policy regarding 
autopkgtest regressions [1].

https://people.canonical.com/~ubuntu-archive/proposed-
migration/groovy/update_excuses.html#mesa

[1] https://wiki.ubuntu.com/StableReleaseUpdates#Autopkgtest_Regressions

Thank you!

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

Title:
  New bugfix release 20.2.6

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

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

[Bug 1904369] Re: systemd 100% CPU; constantly reading service for socket activation

2020-12-21 Thread Dan Streetman
also, you likely don't want the template to be wanted by multi-
user.target:

$ cat /etc/systemd/system/rsyncd@.service
...
[Install]
WantedBy=multi-user.target

however that shouldn't cause any looping, it should only produce a
failed rsyncd@multi-user.service on bootup.

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

Title:
  systemd 100% CPU; constantly reading service for socket activation

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

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

[Bug 1908953] [NEW] Unable to install GRUB in /dev/sda : ' Executing grub-install/dev/sda' failed. This is fatal error.

2020-12-21 Thread Tommi A Vasarainen
Public bug reported:

Ubuntu installation stops on error :

Unable to install GRUB in /dev/sda : ' Executing grub-install/dev/sda'
failed. This is fatal error.

ProblemType: Bug
DistroRelease: Ubuntu 21.04
Package: ubiquity 21.04.3
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-0ubuntu55
Architecture: amd64
CasperMD5CheckResult: pass
CasperVersion: 1.456
Date: Tue Dec 22 01:58:24 2020
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed 
maybe-ubiquity quiet splash ---
LiveMediaBuild: Ubuntu 21.04 "Hirsute Hippo" - Alpha amd64 (20201221.1)
RebootRequiredPkgs:
 linux-image-5.8.0-25-generic
 linux-base
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug hirsute ubiquity-21.04.3 ubuntu

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

Title:
  Unable to install GRUB in /dev/sda : ' Executing grub-install/dev/sda'
  failed. This is fatal error.

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

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

[Bug 1904369] Re: systemd 100% CPU; constantly reading service for socket activation

2020-12-21 Thread Dan Streetman
can you provide the journal and/or a coredump of pid1 while it's showing
the problem?

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

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

Title:
  systemd 100% CPU; constantly reading service for socket activation

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

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

[Bug 1901812] Re: Error in do-release-upgrade, invalid start byte

2020-12-21 Thread Retromingent
My issue was resolved by executing "pop-upgrade release upgrade" rather
than "do-release-upgrade".  Additionally, I had to uninstall the gnome-
initial-setup package and install pop-desktop.This is not on a
System76 machine, but a custom server (Skylake generation).

User error?  Should "do-release-upgrade" have worked for PopOS?

My steps that resolved this:
1. sudo apt purge gnome-initial-setup
2. sudo apt install pop-desktop
3. pop-upgrade release upgrade

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

Title:
  Error in do-release-upgrade, invalid start byte

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

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

[Bug 1908928] Re: locales 2.27-3ubuntu1.4 enabled random locales

2020-12-21 Thread Avamander
> Are you claiming that Ubuntu somehow uncommented those locales in
/etc/locale.gen without your knowledge?

Yes, the first thing I do on new installs is only leave the two
previously mentioned locales uncommented. Always. I get annoyed waiting
for unused locales to be generated.

On this specific machine I've seen numerous locale-gen runs and this is
the first I saw where these new ones appeared.

I will post more information tomorrow, like dpkg.log of the last few
days.

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

Title:
  locales 2.27-3ubuntu1.4 enabled random locales

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

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

[Bug 1908918] Re: unable to upgrade to 20 from dual boot v18 and XP

2020-12-21 Thread Chris Guiver
Thank you for taking the time to report this bug and helping to make
Ubuntu better.

Bug reporting is primarily about finding & fixing problems thus
preventing future users from hitting the same bug.

Support sites may be more appropriate, eg.
https://answers.launchpad.net/ubuntu. You can also find help with your
problem in the support forum of your local Ubuntu community
http://loco.ubuntu.com/ or asking at https://askubuntu.com or
https://ubuntuforums.org, or for more support options please look at
https://discourse.ubuntu.com/t/community-support/709

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

Title:
  unable to upgrade to 20 from dual boot v18 and XP

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

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

[Bug 1908928] Re: locales 2.27-3ubuntu1.4 enabled random locales

2020-12-21 Thread Gunnar Hjalmarsson
Given the contents of /etc/locale.gen, generating those locales when
updating the locales package (or e.g. running "sudo locale-gen") is
expected behavior. Are you claiming that Ubuntu somehow uncommented
those locales in /etc/locale.gen without your knowledge?

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

Title:
  locales 2.27-3ubuntu1.4 enabled random locales

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

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

[Bug 1908950] [NEW] Ubuntu - installation crashes before writing grub on /dev/sda.

2020-12-21 Thread Tommi A Vasarainen
Public bug reported:

Ubuntu - installation crashes before writing GRUB on /dev/sda.

ProblemType: Bug
DistroRelease: Ubuntu 21.04
Package: ubiquity 21.04.3
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-0ubuntu55
Architecture: amd64
CasperMD5CheckResult: skip
CasperVersion: 1.456
CurrentDesktop: ubuntu:GNOME
Date: Tue Dec 22 01:02:22 2020
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed 
maybe-ubiquity quiet splash ---
LiveMediaBuild: Ubuntu 21.04 "Hirsute Hippo" - Alpha amd64 (20201221.1)
ProcEnviron:
 LANGUAGE=en_US.UTF-8
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 LC_NUMERIC=C.UTF-8
RebootRequiredPkgs:
 linux-image-5.8.0-25-generic
 linux-base
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug hirsute ubiquity-21.04.3 ubuntu

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

Title:
  Ubuntu - installation crashes before writing grub on /dev/sda.

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

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

[Bug 1860926] Re: Ubuntu 20.04 Systemd fails to configure bridged network

2020-12-21 Thread Dan Streetman
@gautier-avril I tested your exact netplan yaml and it works fine for me
with the latest package versions. This bug is fix released, so you
should open a new bug if you believe there is a new problem.

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

Title:
  Ubuntu 20.04  Systemd fails to configure bridged network

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

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

[Bug 1908770] Re: [pull-pkg] unnecessary crash report with ubuntutools.pullpkg.InvalidPullValueError in parse_pull(): Must specify --pull

2020-12-21 Thread Dan Streetman
committed fix to git: https://git.launchpad.net/ubuntu-dev-
tools/commit/?id=b30df2b22775106bf7838309d69e4d652b600296

** Also affects: ubuntu-dev-tools (Ubuntu Groovy)
   Importance: Undecided
   Status: New

** Also affects: ubuntu-dev-tools (Ubuntu Hirsute)
   Importance: Undecided
   Status: New

** Also affects: ubuntu-dev-tools (Ubuntu Focal)
   Importance: Undecided
   Status: New

** Changed in: ubuntu-dev-tools (Ubuntu Focal)
   Importance: Undecided => Low

** Changed in: ubuntu-dev-tools (Ubuntu Groovy)
   Importance: Undecided => Low

** Changed in: ubuntu-dev-tools (Ubuntu Hirsute)
   Importance: Undecided => Low

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

Title:
  [pull-pkg] unnecessary crash report with
  ubuntutools.pullpkg.InvalidPullValueError in parse_pull(): Must
  specify --pull

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-dev-tools/+bug/1908770/+subscriptions

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

[Bug 1908946] [NEW] non funziona

2020-12-21 Thread Vito Speciale
Public bug reported:

in fase di installazione alla fine è andato in crash

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: pass
CasperVersion: 1.455
CurrentDesktop: ubuntu:GNOME
Date: Mon Dec 21 23:35:27 2020
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=it_IT.UTF-8
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=it_IT.UTF-8
 LC_NUMERIC=C.UTF-8
RebootRequiredPkgs:
 linux-image-5.8.0-25-generic
 linux-base
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: ubiquity (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/1908946

Title:
  non funziona

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

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

[Bug 1908928] Re: locales 2.27-3ubuntu1.4 enabled random locales

2020-12-21 Thread Avamander
# grep -vE '^(#|$)' /etc/locale.gen
> bg_BG CP1251
> bg_BG.UTF-8 UTF-8
> cs_CZ ISO-8859-2 
> cs_CZ.UTF-8 UTF-8
> de_DE ISO-8859-1
> de_DE.UTF-8 UTF-8
> en_US ISO-8859-1
> en_US.UTF-8 UTF-8
> es_ES ISO-8859-1
> es_ES.UTF-8 UTF-8
> et_EE.UTF-8 UTF-8
> fr_FR ISO-8859-1
> fr_FR.UTF-8 UTF-8
> it_IT ISO-8859-1
> it_IT.UTF-8 UTF-8
> ja_JP.UTF-8 UTF-8
> ko_KR.UTF-8 UTF-8
> pl_PL ISO-8859-2
> pl_PL.UTF-8 UTF-8
> pt_PT ISO-8859-1
> pt_PT.UTF-8 UTF-8
> ru_RU ISO-8859-5
> ru_RU.UTF-8 UTF-8
> zh_CN GB2312
> zh_CN.UTF-8 UTF-8
> zh_TW BIG5
> zh_TW.UTF-8 UTF-8

# cat /var/lib/locales/supported.d/*
> zsh: no matches found: /var/lib/locales/supported.d/*

Keep in mind I had only "en_US.UTF-8" and "et_EE.UTF-8" enabled,
suddenly the rest were added.

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

Title:
  locales 2.27-3ubuntu1.4 enabled random locales

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

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

[Bug 1908916] Re: brcmfmac bug while going to sleep

2020-12-21 Thread Nir Yeffet
Workaround:
$ cat /etc/pm/sleep.d/20_brcmfmac 
#!/bin/sh

case "${1}" in
suspend)
rmmod brcmfmac 
;;
resume)
modprobe brcmfmac
;;
esac

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

Title:
  brcmfmac bug while going to sleep

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

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

[Bug 1908802] Re: backport-iwlwifi-dkms 7841-ubuntu2~ubuntu18.04.1: backport-iwlwifi kernel module failed to build

2020-12-21 Thread Jeremy
Did you have another update program running when you got those errors?

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

Title:
  backport-iwlwifi-dkms 7841-ubuntu2~ubuntu18.04.1: backport-iwlwifi
  kernel module failed to build

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/backport-iwlwifi-dkms/+bug/1908802/+subscriptions

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

[Bug 1887190] Re: MSFT Touchpad not working on Lenovo Legion-5 15ARH05

2020-12-21 Thread Robin Windey
Could you try to boot in recovery mode and then resume the normal boot
process? I think i have the MSFT0001:00 06CB:7F28 touchpad installed but
i'll check these days.

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

Title:
  MSFT Touchpad not working on Lenovo Legion-5 15ARH05

To manage notifications about this bug go to:
https://bugs.launchpad.net/pop-os/+bug/1887190/+subscriptions

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

Re: [Bug 1773457] Re: Full-system encryption needs to be supported out-of-the-box including /boot and should not delete other installed systems

2020-12-21 Thread Xavier Gnata
Well it's an issue indeed but the fact that no encryption is possible
without having to deal with the command line is much worst.

Le lun. 21 déc. 2020 à 22:15, Nodøn <1773...@bugs.launchpad.net> a écrit
:

> Encryption should also be possible without LVM. LVM is very good, but if
> you are using for example BTRFS, you may don't want to use both at the
> same time. Should just be an option.
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1773457
>
> Title:
>   Full-system encryption needs to be supported out-of-the-box including
>   /boot and should not delete other installed systems
>
> Status in grub2 package in Ubuntu:
>   Confirmed
> Status in ubiquity package in Ubuntu:
>   Confirmed
>
> Bug description:
>   In today's world, especially with the likes of the EU's GDPR and the
>   many security fails, Ubuntu installer needs to support full-system
>   encryption out of the box.
>
>   This means encrypting not only /home but also both root and /boot. The
>   only parts of the system that wouldn't be encrypted are the EFI
>   partition and the initial Grub bootloader, for obvious reasons.
>
>   It should also not delete other installed systems unless explicitly
>   requested.
>
>   On top of this, the previous method of encrypting data (ecryptfs) is
>   now considered buggy, and full-disk encryption is recommended as an
>   alternative. Unfortunately, the current implementation of full-disk
>   encryption wipes any existing OS such as Windows, making the
>   implementation unusable for most users.
>
>   Now, using LUKS and LVM, it is already possible to have full-disk
>   encryption (strictly, full-partition encryption because it leaves any
>   existing OS alone), while encrypting /boot. Reference:
>
>   https://help.ubuntu.com/community/ManualFullSystemEncryption
>
>   ... but with one major limitation: Grub is incorrectly changed after
>   an update affecting the kernel or Grub, so that a manual Grub update
>   is required each time this happens (this is fully covered in the
>   linked instructions).
>
>   If the incorrect Grub change is fixed, it should be (relatively)
>   simple to support full-system encryption in the installer.
>
>   Further information (2018-08-17):
>
>   The NCSC recommends, "Use LUKS/dm-crypt to provide full volume
> encryption."
>   References:
>   •
> https://blog.ubuntu.com/2018/07/30/national-cyber-security-centre-publish-ubuntu-18-04-lts-security-guide
>   • https://www.ncsc.gov.uk/guidance/eud-security-guidance-ubuntu-1804-lts
>
>   **EDIT**
>   Refer to comment #47 for an alternative version.
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/ubuntu/+source/grub2/+bug/1773457/+subscriptions
>

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

Title:
  Full-system encryption needs to be supported out-of-the-box including
  /boot and should not delete other installed systems

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

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

[Bug 1232872]

2020-12-21 Thread Patrick Smits
Hi all, I can't verify this, since I don't have access to a NAS anymore,
but I expect nothing has changed in the last two year.

Perhaps someone else can verify?

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

Title:
  [upstream] NFS / lock problem with LibreOffice wth 13.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/df-libreoffice/+bug/1232872/+subscriptions

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

[Bug 1773457] Re: Full-system encryption needs to be supported out-of-the-box including /boot and should not delete other installed systems

2020-12-21 Thread Nodøn
Encryption should also be possible without LVM. LVM is very good, but if
you are using for example BTRFS, you may don't want to use both at the
same time. Should just be an option.

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

Title:
  Full-system encryption needs to be supported out-of-the-box including
  /boot and should not delete other installed systems

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

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

[Bug 1880211] Re: Logwatch package points to wrong location for zfs utils

2020-12-21 Thread Stephen Sewell
Back in #4, Paride speculated that this would be resolved in Ubuntu >=
19.04. I did a clean install of 20.04 last week and this is still an
issue there.

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

Title:
  Logwatch package points to wrong location for zfs utils

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

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

[Bug 1908921] Re: No system tray detected by hp-systray

2020-12-21 Thread Rene Rompre
Same as above...

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

Title:
  No system tray detected by hp-systray

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

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

[Bug 1908921] Re: No system tray detected by hp-systray

2020-12-21 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

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

Title:
  No system tray detected by hp-systray

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

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

[Bug 1908941] Re: package linux-firmware 1.190.2 failed to install/upgrade: installed linux-firmware package post-installation script subprocess returned error exit status 1

2020-12-21 Thread Apport retracing service
** 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/1908941

Title:
  package linux-firmware 1.190.2 failed to install/upgrade: installed
  linux-firmware package post-installation script subprocess returned
  error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/1908941/+subscriptions

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

[Bug 1908942] Re: package initramfs-tools 0.137ubuntu12 failed to install/upgrade: installed initramfs-tools package post-installation script subprocess returned error exit status 1

2020-12-21 Thread Apport retracing service
** 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/1908942

Title:
  package initramfs-tools 0.137ubuntu12 failed to install/upgrade:
  installed initramfs-tools package post-installation script subprocess
  returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/1908942/+subscriptions

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

[Bug 1908942] [NEW] package initramfs-tools 0.137ubuntu12 failed to install/upgrade: installed initramfs-tools package post-installation script subprocess returned error exit status 1

2020-12-21 Thread Oded Arbel
Public bug reported:

during first update after installing a new copy of groovy.

ProblemType: Package
DistroRelease: Ubuntu 20.10
Package: initramfs-tools 0.137ubuntu12
ProcVersionSignature: Ubuntu 5.8.0-33.36-generic 5.8.17
Uname: Linux 5.8.0-33-generic x86_64
NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
ApportVersion: 2.20.11-0ubuntu50.3
Architecture: amd64
CasperMD5CheckResult: skip
Date: Mon Dec 21 22:30:15 2020
ErrorMessage: installed initramfs-tools package post-installation script 
subprocess returned error exit status 1
InstallationDate: Installed on 2020-12-21 (0 days ago)
InstallationMedia: Ubuntu 20.10 "Groovy Gorilla" - Release amd64 (20201022)
PackageArchitecture: all
Python3Details: /usr/bin/python3.8, Python 3.8.6, python3-minimal, 
3.8.6-0ubuntu1
PythonDetails: N/A
RelatedPackageVersions:
 dpkg 1.20.5ubuntu2
 apt  2.1.10ubuntu0.1
SourcePackage: initramfs-tools
Title: package initramfs-tools 0.137ubuntu12 failed to install/upgrade: 
installed initramfs-tools package post-installation script subprocess returned 
error exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: initramfs-tools (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package groovy

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

Title:
  package initramfs-tools 0.137ubuntu12 failed to install/upgrade:
  installed initramfs-tools package post-installation script subprocess
  returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/1908942/+subscriptions

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

[Bug 1908941] [NEW] package linux-firmware 1.190.2 failed to install/upgrade: installed linux-firmware package post-installation script subprocess returned error exit status 1

2020-12-21 Thread Oded Arbel
Public bug reported:

During update after installing a new copy of groovy.

ProblemType: Package
DistroRelease: Ubuntu 20.10
Package: linux-firmware 1.190.2
ProcVersionSignature: Ubuntu 5.8.0-33.36-generic 5.8.17
Uname: Linux 5.8.0-33-generic x86_64
NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
ApportVersion: 2.20.11-0ubuntu50.3
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  odeda  2251 F pulseaudio
CasperMD5CheckResult: skip
Date: Mon Dec 21 22:27:13 2020
Dependencies:
 
ErrorMessage: installed linux-firmware package post-installation script 
subprocess returned error exit status 1
InstallationDate: Installed on 2020-12-21 (0 days ago)
InstallationMedia: Ubuntu 20.10 "Groovy Gorilla" - Release amd64 (20201022)
IwConfig:
 lono wireless extensions.
 
 enp0s3no wireless extensions.
Lsusb:
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
 Bus 002 Device 002: ID 80ee:0021 VirtualBox USB Tablet
 Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Lsusb-t:
 /:  Bus 02.Port 1: Dev 1, Class=root_hub, Driver=ohci-pci/12p, 12M
 |__ Port 1: Dev 2, If 0, Class=Human Interface Device, Driver=usbhid, 12M
 /:  Bus 01.Port 1: Dev 1, Class=root_hub, Driver=ehci-pci/12p, 480M
MachineType: innotek GmbH VirtualBox
PackageArchitecture: all
ProcFB: 0 svgadrmfb
ProcKernelCmdLine: BOOT_IMAGE=/BOOT/ubuntu_q6eldv@/vmlinuz-5.8.0-33-generic 
root=ZFS=rpool/ROOT/ubuntu_q6eldv ro quiet splash
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
Python3Details: /usr/bin/python3.8, Python 3.8.6, python3-minimal, 
3.8.6-0ubuntu1
PythonDetails: N/A
RelatedPackageVersions: grub-pc 2.04-1ubuntu35.1
RfKill:
 
SourcePackage: initramfs-tools
Title: package linux-firmware 1.190.2 failed to install/upgrade: installed 
linux-firmware package post-installation script subprocess returned error exit 
status 1
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 12/01/2006
dmi.bios.vendor: innotek GmbH
dmi.bios.version: VirtualBox
dmi.board.name: VirtualBox
dmi.board.vendor: Oracle Corporation
dmi.board.version: 1.2
dmi.chassis.type: 1
dmi.chassis.vendor: Oracle Corporation
dmi.modalias: 
dmi:bvninnotekGmbH:bvrVirtualBox:bd12/01/2006:svninnotekGmbH:pnVirtualBox:pvr1.2:rvnOracleCorporation:rnVirtualBox:rvr1.2:cvnOracleCorporation:ct1:cvr:
dmi.product.family: Virtual Machine
dmi.product.name: VirtualBox
dmi.product.version: 1.2
dmi.sys.vendor: innotek GmbH

** Affects: initramfs-tools (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package groovy

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

Title:
  package linux-firmware 1.190.2 failed to install/upgrade: installed
  linux-firmware package post-installation script subprocess returned
  error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/1908941/+subscriptions

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

[Bug 1901089] Re: Ubuntu kernels 5.4.0-51 and 5.4.0-52 break ir-keytable loading

2020-12-21 Thread Wes Newell
As you can see there's no reference to ir-keytable running in that
kernel. Ran the same on good kernel 5.8.7 and here's a snippet from the
output of it.

Dec 21 14:04:20 mythfe0 systemd-udevd[1458]: rc3: 
/usr/lib/udev/rules.d/60-ir-keytable.rules:5 RUN '/usr/bin/ir-keytable -a 
/etc/rc_maps.cfg -s $name'
Dec 21 14:04:20 mythfe0 systemd-udevd[1458]: rc3: Running command 
"/usr/bin/ir-keytable -a /etc/rc_maps.cfg -s rc3"
Dec 21 14:04:20 mythfe0 systemd-udevd[1458]: rc3: Starting 
'/usr/bin/ir-keytable -a /etc/rc_maps.cfg -s rc3'
Dec 21 14:04:20 mythfe0 systemd-udevd[1458]: Successfully forked off '(spawn)' 
as PID 1477.
Dec 21 14:04:20 mythfe0 systemd-udevd[1464]: wakeup39: Processing device 
(SEQNUM=4086, ACTION=add)
Dec 21 14:04:20 mythfe0 systemd-udevd[1464]: value '[dmi/id]sys_vendor' is 'To 
Be Filled By O.E.M.'
Dec 21 14:04:20 mythfe0 systemd-udevd[1464]: value '[dmi/id]sys_vendor' is 'To 
Be Filled By O.E.M.'
Dec 21 14:04:20 mythfe0 systemd-udevd[1464]: wakeup39: Device (SEQNUM=4086, 
ACTION=add) processed
Dec 21 14:04:20 mythfe0 systemd-udevd[1464]: wakeup39: sd-device-monitor: 
Passed 194 byte to netlink monitor
Dec 21 14:04:20 mythfe0 systemd-udevd[1458]: rc3: '/usr/bin/ir-keytable -a 
/etc/rc_maps.cfg -s rc3'(err) '/etc/rc_keymaps/rc6_mce.toml: error: cannot 
open: No such file or directory'
Dec 21 14:04:20 mythfe0 systemd-udevd[1458]: rc3: '/usr/bin/ir-keytable -a 
/etc/rc_maps.cfg -s rc3'(err) 'Old keytable cleared'
Dec 21 14:04:20 mythfe0 systemd-udevd[1458]: rc3: '/usr/bin/ir-keytable -a 
/etc/rc_maps.cfg -s rc3'(err) 'Wrote 163 keycode(s) to driver'
Dec 21 14:04:20 mythfe0 systemd-udevd[308]: ir_nec_decoder: Device 
(SEQNUM=4089, ACTION=add) is queued
Dec 21 14:04:20 mythfe0 systemd-udevd[308]: ir_nec_decoder: sd-device-monitor: 
Passed 138 byte to netlink monitor
Dec 21 14:04:20 mythfe0 systemd-udevd[1464]: ir_nec_decoder: Processing device 
(SEQNUM=4089, ACTION=add)
Dec 21 14:04:20 mythfe0 systemd-udevd[1464]: value '[dmi/id]sys_vendor' is 'To 
Be FDec 21 14:04:20 mythfe0 systemd-udevd[1458]: rc3: 
/usr/lib/udev/rules.d/60-ir-keytable.rules:5 RUN '/usr/bin/ir-keytable -a 
/etc/rc_maps.cfg -s $name'
Dec 21 14:04:20 mythfe0 systemd-udevd[1458]: rc3: Running command 
"/usr/bin/ir-keytable -a /etc/rc_maps.cfg -s rc3"
Dec 21 14:04:20 mythfe0 systemd-udevd[1458]: rc3: Starting 
'/usr/bin/ir-keytable -a /etc/rc_maps.cfg -s rc3'
Dec 21 14:04:20 mythfe0 systemd-udevd[1458]: Successfully forked off '(spawn)' 
as PID 1477.
Dec 21 14:04:20 mythfe0 systemd-udevd[1464]: wakeup39: Processing device 
(SEQNUM=4086, ACTION=add)
Dec 21 14:04:20 mythfe0 systemd-udevd[1464]: value '[dmi/id]sys_vendor' is 'To 
Be Filled By O.E.M.'
Dec 21 14:04:20 mythfe0 systemd-udevd[1464]: value '[dmi/id]sys_vendor' is 'To 
Be Filled By O.E.M.'
Dec 21 14:04:20 mythfe0 systemd-udevd[1464]: wakeup39: Device (SEQNUM=4086, 
ACTION=add) processed
Dec 21 14:04:20 mythfe0 systemd-udevd[1464]: wakeup39: sd-device-monitor: 
Passed 194 byte to netlink monitor
Dec 21 14:04:20 mythfe0 systemd-udevd[1458]: rc3: '/usr/bin/ir-keytable -a 
/etc/rc_maps.cfg -s rc3'(err) '/etc/rc_keymaps/rc6_mce.toml: error: cannot 
open: No such file or directory'
Dec 21 14:04:20 mythfe0 systemd-udevd[1458]: rc3: '/usr/bin/ir-keytable -a 
/etc/rc_maps.cfg -s rc3'(err) 'Old keytable cleared'
Dec 21 14:04:20 mythfe0 systemd-udevd[1458]: rc3: '/usr/bin/ir-keytable -a 
/etc/rc_maps.cfg -s rc3'(err) 'Wrote 163 keycode(s) to driver'
Dec 21 14:04:20 mythfe0 systemd-udevd[308]: ir_nec_decoder: Device 
(SEQNUM=4089, ACTION=add) is queued
Dec 21 14:04:20 mythfe0 systemd-udevd[308]: ir_nec_decoder: sd-device-monitor: 
Passed 138 byte to netlink monitor
Dec 21 14:04:20 mythfe0 systemd-udevd[1464]: ir_nec_decoder: Processing device 
(SEQNUM=4089, ACTION=add)
Dec 21 14:04:20 mythfe0 systemd-udevd[1464]: value '[dmi/id]sys_vendor' is 'To 
Be Filled By O.E.M.'
Dec 21 14:04:20 mythfe0 systemd-udevd[1464]: value '[dmi/id]sys_vendor' is 'To 
Be Filled By O.E.M.'
Dec 21 14:04:20 mythfe0 systemd-udevd[1464]: ir_nec_decoder: Device 
(SEQNUM=4089, ACTION=add) processed
Dec 21 14:04:20 mythfe0 systemd-udevd[1464]: ir_nec_decoder: sd-device-monitor: 
Passed 138 byte to netlink monitor
Dec 21 14:04:20 mythfe0 systemd-udevd[1458]: rc3: '/usr/bin/ir-keytable -a 
/etc/rc_maps.cfg -s rc3'(err) 'Protocols changed to nec rc-6 '
Dec 21 14:04:20 mythfe0 systemd-udevd[1458]: rc3: Process '/usr/bin/ir-keytable 
-a /etc/rc_maps.cfg -s rc3' succeeded.
Dec 21 14:04:20 mythfe0 systemd-udevd[1458]: rc3: Device (SEQNUM=4082, 
ACTION=add) processedilled By O.E.M.'
Dec 21 14:04:20 mythfe0 systemd-udevd[1464]: value '[dmi/id]sys_vendor' is 'To 
Be Filled By O.E.M.'
Dec 21 14:04:20 mythfe0 systemd-udevd[1464]: ir_nec_decoder: Device 
(SEQNUM=4089, ACTION=add) processed
Dec 21 14:04:20 mythfe0 systemd-udevd[1464]: ir_nec_decoder: sd-device-monitor: 
Passed 138 byte to netlink monitor
Dec 21 14:04:20 mythfe0 systemd-udevd[1458]: rc3: '/usr/bin/ir-keytable -a 
/etc/rc_maps.cfg -s rc3'(err) 'Protocols change

[Bug 1887190] Re: MSFT Touchpad not working on Lenovo Legion-5 15ARH05

2020-12-21 Thread Piotr Tomaszewski
@Robin Windey (r0wi), unfortunately it does not works with my touchpad.
Tried kernel you linked on PopOS 20.10 and Ubuntu 20.04.1. Both results
are same, touchpad not works. What is yours touchpad?

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

Title:
  MSFT Touchpad not working on Lenovo Legion-5 15ARH05

To manage notifications about this bug go to:
https://bugs.launchpad.net/pop-os/+bug/1887190/+subscriptions

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

[Bug 1902976] Re: PulseAudio doesn't work when pipewire is installed (ie. KDE)

2020-12-21 Thread Bohdan
*** This bug is a duplicate of bug 1897965 ***
https://bugs.launchpad.net/bugs/1897965

It seems that if soundspeakers are connected to rear analog out, after
boot pipewire will not play sound. Either remove pipewire or unplug and
plug speakers fixes the issue

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

Title:
  PulseAudio doesn't work when pipewire is installed (ie. KDE)

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

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

[Bug 1908935] [NEW] An unresolvable problem occurred while calculating the upgrade.

2020-12-21 Thread Jim
Public bug reported:

Upgrading from 18.04 to focal fails with unresolvable problem

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: ubuntu-release-upgrader-core 1:18.04.41
ProcVersionSignature: Ubuntu 4.15.0-112.113-generic 4.15.18
Uname: Linux 4.15.0-112-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.21
Architecture: amd64
CrashDB: ubuntu
CurrentDesktop: ubuntu:GNOME
Date: Mon Dec 21 14:54:15 2020
InstallationDate: Installed on 2012-11-23 (2949 days ago)
InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Release amd64 
(20120425)
PackageArchitecture: all
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: ubuntu-release-upgrader
UpgradeStatus: Upgraded to bionic on 2020-12-21 (0 days ago)

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

Title:
  An unresolvable problem occurred while calculating the upgrade.

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

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

[Bug 1908936] [NEW] package krita-gmic (not installed) failed to install/upgrade: intentando sobreescribir `/usr/bin/gmic_krita_qt', que está también en el paquete gmic 2.9.4

2020-12-21 Thread Ed Marmolejos
Public bug reported:


Not working gmic 2.9 with Krita 3.3

ProblemType: Package
DistroRelease: Ubuntu 20.04
Package: krita-gmic (not installed)
ProcVersionSignature: Ubuntu 5.4.0-58.64-generic 5.4.73
Uname: Linux 5.4.0-58-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.14
Architecture: amd64
CasperMD5CheckResult: skip
Date: Mon Dec 21 15:59:35 2020
ErrorMessage: intentando sobreescribir `/usr/bin/gmic_krita_qt', que está 
también en el paquete gmic 2.9.4
InstallationDate: Installed on 2020-12-20 (1 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: N/A
RelatedPackageVersions:
 dpkg 1.19.7ubuntu3
 apt  2.0.2ubuntu0.2
SourcePackage: gmic
Title: package krita-gmic (not installed) failed to install/upgrade: intentando 
sobreescribir `/usr/bin/gmic_krita_qt', que está también en el paquete gmic 
2.9.4
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package focal

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

Title:
  package krita-gmic (not installed) failed to install/upgrade:
  intentando sobreescribir `/usr/bin/gmic_krita_qt', que está también en
  el paquete gmic 2.9.4

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

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

[Bug 1887190] Re: MSFT Touchpad not working on Lenovo Legion-5 15ARH05

2020-12-21 Thread albertoiNET
On Ubuntu 20.10 I installed with kernel 5.10.1 with your instructions
@Robin Windey (r0wi) and neither works touchpad

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

Title:
  MSFT Touchpad not working on Lenovo Legion-5 15ARH05

To manage notifications about this bug go to:
https://bugs.launchpad.net/pop-os/+bug/1887190/+subscriptions

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

[Bug 1908928] Re: locales 2.27-3ubuntu1.4 enabled random locales

2020-12-21 Thread Gunnar Hjalmarsson
Please show us the output of these terminal commands:

grep -vE '^(#|$)' /etc/locale.gen

cat /var/lib/locales/supported.d/*

** Package changed: langpack-locales (Ubuntu) => glibc (Ubuntu)

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

** Tags added: bionic

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

Title:
  locales 2.27-3ubuntu1.4 enabled random locales

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

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

[Bug 1805025] Re: gnome-control-center power - 'Turn off Wi-Fi to save power' label is confusing

2020-12-21 Thread Bug Watch Updater
** Changed in: gnome-control-center
   Status: Fix Released => New

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

Title:
  gnome-control-center power - 'Turn off Wi-Fi to save power' label is
  confusing

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

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

[Bug 1881109] Re: [Ubuntu 20.04] LPAR crashes in block layer under high stress. Might be triggered by scsi errors.

2020-12-21 Thread Frank Heimes
Hello Max, glad to read that.
That's what I hoped, after the significant patch set of LP 1887124 landed.
I'm closing this bug on our side, too.
Thx

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

** Changed in: ubuntu-z-systems
   Status: Incomplete => 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/1881109

Title:
  [Ubuntu 20.04] LPAR crashes in block layer under high stress. Might be
  triggered by scsi errors.

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

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

[Bug 1908932] [NEW] Kubuntu 20.04 system settings add languages window maximized at 4K UHD quickly flashes

2020-12-21 Thread Martin Bruzina
Public bug reported:

Let's try with fresh install: Kubuntu 20.04.1 with default installer
options + all packages updated, upgraded, systemsettings package version
4:5.18.4.1-0ubuntu1:

- Go to System Settings -> Regional Settings -> Language
- (I am not sure this step is necessary): add additional three languages (in my 
case cz, sk, ru)
- Maximize window at 4K UHD (3840x2160) display without any Plasma panel, the 
window occupies a whole area of the display
- Click the button Add languages...

Expected result:
- Add languages window shows languages list and after initial render stays 
static

Actual result:
- Add languages window flashes quickly, blinking indefinitely
- Just restore or resize the window to stop it

** Affects: systemsettings (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/1908932

Title:
  Kubuntu 20.04 system settings add languages window maximized at 4K UHD
  quickly flashes

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

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

[Bug 1908924] Re: Ubuntu MATE 18.04.2LTS installation from DVD crashed

2020-12-21 Thread Paul White
The following errors can be found in UbiquitySyslog.txt which was
automatically attached to this bug report:

Dec 21 16:20:00 ubuntu-mate kernel: [ 1090.387662] SQUASHFS error: zlib 
decompression failed, data probably corrupt
Dec 21 16:20:00 ubuntu-mate kernel: [ 1090.387670] SQUASHFS error: 
squashfs_read_data failed to read block 0x6ab46a25

It's possible you have a bad write to your media. If you're still having
problems please try the option to check the integrity of the image from
the installer boot menu, and if this confirms that the media is corrupt,
try re-writing and/or re-downloading it.


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

Title:
  Ubuntu MATE 18.04.2LTS installation from DVD crashed

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

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

[Bug 1908931] [NEW] Kubuntu 20.04 System Settings Online Accounts - unable to add Google account

2020-12-21 Thread Martin Bruzina
Public bug reported:

Let's try with fresh install: Kubuntu 20.04.1 with default installer
options + all packages updated, upgraded, systemsettings package version
4:5.18.4.1-0ubuntu1:

- Go to System Settings -> Online Accounts
- Click + Add new Account
- Choose Google
- Window "Web authentication with google" pops up
- Enter the email, click Next
- Enter the password, click Next
- Enter 2FA code from the authenticator, click Next

Expected result:
- Google account is added, or some sort of confirmation/error

Actual result:
- Window title with title "Web authentication with google", buttons (menu, min, 
max, close), and borders are OK
- Window content is empty (white canvas)
- Nothing happens - Google account is not added

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

** Package changed: webbrowser-app (Ubuntu) => systemsettings (Ubuntu)

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

Title:
  Kubuntu 20.04 System Settings Online Accounts - unable to add Google
  account

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

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

[Bug 1908926] Re: 2nd time

2020-12-21 Thread Paul White
The following errors can be found in UbiquitySyslog.txt which was
automatically attached to this bug report:

Dec 21 17:18:46 ubuntu-mate kernel: [  393.973918] SQUASHFS error: zlib 
decompression failed, data probably corrupt
Dec 21 17:18:46 ubuntu-mate kernel: [  393.973924] SQUASHFS error: 
squashfs_read_data failed to read block 0x6ab46a25

It's possible you have a bad write to your media. If you're still having
problems please try the option to check the integrity of the image from
the installer boot menu, and if this confirms that the media is corrupt,
try re-writing and/or re-downloading it.

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

Title:
  2nd time

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

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

[Bug 1908930] [NEW] libwebkit2gtk-4.0-37missing files brake epiphany

2020-12-21 Thread ajg
Public bug reported:

libwebkit2gtk-4.0-37 version 2.30.3-0ubuntu0.18.04.1 comes without
WebKitPluginProcess (should be under /usr/lib/x86_64-linux-
gnu/webkit2gtk-4.0). Similarly /usr/lib/x86_64-linux-
gnu/webkit2gtk-4.0/WebKitStorageProcess is missing.

If I try to follow a link to a pdf file in epiphany (epiphany-browser
3.28.1-1ubuntu1) it crashes.

** Affects: webkit2gtk (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/1908930

Title:
  libwebkit2gtk-4.0-37missing files brake epiphany

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

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

[Bug 1864927] Re: Changing default email client broken.

2020-12-21 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: systemsettings (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/1864927

Title:
  Changing default email client broken.

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

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

[Bug 1908928] [NEW] locales 2.27-3ubuntu1.4 enabled random locales

2020-12-21 Thread Avamander
Public bug reported:

The installation of locales 2.27-3ubuntu1.4 enabled random locales. This
is annoying.

apt output:

```
Generating locales (this might take a while)...
  bg_BG.CP1251... done
  bg_BG.UTF-8... done
  cs_CZ.ISO-8859-2... done
  cs_CZ.UTF-8... done
  de_DE.ISO-8859-1... done
  de_DE.UTF-8... done
  en_US.ISO-8859-1... done
  en_US.UTF-8... done
  es_ES.ISO-8859-1... done
  es_ES.UTF-8... done
  et_EE.UTF-8... done
  fr_FR.ISO-8859-1... done
  fr_FR.UTF-8... done
  it_IT.ISO-8859-1... done
  it_IT.UTF-8... done
  ja_JP.UTF-8... done
  ko_KR.UTF-8... done
  pl_PL.ISO-8859-2... done
  pl_PL.UTF-8... done
  pt_PT.ISO-8859-1... done
  pt_PT.UTF-8... done
  ru_RU.ISO-8859-5... done
  ru_RU.UTF-8... done
  zh_CN.GB2312... done
  zh_CN.UTF-8... done
  zh_TW.BIG5... done
  zh_TW.UTF-8... done
Generation complete.
```

Most of these locales were NOT previously enabled.

** Affects: langpack-locales (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/1908928

Title:
  locales 2.27-3ubuntu1.4 enabled random locales

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/langpack-locales/+bug/1908928/+subscriptions

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

[Bug 1652090] Re: System freeze while installing on Aspire ES15 ES1-533-P7T9

2020-12-21 Thread lesto
ubuntu 20.04 AND ubuntu 20.10 both still have this issue.

** Changed in: grub-installer (Ubuntu)
   Status: Invalid => Confirmed

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

Title:
  System freeze while installing on Aspire ES15 ES1-533-P7T9

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

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

[Bug 1908926] [NEW] 2nd time

2020-12-21 Thread Sakari Kangas
Public bug reported:

DVD ISO based installation crashed

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: ubiquity 18.04.14.12
ProcVersionSignature: Ubuntu 4.18.0-15.16~18.04.1-generic 4.18.20
Uname: Linux 4.18.0-15-generic i686
ApportVersion: 2.20.9-0ubuntu7.5
Architecture: i386
CasperVersion: 1.394
Date: Mon Dec 21 19:24:35 2020
InstallCmdLine: file=/cdrom/preseed/ubuntu-mate.seed boot=casper 
initrd=/casper/initrd quiet splash --- maybe-ubiquity
LiveMediaBuild: Ubuntu-MATE 18.04.2 LTS "Bionic Beaver" - Release i386 
(20190210)
ProcEnviron:
 LANGUAGE=fi_FI.UTF-8
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=fi_FI.UTF-8
 LC_NUMERIC=C.UTF-8
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: apport-bug bionic i386 ubiquity-18.04.14.12

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

Title:
  2nd time

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

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

[Bug 1895643] Re: Backport Thunderbird 78 to 20.04 LTS and 18.04 LTS

2020-12-21 Thread Martin Dünkelmann
Thunderbird 78.6 is a must
Regardless of LTS or not
https://www.mozilla.org/en-US/security/known-vulnerabilities/thunderbird/#thunderbird78.6

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

Title:
  Backport Thunderbird 78 to 20.04 LTS and 18.04 LTS

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

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

[Bug 1908639] Re: Will not authenticate to Icecast 2 server

2020-12-21 Thread Daniel Schürmann
What is the output of:

apt list libshout3

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

Title:
  Will not authenticate to Icecast 2 server

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

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

[Bug 1908921] Re: No system tray detected by hp-systray

2020-12-21 Thread Sushenjit Bandyopadhyay
** Description changed:

- I have `hp-systray -x` as one of the startup applications when I login.
+ I have hp-systray -x as one of the startup applications when I login.
  This app exits with the following error:
  
  HPLIP Status service
  No system tray detected on this system.
  Unable to start, exiting.
  
- Once logged in, if I start ``hp-systray -x` from the terminal it works
+ Once logged in, if I start hp-systray -x from the terminal it works
  fine. This started happening after updating gnome-shell-extension-
  appindicator from version 33-1 to version 33.1-0ubuntu0.20.04.1.
  
  Thanks
  
  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: gnome-shell-extension-appindicator 33.1-0ubuntu0.20.04.1
  ProcVersionSignature: Ubuntu 5.4.0-58.64-generic 5.4.73
  Uname: Linux 5.4.0-58-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27.14
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Dec 21 11:41:23 2020
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2016-06-10 (1655 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  PackageArchitecture: all
  SourcePackage: gnome-shell-extension-appindicator
  UpgradeStatus: No upgrade log present (probably fresh install)

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

Title:
  No system tray detected by hp-systray

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

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

[Bug 1908923] [NEW] touchpad isn't working

2020-12-21 Thread Yoga Bagasakthi
Public bug reported:

my touchpad isn't working

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: ubiquity (not installed)
ProcVersionSignature: Ubuntu 5.4.0-58.64-generic 5.4.73
Uname: Linux 5.4.0-58-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.14
Architecture: amd64
CasperMD5CheckResult: skip
CurrentDesktop: ubuntu:GNOME
Date: Mon Dec 21 23:54:07 2020
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed 
maybe-ubiquity quiet splash ---
InstallationDate: Installed on 2020-12-21 (0 days ago)
InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
SourcePackage: ubiquity
Symptom: installer
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug focal ubiquity-20.04.15

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

Title:
  touchpad isn't working

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

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

[Bug 1908924] [NEW] Ubuntu MATE 18.04.2LTS installation from DVD crashed

2020-12-21 Thread Sakari Kangas
Public bug reported:

The ISO was maybe  12 months old

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: ubiquity 18.04.14.12
ProcVersionSignature: Ubuntu 4.18.0-15.16~18.04.1-generic 4.18.20
Uname: Linux 4.18.0-15-generic i686
ApportVersion: 2.20.9-0ubuntu7.5
Architecture: i386
CasperVersion: 1.394
Date: Mon Dec 21 18:52:47 2020
InstallCmdLine: file=/cdrom/preseed/ubuntu-mate.seed boot=casper 
initrd=/casper/initrd quiet splash --- maybe-ubiquity
LiveMediaBuild: Ubuntu-MATE 18.04.2 LTS "Bionic Beaver" - Release i386 
(20190210)
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: apport-bug bionic i386 ubiquity-18.04.14.12 ubuntu-mate

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

Title:
  Ubuntu MATE 18.04.2LTS installation from DVD crashed

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

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

[Bug 1803604] Re: [upstream] "Send -> Document as e-mail" in Writer / Calc does not work

2020-12-21 Thread Joerg Hoffmann
It works under Ubuntu Linux 20.04 as well. Unfortunately only if you
"disable" the apparmor rules for senddoc or set it to "complain" mode.
In this mode the rules are not blocked, but they are logged.

I have not yet figured out how to functionally adjust the rule so that
it also works in "enforce" mode.

Maybe someone knows better about this.

The rule can be put into complain mode with the following command (at
your own risk).

aa-complain usr.lib.libreoffice.program.senddoc

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

Title:
  [upstream] "Send -> Document as e-mail" in Writer / Calc does not work

To manage notifications about this bug go to:
https://bugs.launchpad.net/df-libreoffice/+bug/1803604/+subscriptions

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

  1   2   3   >