[Bug 1908473] Re: rsyslog-relp: imrelp module leaves sockets in CLOSE_WAIT state which leads to file descriptor leak

2021-01-02 Thread Matthew Ruffell
Since we only need to change librelp to fix the problem, we won't SRU
the testcase to Focal's rsyslog, since there is no need to risk a
regression for a testcase, which would effectively be a no-change
rebuild.

The testcase is already present in rsyslog on Groovy and Hirsute,
marking as released.

I found an extra commit we need for librelp, which is "Fix FD leak when
socket shutdown is one-sided". This is needed for the netcat testcase
and for basic heartbeat programs like load balancers etc, which open a
port to the rsyslog relp port, but doesn't necessarily speak relp
protocol over that port.

Building test packages now since my internal tests are now successful
once I included "Fix FD leak when socket shutdown is one-sided".

** Description changed:

  [Impact]
  
  In recent versions of rsyslog and librelp, the imrelp module leaks file
  descriptors due to a bug where it does not correctly close sockets, and
  instead, leaves them in the CLOSE_WAIT state.
  
  This causes rsyslogd on busy servers to eventually hit the limit of
  maximum open files allowed, which locks rsyslogd up until it is
  restarted.
  
  A workaround is to restart rsyslogd every month or so to manually close
  all of the open sockets.
  
  Only users of the imrelp module are affected, and not rsyslog users in
  general.
  
  [Testcase]
  
  Install the rsyslog-relp module like so:
  
  $ sudo apt install rsyslog rsyslog-relp
  
  Next, generate a working directory, and make a config file that loads
  the relp module.
  
  $ sudo mkdir /workdir
  $ cat << EOF >> ./spool.conf
  \$LocalHostName spool
  \$AbortOnUncleanConfig on
  \$PreserveFQDN on
  
  global(
- workDirectory="/workdir"
- maxMessageSize="256k"
+ workDirectory="/workdir"
+ maxMessageSize="256k"
  )
  
  main_queue(queue.type="Direct")
  module(load="imrelp")
  input(
- type="imrelp"
- name="imrelp"
- port="601"
- ruleset="spool"
- MaxDataSize="256k"
+ type="imrelp"
+ name="imrelp"
+ port="601"
+ ruleset="spool"
+ MaxDataSize="256k"
  )
  
  ruleset(name="spool" queue.type="direct") {
  }
  
  # Just so rsyslog doesn't whine that we do not have outputs
  ruleset(name="noop" queue.type="direct") {
- action(
- type="omfile"
- name="omfile"
- file="/workdir/spool.log"
- )
+ action(
+ type="omfile"
+ name="omfile"
+ file="/workdir/spool.log"
+ )
  }
  EOF
  
  Verify that the config is valid, then start a rsyslog server.
  
  $ sudo rsyslogd -f ./spool.conf -N9
  $ sudo rsyslogd -f ./spool.conf -i /workdir/rsyslogd.pid
  
  Fetch the rsyslogd PID and check for open files.
  
  $ RLOGPID=$(cat /workdir/rsyslogd.pid)
  $ sudo ls -l /proc/$RLOGPID/fd
  total 0
  lr-x-- 1 root root 64 Dec 17 01:22 0 -> /dev/urandom
  lrwx-- 1 root root 64 Dec 17 01:22 1 -> 'socket:[41228]'
  lrwx-- 1 root root 64 Dec 17 01:22 3 -> 'socket:[41222]'
  lrwx-- 1 root root 64 Dec 17 01:22 4 -> 'socket:[41223]'
  lrwx-- 1 root root 64 Dec 17 01:22 7 -> 'anon_inode:[eventpoll]'
  
  We have 3 sockets open by default. Next, use netcat to open 100
  connections:
  
  $ for i in {1..100} ; do nc -z 127.0.0.1 601 ; done
  
  Now check for open file descriptors, and there will be an extra 100 sockets
  in the list:
  
  $ sudo ls -l /proc/$RLOGPID/fd
  
  https://paste.ubuntu.com/p/f6NQVNbZcR/
  
  We can check the state of these sockets with:
  
  $ ss -t
  
  https://paste.ubuntu.com/p/7Ts2FbxJrg/
  
  The listening sockets will be in CLOSE-WAIT, and the netcat sockets will
  be in FIN-WAIT-2.
  
  If you install the test package available in the following ppa:
  
  https://launchpad.net/~mruffell/+archive/ubuntu/sf299578-test
  
  When you open connections with netcat, these will be closed properly,
  and the file descriptor leak will be fixed.
  
  [Where problems could occur]
  
  If a regression were to occur, it would be limited to users of the
  imrelp module, which is a part of the rsyslogd-relp package, and depends
  on librelp.
  
  rsyslog-relp is not part of a default installation of rsyslog, and is
  opt in by changing a configuration file to enable imrelp.
  
  The changes to rsyslog implement a testcase which exercises the
  problematic code to ensure things are working as expected, and should
  run during autopkgtest time.
  
  [Other]
  
  Upstream bug list:
  
  https://github.com/rsyslog/rsyslog/issues/4350
  https://github.com/rsyslog/rsyslog/issues/4005
  https://github.com/rsyslog/librelp/issues/188
+ https://github.com/rsyslog/librelp/pull/193
  
  The following commits fix the problem:
  
  rsyslogd
  
  
  commit baee0bd5420649329793746f0daf87c4f59fe6a6
  Author: Andre lorbach 
  Date:   Thu Apr 9 13:00:35 2020 +0200
  Subject: testbench: Add test for imrelp to check broken session handling.
  Link: 
https://github.com/rsyslog/rsyslog/commit/baee0bd5420649329793746f0daf87c4f59fe6a6
  
  librelp
  ===
  
  commit 

[Bug 1909889] Re: GRUB 2 FAIL

2021-01-02 Thread Chris Guiver
** Package changed: ubiquity (Ubuntu) => grub-installer (Ubuntu)

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

Title:
  GRUB 2 FAIL

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

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

[Bug 1723392] Re: Please update backuppc to 4.x release (now 4.2.1) - major improvements and lots of bugfixes

2021-01-02 Thread Axel Beckert
4.4.0-2 is in hirsute-proposed (and in Debian Testing).

** Changed in: backuppc (Ubuntu)
   Status: Confirmed => Fix Released

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

Title:
  Please update backuppc to 4.x release (now 4.2.1) - major improvements
  and lots of bugfixes

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

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

[Bug 1909889] [NEW] GRUB 2 FAIL

2021-01-02 Thread Felix
Public bug reported:

I can't seem to install grub bootloader no matter which way i try, only
boots to windows since i am dual booting.

ProblemType: Bug
DistroRelease: Ubuntu 20.10
Package: ubiquity 20.10.13
ProcVersionSignature: Ubuntu 5.8.0-25.26-generic 5.8.14
Uname: Linux 5.8.0-25-generic x86_64
NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
ApportVersion: 2.20.11-0ubuntu50
Architecture: amd64
CasperMD5CheckMismatches: 
./pool/main/u/user-setup/user-setup_1.63ubuntu6_all.deb
CasperMD5CheckResult: skip
CasperVersion: 1.455
CurrentDesktop: ubuntu:GNOME
Date: Sun Jan  3 09:48:10 2021
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed 
maybe-ubiquity quiet splash ---
LiveMediaBuild: Ubuntu 20.10 "Groovy Gorilla" - Release amd64 (20201022)
ProcEnviron:
 LANGUAGE=en_US.UTF-8
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 LC_NUMERIC=C.UTF-8
RebootRequiredPkgs:
 linux-image-5.8.0-25-generic
 linux-base
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

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


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

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

Title:
  GRUB 2 FAIL

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

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

[Bug 1909888] Re: crashed while reinstalling

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

This package failure looks like it was caused by bad ISO download,
corrupted install media, or device failure. eg. look in the logs and
you'll see messages like these :-

Jan  3 06:24:53 ubuntu kernel: [   17.492847] SQUASHFS error: zlib 
decompression failed, data probably corrupt
Jan  3 06:24:53 ubuntu kernel: [   17.494140] SQUASHFS error: 
squashfs_read_data failed to read block 0x124cf932

Examining the information you have given us, this does not appear to be
a useful bug report so I am closing it, as it appears to be a bad ISO or
faulty device (inc. bad write-to-device). If you believe I'm in error,
please leave a comment explaining why and change the status back to
'New'. I suggest you verify your ISO download, and use the 'check disc
for defects' option to validate your media before install to ensure a
good download & write.

Possibly useful : https://tutorials.ubuntu.com/tutorial/tutorial-how-to-
verify-ubuntu#0 and
https://help.ubuntu.com/community/Installation/CDIntegrityCheck  (where
CD refers to your install media, be it CD, DVD, HDD, SSD, thumb-drive
etc)

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

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

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

Title:
  crashed while reinstalling

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

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

[Bug 1909888] [NEW] crashed while reinstalling

2021-01-02 Thread Frank Pechacek
Public bug reported:

Just after time zone while entering name

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: ubiquity 18.04.14.15
ProcVersionSignature: Ubuntu 5.4.0-42.46~18.04.1-generic 5.4.44
Uname: Linux 5.4.0-42-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.16
Architecture: amd64
CasperVersion: 1.394.3
Date: Sun Jan  3 00:29:44 2021
InstallCmdLine: fsck.mode=skip noprompt boot=casper floppy.allowed_drive_mask=0 
ignore_uuid --
LiveMediaBuild: Ubuntu 18.04.5 LTS "Bionic Beaver" - Release amd64 (20200806.1)
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: ubuntu
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug bionic ubiquity-18.04.14.15

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

Title:
  crashed while reinstalling

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

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

[Bug 1909887] [NEW] package oscar 1.0.1-r1 failed to install/upgrade: le paquet est dans un état vraiment incohérent; vous devriez le réinstaller avant de tenter de le configurer.

2021-01-02 Thread Mickaël Roux
Public bug reported:

le paquet est dans un état vraiment incohérent; vous devriez  le
réinstaller avant de tenter de le configurer.

ProblemType: Package
DistroRelease: Ubuntu 20.04
Package: oscar 1.0.1-r1
ProcVersionSignature: Ubuntu 5.4.0-48.52-generic 5.4.60
Uname: Linux 5.4.0-48-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.14
AptOrdering: NULL: ConfigurePending
Architecture: amd64
CasperMD5CheckResult: skip
Date: Sun Jan  3 06:44:56 2021
DpkgTerminalLog:
 dpkg: erreur de traitement du paquet oscar (--configure) :
  le paquet est dans un état vraiment incohérent; vous devriez
  le réinstaller avant de tenter de le configurer.
ErrorMessage: le paquet est dans un état vraiment incohérent; vous devriez  le 
réinstaller avant de tenter de le configurer.
InstallationDate: Installed on 2020-06-20 (197 days ago)
InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
Python3Details: /usr/bin/python3.8, Python 3.8.5, python3-minimal, 
3.8.2-0ubuntu2
PythonDetails: N/A
RelatedPackageVersions:
 dpkg 1.19.7ubuntu3
 apt  2.0.2ubuntu0.2
