[Bug 1916250] Re: gir1.2-signon-2.0 needs to declare replace on older releases (Groovy2Hirsute)

2021-10-14 Thread Brian Murray
I was able to recreate this when upgrading from Focal to Hirsute so this
still seems worth fixing.

** Changed in: libsignon-glib (Ubuntu)
   Status: New => In Progress

** Changed in: libsignon-glib (Ubuntu)
 Assignee: (unassigned) => Brian Murray (brian-murray)

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

Title:
  gir1.2-signon-2.0 needs to declare replace on older releases
  (Groovy2Hirsute)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libsignon-glib/+bug/1916250/+subscriptions


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

[Bug 1947203] [NEW] Snap applications cannot start

2021-10-14 Thread Tamas Papp
Public bug reported:

Snap application did not start until app was reinstalled with 'snap
remove' + 'snap install'.

Two examples:

~$ lxc ls
cannot update snap namespace: open /proc/5482/cgroup: permission denied
snap-update-ns failed with code 1

brave 
cannot update snap namespace: open /proc/5658/cgroup: permission denied
snap-update-ns failed with code 1

ProblemType: Bug
DistroRelease: Ubuntu 21.10
Package: snapd 2.53+21.10ubuntu1
ProcVersionSignature: Ubuntu 5.13.0-19.19-generic 5.13.14
Uname: Linux 5.13.0-19-generic x86_64
NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
ApportVersion: 2.20.11-0ubuntu70
Architecture: amd64
CasperMD5CheckResult: unknown
Date: Thu Oct 14 23:02:34 2021
InstallationDate: Installed on 2020-12-31 (287 days ago)
InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
SourcePackage: snapd
UpgradeStatus: Upgraded to impish on 2021-01-02 (285 days ago)

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


** Tags: amd64 apport-bug impish

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

Title:
  Snap applications cannot start

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


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

[Bug 1942929] Re: [SRU] ubuntu-advantage-tools (27.2.2 -> 27.3) Xenial, Bionic, Focal, Hirsute

2021-10-14 Thread Steve Langasek
Thanks, your responses to the previous two comments are satisfactory and
I don't think changes are needed for this SRU for those points.

+# We should only perform this check on UA version that have the
+# ua-messaging.timer: 27.0 until 27.2. This will also guarantee
+# that on 27.3 and forward, we will not run this logic.
+if dpkg --compare-versions "$PREVIOUS_PKG_VER" ge-nl "27.0~"; then
+if dpkg --compare-versions "$PREVIOUS_PKG_VER" lt-nl "27.3~"; then
+if [ -x "/usr/bin/deb-systemd-helper" ]; then
+if [ -d /run/systemd/system ]; then
+if ! deb-systemd-helper --quiet was-enabled 
$OLD_MESSAGING_TIMER; then

This could be written without all the nesting as:
if dpkg --compare-versions "$PREVIOUS_PKG_VER" lt "27.0~" \
   || dpkg --compare-versions "$PREVIOUS_PKG_VER" ge "27.3~"; then
return
fi
if [ -x "/usr/bin/deb-systemd-helper" ] && [ -d /run/systemd/system ] \
   && ! deb-systemd-helper --quiet was-enabled $OLD_MESSAGING_TIMER; then

Under what circumstances would deb-systemd-helper not be present?  init-
system-helpers is part of the minimal task from trusty onwards; it is
Essential: yes from bionic onwards; and ubuntu-advantage-tools itself
could reasonably declare a dependency on it.

What is the expected behavior if we don't have a running systemd (such
as in a chroot, and /run/systemd/system is not present)?  Why are you
short-circuiting in this case, rather than calling deb-systemd-helper
and letting it handle these cases?

Also, for some reason you are calling deb-systemd-helper *enable*, not
disable?

I think this should be reduced to:

if ! deb-systemd-helper --quiet was-enabled $OLD_MESSAGING_TIMER; then
deb-systemd-helper disable $UA_TIMER_NAME > /dev/null 2>&1 || true
systemctl stop $UA_TIMER_NAME > /dev/null 2>&1 || true
fi

the other checks are either superfluous, or actively harmful.

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

Title:
  [SRU] ubuntu-advantage-tools (27.2.2 -> 27.3) Xenial, Bionic, Focal,
  Hirsute

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


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

Re: [Bug 1813052] Re: who returns no results

2021-10-14 Thread Anthony Godshall
It was fixed by pinning versions in Ubuntu 16.04.

It only just recurred in Ubuntu 20.04.

When I'm back in the office I will see if I can identify the versions
affected and whether rolling back packages fixed it again.


On Wed, Jun 30, 2021, 4:20 PM Dan Streetman <1813...@bugs.launchpad.net>
wrote:

> please reopen if this is still an issue
>
> ** Changed in: systemd (Ubuntu)
>Status: New => Invalid
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1813052
>
> Title:
>   who returns no results
>
> To manage notifications about this bug go to:
>
> https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1813052/+subscriptions
>

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

Title:
  who returns no results

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


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

[Bug 1873565] Re: issue with TLS 1.2 session ticket handling as client during resumption

2021-10-14 Thread Dani Llewellyn
There's quite a lot that doesn't apply cleanly against the source in
bionic. I don't think I'm able to work through the issues with it
safely.

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

Title:
  issue with TLS 1.2 session ticket handling as client during resumption

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


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

[Bug 1933005] Re: Error on standard Ubuntu Server install

