[Bug 1888386] Autopkgtest regression report (openjdk-13/13.0.7+5-0ubuntu1~20.04)

2021-05-02 Thread Ubuntu SRU Bot
All autopkgtests for the newly accepted openjdk-13 (13.0.7+5-0ubuntu1~20.04) 
for focal have finished running.
The following regressions have been reported in tests triggered by the package:

android-platform-tools-apksig/0.9-1 (armhf)
munin/2.0.56-1ubuntu1 (armhf)


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

https://people.canonical.com/~ubuntu-archive/proposed-
migration/focal/update_excuses.html#openjdk-13

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

Thank you!

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

Title:
  SRU: backport the openjdk-13 and -14 security releases to focal

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

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

[Bug 1926600] Re: Ubuntu server 20.04.2 installer hidden partition problem

2021-05-02 Thread Dan MacDonald
I don't think you read my bug report correctly.

My screenshot shows the result of me having manually created 1 BIOS GRUB
partition which gets listed as partition #2. partition #1 is another
BIOS GRUB partition that gets auto created by the instaler and is not
shown to the user.

I understand why this partition is required but it should be shown to
the user when they create custom partitioning configs. As it stands the
user must know about and work around this quirk.

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

Title:
  Ubuntu server 20.04.2 installer hidden partition problem

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

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

[Bug 1896578] Re: raid10: Block discard is very slow, causing severe delays for mkfs and fstrim operations

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

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

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

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

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

Title:
  raid10: Block discard is very slow, causing severe delays for mkfs and
  fstrim operations

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

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

[Bug 1774498] Re: Windows flash by external screen on workspace change

2021-05-02 Thread Bug Watch Updater
** Changed in: gnome-shell
   Status: Unknown => 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/1774498

Title:
  Windows flash by external screen on workspace change

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

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

[Bug 1896578] Re: raid10: Block discard is very slow, causing severe delays for mkfs and fstrim operations

2021-05-02 Thread Matthew Ruffell
** Description changed:

  BugLink: https://bugs.launchpad.net/bugs/1896578
  
  [Impact]
  
  Block discard is very slow on Raid10, which causes common use cases
  which invoke block discard, such as mkfs and fstrim operations, to take
  a very long time.
  
  For example, on a i3.8xlarge instance on AWS, which has 4x 1.9TB NVMe
  devices which support block discard, a mkfs.xfs operation on Raid 10
  takes between 8 to 11 minutes, where the same mkfs.xfs operation on Raid
  0, takes 4 seconds.
  
  The bigger the devices, the longer it takes.
  
  The cause is that Raid10 currently uses a 512k chunk size, and uses this
  for the discard_max_bytes value. If we need to discard 1.9TB, the kernel
  splits the request into millions of 512k bio requests, even if the
  underlying device supports larger requests.
  
  For example, the NVMe devices on i3.8xlarge support 2.2TB of discard at
  once:
  
  $ cat /sys/block/nvme0n1/queue/discard_max_bytes
  2199023255040
  $ cat /sys/block/nvme0n1/queue/discard_max_hw_bytes
  2199023255040
  
  Where the Raid10 md device only supports 512k:
  
  $ cat /sys/block/md0/queue/discard_max_bytes
  524288
  $ cat /sys/block/md0/queue/discard_max_hw_bytes
  524288
  
  If we perform a mkfs.xfs operation on the /dev/md array, it takes over
  11 minutes and if we examine the stack, it is stuck in
  blkdev_issue_discard()
  
  $ sudo cat /proc/1626/stack
  [<0>] wait_barrier+0x14c/0x230 [raid10]
  [<0>] regular_request_wait+0x39/0x150 [raid10]
  [<0>] raid10_write_request+0x11e/0x850 [raid10]
  [<0>] raid10_make_request+0xd7/0x150 [raid10]
  [<0>] md_handle_request+0x123/0x1a0
  [<0>] md_submit_bio+0xda/0x120
  [<0>] __submit_bio_noacct+0xde/0x320
  [<0>] submit_bio_noacct+0x4d/0x90
  [<0>] submit_bio+0x4f/0x1b0
  [<0>] __blkdev_issue_discard+0x154/0x290
  [<0>] blkdev_issue_discard+0x5d/0xc0
  [<0>] blk_ioctl_discard+0xc4/0x110
  [<0>] blkdev_common_ioctl+0x56c/0x840
  [<0>] blkdev_ioctl+0xeb/0x270
  [<0>] block_ioctl+0x3d/0x50
  [<0>] __x64_sys_ioctl+0x91/0xc0
  [<0>] do_syscall_64+0x38/0x90
  [<0>] entry_SYSCALL_64_after_hwframe+0x44/0xa9
  
  [Fix]
  
  Xiao Ni has developed a patchset which resolves the block discard
  performance problems. These commits have now landed in 5.10-rc1.
  
- commit 2628089b74d5a64bd0bcb5d247a18f78d7b6f4d0
- Author: Xiao Ni 
- Date: Tue Aug 25 13:42:59 2020 +0800
+ commit cf78408f937a67f59f5e90ee8e6cadeed7c128a8
+ Author: Xiao Ni 
+ Date:   Thu Feb 4 15:50:43 2021 +0800
  Subject: md: add md_submit_discard_bio() for submitting discard bio
- Link: 
https://github.com/torvalds/linux/commit/2628089b74d5a64bd0bcb5d247a18f78d7b6f4d0
- 
- commit 8650a889017cb1f6ea6813ccf83a2e9f6fa49dd3
- Author: Xiao Ni 
- Date: Tue Aug 25 13:43:00 2020 +0800
+ Link: 
https://github.com/torvalds/linux/commit/cf78408f937a67f59f5e90ee8e6cadeed7c128a8
+ 
+ commit c2968285925adb97b9aa4ede94c1f1ab61ce0925
+ Author: Xiao Ni 
+ Date:   Thu Feb 4 15:50:44 2021 +0800
  Subject: md/raid10: extend r10bio devs to raid disks
- Link: 
https://github.com/torvalds/linux/commit/8650a889017cb1f6ea6813ccf83a2e9f6fa49dd3
- 
- commit f046f5d0d79cdb968f219ce249e497fd1accf484
- Author: Xiao Ni 
- Date: Tue Aug 25 13:43:01 2020 +0800
- Subject: md/raid10: pull codes that wait for blocked dev into one function
- Link: 
https://github.com/torvalds/linux/commit/f046f5d0d79cdb968f219ce249e497fd1accf484
- 
- commit bcc90d280465ebd51ab8688be86e1f00c62dccf9
- Author: Xiao Ni 
- Date: Wed Sep 2 20:00:22 2020 +0800
+ Link: 
https://github.com/torvalds/linux/commit/c2968285925adb97b9aa4ede94c1f1ab61ce0925
+ 
+ commit f2e7e269a7525317752d472bb48a549780e87d22
+ Author: Xiao Ni 
+ Date:   Thu Feb 4 15:50:45 2021 +0800
+ Subject: md/raid10: pull the code that wait for blocked dev into one function
+ Link: 
https://github.com/torvalds/linux/commit/f2e7e269a7525317752d472bb48a549780e87d22
+ 
+ commit d30588b2731fb01e1616cf16c3fe79a1443e29aa
+ Author: Xiao Ni 
+ Date:   Thu Feb 4 15:50:46 2021 +0800
  Subject: md/raid10: improve raid10 discard request
- Link: 
https://github.com/torvalds/linux/commit/bcc90d280465ebd51ab8688be86e1f00c62dccf9
- 
- commit d3ee2d8415a6256c1c41e1be36e80e640c3e6359
- Author: Xiao Ni 
- Date: Wed Sep 2 20:00:23 2020 +0800
+ Link: 
https://github.com/torvalds/linux/commit/d30588b2731fb01e1616cf16c3fe79a1443e29aa
+ 
+ commit 254c271da0712ea8914f187588e0f81f7678ee2f
+ Author: Xiao Ni 
+ Date:   Thu Feb 4 15:50:47 2021 +0800
  Subject: md/raid10: improve discard request for far layout
- Link: 
https://github.com/torvalds/linux/commit/d3ee2d8415a6256c1c41e1be36e80e640c3e6359
+ Link: 
https://github.com/torvalds/linux/commit/254c271da0712ea8914f187588e0f81f7678ee2f
  
  There is also an additional commit which is required, and was merged
  after "md/raid10: improve raid10 discard request" was merged. The
  following commits enable Radid10 to use large discards, instead of
  splitting into many bios, since the technical hurdles have now been
  removed.
  
- commit 

[Bug 1924624] Re: After upgrade to 5.8.0-49/5.8.0-50 with Intel graphics (Gen7: Haswell/Ivy Bridge) a lot of glitches render screen unusable

2021-05-02 Thread Diego Garcia
Response to FairMiles (fermilesi) #22

I also had this error. I fixed it forcing login screen to load with Xorg 
(instead of wayland)
These are the steps:
https://linuxconfig.org/how-to-disable-wayland-and-enable-xorg-display-server-on-ubuntu-18-04-bionic-beaver-linux

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

Title:
  After upgrade to 5.8.0-49/5.8.0-50 with Intel graphics (Gen7:
  Haswell/Ivy Bridge) a lot of glitches render screen unusable

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

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

[Bug 1926933] [NEW] Cannot install grub on fresh install with ZFS

2021-05-02 Thread R. Achmad Dadang Nur Hidayanto
Public bug reported:

Ubuntu 21.04 fresh install failed on install grub on /dev/sdc (drive for
ubuntu ZFS)

ProblemType: Bug
DistroRelease: Ubuntu 21.04
Package: ubiquity 21.04.19
ProcVersionSignature: Ubuntu 5.11.0-16.17-generic 5.11.12
Uname: Linux 5.11.0-16-generic x86_64
NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
ApportVersion: 2.20.11-0ubuntu65
Architecture: amd64
CasperMD5CheckResult: pass
CasperVersion: 1.461
Date: Mon May  3 11:50:57 2021
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed 
maybe-ubiquity quiet splash ---
LiveMediaBuild: Ubuntu 21.04 "Hirsute Hippo" - Release amd64 (20210420)
RebootRequiredPkgs:
 linux-image-5.11.0-16-generic
 linux-base
 linux-base
 linux-base
SourcePackage: grub-installer
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: grub-installer (Ubuntu)
 Importance: Undecided
 Status: New


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

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

Title:
  Cannot install grub on fresh install with ZFS

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

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

[Bug 1926932] [NEW] Error message too short to understand what is wrong

2021-05-02 Thread Nav
Public bug reported:

This is on Ubuntu 20.10 (Groovy Gorilla). I placed a text file on my desktop, 
and on clicking it, I was shown the error "Execution of 
/home/myUsername/Desktop/.goutputstream-WU... Command not found". 
Even on clicking the error message that popped up, it didn't expand to show 
more details. 
So basically, the bug I'm reporting is about error messages being too 
short/obscure to be useful for users to figure out what the problem actually 
is. Image attached. The black spot in the middle was added by me to obscure the 
username.

(on a a side note, I was clicking a plain text document which had the
checkbox for "allow executing file as a program" ticked). Clicking any
other textfile didn't show this error.

** Affects: ubuntu
 Importance: Undecided
 Status: New

** Attachment added: "error message"
   
https://bugs.launchpad.net/bugs/1926932/+attachment/5494346/+files/textEditorError.png

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

Title:
  Error message too short to understand what is wrong

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

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