SourcePackage: oscar
Title: package oscar 1.0.1-r1 failed to install/upgrade: le paquet est dans un 
état vraiment incohérent; vous devriez  le réinstaller avant de tenter de le 
configurer.
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: oscar (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/1909887

Title:
  package oscar 1.0.1-r1 failed to install/upgrade: le paquet est dans
  un état vraiment incohérent; vous devriez  le réinstaller avant de
  tenter de le configurer.

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

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

[Bug 1667992] Re: ctrl-c sometimes causes wayland session to exit

2021-01-02 Thread Launchpad Bug Tracker
[Expired for gnome-session (Ubuntu) because there has been no activity
for 60 days.]

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

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

Title:
  ctrl-c sometimes causes wayland session to exit

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

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

[Bug 1883292] Re: Laptop not suspending on lid close after external monitors disconnected

2021-01-02 Thread Launchpad Bug Tracker
[Expired for gdm3 (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  Laptop not suspending on lid close after external monitors
  disconnected

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

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

[Bug 1898389] Re: browser frequently crashing with trap int3

2021-01-02 Thread Launchpad Bug Tracker
[Expired for chromium-browser (Ubuntu) because there has been no
activity for 60 days.]

** Changed in: chromium-browser (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  browser frequently crashing with  trap int3

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/chromium-browser/+bug/1898389/+subscriptions

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

[Bug 1902446] Re: Not possible to see list of wifi networks

2021-01-02 Thread Launchpad Bug Tracker
[Expired for network-manager (Ubuntu) because there has been no activity
for 60 days.]

** Changed in: network-manager (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  Not possible to see list of wifi networks

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

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

[Bug 1902545] Re: software-properties-gtk error

2021-01-02 Thread Launchpad Bug Tracker
[Expired for software-properties (Ubuntu) because there has been no
activity for 60 days.]

** Changed in: software-properties (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  software-properties-gtk error

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

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

[Bug 1902595] Re: Unit strongswan.service could not be found. (regression)

2021-01-02 Thread Launchpad Bug Tracker
[Expired for strongswan (Ubuntu) because there has been no activity for
60 days.]

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

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

Title:
  Unit strongswan.service could not be found. (regression)

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

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

[Bug 1902658] Re: hp printers have version error

2021-01-02 Thread Launchpad Bug Tracker
[Expired for hplip (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  hp printers have version error

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

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

[Bug 1902660] Re: Display bug

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

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

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

Title:
  Display bug

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

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

[Bug 1902715] Re: Change alert sound ubuntu not working (Ubuntu 20.04 LTS)

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

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

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

Title:
  Change alert sound ubuntu not working (Ubuntu 20.04 LTS)

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

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

[Bug 1902721] Re: xrandr fails to set screen size while starting X11

2021-01-02 Thread Launchpad Bug Tracker
[Expired for xorg-server (Ubuntu) because there has been no activity for
60 days.]

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

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

Title:
  xrandr fails to set screen size while starting X11

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

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

[Bug 1902721] Re: xrandr fails to set screen size while starting X11

2021-01-02 Thread Launchpad Bug Tracker
[Expired for x11-xserver-utils (Ubuntu) because there has been no
activity for 60 days.]

** Changed in: x11-xserver-utils (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  xrandr fails to set screen size while starting X11

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

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

[Bug 1902740] Re: package unattended-upgrades 1.1ubuntu1.18.04.7~16.04.6 failed to install/upgrade: package is in a very bad inconsistent state; you should reinstall it before attempting configuratio

2021-01-02 Thread Launchpad Bug Tracker
[Expired for unattended-upgrades (Ubuntu) because there has been no
activity for 60 days.]

** Changed in: unattended-upgrades (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  package unattended-upgrades 1.1ubuntu1.18.04.7~16.04.6 failed to
  install/upgrade: package is in a very bad inconsistent state; you
  should  reinstall it before attempting configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unattended-upgrades/+bug/1902740/+subscriptions

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

[Bug 1902810] Re: [i915] Dell Latitude 5285 video flicker when an external monitor is connected

2021-01-02 Thread Launchpad Bug Tracker
[Expired for xorg-server (Ubuntu) because there has been no activity for
60 days.]

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

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

Title:
  [i915] Dell Latitude 5285 video flicker when an external monitor is
  connected

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

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

[Bug 1909886] [NEW] package libcdio-dev 2.0.0-2 failed to install/upgrade: trying to overwrite shared '/usr/include/cdio/cdio_config.h', which is different from other instances of package libcdio-dev

2021-01-02 Thread Erik Peterson
Public bug reported:

amd64 architecture libcdio-dev installed fine, x86 presented above error

ProblemType: Package
DistroRelease: Ubuntu 20.04
Package: libcdio-dev 2.0.0-2
ProcVersionSignature: Ubuntu 5.4.0-58.64-generic 5.4.73
Uname: Linux 5.4.0-58-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.14
AptOrdering:
 libcdio-dev:i386: Install
 libudf0:i386: Install
 libudf-dev:i386: Install
 NULL: ConfigurePending
Architecture: amd64
CasperMD5CheckResult: skip
Date: Sat Jan  2 15:05:18 2021
DpkgTerminalLog:
 Preparing to unpack .../libcdio-dev_2.0.0-2_i386.deb ...
 Unpacking libcdio-dev:i386 (2.0.0-2) ...
 dpkg: error processing archive 
/var/cache/apt/archives/libcdio-dev_2.0.0-2_i386.deb (--unpack):
  trying to overwrite shared '/usr/include/cdio/cdio_config.h', which is 
different from other instances of package libcdio-dev:i386
ErrorMessage: trying to overwrite shared '/usr/include/cdio/cdio_config.h', 
which is different from other instances of package libcdio-dev:i386
InstallationDate: Installed on 2020-12-29 (4 days ago)
InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
Python3Details: /usr/bin/python3.8, Python 3.8.5, python3-minimal, 
3.8.2-0ubuntu2
PythonDetails: /usr/bin/python2.7, Python 2.7.18, python-is-python2, 2.7.17-4
RelatedPackageVersions:
 dpkg 1.19.7ubuntu3
 apt  2.0.2ubuntu0.2
SourcePackage: libcdio
Title: package libcdio-dev 2.0.0-2 failed to install/upgrade: trying to 
overwrite shared '/usr/include/cdio/cdio_config.h', which is different from 
other instances of package libcdio-dev:i386
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: libcdio (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/1909886

Title:
  package libcdio-dev 2.0.0-2 failed to install/upgrade: trying to
  overwrite shared '/usr/include/cdio/cdio_config.h', which is different
  from other instances of package libcdio-dev:i386

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

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

[Bug 1909062] Re: qede: Kubernetes Internal DNS Failure due to QL41xxx NIC not supporting IPIP tx csum offload

2021-01-02 Thread Matthew Ruffell
Thanks Manish! I am building a test kernel now, and I will let you know
once it is ready to test.

If we get good test results, I will submit the patch for SRU to the
Ubuntu kernels once the patch has hit mainline.

** Description changed:

- With QL41xxx and Ubuntu DNS server DNS failures are seen when updated to
- the latest Ubuntu kernel 20.04.1 LTS version 5.4.0-52-generic. Issue was
- not observed with 4.5 ubuntu-linux.
+ BugLink: https://bugs.launchpad.net/bugs/1909062
  
- Problem Definition:
- OS Version: /etc/os-release shows Ubuntu 18.04.4 LTS, but Booted kernel is 
the latest Ubuntu 20.04.1 LTS version 5.4.0-52-generic
- NIC: 2 dual-port (4) QLogic Corp. FastLinQ QL41000 Series 10/25/40/50GbE 
Controller [1077:8070] (rev 02)
- Inbox driver qede v8.37.0.20
+ [Impact]
  
- Complete Detailed Problem Description:
- Anything that uses the internal Kubernetes DNS server fails. If an external 
DNS server is used resolution works for non-Kubernetes IPs.
+ For users with QLogic QL41xxx series NICs, such as the FastLinQ QL41000
+ Series 10/25/40/50GbE Controller, when they upgrade from the 4.15 kernel
+ to the 5.4 kernel, Kubernetes Internal DNS requests will fail, due to
+ these packets getting corrupted.
  
- Similar issue is described in this article.
- https://github.com/kubernetes/kubernetes/issues/95365
+ Kubernetes uses IPIP tunnelled packets for internal DNS resolution, and
+ this particular packet type is not supported for hardware tx checksum
+ offload, and the packets end up corrupted when the qede driver attempts
+ to checksum them.
  
- Below patch recently on upstream fixes this -
- [Note that issue was introduced by driver's tunnel offload support which was 
added in after 4.5 kernel]
+ This only affects internal Kubernetes DNS, as regular DNS lookups to
+ regular external domains will succeed, due to them not using IPIP packet
+ types.
+ 
+ [Fix]
+ 
+ Marvell has developed a fix for the qede driver, which checks the packet
+ type, and if it is IPPROTO_IPIP, then csum offloads are disabled for
+ socket buffers of type IPIP.
  
  commit 5d5647dad259bb416fd5d3d87012760386d97530
  Author: Manish Chopra 
- Date:   Mon Dec 21 06:55:30 2020 -0800
+ Date: Mon Dec 21 06:55:30 2020 -0800
+ Subject: qede: fix offload for IPIP tunnel packets
+ Link: 
https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git/commit/?id=5d5647dad259bb416fd5d3d87012760386d97530
  
- qede: fix offload for IPIP tunnel packets
+ This commit is currently in the netdev tree, awaiting merge to mainline.
+ The commit is queued for upstream stable.
  
- IPIP tunnels packets are unknown to device,
- hence these packets are incorrectly parsed and
- caused the packet corruption, so disable offlods
- for such packets at run time.
+ [Testcase]
  
- Signed-off-by: Manish Chopra 
- Signed-off-by: Sudarsana Kalluru 
- Signed-off-by: Igor Russkikh 
- Link: https://lore.kernel.org/r/20201221145530.7771-1-mani...@marvell.com
- Signed-off-by: Jakub Kicinski 
+ The system must have a QLogic QL41xxx series NIC fitted, and needs to be
+ a part of a Kubernetes cluster.
  
- Thanks,
- Manish
+ Firstly, get a list of all devices in the system:
+ 
+ $ sudo ifconfig
+ 
+ Next, set all devices down with:
+ 
+ $ sudo ifconfig  down
+ 
+ Next, bring up the QLogic QL41xxx device:
+ 
+ $ sudo ifconfig  up
+ 
+ Then, attempt to lookup an internal Kubernetes domain:
+ 
+ $ nslookup 
+ 
+ Without the patch, the connection will time out:
+ 
+ ;; connection timed out; no servers could be reached
+ 
+ If we look at packet traces with tcpdump, we see it leaves the source,
+ but never arrives at the destination.
+ 
+ There is a test kernel available in the following ppa:
+ 
+ https://launchpad.net/~mruffell/+archive/ubuntu/sf297772-test
+ 
+ If you install it, then Kubernetes internal DNS lookups will succeed.
+ 
+ [Where problems could occur]
+ 
+ If a regression were to occur, then users of the qede driver would be
+ affected. This is limited to those with QLogic QL41xxx series NICs. The
+ patch explicitly checks for IPIP type packets, so only those particular
+ packets would be affected.
+ 
+ Since IPIP type packets are uncommon, it would not cause a total outage
+ on regression, since most packets are not IPIP tunnelled. It could
+ potentially cause problems for users who frequently handle VPN or
+ Kubernetes internal DNS traffic.
+ 
+ A workaround would be to use ethtool to disable tx csum offload for all
+ packet types, or to revert to an older kernel.

** Tags added: sts

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

Title:
  qede: Kubernetes Internal DNS Failure due to QL41xxx NIC not
  supporting IPIP tx csum offload

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com

[Bug 1883493] Re: amdgpu hangs from time to time with *ERROR* Waiting for fences timed out!

2021-01-02 Thread Peter Silva
for people using stable 20.04:

I used apt-cache to notice kernel 5.8 was in the repos (no special ones in use.)
I don't get why it is there and not used, but decided to try it.

I did:

sudo apt install linux-image-5.8.0-33-generic

then rebooted, and had no networking... then did:

sudo apt install linux-modules-extra-5.8.0-33-generic

and everything is working again, and I can use google maps without fear.
not sure If I will get kernel updates though...

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

Title:
  amdgpu hangs from time to time with *ERROR* Waiting for fences timed
  out!

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

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

[Bug 1909062] Re: Ubuntu kernel 5.x QL41xxx NIC (qede driver) Kubernetes internal DNS failure

2021-01-02 Thread Matthew Ruffell
** Changed in: linux (Ubuntu Focal)
   Status: New => In Progress

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

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

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

** Changed in: linux (Ubuntu Focal)
 Assignee: (unassigned) => Matthew Ruffell (mruffell)

** Changed in: linux (Ubuntu Groovy)
 Assignee: (unassigned) => Matthew Ruffell (mruffell)

** Summary changed:

- Ubuntu kernel 5.x QL41xxx NIC (qede driver) Kubernetes internal DNS failure
+ qede: Kubernetes Internal DNS Failure due to QL41xxx NIC not supporting IPIP 
tx csum offload

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

Title:
  qede: Kubernetes Internal DNS Failure due to QL41xxx NIC not
  supporting IPIP tx csum offload

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

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

[Bug 1906117] Re: program 'wx-config' missing from wx-common

2021-01-02 Thread Scott Talbert
Hi, wx-config is provided by the libwxgtk3.0-gtk3-dev package.

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

Title:
  program 'wx-config' missing from wx-common

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wxwidgets3.0/+bug/1906117/+subscriptions

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

Re: [Bug 1908829] package linux-headers-5.4.0-58 5.4.0-58.64 failed to install/upgrade: unable to create new file '/var/lib/dpkg/info/linux-headers-5.4.0-58.list-new': Operation not permitted

2021-01-02 Thread Ian Jones
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1908829

Title:
  package linux-headers-5.4.0-58 5.4.0-58.64 failed to install/upgrade:
  unable to create new file '/var/lib/dpkg/info/linux-headers-5.4.0-58
  .list-new': Operation not permitted

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

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

[Bug 1909062] Re: Ubuntu kernel 5.x QL41xxx NIC (qede driver) Kubernetes internal DNS failure

2021-01-02 Thread Matthew Ruffell
** Also affects: linux (Ubuntu Groovy)
   Importance: Undecided
   Status: New

** Also affects: linux (Ubuntu Focal)
   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/1909062

Title:
  Ubuntu kernel 5.x QL41xxx NIC (qede driver) Kubernetes internal DNS
  failure

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

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

[Bug 1909885] [NEW] version 0.7.1 is bugged , can you please update to 0.8.0 ?

2021-01-02 Thread Gabriele Giorgetti
Public bug reported:

The version 0.7.1 is bugged, it's crashing on the second execution.
Version 0.8.0 has been released.
Here
https://github.com/gabgio/knocker
or Here
https://knocker.sourceforge.io

Thanks !

** Affects: knocker (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/1909885

Title:
  version 0.7.1 is bugged , can you please update to 0.8.0 ?

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

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

[Bug 1905054]

2021-01-02 Thread Smolnar
https://hg.mozilla.org/mozilla-central/rev/bb634a5d7268

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

Title:
  Firefox 83 Breaks WebGL

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

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

[Bug 1905054]

2021-01-02 Thread Release-mgmt-account-bot
Since the status are different for nightly and release, what's the status for 
beta?
For more information, please visit [auto_nag 
documentation](https://wiki.mozilla.org/Release_Management/autonag#missing_beta_status.py).

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

Title:
  Firefox 83 Breaks WebGL

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

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

[Bug 1905054]

2021-01-02 Thread Pulsebot
Pushed by jgilb...@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/bb634a5d7268
Disable failIfMajorPerformanceCaveat by default. r=lsalzman

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

Title:
  Firefox 83 Breaks WebGL

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

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

[Bug 1905054]

2021-01-02 Thread Jgilbert
Created attachment 9194895
Bug 1678652 - Disable failIfMajorPerformanceCaveat by default.

The goal of the WebGL Working Group was for failIfMajorPerformanceCaveat
to allow websites to make better choices about which content to serve to
users, ideally via offering a choice to users.

I no longer think that this is useful here, or rather it's only ever
useful in the very narrow case: When a website does indeed have a
fallback ready, and the fallback does actually have better perf.

Today this is only true on some Windows systems that have cpu-emulated
webgl, but gpu-accelerated canvas2d, but this is not most systems.
Simultaneously, we've seen a disappointingly large set of websites break
for users that hit the failIfMajorPerformanceCaveat path.

Since the usefulness of failIfMajorPerformanceCaveat is very limited,
and many sites don't cooperate with us (as the user's User Agent), I
think it's best to disable failIfMajorPerformanceCaveat for the time
being.

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

Title:
  Firefox 83 Breaks WebGL

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

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

[Bug 1905054]

2021-01-02 Thread Jgilbert
*** Bug 1684475 has been marked as a duplicate of this bug. ***

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

Title:
  Firefox 83 Breaks WebGL

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

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

[Bug 1905054]

2021-01-02 Thread Jgilbert
The goal of the WebGL Working Group was for failIfMajorPerformanceCaveat
to allow websites to make better choices about which content to serve to
users, ideally via offering a choice to users.

I no longer think that this is useful here, or rather it's only ever
useful in the very narrow case: When a website does indeed have a
fallback ready, and the fallback does actually have better perf.

Today this is only true on some Windows systems that have cpu-emulated webgl, 
but gpu-accelerated canvas2d, but this is not most systems.
Simultaneously, we've seen a disappointingly large set of websites break for 
users that hit the failIfMajorPerformanceCaveat path.

Since the usefulness of failIfMajorPerformanceCaveat is very limited,
and many sites don't cooperate with us (as the user's User Agent), I
think it's best to disable failIfMajorPerformanceCaveat for the time
being.

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

Title:
  Firefox 83 Breaks WebGL

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

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

[Bug 1905054]

2021-01-02 Thread panzi
(In reply to Jeff Gilbert [:jgilbert] from comment #25)
> (In reply to panzi from comment #22)
> > > Call these bad websites, and try outreach/education
> > 
> > How do I call Google? Also since they haven't fixed it until now, I doubt 
> > they ever will. Is there some hack to make it work? An user script?
> 
> That was supposed to be "call out", sorry!
> Google Maps accepts feedback via the "Send feedback..." menu option.
> 
> In newer versions of Firefox, the console warning will direct you to use 
> about:config's webgl.disable-fail-if-major-performance-caveat if you keep 
> having issues with bad websites.

Thank you! Finally I have 3D maps in Firefox again! :D

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

Title:
  Firefox 83 Breaks WebGL

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

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

[Bug 1905054]

2021-01-02 Thread Pat Suwalski
I can't speak for 3D, but seeing as the 2D rendering is still loads
quicker than canvas, the "performance caveat" really isn't.

What should PIXI, or any site, do with this information?

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

Title:
  Firefox 83 Breaks WebGL

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

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

[Bug 1905054]

2021-01-02 Thread Jgilbert
The system unfortunately does (probably) have a performance caveat,
because we've included "readback required for compositing" as a caveat,
which is a long-time issue on Linux for us.

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

Title:
  Firefox 83 Breaks WebGL

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

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

[Bug 1905054]

2021-01-02 Thread Pat Suwalski
(In reply to Jeff Gilbert [:jgilbert] from comment #24)
> (In reply to Pat Suwalski from comment #20)
> > (In reply to Jeff Gilbert [:jgilbert] from comment #19)
> > > Honestly at this point I'm tending towards #2.
> > > Websites had the chance to handle this well and they have bungled it, so 
> > > I think we should disable failIfMajorPerformanceCaveat as it stands today.
> > 
> > Are you suggesting PIXI doesn't handle this properly?
> 
> Yes, that's what it sounds like.

So what changed? If the system in question doesn't have a "major
performance caveat" and the browser is reporting that it does, how is
that PIXI mishandling it?

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

Title:
  Firefox 83 Breaks WebGL

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

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

[Bug 1905054]

2021-01-02 Thread Jgilbert
(In reply to panzi from comment #22)
> > Call these bad websites, and try outreach/education
> 
> How do I call Google? Also since they haven't fixed it until now, I doubt 
> they ever will. Is there some hack to make it work? An user script?

That was supposed to be "call out", sorry!
Google Maps accepts feedback via the "Send feedback..." menu option.

In newer versions of Firefox, the console warning will direct you to use
about:config's webgl.disable-fail-if-major-performance-caveat if you
keep having issues with bad websites.

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

Title:
  Firefox 83 Breaks WebGL

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

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

[Bug 1905054]

2021-01-02 Thread Web-illuminator
Same problem on a Lenovo T530, i915 grafic controller, using via Firefox  84.0 
(Ubuntur 20.04.1 LTS) tensorflow e.g with 
https://storage.googleapis.com/tfjs-models/demos/posenet/camera.html   
Just by calling the page it tells (along with poor peformance):
 Failed to create WebGL context: failIfMajorPerformanceCaveat: Compositor is 
not hardware-accelerated. canvas_util.ts:83:16
With Chromium browser 87.0.4280.88 , it's works as expected. It worked also 
nicely with older Firefox Version.

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

Title:
  Firefox 83 Breaks WebGL

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

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

[Bug 1905054]

2021-01-02 Thread Jgilbert
(In reply to Pat Suwalski from comment #20)
> (In reply to Jeff Gilbert [:jgilbert] from comment #19)
> > Honestly at this point I'm tending towards #2.
> > Websites had the chance to handle this well and they have bungled it, so I 
> > think we should disable failIfMajorPerformanceCaveat as it stands today.
> 
> Are you suggesting PIXI doesn't handle this properly?

Yes, that's what it sounds like.

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

Title:
  Firefox 83 Breaks WebGL

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

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

[Bug 1905054] Re: Firefox 83 Breaks WebGL

2021-01-02 Thread Bug Watch Updater
** Changed in: firefox
   Status: Confirmed => Fix Released

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

Title:
  Firefox 83 Breaks WebGL

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

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

[Bug 1909884] [NEW] tracker-extract crashes with SIGSYS when adding pdf to filesystem

2021-01-02 Thread Juliane
Public bug reported:

Almost daily, _usr_libexec_tracker-extract.1000.crash shows up in
/var/crash.

I'm using Raspberry Pi 4B 8GB with Ubuntu 20.10 Desktop and lxqt as
Desktop.

uname -a:
Linux myRaspi 5.8.0-1010-raspi #13-Ubuntu SMP PREEMPT Wed Dec 9 17:14:07 UTC 
2020 aarch64 aarch64 aarch64 GNU/Linux

I saw in a previous backtrace that a pdf was the problem. So i
downloaded some pdf with firefox to /home/username/Documents. In my case
it was https://www.who.int/ceh/capacity/sanitation_hygiene.pdf

After doing that, a crash-report was dumped by apport to /var/crash.

A backtrace and full backtrace is in the attachment.

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


** Tags: apport crash pdf tracker-extract

** Attachment added: "backtrace.txt"
   
https://bugs.launchpad.net/bugs/1909884/+attachment/5448771/+files/backtrace.txt

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

Title:
  tracker-extract crashes with SIGSYS when adding pdf to filesystem

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

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

[Bug 1907460] Re: FTFBS in Hirsute - failed test (blocking capstone)

2021-01-02 Thread Logan Rosen
** Changed in: uftrace (Ubuntu)
 Assignee: (unassigned) => Logan Rosen (logan)

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

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

** Tags added: ftbfs

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

Title:
  FTFBS in Hirsute - failed test (blocking capstone)

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

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

[Bug 1907460] Re: FTFBS in Hirsute - failed test (blocking capstone)

2021-01-02 Thread Logan Rosen
Ah whoops, just saw this bug. I just uploaded a fix that worked locally
(a patch from upstream that makes the test more "robust").

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

Title:
  FTFBS in Hirsute - failed test (blocking capstone)

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

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

[Bug 1209095] Re: Thunderbird hogs CPU while waiting for master password

2021-01-02 Thread Bug Watch Updater
Launchpad has imported 31 comments from the remote bug at
https://bugzilla.mozilla.org/show_bug.cgi?id=791535.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.


On 2012-09-16T09:13:30+00:00 toralf wrote:

User Agent: Mozilla/5.0 (X11; Linux i686; rv:15.0) Gecko/20100101 Firefox/15.0.1
Build ID: 20120907154448

Steps to reproduce:

started Thunderbird and forgot to type in the password


Actual results:

4-core CPU is up to 100%, fan is very noisy


Expected results:

a (milli)sleep in that source code loop to keep my ThinkPad quiet and
cool

Reply at:
https://bugs.launchpad.net/ubuntu/+source/thunderbird/+bug/1209095/comments/0


On 2012-10-09T15:48:32+00:00 toralf wrote:

maybe a blinking task bar window should be enough for forgetful people
like me.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/thunderbird/+bug/1209095/comments/1


On 2012-12-04T18:18:00+00:00 Vseerror wrote:

I see this with imap account

Reply at:
https://bugs.launchpad.net/ubuntu/+source/thunderbird/+bug/1209095/comments/2


On 2012-12-04T19:09:45+00:00 Vseerror wrote:

steps
1. start thunderbird
2. click on imap account folder where it is set to check for new messages at X 
interval and does NOT have account password saved.

results:
password prompt comes up
progress meter spins

not 100% reproducible after first occurrence, unless you restart
thunderbird

Reply at:
https://bugs.launchpad.net/ubuntu/+source/thunderbird/+bug/1209095/comments/3


On 2012-12-04T20:12:54+00:00 Acelists wrote:

OK, this is a good reproducible case, I can see it.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/thunderbird/+bug/1209095/comments/4


On 2012-12-04T20:32:18+00:00 Acelists wrote:

So in case of this statusbar scrollbar it is defined in
mail/base/content/mailWindowOverlay.xul id="statusbar-progresspanel".
The progress is updated in
mail/base/content/mailWindow.js::updateProgress . From what I could see
we DO NOT call this function often (only once at beginning and once at
finish of the progressbar. It is an "undetermined" mode progress bar so
it spins by itself once started. It seems the internal XUL
implementation of the progressmeter widget is not very efficient. The
implementation is in mozilla/toolkit/content/widgets/progressmeter.xml
. There seems to be a tight
loop calling mozRequestAnimationFrame() without any throttling (if the
mozRequestAnimationFrame does not have any).

According to http://dvcs.w3.org/hg/webperf/raw-
file/tip/specs/RequestAnimationFrame/Overview.html this is the intended
operation and the application (FF/TB) determines how many frames per
second it generates.

So I am not sure what we can do here.

Any anybody check if the progressbar in Firefox is also that CPU heavy?

Reply at:
https://bugs.launchpad.net/ubuntu/+source/thunderbird/+bug/1209095/comments/5


On 2012-12-04T20:34:22+00:00 Acelists wrote:

Moving to Frontend until we determine if this shouldn't actually go into
Toolkit. But Security component was way off.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/thunderbird/+bug/1209095/comments/6


On 2012-12-04T20:42:33+00:00 Bzbarsky wrote:

mozRequestAnimationFrame throttles to run no more than at 60Hz.  That's
its whole purpose.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/thunderbird/+bug/1209095/comments/7


On 2012-12-04T20:53:50+00:00 Acelists wrote:

Is it possible to request even lower framerate? It seems it is quite CPU
heavy. The reporter talks 100% of 4-core CPU. But in my testing a tiny
progressmeter took 40% of 1 core on a 3Ghz machine. Still a lot.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/thunderbird/+bug/1209095/comments/8


On 2012-12-04T21:03:10+00:00 Bzbarsky wrote:

> Is it possible to request even lower framerate?

Not easily, no.  However the callee can of course throttle lower by just
checking the call time, which is passed to the method...

Reply at:
https://bugs.launchpad.net/ubuntu/+source/thunderbird/+bug/1209095/comments/9


On 2012-12-04T22:25:31+00:00 Acelists wrote:

Thanks.
So I modified the 

[Bug 330222] Re: kopete crashed with SIGSEGV in Kopete::Transfer::slotProcessed()

2021-01-02 Thread Bug Watch Updater
** Changed in: kdenetwork
   Status: Incomplete => Invalid

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

Title:
  kopete crashed with SIGSEGV in Kopete::Transfer::slotProcessed()

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

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

[Bug 341347] Re: konqueror crashed with SIGSEGV in QMetaObject::activate()

2021-01-02 Thread Bug Watch Updater
** Changed in: kdelibs
   Status: Incomplete => Invalid

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

Title:
  konqueror crashed with SIGSEGV in QMetaObject::activate()

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

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

[Bug 330222]

2021-01-02 Thread Bug-janitor
This bug has been in NEEDSINFO status with no change for at least
30 days. The bug is now closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

Thank you for helping us make KDE software even better for everyone!

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

Title:
  kopete crashed with SIGSEGV in Kopete::Transfer::slotProcessed()

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

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

[Bug 1909882] [NEW] wanted to update ubuntu 18 to 20 every time is getting error

2021-01-02 Thread Madiha
Public bug reported:

An unresolvable problem occurred while calculating the upgrade.

 If none of this applies, then please report this bug using the command
'ubuntu-bug ubuntu-release-upgrader-core' in a terminal. If you want to
investigate this yourself the log files in '/var/log/dist-upgrade' will
contain details about the upgrade. Specifically, look at 'main.log' and
'apt.log'.

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: ubuntu-release-upgrader-core 1:18.04.41
ProcVersionSignature: Ubuntu 4.15.0-128.131-generic 4.15.18
Uname: Linux 4.15.0-128-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.20
Architecture: amd64
CrashDB: ubuntu
CurrentDesktop: Unity:Unity7:ubuntu
Date: Sat Jan  2 18:15:39 2021
InstallationDate: Installed on 2017-06-16 (1296 days ago)
InstallationMedia: Ubuntu 17.04 "Zesty Zapus" - Release amd64 (20170412)
PackageArchitecture: all
SourcePackage: ubuntu-release-upgrader
UpgradeStatus: Upgraded to bionic on 2021-01-02 (0 days ago)
VarLogDistupgradeTermlog:

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


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

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

Title:
  wanted to update ubuntu 18 to 20 every time is getting error

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

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

[Bug 1909879] [NEW] taskwarrior-2.5.2 is out

2021-01-02 Thread Wl-dustin
Public bug reported:

After several years, a new release of TaskWarrior is out - 2.5.2 (with
2.5.3 maybe coming soon).  This release brings four years worth of
bugfixes.

https://github.com/GothenburgBitFactory/taskwarrior/releases/tag/v2.5.2

I know maintainers usually spot new releases, but in this case it's not
clear where announcements went in 2016, the last time there was a
release, or who is still tracking those channels.  So, apologies if the
release has already been spotted and this is a duplicate.  I believe the
GitHub releases page is the right place to watch for new releases.

** Affects: task (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/1909879

Title:
  taskwarrior-2.5.2 is out

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

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

[Bug 1909878] [NEW] O JDK trava e fecha o eclipce quando estou desenvolvendo interface grafica

2021-01-02 Thread Gabriel Silva
Public bug reported:

# A fatal error has been detected by the Java Runtime Environment:
#
#  SIGSEGV (0xb) at pc=0x7f022eb40671, pid=13141, tid=13142
#
# JRE version: OpenJDK Runtime Environment (11.0.9.1+1) (build 
11.0.9.1+1-Ubuntu-0ubuntu1.20.04)
# Java VM: OpenJDK 64-Bit Server VM (11.0.9.1+1-Ubuntu-0ubuntu1.20.04, mixed 
mode, sharing, tiered, compressed oops, g1 gc, linux-amd64)
# Problematic frame:
# C  [libgobject-2.0.so.0+0x3c671]  
g_type_check_instance_is_fundamentally_a+0x11
#
# Core dump will be written. Default location: Core dumps may be processed with 
"/usr/share/apport/apport %p %s %c %d %P %E" (or dumping to 
/home/gabriel/core.13141)
#
# If you would like to submit a bug report, please visit:
#   https://bugs.launchpad.net/ubuntu/+source/openjdk-lts
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.

** Affects: openjdk-lts (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/1909878

Title:
  O JDK trava e fecha o eclipce quando estou desenvolvendo interface
  grafica

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openjdk-lts/+bug/1909878/+subscriptions

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

[Bug 1909877] [NEW] Clock in top bar doesn't update

2021-01-02 Thread Thomas Frans
Public bug reported:

When exiting fullscreen from chromium (YouTube), the clock widget in the
top bar seems stuck and only updates after being updated from the mouse
hovering over it.

ProblemType: Bug
DistroRelease: Ubuntu 20.10
Package: xorg 1:7.7+19ubuntu15
ProcVersionSignature: Ubuntu 5.8.0-33.36-generic 5.8.17
Uname: Linux 5.8.0-33-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
.proc.driver.nvidia.capabilities.gpu0: Error: [Errno 21] Is a directory: 
'/proc/driver/nvidia/capabilities/gpu0'
.proc.driver.nvidia.capabilities.mig: Error: [Errno 21] Is a directory: 
'/proc/driver/nvidia/capabilities/mig'
.proc.driver.nvidia.gpus..01.00.0: Error: [Errno 21] Is a directory: 
'/proc/driver/nvidia/gpus/:01:00.0'
.proc.driver.nvidia.registry: Binary: ""
.proc.driver.nvidia.suspend: suspend hibernate resume
.proc.driver.nvidia.suspend_depth: default modeset uvm
.proc.driver.nvidia.version:
 NVRM version: NVIDIA UNIX x86_64 Kernel Module  455.45.01  Thu Nov  5 23:03:56 
UTC 2020
 GCC version:  gcc version 10.2.0 (Ubuntu 10.2.0-13ubuntu1)
ApportVersion: 2.20.11-0ubuntu50.3
Architecture: amd64
BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
CasperMD5CheckResult: skip
CompositorRunning: None
CurrentDesktop: ubuntu:GNOME
Date: Sat Jan  2 21:56:27 2021
DistUpgraded: 2020-12-27 18:29:34,023 ERROR got error from PostInstallScript 
./xorg_fix_proprietary.py (g-exec-error-quark: Failed to execute child process 
“./xorg_fix_proprietary.py” (No such file or directory) (8))
DistroCodename: groovy
DistroVariant: ubuntu
DkmsStatus:
 nvidia, 455.45.01, 5.4.0-58-generic, x86_64: installed
 nvidia, 455.45.01, 5.8.0-33-generic, x86_64: installed
 virtualbox, 6.1.14, 5.4.0-58-generic, x86_64: installed
 virtualbox, 6.1.14, 5.8.0-33-generic, x86_64: installed
ExtraDebuggingInterest: Yes, if not too technical
GraphicsCard:
 Intel Corporation UHD Graphics 630 (Mobile) [8086:3e9b] (prog-if 00 [VGA 
controller])
   Subsystem: Acer Incorporated [ALI] UHD Graphics 630 (Mobile) [1025:1264]
 NVIDIA Corporation GP107M [GeForce GTX 1050 Ti Mobile] [10de:1c8c] (rev a1) 
(prog-if 00 [VGA controller])
   Subsystem: Acer Incorporated [ALI] GP107M [GeForce GTX 1050 Ti Mobile] 
[1025:1265]
InstallationDate: Installed on 2020-12-11 (22 days ago)
InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
MachineType: Acer Nitro AN515-52
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.8.0-33-generic 
root=UUID=8753fbc2-cbcd-41b4-ad44-9e1a6f940ddf ro quiet splash vt.handoff=7
SourcePackage: xorg
Symptom: display
UpgradeStatus: Upgraded to groovy on 2020-12-27 (6 days ago)
dmi.bios.date: 08/05/2019
dmi.bios.release: 1.28
dmi.bios.vendor: Insyde Corp.
dmi.bios.version: V1.28
dmi.board.asset.tag: Type2 - Board Serial Number
dmi.board.name: Freed_CFS
dmi.board.vendor: CFL
dmi.board.version: V1.28
dmi.chassis.type: 10
dmi.chassis.vendor: Acer
dmi.chassis.version: V1.28
dmi.ec.firmware.release: 1.26
dmi.modalias: 
dmi:bvnInsydeCorp.:bvrV1.28:bd08/05/2019:br1.28:efr1.26:svnAcer:pnNitroAN515-52:pvrV1.28:rvnCFL:rnFreed_CFS:rvrV1.28:cvnAcer:ct10:cvrV1.28:
dmi.product.family: Acer Nitro 5
dmi.product.name: Nitro AN515-52
dmi.product.sku: 
dmi.product.version: V1.28
dmi.sys.vendor: Acer
version.compiz: compiz N/A
version.libdrm2: libdrm2 2.4.102-1ubuntu1
version.libgl1-mesa-dri: libgl1-mesa-dri 20.2.1-1
version.libgl1-mesa-glx: libgl1-mesa-glx 20.2.1-1
version.nvidia-graphics-drivers: nvidia-graphics-drivers-* N/A
version.xserver-xorg-core: xserver-xorg-core 2:1.20.9-2ubuntu1.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-1ubuntu1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20200714-1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.16-1

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


** Tags: amd64 apport-bug groovy ubuntu

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

Title:
  Clock in top bar doesn't update

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

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

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

2021-01-02 Thread Steve Langasek
** Changed in: ubuntu-cdimage
 Assignee: Pedro Tavares (cantattore) => (unassigned)

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

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

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

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

[Bug 1909642] Re: flowblade can't be opened in Lubuntu 20.10

2021-01-02 Thread Rudolph
"I manually installed `python3-distutils`, after which the program now
starts."

Does that mean that I write this in the terminal?:
sudo apt install python3-distutils

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

Title:
  flowblade can't be opened in Lubuntu 20.10

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

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

[Bug 1909838] Re: gcc -O3 produces invalid code

2021-01-02 Thread Douglas Miller
Turns out, this is due to the programmer's assumption that fcb->name[8]
and fcb->ext[3] can be accessed contiguously by fcb->name[0..10]. So,
the code is actually "lazy", if not bad. Obviously, this has worked in C
for a long time but no longer can be depended on.

** Changed in: gcc-9 (Ubuntu)
   Status: New => Invalid

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

Title:
  gcc -O3 produces invalid code

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

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

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

2021-01-02 Thread Pedro Tavares
** Changed in: ubuntu-cdimage
 Assignee: (unassigned) => Pedro Tavares (cantattore)

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

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

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

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

[Bug 1909866] Re: [Xubuntu 20.04] Distorted HDMI audio

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

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

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

** Tags added: bot-comment

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

Title:
  [Xubuntu 20.04] Distorted HDMI audio

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

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

[Bug 1909875] [NEW] no upgrade possible

2021-01-02 Thread Ernst-Dieter-Schmidt
Public bug reported:

Es konnte nicht ermittelt werden, welche Systemaktualisierungen
verfügbar sind

Ein unlösbares Problem trat während der Berechnung der
Systemaktualisierung auf.

 Die wurde wahrscheinlich verursacht durch:
 * Inoffizielle Software-Pakete, die nicht von Ubuntu bereitgestellt werden
Bitte verwenden Sie das Tool »ppa-purge« aus dem ppa-purge- 
Paket, um Software von einem Launchpad PPA zu entfernen und 
versuchen Sie die Systemaktualisierung erneut.

Wenn keine dieser zutrifft, melden Sie bitte den Fehler mithilfe des
Befehls 'ubuntu-bug ubuntu-release-upgrader-core' in einem Terminal.
Wenn Sie dies selbst untersuchen möchten, finden Sie in den
Protokolldateien unter »/var/log/dist-upgrade« Details zur
Systemaktualisierung. Schauen Sie sich insbesondere »main.log« und
»apt.log« an.

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: ubuntu-release-upgrader-core 1:18.04.41
ProcVersionSignature: Ubuntu 4.15.0-128.131-generic 4.15.18
Uname: Linux 4.15.0-128-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.21
Architecture: amd64
CrashDB: ubuntu
CurrentDesktop: ubuntu:GNOME
Date: Sat Jan  2 20:47:58 2021
InstallationDate: Installed on 2019-01-25 (708 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1)
PackageArchitecture: all
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=de_DE.UTF-8
 SHELL=/bin/bash
SourcePackage: ubuntu-release-upgrader
UpgradeStatus: Upgraded to bionic on 2021-01-02 (0 days ago)
VarLogDistupgradeTermlog:

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


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

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

Title:
  no upgrade possible

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

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

[Bug 1909871] [NEW] package nvidia-dkms-455 455.38-0ubuntu0.20.04.1 failed to install/upgrade: installed nvidia-dkms-455 package post-installation script subprocess returned error exit status 10

2021-01-02 Thread Hrishikesh Pale
Public bug reported:

what happened:
==
updated kernel from 5.4 to 5.10.4, reinstalled nvidia-driver-455 and it failed

details:
=
lsb_release -rd
Description:Ubuntu 20.04.1 LTS
Release:20.04


apt-cache policy nvidia-driver-455
nvidia-driver-455:
  Installed: 455.38-0ubuntu0.20.04.1
  Candidate: 455.38-0ubuntu0.20.04.1
  Version table:
 *** 455.38-0ubuntu0.20.04.1 500
500 http://in.archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 
Packages
100 /var/lib/dpkg/status

what should happen:
==
install successfully

ProblemType: Package
DistroRelease: Ubuntu 20.04
Package: nvidia-dkms-455 455.38-0ubuntu0.20.04.1
Uname: Linux 5.10.4-051004-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.14
Architecture: amd64
CasperMD5CheckResult: skip
Date: Sun Jan  3 00:38:29 2021
ErrorMessage: installed nvidia-dkms-455 package post-installation script 
subprocess returned error exit status 10
InstallationDate: Installed on 2020-12-27 (6 days ago)
InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
Python3Details: /usr/bin/python3.8, Python 3.8.5, python3-minimal, 
3.8.2-0ubuntu2
PythonDetails: N/A
RelatedPackageVersions:
 dpkg 1.19.7ubuntu3
 apt  2.0.2ubuntu0.2
SourcePackage: nvidia-graphics-drivers-455
Title: package nvidia-dkms-455 455.38-0ubuntu0.20.04.1 failed to 
install/upgrade: installed nvidia-dkms-455 package post-installation script 
subprocess returned error exit status 10
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: nvidia-graphics-drivers-455 (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/1909871

Title:
  package nvidia-dkms-455 455.38-0ubuntu0.20.04.1 failed to
  install/upgrade: installed nvidia-dkms-455 package post-installation
  script subprocess returned error exit status 10

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

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

[Bug 1909838] Re: gcc -O3 produces invalid code

2021-01-02 Thread Douglas Miller
I've discovered that "-Og" does produce working, somewhat-optimized,
code. Still, I need to understand why this code was appearing to the
optimizer as a no-op. I need to make sure that no other code is being
incorrectly optimized. As it stands, this looks to me to be erroneous
optimization by GCC.

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

Title:
  gcc -O3 produces invalid code

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

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

[Bug 1909838] Re: gcc -O3 produces invalid code

2021-01-02 Thread Douglas Miller
Here's the latest code example, eliminating the need for the cpmutl.h
header file

** Attachment added: "stand-alone match_fcb.c example"
   
https://bugs.launchpad.net/ubuntu/+source/gcc-9/+bug/1909838/+attachment/5448725/+files/match_fcb.c

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

Title:
  gcc -O3 produces invalid code

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

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

[Bug 1892561] Re: package snapcraft 3.0ubuntu1 failed to install/upgrade: new snapcraft package pre-installation script subprocess returned error exit status 10

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

** Changed in: snapcraft (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/1892561

Title:
  package snapcraft 3.0ubuntu1 failed to install/upgrade: new snapcraft
  package pre-installation script subprocess returned error exit status
  10

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

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

[Bug 1909868] [NEW] VLC crashes on segfault trying to stream - Dell 5502

2021-01-02 Thread Bib
Public bug reported:

Fresh new 20.04.1 on Dell Inspiron 5502. Certified hardware but was
supplied with Windows. I overwrote it with standard Ubuntu Desktop. The
URL is following :

~$ vlc http://mafreebox.freebox.fr/freeboxtv/playlist.m3u
VLC media player 3.0.9.2 Vetinari (revision 3.0.9.2-0-gd4c1aefe4d)
[5592242b05b0] main libvlc: Lancement de vlc avec l'interface par défaut. 
Utiliser « cvlc » pour démarrer VLC sans interface.
Created new TCP socket 38 for connection
[7fd9840d04d0] mpeg4audio packetizer: AAC channels: 2 samplerate: 24000
libva info: VA-API version 1.7.0
libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so
libva info: Found init function __vaDriverInit_1_7
libva info: va_openDriver() returns 0
[7fd984001e20] avcodec decoder: Using Intel iHD driver for Intel(R) Gen 
Graphics - 20.1.1 () for hardware decoding
[7fd984001e20] main decoder error: buffer deadlock prevented
[7fd97c20] ts demux error: libdvbpsi error (PSI decoder): TS 
discontinuity (received 12, expected 11) for PID 66
[7fd97c20] ts demux error: libdvbpsi error (PSI decoder): TS 
discontinuity (received 11, expected 10) for PID 0
Created new TCP socket 38 for connection
[7fd984020d20] access stream error: HTTP 404 error
[7fd984020d20] http stream error: local stream 1 error: Cancellation (0x8)
[5592242b05b0] main libvlc error: no suitable access module for 
`https://upload.wikimedia.org/wikipedia/fr/thumb/7/7a/C8_vector.svg/490px-C8_vector.svg.png'
[7fd9700b4ae0] mpeg4audio packetizer: AAC channels: 2 samplerate: 24000
[7fd970002600] main decoder error: buffer deadlock prevented
libva info: VA-API version 1.7.0
libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so
libva info: Found init function __vaDriverInit_1_7
libva info: va_openDriver() returns 0
[7fd970002600] avcodec decoder: Using Intel iHD driver for Intel(R) Gen 
Graphics - 20.1.1 () for hardware decoding
Created new TCP socket 45 for connection
[7fd97800b120] live555 demux error: SETUP of'video/MP2T' failed 403 
Forbidden
[7fd97800b120] live555 demux error: Nothing to play for 
rtsp://mafreebox.freebox.fr:554/fbxtv_pub/stream?namespace=1=497=hd
[7fd97804ed40] satip stream error: Failed to setup RTSP session
Created new TCP socket 47 for connection
[7fd958001270] live555 demux error: SETUP of'video/MP2T' failed 403 
Forbidden
[7fd958001270] live555 demux error: Nothing to play for 
rtsp://mafreebox.freebox.fr:554/fbxtv_pub/stream?namespace=1=497=sd
[7fd9580028e0] satip stream error: Failed to setup RTSP session
Created new TCP socket 46 for connection
[7fd974003c50] live555 demux error: SETUP of'video/MP2T' failed 403 
Forbidden
[7fd974003c50] live555 demux error: Nothing to play for 
rtsp://mafreebox.freebox.fr:554/fbxtv_pub/stream?namespace=1=497=ld
[7fd9740090a0] satip stream error: Failed to setup RTSP session
Created new TCP socket 46 for connection
[7fd960021220] live555 demux error: SETUP of'video/MP2T' failed 403 
Forbidden
[7fd960021220] live555 demux error: Nothing to play for 
rtsp://mafreebox.freebox.fr:554/fbxtv_pub/stream?namespace=1=374=hd
[7fd96f90] satip stream error: Failed to setup RTSP session
Created new TCP socket 46 for connection
[7fd9600069e0] live555 demux error: SETUP of'video/MP2T' failed 403 
Forbidden
[7fd9600069e0] live555 demux error: Nothing to play for 
rtsp://mafreebox.freebox.fr:554/fbxtv_pub/stream?namespace=1=374=sd
[7fd960008110] satip stream error: Failed to setup RTSP session
Created new TCP socket 46 for connection
[7fd9600085e0] live555 demux error: SETUP of'video/MP2T' failed 403 
Forbidden
[7fd9600085e0] live555 demux error: Nothing to play for 
rtsp://mafreebox.freebox.fr:554/fbxtv_pub/stream?namespace=1=374=ld
[7fd960001910] satip stream error: Failed to setup RTSP session
Created new TCP socket 45 for connection
[7fd95c0b4cb0] mpeg4audio packetizer: AAC channels: 2 samplerate: 24000
libva info: VA-API version 1.7.0
libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so
libva info: Found init function __vaDriverInit_1_7
libva info: va_openDriver() returns 0
[7fd95c002760] avcodec decoder: Using Intel iHD driver for Intel(R) Gen 
Graphics - 20.1.1 () for hardware decoding
Erreur de segmentation (core dumped)

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

** Summary changed:

- VLC crashes on segfault trying to stream
+ VLC crashes on segfault trying to stream - Dell 5502

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

Title:
  VLC crashes on segfault trying to stream - Dell 5502

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com

[Bug 1715861] Re: r592 & r852 IRQ: DMA errors cause excessive log file entries

2021-01-02 Thread Ryan C. Underwood
Still happens in kernel 5.8.

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

Title:
  r592 & r852 IRQ: DMA errors cause excessive log file entries

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

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

[Bug 1887548] Re: libavcodec-extra58 Provides libavcodec58 but will uninstall anything dependant on gstreamer1.0-libav

2021-01-02 Thread Sebastian Ramacher
You'll also need to install libavcodec-extra58:i386.

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

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

Title:
  libavcodec-extra58 Provides libavcodec58 but will uninstall anything
  dependant on gstreamer1.0-libav

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

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

[Bug 1876362] Re: 0100001564866485526603

2021-01-02 Thread Sebastian Ramacher
** Changed in: ffmpeg (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/1876362

Title:
  011564866485526603

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

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

[Bug 1903748] Re: unknown DWARF DW_OP_0

2021-01-02 Thread Sebastian Ramacher
** Changed in: ffmpeg (Ubuntu)
   Status: New => Invalid

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

Title:
  unknown DWARF DW_OP_0

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

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

[Bug 1909866] [NEW] [Xubuntu 20.04] Distorted HDMI audio

2021-01-02 Thread Pawel Por
Public bug reported:

After connecting a laptop to TV set via HDMI and redirecting the sound to HDMI 
the sound becomes distorted.
It worked perfectly fine on Xubuntu 18.04. The issue occurred immediately after 
upgrading to Xubuntu 20.04.
It usually works correctly when the movie started playing before the laptop was 
connected to TV-set. Right after connecting the laptop to the TV-set the movie 
continues to play with no sound issues. The sound issues occur when a movie is 
paused and resumed to play. The audio is distorted then.
The 100% workaround is to change the refresh rate in Xubuntu's display settings 
to another value e.g. 60Hz. It works until I pause the movie again. Then I need 
to switch back to the previous refresh rate e.g. 50Hz and so on. In general I 
choose between 50 and 60 Hz in a round-robin fashion.
The issue occurs when playing the movies via all available players e.g. 
mplayer, vlc or embedded in web browser.
It never occurs when using the Laptop's display.
I cannot observe any system log entries regarding this issue.

OS: Xubuntu 20.04
Kernel: 5.4.0-58-generic #64-Ubuntu SMP
Laptop: Dell Latitude E7440
TV-set: Panasonic TX-42AS500E

# dmesg |grep -i audio
[0.131266] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[8.527979] snd_hda_intel :00:03.0: bound :00:02.0 (ops 
i915_audio_component_bind_ops [i915])
[8.558111] snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC3226: 
line_outs=1 (0x16/0x0/0x0/0x0/0x0) type:line
[8.558114] snd_hda_codec_realtek hdaudioC1D0:speaker_outs=1 
(0x14/0x0/0x0/0x0/0x0)
[8.558116] snd_hda_codec_realtek hdaudioC1D0:hp_outs=1 
(0x15/0x0/0x0/0x0/0x0)
[8.558117] snd_hda_codec_realtek hdaudioC1D0:mono: mono_out=0x0
[8.558118] snd_hda_codec_realtek hdaudioC1D0:inputs:
[8.558120] snd_hda_codec_realtek hdaudioC1D0:  Dock Mic=0x19
[8.558122] snd_hda_codec_realtek hdaudioC1D0:  Headset Mic=0x1a
[8.558124] snd_hda_codec_realtek hdaudioC1D0:  Internal Mic=0x12
[10557.458937] Modules linked in: ccm vboxnetadp(OE) vboxnetflt(OE) vboxdrv(OE) 
bnep intel_rapl_msr pn544_mei binfmt_misc mei_phy pn544 snd_hda_codec_realtek 
snd_hda_codec_generic uvcvideo snd_hda_codec_hdmi snd_hda_intel hci 
snd_intel_dspcfg videobuf2_vmalloc snd_hda_codec nfc btusb videobuf2_memops 
btrtl snd_hda_core mei_hdcp videobuf2_v4l2 btbcm snd_hwdep videobuf2_common 
btintel videodev bluetooth mc snd_pcm ecdh_generic ecc snd_seq_midi 
snd_seq_midi_event snd_rawmidi intel_rapl_common iwlmvm x86_pkg_temp_thermal 
intel_powerclamp dell_laptop ledtrig_audio coretemp mac80211 kvm_intel snd_seq 
snd_seq_device libarc4 dell_smm_hwmon snd_timer kvm iwlwifi snd rapl 
intel_cstate input_leds dell_wmi dell_smbios joydev dcdbas sparse_keymap 
wmi_bmof dell_wmi_descriptor serio_raw mei_me cfg80211 mei soundcore mac_hid 
dell_rbtn dell_smo8800 sch_fq_codel parport_pc ppdev lp parport sunrpc 
ip_tables x_tables autofs4 i915 i2c_algo_bit drm_kms_helper syscopyarea 
crct10dif_pclmul sysfillrect crc32_pclmul
[10557.563972] Modules linked in: ccm vboxnetadp(OE) vboxnetflt(OE) vboxdrv(OE) 
bnep intel_rapl_msr pn544_mei binfmt_misc mei_phy pn544 snd_hda_codec_realtek 
snd_hda_codec_generic uvcvideo snd_hda_codec_hdmi snd_hda_intel hci 
snd_intel_dspcfg videobuf2_vmalloc snd_hda_codec nfc btusb videobuf2_memops 
btrtl snd_hda_core mei_hdcp videobuf2_v4l2 btbcm snd_hwdep videobuf2_common 
btintel videodev bluetooth mc snd_pcm ecdh_generic ecc snd_seq_midi 
snd_seq_midi_event snd_rawmidi intel_rapl_common iwlmvm x86_pkg_temp_thermal 
intel_powerclamp dell_laptop ledtrig_audio coretemp mac80211 kvm_intel snd_seq 
snd_seq_device libarc4 dell_smm_hwmon snd_timer kvm iwlwifi snd rapl 
intel_cstate input_leds dell_wmi dell_smbios joydev dcdbas sparse_keymap 
wmi_bmof dell_wmi_descriptor serio_raw mei_me cfg80211 mei soundcore mac_hid 
dell_rbtn dell_smo8800 sch_fq_codel parport_pc ppdev lp parport sunrpc 
ip_tables x_tables autofs4 i915 i2c_algo_bit drm_kms_helper syscopyarea 
crct10dif_pclmul sysfillrect crc32_pclmul

# dmesg |grep -i hdmi
[0.131266] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[8.543890] input: HDA Intel HDMI HDMI/DP,pcm=3 as 
/devices/pci:00/:00:03.0/sound/card0/input10
[8.543955] input: HDA Intel HDMI HDMI/DP,pcm=7 as 
/devices/pci:00/:00:03.0/sound/card0/input11
[8.544014] input: HDA Intel HDMI HDMI/DP,pcm=8 as 
/devices/pci:00/:00:03.0/sound/card0/input12
[8.544069] input: HDA Intel HDMI HDMI/DP,pcm=9 as 
/devices/pci:00/:00:03.0/sound/card0/input13
[8.544133] input: HDA Intel HDMI HDMI/DP,pcm=10 as 
/devices/pci:00/:00:03.0/sound/card0/input14
[10557.458937] Modules linked in: ccm vboxnetadp(OE) vboxnetflt(OE) vboxdrv(OE) 
bnep intel_rapl_msr pn544_mei binfmt_misc mei_phy pn544 snd_hda_codec_realtek 
snd_hda_codec_generic uvcvideo snd_hda_codec_hdmi snd_hda_intel hci 
snd_intel_dspcfg videobuf2_vmalloc snd_hda_codec nfc btusb videobuf2_memops 
btrtl snd_hda_core 

[Bug 1909865] [NEW] error in upgrade

2021-01-02 Thread Frank Hettling
Public bug reported:

error in upgrade

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: ubuntu-release-upgrader-core 1:18.04.42
ProcVersionSignature: Ubuntu 4.15.0-129.132-generic 4.15.18
Uname: Linux 4.15.0-129-generic x86_64
NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
ApportVersion: 2.20.9-0ubuntu7.21
Architecture: amd64
CrashDB: ubuntu
Date: Sat Jan  2 17:26:18 2021
PackageArchitecture: all
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 LANG=de_DE.UTF-8
 SHELL=/bin/bash
SourcePackage: ubuntu-release-upgrader
UpgradeStatus: Upgraded to bionic on 2021-01-02 (0 days ago)
VarLogDistupgradeTermlog:

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


** Tags: amd64 apport-bug bionic dist-upgrade package-from-proposed

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

Title:
  error in upgrade

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

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

[Bug 1909864] [NEW] Impossible de mettre à jour de 18.04 à 21.04

2021-01-02 Thread Jean-Jacques LACRAMPE
Public bug reported:

Bonjour,
Bien que j'ai supprimer tous les ppa aures que celui de Cannonical, la mise à 
jour échoue.
J'ai lancé lka commande :
ubuntu-bug ubuntu-release-upgrader-core
Elle a déclenché une erreur :
jean-jacques@lacrampe-NUC:~$ ubuntu-bug ubuntu-release-upgrader-core
comm: /var/log/dmesg: Aucun fichier ou dossier de ce type
jean-jacques@lacrampe-NUC:~$ 
[24059:24059:0102/170758.977831:ERROR:sandbox_linux.cc(374)] 
InitializeSandbox() called with multiple threads in process gpu-process.
[24026:24045:0102/170806.354818:ERROR:connection_factory_impl.cc(420)] Failed 
to connect to MCS endpoint with error -21
Merci d'avance pour votre aide
Jean-Jacques Lacrampe

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: ubuntu-release-upgrader-core 1:18.04.41
ProcVersionSignature: Ubuntu 4.15.0-128.131-generic 4.15.18
Uname: Linux 4.15.0-128-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.21
Architecture: amd64
CrashDB: ubuntu
CurrentDesktop: ubuntu:GNOME
Date: Sat Jan  2 17:07:16 2021
InstallationDate: Installed on 2018-05-04 (974 days ago)
InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Release amd64 (20180426)
PackageArchitecture: all
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=fr_FR.UTF-8
 SHELL=/bin/bash
SourcePackage: ubuntu-release-upgrader
UpgradeStatus: Upgraded to bionic on 2021-01-02 (0 days ago)

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


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

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

Title:
  Impossible de mettre à jour de 18.04 à 21.04

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

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

[Bug 1870736] Re: [nvidia] Screen scaling 125% gives 200%

2021-01-02 Thread eevo
kms doesn't work for me, it scales the entire resolution to 125% so much
of the screen just falls off of my display to the right and bottom.

My setup is an asus rog g14 hooked up (via hdmi) to a 4k monitor. With
the intel hardware fractional scaling works perfectly, so for most
things I can simply run using the nvidia hybrid mode and launch
applications using dedicated graphics card when I need to. However,
blender specifically can still be quite slow in this mode and much
faster in nvidia performance mode, but hardly usable since the text in
the app is so small.

Really hoping for a solution here! I'm almost always plugged into a
desktop setup with this laptop so I'd much rather just run performance
mode when working on anything serious.

More info - Ubuntu 20.10, RTX 2060, I've tried nvidia drivers 450 and
455.

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

Title:
  [nvidia] Screen scaling 125% gives 200%

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

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

[Bug 1856608] Re: [Regression] usb usb2-port2: Cannot enable. Maybe the USB cable is bad?

2021-01-02 Thread Lars Marqvart
** Changed in: linux (Ubuntu Focal)
   Status: Incomplete => Confirmed

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

Title:
  [Regression] usb usb2-port2: Cannot enable. Maybe the USB cable is
  bad?

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

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

[Bug 1856608] Re: [Regression] usb usb2-port2: Cannot enable. Maybe the USB cable is bad?

2021-01-02 Thread Lars Marqvart
I'm also affected by this bug. I just did a fresh install of Xubuntu
20.04.1 and see the issue.

In my case it's "usb usb2-port1: Cannot enable. Maybe the USB cable is
bad?".

There are no USB devices connected at all, so I get the bug with only
the motherboard root hub present. I can make the log messages to syslog
stop by inserting a USB3 device in one of the ports connected to usb2 (a
USB2 device connected to the same physical port on the PC gets connected
to a different bus so that will not make the log messages stop).

Booting Matthew's test kernel (5.4.0-42.46+TEST1856608v20200805b1) makes
the bug go away. Booting the regular kernel (in this case
5.4.0-58-generic) and the bug is back.

So please revert the git commit on 20.04 (Focal) also until a fix is
found.

I'll be happy to provide further info if needed.

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

Title:
  [Regression] usb usb2-port2: Cannot enable. Maybe the USB cable is
  bad?

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

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

[Bug 364091] Re: xrandr error with delmode

2021-01-02 Thread Stéphane Magnenat
I'm still experiencing this problem with 20.04

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

Title:
  xrandr error with delmode

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

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

[Bug 1909838] Re: gcc -O3 produces invalid code

2021-01-02 Thread Douglas Miller
I see that gcc-7 also has the same issue. I'm starting to wonder if this
code is flawed, but I don't see the problem. I would have thought "-O3"
is pretty safe and sane. I could imagine -O5 doing something like this.

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

Title:
  gcc -O3 produces invalid code

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

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

[Bug 1909838] Re: gcc -O3 produces invalid code

2021-01-02 Thread Douglas Miller
On a hunch, I added "volatile" to the declarations of the function
parameters:

int match_fcb(volatile struct cpmfcb *mask, volatile struct cpmfcb *fcb)

This caused code to be generated, and it looks viable. It's still
unclear to me why this code was being optimized away.

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

Title:
  gcc -O3 produces invalid code

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

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

[Bug 1909863] Re: Lotus Approach loses information while having open several entries

2021-01-02 Thread Tom Reynolds
Thank you for taking the time to report this bug and helping to make
Ubuntu better.

However, this bug report was filed against ubuntu-release-upgrader,
while the bug report seems to be about "Lotus Approach v 98", a software
which (to my knowledge) is not part of Ubuntu. I amn therefore changing
the bug reports' status to 'incomplete'. If, however, you know that
"Lotus Approach v 98" IS part of Ubuntu 20.04, then please reassign this
bug report to the specific package.

Note: It is not unusual that software which used to work on an earlier
Ubuntu release will not work on a newer Ubuntu release.

Note: Bugs on third party software are not tracked on the Ubuntu bug
tracker area on Launchpad.

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

Title:
  Lotus Approach loses information while having open several entries

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

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

[Bug 1909863] [NEW] Lotus Approach loses information while having open several entries

2021-01-02 Thread Marcus Wiegand
Public bug reported:

I am not sure, whether this is a problem from Ubuntu 20.04 LTS or the
SAMBA-package. I experienced the following misbehaviour after installing
v 20.04 LTS (not having this in 16.04 LTS nor 18.04 LTS): I am using the
Desktop version of Ubuntu. I installed the SAMBA-package. I am using
Lotus Approach v 98 (I know, very old, but still working). Approach-
files are all stored on the Ubuntu/Samba-Standalone Server in a
dedicated share. Until 20.04 LTS, several users could have open entries
in their frontend in the same dbase-file (running the program on each
PC) and nothing worse happened, when another user closed the entry or
opened an new one. Now, with the 20.04 Relase, I suddenly experience,
that open entries disappear. I cross-checked with 16.04 LTS and 18.04
LTS and this does not happen there.

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: ubuntu-release-upgrader-core 1:18.04.41
ProcVersionSignature: Ubuntu 5.4.0-58.64~18.04.1-generic 5.4.73
Uname: Linux 5.4.0-58-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.21
Architecture: amd64
CrashDB: ubuntu
CurrentDesktop: ubuntu:GNOME
Date: Sat Jan  2 15:36:28 2021
InstallationDate: Installed on 2021-01-02 (0 days ago)
InstallationMedia: Ubuntu 18.04.5 LTS "Bionic Beaver" - Release amd64 
(20200806.1)
PackageArchitecture: all
SourcePackage: ubuntu-release-upgrader
Symptom: dist-upgrade
UpgradeStatus: No upgrade log present (probably fresh install)

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


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

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

Title:
  Lotus Approach loses information while having open several entries

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

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

[Bug 1909862] [NEW] System setting is not working

2021-01-02 Thread USMAN
Public bug reported:

System setting is not working with my hp lap top. There is no icon
available in the menu and settings like display and background are not
active

** Affects: alsa-driver (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/1909862

Title:
  System setting is not working

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1909862/+subscriptions

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

[Bug 1899372] Re: update-grub 10_linux_zfs fails when /usr is a separate filesystem

2021-01-02 Thread KAMI
I can confirm, I also has this bug:
/etc/grub.d/10_linux_zfs: 404: .: Can't open /tmp/zfsmnt.stGSQC/etc/os-release

I mounted the root partition under /target when I hit into this problem.
I simply modified the 404 line to use /etc.

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

Title:
  update-grub 10_linux_zfs fails when /usr is a separate filesystem

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

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

[Bug 1899372] Re: update-grub 10_linux_zfs fails when /usr is a separate filesystem

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

** Changed in: grubzfs-testsuite (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/1899372

Title:
  update-grub 10_linux_zfs fails when /usr is a separate filesystem

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

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

[Bug 1894329] Re: ZFS revert from grub menu not working.

2021-01-02 Thread Nosehair
Yes!

Used the Software Updater to add the groovy-proposed repository.
Selected and installed the ZFS packages (from Software Updater).
Installed a small package (using "apt install") to force a grub update.
Rebooted.

"df -h" showed root mounted on the correct filesystem (instead of the
previous, truncated  "rpool/ROOT/ubuntu_").

Thank folks!!

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

Title:
  ZFS revert from grub menu not working.

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

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

[Bug 1909857] Re: NUC7i5 - No HBR, unstable EAC3 audio passthrough on Ubuntu 20.10

2021-01-02 Thread Nico
Also, alsa-info.sh: https://paste.ubuntu.com/p/sspkGCwkVj/

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

Title:
  NUC7i5 - No HBR, unstable EAC3 audio passthrough on Ubuntu 20.10

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1909857/+subscriptions

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

[Bug 627008] Re: Cannot read cd: sound-juicer and gvfs problem (workaround included)

2021-01-02 Thread James
Confirming that as of Ubuntu 20.04.1, this is still an issue but
following is still a workaround:

$ sudo apt install gvfs-backends
$ gio mount cdda://sr0

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

Title:
  Cannot read cd: sound-juicer and gvfs problem (workaround included)

To manage notifications about this bug go to:
https://bugs.launchpad.net/sound-juicer/+bug/627008/+subscriptions

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

[Bug 1909856] Re: amdgpu intermittently fails to resume correctly

2021-01-02 Thread Jamie Scott
Ah, the included dmesg output doesn't actually have the useful snippet
in it. Please see attached section of log output which runs from when I
attempted to resume the system to when it was rebooted.

** Attachment added: "amd-gpu-resume-fail-syslog.log"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1909856/+attachment/5448706/+files/amd-gpu-resume-fail-syslog.log

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

Title:
  amdgpu intermittently  fails to resume correctly

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

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

[Bug 1909857] [NEW] NUC7i5 - No HBR, unstable EAC3 audio passthrough on Ubuntu 20.10

2021-01-02 Thread Nico
Public bug reported:

Software is X11-based stable/up-to-date Kodi v18 on up-to-date Ubuntu 20.10.
Hardware is an Intel NUC7i5BNH (Kaby Lake), latest available BIOS and latest 
available HDMI/LS-PCON firmware. The AVR is a Denon AVR-2310. The TV is an old 
Toshiba 1080p LCD. I make sure that the TV and AVR are turned on first so that 
EDID is available.

When playing a file with HBR audio bitstreams (DTS-HD, Dolby TrueHD) I get no 
audio.
When playing a file with EAC3/DD+ audio bitstreams, I get very regular dropouts.
When I play a file with stereo/DTS/DD bitstreams, all is fine.
When I play an audio file with 6 channels of LPCM, all is fine.

I can play the same files with HBR or EAC3 audio on the same machine from a 
Windows install without any issue, right out of the box using the built-in 
software, using the default configs, which rules out hardware incompatibilities.
I've spent some time with the Kodi guys who have come to the conclusion that 
the issue was not with them but higher in the software stack. So here I am! 
History here: https://forum.kodi.tv/showthread.php?tid=359371

I've also filed a bug with Intel, but I'm not getting any traction there. Must 
be the holydays!
https://gitlab.freedesktop.org/drm/intel/-/issues/2861

Any help is welcomed.

I'm no dev, but I know my way around Linux and systems, and I am not
afraid of testing things and reporting data. Compiling code is usually
something I can do, with instructions if it's less run-of-the-mill.

Thanks in advance!

More specific/detailed background data:

BIOS: BNKBL357.86A.0083.2020.0714.1344 07/14/2020 (latest available from Intel)
HDMI Firmware: 1.77.93 (the latest available from Intel, updated from a Windows 
install)
System architecture: ("uname -m"): x86_64
Kernel version: ("uname -r"): 5.8.0-33-generic
Linux distribution: Ubuntu 20.10 kept up-to-date
Machine or motherboard model (use dmidecode if needed): NUC7i5BNH - 
https://paste.ubuntu.com/p/J2V4mKFWSg/
Display connector: physically HDMI, but I understand that it is internally a DP 
with a protocol converter leading to HDMI
Full dmesg with debug information: From boot 
https://paste.ubuntu.com/p/53qVzpDJ76/
I've played a file with DTS-HD HBR audio bitstream (no audio) towards the end, 
if it can help - https://paste.ubuntu.com/p/5pRRpmfT3P/
I've played a file with EAC3 audio bitstream with dropouts towards the end of 
that one, if it can help - https://paste.ubuntu.com/p/xFPQY5Zzcb/
xrandr --verbose: https://paste.ubuntu.com/p/V95ZWx9MNy/
intel_reg_dumper output: https://paste.ubuntu.com/p/bWnjsvQ9t4/
VBIOS dump: File available there https://youplala.net/~nico/intel/
lsmod | grep snd: https://paste.ubuntu.com/p/hq9Bf87GbY/
/proc/asound/card0/codec#2: https://paste.ubuntu.com/p/8JDwbj5pYs/
/proc/asound/card0/eld#2.0: https://paste.ubuntu.com/p/KdZzHZxTsm/
cat /sys/devices/pci:00/:00:02.0/drm/card0/card0-DP-1/edid | 
edid-decode: https://paste.ubuntu.com/p/vVjdSWh9Dz/

ProblemType: Bug
DistroRelease: Ubuntu 20.10
Package: alsa-base (not installed)
ProcVersionSignature: Ubuntu 5.8.0-33.36-generic 5.8.17
Uname: Linux 5.8.0-33-generic x86_64
ApportVersion: 2.20.11-0ubuntu50.3
Architecture: amd64
CasperMD5CheckResult: skip
Date: Sat Jan  2 12:59:50 2021
InstallationDate: Installed on 2018-02-01 (1066 days ago)
InstallationMedia: Ubuntu-Server 17.10 "Artful Aardvark" - Release amd64 
(20180108.1)
ProcEnviron:
 LANGUAGE=en_GB:en
 TERM=screen-256color
 PATH=(custom, no user)
 LANG=en_GB.UTF-8
 SHELL=/bin/bash
SourcePackage: alsa-driver
Symptom: audio
UpgradeStatus: Upgraded to groovy on 2020-12-26 (7 days ago)

** Affects: alsa-driver (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug groovy

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

Title:
  NUC7i5 - No HBR, unstable EAC3 audio passthrough on Ubuntu 20.10

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1909857/+subscriptions

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

[Bug 1909856] Status changed to Confirmed

2021-01-02 Thread Ubuntu Kernel Bot
This change was made by a bot.

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

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

Title:
  amdgpu intermittently  fails to resume correctly

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

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

[Bug 1909856] [NEW] amdgpu intermittently fails to resume correctly

2021-01-02 Thread Jamie Scott
Public bug reported:

I started seeing my system fail to resume from suspend over the last
couple of weeks. It happens about 1 in 5 times maybe? I press the power
button on my system to resume it and my screens stay blank. I am able to
connect to the system remotely over ssh and check syslog to find out
what went wrong. I then try to reboot the system with `sudo reboot`, the
ssh session disconnects but it never actually reboots. I have to press
the reset button after waiting a while to make it start up again.

dmesg log is attached which contains more info and the call trace. I
think the interesting part is this:

kernel: amdgpu :0d:00.0: [drm:amdgpu_ring_test_helper [amdgpu]] *ERROR* 
ring gfx test failed (-110)
kernel: [drm:amdgpu_device_ip_resume_phase2 [amdgpu]] *ERROR* resume of IP 
block  failed -110
kernel: [drm:amdgpu_device_resume [amdgpu]] *ERROR* amdgpu_device_ip_resume 
failed (-110).
kernel: PM: dpm_run_callback(): pci_pm_resume+0x0/0xf0 returns -110
kernel: PM: Device :0d:00.0 failed to resume async: error -110

It first happened on 20.04 with kernel 5.4 (can't remember exactly what
version of 5.4) a couple of weeks ago. I saw 20.10 was available with
5.8 so thought I'd try upgrading as there was a variety of amdgpu fixes
go in between 5.4 and 5.8 but sadly no dice.

>From some research, I think what I'm seeing is similar to this bug, but
that one looks like 5.4 solved it, whereas I guess some minor upgrade on
5.4 appeared to break it for me.
https://bugs.freedesktop.org/show_bug.cgi?id=112221

I'm running a Ryzen 3700X on an X570 board with an AMD Radeon Pro WX 4100 GPU.
Currently using Kubuntu 20.10.

ProblemType: Bug
DistroRelease: Ubuntu 20.10
Package: linux-image-5.8.0-33-generic 5.8.0-33.36
ProcVersionSignature: Ubuntu 5.8.0-33.36-generic 5.8.17
Uname: Linux 5.8.0-33-generic x86_64
ApportVersion: 2.20.11-0ubuntu50.3
Architecture: amd64
CasperMD5CheckResult: skip
CurrentDesktop: KDE
Date: Sat Jan  2 12:40:36 2021
InstallationDate: Installed on 2020-06-18 (197 days ago)
InstallationMedia: Kubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
MachineType: To Be Filled By O.E.M. To Be Filled By O.E.M.
ProcFB: 0 amdgpudrmfb
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-33-generic 
root=/dev/mapper/vgkubuntu-root ro quiet splash usbcore.autosuspend=-1 
vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-5.8.0-33-generic N/A
 linux-backports-modules-5.8.0-33-generic  N/A
 linux-firmware1.190.2
SourcePackage: linux
UpgradeStatus: Upgraded to groovy on 2020-12-30 (3 days ago)
dmi.bios.date: 09/09/2019
dmi.bios.release: 5.14
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: P2.10
dmi.board.name: X570 Taichi
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.:bvrP2.10:bd09/09/2019:br5.14:svnToBeFilledByO.E.M.:pnToBeFilledByO.E.M.:pvrToBeFilledByO.E.M.:rvnASRock:rnX570Taichi: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.

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


** Tags: amd64 apport-bug groovy

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

Title:
  amdgpu intermittently  fails to resume correctly

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

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

[Bug 1909838] Re: gcc -O3 produces invalid code

2021-01-02 Thread Douglas Miller
** Package changed: ubuntu => gcc-9 (Ubuntu)

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

Title:
  gcc -O3 produces invalid code

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

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

[Bug 1893792] Re: very tiny fonts on top bar. I downgraded libmutter package temporarily as a workaround

2021-01-02 Thread Launchpad Bug Tracker
*** This bug is a duplicate of bug 1892440 ***
https://bugs.launchpad.net/bugs/1892440

Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: mutter (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/1893792

Title:
  very tiny fonts on top bar. I downgraded libmutter package temporarily
  as a workaround

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

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

[Bug 1871794] Re: [Bluetooth] No audio output/input in HSP/HFP mode

2021-01-02 Thread denis
Problem has NOT been fixed for my setup:

- Kernel: 5.4.0-58.64-generic
- OS: Ubuntu 20.04.1 LTS
- Machine: Dell Inspiron 7559 (0706)
- Headset: Anker Soundcore Liberty Air 2

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

Title:
  [Bluetooth] No audio output/input in HSP/HFP mode

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

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

[Bug 1878194] Re: [Sennheiser HD 4.50 BTNC] Bluetooth headset not working when selecting HSP/HFP audio profile in Focal Fossa

2021-01-02 Thread denis
*** This bug is a duplicate of bug 1871794 ***
https://bugs.launchpad.net/bugs/1871794

Problem has NOT been fixed for my setup:

- Kernel: 5.4.0-58.64-generic
- OS: Ubuntu 20.04.1 LTS
- Machine: Dell Inspiron 7559 (0706)
- Headset: Anker Soundcore Liberty Air 2

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

Title:
  [Sennheiser HD 4.50 BTNC] Bluetooth headset not working when selecting
  HSP/HFP audio profile in Focal Fossa

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

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

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

2021-01-02 Thread Sean Young
I've submitted a PR 
https://lore.kernel.org/linux-media/20210102101209.ga32...@gofer.mess.org/T/#t
This has to be merged by Mauro (linux-media). Then Linus has to merge it. 
Finally, it needs to be merged into the stable tree. So it may be some time.

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

Title:
  Ubuntu kernels 5.4.0-51 and 5.4.0-52 break ir-keytable loading

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

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

[Bug 1909840] Missing required logs.

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

apport-collect 1909840

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

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

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

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

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

Title:
  SDXC card reader not working properly

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

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

[Bug 1909840] Re: SDXC card reader not working properly

2021-01-02 Thread Paul White
** Package changed: ubuntu => linux (Ubuntu)

** Tags added: focal

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

Title:
  SDXC card reader not working properly

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

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

[Bug 1897646] Re: Please update to current release (2.6.0-1)

2021-01-02 Thread Hans Joachim Desserud
Flowblade 2.6-2 has been packaged in Ubuntu 20.10
(https://bugs.launchpad.net/ubuntu/+source/flowblade/2.6-2)

Note you may need to install `python3-distutils` manually, see bug
1909642

** Tags added: upgrade-software-version

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

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

Title:
  Please update to current release (2.6.0-1)

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

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

[Bug 1908821] Re: Sync pyvows 3.0.0-2 (universe) from Debian unstable (main)

2021-01-02 Thread Hans Joachim Desserud
derpconf currently fails to build due to missing pyvows
https://bugs.launchpad.net/ubuntu/+source/derpconf/0.8.3-2

** Also affects: derpconf (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/1908821

Title:
  Sync pyvows 3.0.0-2 (universe) from Debian unstable (main)

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

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

[Bug 1909642] Re: flowblade can't be opened in Lubuntu 20.10

2021-01-02 Thread Hans Joachim Desserud
Thanks for taking your time to resolve this issue and help making Ubuntu
better.

I got the same error message when attempting to run flowblade on Ubuntu
20.10.  Based on the error message, I manually installed
`python3-distutils`, after which the program now starts. Looks like this
package should be added as a required dependency for flowblade.

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

** Tags added: hirsute packaging

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

Title:
  flowblade can't be opened in Lubuntu 20.10

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

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

[Bug 1900068] Re: Upgrade to zeitgeist-1.0.3

2021-01-02 Thread Hans Joachim Desserud
Indeed, can also be seen at https://tracker.debian.org/pkg/zeitgeist. I
noticed that Hirsute currently has 1.0.2-3ubuntu2 which includes some
additional changes to the Ubuntu package. It wasn't obvious to me if
they are included in the new version, so I would assume this would need
to be merged.

** Tags added: needs-debian-merge

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

Title:
  Upgrade to zeitgeist-1.0.3

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

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

  1   2   >