2021-10-14 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: gnome-boxes (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/1933005

Title:
  Error on standard Ubuntu Server install

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


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

[Bug 1927343] Re: New upstream version 3.3.1 of rsplib

2021-10-14 Thread Brian Murray
This package is not available in Debian so could use updating in Ubuntu
directly. Let's try and get this done for 22.04.

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

Title:
  New upstream version 3.3.1 of rsplib

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


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

[Bug 1947152] Re: [Impish] D-Bus security issue?

2021-10-14 Thread Seth Arnold
My inclination is to treat these fixes as hardening steps rather than
security fixes.

Thanks

** Information type changed from Private Security to Public Security

** Changed in: power-profiles-daemon (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/1947152

Title:
  [Impish] D-Bus security issue?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/power-profiles-daemon/+bug/1947152/+subscriptions


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

[Bug 1890491] Re: A pacemaker node fails monitor (probe) and stop /start operations on a resource because it returns "rc=189

2021-10-14 Thread Dan Bungert
Hi @niedbalski,

Were you still interested in SRUing this?

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

Title:
  A pacemaker node fails monitor (probe) and stop /start operations on a
  resource because it returns "rc=189

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


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

[Bug 1922884] Re: transmission-gtk segfault (core dumped)

2021-10-14 Thread fuomag
Github issue for this bug
https://github.com/transmission/transmission/issues/1543

** Bug watch added: github.com/transmission/transmission/issues #1543
   https://github.com/transmission/transmission/issues/1543

** Changed in: transmission (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/1922884

Title:
  transmission-gtk segfault (core dumped)

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


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

[Bug 1947046] Re: EFI stub: ERROR: FIRMWARE BUG: kernel image not aligned on 64k boundary

2021-10-14 Thread Launchpad Bug Tracker
** Merge proposal linked:
   https://code.launchpad.net/~dannf/grub/+git/grub/+merge/410246

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

Title:
  EFI stub: ERROR: FIRMWARE BUG: kernel image not aligned on 64k
  boundary

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


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

[Bug 1947200] [NEW] [i965] enable Gallium3D crocus driver

2021-10-14 Thread Benjamin
Public bug reported:

Starting with Mesa 21.2 an alternative driver for Intel hardware for
Gen4 through Gen7 is available that is based on Gallium3D.

It provides new features (like the Gallium Nine state tracker) and
improved performance in some scenarios. Since the driver is still
experimental, it is no enabled by default but can be selected by setting
the

MESA_LOADER_DRIVER_OVERRIDE=crocus

environment variable.

Ubuntu does not enable the driver in it's mesa build, when selected I
will just get this error message instead:

$ MESA_LOADER_DRIVER_OVERRIDE=crocus glxinfo
libGL error: MESA-LOADER: failed to open crocus: /usr/lib/dri/crocus_dri.so: 
cannot open shared object file: No such file or directory (search paths 
/usr/lib/x86_64-linux-gnu/dri:\$${ORIGIN}/dri:/usr/lib/dri, suffix _dri)
libGL error: failed to load driver: crocus
libGL error: MESA-LOADER: failed to open crocus: /usr/lib/dri/crocus_dri.so: 
cannot open shared object file: No such file or directory (search paths 
/usr/lib/x86_64-linux-gnu/dri:\$${ORIGIN}/dri:/usr/lib/dri, suffix _dri)
libGL error: failed to load driver: crocus


This is with Mesa 21.2.2 - libgl1-mesa-dri (21.2.2-1ubuntu1)

** Affects: mesa (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/1947200

Title:
  [i965] enable Gallium3D crocus driver

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


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

[Bug 1756238] Re: gdebi-gtk broken in 18.04 error: unable to read filedescriptor flags

2021-10-14 Thread Ubuntu Foundations Team Bug Bot
The attachment "Patch to drop ubuntu-specific hack from gdebi because it
is not needed any more" seems to be a debdiff.  The ubuntu-sponsors team
has been subscribed to the bug report so that they can review and
hopefully sponsor the debdiff.  If the attachment isn't a patch, please
remove the "patch" flag from the attachment, remove the "patch" tag, and
if you are member of the ~ubuntu-sponsors, unsubscribe the team.

[This is an automated message performed by a Launchpad user owned by
~brian-murray, for any issue please contact him.]

** Tags added: patch

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

Title:
  gdebi-gtk broken in 18.04 error: unable to read filedescriptor flags

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


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

[Bug 1898005] Re: gnome-shell crashed with SIGABRT in st_bin_destroy: assertion failed: (priv->child == NULL) called from DesktopManager::_destroyDesktopIcons() [desktopManager.js:234]

2021-10-14 Thread Brian Murray
I sponsored the patch in comment #28 after updating the changelog as
some new versions of that package came out.

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

Title:
  gnome-shell crashed with SIGABRT in st_bin_destroy: assertion failed:
  (priv->child == NULL) called from
  DesktopManager::_destroyDesktopIcons() [desktopManager.js:234]

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


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

[Bug 1898005] Re: gnome-shell crashed with SIGABRT in st_bin_destroy: assertion failed: (priv->child == NULL) called from DesktopManager::_destroyDesktopIcons() [desktopManager.js:234]

2021-10-14 Thread Brian Murray
$ dput 
gnome-shell-extension-desktop-icons_20.04.0-3\~ubuntu20.04.4_source.changes 
Trying to upload package to ubuntu
Checking signature on .changes
gpg: 
/tmp/pkgs/focal/gnome-shell-extension-desktop-icons_20.04.0-3~ubuntu20.04.4_source.changes:
 Valid signature from 1E918B66765B3E31
Checking signature on .dsc
gpg: 
/tmp/pkgs/focal/gnome-shell-extension-desktop-icons_20.04.0-3~ubuntu20.04.4.dsc:
 Valid signature from 1E918B66765B3E31
Uploading to ubuntu (via ftp to upload.ubuntu.com):
  Uploading gnome-shell-extension-desktop-icons_20.04.0-3~ubuntu20.04.4.dsc: 
done.
  Uploading 
gnome-shell-extension-desktop-icons_20.04.0-3~ubuntu20.04.4.debian.tar.xz: 
done.  
  Uploading 
gnome-shell-extension-desktop-icons_20.04.0-3~ubuntu20.04.4_source.buildinfo: 
done.  
  Uploading 
gnome-shell-extension-desktop-icons_20.04.0-3~ubuntu20.04.4_source.changes: 
done.
Successfully uploaded packages.

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

Title:
  gnome-shell crashed with SIGABRT in st_bin_destroy: assertion failed:
  (priv->child == NULL) called from
  DesktopManager::_destroyDesktopIcons() [desktopManager.js:234]

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


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

[Bug 1946499] Re: installation of deb-packages with gdebi-gtk shows "dpkg: error: unable to read filedescriptor flags for : Bad file descriptor" in gdebi t

2021-10-14 Thread Ubuntu Foundations Team Bug Bot
The attachment "Patch to drop ubuntu-specific hack from gdebi because it
is not needed any more" seems to be a debdiff.  The ubuntu-sponsors team
has been subscribed to the bug report so that they can review and
hopefully sponsor the debdiff.  If the attachment isn't a patch, please
remove the "patch" flag from the attachment, remove the "patch" tag, and
if you are member of the ~ubuntu-sponsors, unsubscribe the team.

[This is an automated message performed by a Launchpad user owned by
~brian-murray, for any issue please contact him.]

** Tags added: patch

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

Title:
  installation of deb-packages with gdebi-gtk shows "dpkg: error: unable
  to read filedescriptor flags for : Bad file descriptor" in gdebi terminal, package is not
  installed

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


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

[Bug 1947099] Re: ipconfig does not honour user-requested timeouts in some cases

2021-10-14 Thread Khaled El Mously
For some background info, this issue is affecting one of the instance
types of a cloud partner. The instance has 18 physical ethernet
interfaces (bonded), but only one of which has a media connection. On
boot-up, ipconfig is called to do DHCP for all 18 devices. 17 of them
fail to send a DHCP request (because no media is connected), and so each
one ends up taking 10 seconds, even though the user-specified timeout
for each interface was only 2. This delays the entire boot-up sequence
by about 3 minutes.

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

Title:
  ipconfig does not honour user-requested timeouts in some cases

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


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

[Bug 1903548] Re: nauty-biplabg gives "sorry, this program doesn't support digraphs yet"

2021-10-14 Thread William Wilson
@profzoom could you update the SRU template [Test Case] section with
information on what a successful run after updating the package would
look like? I applied your patch but I still see "Sorry, this program
doesn't support digraphs yet."

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

Title:
  nauty-biplabg gives "sorry, this program doesn't support digraphs yet"

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


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

[Bug 1900851] Re: [SRU] Cannot Create Port with Fixed IP Address

2021-10-14 Thread Tiago Pasqualini da Silva
Hi Mateusz and JP,

This has been fixed and released through another bug:
https://bugs.launchpad.net/cloud-archive/+bug/1941048

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

Title:
  [SRU] Cannot Create Port with Fixed IP Address

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-archive/+bug/1900851/+subscriptions


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

[Bug 1911432] Re: [SRU] wslu 3.2.1-0ubuntu1.1 to focal

2021-10-14 Thread Brian Murray
Such a large version bump would require approval from the Ubuntu SRU
team. The best way to discuss this issue is on the ubuntu-release
mailing list. Could you please start a conversation about this there?
Thanks in advance.

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

Title:
  [SRU] wslu 3.2.1-0ubuntu1.1 to focal

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


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

[Bug 1126858]

2021-10-14 Thread Lajo-9
Using LO 7.1.6.2, this is also a problem for me. If show track-changes
is on, search-and-replace will find text in deleted text, replace it
with NON-DELETED replacement text, and can then start over, replacing it
once again.

As a result, search-and-replace is effectively unusable when track-
changes are shown (something that I as a user can only learn the hard
way). IMHO, the importance is higher than the current setting of
"normal".

Two possible solutions were mentioned in comment 19:

(1) Writer should not find search strings in deleted text at all
(meaning text deleted in Track Changes mode)

Or:

(2) Writer still finds search strings in all text (including deleted
text in Track Changes mode) and also replaces them, but replaced text
should be flagged as deleted.

A possible third could be:

(3) In search-and-replace mode, deleted text is not found (i.e., option
1 in this case), while in search-only mode, deleted text is found if
track-changes are shown (i.e., option 2 in this case).

The advantage of option 3 is that it is still possible to search in all
the text that is seen on the screen. But I have no problems going for
the most simple solution: Option 1.


Version: 7.1.6.2 (x64) / LibreOffice Community
Build ID: 0e133318fcee89abacd6a7d077e292f1145735c3
CPU threads: 4; OS: Windows 10.0 Build 18363; UI render: Skia/Raster; VCL: win
Locale: da-DK (da_DK); UI: da-DK
Calc: threaded

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

Title:
  [upstream] Search and replace, with tracked changes on, changing only
  format of text, causes Writer to hang

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


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

[Bug 1947061] Re: En el proceso de instalación reporta error grave en la creación del gl GRUB

2021-10-14 Thread Seth Arnold
** Information type changed from Private Security to Public

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

Title:
  En el proceso de instalación reporta error grave en la creación del gl
  GRUB

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


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

Re: [Bug 1871306] Re: [SRU] No sound from internal card chtmax98090 (missing UCM2 files in alsa-ucm-conf)

2021-10-14 Thread Gabriele Tettamanzi
Last time I tested it, the bug wasn't fixed yet.

Gabriele

Il Gio 14 Ott 2021, 21:45 Brian Murray <1871...@bugs.launchpad.net> ha
scritto:

> Based off the bug comments its not clear to me if the debdiff for Focal
> actually ended up resolving the issue for people. Additionally, the
> debdiff is rather out of date as there have been a couple of SRUs of
> alsa-ucm-conf since it was created subsequently I'm unsubscribing the
> sponsors team. However, if an updated debdiff is created feel free to
> subscribe the sponsors team.
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1871306
>
> Title:
>   [SRU] No sound from internal card chtmax98090 (missing UCM2 files in
>   alsa-ucm-conf)
>
> Status in OEM Priority Project:
>   New
> Status in alsa-ucm-conf package in Ubuntu:
>   Fix Released
> Status in alsa-ucm-conf source package in Focal:
>   In Progress
> Status in alsa-ucm-conf source package in Groovy:
>   Won't Fix
>
> Bug description:
>   [Impact]
>   There is no ucm for ASUS C300 in the 20.04 and 20.10, as a result,
>   the audio doesn't work on this machine after installing the 20.04 or
>   20.10.
>
>   [Fix]
>   The ucm files for this machine are in the alsa-ucm-conf 1.2.3,
>   cherry-pick them to ubuntu 20.04 and 20.10
>
>   [Test Case]
>   After booting up, use speaker to play some sound, it works well,
>   plug a headset, play sound to headphone, it basically works but has
>   some crankling noise, it is a kernel issue for this noise.
>
>   [Regression Risk]
>   This SRU adds new ucm files, If the machine uses the audio driver
>   of chtmax98090, it will apply this new added ucm files, there will
>   be speaker/headphone in the UI. So the possible regression is with
>   this SRU, users could see the audio devices in the UI but the audio
>   doesn't work (without this SRU, users couldn't see the audio devices
>   in the UI at all and the audio doesn't work). This possibility is
>   low since we tested it on the ASUS C300.
>
>
>   Asus C300 (repurposed chromembook - bios flashed by Mr.Chromebox
> script)  - Kubuntu Focal minimal fresh installation.
>   The sound card is detected: I see it in the Plasma Widget, in
> pavucontrol, in alsamixer and it's not muted.
>   I tried and add in /usr/share/alsa/ucm/chtmax98090/ the old style use
> case config files: no success.
>   I tried and unmute speakers left and right in alsamixer: no success.
>
>   I rapidly tested Ubuntu Mate Focal fresh install: I had exactly the
>   same issue.
>
>   I'm running on the same rig Debian Bullseye, kernel 5.4: sound card
>   output and input are both working perfectly - I noticed that in
>   Kubuntu alsamixer Kubuntu when I open it I have an entry HDA IntelPCH
>   (the HDMI card), while in Debian I find Pulseaudio.
>
>   I attach the alsa-info.sh output.
>
>   ProblemType: Bug
>   DistroRelease: Ubuntu 20.04
>   Package: ubuntu-release-upgrader-core 1:20.04.17
>   ProcVersionSignature: Ubuntu 5.4.0-21.25-generic 5.4.27
>   Uname: Linux 5.4.0-21-generic x86_64
>   ApportVersion: 2.20.11-0ubuntu24
>   Architecture: amd64
>   CrashDB: ubuntu
>   CurrentDesktop: KDE
>   Date: Tue Apr  7 08:55:46 2020
>   InstallationDate: Installed on 2020-04-04 (2 days ago)
>   InstallationMedia: Kubuntu 20.04 LTS "Focal Fossa" - Beta amd64
> (20200401)
>   PackageArchitecture: all
>   SourcePackage: ubuntu-release-upgrader
>   Symptom: dist-upgrade
>   UpgradeStatus: No upgrade log present (probably fresh install)
>   ---
>   ProblemType: Bug
>   ApportVersion: 2.20.11-0ubuntu24
>   Architecture: amd64
>   AudioDevicesInUse:
>USERPID ACCESS COMMAND
>/dev/snd/controlC1:  gabriel3937 F pulseaudio
>/dev/snd/controlC0:  gabriel3937 F pulseaudio
>   CurrentDesktop: KDE
>   DistroRelease: Ubuntu 20.04
>   InstallationDate: Installed on 2020-04-04 (3 days ago)
>   InstallationMedia: Kubuntu 20.04 LTS "Focal Fossa" - Beta amd64
> (20200401)
>   Lsusb:
>Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
>Bus 001 Device 004: ID 8087:07dc Intel Corp.
>Bus 001 Device 003: ID 13d3:5657 IMC Networks USB2.0 UVC HD Webcam
>Bus 001 Device 002: ID 062a:4101 MosArt Semiconductor Corp. Wireless
> Keyboard/Mouse
>Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
>   MachineType: GOOGLE Quawks
>   Package: linux (not installed)
>   ProcFB: 0 i915drmfb
>   ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-21-generic
> root=UUID=225cba91-c164-4882-95d4-4f9854a80fe9 ro quiet splash
>   ProcVersionSignature: Ubuntu 5.4.0-21.25-generic 5.4.27
>   RelatedPackageVersions:
>linux-restricted-modules-5.4.0-21-generic N/A
>linux-backports-modules-5.4.0-21-generic  N/A
>linux-firmware1.187
>   Tags:  focal
>   Uname: Linux 5.4.0-21-generic x86_64
>   UpgradeStatus: No upgrade log present (probably fresh install)
>   UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
>   

[Bug 1890572] Re: USB backend never ends if the printer is not connected

2021-10-14 Thread Brian Murray
Looking at the version of cups in Impish it seems that this change has
made it into cups, subsequently I'm setting the bug to fix released.

** Changed in: cups (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/1890572

Title:
  USB backend never ends if the printer is not connected

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


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

[Bug 1775636] Re: sss_ssh_authorizedkeys fails with: Error looking up public keys when client cert present in IPA

2021-10-14 Thread Sergio Durigan Junior
Xenial has entered ESM, so I'm marking this bug as Won't Fix for it.

** Changed in: sssd (Ubuntu Xenial)
   Status: Triaged => Won't Fix

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

Title:
  sss_ssh_authorizedkeys fails with: Error looking up public keys when
  client cert present in IPA

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


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

[Bug 1641203] Re: SSSD can't process GPO from Active Directory when it contains lines with no equal sign

2021-10-14 Thread Sergio Durigan Junior
Xenial has entered ESM, therefore I am marking this bug as Won't Fix for
it.

** Changed in: sssd (Ubuntu Xenial)
   Status: Triaged => Won't Fix

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

Title:
  SSSD can't process GPO from Active Directory when it contains lines
  with no equal sign

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ding-libs/+bug/1641203/+subscriptions


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

[Bug 1942929] Re: [SRU] ubuntu-advantage-tools (27.2.2 -> 27.3) Xenial, Bionic, Focal, Hirsute

2021-10-14 Thread Grant Orndorff
Thank you Steve for taking a look.

You are right on all counts.

It appears the code to pre-create log files is unnecessary. If you
consider this a blocker then we can remove it in this release. Otherwise
we will remove it in 27.4

We purposefully kept the purpose of the enable_periodic_license_check
function to _enabling_ when run on GCP LTS non-attached instances. You
are right that the timer will not be disabled during postinst when
upgrading to a non-LTS; however, the timer will notice that it is non-
LTS and disable itself next time it runs.

The code that does this is here:
https://github.com/canonical/ubuntu-advantage-client/blob/release-27/uaclient/jobs/license_check.py#L36

And our integration test for the timer disabling itself on non-LTS is here:
https://github.com/canonical/ubuntu-advantage-client/blob/release-27/features/license_check.feature#L47

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

Title:
  [SRU] ubuntu-advantage-tools (27.2.2 -> 27.3) Xenial, Bionic, Focal,
  Hirsute

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


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

[Bug 1873565] Re: issue with TLS 1.2 session ticket handling as client during resumption

2021-10-14 Thread William Wilson
@diddledani the patch in comment 2 doesn't apply cleanly in bionic.
Would you be able to redo the patch for bionic?

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

Title:
  issue with TLS 1.2 session ticket handling as client during resumption

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


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

[Bug 1871306] Re: [SRU] No sound from internal card chtmax98090 (missing UCM2 files in alsa-ucm-conf)

2021-10-14 Thread Brian Murray
Based off the bug comments its not clear to me if the debdiff for Focal
actually ended up resolving the issue for people. Additionally, the
debdiff is rather out of date as there have been a couple of SRUs of
alsa-ucm-conf since it was created subsequently I'm unsubscribing the
sponsors team. However, if an updated debdiff is created feel free to
subscribe the sponsors team.

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

Title:
  [SRU] No sound from internal card chtmax98090 (missing UCM2 files in
  alsa-ucm-conf)

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


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

[Bug 1798166] Re: “Mouse battery low” notification can't be disabled

2021-10-14 Thread Shock
This has been fixed on the GNOME side. Can we have this backported?
I'm willing to do the backport, if it will get merged.

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

Title:
  “Mouse battery low” notification can't be disabled

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


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

[Bug 1946499] Re: installation of deb-packages with gdebi-gtk shows "dpkg: error: unable to read filedescriptor flags for : Bad file descriptor" in gdebi t

2021-10-14 Thread Norbert
Great. So there is no need in my PPA. I have deleted it.

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

Title:
  installation of deb-packages with gdebi-gtk shows "dpkg: error: unable
  to read filedescriptor flags for : Bad file descriptor" in gdebi terminal, package is not
  installed

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


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

[Bug 1886809] Re: Pulse connect VPN exists because unwanted avahi network starts

2021-10-14 Thread Dan Bungert
Hi @helioloureiro,

While for your use case I can easily see the need for this patch, I'm
not sure this should be applied generally.  In a VPN split tunnel
scenario, the very case that Pulsesecure seems to be rejecting, the
original config would probably be more appropriate.

Another path forward - on more recent Ubuntu (hirsute in my case), it
appears that avahi-autoipd can be removed without causing excessive
other package removals.  Would that be a plausible solution for someone
with a similar problem?

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

Title:
  Pulse connect VPN exists because unwanted avahi network starts

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


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

[Bug 1947192] Re: [SRU] version 0.185

2021-10-14 Thread Mattia Rizzolo
please also consider that we backports team also have in mind to keep
u-d-t (and others) fully up-to-date in the backports suites (this should
happen within a few weeks).

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

Title:
  [SRU] version 0.185

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


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

[Bug 1942929] Re: [SRU] ubuntu-advantage-tools (27.2.2 -> 27.3) Xenial, Bionic, Focal, Hirsute

2021-10-14 Thread Steve Langasek
+enable_periodic_license_check() {
+cloud_id=$(cloud-id 2>/dev/null) || cloud_id=""
+if echo "$cloud_id" | grep -q "^gce"; then
+if check_is_lts "${UBUNTU_CODENAME}"; then
+if [ ! -f $MACHINE_TOKEN_FILE ]; then
+touch $LICENSE_CHECK_MARKER_FILE
+fi
+fi
+fi
+}

What is the expected behavior here if the user upgrades to this version
of the package on an LTS, and then upgrades to a non-LTS release?

What is the expected behavior if the user is running on a non-LTS
release, and then upgrades to a non-LTS release?

(Current behavior with this implementation: on upgrade to an LTS
release, the timer will be enabled, because a new version of the package
is configured and this code runs again.  On upgrade to a non-LTS
release, the timer will not be disabled.)

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

Title:
  [SRU] ubuntu-advantage-tools (27.2.2 -> 27.3) Xenial, Bionic, Focal,
  Hirsute

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


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

[Bug 1891110] Re: Focal ucf need redirect fixes backported to ensure working with config-package-dev

2021-10-14 Thread Brian Murray
For this to be uploaded to Focal as a stable release update this bug
would need some additional information which can be found at
https://wiki.ubuntu.com/StableReleaseUpdates#SRU_Bug_Template. If you
are still interested in seeing this bug fixed in Focal could you please
add it?

** Changed in: ucf (Ubuntu Focal)
   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/1891110

Title:
  Focal ucf need redirect fixes backported to ensure working with
  config-package-dev

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


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

[Bug 1718227] Re: replacement of ifupdown with netplan needs integration for /etc/network/if{up, down}.d scripts

2021-10-14 Thread Sergio Durigan Junior
MR for the Debian postfix package also submitted:

https://salsa.debian.org/postfix-team/postfix-dev/-/merge_requests/13

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

** Changed in: postfix (Ubuntu)
 Assignee: (unassigned) => Sergio Durigan Junior (sergiodj)

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

Title:
  replacement of ifupdown with netplan needs integration for
  /etc/network/if{up,down}.d scripts

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


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

[Bug 1581594] Re: constantly shows wrong temperature (99°C )

2021-10-14 Thread Brian Murray
** Changed in: libatasmart (Ubuntu Xenial)
   Status: Confirmed => Won't Fix

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

Title:
  constantly shows wrong temperature (99°C )

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


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

[Bug 1794194] Re: missing archive files in library

2021-10-14 Thread Brian Murray
I'm unsubscribing ubuntu-sponsors as this is fixed in Debian and we'll
get it when we merge openjpeg2 next.

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

Title:
  missing archive files in library

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


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

[Bug 1862372] Re: ubuntu-upload-permission TypeError crash

2021-10-14 Thread Dan Streetman
will be handled by bug 1947192

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

Title:
  ubuntu-upload-permission TypeError crash

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


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

[Bug 1934452] Re: pbuilder-dist on focal fails with debian bullseye

2021-10-14 Thread Dan Streetman
will be handled by bug 1947192

** 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)
   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/1934452

Title:
  pbuilder-dist on focal fails with debian bullseye

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


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

[Bug 1942929] Re: [SRU] ubuntu-advantage-tools (27.2.2 -> 27.3) Xenial, Bionic, Focal, Hirsute

2021-10-14 Thread Steve Langasek
One of the packaging changes in the SRU which I don't see an explicit
bug for (so I'm attaching the question here) is:

+++ ubuntu-advantage-tools-27.3~21.10.1/debian/ubuntu-advantage-tools.postinst  
2021-09-21 13:02:06.0 +
[...]
+configure_log_file() {
+log_path=$1
+if [ ! -f $log_path ]; then
+touch $log_path
+fi
+chmod 0600 $log_path
+chown root:root $log_path
+}
[...]
-  if [ ! -f /var/log/ubuntu-advantage.log ]; then
-  touch /var/log/ubuntu-advantage.log
-  fi
-  chmod 0600 /var/log/ubuntu-advantage.log
-  chown root:root /var/log/ubuntu-advantage.log
+  configure_log_file /var/log/ubuntu-advantage.log
+  configure_log_file /var/log/ubuntu-advantage-timer.log
+  configure_log_file /var/log/ubuntu-advantage-license-check.log
+
[...]

It is unusual for maintainer scripts to pre-create log files.  If these
files are removed, do the tools recreate them with the correct
permissions?  (If so: is this code needed at all?)

** Changed in: ubuntu-advantage-tools (Ubuntu Impish)
   Status: In Progress => Incomplete

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

Title:
  [SRU] ubuntu-advantage-tools (27.2.2 -> 27.3) Xenial, Bionic, Focal,
  Hirsute

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


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

[Bug 1943286] Re: syncpackage crashed with urllib.error.URLError in do_open():

2021-10-14 Thread Erich Eickmeyer 
Instead of crashing hard, I would think it would output a standard error
as opposed to a complete python crash. Something like, "Unable to verify
SSL signature. Try again later" or something of that respect. The
implementation as it exists causes Apport to think there's a bug in the
code when, in fact, there is not. It's just failing, but the fail
shouldn't invoke a crash report.

** Changed in: ubuntu-dev-tools (Ubuntu)
   Status: Incomplete => New

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

Title:
  syncpackage crashed with urllib.error.URLError in do_open(): 

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


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

[Bug 1946499] Re: installation of deb-packages with gdebi-gtk shows "dpkg: error: unable to read filedescriptor flags for : Bad file descriptor" in gdebi t

2021-10-14 Thread Dani Llewellyn
For Norbert, this is the same debdiff without the localisation changes

** Patch added: "gdebi-no-ubuntu-specfics.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/gdebi/+bug/1946499/+attachment/5532985/+files/gdebi-no-ubuntu-specfics.debdiff

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

Title:
  installation of deb-packages with gdebi-gtk shows "dpkg: error: unable
  to read filedescriptor flags for : Bad file descriptor" in gdebi terminal, package is not
  installed

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


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

[Bug 1947192] Re: [SRU] version 0.185

2021-10-14 Thread Dan Streetman
ubuntu-dev-tools (0.185) unstable; urgency=medium

  [ Alex Murray ]
  * ubuntutools/archive.py:
+ Fix crash due to PersonalPackageArchiveSourcePackage() returning the
  wrong object when requesting a download url.  LP: #1938659

  [ Krytarik Raido ]
  * merge-changelog: Fix setting of newlines.

  [ Dan Streetman ]
  * misc: download to tmp file, to avoid leftover 0-size file on error
  * misc: handle ConnectionError as NotFoundError
  * archive: use proper component source packages sometimes have different
component than their bpphs, so use the correct component when downloading
binaries (LP: #1943819)
  * misc: fix flake8 complaints

  [ Stefano Rivera ]
  * Bump Standards-Version to 4.6.0, no changes needed.

 -- Stefano Rivera   Fri, 17 Sep 2021 15:53:02
-0700

ubuntu-dev-tools (0.184) experimental; urgency=medium

  [ Dan Streetman ]
  * Drop never packaged ubuntu-archive-assistant.
  * Add support for downloading from private PPAs:
+ ubuntutools/misc:
  - Refactor to use Pathlib and f-strings.
  - Refactor to use requests instead of urllib (for the earier auth)
+ ubuntutools/archive:
  - Refactor to use Pathlib.
  - Add support for the special URLs of private PPAs.
  * Don't use existing file without verifying their checksum.
  * tests: recreate the test package files on demand.
  * Remove no longer used dependencies on python3-termcolor and python3-yaml

  [ Mattia Rizzolo ]
  * pbuilder-dist: use shutil.which instead of
distutils.spawn.find_executable() to save a dependency.  LP: #1936697
  * d/control:
+ Drop redundant Recommends that are already in Depends.
+ Bump debhelper compat level to 13.

  [ Marco Trevisan (Treviño) ]
  * mk-sbuild:
+ Enable debugging in the finish.sh script if --debug is used.
+ Add support to configure ccache for each schroot.

 -- Mattia Rizzolo   Sat, 17 Jul 2021 17:31:19 +0200

ubuntu-dev-tools (0.183) unstable; urgency=medium

  [ Dan Streetman ]
  * pbuilder-dist: include missing import

 -- Stefano Rivera   Tue, 08 Jun 2021 10:09:11
-0400

ubuntu-dev-tools (0.182) unstable; urgency=medium

  [ Dan Streetman ]
  * syncpackage, ubuntutools/archive.py:
Don't save dsc file to disk until requested with pull()
(LP: #1928946)
  * syncpackage:
Don't login to LP if using --simulate
  * d/t/control: Add minimum flake8 version
The --extend-exclude parameter is first available in flake8 3.8.0
  * ubuntutools/archive.py: Fix flake8 test failure
  * d/rules, d/control: Override build tests to use flake8 and nosetests3

  [ Stefano Rivera ]
  * Respect nocheck in DEB_BUILD_OPTIONS, again.

 -- Stefano Rivera   Sun, 06 Jun 2021 19:52:18
-0400

ubuntu-dev-tools (0.181) unstable; urgency=medium

  [ Logan Rosen ]
  * Fix a couple of remaining issues from the py2→py3 move.

  [ Krytarik Raido ]
  * Fix typo in the logging configuration.

  [ Dan Streetman ]
  * pbuilder: Handle debian change from /updates to -security.  LP: #1916633
Starting in bullseye, the security suite is -security instead of /updates.
  * backportpackage: Don't use SourcePackage() directly.  Closes: #983854
As the warning from 2010 says, don't use this class directly.

  [ Balint Reczey ]
  * mk-sbuild:
+ Use eatmydata only with the dpkg command.
  Eatmydata wrapping the build as well could break tests.
  Thanks to Julian Andres Klode for suggesting this solution
+ Use eatmydata by default.
  Since only the dpkg is wrapped in eatmydata it should be the safe and
  fast default. Eatmydata is widely used around apt thus it should be a
  serious bug if a package can't be installed with eatmydata in use.

  [ Marco Trevisan (Treviño) ]
  * doc/mk-sbuild.1: Add documentation for --debootstrap-proxy and
DEBOOTSTRAP_PROXY.  LP: #1926166

 -- Mattia Rizzolo   Sun, 02 May 2021 19:56:48 +0200

ubuntu-dev-tools (0.180) unstable; urgency=medium

  * Drop coverage in the autopkgtest, as python3-nose-cov is not in
Debian.

 -- Mattia Rizzolo   Fri, 19 Feb 2021 12:12:33 +0100

ubuntu-dev-tools (0.179) unstable; urgency=medium

  [ Stefano Rivera ]
  * archive.py: Evaluate the filter() fixing Debian source history queries
LP: #1913330

  [ Dan Streetman ]
  * allow running tests using tox
  * add autopkgtests to run tests
  * simplify/combine archive download functions
  * add support for private ppa by logging into lp
  * improve support for pull-uca-*
  * fix logging/printing output to stdout/stderr

 -- Dan Streetman   Mon, 01 Feb 2021 11:59:03
-0500

ubuntu-dev-tools (0.178) unstable; urgency=medium

  [ Dan Streetman ]
  * pullpkg: also catch and deal with InvalidPullValueError.  LP: #1908770

  [ Mattia Rizzolo ]
  * d/control: Bump Standards-Version to 4.5.1, no changes needed.
  * ubuntu-archive-assistant/mir: Fix a SyntaxWarning.
  * backportpackage:
+ Add a -e/--message option to change the default "No-change"
  in "No-change backport to DIST".
  Thanks to Unit 193 for the initial patch.

[Bug 1946499] Re: installation of deb-packages with gdebi-gtk shows "dpkg: error: unable to read filedescriptor flags for : Bad file descriptor" in gdebi t

2021-10-14 Thread Norbert
Thanks.
I have packaged old VTE from Hirsute in the PPA ( 
https://launchpad.net/~nrbrtx/+archive/ubuntu/vte-impish ).

```
sudo add-apt-repository ppa:nrbrtx/vte-impish
sudo apt-get update
sudo apt-get dist-upgrade
```

will fix the issue temporarily.

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

Title:
  installation of deb-packages with gdebi-gtk shows "dpkg: error: unable
  to read filedescriptor flags for : Bad file descriptor" in gdebi terminal, package is not
  installed

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


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

[Bug 1946499] Re: installation of deb-packages with gdebi-gtk shows "dpkg: error: unable to read filedescriptor flags for : Bad file descriptor" in gdebi t

2021-10-14 Thread Gunnar Hjalmarsson
@Dani: Needless to say I didn't see your patch before submitting my
latest comment.

This sounds very promising! :) And suddenly I understand why gdebi
behaves differently in Ubuntu compared to Debian...

Will test is in a minute.

And yes, this means that we can simply start sync'ing vte2.91 from
Debian in the jj cycle.

Thanks a lot!

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

Title:
  installation of deb-packages with gdebi-gtk shows "dpkg: error: unable
  to read filedescriptor flags for : Bad file descriptor" in gdebi terminal, package is not
  installed

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


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

[Bug 1799568] Re: [ubuntu-archive-assistant] not installed

2021-10-14 Thread Dan Streetman
this code has been removed from u-d-t

** Changed in: ubuntu-dev-tools (Ubuntu)
   Status: Triaged => Invalid

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

Title:
  [ubuntu-archive-assistant]  not installed

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


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

[Bug 1947115] Re: VAAPI / HW-acceleration not working Snap-packaged Firefox

2021-10-14 Thread Olivier Tilloy
https://gitlab.gnome.org/Community/Ubuntu/gnome-sdk/-/merge_requests/31
adds the VA-API drivers to the gnome platform snap (gnome-3-38-2004).

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

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

Title:
  VAAPI / HW-acceleration not working Snap-packaged Firefox

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


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

[Bug 1946499] Re: installation of deb-packages with gdebi-gtk shows "dpkg: error: unable to read filedescriptor flags for : Bad file descriptor" in gdebi t

2021-10-14 Thread Dani Llewellyn
https://launchpad.net/~diddledani/+archive/ubuntu/gdebi-
fix-1946499/+packages contains my patch above (the debdiff of gdebi) for
reference once it's built by LP.

I agree that downgrading VTE is not gonna fly. We might be able to
convince SRU managers to rebuild without the patch now it's not needed,
but won't convince them on an outright downgrade.

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

Title:
  installation of deb-packages with gdebi-gtk shows "dpkg: error: unable
  to read filedescriptor flags for : Bad file descriptor" in gdebi terminal, package is not
  installed

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


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

[Bug 1947192] Re: [SRU] version 0.185

2021-10-14 Thread Dan Streetman
** Description changed:

  [Impact]
  This release contains both bug-fixes and new features and we would like to 
make sure all of our developers have access to these improvements.
  The notable ones are:
- 
  
  See the changelog entry below for a full list of changes and bugs.
  
  [Test Plan]
  
  ubuntu-dev-tools contains a test suite that is ran using the SRU package for 
each releases. This test suite's results are available here:
  http://autopkgtest.ubuntu.com/packages/ubuntu-dev-tools
  
  A successful run is required before the proposed package can be let into
  -updates.
  
  [Where problems could occur]
  In order to mitigate the regression potential, the results of the
  aforementioned integration tests are attached to this bug.
  
  
  
  [Other Info]
  
  
  [Changelog]
  

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

Title:
  [SRU] version 0.185

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


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

[Bug 1947194] [NEW] Wayland only partially works

2021-10-14 Thread Chris Hall
Public bug reported:

When using Wayland in 21.04, the display often never wakes up after lock
up. Also, on boot up, desktop icons and most favorites on dash are not
displayed, even though desktop icons are enabled. I can get them to show
up only by re-enabling desktop icons. The workaround now is to disable
Wayland, and the original xorg server works fine. The display driver is:

00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core
Processor Family Integrated Graphics Controller (rev 09)

The monitor is an HP 22cwa running of of a displayport interface.

ProblemType: Bug
DistroRelease: Ubuntu 21.04
Package: xorg 1:7.7+22ubuntu1
ProcVersionSignature: Ubuntu 5.11.0-37.41-generic 5.11.22
Uname: Linux 5.11.0-37-generic x86_64
ApportVersion: 2.20.11-0ubuntu65.3
Architecture: amd64
BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
CasperMD5CheckResult: unknown
CompositorRunning: None
CurrentDesktop: ubuntu:GNOME
Date: Thu Oct 14 14:32:26 2021
DistUpgraded: 2021-07-28 16:05:54,589 DEBUG Running PostInstallScript: 
'/usr/lib/ubuntu-advantage/upgrade_lts_contract.py'
DistroCodename: hirsute
DistroVariant: ubuntu
DkmsStatus:
 virtualbox, 6.1.26, 5.11.0-36-generic, x86_64: installed
 virtualbox, 6.1.26, 5.11.0-37-generic, x86_64: installed
ExtraDebuggingInterest: No
GraphicsCard:
 Intel Corporation 2nd Generation Core Processor Family Integrated Graphics 
Controller [8086:0102] (rev 09) (prog-if 00 [VGA controller])
   Subsystem: Dell 2nd Generation Core Processor Family Integrated Graphics 
Controller [1028:047e]
InstallationDate: Installed on 2018-12-04 (1044 days ago)
InstallationMedia: Ubuntu 18.04.1 LTS "Bionic Beaver" - Release amd64 (20180725)
MachineType: Dell Inc. OptiPlex 990
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.11.0-37-generic 
root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=7
SourcePackage: xorg
Symptom: display
UpgradeStatus: Upgraded to hirsute on 2021-07-28 (77 days ago)
dmi.bios.date: 11/24/2011
dmi.bios.release: 4.6
dmi.bios.vendor: Dell Inc.
dmi.bios.version: A10
dmi.board.name: 06D7TR
dmi.board.vendor: Dell Inc.
dmi.board.version: A00
dmi.chassis.type: 6
dmi.chassis.vendor: Dell Inc.
dmi.modalias: 
dmi:bvnDellInc.:bvrA10:bd11/24/2011:br4.6:svnDellInc.:pnOptiPlex990:pvr01:sku:rvnDellInc.:rn06D7TR:rvrA00:cvnDellInc.:ct6:cvr:
dmi.product.name: OptiPlex 990
dmi.product.version: 01
dmi.sys.vendor: Dell Inc.
version.compiz: compiz N/A
version.libdrm2: libdrm2 2.4.105-3~21.04.1
version.libgl1-mesa-dri: libgl1-mesa-dri 21.0.3-0ubuntu0.3
version.libgl1-mesa-glx: libgl1-mesa-glx 21.0.3-0ubuntu0.3
version.xserver-xorg-core: xserver-xorg-core 2:1.20.11-1ubuntu1.1
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.1.0-2
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20200714-1ubuntu1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.17-1

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


** Tags: amd64 apport-bug hirsute third-party-packages ubuntu

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

Title:
  Wayland only partially works

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


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

[Bug 1947191] [NEW] Impish update: v5.13.19 upstream stable release

2021-10-14 Thread Kamal Mostafa
Public bug reported:

SRU Justification

Impact:
   The upstream process for stable tree updates is quite similar
   in scope to the Ubuntu SRU process, e.g., each patch has to
   demonstrably fix a bug, and each patch is vetted by upstream
   by originating either directly from a mainline/stable Linux tree or
   a minimally backported form of that patch. The following upstream
   stable patches should be included in the Ubuntu kernel:

   v5.13.19 upstream stable release
   from git://git.kernel.org/

rtc: tps65910: Correct driver module alias
btrfs: wake up async_delalloc_pages waiters after submit
btrfs: wait on async extents when flushing delalloc
btrfs: reduce the preemptive flushing threshold to 90%
btrfs: zoned: fix block group alloc_offset calculation
btrfs: zoned: suppress reclaim error message on EAGAIN
btrfs: fix upper limit for max_inline for page size 64K
btrfs: reset replace target device to allocation state on close
btrfs: zoned: fix double counting of split ordered extent
blk-zoned: allow zone management send operations without CAP_SYS_ADMIN
blk-zoned: allow BLKREPORTZONE without CAP_SYS_ADMIN
PCI/MSI: Skip masking MSI-X on Xen PV
powerpc/perf/hv-gpci: Fix counter value parsing
xen: fix setting of max_pfn in shared_info
9p/xen: Fix end of loop tests for list_for_each_entry
ceph: fix dereference of null pointer cf
Input: elan_i2c - reduce the resume time for controller in Whitebox
selftests/ftrace: Fix requirement check of README file
tools/thermal/tmon: Add cross compiling support
clk: socfpga: agilex: fix the parents of the psi_ref_clk
clk: socfpga: agilex: fix up s2f_user0_clk representation
clk: socfpga: agilex: add the bypass register for s2f_usr0 clock
pinctrl: stmfx: Fix hazardous u8[] to unsigned long cast
pinctrl: ingenic: Fix incorrect pull up/down info
pinctrl: ingenic: Fix bias config for X2000(E)
soc: mediatek: mmsys: Fix missing UFOE component in mt8173 table routing
soc: qcom: aoss: Fix the out of bound usage of cooling_devs
soc: aspeed: lpc-ctrl: Fix boundary check for mmap
soc: aspeed: p2a-ctrl: Fix boundary check for mmap
arm64: Move .hyp.rodata outside of the _sdata.._edata range
arm64: mm: Fix TLBI vs ASID rollover
arm64: head: avoid over-mapping in map_memory
arm64: Do not trap PMSNEVFR_EL1
iio: ltc2983: fix device probe
wcn36xx: Ensure finish scan is not requested before start scan
crypto: public_key: fix overflow during implicit conversion
block: bfq: fix bfq_set_next_ioprio_data()
power: supply: max17042: handle fails of reading status register
dm crypt: Avoid percpu_counter spinlock contention in crypt_page_alloc()
crypto: ccp - shutdown SEV firmware on kexec
spi: fsi: Reduce max transfer size to 8 bytes
VMCI: fix NULL pointer dereference when unmapping queue pair
media: uvc: don't do DMA on stack
media: rc-loopback: return number of emitters rather than error
nvmem: core: fix error handling while validating keepout regions
s390/qdio: fix roll-back after timeout on ESTABLISH ccw
s390/qdio: cancel the ESTABLISH ccw after timeout
Revert "dmaengine: imx-sdma: refine to load context only once"
dmaengine: imx-sdma: remove duplicated sdma_load_context
io_uring: place fixed tables under memcg limits
io_uring: add ->splice_fd_in checks
io_uring: fix io_try_cancel_userdata race for iowq
io-wq: fix wakeup race when adding new work
io-wq: fix race between adding work and activating a free worker
io_uring: fail links of cancelled timeouts
libata: add ATA_HORKAGE_NO_NCQ_TRIM for Samsung 860 and 870 SSDs
ARM: 9105/1: atags_to_fdt: don't warn about stack size
f2fs: fix to do sanity check for sb/cp fields correctly
PCI/portdrv: Enable Bandwidth Notification only if port supports it
PCI: Restrict ASMedia ASM1062 SATA Max Payload Size Supported
PCI: Return ~0 data on pciconfig_read() CAP_SYS_ADMIN failure
PCI: xilinx-nwl: Enable the clock through CCF
PCI: aardvark: Configure PCIe resources from 'ranges' DT property
PCI: aardvark: Fix checking for PIO status
PCI: aardvark: Increase polling delay to 1.5s while waiting for PIO response
PCI: aardvark: Fix masking and unmasking legacy INTx interrupts
f2fs: compress: fix to set zstd compress level correctly
HID: input: do not report stylus battery state as "full"
f2fs: quota: fix potential deadlock
pinctrl: armada-37xx: Correct PWM pins definitions
scsi: bsg: Remove support for SCSI_IOCTL_SEND_COMMAND
clk: rockchip: drop GRF dependency for rk3328/rk3036 pll types
IB/hfi1: Adjust pkey entry in index 0
RDMA/iwcm: Release resources if iw_cm module initialization fails
docs: Fix infiniband uverbs minor number
scsi: BusLogic: Use %X for u32 sized integer rather than %lX
pinctrl: samsung: Fix pinctrl bank pin count
f2fs: restructure f2fs page.private layout
f2fs: compress: add compress_inode to cache compressed blocks
f2fs: fix wrong checkpoint_changed value in f2fs_remount()
vfio: Use config not menuconfig for VFIO_NOIOMMU
scsi: ufs: Fix memory corruption by ufshcd_read_desc_param()
cpuidle: pseries: Fixup CED

[Bug 1947192] [NEW] [SRU] version 0.185

2021-10-14 Thread Dan Streetman
Public bug reported:

[Impact]
This release contains both bug-fixes and new features and we would like to make 
sure all of our developers have access to these improvements.
The notable ones are:


See the changelog entry below for a full list of changes and bugs.

[Test Plan]

ubuntu-dev-tools contains a test suite that is ran using the SRU package for 
each releases. This test suite's results are available here:
http://autopkgtest.ubuntu.com/packages/ubuntu-dev-tools

A successful run is required before the proposed package can be let into
-updates.

[Where problems could occur]
In order to mitigate the regression potential, the results of the
aforementioned integration tests are attached to this bug.



[Other Info]


[Changelog]


** Affects: ubuntu-dev-tools (Ubuntu)
 Importance: Undecided
 Status: Fix Released

** Affects: ubuntu-dev-tools (Ubuntu Focal)
 Importance: Low
 Assignee: Dan Streetman (ddstreet)
 Status: In Progress

** Affects: ubuntu-dev-tools (Ubuntu Hirsute)
 Importance: Low
 Assignee: Dan Streetman (ddstreet)
 Status: In Progress

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

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

** Changed in: ubuntu-dev-tools (Ubuntu)
   Status: New => Fix Released

** Changed in: ubuntu-dev-tools (Ubuntu Focal)
   Status: New => In Progress

** Changed in: ubuntu-dev-tools (Ubuntu Hirsute)
   Status: New => In Progress

** Changed in: ubuntu-dev-tools (Ubuntu Hirsute)
 Assignee: (unassigned) => Dan Streetman (ddstreet)

** Changed in: ubuntu-dev-tools (Ubuntu Focal)
 Assignee: (unassigned) => Dan Streetman (ddstreet)

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

** Changed in: ubuntu-dev-tools (Ubuntu Focal)
   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/1947192

Title:
  [SRU] version 0.185

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


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

[Bug 1840348] Re: Sharded OpWQ drops suicide_grace after waiting for work

2021-10-14 Thread Dan Bungert
@hillpd - should this still be in the sponsor queue?  Are we still
trying to SRU this to Bionic?

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

Title:
  Sharded OpWQ drops suicide_grace after waiting for work

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-archive/+bug/1840348/+subscriptions


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

[Bug 1891021] Re: Specifying a port in telnetrc is not working

2021-10-14 Thread Brian Murray
Looking at the source code for netkit-telnet this is still an issue with
the version of the pacakge in Impish.

** Tags added: impish

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

Title:
  Specifying  a port in telnetrc is not working

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/netkit-telnet/+bug/1891021/+subscriptions


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

[Bug 1945200] Re: Updates to Google Calender succeed but produce MODIFICATION_FAILED error

2021-10-14 Thread Sebastien Bacher
Thanks, closing the report bug feel free to open a new one if you get
similar issues again using the new version

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

** Changed in: thunderbird (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/1945200

Title:
  Updates to Google Calender succeed but produce MODIFICATION_FAILED
  error

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


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

[Bug 1946963] Re: libical3-dev does not provide CMake config files

2021-10-14 Thread Sebastien Bacher
Thanks!

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

Title:
  libical3-dev does not provide CMake config files

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


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

[Bug 1945587] Re: Double click on calendar item views rather than edits

2021-10-14 Thread Sebastien Bacher
Thanks for reporting it upstream!

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

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

** Also affects: thunderbird via
   https://bugzilla.mozilla.org/show_bug.cgi?id=1735818
   Importance: Unknown
   Status: Unknown

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

Title:
  Double click on calendar item views rather than edits

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


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

[Bug 1947168] Re: important

2021-10-14 Thread Sebastien Bacher
Thank you for taking the time to report this bug and helping to make
Ubuntu better. Unfortunately, we cannot work on this bug because your
description didn't include enough information. You may find it helpful
to read "How to report bugs effectively"
http://www.chiark.greenend.org.uk/~sgtatham/bugs.html. We'd be grateful
if you would then provide a more complete description of the problem.

We have instructions on debugging some types of problems at
http://wiki.ubuntu.com/DebuggingProcedures.

At a minimum, we need:

1. The specific steps or actions you took that caused you to encounter the 
problem.
2. The behavior you expected.
3. The behavior you actually encountered (in as much detail as possible).

Please also ensure that you include the release and flavour of Ubuntu
that you are using.

Thank you!

** Changed in: xorg (Ubuntu)
   Importance: Undecided => Low

** Changed in: xorg (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/1947168

Title:
  important

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


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

[Bug 1891021]

2021-10-14 Thread Brian Murray
Thank you for providing a patch for this bug report. This particular
package is synchronized with Debian so it would be quite helpful if you
were to forward the patch to the Debian bug tracker.  You can learn more
about how to use the Debian bug tracker at
https://wiki.ubuntu.com/Debian/Bugs.  After you've forwarded the bug
report and patch please add a bug watch, following the procedure at
http://wiki.ubuntu.com/Bugs/Watches, so we can track the progress of the
upstream bug report.

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

Title:
  Specifying  a port in telnetrc is not working

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/netkit-telnet/+bug/1891021/+subscriptions


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

Re: [Bug 1906273] Re: iwlwifi - very slow for intel 9260/9560 wireless cards

2021-10-14 Thread drizzle
Hi. Thanks for the suggestion. But what wifi speeds are you getting without
11n enabled?

On Thu, Oct 14, 2021, 20:10 Dan <1906...@bugs.launchpad.net> wrote:

> You could try to disable 11n with the 8 option: `11n_disable=8`. It
> worked for me.
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1906273
>
> Title:
>   iwlwifi - very slow for intel 9260/9560 wireless cards
>
> Status in linux-firmware package in Ubuntu:
>   Confirmed
>
> Bug description:
>   I have tried 2 intel wifi cards (9260 and previously 9560, which i
>   thought was broken) in my msi GF63 laptop. Both cards work fine when
>   using windows, getting me a speed of 450 mbps consistently.
>
>   But when using linux with ubuntu 20.04, this speed is reduced to max
>   25 mbps (using the same 5G network).
>
>   I'm using iwlwifi-9260-th-b0-jf-b0-46.ucode and kernel 5.6.19.
>
>   I have tried with a previous version of the driver
>   (iwlwifi-9260-th-b0-jf-b0-34.ucode), but unfortunately gave me the
>   same result. I have also tried different kernels (5.4.0 that came with
>   ubuntu 20.04 and also 5.3.18), to no avail.
>
>   I've also tried fiddling with settings in /etc/modprobe.d/iwlwifi-
>   opt.conf
>
>   options iwlwifi 11n_disable=1
>   options iwlwifi swcrypto=0
>   options iwlwifi bt_coex_active=0
>   options iwlwifi power_save=0
>   options iwlwifi uapsd_disable=1
>   options iwlmvm power_scheme=1
>
>   These seem to get me the 'best' results, of merely 25 mbps.
>
>   windows, when getting 450 mbps, uses this driver version 22.0.0.6
>   (https://downloadcenter.intel.com/download/29902)
>
>   I have disabled power-management so i don't think it's a power save
>   issue like someone else suggested.
>
>   From iw and iwconfig, the max bit rate seems to be 54.0 Mbps, but the
>   card can surely do much faster.
>
>   Any idea on how to fix this? Please let me know if more info is
>   needed. Thanks!
>
>   dmesg | grep iwl
>   [2.287446] iwlwifi :04:00.0: enabling device ( -> 0002)
>   [2.301450] iwlwifi :04:00.0: Found debug destination:
> EXTERNAL_DRAM
>   [2.301452] iwlwifi :04:00.0: Found debug configuration: 0
>   [2.301710] iwlwifi :04:00.0: loaded firmware version
> 46.6bf1df06.0 9260-th-b0-jf-b0-46.ucode op_mode iwlmvm
>   [2.356367] iwlwifi :04:00.0: Detected Intel(R) Wireless-AC 9260
> 160MHz, REV=0x324
>   [2.370323] iwlwifi :04:00.0: Applying debug destination
> EXTERNAL_DRAM
>   [2.370983] iwlwifi :04:00.0: Allocated 0x0040 bytes for
> firmware monitor.
>   [2.429183] iwlwifi :04:00.0: base HW address: f2:ac:12:fa:47:6f
>   [2.496763] ieee80211 phy0: Selected rate control algorithm
> 'iwl-mvm-rs'
>   [2.509009] iwlwifi :04:00.0 wlp4s0: renamed from wlan0
>   [3.401664] iwlwifi :04:00.0: Applying debug destination
> EXTERNAL_DRAM
>   [3.515240] iwlwifi :04:00.0: Applying debug destination
> EXTERNAL_DRAM
>   [3.585957] iwlwifi :04:00.0: FW already configured (0) -
> re-configuring
>
>
>   iw list
>   Wiphy phy0
> max # scan SSIDs: 20
> max scan IEs length: 464 bytes
> max # sched scan SSIDs: 20
> max # match sets: 11
> max # scan plans: 2
> max scan plan interval: 65535
> max scan plan iterations: 254
> Retry short limit: 7
> Retry long limit: 4
> Coverage class: 0 (up to 0m)
> Device supports RSN-IBSS.
> Device supports AP-side u-APSD.
> Device supports T-DLS.
> Supported Ciphers:
> * WEP40 (00-0f-ac:1)
> * WEP104 (00-0f-ac:5)
> * TKIP (00-0f-ac:2)
> * CCMP-128 (00-0f-ac:4)
> * GCMP-128 (00-0f-ac:8)
> * GCMP-256 (00-0f-ac:9)
> * CMAC (00-0f-ac:6)
> * GMAC-128 (00-0f-ac:11)
> * GMAC-256 (00-0f-ac:12)
> Available Antennas: TX 0x3 RX 0x3
> Configured Antennas: TX 0x3 RX 0x3
> Supported interface modes:
>  * IBSS
>  * managed
>  * AP
>  * AP/VLAN
>  * monitor
>  * P2P-client
>  * P2P-GO
>  * P2P-device
> Band 1:
> Bitrates (non-HT):
> * 1.0 Mbps
> * 2.0 Mbps (short preamble supported)
> * 5.5 Mbps (short preamble supported)
> * 11.0 Mbps (short preamble supported)
> * 6.0 Mbps
> * 9.0 Mbps
> * 12.0 Mbps
> * 18.0 Mbps
> * 24.0 Mbps
> * 36.0 Mbps
> * 48.0 Mbps
> * 54.0 Mbps
> Frequencies:
> * 2412 MHz [1] 

[Bug 1911360] Re: Nvidia-Graphics-Drivers-460 Causes System To Not Boot

2021-10-14 Thread Edward Hope-Morley
** Project changed: maas-deployer => maas

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

Title:
  Nvidia-Graphics-Drivers-460 Causes System To Not Boot

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


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

[Bug 1906273] Re: iwlwifi - very slow for intel 9260/9560 wireless cards

2021-10-14 Thread Dan
You could try to disable 11n with the 8 option: `11n_disable=8`. It
worked for me.

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

Title:
  iwlwifi - very slow for intel 9260/9560 wireless cards

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


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

[Bug 1943286] Re: syncpackage crashed with urllib.error.URLError in do_open():

2021-10-14 Thread Dan Streetman
i don't see what else syncpackage should do; if urlopen() fails it
should just pass the error up; doing anything else is just hiding the
problem.

** Changed in: ubuntu-dev-tools (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/1943286

Title:
  syncpackage crashed with urllib.error.URLError in do_open(): 

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


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

[Bug 1818390] Re: [ubuntu-archive-assistant] Crash - RecursionError: maximum recursion depth exceeded

2021-10-14 Thread Dan Streetman
this has been removed from u-d-t

** Changed in: ubuntu-dev-tools (Ubuntu)
   Status: New => Won't Fix

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

Title:
  [ubuntu-archive-assistant] Crash - RecursionError: maximum recursion
  depth exceeded

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


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

[Bug 1875129] Re: [SRU] Upgrade to 1.7.3.4 to fix regression breaking Epoptes

2021-10-14 Thread Alkis Georgopoulos
@brian-murray, this is about a microrelease:
https://wiki.ubuntu.com/StableReleaseUpdates#New_upstream_microreleases

What .debdiff would I upload here? The new version is already in Ubuntu,
it could just be copied...

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

Title:
  [SRU] Upgrade to 1.7.3.4 to fix regression breaking Epoptes

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


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

[Bug 1946499] Re: installation of deb-packages with gdebi-gtk shows "dpkg: error: unable to read filedescriptor flags for : Bad file descriptor" in gdebi t

2021-10-14 Thread Gunnar Hjalmarsson
The downgrade idea would need to be approved by some leading member of
Ubuntu's desktop team, and since 21.10 is released today, also the SRU
team would need to approve it. (You already know what I think the answer
will be.)

It's correct that I have helped with some routine packaging of VTE a
couple of times, but that does not make me "familiar with VTE codebase".
I'm not. Packaging and tweaking upstream code are different things.

So it boils down to neither you nor me has the sufficient skill to dig
into the code, and that somebody who has needs to give it priority.
Maybe Martin W., maybe somebody in Ubuntu's desktop team.

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

Title:
  installation of deb-packages with gdebi-gtk shows "dpkg: error: unable
  to read filedescriptor flags for : Bad file descriptor" in gdebi terminal, package is not
  installed

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


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

[Bug 834895] Re: ubuntu-bug and package install failures should be disabled when a release reaches EOL

2021-10-14 Thread Brian Murray
** Changed in: apport (Ubuntu)
   Status: Invalid => Triaged

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

Title:
  ubuntu-bug and package install failures should be disabled when a
  release reaches EOL

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


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

[Bug 1945225] Re: udev produces unpredictable net names when PCI device is a bridge

2021-10-14 Thread Dan Streetman
>  I like the idea of the kernel command line argument because it is
easy to apply and consistent across install types.

I agree the kernel boot param is absolutely easier, especially in the
context of maas.

TL;DR from me is: I think it's at least worth looking at using a link
file, or some other simpler method for this specific situation/hardware;
if that's significantly more work and/or more complex, I'm +1 on this
MR.


For more detail; my main objection to the MR is 2 things:

1) it would (in very limited situations) change the interface naming for
anyone who is manually setting net-naming to 'latest' (which can be done
either with a boot param, or editing the env var used by systemd-udevd).
Why would anyone manually set that? I don't know for sure, since it is
(and as you say, has long been) the default for ubuntu builds of
systemd, but of course that's exactly the requirement for anyone to
actually use the change introduced by the MR, so it's possible.

2) it doesn't actually fix this for anyone currently experiencing the
problem; they would have to know about this change, and then take the
extra step of manually setting the net-naming. So this really is a
change that primarily benefits a very limited group of possibly affected
users.

Note that I don't think #2 is necessarily a blocker; I've done exactly
that before, e.g. bug 304393. I do think your backport of the v247
naming scheme is the best way to handle this *if* there is no other way
to address it (that isn't significantly more painful).

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

Title:
  udev produces unpredictable net names when PCI device is a bridge

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


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

[Bug 1946499] Re: installation of deb-packages with gdebi-gtk shows "dpkg: error: unable to read filedescriptor flags for : Bad file descriptor" in gdebi t

2021-10-14 Thread Dani Llewellyn
With this patch we can drop the 91_keep_fds.patch in vte

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

Title:
  installation of deb-packages with gdebi-gtk shows "dpkg: error: unable
  to read filedescriptor flags for : Bad file descriptor" in gdebi terminal, package is not
  installed

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


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

[Bug 1946499] Re: installation of deb-packages with gdebi-gtk shows "dpkg: error: unable to read filedescriptor flags for : Bad file descriptor" in gdebi t

2021-10-14 Thread Dani Llewellyn
Identical to patch added to #1756238.

** Patch added: "Patch to drop ubuntu-specific hack from gdebi because it is 
not needed any more"
   
https://bugs.launchpad.net/ubuntu/+source/gdebi/+bug/1946499/+attachment/5532964/+files/gdebi-no-ubuntu-specfics.debdiff

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

Title:
  installation of deb-packages with gdebi-gtk shows "dpkg: error: unable
  to read filedescriptor flags for : Bad file descriptor" in gdebi terminal, package is not
  installed

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


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

[Bug 1756238] Re: gdebi-gtk broken in 18.04 error: unable to read filedescriptor flags

2021-10-14 Thread Dani Llewellyn
@Marco Trevisan (@3v1n0) With this change, the 91_keep_fds.patch in vte
can be dropped

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

Title:
  gdebi-gtk broken in 18.04 error: unable to read filedescriptor flags

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


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

[Bug 1756238] Re: gdebi-gtk broken in 18.04 error: unable to read filedescriptor flags

2021-10-14 Thread Dani Llewellyn
** Patch added: "Patch to drop ubuntu-specific hack from gdebi because it is 
not needed any more"
   
https://bugs.launchpad.net/ubuntu/+source/gdebi/+bug/1756238/+attachment/5532963/+files/gdebi-no-ubuntu-specfics.debdiff

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

Title:
  gdebi-gtk broken in 18.04 error: unable to read filedescriptor flags

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


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

[Bug 1875129] Re: [SRU] Upgrade to 1.7.3.4 to fix regression breaking Epoptes

2021-10-14 Thread Brian Murray
There isn't anything (a debdiff for example) here to actually sponsor,
so I'm unsusbscribing the sponsorship team.

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

Title:
  [SRU] Upgrade to 1.7.3.4 to fix regression breaking Epoptes

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


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

[Bug 1405452] Re: Typo in man page ("introduce a much improvement mechanism")

2021-10-14 Thread Brian Murray
This is not something Ubuntu would carry a patch for but when this is
fixed in Debian we'll get the fix as the package is sync'ed from them.

** Changed in: wpa (Ubuntu)
   Status: Fix Committed => Triaged

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

Title:
  Typo in man page ("introduce a much improvement mechanism")

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


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

[Bug 1947188] [NEW] package linux-firmware 1.187.17 failed to install/upgrade: unable to open '/lib/firmware/r128/r128_cce.bin.dpkg-new': Operation not permitted

2021-10-14 Thread Kumar
Public bug reported:

this is encountered when I tried apt upgrade

ProblemType: Package
DistroRelease: Ubuntu 20.04
Package: linux-firmware 1.187.17
ProcVersionSignature: Ubuntu 5.11.0-37.41~20.04.2-generic 5.11.22
Uname: Linux 5.11.0-37-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.20
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  kumaradepu   2858 F pulseaudio
CasperMD5CheckResult: skip
Date: Thu Oct 14 22:53:56 2021
Dependencies:
 
ErrorMessage: unable to open '/lib/firmware/r128/r128_cce.bin.dpkg-new': 
Operation not permitted
InstallationDate: Installed on 2021-09-24 (20 days ago)
InstallationMedia: Ubuntu 20.04.3 LTS "Focal Fossa" - Release amd64 (20210819)
Lsusb:
 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
 Bus 001 Device 002: ID 0bda:5539 Realtek Semiconductor Corp. 
Integrated_Webcam_HD
 Bus 001 Device 003: ID 0cf3:e007 Qualcomm Atheros Communications 
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
MachineType: Dell Inc. Latitude 5300
PackageArchitecture: all
ProcFB: 0 i915drmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.11.0-37-generic 
root=UUID=f7268264-7e38-446b-b987-ce6c36322ac6 ro quiet splash vt.handoff=7
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.10, python3-minimal, 
3.8.2-0ubuntu2
PythonDetails: /usr/bin/python3.8, Python 3.8.10, unpackaged
RelatedPackageVersions: grub-pc 2.04-1ubuntu26.13
SourcePackage: linux-firmware
Title: package linux-firmware 1.187.17 failed to install/upgrade: unable to 
open '/lib/firmware/r128/r128_cce.bin.dpkg-new': Operation not permitted
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 01/22/2021
dmi.bios.release: 1.13
dmi.bios.vendor: Dell Inc.
dmi.bios.version: 1.13.1
dmi.board.name: 0932VT
dmi.board.vendor: Dell Inc.
dmi.board.version: A00
dmi.chassis.type: 10
dmi.chassis.vendor: Dell Inc.
dmi.modalias: 
dmi:bvnDellInc.:bvr1.13.1:bd01/22/2021:br1.13:svnDellInc.:pnLatitude5300:pvr:sku08B7:rvnDellInc.:rn0932VT:rvrA00:cvnDellInc.:ct10:cvr:
dmi.product.family: Latitude
dmi.product.name: Latitude 5300
dmi.product.sku: 08B7
dmi.sys.vendor: Dell Inc.

** Affects: linux-firmware (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/1947188

Title:
  package linux-firmware 1.187.17 failed to install/upgrade: unable to
  open '/lib/firmware/r128/r128_cce.bin.dpkg-new': Operation not
  permitted

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


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

[Bug 1946828] Re: ntfsresize hang and call traces in syslog

2021-10-14 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

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

Title:
  ntfsresize hang and call traces in syslog

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


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

[Bug 1946828] Re: ntfsresize hang and call traces in syslog

2021-10-14 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: ntfs-3g (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/1946828

Title:
  ntfsresize hang and call traces in syslog

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


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

[Bug 1947187] [NEW] Running in xorg unreadable firefox password request

2021-10-14 Thread BertN45
Public bug reported:

If I use xorg and Firefox asks for the master password that small window
is unreadable and distorted. See the screenshot. If I type in the
password blindly everything is working again. The problem does not exist
with Wayland, but that one has another issue :(

ProblemType: Bug
DistroRelease: Ubuntu 21.10
Package: xorg 1:7.7+22ubuntu2
ProcVersionSignature: Ubuntu 5.13.0-19.19-generic 5.13.14
Uname: Linux 5.13.0-19-generic x86_64
NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
ApportVersion: 2.20.11-0ubuntu70
Architecture: amd64
BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
CasperMD5CheckResult: pass
CompositorRunning: None
CurrentDesktop: ubuntu:GNOME
Date: Thu Oct 14 13:14:41 2021
DistUpgraded: 2021-10-14 11:46:37,562 DEBUG Running PostInstallScript: 
'/usr/lib/ubuntu-advantage/upgrade_lts_contract.py'
DistroCodename: impish
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes
GraphicsCard:
 Advanced Micro Devices, Inc. [AMD/ATI] Raven Ridge [Radeon Vega Series / 
Radeon Vega Mobile Series] [1002:15dd] (rev c8) (prog-if 00 [VGA controller])
   Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] Raven Ridge [Radeon Vega 
Series / Radeon Vega Mobile Series] [1002:15dd]
InstallationDate: Installed on 2021-10-09 (4 days ago)
InstallationMedia: Ubuntu 21.04 "Hirsute Hippo" - Release amd64 (20210420)
MachineType: To Be Filled By O.E.M. To Be Filled By O.E.M.
ProcKernelCmdLine: BOOT_IMAGE=/BOOT/ubuntu_57vi20@/vmlinuz-5.13.0-19-generic 
root=ZFS=rpool/ROOT/ubuntu_57vi20 ro quiet splash vt.handoff=1
SourcePackage: xorg
UpgradeStatus: Upgraded to impish on 2021-10-14 (0 days ago)
dmi.bios.date: 03/12/2021
dmi.bios.release: 5.17
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: P4.50
dmi.board.name: B450M-HDV R4.0
dmi.board.vendor: ASRock
dmi.chassis.asset.tag: To Be Filled By O.E.M.
dmi.chassis.type: 3
dmi.chassis.vendor: To Be Filled By O.E.M.
dmi.chassis.version: To Be Filled By O.E.M.
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrP4.50:bd03/12/2021:br5.17:svnToBeFilledByO.E.M.:pnToBeFilledByO.E.M.:pvrToBeFilledByO.E.M.:skuToBeFilledByO.E.M.:rvnASRock:rnB450M-HDVR4.0:rvr:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
dmi.product.family: To Be Filled By O.E.M.
dmi.product.name: To Be Filled By O.E.M.
dmi.product.sku: To Be Filled By O.E.M.
dmi.product.version: To Be Filled By O.E.M.
dmi.sys.vendor: To Be Filled By O.E.M.
version.compiz: compiz N/A
version.libdrm2: libdrm2 2.4.107-8ubuntu1
version.libgl1-mesa-dri: libgl1-mesa-dri 21.2.2-1ubuntu1
version.libgl1-mesa-glx: libgl1-mesa-glx N/A
version.xserver-xorg-core: xserver-xorg-core 2:1.20.13-1ubuntu1
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.1.0-2build1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20200714-1ubuntu2
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.17-1build1

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


** Tags: amd64 apport-bug impish ubuntu

** Attachment added: "Screenshot from 2021-10-14 13-13-48.png"
   
https://bugs.launchpad.net/bugs/1947187/+attachment/5532922/+files/Screenshot%20from%202021-10-14%2013-13-48.png

** Description changed:

  If I use xorg and Firefox asks for the master password that small window
- is unreadable and distorted. See the screenshot. The problem does not
- exist with Wayland, but that one has another issue :(
+ is unreadable and distorted. See the screenshot. If I type in the
+ password blindly everything is working again. The problem does not exist
+ with Wayland, but that one has another issue :(
  
  ProblemType: Bug
  DistroRelease: Ubuntu 21.10
  Package: xorg 1:7.7+22ubuntu2
  ProcVersionSignature: Ubuntu 5.13.0-19.19-generic 5.13.14
  Uname: Linux 5.13.0-19-generic x86_64
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  ApportVersion: 2.20.11-0ubuntu70
  Architecture: amd64
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CasperMD5CheckResult: pass
  CompositorRunning: None
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Oct 14 13:14:41 2021
  DistUpgraded: 2021-10-14 11:46:37,562 DEBUG Running PostInstallScript: 
'/usr/lib/ubuntu-advantage/upgrade_lts_contract.py'
  DistroCodename: impish
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
-  Advanced Micro Devices, Inc. [AMD/ATI] Raven Ridge [Radeon Vega Series / 
Radeon Vega Mobile Series] [1002:15dd] (rev c8) (prog-if 00 [VGA controller])
-Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] Raven Ridge [Radeon Vega 
Series / Radeon Vega Mobile Series] [1002:15dd]
+  Advanced Micro Devices, Inc. [AMD/ATI] Raven Ridge [Radeon Vega Series / 
Radeon Vega Mobile Series] [1002:15dd] (rev c8) (prog-if 00 [VGA controller])
+    Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] Raven Ridge [Radeon Vega 
Series / Radeon Vega Mobile Series] [1002:15dd]
  InstallationDate: Installed on 2021-10-

[Bug 1947115] Re: VAAPI / HW-acceleration not working Snap-packaged Firefox

2021-10-14 Thread Olivier Tilloy
I can confirm that this doesn't work out of the box.

When running the firefox snap with MOZ_LOG="PlatformDecoderModule:5", I
can see that libva tries to load drivers from $SNAP/gnome-
platform/usr/lib/x86_64-linux-gnu/dri/, where it can't find any such
driver. This is bug #1947180, for which I've proposed a fix in
snapcraft.

Once that is fixed, the next step is to ship said VA-API drivers, either
in the firefox snap itself, or in the platform snap (gnome-3-38-2004).

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

Title:
  VAAPI / HW-acceleration not working Snap-packaged Firefox

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


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

Re: [Bug 1946368] Re: HDMI output freezes under current/proposed impish kernels

2021-10-14 Thread fossfreedom
Similar here to William Wilson's observation - I've now done a clean
install - installed openssh-server - autologin.  With KMS and no
monitor attached the raspi hangs before any network is established -
confirmed via nmap scan.  With fkms & no monitor attached, boot occurs
ok and I can find the raspi IP via nmap and connect via ssh.

On Thu, 14 Oct 2021 at 17:10, knoedel fan <1946...@bugs.launchpad.net> wrote:
>
> #25
> No problem for me.
> Ubuntu Budgie 21.10 is only release candidate. So, if there is the final out 
> coming, I install this fresh.
> It's only my Test-System, and normally I use Ubuntu budgie 21.04.
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1946368
>
> Title:
>   HDMI output freezes under current/proposed impish kernels
>
> Status in linux-raspi package in Ubuntu:
>   Confirmed
> Status in linux-raspi source package in Impish:
>   Confirmed
>
> Bug description:
>   Under the current (5.13.0-1007.8) or proposed (5.13.0-1008.9) kernels
>   for the Ubuntu Pi pre-installed desktop impish release, the HDMI
>   output occasionally freezes. A known workaround at this time is to
>   change the following line in /boot/firmware/config.txt:
>
>   dtoverlay=vc4-kms-v3d
>
>   To the following:
>
>   dtoverlay=vc4-fkms-v3d
>
>   In other words, to use the "fake" KMS overlay (fkms) instead of the
>   "full" KMS overlay (kms).
>
>   I've been unable to determine a reliable method of guaranteeing a
>   freeze, but it appears to occur much more readily when video playback
>   is occurring, and when other interactions (especially moving windows
>   around, minimizing, restoring) occurs simultaneously.  Display suspend
>   also periodically causes the same hang, which made me suspect this
>   might be related to #1944397 but it appears that had a separate cause
>   (now resolved).
>
>   The following dmesg outputs have been observed immediately after the
>   display hang; this one from 1007.8:
>
>   [  513.762138] [drm:drm_crtc_commit_wait [drm]] *ERROR* flip_done timed out
>   [  513.762288] [drm:drm_atomic_helper_wait_for_dependencies 
> [drm_kms_helper]] *ERROR* [CRTC:76:crtc-3] co
>   mmit wait timed out
>   [  513.762381] [drm:drm_atomic_helper_wait_for_flip_done [drm_kms_helper]] 
> *ERROR* [CRTC:76:crtc-3] flip_
>   done timed out
>   [  524.002211] [drm:drm_crtc_commit_wait [drm]] *ERROR* flip_done timed out
>   [  524.002404] [drm:drm_atomic_helper_wait_for_dependencies 
> [drm_kms_helper]] *ERROR* [PLANE:205:plane-25
>   ] commit wait timed out
>   [  534.242499] [drm:drm_crtc_commit_wait [drm]] *ERROR* flip_done timed out
>   [  534.242657] vc4-drm gpu: [drm] *ERROR* Timed out waiting for commit
>   [  534.250685] [ cut here ]
>   [  534.250701] refcount_t: underflow; use-after-free.
>   [  534.250735] WARNING: CPU: 1 PID: 120 at lib/refcount.c:87 
> refcount_dec_not_one+0xa0/0xbc
>   [  534.250758] Modules linked in: rfcomm cmac algif_hash algif_skcipher 
> af_alg hci_uart btqca btrtl btbcm
>btintel bnep snd_soc_hdmi_codec vc4 btsdio snd_soc_core input_leds 
> bluetooth snd_compress snd_bcm2835(C)
>snd_pcm_dmaengine ecdh_generic ecc snd_pcm brcmfmac snd_seq_midi 
> snd_seq_midi_event bcm2835_codec(C) bcm
>   2835_isp(C) bcm2835_v4l2(C) brcmutil snd_rawmidi v4l2_mem2mem 
> bcm2835_mmal_vchiq(C) videobuf2_dma_contig
>   videobuf2_vmalloc cfg80211 videobuf2_memops videobuf2_v4l2 snd_seq 
> videobuf2_common videodev snd_seq_devi
>   ce mc snd_timer vc_sm_cma(C) raspberrypi_hwmon snd bcm2835_gpiomem 
> rpivid_mem uio_pdrv_genirq uio sch_fq_
>   codel ip_tables x_tables autofs4 btrfs blake2b_generic xor xor_neon 
> zstd_compress hid_generic usbhid raid
>   6_pq libcrc32c dm_mirror dm_region_hash dm_log spidev dwc2 v3d roles 
> udc_core gpu_sched crct10dif_ce i2c_
>   brcmstb i2c_bcm2835 spi_bcm2835 drm_kms_helper syscopyarea xhci_pci 
> xhci_pci_renesas sysfillrect sysimgbl
>   t fb_sys_fops cec drm phy_generic ac97_bus aes_arm64
>   [  534.251066] CPU: 1 PID: 120 Comm: kworker/1:2 Tainted: GWC   
>  5.13.0-1007-raspi #8-Ubuntu
>   [  534.251076] Hardware name: Raspberry Pi 400 Rev 1.1 (DT)
>   [  534.251083] Workqueue: events drm_mode_rmfb_work_fn [drm]
>   [  534.251239] pstate: 6045 (nZCv daif +PAN -UAO -TCO BTYPE=--)
>   [  534.251248] pc : refcount_dec_not_one+0xa0/0xbc
>   [  534.251257] lr : refcount_dec_not_one+0xa0/0xbc
>   [  534.251265] sp : 8000118cbb50
>   [  534.251269] x29: 8000118cbb50 x28: 6cf7ee894400 x27: 
> 6cf80502e000
>   [  534.251285] x26: 6cf80502e000 x25: 0006 x24: 
> 6cf7ee94c500
>   [  534.251300] x23: a94dff246018 x22: 6cf833068880 x21: 
> 6cf805027c80
>   [  534.251314] x20: 6cf88ead75ac x19: 6cf88ead7400 x18: 
> 
>   [  534.251328] x17:  x16: a94e0a243314 x15: 
> 
>   [  534.251342] x14:  x13: 0030 x12: 
> 

[Bug 1947185] [NEW] Wayland does not initially display conky output

2021-10-14 Thread BertN45
Public bug reported:

Starting Ubuntu with wayland does not initially display the .conkyrc
file. Only after a change in that file, conky restarts the display and
.conkyrc is displayed. Conky has been started according to the system
monitor. I doubled the time before starting conky, but that did not
help.

If I change the display to xorg, .conkyrc displays directly as expected.

ProblemType: Bug
DistroRelease: Ubuntu 21.10
Package: libwayland-bin (not installed)
ProcVersionSignature: Ubuntu 5.13.0-19.19-generic 5.13.14
Uname: Linux 5.13.0-19-generic x86_64
NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
ApportVersion: 2.20.11-0ubuntu70
Architecture: amd64
BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
CasperMD5CheckResult: pass
CompositorRunning: None
CurrentDesktop: ubuntu:GNOME
Date: Thu Oct 14 12:58:20 2021
DistUpgraded: 2021-10-14 11:46:37,562 DEBUG Running PostInstallScript: 
'/usr/lib/ubuntu-advantage/upgrade_lts_contract.py'
DistroCodename: impish
DistroVariant: ubuntu
GraphicsCard:
 Advanced Micro Devices, Inc. [AMD/ATI] Raven Ridge [Radeon Vega Series / 
Radeon Vega Mobile Series] [1002:15dd] (rev c8) (prog-if 00 [VGA controller])
   Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] Raven Ridge [Radeon Vega 
Series / Radeon Vega Mobile Series] [1002:15dd]
InstallationDate: Installed on 2021-10-09 (4 days ago)
InstallationMedia: Ubuntu 21.04 "Hirsute Hippo" - Release amd64 (20210420)
MachineType: To Be Filled By O.E.M. To Be Filled By O.E.M.
ProcKernelCmdLine: BOOT_IMAGE=/BOOT/ubuntu_57vi20@/vmlinuz-5.13.0-19-generic 
root=ZFS=rpool/ROOT/ubuntu_57vi20 ro quiet splash vt.handoff=1
SourcePackage: wayland
UpgradeStatus: Upgraded to impish on 2021-10-14 (0 days ago)
dmi.bios.date: 03/12/2021
dmi.bios.release: 5.17
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: P4.50
dmi.board.name: B450M-HDV R4.0
dmi.board.vendor: ASRock
dmi.chassis.asset.tag: To Be Filled By O.E.M.
dmi.chassis.type: 3
dmi.chassis.vendor: To Be Filled By O.E.M.
dmi.chassis.version: To Be Filled By O.E.M.
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrP4.50:bd03/12/2021:br5.17:svnToBeFilledByO.E.M.:pnToBeFilledByO.E.M.:pvrToBeFilledByO.E.M.:skuToBeFilledByO.E.M.:rvnASRock:rnB450M-HDVR4.0:rvr:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
dmi.product.family: To Be Filled By O.E.M.
dmi.product.name: To Be Filled By O.E.M.
dmi.product.sku: To Be Filled By O.E.M.
dmi.product.version: To Be Filled By O.E.M.
dmi.sys.vendor: To Be Filled By O.E.M.
version.compiz: compiz N/A
version.libdrm2: libdrm2 2.4.107-8ubuntu1
version.libgl1-mesa-dri: libgl1-mesa-dri 21.2.2-1ubuntu1
version.libgl1-mesa-glx: libgl1-mesa-glx N/A
version.xserver-xorg-core: xserver-xorg-core 2:1.20.13-1ubuntu1
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.1.0-2build1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20200714-1ubuntu2
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.17-1build1

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


** Tags: amd64 apport-bug impish ubuntu wayland-session

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

Title:
  Wayland does not initially display conky output

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


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

[Bug 1945967] Re: rtw89 kernel module for Realtek 8852 wifi is missing

2021-10-14 Thread Kai-Heng Feng
** Also affects: linux (Ubuntu Impish)
   Importance: Undecided
   Status: Confirmed

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

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

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

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

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

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

** Changed in: linux-oem-5.10 (Ubuntu Impish)
   Status: New => Invalid

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

** Changed in: linux-oem-5.13 (Ubuntu Focal)
   Status: New => Invalid

** Changed in: linux-oem-5.13 (Ubuntu Focal)
   Status: Invalid => Confirmed

** Changed in: linux-oem-5.13 (Ubuntu Impish)
   Status: New => Invalid

** Changed in: linux-oem-5.13 (Ubuntu Focal)
   Importance: Undecided => Medium

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

** Changed in: linux-oem-5.14 (Ubuntu Focal)
   Importance: Undecided => Medium

** Changed in: linux-oem-5.14 (Ubuntu Focal)
   Status: New => Confirmed

** Changed in: linux-oem-5.14 (Ubuntu Impish)
   Status: New => Invalid

** Description changed:

+ == SRU Justification ==
+ [Impact]
+ Realtek 8852AE, which is used by many new laptops, doesn't have a
+ driver.
+ 
+ [Fix]
+ Add rtw89 driver to support Realtek 8852AE.
+ 
+ [Test]
+ After applying the patch, 8852AE can scan, connect and do TX/RX.
+ 
+ [Where problems could occur]
+ This is a brand new driver, unless the driver hits some subtle PCI or
+ IOMMU bugs, there isn't much chance to introduce any regression.
+ 
+ == Original Bug Report ==
  Hi,
  
  Resulting: no wifi adapter detected.
  Currently WIP: 
https://patchwork.kernel.org/project/linux-wireless/list/?series=534633&state=*
  
  Workaround: use https://github.com/lwfinger/rtw89
  that allows to build a dkms deb package.
  
  Ubuntu Impish
  kernel 5.13 (or 5.15 from unstable ppa)
- --- 
+ ---
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu69
  Architecture: amd64
  AudioDevicesInUse:
-  USERPID ACCESS COMMAND
-  /dev/snd/controlC1:  fthx   4574 F pulseaudio
-  /dev/snd/controlC2:  fthx   4574 F pulseaudio
-  /dev/snd/controlC0:  fthx   4574 F pulseaudio
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC1:  fthx   4574 F pulseaudio
+  /dev/snd/controlC2:  fthx   4574 F pulseaudio
+  /dev/snd/controlC0:  fthx   4574 F pulseaudio
  CasperMD5CheckResult: pass
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 21.10
  InstallationDate: Installed on 2021-09-15 (20 days ago)
  InstallationMedia: Ubuntu 21.10 "Impish Indri" - Alpha amd64 (20210910)
  MachineType: LENOVO 21AVFR
  Package: linux (not installed)
  ProcEnviron:
-  TERM=xterm-256color
-  PATH=(custom, no user)
-  XDG_RUNTIME_DIR=
-  LANG=fr_FR.UTF-8
-  SHELL=/bin/bash
+  TERM=xterm-256color
+  PATH=(custom, no user)
+  XDG_RUNTIME_DIR=
+  LANG=fr_FR.UTF-8
+  SHELL=/bin/bash
  ProcFB: 0 amdgpu
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.15.0-4-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-4.4-generic 5.15.0-rc4
  RebootRequiredPkgs: Error: path contained symlinks.
  RelatedPackageVersions:
-  linux-restricted-modules-5.15.0-4-generic N/A
-  linux-backports-modules-5.15.0-4-generic  N/A
-  linux-firmware1.201
+  linux-restricted-modules-5.15.0-4-generic N/A
+  linux-backports-modules-5.15.0-4-generic  N/A
+  linux-firmware1.201
  Tags:  wayland-session impish
  Uname: Linux 5.15.0-4-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 06/21/2021
  dmi.bios.release: 1.9
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET39W (1.09 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21AVFR
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Defined
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.9
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET39W(1.09):bd06/21/2021:br1.9:efr1.9:svnLENOVO:pn21AVFR:pvrThinkPadP14sGen2a:rvnLENOVO:rn21AVFR:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21AVFR
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

Title:
  rtw89 kernel module for

[Bug 1932177] Re: [21.10 FEAT] KVM: Change Secure Execution Header defaults for plaintext control flags (PCF) (s390-tools)

2021-10-14 Thread Frank Heimes
** Information type changed from Private to Public

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

Title:
  [21.10 FEAT] KVM: Change Secure Execution Header defaults for
  plaintext control flags (PCF) (s390-tools)

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


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

[Bug 1926749] Re: [21.10 FEAT] zdsfs: Transparent data set conversion (s390-tools)

2021-10-14 Thread Frank Heimes
*** This bug is a duplicate of bug 1934988 ***
https://bugs.launchpad.net/bugs/1934988

** Information type changed from Private to Public

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

Title:
  [21.10 FEAT] zdsfs: Transparent data set conversion (s390-tools)

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


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

[Bug 1927080] Re: [21.10 FEAT] Upgrade binutils to latest version (version 2.37)

2021-10-14 Thread Frank Heimes
** Information type changed from Private to Public

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

Title:
  [21.10 FEAT] Upgrade binutils to latest version (version 2.37)

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


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

[Bug 1928799] Re: [21.10 FEAT] Upgrade libica to latest version (crypto) (3.8.0)

2021-10-14 Thread Frank Heimes
** Information type changed from Private to Public

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

Title:
  [21.10 FEAT] Upgrade libica to latest version (crypto) (3.8.0)

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


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

[Bug 1929024] Re: [21.10 FEAT] Upgrade s390-tools to latest version (2.17)

2021-10-14 Thread Frank Heimes
*** This bug is a duplicate of bug 1934988 ***
https://bugs.launchpad.net/bugs/1934988

** Information type changed from Private to Public

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

Title:
  [21.10 FEAT] Upgrade s390-tools to latest version (2.17)

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


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

[Bug 1929175] Re: [21.10 FEAT] openssl-ibmca: do not use libica software fallbacks (crypto)

2021-10-14 Thread Frank Heimes
*** This bug is a duplicate of bug 1929052 ***
https://bugs.launchpad.net/bugs/1929052

** Information type changed from Private to Public

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

Title:
  [21.10 FEAT] openssl-ibmca: do not use libica software fallbacks
  (crypto)

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


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

[Bug 1929176] Re: [21.10 FEAT] libica: make software fallback call to openSSL/libcrypto

2021-10-14 Thread Frank Heimes
*** This bug is a duplicate of bug 1928799 ***
https://bugs.launchpad.net/bugs/1928799

** Information type changed from Private to Public

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

Title:
  [21.10 FEAT] libica: make software fallback call to openSSL/libcrypto

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


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

[Bug 1929185] Re: [21.10 FEAT] RoCE: Predictable Interface Names (kernel)

2021-10-14 Thread Frank Heimes
** Information type changed from Private to Public

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

Title:
  [21.10 FEAT] RoCE: Predictable Interface Names (kernel)

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


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

[Bug 1932521] Re: [21.10 FEAT] zkey integration with KMIP server (s390-tools)

2021-10-14 Thread Frank Heimes
*** This bug is a duplicate of bug 1934988 ***
https://bugs.launchpad.net/bugs/1934988

** Information type changed from Private to Public

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

Title:
  [21.10 FEAT] zkey integration with KMIP server (s390-tools)

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


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

[Bug 1946888] Re: Merge pycparser from Debian unstable for 22.04

2021-10-14 Thread Stefano Rivera
Looks syncable to me.

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

Title:
  Merge pycparser from Debian unstable for 22.04

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


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

[Bug 1945225] Re: udev produces unpredictable net names when PCI device is a bridge

2021-10-14 Thread dann frazier
OK, I'll reach out to the MAAS team to see if they have a good
recommendation. To be clear of my goals here - I'm confident that I
could come up with a workaround that would work for my environment. My
goal here is to come up with an easy-to-apply workaround for other users
of such systems. I like the idea of the kernel command line argument
because it is easy to apply and consistent across install types.

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

Title:
  udev produces unpredictable net names when PCI device is a bridge

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


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

[Bug 1311463] Re: disk-setup unable to partition disks

2021-10-14 Thread James Falcon
** Changed in: cloud-init (Ubuntu Trusty)
   Status: Confirmed => Won't Fix

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

Title:
  disk-setup unable to partition disks

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


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

[Bug 1914215] Re: [21.10 FEAT] openCryptoki ep11 token: protected key support

2021-10-14 Thread Frank Heimes
*** This bug is a duplicate of bug 1928767 ***
https://bugs.launchpad.net/bugs/1928767

** Information type changed from Private to Public

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

Title:
  [21.10 FEAT] openCryptoki ep11 token: protected key support

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


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

[Bug 1887929] Re: [21.10 FEAT] Provide persistent vfio-ccw device assignments - libvirt part

2021-10-14 Thread Frank Heimes
** Information type changed from Private to Public

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

Title:
  [21.10 FEAT] Provide persistent vfio-ccw device assignments - libvirt
  part

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


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

[Bug 1913301] Re: [21.10 FEAT] openCryptoki cca token: import and export of secure key objects

2021-10-14 Thread Frank Heimes
*** This bug is a duplicate of bug 1928767 ***
https://bugs.launchpad.net/bugs/1928767

** Information type changed from Private to Public

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

Title:
  [21.10 FEAT] openCryptoki cca token: import and export of secure key
  objects

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


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

[Bug 1913303] Re: [21.10 FEAT] openCryptoki ep11 token: support attribute bound keys

2021-10-14 Thread Frank Heimes
*** This bug is a duplicate of bug 1928767 ***
https://bugs.launchpad.net/bugs/1928767

** Information type changed from Private to Public

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

Title:
  [21.10 FEAT] openCryptoki ep11 token: support attribute bound keys

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


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

[Bug 1926709] Re: [21.10 FEAT] LLVM 12 optimizations

2021-10-14 Thread Frank Heimes
** Information type changed from Private to Public

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

Title:
  [21.10 FEAT] LLVM 12 optimizations

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


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

<    1   2   3   4   5   6   7   >