[Bug 1700085] Re: Mouse cursor is tiny on HiDPI screens

2021-05-02 Thread Suor
Still having this in Ubuntu 20.10. The cursor size is normal in Chrome
but all the apps like Nautilus makes it small.

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

Title:
  Mouse cursor is tiny on HiDPI screens

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

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

[Bug 1924624] Re: After upgrade to 5.8.0-49/5.8.0-50 with Intel graphics (Gen7: Haswell/Ivy Bridge) a lot of glitches render screen unusable

2021-05-02 Thread Daniel van Vugt
Thanks for your patience. It appears the kernel team is now aiming for
version 5.8.0-52 which is in proposed.

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

Title:
  After upgrade to 5.8.0-49/5.8.0-50 with Intel graphics (Gen7:
  Haswell/Ivy Bridge) a lot of glitches render screen unusable

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

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

[Bug 1813388] Re: Crash on startup of fs-uae-launcher. complains of LhaFile missing from Python

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

** Changed in: fs-uae (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/1813388

Title:
  Crash on startup of fs-uae-launcher. complains of LhaFile missing from
  Python

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/fs-uae/+bug/1813388/+subscriptions

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

[Bug 1905122] Re: firefox xubuntu.20.04.1 don`t work localization

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

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

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

Title:
  firefox xubuntu.20.04.1 don`t work localization

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

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

[Bug 1913453] Re: gnome-shell freeze

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

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

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

Title:
  gnome-shell freeze

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

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

[Bug 1913453] Re: gnome-shell freeze

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

** Changed in: libfprint (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/1913453

Title:
  gnome-shell freeze

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

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

[Bug 1917073] Re: [Dell Latitude E5570] Internal laptop speakers after connecting other sound devices

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

** Changed in: pulseaudio (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/1917073

Title:
  [Dell Latitude E5570] Internal laptop speakers after connecting other
  sound devices

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

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

[Bug 1917222] Re: [ASUS Z97-P] Some videos play sound some dont. Web browsers fail to play sound

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

** Changed in: pulseaudio (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/1917222

Title:
  [ASUS Z97-P] Some videos play sound some dont. Web browsers fail to
  play sound

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

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

[Bug 1917129] Re: startx error

2021-05-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/1917129

Title:
  startx error

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

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

[Bug 1917459] Re: mouse doubleclick unconsistent

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

** Changed in: libinput (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/1917459

Title:
  mouse doubleclick unconsistent

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

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

[Bug 1926760] Re: display is flickering and not responsive from login screen

2021-05-02 Thread Daniel van Vugt
*** This bug is a duplicate of bug 1924624 ***
https://bugs.launchpad.net/bugs/1924624

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug 1924624, so it is being marked as such. Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report. Feel free to continue to report any other bugs you may
find.


** This bug has been marked a duplicate of bug 1924624
   After upgrade to 5.8.0-49/5.8.0-50 with Intel graphics (Gen7: Haswell/Ivy 
Bridge) a lot of glitches render screen unusable

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

Title:
  display is flickering and not responsive from login screen

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

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

[Bug 1926888] Re: Screen Flickering

2021-05-02 Thread Daniel van Vugt
*** This bug is a duplicate of bug 1924624 ***
https://bugs.launchpad.net/bugs/1924624

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug 1924624, so it is being marked as such. Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report. Feel free to continue to report any other bugs you may
find.

** This bug has been marked a duplicate of bug 1924624
   After upgrade to 5.8.0-49/5.8.0-50 with Intel graphics (Gen7: Haswell/Ivy 
Bridge) a lot of glitches render screen unusable

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

Title:
  Screen Flickering

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

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

[Bug 1923347] Re: Selecting an area on the desktop is broken on multi-monitor setups

2021-05-02 Thread Daniel van Vugt
** Summary changed:

- Selecting an area on the desktop is broken on multi-monitor setups in X11
+ Selecting an area on the desktop is broken on multi-monitor setups

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

Title:
  Selecting an area on the desktop is broken on multi-monitor setups

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell-extension-desktop-icons-ng/+bug/1923347/+subscriptions

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

[Bug 1926033] Re: left clicking selection on desktop - super large area

2021-05-02 Thread Daniel van Vugt
*** This bug is a duplicate of bug 1923347 ***
https://bugs.launchpad.net/bugs/1923347

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug 1923347, so it is being marked as such. Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report. Feel free to continue to report any other bugs you may
find.


** This bug has been marked a duplicate of bug 1923347
   Selecting an area on the desktop is broken on multi-monitor setups

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

Title:
  left clicking selection on desktop - super large area

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

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

[Bug 1925095] Re: GNOME Desktop selection is misaligned with the mouse on 21.04-dev

2021-05-02 Thread Daniel van Vugt
*** This bug is a duplicate of bug 1923347 ***
https://bugs.launchpad.net/bugs/1923347

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug 1923347, so it is being marked as such. Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report. Feel free to continue to report any other bugs you may
find.


** This bug has been marked a duplicate of bug 1923347
   Selecting an area on the desktop is broken on multi-monitor setups in X11

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

Title:
  GNOME Desktop selection is misaligned with the mouse on 21.04-dev

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell-extension-desktop-icons-ng/+bug/1925095/+subscriptions

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

[Bug 1926205] Re: graphic interface faulty

2021-05-02 Thread Daniel van Vugt
Please:

1. Look at bug 1874578 and tell us if you think that might be the
problem.

2. Open the 'Extensions' app and ensure you don't have any extensions
other than the three Ubuntu ones.

3. Run 'top' in a Terminal window while the problem is happening and
tell us if anything has high CPU.

4. Run 'journalctl -f' in a Terminal window while the problem is
happening and tell us if any messages are repeating.


** Tags added: amdgpu

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

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

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

Title:
  graphic interface faulty

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

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

[Bug 1926216] Re: drag and select does not work correctly on one monitor

2021-05-02 Thread Daniel van Vugt
*** This bug is a duplicate of bug 1923347 ***
https://bugs.launchpad.net/bugs/1923347

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug 1923347, so it is being marked as such. Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report. Feel free to continue to report any other bugs you may
find.


** This bug has been marked a duplicate of bug 1923347
   Selecting an area on the desktop is broken on multi-monitor setups in X11

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

Title:
  drag and select does not work correctly on one monitor

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

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

[Bug 1925685] Re: [SRU] Patch for flicker and glitching on certain hardware, intel framebuffer,

2021-05-02 Thread Daniel van Vugt
Please give this bug a better title, not just "certain hardware".

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

Title:
  [SRU] Patch for flicker and glitching on certain hardware, intel
  framebuffer,

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

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

[Bug 1926110] Re: Apps interface flickering

2021-05-02 Thread Daniel van Vugt
*** This bug is a duplicate of bug 1924624 ***
https://bugs.launchpad.net/bugs/1924624

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug 1924624, so it is being marked as such. Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report. Feel free to continue to report any other bugs you may
find.


** This bug has been marked a duplicate of bug 1924624
   After upgrade to 5.8.0-49/5.8.0-50 with Intel graphics (Gen7: Haswell/Ivy 
Bridge) a lot of glitches render screen unusable

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

Title:
  Apps interface flickering

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

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

[Bug 1926144] Re: Flickering screen

2021-05-02 Thread Daniel van Vugt
*** This bug is a duplicate of bug 1924624 ***
https://bugs.launchpad.net/bugs/1924624

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug 1924624, so it is being marked as such. Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report. Feel free to continue to report any other bugs you may
find.


** This bug has been marked a duplicate of bug 1924624
   After upgrade to 5.8.0-49/5.8.0-50 with Intel graphics (Gen7: Haswell/Ivy 
Bridge) a lot of glitches render screen unusable

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

Title:
  Flickering screen

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

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

[Bug 1925973] Re: Nvidia driver 450.119 crashes lxpanel on Ubuntu 18.04

2021-05-02 Thread Daniel van Vugt
Thank you for taking the time to report this bug and helping to make
Ubuntu better. It sounds like some part of the system has crashed. To
help us find the cause of the crash please follow these steps:

1. Look in /var/crash for crash files and if found run:
ubuntu-bug YOURFILE.crash
Then tell us the ID of the newly-created bug.

2. If step 1 failed then look at https://errors.ubuntu.com/user/ID where
ID is the content of file /var/lib/whoopsie/whoopsie-id on the machine.
Do you find any links to recent problems on that page? If so then please
send the links to us.

3. If step 2 also failed then apply the workaround from bug 994921,
reboot, reproduce the crash, and retry step 1.

Please take care to avoid attaching .crash files to bugs as we are
unable to process them as file attachments. It would also be a security
risk for yourself.

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

** Changed in: lxpanel (Ubuntu)
   Status: Invalid => Incomplete

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

Title:
  Nvidia driver 450.119 crashes lxpanel on Ubuntu 18.04

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

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

[Bug 1926068] Re: INTEL HD DRIVERS

2021-05-02 Thread Daniel van Vugt
Thanks for the bug report. It appears there are two problems here:

1. You are using the 'oibaf' PPA which is unsupported and is known to
cause graphics problems. Please uninstall it or at least don't report
bugs while it is installed.

2. There is a recent regression in the Intel kernel driver so please
subscribe to bug 1924624 for that.

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

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

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

Title:
  INTEL HD DRIVERS

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

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

[Bug 1925750] Re: Ubuntu 21.04 not loading correctly intel graphics driver

2021-05-02 Thread Daniel van Vugt
There is no "additional" Intel driver. There is only one (that is
supported) and it is always enabled, never listed in the GUI.

If you have the Nvidia driver installed and would like to try Wayland
(NOT RECOMMENDED) then the steps to use are here:
https://wiki.ubuntu.com/EoanErmine/ReleaseNotes#Enabling_Wayland_support_with_the_NVIDIA_proprietary_driver

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

** Changed in: gdm3 (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/1925750

Title:
  Ubuntu 21.04 not loading correctly intel graphics driver

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

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

[Bug 1924624] Re: After upgrade to 5.8.0-49/5.8.0-50 with Intel graphics (Gen7: Haswell/Ivy Bridge) a lot of glitches render screen unusable

2021-05-02 Thread Daniel van Vugt
** Summary changed:

- After upgrade to 5.8.0-49/5.8.0-50 with Intel graphics (gen7, Haswell/Ivy 
Bridge) a lot of glitches render screen unusable
+ After upgrade to 5.8.0-49/5.8.0-50 with Intel graphics (Gen7: Haswell/Ivy 
Bridge) a lot of glitches render screen unusable

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

Title:
  After upgrade to 5.8.0-49/5.8.0-50 with Intel graphics (Gen7:
  Haswell/Ivy Bridge) a lot of glitches render screen unusable

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

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

[Bug 1926661] Re: i think gpu driver isn't working well.

2021-05-02 Thread Daniel van Vugt
*** This bug is a duplicate of bug 1924624 ***
https://bugs.launchpad.net/bugs/1924624

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug 1924624, so it is being marked as such. Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report. Feel free to continue to report any other bugs you may
find.


** This bug has been marked a duplicate of bug 1924624
   After upgrade to 5.8.0-49/5.8.0-50 with Intel graphics (gen7, Haswell/Ivy 
Bridge) a lot of glitches render screen unusable

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

Title:
  i think gpu driver isn't working well.

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

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

[Bug 1774498] Re: Windows flash by external screen on workspace change

2021-05-02 Thread Daniel van Vugt
** Bug watch added: gitlab.gnome.org/GNOME/gnome-shell/issues #455
   https://gitlab.gnome.org/GNOME/gnome-shell/issues/455

** Also affects: gnome-shell via
   https://gitlab.gnome.org/GNOME/gnome-shell/issues/455
   Importance: Unknown
   Status: Unknown

** Changed in: gnome-shell (Ubuntu)
   Status: Confirmed => Fix Committed

** Tags added: fixed-in-40 fixed-upstream

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

Title:
  Windows flash by external screen on workspace change

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

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

[Bug 1864215] Re: Please add webp loader to gdk-pixbuf

2021-05-02 Thread Bug Watch Updater
** Changed in: debian
   Status: Unknown => New

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

Title:
  Please add webp loader to gdk-pixbuf

To manage notifications about this bug go to:
https://bugs.launchpad.net/gdk-pixbuf/+bug/1864215/+subscriptions

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

[Bug 1926574] Re: Not possible to share windows in a video conference

2021-05-02 Thread Daniel van Vugt
This is a limitation of the app or browser you are using, not mutter or
Wayland. Which app are you using?

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

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

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

Title:
  Not possible to share windows in a video conference

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

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

[Bug 1926926] Re: CVE-2021-27928 et al affects MariaDB in Ubuntu

2021-05-02 Thread Otto Kekäläinen
The 10.1 series update for 18.04 is now available.

Please use git-buildpackage to fetch and build from the ubuntu-18.04
branch at https://salsa.debian.org/mariadb-
team/mariadb-10.1/tree/ubuntu-18.04

The repository uses pristine-tar, so there is no need to separately
download the sources. You can just check the signature/SHA1SUM directly
from the git-buildpackage generated tarball.

Test builds and testsuite passed on all platforms at
https://launchpad.net/~mysql-ubuntu/+archive/ubuntu/mariadb-10.1/+builds?build_text=_state=all

Debdiffs can be created directly from the repo like in a local clone
with 'git diff .. debian/'

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

Title:
  CVE-2021-27928 et al affects MariaDB in Ubuntu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mariadb-10.1/+bug/1926926/+subscriptions

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

[Bug 1901391] Re: Ctrl+Alt+Shift+R screen recording not working anymore in 20.10 (Pipewire is now a requirement)

2021-05-02 Thread Daniel van Vugt
GNOME 40 is not supported in Ubuntu yet so please don't report bugs
about it. Also this bug is closed already. If you have any problems with
the supported packages in Ubuntu then please open a new bug.

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

Title:
  Ctrl+Alt+Shift+R screen recording not working anymore in 20.10
  (Pipewire is now a requirement)

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

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

[Bug 1915704] Re: Specific pointing device disappear/disconnect when standby

2021-05-02 Thread Daniel van Vugt
** Changed in: linux (Ubuntu)
   Status: Expired => Invalid

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

Title:
  Specific pointing device disappear/disconnect when standby

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

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

[Bug 1576559] Re: Refused to switch profile to headset_head_unit: Not connected

2021-05-02 Thread Daniel van Vugt
** Changed in: pulseaudio (Ubuntu)
   Status: In Progress => Fix Committed

** Tags added: fixed-in-15 fixed-upstream

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

Title:
  Refused to switch profile to headset_head_unit: Not connected

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

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

[Bug 1926070] Re: Please backport Desktop Icons NG to 20.04

2021-05-02 Thread Daniel van Vugt
I don't think 'main' is necessary for this. It's not part of the 20.04
release series and shouldn't be because it's a major feature and still
stabilizing/buggy (I'm working on it). DING can however be released to
20.04 'universe'. I don't see why not.

** Changed in: gnome-shell-extension-desktop-icons-ng (Ubuntu)
   Importance: Undecided => Wishlist

** Changed in: gnome-shell-extension-desktop-icons-ng (Ubuntu)
   Status: New => Triaged

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

Title:
  Please backport Desktop Icons NG to 20.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/focal-backports/+bug/1926070/+subscriptions

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

[Bug 1926921] Re: CTRL+Q gives segmentation fault for pavucontrol 4.0-2

2021-05-02 Thread Erich Eickmeyer 
Thank you for taking the time to report this bug and helping to make
Ubuntu better. Please execute the following command only once, as it
will automatically gather debugging information, in a terminal:

apport-collect 1926921

When reporting bugs in the future please use apport by using 'ubuntu-
bug' and the name of the package affected. You can learn more about this
functionality at https://wiki.ubuntu.com/ReportingBugs.

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

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

Title:
  CTRL+Q gives segmentation fault for pavucontrol 4.0-2

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

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

[Bug 1925335] Re: subiquity installer : ibmveth disabled by default

2021-05-02 Thread Michael Hudson-Doyle
wpa_supplicant is not part of the server seed, so by default a server
install could only join an unencrypted wifi network, which doesn't seem
very useful. There is a chance that we will do the work to make wifi
work properly at some point, but we're not there yet.

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

Title:
  subiquity installer : ibmveth disabled by default

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

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

[Bug 1926600] Re: Ubuntu server 20.04.2 installer hidden partition problem

2021-05-02 Thread Michael Hudson-Doyle
The partition is listed under "used devices" because there isn't
anything you can do with it. It has to exist though because otherwise
grub wont fit -- if you select the partition and then try to "edit" it,
there is a blurb about what's going on.

** Changed in: subiquity (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/1926600

Title:
  Ubuntu server 20.04.2 installer hidden partition problem

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

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

[Bug 1926916] Re: keyboard doesn't wake PC

2021-05-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/1926916/+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/1926916

Title:
  keyboard doesn't wake PC

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

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

[Bug 1926925] Re: os-prober doesn't detect EFI boot partitions on mdraid devices in dual boot

2021-05-02 Thread Ubuntu Foundations Team Bug Bot
The attachment "potential fix for allowing os-prober to detect other
os's on bios raid drives loaded by mdadm." seems to be a patch.  If it
isn't, please remove the "patch" flag from the attachment, remove the
"patch" tag, and if you are a member of the ~ubuntu-reviewers,
unsubscribe the team.

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

** Tags added: patch

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

Title:
  os-prober doesn't detect EFI boot partitions on mdraid devices in dual
  boot

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/os-prober/+bug/1926925/+subscriptions

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

[Bug 1926289] Re: pdfarranger TypeError: only pages can be inserted

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

** Changed in: pdfarranger (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/1926289

Title:
  pdfarranger TypeError: only pages can be inserted

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

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

[Bug 1926820]

2021-05-02 Thread Alex Murray
Thank you for taking the time to report this bug and helping to make
Ubuntu better.  Reviewing your dmesg attachment to this bug report it
seems that there may be a problem with your hardware.  I'd recommend
performing a back up and then investigating the situation.  Measures you
might take include checking cable connections and using software tools
to investigate the health of your hardware.  In the event that is is not
in fact an error with your hardware please set the bug's status back to
New.  Thanks and good luck!

** Tags added: hardware-error

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

Title:
  package libseccomp2:amd64 2.4.3-1ubuntu3.20.04.3 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/libseccomp/+bug/1926820/+subscriptions

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

[Bug 1926289] Re: pdfarranger TypeError: only pages can be inserted

2021-05-02 Thread Tim Richardson
The flathub version is fixed too.
Please see upstream bug report
https://github.com/pdfarranger/pdfarranger/issues/478
which is closed as fixed in new release.

** Bug watch added: github.com/pdfarranger/pdfarranger/issues #478
   https://github.com/pdfarranger/pdfarranger/issues/478

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

Title:
  pdfarranger TypeError: only pages can be inserted

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

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

[Bug 1926820] Re: package libseccomp2:amd64 2.4.3-1ubuntu3.20.04.3 failed to install/upgrade: package is in a very bad inconsistent state; you should reinstall it before attempting configuration

2021-05-02 Thread Alex Murray
Thanks for taking the time to report this bug and helping to make Ubuntu
better. We appreciate the difficulties you are facing, but this appears
to be a "regular" (non-security) bug.  I have unmarked it as a security
issue since this bug does not show evidence of allowing attackers to
cross privilege boundaries nor directly cause loss of data/privacy.
Please feel free to report any other bugs you may find.

** Information type changed from Private Security to Public

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

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

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

Title:
  package libseccomp2:amd64 2.4.3-1ubuntu3.20.04.3 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/libseccomp/+bug/1926820/+subscriptions

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

[Bug 1926254] Re: x509 Certificate verification fails when basicConstraints=CA:FALSE, pathlen:0 on self-signed leaf certs

2021-05-02 Thread Matthew Ruffell
Hi Seth,

Thanks for the review.

I read the commit you found:

commit 1e41dadfa7b9f792ed0f4714a3d3d36f070cf30e
Author: Dr. David von Oheimb 
Date:   Sat Jun 27 16:16:12 2020 +0200
Subject: Extend X509 cert checks and error reporting in v3_{purp,crld}.c and 
x509_{set,vfy}.c
Link: 
https://github.com/openssl/openssl/commit/1e41dadfa7b9f792ed0f4714a3d3d36f070cf30e

Firstly, yes, you are right, this commit does refactor the code I am
suggesting we SRU to focal and groovy, but upon further inspection, this
commit was not backported to the 1.1.1 stable series, as it is missing
from the OpenSSL_1_1_1-stable branch. As you mentioned, it is a fairly
invasive change and modifies a lot of different x509 components, it
isn't suitable to be backported to 1.1.1 stable anyway, and much less be
acceptable for SRU to focal or groovy.

I think we should stick to the small targeted commits I suggested for
this SRU, since they are a part of 1.1.1 stable, and are already in
hirsute onward.

To test that the logic from the suggested commits to SRU matches this
new refactor commit from version 3.0alpha, I went and built the master
branch of openssl, which had commit
d1a770414acd34c774248ce8efbe202fd7a44041 at HEAD.

$ env LD_LIBRARY_PATH="/home/ubuntu/openssl/" ../openssl/apps/openssl version
OpenSSL 3.0.0-alpha16-dev  (Library: OpenSSL 3.0.0-alpha16-dev )

$ env LD_LIBRARY_PATH="/home/ubuntu/openssl/" ../openssl/apps/openssl verify 
-CAfile CA/rootCA_cert.pem -untrusted CA/subCA_cert.pem user1_cert.pem
user1_cert.pem: OK

The logic matches and the reproducer certificates verify OK. This
confirms we aren't backporting a short lived change, and that this
behaviour is the desired and accepted outcome.

@ddstreet Please go ahead and sponsor the SRU to -updates, thanks.

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

Title:
  x509 Certificate verification fails when
  basicConstraints=CA:FALSE,pathlen:0 on self-signed leaf certs

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

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

[Bug 1742482] Re: firefox is used to open ftp share files

2021-05-02 Thread AkhIL
Ubuntu 21.04 also affected.
Manjaro and Fedora 34 also affected 
https://bugzilla.redhat.com/show_bug.cgi?id=1956075

** Bug watch added: Red Hat Bugzilla #1956075
   https://bugzilla.redhat.com/show_bug.cgi?id=1956075

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

Title:
  firefox is used to open ftp share files

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

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

[Bug 1926926] [NEW] CVE-2021-27928 et al affects MariaDB in Ubuntu

2021-05-02 Thread Otto Kekäläinen
*** This bug is a security vulnerability ***

Public security bug reported:

According to https://mariadb.com/kb/en/security/ the issue
CVE-2021-27928 applies for MariaDB 10.5.9 and MariaDB 10.3.28 in Ubuntu.
According to Debian LTS team it also applies to MariaDB 10.1 and there
is a version specific patch available.

I am working on updates for all maintained Ubuntu versions for MariaDB:
- mariadb-10.1 in Bionic
- mariadb-10.3 in Focal
- mariadb-10.3 in Groovy
- mariadb-10.5 in Hirsute

MariaDB 10.5 in Impish will automatically import the new version from
Debian Sid once available.

Security sponsor note this:
https://wiki.ubuntu.com/SecurityTeam/PublicationNotes#Sponsoring_MariaDB_Security_Updates

** Affects: mariadb-10.1 (Ubuntu)
 Importance: Undecided
 Assignee: Otto Kekäläinen (otto)
 Status: New

** Affects: mariadb-10.3 (Ubuntu)
 Importance: Undecided
 Assignee: Otto Kekäläinen (otto)
 Status: New

** Affects: mariadb-10.5 (Ubuntu)
 Importance: Undecided
 Assignee: Otto Kekäläinen (otto)
 Status: New

** Affects: mariadb-10.1 (Ubuntu Bionic)
 Importance: Undecided
 Status: New

** Affects: mariadb-10.3 (Ubuntu Focal)
 Importance: Undecided
 Status: New

** Affects: mariadb-10.3 (Ubuntu Groovy)
 Importance: Undecided
 Status: New

** Affects: mariadb-10.5 (Ubuntu Hirsute)
 Importance: Undecided
 Status: New

** Affects: mariadb-10.5 (Ubuntu Impish)
 Importance: Undecided
 Assignee: Otto Kekäläinen (otto)
 Status: New

** Also affects: mariadb-10.1 (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: mariadb-10.5 (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: mariadb-10.1 (Ubuntu)
 Assignee: (unassigned) => Otto Kekäläinen (otto)

** Changed in: mariadb-10.5 (Ubuntu)
 Assignee: (unassigned) => Otto Kekäläinen (otto)

** Also affects: mariadb-10.1 (Ubuntu Bionic)
   Importance: Undecided
   Status: New

** Also affects: mariadb-10.3 (Ubuntu Bionic)
   Importance: Undecided
   Status: New

** Also affects: mariadb-10.5 (Ubuntu Bionic)
   Importance: Undecided
   Status: New

** Also affects: mariadb-10.1 (Ubuntu Impish)
   Importance: Undecided
 Assignee: Otto Kekäläinen (otto)
   Status: New

** Also affects: mariadb-10.3 (Ubuntu Impish)
   Importance: Undecided
 Assignee: Otto Kekäläinen (otto)
   Status: New

** Also affects: mariadb-10.5 (Ubuntu Impish)
   Importance: Undecided
 Assignee: Otto Kekäläinen (otto)
   Status: New

** Also affects: mariadb-10.1 (Ubuntu Focal)
   Importance: Undecided
   Status: New

** Also affects: mariadb-10.3 (Ubuntu Focal)
   Importance: Undecided
   Status: New

** Also affects: mariadb-10.5 (Ubuntu Focal)
   Importance: Undecided
   Status: New

** Also affects: mariadb-10.1 (Ubuntu Hirsute)
   Importance: Undecided
   Status: New

** Also affects: mariadb-10.3 (Ubuntu Hirsute)
   Importance: Undecided
   Status: New

** Also affects: mariadb-10.5 (Ubuntu Hirsute)
   Importance: Undecided
   Status: New

** Also affects: mariadb-10.1 (Ubuntu Groovy)
   Importance: Undecided
   Status: New

** Also affects: mariadb-10.3 (Ubuntu Groovy)
   Importance: Undecided
   Status: New

** Also affects: mariadb-10.5 (Ubuntu Groovy)
   Importance: Undecided
   Status: New

** No longer affects: mariadb-10.1 (Ubuntu Focal)

** No longer affects: mariadb-10.1 (Ubuntu Groovy)

** No longer affects: mariadb-10.1 (Ubuntu Hirsute)

** No longer affects: mariadb-10.1 (Ubuntu Impish)

** No longer affects: mariadb-10.3 (Ubuntu Bionic)

** No longer affects: mariadb-10.3 (Ubuntu Hirsute)

** No longer affects: mariadb-10.3 (Ubuntu Impish)

** No longer affects: mariadb-10.5 (Ubuntu Bionic)

** No longer affects: mariadb-10.5 (Ubuntu Focal)

** No longer affects: mariadb-10.5 (Ubuntu Groovy)

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

Title:
  CVE-2021-27928 et al affects MariaDB in Ubuntu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mariadb-10.1/+bug/1926926/+subscriptions

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

[Bug 1926925] [NEW] os-prober doesn't detect EFI boot partitions on mdraid devices in dual boot

2021-05-02 Thread Adam Wilczek
Public bug reported:

Ubuntu Version: 
Description:Ubuntu 20.04.2 LTS
Release:20.04

Package Version:
os-prober:
  Installed: 1.74ubuntu2
  Candidate: 1.74ubuntu2
  Version table:
 *** 1.74ubuntu2 500
500 http://us.archive.ubuntu.com/ubuntu focal/main amd64 Packages
100 /var/lib/dpkg/status


Given the following setup:
Given a configuration with boot partition on non bios raid drive, and Another 
OS with its own boot partition (such as Windows) on bios raid drive. User is 
desiring to chainload the other os from grub.

What should happen:
OS Prober detects Other OS's boot partition (such as windows) and forward the 
correct EFI file to grub during configuration. Grub now knows about the other 
OS and will show up in menu to be chainloaded.

What happens:
os-prober skips the mounted boot partition on the bios raid device because it 
gets caught by the "Is this a virtual device" check on line 32 of 
/usr/lib/os-probes/mounted/05efi. Grub is not configured for the other OS with 
a boot partition on bios raid. Grub doesn't know about the other os requiring 
manual configuration to add EFI files to grub.


Summary:
Due to the restrictive conditional in /usr/lib/os-probes/mounted/05efi line 32 
any mdraid device such as an intel soft raid are not processed by os-prober for 
other OS's that support boot partitions on bios raid (such as windows). This 
means in dual boot scenarios where grub is not installed on the bios raid but 
is used to chainload an os on the bios raid, the Other OS won't be detected or 
present without manual configuration. As mdadm has supported assembling most 
bios raids for some time and is loadable as a grub module, os-prober should 
support probing for other OS's in this situation. While this is an edge case, 
it is a very easy to believe to be supported edge case and should require 
minimal modification to fix as intel bios raids have an easily grep-able 
identifier in the udevadm info output. As far as I can tell mdadm will always 
use the container 'MD_CONTAINER=/dev/md/imsm*' where star is the identifier 
number (eg. 0) which should be easily detectable and allow detection of it as a 
"regular" drive and not virtual. I've attached a patch for another easy way it 
can be done by just grepping for /dev/md*p* that could allow for different 
types of raids but potentially have other draw backs on very edge case setups.

** Affects: os-prober (Ubuntu)
 Importance: Undecided
 Status: New

** Patch added: "potential fix for allowing os-prober to detect other os's on 
bios raid drives loaded by mdadm."
   
https://bugs.launchpad.net/bugs/1926925/+attachment/5494324/+files/os_prober_01_imsm_raid_fix.diff

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

Title:
  os-prober doesn't detect EFI boot partitions on mdraid devices in dual
  boot

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/os-prober/+bug/1926925/+subscriptions

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

[Bug 1926924] [NEW] Failed upgrade from 18.04 LTS to 20.04 LTS

2021-05-02 Thread nthu9280
Public bug reported:

Could not calculate the upgrade

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'. 


Restoring original system state

Aborting

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: ubuntu-release-upgrader-core 1:18.04.44
ProcVersionSignature: Ubuntu 4.15.0-142.146-generic 4.15.18
Uname: Linux 4.15.0-142-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.23
Architecture: amd64
CrashDB: ubuntu
Date: Sun May  2 18:09:54 2021
InstallationDate: Installed on 2019-03-17 (777 days ago)
InstallationMedia: Xubuntu 16.04.3 LTS "Xenial Xerus" - Release amd64 (20170801)
PackageArchitecture: all
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: ubuntu-release-upgrader
UpgradeStatus: Upgraded to bionic on 2021-05-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/1926924

Title:
  Failed upgrade from 18.04 LTS to 20.04 LTS

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

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

[Bug 1926705] Re: insInconsistency detected by ld.so: ../sysdeps/x86_64/dl-machine.h: 541: elf_machine_rela_relative: Assertion `ELFW(R_TYPE) (reloc->r_info) == R_X86_64_RELATIVE' failed!

2021-05-02 Thread Sergio Schvezov
Thanks for following up, I missed that part. This must be something
else.

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

Title:
  insInconsistency detected by ld.so: ../sysdeps/x86_64/dl-machine.h:
  541: elf_machine_rela_relative: Assertion `ELFW(R_TYPE)
  (reloc->r_info) == R_X86_64_RELATIVE' failed!

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

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

[Bug 1905591] Re: no brightness control in {455, 460} after update from 450

2021-05-02 Thread David Evans
The 460 driver is broken again. No brightness control.

01 May 2021: nvidia-driver-460 (proprietary, tested).

A reboot fixed everything. Reporting this here as it's not a bug with
the driver.

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

Title:
  no brightness control in {455,460} after update from 450

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

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

[Bug 1926922] [NEW] Bluetooth sound card not detected

2021-05-02 Thread Ntapechela Knox Siwale
Public bug reported:

Whenever I connect my Polaroid bluetooth Headphones to my laptop using
bluetooth I am unable to select the audio channel in the sound settings,
my sound is always coming from the speakers instead of the headphones.

ntape@pand0ra:~$ sudo lsb_release -rd
Description:Ubuntu 21.04
Release:21.04

I was expecting sound to come from my headphones but its not. Its coming
from the speakers on my laptop.

ProblemType: Bug
DistroRelease: Ubuntu 21.04
Package: alsa-base 1.0.25+dfsg-0ubuntu7
ProcVersionSignature: Ubuntu 5.11.0-16.17-generic 5.11.12
Uname: Linux 5.11.0-16-generic x86_64
ApportVersion: 2.20.11-0ubuntu65
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC1:  ntape   759 F pulseaudio
 /dev/snd/controlC0:  ntape   759 F pulseaudio
CasperMD5CheckResult: pass
CurrentDesktop: ubuntu:GNOME
Date: Mon May  3 00:43:29 2021
InstallationDate: Installed on 2021-04-28 (3 days ago)
InstallationMedia: Ubuntu 21.04 "Hirsute Hippo" - Release amd64 (20210420)
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=en_ZM:en
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_ZM
 SHELL=/bin/bash
SourcePackage: alsa-driver
Symptom: audio
Title: Bluetooth sound card not detected
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 06/19/2020
dmi.bios.release: 15.53
dmi.bios.vendor: Insyde
dmi.bios.version: F.53
dmi.board.asset.tag: Type2 - Board Asset Tag
dmi.board.name: 8330
dmi.board.vendor: HP
dmi.board.version: 27.35
dmi.chassis.asset.tag: Chassis Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: HP
dmi.chassis.version: Chassis Version
dmi.ec.firmware.release: 27.35
dmi.modalias: 
dmi:bvnInsyde:bvrF.53:bd06/19/2020:br15.53:efr27.35:svnHP:pnHPLaptop15-bw0xx:pvrType1ProductConfigId:rvnHP:rn8330:rvr27.35:cvnHP:ct10:cvrChassisVersion:
dmi.product.family: 103C_5335KV HP Notebook
dmi.product.name: HP Laptop 15-bw0xx
dmi.product.sku: 4UT18EA#ACQ
dmi.product.version: Type1ProductConfigId
dmi.sys.vendor: HP

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


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

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

Title:
  Bluetooth  sound card not detected

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

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

[Bug 1926921] Re: CTRL+Q gives segmentation fault for pavucontrol 4.0-2

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

** Changed in: pavucontrol (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/1926921

Title:
  CTRL+Q gives segmentation fault for pavucontrol 4.0-2

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

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

[Bug 1925685] Re: [SRU] Patch for flicker and glitching on certain hardware, intel framebuffer,

2021-05-02 Thread Kubuntu Focus Support
FWIW, we found today that the CMN N161HCA-GA1 panel from the i7-9750H
model also began flickering after resume from sleep. We tested the
5.8.0-50 patched kernel on this system and it also fixed this condition.

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

Title:
  [SRU] Patch for flicker and glitching on certain hardware, intel
  framebuffer,

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

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

[Bug 1926921] [NEW] CTRL+Q gives segmentation fault for pavucontrol 4.0-2

2021-05-02 Thread Pander
Public bug reported:

CTRL+Q gives a "Segmentation fault (core dumped)" for pavucontrol 4.0-2.
However, closing with the x icon in the window decoration does not
report this error.

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


** Tags: hirsute

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

Title:
  CTRL+Q gives segmentation fault for pavucontrol 4.0-2

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

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

[Bug 1926865] Re: During OS install, GRUB tries installing on sda even when it should install on sdb

2021-05-02 Thread Steve Langasek
The log files attached don't show any installation on either sda or sdb:

Apr  3 09:54:35 ubuntu grub-installer: info: Installing grub on
'/dev/nvme0n1'

What exactly do you see that tells you it's installing to sda?

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

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

Title:
  During OS install, GRUB tries installing on sda even when it should
  install on sdb

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

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

[Bug 1926919] [NEW] redshift apparmor settings not quite correct

2021-05-02 Thread StoatWblr
Public bug reported:

redshift isn't starting because apparmor is blocking it from starting.

(DENIED opening ~/.config/redshift/redshift.conf mask r)

it worked ok in 20.10 and 20.04

This looks like a security oversight


There are a couple other apparmor oversights showing in dmesg (cups-browsed, 
ntpd)

ProblemType: Bug
DistroRelease: Ubuntu 21.04
Package: ubuntu-release-upgrader-core 1:21.04.11
ProcVersionSignature: Ubuntu 5.11.0-16.17-lowlatency 5.11.12
Uname: Linux 5.11.0-16-lowlatency x86_64
ApportVersion: 2.20.11-0ubuntu65
Architecture: amd64
CasperMD5CheckResult: unknown
CrashDB: ubuntu
CurrentDesktop: ubuntu:GNOME
Date: Sun May  2 23:11:01 2021
InstallationDate: Installed on 2016-03-14 (1875 days ago)
InstallationMedia: Lubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160224)
PackageArchitecture: all
SourcePackage: ubuntu-release-upgrader
Symptom: release-upgrade
UpgradeStatus: Upgraded to hirsute on 2021-04-23 (9 days ago)

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


** Tags: amd64 apport-bug dist-upgrade hirsute wayland-session

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

Title:
  redshift apparmor settings not quite correct

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

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

[Bug 1926918] [NEW] cannot install libc6-dev, requires old libc6 version

2021-05-02 Thread Jim Salter
Public bug reported:

Current version of libc6:amd64 in Focal is 2.31-0ubuntu9.3. libc6-dev
requires 2.31-0ubuntu9.2 **only**. This prevents installation of
libc6-dev (as originally discovered while trying to install build-
essential, which also requires libc6-dev).


root@nel-lg-gram:/home/nel# apt -f install libc6-dev
Reading package lists... Done
Building dependency tree   
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 libc6-dev : Depends: libc6 (= 2.31-0ubuntu9.2) but 2.31-0ubuntu9.3 is to be 
installed
E: Unable to correct problems, you have held broken packages.
root@nel-lg-gram:/home/nel# dpkg --get-selections | grep libc6
libc6:amd64 install
libc6-dbg:amd64 install
root@nel-lg-gram:/home/nel# apt policy libc6
libc6:
  Installed: 2.31-0ubuntu9.3
  Candidate: 2.31-0ubuntu9.3
  Version table:
 *** 2.31-0ubuntu9.3 100
100 /var/lib/dpkg/status
 2.31-0ubuntu9.2 500
500 http://us.archive.ubuntu.com/ubuntu focal-updates/main amd64 
Packages
 2.31-0ubuntu9 500
500 http://us.archive.ubuntu.com/ubuntu focal/main amd64 Packages


ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: libc6-dev (not installed)
ProcVersionSignature: Ubuntu 5.8.0-50.56~20.04.1-generic 5.8.18
Uname: Linux 5.8.0-50-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.16
Architecture: amd64
CasperMD5CheckResult: skip
Date: Sun May  2 17:58:02 2021
InstallationDate: Installed on 2020-10-31 (183 days ago)
InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: glibc
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug focal

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

Title:
  cannot install libc6-dev, requires old libc6 version

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

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

[Bug 1926917] [NEW] I can't change mouse sensitivity. I mean that I can do this in this software but in real is no reaction.

2021-05-02 Thread Piotr
Public bug reported:

Dear Lubuntu Developers,

I have the same issue on Lubuntu 20.04.2 LTS with LXQt like in Lubuntu
18.04.5 with LXDE environment. Both environments have problem with mouse
settings. I want to change my mouse settings to lower sensitivity (lower
is better for me) but after make changes on lxqt configuration panel I
can't notice any difference. My mouse still have too high sensitivity
and it is very hard to use cursor in this system so you should improve
this. On Ubuntu 20.04.2 with GNOME environment I have not problem so
this is problem with LXQt configuration. You should make wider range for
setting mouse sensitivity. I hope that you fix it or you can share my
suggestion with LXQt developers.


My mouse is Primax Electronics, Ltd HP Optical Mouse but I have this problem 
with any mouse. This is not problem with device.

1) Release: Lubuntu 20.04.2 (standard liveUSB system from iso. Not updated)
2) Default version for program from iso like I said above.
3) If I change settings for mouse this should make difference.
4) I can't notice difference after makes change in mouse sensitivity on LXQt 
configuration panel.


You should quickly fix it because this issue very frustrated in normal use.


Yours faithfully,
Piotr

** Affects: lxqt-config (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/1926917

Title:
  I can't change mouse sensitivity. I mean that I can do this in this
  software but in real is no reaction.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxqt-config/+bug/1926917/+subscriptions

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

[Bug 1926906] Re: (Ubuntu 21.04) RPi4 audio is slow and crackling

2021-05-02 Thread Hedda Frauk
** Package changed: ubuntu => pulseaudio (Ubuntu)

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

Title:
  (Ubuntu 21.04) RPi4 audio is slow and crackling

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

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

[Bug 1926916] [NEW] keyboard doesn't wake PC

2021-05-02 Thread Mahdi Activ.
Public bug reported:

On ubuntu 20.10 fresh installation USB keyboard doesn't wake PC from suspend. 
There are some help for correcting it by enabling usb-port wake option.
```
$ grep . /sys/bus/usb/devices/*/power/wakeup
/sys/bus/usb/devices/8-1/power/wakeup:enabled
/sys/bus/usb/devices/8-2/power/wakeup:enabled
/sys/bus/usb/devices/usb1/power/wakeup:disabled
/sys/bus/usb/devices/usb2/power/wakeup:disabled
/sys/bus/usb/devices/usb3/power/wakeup:disabled
/sys/bus/usb/devices/usb4/power/wakeup:disabled
/sys/bus/usb/devices/usb5/power/wakeup:disabled
/sys/bus/usb/devices/usb6/power/wakeup:disabled
/sys/bus/usb/devices/usb7/power/wakeup:disabled
/sys/bus/usb/devices/usb8/power/wakeup:disabled
```

** Affects: ubuntu
 Importance: Undecided
 Status: New

** Description changed:

- On ubuntu 20.10 fresh installation keyboard doesn't wake PC from suspend
+ On ubuntu 20.10 fresh installation USB keyboard doesn't wake PC from
+ suspend

** Description changed:

  On ubuntu 20.10 fresh installation USB keyboard doesn't wake PC from
- suspend
+ suspend. There are some help for correcting it but it acts temporary

** Description changed:

- On ubuntu 20.10 fresh installation USB keyboard doesn't wake PC from
- suspend. There are some help for correcting it but it acts temporary
+ On ubuntu 20.10 fresh installation USB keyboard doesn't wake PC from suspend. 
There are some help for correcting it but it acts temporary
+ ```
+ grep . /sys/bus/usb/devices/*/power/wakeup
+ /sys/bus/usb/devices/8-1/power/wakeup:enabled
+ /sys/bus/usb/devices/8-2/power/wakeup:enabled
+ /sys/bus/usb/devices/usb1/power/wakeup:disabled
+ /sys/bus/usb/devices/usb2/power/wakeup:disabled
+ /sys/bus/usb/devices/usb3/power/wakeup:disabled
+ /sys/bus/usb/devices/usb4/power/wakeup:disabled
+ /sys/bus/usb/devices/usb5/power/wakeup:disabled
+ /sys/bus/usb/devices/usb6/power/wakeup:disabled
+ /sys/bus/usb/devices/usb7/power/wakeup:disabled
+ /sys/bus/usb/devices/usb8/power/wakeup:disabled
+ ```

** Description changed:

  On ubuntu 20.10 fresh installation USB keyboard doesn't wake PC from suspend. 
There are some help for correcting it but it acts temporary
  ```
- grep . /sys/bus/usb/devices/*/power/wakeup
+ $ grep . /sys/bus/usb/devices/*/power/wakeup
  /sys/bus/usb/devices/8-1/power/wakeup:enabled
  /sys/bus/usb/devices/8-2/power/wakeup:enabled
  /sys/bus/usb/devices/usb1/power/wakeup:disabled
  /sys/bus/usb/devices/usb2/power/wakeup:disabled
  /sys/bus/usb/devices/usb3/power/wakeup:disabled
  /sys/bus/usb/devices/usb4/power/wakeup:disabled
  /sys/bus/usb/devices/usb5/power/wakeup:disabled
  /sys/bus/usb/devices/usb6/power/wakeup:disabled
  /sys/bus/usb/devices/usb7/power/wakeup:disabled
  /sys/bus/usb/devices/usb8/power/wakeup:disabled
  ```

** Description changed:

- On ubuntu 20.10 fresh installation USB keyboard doesn't wake PC from suspend. 
There are some help for correcting it but it acts temporary
+ On ubuntu 20.10 fresh installation USB keyboard doesn't wake PC from suspend. 
There are some help for correcting it by by enabling usb-port wake option. 
  ```
  $ grep . /sys/bus/usb/devices/*/power/wakeup
  /sys/bus/usb/devices/8-1/power/wakeup:enabled
  /sys/bus/usb/devices/8-2/power/wakeup:enabled
  /sys/bus/usb/devices/usb1/power/wakeup:disabled
  /sys/bus/usb/devices/usb2/power/wakeup:disabled
  /sys/bus/usb/devices/usb3/power/wakeup:disabled
  /sys/bus/usb/devices/usb4/power/wakeup:disabled
  /sys/bus/usb/devices/usb5/power/wakeup:disabled
  /sys/bus/usb/devices/usb6/power/wakeup:disabled
  /sys/bus/usb/devices/usb7/power/wakeup:disabled
  /sys/bus/usb/devices/usb8/power/wakeup:disabled
  ```

** Description changed:

- On ubuntu 20.10 fresh installation USB keyboard doesn't wake PC from suspend. 
There are some help for correcting it by by enabling usb-port wake option. 
+ On ubuntu 20.10 fresh installation USB keyboard doesn't wake PC from suspend. 
There are some help for correcting it by enabling usb-port wake option.
  ```
  $ grep . /sys/bus/usb/devices/*/power/wakeup
  /sys/bus/usb/devices/8-1/power/wakeup:enabled
  /sys/bus/usb/devices/8-2/power/wakeup:enabled
  /sys/bus/usb/devices/usb1/power/wakeup:disabled
  /sys/bus/usb/devices/usb2/power/wakeup:disabled
  /sys/bus/usb/devices/usb3/power/wakeup:disabled
  /sys/bus/usb/devices/usb4/power/wakeup:disabled
  /sys/bus/usb/devices/usb5/power/wakeup:disabled
  /sys/bus/usb/devices/usb6/power/wakeup:disabled
  /sys/bus/usb/devices/usb7/power/wakeup:disabled
  /sys/bus/usb/devices/usb8/power/wakeup:disabled
  ```

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

Title:
  keyboard doesn't wake PC

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

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

[Bug 1921916] Re: Enable CIFS GCM256

2021-05-02 Thread Tim Gardner
Patches submitted: https://lists.ubuntu.com/archives/kernel-
team/2021-May/119722.html

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

Title:
  Enable CIFS GCM256

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

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

[Bug 1926903] Re: LO loses some functionality in the debian distro vs. Windows/Mac distro of same version

2021-05-02 Thread Rico Tzschichholz
*** This bug is a duplicate of bug 1925379 ***
https://bugs.launchpad.net/bugs/1925379

** This bug has been marked a duplicate of bug 1925379
   Auto-Correct in LibreOffice does not work with 3.24.25-1ubuntu4

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

Title:
  LO loses some functionality in the debian distro vs. Windows/Mac
  distro of same version

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

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

[Bug 1867092] Re: Failed to set MokListRT: Invalid Parameter

2021-05-02 Thread Steve Langasek
> This old motherboard does not have
> secure boot or MokManager or UEFI
> etc. It has a legacy BIOS.

That's not true.  This code is never executed on systems that don't have
UEFI.

The 10 second delay before boot proceeds may be addressed by the version
of shim currently in impish-proposed, which will be brought back to all
currently supported releases of Ubuntu.  However, the error messages
themselves indicate problems with the UEFI implementation on your
motherboard, which is evidently not preserving runtime variables set by
the OS.  You might want to check if there are firmware updates for your
motherboard that fix this, or else check your settings so that you are
actually booting in bios mode, which you currently are not.

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

Title:
  Failed to set MokListRT: Invalid Parameter

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

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

[Bug 1800043] Re: nautilus cannot write on nfs file share base dir

2021-05-02 Thread Marco
Hi, I have here exactly the same issue on ubuntu 20.04
can't write to the 1st directory of nfs share in nautilus.
In the terminal window no problem

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

Title:
  nautilus cannot write on nfs file share base dir

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

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

[Bug 1926906] Re: (Ubuntu 21.04) RPi4 audio is slow and crackling

2021-05-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/1926906/+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/1926906

Title:
  (Ubuntu 21.04) RPi4 audio is slow and crackling

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

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

[Bug 1926908] Re: 21.10 Impish Softwarecenter keiene Installation nöglich, keine Passwort Abfrage

2021-05-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/1926908/+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/1926908

Title:
  21.10 Impish Softwarecenter keiene Installation nöglich, keine
  Passwort Abfrage

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

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

[Bug 1926912] Re: 21.10 Impish gdebi Programm fehlt Paket?

2021-05-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/1926912/+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/1926912

Title:
  21.10 Impish gdebi Programm fehlt Paket?

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

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

[Bug 1905491] Re: Recent (Nov 2020) ISO copied to USB Drive cannot load

2021-05-02 Thread Nav
Ubuntu version: 20.10 Groovy Gorilla.
PC motherboard: Gigabyte 880GM-USB3 (rev3.1).
The problem: Using Ubuntu's startup disk creator, I created an image of Groovy 
Gorilla's ISO onto a pen drive (formatted with NTFS). I booted from the pen 
drive and am shown an error: "cannot find grub_platform". Then I'm presented 
with a blank screen with a blinking cursor at the top left corner of the 
screen. It remains stuck at that.
Someone else who experienced this: 
https://askubuntu.com/questions/1288476/can-not-install-from-usb-with-error-cannot-find-grub-platform/1335403.

Solution: As pdecat mentioned, converting GPT to MBR helps.

Why this needs fixing: Not everyone uses a modern PC with UEFI support.
Just as in this bug
(https://bugs.launchpad.net/ubuntu/+source/shim/+bug/1867092/comments/28),
all sub-versions of Ubuntu 20 and above, need to be patched to have some
kind of legacy support. Not all users would have sufficient tech
knowledge to search and find this solution.

** Changed in: usb-creator (Ubuntu)
   Status: Invalid => Confirmed

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

Title:
  Recent (Nov 2020) ISO copied to USB Drive cannot load

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

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

[Bug 1919050] Re: package python2.7 2.7.18-1~20.04.1 failed to install/upgrade: installed python2.7 package post-installation script subprocess returned error exit status 139

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

** Changed in: python2.7 (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/1919050

Title:
  package python2.7 2.7.18-1~20.04.1 failed to install/upgrade:
  installed python2.7 package post-installation script subprocess
  returned error exit status 139

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python2.7/+bug/1919050/+subscriptions

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

[Bug 1774121]

2021-05-02 Thread Bugzilla2007
Created attachment 9218969
For comparison: Win10: Choose Folder dialog with [Select Folder] button on 
78.10.0

For comparison: TB's folder picker dialog for saving multiple messages
on Win10/TB 78.10.0 is better (but also not ideal, e.g. no hint for
saving):

Dialog titled "Choose Folder" (that looks set by TB, as it's non-
localized), button labelled "Ordner auswählen" (German for
"Select/choose Folder", so that's probably Win10-dialog-inbuilt).

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

Title:
  Save button on "Save All Attachments" dialog says "Open"

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

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

[Bug 1926911] Re: hctosys not reading hardware clock on CM4

2021-05-02 Thread Oliver Grawert
** Description changed:

  There is a timing issue when using the CM4 with the official CM4 IO
  baseboard.
  
  The CM4 baseboard comes with a built in rtc and a battery holder by
  default, to enable it a devicetree overlay needs to be enabled and a
  matching module gets loaded ...
  
  $ tail -2 /run/mnt/ubuntu-seed/config.txt
  dtparam=i2c_vc=on
  dtoverlay=i2c-rtc,pcf85063a,i2c_csi_dsi,addr=0x51
  
  $ lsmod | grep pcf85063
  rtc_pcf85063   20480  0
  
  When booting the kernel runs hctosys about 1.5sec into the boot, the rtc
  module only gets loaded about 10sec later though:
  
  $ dmesg|grep rtc
  [1.593561] hctosys: unable to open rtc device (rtc0)
  [   10.767256] rtc-pcf85063 10-0051: registered as rtc0
  
  Looking at the systemd journal the clock does not get set at all, only a
  network connection actually triggers setting of the clock (note the
  timestamps in the journal):
  
  ---
  Apr 26 10:27:53 ubuntu kernel: mmc0: SDHCI controller on fe34.emmc2 
[fe34.emmc2] using ADMA
  Apr 26 10:27:53 ubuntu kernel: hctosys: unable to open rtc device (rtc0)
  Apr 26 10:27:53 ubuntu kernel: of_cfs_init
  Apr 26 10:27:53 ubuntu kernel: of_cfs_init: OK
  ...
  Apr 26 10:28:02 CM4 systemd[1]: Started Network Name Resolution.
  Apr 26 10:28:02 CM4 kernel: rtc-pcf85063 10-0051: registered as rtc0
  Apr 26 10:28:02 CM4 systemd-udevd[459]: Using default interface naming scheme 
'v245'.
  ...
  Apr 26 10:28:08 CM4 avahi.daemon[593]: Registering new address record for 
192.168.2.32 on wlan0.IPv4.
  Apr 26 10:28:08 CM4 systemd-timesyncd[495]: Network configuration changed, 
trying to establish connection.
  May 02 17:14:17 CM4 systemd-timesyncd[495]: Initial synchronization to time 
server 91.189.89.199:123 (ntp.ubu>
  May 02 17:14:17 CM4 systemd[1]: Starting Online ext4 Metadata Check for All 
Filesystems...
  ---
  
  I think the loading of the rtc_pcf85063 module should trigger an
- additional hctosys call ...
+ additional hctosys call (preferably from the module itself, but worst
+ case a udev rule calling out to hwclock --hctosys might work too)...
  
  Just for the record, the hwclock works fine otherwise:
  
- $ sudo hwclock 
+ $ sudo hwclock
  2021-05-02 19:56:11.281975+00:00

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

Title:
  hctosys not reading hardware clock on CM4

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

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

[Bug 1867092] Re: Failed to set MokListRT: Invalid Parameter

2021-05-02 Thread Nav
I faced this, but not on a Mac. I have an ordinary Desktop PC with a Gigabyte 
880GM-USB3 (rev3.1) motherboard. This old motherboard does not have secure boot 
or MokManager or UEFI etc. It has a legacy BIOS. I installed Ubuntu 20.10 
(Groovy Gorilla) yesterday. Each time I start the PC, I'm shown the following 
message for around 10 seconds and only then it proceeds to grub: 
Failed to set MokListRT: Invalid Parameter
Could not create MokListRT: Invalid Parameter
Importing MOK states has failed: import_mok_state() failed: Invalid Parameter
Continuing boot since secure mode is disabled System BootOrder not found. 
Initializing defaults.
Creating boot entry "Boot0002" with label "ubuntu" for file 
"\EFI\ubuntu\shimx64.efi"
Failed to set MokListRT: Invalid Parameter
Could not create MokListRT: Invalid Parameter
Import MOK states has failed: import_mok_state() failed: Invalid Parameter
Continuing boot since secure mode is disabled.

I've attached an image of the error screen. The annoying thing about
this bug is that each time I start my PC, this message is shown for 10
seconds. Please fix this. Many people still use old computers that don't
have MokManager etc. Please take that into account.

** Attachment added: "Failed to set MokListRT: Invalid Parameter"
   
https://bugs.launchpad.net/ubuntu/+source/shim/+bug/1867092/+attachment/5494299/+files/startupError

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

Title:
  Failed to set MokListRT: Invalid Parameter

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

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

[Bug 1926911] [NEW] hctosys not reading hardware clock on CM4

2021-05-02 Thread Oliver Grawert
Public bug reported:

There is a timing issue when using the CM4 with the official CM4 IO
baseboard.

The CM4 baseboard comes with a built in rtc and a battery holder by
default, to enable it a devicetree overlay needs to be enabled and a
matching module gets loaded ...

$ tail -2 /run/mnt/ubuntu-seed/config.txt
dtparam=i2c_vc=on
dtoverlay=i2c-rtc,pcf85063a,i2c_csi_dsi,addr=0x51

$ lsmod | grep pcf85063
rtc_pcf85063   20480  0

When booting the kernel runs hctosys about 1.5sec into the boot, the rtc
module only gets loaded about 10sec later though:

$ dmesg|grep rtc
[1.593561] hctosys: unable to open rtc device (rtc0)
[   10.767256] rtc-pcf85063 10-0051: registered as rtc0

Looking at the systemd journal the clock does not get set at all, only a
network connection actually triggers setting of the clock (note the
timestamps in the journal):

---
Apr 26 10:27:53 ubuntu kernel: mmc0: SDHCI controller on fe34.emmc2 
[fe34.emmc2] using ADMA
Apr 26 10:27:53 ubuntu kernel: hctosys: unable to open rtc device (rtc0)
Apr 26 10:27:53 ubuntu kernel: of_cfs_init
Apr 26 10:27:53 ubuntu kernel: of_cfs_init: OK
...
Apr 26 10:28:02 CM4 systemd[1]: Started Network Name Resolution.
Apr 26 10:28:02 CM4 kernel: rtc-pcf85063 10-0051: registered as rtc0
Apr 26 10:28:02 CM4 systemd-udevd[459]: Using default interface naming scheme 
'v245'.
...
Apr 26 10:28:08 CM4 avahi.daemon[593]: Registering new address record for 
192.168.2.32 on wlan0.IPv4.
Apr 26 10:28:08 CM4 systemd-timesyncd[495]: Network configuration changed, 
trying to establish connection.
May 02 17:14:17 CM4 systemd-timesyncd[495]: Initial synchronization to time 
server 91.189.89.199:123 (ntp.ubu>
May 02 17:14:17 CM4 systemd[1]: Starting Online ext4 Metadata Check for All 
Filesystems...
---

I think the loading of the rtc_pcf85063 module should trigger an
additional hctosys call ...

Just for the record, the hwclock works fine otherwise:

$ sudo hwclock 
2021-05-02 19:56:11.281975+00:00

** Affects: linux-raspi (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/1926911

Title:
  hctosys not reading hardware clock on CM4

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

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

[Bug 1926910] Re: package docker.io 20.10.2-0ubuntu1~20.04.2 failed to install/upgrade: installed docker.io package post-installation script subprocess returned error exit status 128

2021-05-02 Thread Apport retracing service
** Tags removed: need-duplicate-check

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

Title:
  package docker.io 20.10.2-0ubuntu1~20.04.2 failed to install/upgrade:
  installed docker.io package post-installation script subprocess
  returned error exit status 128

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/docker.io/+bug/1926910/+subscriptions

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

[Bug 1926912] [NEW] 21.10 Impish gdebi Programm fehlt Paket?

2021-05-02 Thread Marko Preuss
Public bug reported:

Hallo
Programm gdebi fehlen Pakete?
Sieh Bild
Gruß

** Affects: ubuntu
 Importance: Undecided
 Status: New

** Attachment added: "gdebi.png"
   https://bugs.launchpad.net/bugs/1926912/+attachment/5494298/+files/gdebi.png

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

Title:
  21.10 Impish gdebi Programm fehlt Paket?

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

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

[Bug 1926910] [NEW] package docker.io 20.10.2-0ubuntu1~20.04.2 failed to install/upgrade: installed docker.io package post-installation script subprocess returned error exit status 128

2021-05-02 Thread Ahmed Mostafa
Public bug reported:

the systen isn't running smoothly and error appears when logging off the
system

ProblemType: Package
DistroRelease: Ubuntu 20.04
Package: docker.io 20.10.2-0ubuntu1~20.04.2
ProcVersionSignature: Ubuntu 5.8.0-50.56~20.04.1-generic 5.8.18
Uname: Linux 5.8.0-50-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.16
Architecture: amd64
CasperMD5CheckResult: skip
Date: Sun May  2 16:12:52 2021
ErrorMessage: installed docker.io package post-installation script subprocess 
returned error exit status 128
InstallationDate: Installed on 2021-02-18 (73 days ago)
InstallationMedia: Ubuntu 20.04.2.0 LTS "Focal Fossa" - Release amd64 
(20210209.1)
Python3Details: /usr/bin/python3.8, Python 3.8.5, python3-minimal, 
3.8.2-0ubuntu2
PythonDetails: N/A
RelatedPackageVersions:
 dpkg 1.19.7ubuntu3
 apt  2.0.5
SourcePackage: docker.io
Title: package docker.io 20.10.2-0ubuntu1~20.04.2 failed to install/upgrade: 
installed docker.io package post-installation script subprocess returned error 
exit status 128
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: docker.io (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/1926910

Title:
  package docker.io 20.10.2-0ubuntu1~20.04.2 failed to install/upgrade:
  installed docker.io package post-installation script subprocess
  returned error exit status 128

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/docker.io/+bug/1926910/+subscriptions

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

[Bug 489951] Re: Freecell bug

2021-05-02 Thread Michal Dziczkowski
** Description changed:

  Binary package hint: gnome-games
  
- While playing when there get an free slot between cards rows, in most
+ While playing, when there get an free slot between cards rows, in most
  cases there is unable to put there down any cards with walue is bigger
  then 7.
  
  No bug message is shown and the cards are returning to previous place.
  
  ProblemType: Bug
- Architecture: i386
- Date: Sun Nov 29 15:56:03 2009
- DistroRelease: Ubuntu 8.04
- Package: gnome-games 1:2.22.2.1-0ubuntu1
- PackageArchitecture: i386
+ Architecture: any
+ DistroRelease: Ubuntu 20.04
+ Package: gnome-games
+ PackageArchitecture: any
  ProcEnviron:
-  PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
-  LANG=pl_PL.UTF-8
-  SHELL=/bin/bash
+  PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
+  LANG=pl_PL.UTF-8
+  SHELL=/bin/bash
  SourcePackage: gnome-games
- Uname: Linux 2.6.24-19-generic i686

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

Title:
  Freecell bug

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

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

[Bug 1926909] [NEW] When decrypting the disk, every keystroke is registered as a character of the password. Even with backspace this happens

2021-05-02 Thread Luna
Public bug reported:

Even Control + Alt + Del doesn't work, the Control is registered as a
character of the password just like backspace. It seems that this can be
triggered by pressing the Fx keys to get the text-based decryption
screen and then going back to the GUI decryption screen. I tested here
in a VM and if I press F1, the text-based screen ppears; if I press F2,
the GUI appears, the F3, the text-based and so on). The only way to
workaround this issue is force rebooting the computer using the physical
button.

Version: 0.9.5-0ubuntu3
Kubuntu 21.04

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

** Summary changed:

- When decrypting the disk, even key stroke count as a character of the 
password, even Control + Alt + Del and backspace
+ When decrypting the disk, every keystroke is registered as a character of the 
password. Even with backspace this happens

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

Title:
  When decrypting the disk, every keystroke is registered as a character
  of the password. Even with backspace this happens

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

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

[Bug 1923040] Re: en-gb thesaurus is missing

2021-05-02 Thread Mattia Rizzolo
That was done 6 years ago, but reverted a few months later
(6388ad7919526ff00d5a850c84e74e74824f and the commit after that
drops the Provides) and actually never released.

ISTR that there were such symlinks in the past (before lo-dicts came to
be), but they haven't been in place for quite a while.

Now, the previous reject was based on me sharing a few words on IRC...
but I can try to think again if it's a good idea to place such symlinks.

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

Title:
  en-gb thesaurus is missing

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libreoffice-dictionaries/+bug/1923040/+subscriptions

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

[Bug 1926908] [NEW] 21.10 Impish Softwarecenter keiene Installation nöglich, keine Passwort Abfrage

2021-05-02 Thread Marko Preuss
Public bug reported:

Hallo
21.10 Impish erste Testversion
Ich teste schon für neue Pakete für meine PPA.
Im Softwarecenter kann man nicht installieren, keine Passwort Abfrage.
Installation von Synaptic im Terminal OK.
Gruß

** Affects: 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/1926908

Title:
  21.10 Impish Softwarecenter keiene Installation nöglich, keine
  Passwort Abfrage

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

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

[Bug 1926906] Re: (Ubuntu 21.04) RPi4 audio is slow and crackling

2021-05-02 Thread Hedda Frauk
** Description changed:

  I'm using a Raspberry Pi 4. After updating from Ubuntu 20.10 to 21.04, I 
noticed audio problems.
  The sound is slow and crackling.
  
  I'm using the headphone jack and the config.txt option:
  dtparam=audio=on
  
  If I start a video or audio file in VLC player and select the VLC options:
  Audio:
  Output module: ALSA Audio Output
  Device: bcm2835 Headphones, bcm2835 Headphones Default Audio Device
  
- Then the sound is normal, as it should be. But system-wide the problem
- persists.
+ Then the playback speed seems to be normal but the "electric" crackling in 
voices remains.
+ And system-wide the problem persists, too.

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

Title:
  (Ubuntu 21.04) RPi4 audio is slow and crackling

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

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

[Bug 1926906] [NEW] (Ubuntu 21.04) RPi4 audio is slow and crackling

2021-05-02 Thread Hedda Frauk
Public bug reported:

I'm using a Raspberry Pi 4. After updating from Ubuntu 20.10 to 21.04, I 
noticed audio problems.
The sound is slow and crackling.

I'm using the headphone jack and the config.txt option:
dtparam=audio=on

If I start a video or audio file in VLC player and select the VLC options:
Audio:
Output module: ALSA Audio Output
Device: bcm2835 Headphones, bcm2835 Headphones Default Audio Device

Then the sound is normal, as it should be. But system-wide the problem
persists.

** Affects: ubuntu
 Importance: Undecided
 Status: New


** Tags: raspi

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

Title:
  (Ubuntu 21.04) RPi4 audio is slow and crackling

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

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

[Bug 124440] Re: [enhancement] Ubuntu needs a way to set mouse wheel scrolling speed

2021-05-02 Thread Tom Reynolds
For gnome-control-center, this bug report was watching
https://bugzilla.gnome.org/show_bug.cgi?id=692666 so far. While still
relevant, the Gnome Project has stopped using this bug tracker and has
since shifted to their Gitlab instance for bug tracking.

A closely related upstream bug report, which should have higher
relevance for Ubuntu (after shifting to XWayland), is
https://gitlab.gnome.org/GNOME/gnome-control-center/-/issues/1016, so
I've updated the remote watch for gnome-control-center.

** Bug watch added: gitlab.gnome.org/GNOME/gnome-control-center/-/issues #1016
   https://gitlab.gnome.org/GNOME/gnome-control-center/-/issues/1016

** Changed in: gnome-control-center
   Importance: Medium => Unknown

** Changed in: gnome-control-center
 Remote watch: bugzilla.gnome.org/ #692666 => 
gitlab.gnome.org/GNOME/gnome-control-center/-/issues #1016

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

Title:
  [enhancement] Ubuntu needs a way to set mouse wheel scrolling speed

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

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

[Bug 124440] Re: [enhancement] Ubuntu needs a way to set mouse wheel scrolling speed

2021-05-02 Thread lotuspsychje
Can we get this bug back alive with?;

 https://gitlab.gnome.org/GNOME/gnome-control-center/-/issues/1016

** Bug watch added: gitlab.gnome.org/GNOME/gnome-control-center/-/issues #1016
   https://gitlab.gnome.org/GNOME/gnome-control-center/-/issues/1016

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

Title:
  [enhancement] Ubuntu needs a way to set mouse wheel scrolling speed

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

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

[Bug 1926905] [NEW] package nvidia-340 340.108-0ubuntu5.20.04.1 failed to install/upgrade: trying to overwrite '/usr/bin/nvidia-bug-report.sh', which is also in package nvidia-utils-465 465.24.02-0ubu

2021-05-02 Thread varun yadav
Public bug reported:

sudo ubuntu-drivers devices
== /sys/devices/pci:00/:00:01.1/:07:00.0 ==
modalias : pci:v10DEd1140sv103Csd225Dbc03sc02i00
vendor   : NVIDIA Corporation
model: GF117M [GeForce 610M/710M/810M/820M / GT 620M/625M/630M/720M] 
(GeForce 820M)
driver   : nvidia-340 - distro non-free recommended
driver   : xserver-xorg-video-nouveau - distro free builtin


lspci | grep -i nvidia 
07:00.0 3D controller: NVIDIA Corporation GF117M [GeForce 610M/710M/810M/820M / 
GT 620M/625M/630M/720M] (rev a1)

I ran sudo apt install nvidia-340

Preparing to unpack .../nvidia-opencl-icd-340_340.108-0ubuntu5.20.04.1_amd64.deb
 ...

Unpacking nvidia-opencl-icd-340 (340.108-0ubuntu5.20.04.1) ...
Setting up nvidia-340 (340.108-0ubuntu5.20.04.1) ...
dpkg: error: version '-' has bad syntax: revision number is empty
dpkg: error: version '-' has bad syntax: revision number is empty
update-initramfs: deferring update (trigger activated)

ProblemType: Package
DistroRelease: Ubuntu 20.04
Package: nvidia-340 340.108-0ubuntu5.20.04.1
ProcVersionSignature: Ubuntu 5.8.0-50.56~20.04.1-generic 5.8.18
Uname: Linux 5.8.0-50-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.16
Architecture: amd64
CasperMD5CheckResult: skip
Date: Sun May  2 23:48:18 2021
ErrorMessage: trying to overwrite '/usr/bin/nvidia-bug-report.sh', which is 
also in package nvidia-utils-465 465.24.02-0ubuntu0~0.20.04.1
InstallationDate: Installed on 2021-05-01 (0 days ago)
InstallationMedia: Ubuntu 20.04.2.0 LTS "Focal Fossa" - Release amd64 
(20210209.1)
Python3Details: /usr/bin/python3.8, Python 3.8.5, python3-minimal, 
3.8.2-0ubuntu2
PythonDetails: N/A
RelatedPackageVersions:
 dpkg 1.19.7ubuntu3
 apt  2.0.4
SourcePackage: nvidia-graphics-drivers-340
Title: package nvidia-340 340.108-0ubuntu5.20.04.1 failed to install/upgrade: 
trying to overwrite '/usr/bin/nvidia-bug-report.sh', which is also in package 
nvidia-utils-465 465.24.02-0ubuntu0~0.20.04.1
UpgradeStatus: No upgrade log present (probably fresh install)

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


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

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

Title:
  package nvidia-340 340.108-0ubuntu5.20.04.1 failed to install/upgrade:
  trying to overwrite '/usr/bin/nvidia-bug-report.sh', which is also in
  package nvidia-utils-465 465.24.02-0ubuntu0~0.20.04.1

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

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

[Bug 1926902] Re: xfce ubuntu server say package is installed

2021-05-02 Thread Lars Martin Hambro
Failed to restart networking.service: Unit networking.service not found

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

Title:
  xfce ubuntu server say package is installed

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

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

[Bug 1926903] [NEW] LO loses some functionality in the debian distro vs. Windows/Mac distro of same version

2021-05-02 Thread Mad Mouse
Public bug reported:

a few of the LO functions, such as autocorrect, while enabled, do not work 
since the update to the 5.10 (and beyond) kernel.  I have tried a fresh 
install, after formatting the HDD, of ubuntu II (21.10) with defaults and 
immediately tested the native LO install.  the big presisted.  It appears to 
also affect other debian.arch distros, but does not affect windows/mac distros. 
 It is also "retroactive" and has broken the install of LO 6.4, which 
previously worked fine.
since this package is included with the installer, i'm notifying you.  LO 
thinks it's a kernel issue.

ProblemType: Bug
DistroRelease: Ubuntu 21.10
Package: libreoffice 1:7.1.3~rc2-0ubuntu1
ProcVersionSignature: Ubuntu 5.11.0-16.17-generic 5.11.12
Uname: Linux 5.11.0-16-generic x86_64
ApportVersion: 2.20.11-0ubuntu65
Architecture: amd64
CasperMD5CheckResult: pass
CurrentDesktop: ubuntu:GNOME
Date: Sun May  2 13:15:31 2021
InstallationDate: Installed on 2021-05-02 (0 days ago)
InstallationMedia: Ubuntu 21.10 "Impish Indri" - Alpha amd64 (20210501)
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: libreoffice
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug impish package-from-proposed wayland-session

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

Title:
  LO loses some functionality in the debian distro vs. Windows/Mac
  distro of same version

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

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

[Bug 1926902] Re: xfce ubuntu server say package is installed

2021-05-02 Thread Lars Martin Hambro
Issue here i did not get any networks icon in XFCE and only one SFP+
port works to internet other one did not give any ip adresses, works
perfect in windows 10.

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

Title:
  xfce ubuntu server say package is installed

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

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

[Bug 1926902] Re: xfce ubuntu server say package is installed

2021-05-02 Thread Lars Martin Hambro
ort SATA Controller [IDE mode] (rev 04)
01:00.0 Ethernet controller: Mellanox Technologies MT26448 [ConnectX EN 10GigE, 
PCIe 2.0 5GT/s] (rev b0)
03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 
PCI Express Gigabit Ethernet Controller (rev 09)

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

Title:
  xfce ubuntu server say package is installed

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

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

[Bug 1926902] [NEW] xfce ubuntu server say package is installed

2021-05-02 Thread Lars Martin Hambro
Public bug reported:

network-manager is already the newest version (1.30.0-1ubuntu3).
The following packages were automatically installed and are no longer required:
  libfile-find-rule-perl libnumber-compare-perl libtext-glob-perl
Use 'sudo apt autoremove' to remove them.

ProblemType: Bug
DistroRelease: Ubuntu 21.04
Package: network-manager 1.30.0-1ubuntu3
ProcVersionSignature: Ubuntu 5.11.0-13.14-generic 5.11.7
Uname: Linux 5.11.0-13-generic x86_64
ApportVersion: 2.20.11-0ubuntu65
Architecture: amd64
CasperMD5CheckResult: pass
CurrentDesktop: ubuntu:GNOME
Date: Sun May  2 17:57:53 2021
IfupdownConfig:
 auto eth1
iface eth1 inet dhcp
InstallationDate: Installed on 2020-07-05 (301 days ago)
InstallationMedia: Ubuntu-Server 20.04 LTS "Focal Fossa" - Release amd64 
(20200423)
IpRoute:
 default via 192.168.1.1 dev enp1s0d1 proto dhcp src 192.168.1.18 metric 100 
 192.168.1.0/24 dev enp1s0d1 proto kernel scope link src 192.168.1.18 
 192.168.1.1 dev enp1s0d1 proto dhcp scope link src 192.168.1.18 metric 100
RebootRequiredPkgs:
 network-manager
 gnome-shell
RfKill:
 
SourcePackage: network-manager
UpgradeStatus: Upgraded to hirsute on 2021-04-12 (20 days ago)
WifiSyslog:
 
nmcli-con:
 
nmcli-dev:
 DEVICETYPE  STATE  IP4-CONNECTIVITY  IP6-CONNECTIVITY  DBUS-PATH   
   CONNECTION  CON-UUID  CON-PATH 
 enp1s0ethernet  unmanaged  unknown   unknown   
/org/freedesktop/NetworkManager/Devices/2  --  ----   
 enp1s0d1  ethernet  unmanaged  unknown   unknown   
/org/freedesktop/NetworkManager/Devices/3  --  ----   
 enp3s0ethernet  unmanaged  unknown   unknown   
/org/freedesktop/NetworkManager/Devices/4  --  ----   
 loloopback  unmanaged  unknown   unknown   
/org/freedesktop/NetworkManager/Devices/1  --  ----
nmcli-nm:
 RUNNING  VERSION  STATE STARTUP  CONNECTIVITY  NETWORKING  WIFI-HW  
WIFI WWAN-HW  WWAN
 running  1.30.0   disconnected  started  unknown   enabled enabled  
enabled  enabled  enabled

** Affects: network-manager (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug hirsute uec-images wayland-session

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

Title:
  xfce ubuntu server say package is installed

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

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

[Bug 1916633] Re: pbuilder-dist bullseye create fails

2021-05-02 Thread Mattia Rizzolo
** Changed in: ubuntu-dev-tools (Ubuntu)
 Assignee: (unassigned) => Dan Streetman (ddstreet)

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

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

Title:
  pbuilder-dist bullseye create fails

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

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

[Bug 1926898] [NEW] ubuntu install USB somehow faulty

2021-05-02 Thread R
Public bug reported:

I downloaded an image for ubuntu 18 (https://releases.ubuntu.com/18.04/)
yesterday, and created a startup disk on a USB using these instructions
(https://ubuntu.com/download/iot/installation-media) . Today, I
successfully booted from the USB, and everything seemed to be going okay
until about halfway through the install. I encountered a few error
messages, something about files not matching (/target/usr/lib/x86_64
-linux-gnu/libibus-1.0.so.5.0.517) and another implying that my disc
needed to be cleaned (Physically, which is an impossibility since I'm
using a USB) and shortly after, I was informed that the install was
aborted due to a corrupt disk (or something along that line). And then
it offered to send a report, and opened up this page.

I've just found different instructions
(https://ubuntu.com/tutorials/create-a-usb-stick-on-ubuntu#1-overview)
So my next step will be to try re-doing the Live USB that way

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
CurrentDesktop: ubuntu:GNOME
Date: Sun May  2 10:23:07 2021
InstallCmdLine: file=/cdrom/preseed/ubuntu.seed boot=casper 
initrd=/casper/initrd quiet splash --- maybe-ubiquity
LiveMediaBuild: Ubuntu 18.04.5 LTS "Bionic Beaver" - Release amd64 (20200806.1)
ProcEnviron:
 LANGUAGE=en_CA.UTF-8
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_CA.UTF-8
 LC_NUMERIC=C.UTF-8
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

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


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

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

Title:
  ubuntu install USB somehow faulty

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

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

[Bug 1864215] Re: Please add webp loader to gdk-pixbuf

2021-05-02 Thread Dark Dragon
** Bug watch added: Debian Bug tracker #951113
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=951113

** Also affects: debian via
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=951113
   Importance: Unknown
   Status: Unknown

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

Title:
  Please add webp loader to gdk-pixbuf

To manage notifications about this bug go to:
https://bugs.launchpad.net/gdk-pixbuf/+bug/1864215/+subscriptions

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

  1   2   >