[Bug 2056697] Re: Ubuntu Studio should prefer realtime kernel

2024-03-10 Thread Brent Baccala
OK, fine, all valid points.

I'm not so sure about the "placebo effect", though.

I played the same piece a dozen times on my MIDI keyboard in various
configurations, with the following results:

realtime alsa: xruns 0, 0, 0
realtime jack: xruns 11, 0, 0
lowlatency jack: xruns 25, 5, 5, 6, 8

Admittedly, it was a small test, but I made some effort to actually test
it and concluded that I was getting better performance from the realtime
kernel.

I think some more investigation is required.

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

Title:
  Ubuntu Studio should prefer realtime kernel

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


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

[Bug 2056697] Re: Ubuntu Studio should prefer realtime kernel

2024-03-10 Thread Brent Baccala
I'm not suggesting that Ubuntu Studio should ship with the realtime
kernel as of yet.

I'm suggesting that after "pro enable realtime-kernel", it should be at
the top of the boot priority.

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

Title:
  Ubuntu Studio should prefer realtime kernel

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


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

[Bug 2056697] [NEW] Ubuntu Studio should prefer realtime kernel

2024-03-10 Thread Brent Baccala
Public bug reported:

Now that Ubuntu has released a realtime kernel, I suggest that Ubuntu
Studio's boot preference should be:

1. realtime
2. lowlatency
3. default

I've been running the realtime kernel for a week, haven't had any
problems with it, and am seeing noticeably fewer xruns in Ardour.

** Affects: os-prober (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/2056697

Title:
  Ubuntu Studio should prefer realtime kernel

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


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

[Bug 1974100] Re: qemu ide/sata disks do not work well with discard/trim

2022-06-01 Thread Brent Baccala
@Christian,

I haven't tried all of your combinations, but when I mount a second disk
using the growpart/e2fsck/resize2fs sequence that you suggest and then
mount it, it grows to 725 MB and then zerofree reports what you
observed:

baccala@osito:~/NPDC/GNS3/bug$ sudo zerofree -v /dev/nbd0p1
3/5963617/6525179

But when I use an identical disk as the root filesystem, it grows to 789
MB and then zerofree reports this:

baccala@osito:~/NPDC/GNS3/bug$ sudo zerofree -v /dev/nbd0p1
1524/5953550/6525179

Both virtual disks are ubuntu 20.04 cloudimgs extended to 25 GB.  I used
the procedure I described on May 20 (cloudinit.iso on a virtual CD-ROM)
with the one disk as root and the other one as /dev/sdb.  Both were
identical when I booted the VM.

You mentioned that "all tools that make it easy for me to deploy one
also pick virtio by default"; can you run qemu from the command line on
a bare metal system?  If so, I thought my May 20 procedure was pretty
simple.  If not, then I guess it's harder to verify this.

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

Title:
  qemu ide/sata disks do not work well with discard/trim

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


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

Re: [Bug 1975744] Re: purging cloud-init doesn't remove its network configuration files

2022-06-01 Thread Brent Baccala
I like the idea of working this into cloud-init clean.

My use case is that I use cloud-init to initially configure an instance
that will later be manually configured, so I don't want files lying around
that say things like "if you edit this file it will be overwritten on the
next boot" (I forget the exact wording) when that's not the case.


On Wed, Jun 1, 2022 at 7:50 PM Chad Smith <1975...@bugs.launchpad.net>
wrote:

> Thanks for the bug and triage folks.
>
> While this is confirmed/known behavior, I don't think cloud-init should
> be automatically removing core configuration files that are not packaged
> by cloud-init's deb package especially if removal of those config files
> can have catastrophic consequences on the ability to connect to the
> system.  If the networking service happens to be restarted outside of
> the perview of the admin purging the cloud-init package it would be very
> surprising for the unsuspecting admin to see the system drop.
>
> Also we are aware of use-cases where folks may expect to use cloud-init
> once, and have attempted to remove cloud-init deb package after initial
> system configuration is correctly performed to ensure cloud-init no
> longer acts to reconfigure the system in the future.
>
> While this use-case above is probably less desirable that just disabling
> cloud-init via `sudo touch /etc/cloud/cloud-init.disabled` it does allow
> image creators to reduce the overall size of their image if they are
> trying to generate customized images with cloud-init and remove cloud-
> init and any other dependencies on which cloud-init relies.
>
>
> I'd prefer we avoid addressing this in packaging specifically, though we
> could grow this functionality in cloud-init clean to clean up network
> config artifacts generated by cloud-init. This would at least make it
> easier for your use-case of cleaning up all network config files that
> cloud-init generated on a system.
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1975744
>
> Title:
>   purging cloud-init doesn't remove its network configuration files
>
> Status in cloud-init package in Ubuntu:
>   Confirmed
>
> Bug description:
>   cloud-init creates /etc/netplan/50-cloud-init.yaml during its network
>   configuration step.
>
>   However, "apt purge cloud-init" leaves this file intact.
>
>   I've seen this behavior on Ubuntu 18, 20, and 22.
>
>   I can always remove the file manually, but I'm left wondering what
>   other files cloud-init might have left lingering around on the system.
>
>   Shouldn't a purge remove all files associated with a package?
>
> To manage notifications about this bug go to:
>
> https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/1975744/+subscriptions
>
>

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

Title:
  purging cloud-init doesn't remove its network configuration files

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


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

[Bug 1455967] Re: NM disables accept_ra for an IPv6 connection, where it should enable it!

2022-05-26 Thread Brent Baccala
I'm still seeing this behavior on Ubuntu 20.04.4 LTS

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

Title:
  NM disables accept_ra for an IPv6 connection, where it should enable
  it!

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


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

[Bug 1975744] Re: purging cloud-init doesn't remove its network configuration files

2022-05-25 Thread Brent Baccala
It also seems to leave build.info in /etc/cloud and doesn't remove that
directory for that reason.

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

Title:
  purging cloud-init doesn't remove its network configuration files

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


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

[Bug 1975744] [NEW] purging cloud-init doesn't remove its network configuration files

2022-05-25 Thread Brent Baccala
Public bug reported:

cloud-init creates /etc/netplan/50-cloud-init.yaml during its network
configuration step.

However, "apt purge cloud-init" leaves this file intact.

I've seen this behavior on Ubuntu 18, 20, and 22.

I can always remove the file manually, but I'm left wondering what other
files cloud-init might have left lingering around on the system.

Shouldn't a purge remove all files associated with a package?

** Affects: cloud-init (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/1975744

Title:
  purging cloud-init doesn't remove its network configuration files

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


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

[Bug 1974100] Re: qemu ide/sata disks do not work well with discard/trim

2022-05-23 Thread Brent Baccala
@Christian - my lsblk output looks very similar to yours.  In
particular, all device types are reporting discard support; the only
difference is the reported discard sizes.

I would suggest that at the end of your tests you check the disk with
"debugfs -R dump_unused".  I'm seeing disk blocks filled with garbage.
I expected them to be filled with zeros.

So, I don't think it's just a feature request.  Not only has the device
announced discard support, but when you read the blocks back they are
not zero filled.

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

Title:
  qemu ide/sata disks do not work well with discard/trim

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


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

[Bug 1974100] Re: inode lazy init in a VM fills virtual disk with garbage

2022-05-20 Thread Brent Baccala
Incidentally, I was able to fix my immediate problem by switching the
disk type to scsi, based on the suggestions given by Christian Ehrhardt.

It's still an open bug that could cause other people some grief.  It
sure caused me plenty.

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

Title:
  inode lazy init in a VM fills virtual disk with garbage

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


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

[Bug 1974100] Re: inode lazy init in a VM fills virtual disk with garbage

2022-05-20 Thread Brent Baccala
I've come up with a more minimal test that doesn't require the whole
GNS3 infrastructure.

1. Create a one-line 'meta-data' file:

{instance-id: ubuntu, local-hostname: ubuntu}

2. Create the following 'user-data' file:

#cloud-config
hostname: ubuntu
network:
  config: disabled
resize_rootfs: noblock
users:
  - name: ubuntu
plain_text_passwd: foobar
lock_passwd: false
shell: /bin/bash
sudo: ALL=(ALL) NOPASSWD:ALL

3. Build a CIDATA image acceptable to cloud-init:

genisoimage -input-charset utf-8 -o cloudinit.iso -l -relaxed-filenames
-V cidata -graft-points meta-data user-data

4. With a copy of Ubuntu's cloudimg in the current directory, create a 1
TB thin provisioned disk:

qemu-img create -f qcow2 -b ubuntu-20.04-server-cloudimg-amd64.img
test.qcow2 1T

5. Start qemu with a VNC server on whatever port you'd like (you must be
in group kvm):

qemu-system-x86_64 -enable-kvm -cdrom cloudinit.iso -drive
file=test.qcow2,if=ide,media=disk,discard=on -m 4G -vnc 0.0.0.0:88 -net
none

I can change ide to virtio, but if I change it to scsi it either hangs
during boot (Ubuntu 18 host) or complains "machine type does not support
if=scsi,bus=0,unit=0" (Ubuntu 20 host).

I can do the following to get scsi:

qemu-system-x86_64 -enable-kvm -cdrom cloudinit.iso -device virtio-scsi-
pci,id=scsi -drive file=test.qcow2,id=root-img,if=none,discard=on
-device scsi-hd,drive=root-img -m 4G -vnc 0.0.0.0:88 -net none

For any drive type, you start it running, let it sit there at a boot
prompt, and watch the size of test.qcow2.  The bad behavior is that it
grows into the 30-40 GB range.

On a Ubuntu 18 host, I see the bad behavior for drive types ide and
virtio.  scsi seems to be OK.

On an Ubuntu 20 host, I only see the bad behavior for drive type ide.
virtio and scsi seem OK.

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

Title:
  inode lazy init in a VM fills virtual disk with garbage

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


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

[Bug 1974427] [NEW] window redraw wrong size when plug in hdmi

2022-05-20 Thread Brent R Brian
Public bug reported:

If I have a window open on the primary display (laptop) and plug in an
HDMI monitor (secondary) the window (primary) redraws without accounting
for the top status bar.

In other words, the window status bar is COVERING UP the top of the
application window (no min, max close).

ProblemType: Bug
DistroRelease: Ubuntu 22.04
Package: xorg 1:7.7+23ubuntu2
ProcVersionSignature: Ubuntu 5.15.0-30.31-generic 5.15.30
Uname: Linux 5.15.0-30-generic x86_64
ApportVersion: 2.20.11-0ubuntu82.1
Architecture: amd64
BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
CasperMD5CheckResult: pass
CompositorRunning: None
CurrentDesktop: ubuntu:GNOME
Date: Fri May 20 06:40:06 2022
DistUpgraded: Fresh install
DistroCodename: jammy
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes, including running git bisection searches
GraphicsCard:
 Advanced Micro Devices, Inc. [AMD/ATI] Raven Ridge [Radeon Vega Series / 
Radeon Vega Mobile Series] [1002:15dd] (rev c3) (prog-if 00 [VGA controller])
   Subsystem: Lenovo Raven Ridge [Radeon Vega Series / Radeon Vega Mobile 
Series] [17aa:38ef]
InstallationDate: Installed on 2022-05-14 (6 days ago)
InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 (20220419)
MachineType: LENOVO 81D2
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.15.0-30-generic 
root=UUID=ff8cc35c-2ad1-4b44-b02e-649148be44fa ro quiet splash vt.handoff=7
SourcePackage: xorg
Symptom: display
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 06/15/2018
dmi.bios.release: 1.24
dmi.bios.vendor: LENOVO
dmi.bios.version: 7VCN24WW
dmi.board.asset.tag: NO Asset Tag
dmi.board.name: LNVNB161216
dmi.board.vendor: LENOVO
dmi.board.version: SDK0J40709 WIN
dmi.chassis.asset.tag: NO Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Lenovo ideapad 330-15ARR
dmi.ec.firmware.release: 1.24
dmi.modalias: 
dmi:bvnLENOVO:bvr7VCN24WW:bd06/15/2018:br1.24:efr1.24:svnLENOVO:pn81D2:pvrLenovoideapad330-15ARR:rvnLENOVO:rnLNVNB161216:rvrSDK0J40709WIN:cvnLENOVO:ct10:cvrLenovoideapad330-15ARR:skuLENOVO_MT_81D2_BU_idea_FM_ideapad330-15ARR:
dmi.product.family: ideapad 330-15ARR
dmi.product.name: 81D2
dmi.product.sku: LENOVO_MT_81D2_BU_idea_FM_ideapad 330-15ARR
dmi.product.version: Lenovo ideapad 330-15ARR
dmi.sys.vendor: LENOVO
version.compiz: compiz N/A
version.libdrm2: libdrm2 2.4.110-1ubuntu1
version.libgl1-mesa-dri: libgl1-mesa-dri 22.0.1-1ubuntu2
version.libgl1-mesa-glx: libgl1-mesa-glx N/A
version.xserver-xorg-core: xserver-xorg-core 2:21.1.3-2ubuntu2
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.1.0-2build3
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20210115-1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.17-2build1

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


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

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

Title:
  window redraw wrong size when plug in hdmi

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


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

[Bug 1974100] Re: inode lazy init in a VM fills virtual disk with garbage

2022-05-18 Thread Brent Baccala
best guess as to the package

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

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

Title:
  inode lazy init in a VM fills virtual disk with garbage

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


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

[Bug 1974100] [NEW] inode lazy init in a VM fills virtual disk with garbage

2022-05-18 Thread Brent Baccala
Public bug reported:

I encountered this problem using this script to create a GNS3 appliance:

https://github.com/BrentBaccala/NPDC/blob/master/GNS3/ubuntu.py

I'm running a stock gns3-server on Ubuntu 18.  I called it like this:

./ubuntu.py -r 20 -s $((1024*1024)) --vnc --boot-script opendesktop.sh

This uses the Ubuntu 20 server cloudimg to create a new GNS3 appliance
with a thin provisioned disk resized to 1024*1024 MB = 1 TB.

Although the disk holds less than 5 GB of data once the installation
scripts finishes, the qcow2 disk file balloons to over 35 GB, and
watching the processes running in the virtual machine shows that the
culprit is "ext4lazyinit".

I posted a question about this at
https://unix.stackexchange.com/questions/700050

Shutting down the instance, mounting the disk using qemu-nbd, and
running "debugfs -R dump_unused" on the first partition shows all kind
of junk in the unused blocks.

Running "zerofree" on the partition shows hundreds of thousands of
blocks being zeroed

Then using "qemu-img convert -O qcow2" to copy the disk image to another
qcow2 file and discard zero blocks reduces its size to 4.3 GB.

I tried modifying gns3 to set discard=on option on the qemu command
line; this seems to have no effect.

Here's an actual qemu command line (called from gns3):

/usr/bin/qemu-system-x86_64 -name ubuntu -m 4096M -smp cpus=1,sockets=1
-enable-kvm -machine smm=off -boot order=c -cdrom
/home/gns3/GNS3/projects/29706745-5a53-44bf-9313-c8e78089c2f5/29706745-5a53-44bf-9313-c8e78089c2f5_ubuntu.iso
-drive
file=/home/gns3/GNS3/projects/29706745-5a53-44bf-9313-c8e78089c2f5/project-
files/qemu/1deb3b2f-421e-460b-91df-
eb36b13d17e9/hda_disk.qcow2,if=ide,index=0,media=disk,id=drive0,discard=on
-uuid 1deb3b2f-421e-460b-91df-eb36b13d17e9 -vnc 0.0.0.0:5 -monitor
tcp:127.0.0.1:40269,server,nowait -net none -device virtio-net-
pci,mac=0c:eb:3b:2f:00:00,netdev=gns3-0 -netdev
socket,id=gns3-0,udp=127.0.0.1:20015,localaddr=127.0.0.1:20014

The qemu disk image was created by "qemu-img create", backed by
ubuntu-20.04-server-cloudimg-amd64.img, and resizing it with "qemu-img
resize".

My best guess is that this is a bug in qemu's handling of disk DISCARD
operations.

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

Title:
  inode lazy init in a VM fills virtual disk with garbage

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


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

[Bug 1964443] VarLogDistupgradeMainlog.txt

2022-03-09 Thread Brent Gervais
apport information

** Attachment added: "VarLogDistupgradeMainlog.txt"
   
https://bugs.launchpad.net/bugs/1964443/+attachment/5567632/+files/VarLogDistupgradeMainlog.txt

** Description changed:

  1) lsb_release -rd
  
  Description:Ubuntu Jammy Jellyfish (development branch)
  Release:22.04
  
  (Kubuntu install 21.10->22.04 upgrade in QEMU VM)
  
- 2) apt-cache policy ubuntu-release-upgrader-core 
+ 2) apt-cache policy ubuntu-release-upgrader-core
  ubuntu-release-upgrader-core:
-   Installed: 1:22.04.6
+   Installed: 1:22.04.6
  
  3) expected
+ 
+ (upgrade from Kubuntu 21.10 -> 22.04. Reboot.)
  
  * Firefox to remain installed, icon on panel and in Application Launcher
  menu to be intact.
  
  4) happened instead
  
  * Firefox is uninstalled/not installed
  $ apt-cache policy firefox
  firefox:
-   Installed: (none)
-   Candidate: 97.0.1+build1-0ubuntu1
-   
+   Installed: (none)
+   Candidate: 97.0.1+build1-0ubuntu1
+ 
  * Firefox icon in panel is replaced with a generic icon
  * Firefox is missing from Application Launcher menu
- --- 
+ ---
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu78
  Architecture: amd64
  CasperMD5CheckResult: pass
  CrashDB: ubuntu
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-03-10 (0 days ago)
  InstallationMedia: Kubuntu 21.10 "Impish Indri" - Release amd64 (20211012)
  Package: ubuntu-release-upgrader (not installed)
  ProcVersionSignature: Ubuntu 5.15.0-22.22-generic 5.15.19
  Tags:  jammy dist-upgrade
  Uname: Linux 5.15.0-22-generic x86_64
  UpgradeStatus: Upgraded to jammy on 2022-03-10 (0 days ago)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
  VarLogDistupgradeXorgFixuplog:
-  INFO:root:/usr/bin/do-release-upgrade running
-  INFO:root:No xorg.conf, exiting
+  INFO:root:/usr/bin/do-release-upgrade running
+  INFO:root:No xorg.conf, exiting
  _MarkForUpload: True

** Description changed:

  1) lsb_release -rd
  
  Description:Ubuntu Jammy Jellyfish (development branch)
  Release:22.04
  
  (Kubuntu install 21.10->22.04 upgrade in QEMU VM)
  
  2) apt-cache policy ubuntu-release-upgrader-core
  ubuntu-release-upgrader-core:
    Installed: 1:22.04.6
  
  3) expected
  
  (upgrade from Kubuntu 21.10 -> 22.04. Reboot.)
  
  * Firefox to remain installed, icon on panel and in Application Launcher
  menu to be intact.
  
  4) happened instead
  
+ (upgrade from Kubuntu 21.10 -> 22.04. Reboot.)
+ 
  * Firefox is uninstalled/not installed
+ 
  $ apt-cache policy firefox
  firefox:
    Installed: (none)
    Candidate: 97.0.1+build1-0ubuntu1
  
  * Firefox icon in panel is replaced with a generic icon
  * Firefox is missing from Application Launcher menu
+ 
+ 
  ---
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu78
  Architecture: amd64
  CasperMD5CheckResult: pass
  CrashDB: ubuntu
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-03-10 (0 days ago)
  InstallationMedia: Kubuntu 21.10 "Impish Indri" - Release amd64 (20211012)
  Package: ubuntu-release-upgrader (not installed)
  ProcVersionSignature: Ubuntu 5.15.0-22.22-generic 5.15.19
  Tags:  jammy dist-upgrade
  Uname: Linux 5.15.0-22-generic x86_64
  UpgradeStatus: Upgraded to jammy on 2022-03-10 (0 days ago)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
  VarLogDistupgradeXorgFixuplog:
   INFO:root:/usr/bin/do-release-upgrade running
   INFO:root:No xorg.conf, exiting
  _MarkForUpload: True

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

Title:
  Firefox no longer installed following Kubuntu upgrade 21.10->22.04

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


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

[Bug 1964036] Re: Firefox icon missing from panel following Kubuntu upgrade 20.04->22.04

2022-03-09 Thread Brent Gervais
** Summary changed:

- Firefox icon missing from panel following Kubuntu upgrade 20.04/21.10->22.04
+ Firefox icon missing from panel following Kubuntu upgrade 20.04->22.04

** Description changed:

  1) lsb_release -rd
  
  Description:Ubuntu Jammy Jellyfish (development branch)
  Release:22.04
  (Kubuntu Jammy live session in QEMU VM)
- 
  
  2) apt-cache policy ubuntu-release-upgrader-core
  ubuntu-release-upgrader-core:
    Installed: 1:22.04.6
  
  3) expected
  
- (upgrade from Kubuntu 20.04.3/21.10 -> 22.04. Reboot.)
+ (upgrade from Kubuntu 20.04.3 -> 22.04. Reboot.)
  
  * Firefox icon on panel to be intact.
  * Clicked icon launches browser.
  * Icon tooltip/mouse hover to describe application.
  
  4) happened instead
  
  * Icon is missing/replaced with a generic icon
  * Icon click produces error notification "Plasma Workspace - 
preferred://browser"
  * Icon tooltip/mouse hover appears, though is blank.
  
  Additional info:
  * firefox is still installed, works as expected.
  ---
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu78
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CrashDB: ubuntu
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-03-07 (2 days ago)
  InstallationMedia: Kubuntu 20.04.3 LTS "Focal Fossa" - Release amd64 
(20210819.1)
  Package: ubuntu-release-upgrader (not installed)
  ProcVersionSignature: Ubuntu 5.15.0-18.18-generic 5.15.12
  Tags:  jammy dist-upgrade
  Uname: Linux 5.15.0-18-generic x86_64
  UpgradeStatus: Upgraded to jammy on 2022-03-07 (2 days ago)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
  VarLogDistupgradeXorgFixuplog:
   INFO:root:/usr/bin/do-release-upgrade running
   INFO:root:No xorg.conf, exiting
  _MarkForUpload: True

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

Title:
  Firefox icon missing from panel following Kubuntu upgrade 20.04->22.04

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


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

[Bug 1964443] VarLogDistupgradeLspcitxt.txt

2022-03-09 Thread Brent Gervais
apport information

** Attachment added: "VarLogDistupgradeLspcitxt.txt"
   
https://bugs.launchpad.net/bugs/1964443/+attachment/5567631/+files/VarLogDistupgradeLspcitxt.txt

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

Title:
  Firefox no longer installed following Kubuntu upgrade 21.10->22.04

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


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

[Bug 1964443] VarLogDistupgradeApttermlog.txt

2022-03-09 Thread Brent Gervais
apport information

** Attachment added: "VarLogDistupgradeApttermlog.txt"
   
https://bugs.launchpad.net/bugs/1964443/+attachment/5567630/+files/VarLogDistupgradeApttermlog.txt

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

Title:
  Firefox no longer installed following Kubuntu upgrade 21.10->22.04

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


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

[Bug 1964443] VarLogDistupgradeAptlog.txt

2022-03-09 Thread Brent Gervais
apport information

** Attachment added: "VarLogDistupgradeAptlog.txt"
   
https://bugs.launchpad.net/bugs/1964443/+attachment/5567629/+files/VarLogDistupgradeAptlog.txt

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

Title:
  Firefox no longer installed following Kubuntu upgrade 21.10->22.04

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


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

[Bug 1964443] VarLogDistupgradeAptclonesystemstate.tar.gz

2022-03-09 Thread Brent Gervais
apport information

** Attachment added: "VarLogDistupgradeAptclonesystemstate.tar.gz"
   
https://bugs.launchpad.net/bugs/1964443/+attachment/5567628/+files/VarLogDistupgradeAptclonesystemstate.tar.gz

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

Title:
  Firefox no longer installed following Kubuntu upgrade 21.10->22.04

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


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

[Bug 1964443] ProcCpuinfoMinimal.txt

2022-03-09 Thread Brent Gervais
apport information

** Attachment added: "ProcCpuinfoMinimal.txt"
   
https://bugs.launchpad.net/bugs/1964443/+attachment/5567625/+files/ProcCpuinfoMinimal.txt

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

Title:
  Firefox no longer installed following Kubuntu upgrade 21.10->22.04

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


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

[Bug 1964443] ProcEnviron.txt

2022-03-09 Thread Brent Gervais
apport information

** Attachment added: "ProcEnviron.txt"
   
https://bugs.launchpad.net/bugs/1964443/+attachment/5567626/+files/ProcEnviron.txt

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

Title:
  Firefox no longer installed following Kubuntu upgrade 21.10->22.04

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


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

[Bug 1964443] VarLogDistupgradeAptHistorylog.txt

2022-03-09 Thread Brent Gervais
apport information

** Attachment added: "VarLogDistupgradeAptHistorylog.txt"
   
https://bugs.launchpad.net/bugs/1964443/+attachment/5567627/+files/VarLogDistupgradeAptHistorylog.txt

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

Title:
  Firefox no longer installed following Kubuntu upgrade 21.10->22.04

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


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

[Bug 1964443] Re: Firefox no longer installed following Kubuntu upgrade 21.10->22.04

2022-03-09 Thread Brent Gervais
apport information

** Tags added: apport-collected dist-upgrade

** Description changed:

  1) lsb_release -rd
  
  Description:Ubuntu Jammy Jellyfish (development branch)
  Release:22.04
  
  (Kubuntu install 21.10->22.04 upgrade in QEMU VM)
  
  2) apt-cache policy ubuntu-release-upgrader-core 
  ubuntu-release-upgrader-core:
Installed: 1:22.04.6
  
  3) expected
  
  * Firefox to remain installed, icon on panel and in Application Launcher
  menu to be intact.
  
  4) happened instead
  
  * Firefox is uninstalled/not installed
  $ apt-cache policy firefox
  firefox:
Installed: (none)
Candidate: 97.0.1+build1-0ubuntu1

  * Firefox icon in panel is replaced with a generic icon
  * Firefox is missing from Application Launcher menu
+ --- 
+ ProblemType: Bug
+ ApportVersion: 2.20.11-0ubuntu78
+ Architecture: amd64
+ CasperMD5CheckResult: pass
+ CrashDB: ubuntu
+ CurrentDesktop: KDE
+ DistroRelease: Ubuntu 22.04
+ InstallationDate: Installed on 2022-03-10 (0 days ago)
+ InstallationMedia: Kubuntu 21.10 "Impish Indri" - Release amd64 (20211012)
+ Package: ubuntu-release-upgrader (not installed)
+ ProcVersionSignature: Ubuntu 5.15.0-22.22-generic 5.15.19
+ Tags:  jammy dist-upgrade
+ Uname: Linux 5.15.0-22-generic x86_64
+ UpgradeStatus: Upgraded to jammy on 2022-03-10 (0 days ago)
+ UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
+ VarLogDistupgradeXorgFixuplog:
+  INFO:root:/usr/bin/do-release-upgrade running
+  INFO:root:No xorg.conf, exiting
+ _MarkForUpload: True

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

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

Title:
  Firefox no longer installed following Kubuntu upgrade 21.10->22.04

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


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

[Bug 1964443] [NEW] Firefox no longer installed following Kubuntu upgrade 21.10->22.04

2022-03-09 Thread Brent Gervais
Public bug reported:

1) lsb_release -rd

Description:Ubuntu Jammy Jellyfish (development branch)
Release:22.04

(Kubuntu install 21.10->22.04 upgrade in QEMU VM)

2) apt-cache policy ubuntu-release-upgrader-core 
ubuntu-release-upgrader-core:
  Installed: 1:22.04.6

3) expected

* Firefox to remain installed, icon on panel and in Application Launcher
menu to be intact.

4) happened instead

* Firefox is uninstalled/not installed
$ apt-cache policy firefox
firefox:
  Installed: (none)
  Candidate: 97.0.1+build1-0ubuntu1
  
* Firefox icon in panel is replaced with a generic icon
* Firefox is missing from Application Launcher menu

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


** Tags: jammy kubuntu

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

Title:
  Firefox no longer installed following Kubuntu upgrade 21.10->22.04

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


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

[Bug 1964036] Re: Firefox icon missing from panel following Kubuntu upgrade 20.04/21.10->22.04

2022-03-09 Thread Brent Gervais
** Summary changed:

- Firefox icon missing from panel following Kubuntu LTS upgrade 20.04->22.04
+ Firefox icon missing from panel following Kubuntu upgrade 20.04/21.10->22.04

** Description changed:

  1) lsb_release -rd
  
  Description:Ubuntu Jammy Jellyfish (development branch)
  Release:22.04
+ (Kubuntu Jammy live session in QEMU VM)
+ 
  
  2) apt-cache policy ubuntu-release-upgrader-core
  ubuntu-release-upgrader-core:
    Installed: 1:22.04.6
  
  3) expected
  
- (upgrade from Kubuntu 20.04.3 -> 22.04. Reboot.)
+ (upgrade from Kubuntu 20.04.3/21.10 -> 22.04. Reboot.)
  
  * Firefox icon on panel to be intact.
  * Clicked icon launches browser.
  * Icon tooltip/mouse hover to describe application.
  
  4) happened instead
  
  * Icon is missing/replaced with a generic icon
  * Icon click produces error notification "Plasma Workspace - 
preferred://browser"
  * Icon tooltip/mouse hover appears, though is blank.
  
  Additional info:
  * firefox is still installed, works as expected.
- --- 
+ ---
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu78
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CrashDB: ubuntu
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-03-07 (2 days ago)
  InstallationMedia: Kubuntu 20.04.3 LTS "Focal Fossa" - Release amd64 
(20210819.1)
  Package: ubuntu-release-upgrader (not installed)
  ProcVersionSignature: Ubuntu 5.15.0-18.18-generic 5.15.12
  Tags:  jammy dist-upgrade
  Uname: Linux 5.15.0-18-generic x86_64
  UpgradeStatus: Upgraded to jammy on 2022-03-07 (2 days ago)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
  VarLogDistupgradeXorgFixuplog:
-  INFO:root:/usr/bin/do-release-upgrade running
-  INFO:root:No xorg.conf, exiting
+  INFO:root:/usr/bin/do-release-upgrade running
+  INFO:root:No xorg.conf, exiting
  _MarkForUpload: True

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

Title:
  Firefox icon missing from panel following Kubuntu upgrade
  20.04/21.10->22.04

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


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

[Bug 1964439] ProcCpuinfoMinimal.txt

2022-03-09 Thread Brent Gervais
apport information

** Attachment added: "ProcCpuinfoMinimal.txt"
   
https://bugs.launchpad.net/bugs/1964439/+attachment/5567600/+files/ProcCpuinfoMinimal.txt

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

Title:
  KSystemLog does not launch from Application Launcher menu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/plasma-desktop/+bug/1964439/+subscriptions


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

[Bug 1964439] ProcEnviron.txt

2022-03-09 Thread Brent Gervais
apport information

** Attachment added: "ProcEnviron.txt"
   
https://bugs.launchpad.net/bugs/1964439/+attachment/5567601/+files/ProcEnviron.txt

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

Title:
  KSystemLog does not launch from Application Launcher menu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/plasma-desktop/+bug/1964439/+subscriptions


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

[Bug 1964439] Re: KSystemLog does not launch from Application Launcher menu

2022-03-09 Thread Brent Gervais
apport information

** Tags added: apport-collected

** Description changed:

  
  Clicking on KSystemLog icon in Application Launcher menu fails to launch the 
application
  
  
  1) lsb_release -rd
  Description:Ubuntu Jammy Jellyfish (development branch)
  Release:22.04
  (Kubuntu Jammy live session in QEMU VM)
  
  2) package version - apt-cache policy pkgname'
  $ apt-cache policy plasma-desktop
  plasma-desktop:
Installed: 4:5.24.2-0ubuntu2
  
  
  3) expected to happen
  * click KSystemLog icon in Application Launcher menu
  * user presented with "Run as root -- KDE su" window to enter password (as is 
the case in 19.10)
  * ksystemlog launches
  
  4) happened instead
  * click KSystemLog icon in Application Launcher menu
  * application does not launch
  
  ## additional info
  
  * running from terminal works perfectly. (Running same command found in 
ksystemlog.desktop file for Application Launcher entry)
ksystemlog -qwindowtitle %c
+ --- 
+ ProblemType: Bug
+ ApportVersion: 2.20.11-0ubuntu78
+ Architecture: amd64
+ CasperMD5CheckResult: pass
+ CasperVersion: 1.467
+ CurrentDesktop: KDE
+ DistroRelease: Ubuntu 22.04
+ LiveMediaBuild: Kubuntu 22.04 LTS "Jammy Jellyfish" - Alpha amd64 (20220309)
+ Package: plasma-desktop 4:5.24.2-0ubuntu2
+ PackageArchitecture: amd64
+ ProcVersionSignature: Ubuntu 5.15.0-22.22-generic 5.15.19
+ Tags:  jammy
+ Uname: Linux 5.15.0-22-generic x86_64
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
+ _MarkForUpload: True

** Attachment added: "Dependencies.txt"
   
https://bugs.launchpad.net/bugs/1964439/+attachment/5567599/+files/Dependencies.txt

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

Title:
  KSystemLog does not launch from Application Launcher menu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/plasma-desktop/+bug/1964439/+subscriptions


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

[Bug 1964439] [NEW] KSystemLog does not launch from Application Launcher menu

2022-03-09 Thread Brent Gervais
Public bug reported:


Clicking on KSystemLog icon in Application Launcher menu fails to launch the 
application


1) lsb_release -rd
Description:Ubuntu Jammy Jellyfish (development branch)
Release:22.04
(Kubuntu Jammy live session in QEMU VM)

2) package version - apt-cache policy pkgname'
$ apt-cache policy plasma-desktop
plasma-desktop:
  Installed: 4:5.24.2-0ubuntu2


3) expected to happen
* click KSystemLog icon in Application Launcher menu
* user presented with "Run as root -- KDE su" window to enter password (as is 
the case in 19.10)
* ksystemlog launches

4) happened instead
* click KSystemLog icon in Application Launcher menu
* application does not launch

## additional info

* running from terminal works perfectly. (Running same command found in 
ksystemlog.desktop file for Application Launcher entry)
ksystemlog -qwindowtitle %c

** Affects: plasma-desktop (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: jammy kubuntu

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

Title:
  KSystemLog does not launch from Application Launcher menu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/plasma-desktop/+bug/1964439/+subscriptions


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

[Bug 1964036] Re: Firefox icon missing from panel following Kubuntu LTS upgrade 20.04->22.04

2022-03-09 Thread Brent Gervais
** Tags added: kubuntu

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

Title:
  Firefox icon missing from panel following Kubuntu LTS upgrade
  20.04->22.04

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


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

[Bug 1964401] Re: Software Sources/software-properties-qt privilege escalation not accepting password

2022-03-09 Thread Brent Gervais
** Tags added: kubuntu

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

Title:
  Software Sources/software-properties-qt privilege escalation not
  accepting password

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/plasma-discover/+bug/1964401/+subscriptions


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

[Bug 1964411] Re: "Add to Panel (Widget)" adds item to left of Application Launcher icon in Panel

2022-03-09 Thread Brent Gervais
** Tags added: kubuntu

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

Title:
  "Add to Panel (Widget)" adds item to left of Application Launcher icon
  in Panel

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/plasma-desktop/+bug/1964411/+subscriptions


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

[Bug 1964405] Re: ubuntu-bug doesn't launch browser to upload collected information automagically to Launchpad

2022-03-09 Thread Brent Gervais
** Tags added: kubuntu

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

Title:
  ubuntu-bug doesn't launch browser to upload collected information
  automagically to Launchpad

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


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

[Bug 1964411] ProcCpuinfoMinimal.txt

2022-03-09 Thread Brent Gervais
apport information

** Attachment added: "ProcCpuinfoMinimal.txt"
   
https://bugs.launchpad.net/bugs/1964411/+attachment/5567569/+files/ProcCpuinfoMinimal.txt

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

Title:
  "Add to Panel (Widget)" adds item to left of Application Launcher icon
  in Panel

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/plasma-desktop/+bug/1964411/+subscriptions


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

[Bug 1964411] Dependencies.txt

2022-03-09 Thread Brent Gervais
apport information

** Attachment added: "Dependencies.txt"
   
https://bugs.launchpad.net/bugs/1964411/+attachment/5567568/+files/Dependencies.txt

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

Title:
  "Add to Panel (Widget)" adds item to left of Application Launcher icon
  in Panel

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/plasma-desktop/+bug/1964411/+subscriptions


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

[Bug 1964411] ProcEnviron.txt

2022-03-09 Thread Brent Gervais
apport information

** Attachment added: "ProcEnviron.txt"
   
https://bugs.launchpad.net/bugs/1964411/+attachment/5567570/+files/ProcEnviron.txt

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

Title:
  "Add to Panel (Widget)" adds item to left of Application Launcher icon
  in Panel

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/plasma-desktop/+bug/1964411/+subscriptions


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

[Bug 1964411] [NEW] "Add to Panel (Widget)" adds item to left of Application Launcher icon in Panel

2022-03-09 Thread Brent Gervais
Public bug reported:

1) lsb_release -rd
Description:Ubuntu Jammy Jellyfish (development branch)
Release:22.04

(affects Kubuntu Jammy daily install & live session in QEMU VM)


2) package version - apt-cache policy pkgname'
$ apt-cache policy plasma-desktop
plasma-desktop:
  Installed: 4:5.24.3-0ubuntu1


3) expected to happen
* open Application Menu
* right-click an application icon > Add to Panel (Widget)
* adds item to *right* of Application Launcher icon in Panel

4) happened instead
* open Application Menu
* right-click an application icon > Add to Panel (Widget)
* adds item to *left* of Application Launcher icon in Panel
--- 
ProblemType: Bug
ApportVersion: 2.20.11-0ubuntu78
Architecture: amd64
CasperMD5CheckResult: unknown
CurrentDesktop: KDE
DistroRelease: Ubuntu 22.04
InstallationDate: Installed on 2022-03-07 (2 days ago)
InstallationMedia: Kubuntu 20.04.3 LTS "Focal Fossa" - Release amd64 
(20210819.1)
Package: plasma-desktop 4:5.24.3-0ubuntu1
PackageArchitecture: amd64
ProcVersionSignature: Ubuntu 5.15.0-22.22-generic 5.15.19
Tags: jammy third-party-packages
Uname: Linux 5.15.0-22-generic x86_64
UpgradeStatus: Upgraded to jammy on 2022-03-07 (2 days ago)
UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
_MarkForUpload: True

** Affects: plasma-desktop (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-collected jammy third-party-packages

** Attachment added: "Screenshot_20220309_144119.png"
   
https://bugs.launchpad.net/bugs/1964411/+attachment/5567567/+files/Screenshot_20220309_144119.png

** Tags added: apport-collected third-party-packages

** Description changed:

  1) lsb_release -rd
  Description:Ubuntu Jammy Jellyfish (development branch)
  Release:22.04
  
  (affects Kubuntu Jammy daily install & live session in QEMU VM)
  
  
  2) package version - apt-cache policy pkgname'
  $ apt-cache policy plasma-desktop
  plasma-desktop:
Installed: 4:5.24.3-0ubuntu1
  
  
  3) expected to happen
  * open Application Menu
  * right-click an application icon > Add to Panel (Widget)
  * adds item to *right* of Application Launcher icon in Panel
  
  4) happened instead
  * open Application Menu
  * right-click an application icon > Add to Panel (Widget)
  * adds item to *left* of Application Launcher icon in Panel
+ --- 
+ ProblemType: Bug
+ ApportVersion: 2.20.11-0ubuntu78
+ Architecture: amd64
+ CasperMD5CheckResult: unknown
+ CurrentDesktop: KDE
+ DistroRelease: Ubuntu 22.04
+ InstallationDate: Installed on 2022-03-07 (2 days ago)
+ InstallationMedia: Kubuntu 20.04.3 LTS "Focal Fossa" - Release amd64 
(20210819.1)
+ Package: plasma-desktop 4:5.24.3-0ubuntu1
+ PackageArchitecture: amd64
+ ProcVersionSignature: Ubuntu 5.15.0-22.22-generic 5.15.19
+ Tags: jammy third-party-packages
+ Uname: Linux 5.15.0-22-generic x86_64
+ UpgradeStatus: Upgraded to jammy on 2022-03-07 (2 days ago)
+ UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
+ _MarkForUpload: True

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

Title:
  "Add to Panel (Widget)" adds item to left of Application Launcher icon
  in Panel

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/plasma-desktop/+bug/1964411/+subscriptions


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

[Bug 1964405] ProcCpuinfoMinimal.txt

2022-03-09 Thread Brent Gervais
apport information

** Attachment added: "ProcCpuinfoMinimal.txt"
   
https://bugs.launchpad.net/bugs/1964405/+attachment/5567552/+files/ProcCpuinfoMinimal.txt

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

Title:
  ubuntu-bug doesn't launch browser to upload collected information
  automagically to Launchpad

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


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

[Bug 1964405] ProcEnviron.txt

2022-03-09 Thread Brent Gervais
apport information

** Attachment added: "ProcEnviron.txt"
   
https://bugs.launchpad.net/bugs/1964405/+attachment/5567553/+files/ProcEnviron.txt

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

Title:
  ubuntu-bug doesn't launch browser to upload collected information
  automagically to Launchpad

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


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

[Bug 1964405] Dependencies.txt

2022-03-09 Thread Brent Gervais
apport information

** Attachment added: "Dependencies.txt"
   
https://bugs.launchpad.net/bugs/1964405/+attachment/5567551/+files/Dependencies.txt

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

Title:
  ubuntu-bug doesn't launch browser to upload collected information
  automagically to Launchpad

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


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

[Bug 1964405] CrashReports.txt

2022-03-09 Thread Brent Gervais
apport information

** Attachment added: "CrashReports.txt"
   
https://bugs.launchpad.net/bugs/1964405/+attachment/5567550/+files/CrashReports.txt

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

Title:
  ubuntu-bug doesn't launch browser to upload collected information
  automagically to Launchpad

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


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

[Bug 1964405] Re: ubuntu-bug doesn't launch browser to upload collected information automagically to Launchpad

2022-03-09 Thread Brent Gervais
apport information

** Tags added: apport-collected

** Description changed:

  1) lsb_release -rd
  Description:Ubuntu Jammy Jellyfish (development branch)
  Release:22.04
  
  (Kubuntu Jammy live session in QEMU VM)
  
  2) package version - apt-cache policy pkgname'
  apt-cache policy apport
  apport:
    Installed: 2.20.11-0ubuntu78
  
  3) expected to happen
  * launch bug gathering via terminal (specifying as argument any package, in 
this case Dolphin)
   $ ubuntu-bug dolphin
  * GUI opens while gathering information, presents dialogue for review.
  * Upon clicking "Send" button, browser should launch to Launchpad login 
screen for submitting the bug report.
  
  4) happened instead
  * Upon clicking "Send" button, browser *does not* launch to Launchpad login 
screen for submitting the bug report. Broswer does not launch. Nothing else 
appears to happen.
  
  ## Additional Info
  * works as expected on Ubuntu 20.04.4 LTS / apport 2.20.11-0ubuntu27.21
  * apport-collect [bug-number] works as expected (launches browser)
  
  ## workaround
  * save bug report to file, manually upload to Launchpad
   $ ubuntu-bug --save=[file] [package]
+ --- 
+ ProblemType: Bug
+ ApportVersion: 2.20.11-0ubuntu78
+ Architecture: amd64
+ CasperMD5CheckResult: unknown
+ CurrentDesktop: KDE
+ DistroRelease: Ubuntu 22.04
+ InstallationDate: Installed on 2022-03-07 (2 days ago)
+ InstallationMedia: Kubuntu 20.04.3 LTS "Focal Fossa" - Release amd64 
(20210819.1)
+ Package: apport 2.20.11-0ubuntu78
+ PackageArchitecture: all
+ ProcVersionSignature: Ubuntu 5.15.0-18.18-generic 5.15.12
+ Tags:  jammy
+ Uname: Linux 5.15.0-18-generic x86_64
+ UpgradeStatus: Upgraded to jammy on 2022-03-07 (2 days ago)
+ UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
+ _MarkForUpload: True

** Attachment added: "ApportLog.txt"
   
https://bugs.launchpad.net/bugs/1964405/+attachment/5567549/+files/ApportLog.txt

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

Title:
  ubuntu-bug doesn't launch browser to upload collected information
  automagically to Launchpad

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


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

[Bug 1964036] VarLogDistupgradeApttermlog.txt

2022-03-09 Thread Brent Gervais
apport information

** Attachment added: "VarLogDistupgradeApttermlog.txt"
   
https://bugs.launchpad.net/bugs/1964036/+attachment/5567546/+files/VarLogDistupgradeApttermlog.txt

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

Title:
  Firefox icon missing from panel following Kubuntu LTS upgrade
  20.04->22.04

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


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

[Bug 1964036] VarLogDistupgradeAptHistorylog.txt

2022-03-09 Thread Brent Gervais
apport information

** Attachment added: "VarLogDistupgradeAptHistorylog.txt"
   
https://bugs.launchpad.net/bugs/1964036/+attachment/5567543/+files/VarLogDistupgradeAptHistorylog.txt

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

Title:
  Firefox icon missing from panel following Kubuntu LTS upgrade
  20.04->22.04

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


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

[Bug 1964036] VarLogDistupgradeMainlog.txt

2022-03-09 Thread Brent Gervais
apport information

** Attachment added: "VarLogDistupgradeMainlog.txt"
   
https://bugs.launchpad.net/bugs/1964036/+attachment/5567548/+files/VarLogDistupgradeMainlog.txt

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

Title:
  Firefox icon missing from panel following Kubuntu LTS upgrade
  20.04->22.04

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


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

[Bug 1964036] VarLogDistupgradeAptlog.txt

2022-03-09 Thread Brent Gervais
apport information

** Attachment added: "VarLogDistupgradeAptlog.txt"
   
https://bugs.launchpad.net/bugs/1964036/+attachment/5567545/+files/VarLogDistupgradeAptlog.txt

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

Title:
  Firefox icon missing from panel following Kubuntu LTS upgrade
  20.04->22.04

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


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

[Bug 1964036] VarLogDistupgradeAptclonesystemstate.tar.gz

2022-03-09 Thread Brent Gervais
apport information

** Attachment added: "VarLogDistupgradeAptclonesystemstate.tar.gz"
   
https://bugs.launchpad.net/bugs/1964036/+attachment/5567544/+files/VarLogDistupgradeAptclonesystemstate.tar.gz

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

Title:
  Firefox icon missing from panel following Kubuntu LTS upgrade
  20.04->22.04

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


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

[Bug 1964036] VarLogDistupgradeLspcitxt.txt

2022-03-09 Thread Brent Gervais
apport information

** Attachment added: "VarLogDistupgradeLspcitxt.txt"
   
https://bugs.launchpad.net/bugs/1964036/+attachment/5567547/+files/VarLogDistupgradeLspcitxt.txt

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

Title:
  Firefox icon missing from panel following Kubuntu LTS upgrade
  20.04->22.04

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


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

[Bug 1964036] ProcCpuinfoMinimal.txt

2022-03-09 Thread Brent Gervais
apport information

** Attachment added: "ProcCpuinfoMinimal.txt"
   
https://bugs.launchpad.net/bugs/1964036/+attachment/5567541/+files/ProcCpuinfoMinimal.txt

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

Title:
  Firefox icon missing from panel following Kubuntu LTS upgrade
  20.04->22.04

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


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

[Bug 1964036] ProcEnviron.txt

2022-03-09 Thread Brent Gervais
apport information

** Attachment added: "ProcEnviron.txt"
   
https://bugs.launchpad.net/bugs/1964036/+attachment/5567542/+files/ProcEnviron.txt

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

Title:
  Firefox icon missing from panel following Kubuntu LTS upgrade
  20.04->22.04

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


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

[Bug 1964036] Re: Firefox icon missing from panel following Kubuntu LTS upgrade 20.04->22.04

2022-03-09 Thread Brent Gervais
apport information

** Tags added: apport-collected dist-upgrade

** Description changed:

  1) lsb_release -rd
  
  Description:Ubuntu Jammy Jellyfish (development branch)
  Release:22.04
  
  2) apt-cache policy ubuntu-release-upgrader-core
  ubuntu-release-upgrader-core:
    Installed: 1:22.04.6
  
  3) expected
  
  (upgrade from Kubuntu 20.04.3 -> 22.04. Reboot.)
  
  * Firefox icon on panel to be intact.
  * Clicked icon launches browser.
  * Icon tooltip/mouse hover to describe application.
  
  4) happened instead
  
  * Icon is missing/replaced with a generic icon
  * Icon click produces error notification "Plasma Workspace - 
preferred://browser"
  * Icon tooltip/mouse hover appears, though is blank.
  
  Additional info:
  * firefox is still installed, works as expected.
+ --- 
+ ProblemType: Bug
+ ApportVersion: 2.20.11-0ubuntu78
+ Architecture: amd64
+ CasperMD5CheckResult: unknown
+ CrashDB: ubuntu
+ CurrentDesktop: KDE
+ DistroRelease: Ubuntu 22.04
+ InstallationDate: Installed on 2022-03-07 (2 days ago)
+ InstallationMedia: Kubuntu 20.04.3 LTS "Focal Fossa" - Release amd64 
(20210819.1)
+ Package: ubuntu-release-upgrader (not installed)
+ ProcVersionSignature: Ubuntu 5.15.0-18.18-generic 5.15.12
+ Tags:  jammy dist-upgrade
+ Uname: Linux 5.15.0-18-generic x86_64
+ UpgradeStatus: Upgraded to jammy on 2022-03-07 (2 days ago)
+ UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
+ VarLogDistupgradeXorgFixuplog:
+  INFO:root:/usr/bin/do-release-upgrade running
+  INFO:root:No xorg.conf, exiting
+ _MarkForUpload: True

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

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

Title:
  Firefox icon missing from panel following Kubuntu LTS upgrade
  20.04->22.04

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


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

[Bug 1964401] ProcEnviron.txt

2022-03-09 Thread Brent Gervais
apport information

** Attachment added: "ProcEnviron.txt"
   
https://bugs.launchpad.net/bugs/1964401/+attachment/5567539/+files/ProcEnviron.txt

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

Title:
  Software Sources/software-properties-qt privilege escalation not
  accepting password

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/plasma-discover/+bug/1964401/+subscriptions


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

[Bug 1964401] ProcCpuinfoMinimal.txt

2022-03-09 Thread Brent Gervais
apport information

** Attachment added: "ProcCpuinfoMinimal.txt"
   
https://bugs.launchpad.net/bugs/1964401/+attachment/5567538/+files/ProcCpuinfoMinimal.txt

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

Title:
  Software Sources/software-properties-qt privilege escalation not
  accepting password

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/plasma-discover/+bug/1964401/+subscriptions


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

[Bug 1964401] Re: Software Sources/software-properties-qt privilege escalation not accepting password

2022-03-09 Thread Brent Gervais
apport information

** Tags added: apport-collected third-party-packages

** Description changed:

  1) lsb_release -rd
  Description:Ubuntu Jammy Jellyfish (development branch)
  Release:22.04
  
  2) package version - apt-cache policy pkgname'
  
  plasma-discover:
Installed: 5.24.2.1-0ubuntu1
  
  software-properties-qt:
Installed: 0.99.19
  
  3) expected to happen
  * In Discover: Settings > Software Sources
  * opens a privilege escalation dialogue
  * enter user password
  * software-properties-qt opens
  
  4) happened instead
  * In Discover: Settings > Software Sources
  * opens a privilege escalation dialogue
  * insert known-correct user password
  * **does not accept known-correct user password**
  
  # Additional Info
  Note: described behaviour is for a post 20.04->22.04 devel daily upgrade 
found during a QA Testcase. Behaviour exists, but has slightly different 
symptoms in a virgin live 22.04 daily session (see below)
  
  * launching from terminal works as expected
  sudo software-properties-qt
  
  ## process & errors - post 20.04->22.04 devel daily upgrade
  * running Discover from terminal
$ plasma-discover
  
  * Settings > Software Sources 
  gives error on terminal:
  > org.kde.kdesu: Daemon not safe (not sgid), not using it.
  
  * insert known-correct user password
  gives error on terminal:
  > kf.su: [ ./src/stubprocess.cpp : 225 ]  Unknown request: "stop"
  > end
  
  * close password window
  gives error on terminal
  
  > Usage: /usr/lib/x86_64-linux-gnu/libexec/kf5/kdesu [options] command
  > Runs a program with elevated privileges.
  
  > Options:
  >   -h, --help Displays help on commandline options.
  > [...]
  
  ## process & errors - live Kubuntu 22.04 daily
  
  similar behaviour, hoever password-asking window never appears. Terminal
  errors differ from above:
  
  * Settings > Software Sources 
  gives error on terminal:
  > org.kde.kdesu: Daemon not safe (not sgid), not using it.
  >
  > Don't need password!!
  >
  >kf.su: [./src/stubprocess.cpp : 255 ]  Unknown request: "ok"
+ --- 
+ ProblemType: Bug
+ ApportVersion: 2.20.11-0ubuntu78
+ Architecture: amd64
+ CasperMD5CheckResult: unknown
+ CurrentDesktop: KDE
+ DistroRelease: Ubuntu 22.04
+ InstallationDate: Installed on 2022-03-07 (2 days ago)
+ InstallationMedia: Kubuntu 20.04.3 LTS "Focal Fossa" - Release amd64 
(20210819.1)
+ Package: plasma-discover 5.24.2.1-0ubuntu1
+ PackageArchitecture: amd64
+ ProcVersionSignature: Ubuntu 5.15.0-18.18-generic 5.15.12
+ Tags: jammy third-party-packages
+ Uname: Linux 5.15.0-18-generic x86_64
+ UpgradeStatus: Upgraded to jammy on 2022-03-07 (2 days ago)
+ UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
+ _MarkForUpload: True

** Attachment added: "Dependencies.txt"
   
https://bugs.launchpad.net/bugs/1964401/+attachment/5567537/+files/Dependencies.txt

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

Title:
  Software Sources/software-properties-qt privilege escalation not
  accepting password

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/plasma-discover/+bug/1964401/+subscriptions


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

[Bug 1964405] Re: ubuntu-bug doesn't launch browser to upload collected information automagically to Launchpad

2022-03-09 Thread Brent Gervais
** Description changed:

  1) lsb_release -rd
  Description:Ubuntu Jammy Jellyfish (development branch)
  Release:22.04
  
  (Kubuntu Jammy live session in QEMU VM)
  
  2) package version - apt-cache policy pkgname'
  apt-cache policy apport
  apport:
-   Installed: 2.20.11-0ubuntu78
- 
+   Installed: 2.20.11-0ubuntu78
  
  3) expected to happen
  * launch bug gathering via terminal (specifying as argument any package, in 
this case Dolphin)
-   $ ubuntu-bug dolphin
+  $ ubuntu-bug dolphin
  * GUI opens while gathering information, presents dialogue for review.
  * Upon clicking "Send" button, browser should launch to Launchpad login 
screen for submitting the bug report.
  
  4) happened instead
  * Upon clicking "Send" button, browser *does not* launch to Launchpad login 
screen for submitting the bug report. Broswer does not launch. Nothing else 
appears to happen.
  
- 
  ## Additional Info
  * works as expected on Ubuntu 20.04.4 LTS / apport 2.20.11-0ubuntu27.21
+ * apport-collect [bug-number] works as expected
  
  ## workaround
  * save bug report to file, manually upload to Launchpad
-   $ ubuntu-bug --save=[file] [package]
+  $ ubuntu-bug --save=[file] [package]

** Description changed:

  1) lsb_release -rd
  Description:Ubuntu Jammy Jellyfish (development branch)
  Release:22.04
  
  (Kubuntu Jammy live session in QEMU VM)
  
  2) package version - apt-cache policy pkgname'
  apt-cache policy apport
  apport:
    Installed: 2.20.11-0ubuntu78
  
  3) expected to happen
  * launch bug gathering via terminal (specifying as argument any package, in 
this case Dolphin)
   $ ubuntu-bug dolphin
  * GUI opens while gathering information, presents dialogue for review.
  * Upon clicking "Send" button, browser should launch to Launchpad login 
screen for submitting the bug report.
  
  4) happened instead
  * Upon clicking "Send" button, browser *does not* launch to Launchpad login 
screen for submitting the bug report. Broswer does not launch. Nothing else 
appears to happen.
  
  ## Additional Info
  * works as expected on Ubuntu 20.04.4 LTS / apport 2.20.11-0ubuntu27.21
- * apport-collect [bug-number] works as expected
+ * apport-collect [bug-number] works as expected (launches browser)
  
  ## workaround
  * save bug report to file, manually upload to Launchpad
   $ ubuntu-bug --save=[file] [package]

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

Title:
  ubuntu-bug doesn't launch browser to upload collected information
  automagically to Launchpad

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


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

[Bug 1964405] [NEW] ubuntu-bug doesn't launch browser to upload collected information automagically to Launchpad

2022-03-09 Thread Brent Gervais
Public bug reported:

1) lsb_release -rd
Description:Ubuntu Jammy Jellyfish (development branch)
Release:22.04

(Kubuntu Jammy live session in QEMU VM)

2) package version - apt-cache policy pkgname'
apt-cache policy apport
apport:
  Installed: 2.20.11-0ubuntu78


3) expected to happen
* launch bug gathering via terminal (specifying as argument any package, in 
this case Dolphin)
$ ubuntu-bug dolphin
* GUI opens while gathering information, presents dialogue for review.
* Upon clicking "Send" button, browser should launch to Launchpad login screen 
for submitting the bug report.

4) happened instead
* Upon clicking "Send" button, browser *does not* launch to Launchpad login 
screen for submitting the bug report. Broswer does not launch. Nothing else 
appears to happen.


## Additional Info
* works as expected on Ubuntu 20.04.4 LTS / apport 2.20.11-0ubuntu27.21

## workaround
* save bug report to file, manually upload to Launchpad
$ ubuntu-bug --save=[file] [package]

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


** Tags: jammy

** Attachment added: "apport-bug-report"
   
https://bugs.launchpad.net/bugs/1964405/+attachment/5567535/+files/apport-bug-report

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

Title:
  ubuntu-bug doesn't launch browser to upload collected information
  automagically to Launchpad

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


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

[Bug 1964405] Re: ubuntu-bug doesn't launch browser to upload collected information automagically to Launchpad

2022-03-09 Thread Brent Gervais
** Attachment added: "apport terminal errors"
   
https://bugs.launchpad.net/ubuntu/+source/apport/+bug/1964405/+attachment/5567536/+files/apport%20-%20errors.txt

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

Title:
  ubuntu-bug doesn't launch browser to upload collected information
  automagically to Launchpad

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


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

[Bug 1964401] Re: Software Sources/software-properties-qt privilege escalation not accepting password

2022-03-09 Thread Brent Gervais
(apologies for the attachment duplicates - there must be a bug in
Launchpad when editing an attachment's description)

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

Title:
  Software Sources/software-properties-qt privilege escalation not
  accepting password

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/plasma-discover/+bug/1964401/+subscriptions


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

[Bug 1964401] Re: Software Sources/software-properties-qt privilege escalation not accepting password

2022-03-09 Thread Brent Gervais
** Attachment added: "screenshot: run-as-root window - not accepting password w 
terminal errors"
   
https://bugs.launchpad.net/ubuntu/+source/plasma-discover/+bug/1964401/+attachment/5567523/+files/Screenshot_20220307_165610.png

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

Title:
  Software Sources/software-properties-qt privilege escalation not
  accepting password

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/plasma-discover/+bug/1964401/+subscriptions


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

[Bug 1964401] Re: Software Sources/software-properties-qt privilege escalation not accepting password

2022-03-09 Thread Brent Gervais
(post 20.04->22.04 devel daily upgrade) run-as-root window - not
accepting password w terminal errors

** Attachment added: "screenshot: run-as-root window - not accepting password w 
terminal errors"
   
https://bugs.launchpad.net/ubuntu/+source/plasma-discover/+bug/1964401/+attachment/5567521/+files/Screenshot_20220307_165610.png

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

Title:
  Software Sources/software-properties-qt privilege escalation not
  accepting password

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/plasma-discover/+bug/1964401/+subscriptions


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

[Bug 1964401] Re: Software Sources/software-properties-qt privilege escalation not accepting password

2022-03-09 Thread Brent Gervais
(post 20.04->22.04 devel daily upgrade) run-as-root window - not
accepting password w terminal errors

** Attachment added: "screenshot: run-as-root window - not accepting password w 
terminal errors"
   
https://bugs.launchpad.net/ubuntu/+source/plasma-discover/+bug/1964401/+attachment/5567522/+files/Screenshot_20220307_165610.png

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

Title:
  Software Sources/software-properties-qt privilege escalation not
  accepting password

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/plasma-discover/+bug/1964401/+subscriptions


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

[Bug 1964401] Re: Software Sources/software-properties-qt privilege escalation not accepting password

2022-03-09 Thread Brent Gervais
(post 20.04->22.04 devel daily upgrade) run-as-root window - not
accepting password w terminal errors

** Attachment added: "screenshot: run-as-root window - not accepting password w 
terminal errors"
   
https://bugs.launchpad.net/ubuntu/+source/plasma-discover/+bug/1964401/+attachment/5567520/+files/Screenshot_20220307_165610.png

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

Title:
  Software Sources/software-properties-qt privilege escalation not
  accepting password

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/plasma-discover/+bug/1964401/+subscriptions


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

[Bug 1964401] Re: Software Sources/software-properties-qt privilege escalation not accepting password

2022-03-09 Thread Brent Gervais
** Attachment added: "run-as-root window - not accepting password"
   
https://bugs.launchpad.net/ubuntu/+source/plasma-discover/+bug/1964401/+attachment/5567519/+files/Screenshot_20220307_163043.png

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

Title:
  Software Sources/software-properties-qt privilege escalation not
  accepting password

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/plasma-discover/+bug/1964401/+subscriptions


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

[Bug 1964401] Re: Software Sources/software-properties-qt privilege escalation not accepting password

2022-03-09 Thread Brent Gervais
** Attachment added: "terminal error output"
   
https://bugs.launchpad.net/ubuntu/+source/plasma-discover/+bug/1964401/+attachment/5567518/+files/discoverBug-ErrorOutput.txt

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

Title:
  Software Sources/software-properties-qt privilege escalation not
  accepting password

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/plasma-discover/+bug/1964401/+subscriptions


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

[Bug 1964401] [NEW] Software Sources/software-properties-qt privilege escalation not accepting password

2022-03-09 Thread Brent Gervais
Public bug reported:

1) lsb_release -rd
Description:Ubuntu Jammy Jellyfish (development branch)
Release:22.04

2) package version - apt-cache policy pkgname'

plasma-discover:
  Installed: 5.24.2.1-0ubuntu1

software-properties-qt:
  Installed: 0.99.19

3) expected to happen
* In Discover: Settings > Software Sources
* opens a privilege escalation dialogue
* enter user password
* software-properties-qt opens

4) happened instead
* In Discover: Settings > Software Sources
* opens a privilege escalation dialogue
* insert known-correct user password
* **does not accept known-correct user password**

# Additional Info
Note: described behaviour is for a post 20.04->22.04 devel daily upgrade found 
during a QA Testcase. Behaviour exists, but has slightly different symptoms in 
a virgin live 22.04 daily session (see below)

* launching from terminal works as expected
sudo software-properties-qt

## process & errors - post 20.04->22.04 devel daily upgrade
* running Discover from terminal
$ plasma-discover

* Settings > Software Sources 
gives error on terminal:
> org.kde.kdesu: Daemon not safe (not sgid), not using it.

* insert known-correct user password
gives error on terminal:
> kf.su: [ ./src/stubprocess.cpp : 225 ]  Unknown request: "stop"
> end

* close password window
gives error on terminal

> Usage: /usr/lib/x86_64-linux-gnu/libexec/kf5/kdesu [options] command
> Runs a program with elevated privileges.

> Options:
>   -h, --help Displays help on commandline options.
> [...]

## process & errors - live Kubuntu 22.04 daily

similar behaviour, hoever password-asking window never appears. Terminal
errors differ from above:

* Settings > Software Sources 
gives error on terminal:
> org.kde.kdesu: Daemon not safe (not sgid), not using it.
>
> Don't need password!!
>
>kf.su: [./src/stubprocess.cpp : 255 ]  Unknown request: "ok"

** Affects: plasma-discover (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: jammy

** Attachment added: "ubuntu-bug output"
   
https://bugs.launchpad.net/bugs/1964401/+attachment/5567505/+files/plasma-discover-bugReport

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

Title:
  Software Sources/software-properties-qt privilege escalation not
  accepting password

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/plasma-discover/+bug/1964401/+subscriptions


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

[Bug 1964036] Re: Firefox icon missing from panel following Kubuntu LTS upgrade 20.04->22.04

2022-03-07 Thread Brent Gervais
screenshot showing:

* Icon click produces error notification "Plasma Workspace -
preferred://browser"

** Attachment added: "Screenshot_20220307_154131.png"
   
https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1964036/+attachment/5566689/+files/Screenshot_20220307_154131.png

** Description changed:

- 
  1) lsb_release -rd
  
  Description:Ubuntu Jammy Jellyfish (development branch)
  Release:22.04
  
- 
- 2) apt-cache policy ubuntu-release-upgrader-core 
+ 2) apt-cache policy ubuntu-release-upgrader-core
  ubuntu-release-upgrader-core:
-   Installed: 1:22.04.6
+   Installed: 1:22.04.6
  
  3) expected
+ 
+ (upgrade from Kubuntu 20.04.3 -> 22.04. Reboot.)
  
  * Firefox icon on panel to be intact.
  * Clicked icon launches browser.
  * Icon tooltip/mouse hover to describe application.
  
  4) happened instead
  
  * Icon is missing/replaced with a generic icon
  * Icon click produces error notification "Plasma Workspace - 
preferred://browser"
  * Icon tooltip/mouse hover appears, though is blank.
+ 
+ Additional info:
+ * firefox is still installed, works as expected.

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

Title:
  Firefox icon missing from panel following Kubuntu LTS upgrade
  20.04->22.04

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


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

[Bug 1964036] Re: Firefox icon missing from panel following Kubuntu LTS upgrade 20.04->22.04

2022-03-07 Thread Brent Gervais
screenshot showing: 
* Icon is missing/replaced with a generic icon
* Icon tooltip/mouse hover appears, though is blank.

** Attachment added: "Screenshot_20220307_155955.png"
   
https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1964036/+attachment/5566687/+files/Screenshot_20220307_155955.png

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

Title:
  Firefox icon missing from panel following Kubuntu LTS upgrade
  20.04->22.04

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


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

[Bug 1964036] Re: Firefox icon missing from panel following Kubuntu LTS upgrade 20.04->22.04

2022-03-07 Thread Brent Gervais
screenshot showing:

* Icon click produces error notification "Plasma Workspace -
preferred://browser"

** Attachment added: "Screenshot_20220307_154131.png"
   
https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1964036/+attachment/5566688/+files/Screenshot_20220307_154131.png

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

Title:
  Firefox icon missing from panel following Kubuntu LTS upgrade
  20.04->22.04

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


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

[Bug 1964036] [NEW] Firefox icon missing from panel following Kubuntu LTS upgrade 20.04->22.04

2022-03-07 Thread Brent Gervais
Public bug reported:


1) lsb_release -rd

Description:Ubuntu Jammy Jellyfish (development branch)
Release:22.04


2) apt-cache policy ubuntu-release-upgrader-core 
ubuntu-release-upgrader-core:
  Installed: 1:22.04.6

3) expected

* Firefox icon on panel to be intact.
* Clicked icon launches browser.
* Icon tooltip/mouse hover to describe application.

4) happened instead

* Icon is missing/replaced with a generic icon
* Icon click produces error notification "Plasma Workspace - 
preferred://browser"
* Icon tooltip/mouse hover appears, though is blank.

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


** Tags: jammy

** Attachment added: 
"bugReport-Kubuntu-[ubuntu-release-upgrader]-firefox-icon-missing"
   
https://bugs.launchpad.net/bugs/1964036/+attachment/5566673/+files/bugReport-Kubuntu-%5Bubuntu-release-upgrader%5D-firefox-icon-missing

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

Title:
  Firefox icon missing from panel following Kubuntu LTS upgrade
  20.04->22.04

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


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

[Bug 1954817] [NEW] Missing build dependency

2021-12-14 Thread Brent George
Public bug reported:

Versions >=0.9.0 require xkbregistry as a build dependency. The package
"libxkbregistry-dev" provides this for Debian, and should be listed as a
build dependency so the builds pass.

** Affects: waybar (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/1954817

Title:
  Missing build dependency

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


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

[Bug 1906476] Re: PANIC at zfs_znode.c:335:zfs_znode_sa_init() // VERIFY(0 == sa_handle_get_from_db(zfsvfs->z_os, db, zp, SA_HDL_SHARED, >z_sa_hdl)) failed

2021-10-01 Thread Brent Spillner
>So to be clear this patch revert fixes the issue being caused new, but,
if the issue already >happened on your filesystem it will continue to
occur because the exception is reporting >corruption on disk. I don't
currently

I don't think that's quite correct--- like the OP I can boot an older
kernel, with a pre-regression ZFS driver (ZFS 2.02), with the same
filesystem(s) (and the same/newest userspace library and utility
versions) on the same hardware and it works quite happily, without any
error or warning messages.  I'm not at all convinced that the error
message truly indicates irreparable filesystem damage--- there may not
even be anything wrong at all with the on-disk data structures, only in
the driver's in-memory reconstruction or interpretation of them.

I hit this bug after allowing a 20.04 LTS installation to upgrade from a
5.11.0-7620-generic kernel to the 5.13.0-7614-generic in stable.  The
panics occurred on every boot attempt under 5.13.0, at the same fairly
early point in the boot process (first page of kernel messages) every
time.  Rebooting with 5.11.0 doesn't generate any errors and has been
running stably for over two weeks (as it did for months before the
failed attempt to upgrade to 5.13.0).  The 5.11.0 build reports ZFS
module version v2.0.2-1ubuntu5, while the 5.13.0 has 2.0.3-8ubuntu6.  My
zfs package family is all 0.8.3-1ubuntu12.12.

It's annoying to get a regression like this in an LTS kernel, but at
least reverting is easy and seems effective.

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

Title:
  PANIC at zfs_znode.c:335:zfs_znode_sa_init() // VERIFY(0 ==
  sa_handle_get_from_db(zfsvfs->z_os, db, zp, SA_HDL_SHARED,
  >z_sa_hdl)) failed

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


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

[Bug 1944092] Re: I downloaded latest version to my desktop and all my saved pictures are wonky and

2021-09-19 Thread brent matches
I downloaded latest version 16.04 and it has affected saved pictures on
my desktop

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

Title:
  I downloaded latest version to my  desktop and all my saved  pictures
  are wonky and

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


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

[Bug 1944092] [NEW] I downloaded latest version to my desktop and all my saved pictures are wonky and

2021-09-19 Thread brent matches
Public bug reported:

All my desktop pictures appeared flattened or stretched and I cant seem
to fit them all on the screen. Also dots appear continuously as though
something is loading in the middle of the screen.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: ubuntu-release-upgrader-core 1:16.04.32
ProcVersionSignature: Ubuntu 4.4.0-210.242-generic 4.4.262
Uname: Linux 4.4.0-210-generic i686
ApportVersion: 2.20.1-0ubuntu2.30
Architecture: i386
CrashDB: ubuntu
CurrentDesktop: Unity
Date: Mon Sep 20 12:56:40 2021
InstallationDate: Installed on 2011-06-08 (3756 days ago)
InstallationMedia: Ubuntu 11.04 "Natty Narwhal" - Release i386 (20110427.1)
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=en_NZ:en
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_NZ.UTF-8
 SHELL=/bin/bash
SourcePackage: ubuntu-release-upgrader
Symptom: ubuntu-release-upgrader
UpgradeStatus: Upgraded to xenial on 2021-09-20 (0 days ago)
VarLogDistupgradeTermlog:

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


** Tags: apport-bug dist-upgrade i386 xenial

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

Title:
  I downloaded latest version to my  desktop and all my saved  pictures
  are wonky and

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


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

[Bug 1938494] Re: Control Center crashes with SIGTRAP (from X11 MIT-SHM BadAlloc) on Applications view

2021-09-15 Thread Brent Spillner
I'm not sure what you mean by "which software is creating the issue"---
the crashing process is gnome-control-center; everything else on the
system is stable.

I agree that it's not completely surprising that a request for a
242x43972 pixbuf might fail; it is surprising to me that the Control
Center would request a 242x43972 pixbuf in the first place (screen
hardware resolution and virtual desktop are both 1920x1080), and it's
disappointing that the application doesn't deal more gracefully with a
failed pixbuf allocation for whatever reason.

i.e. I suspect that there are two separate bugs here, the failure to
check the return value from gdk_pixbuf_new() (or related helper
function), and the computation of the required pixbuf size in the first
place.  The request is probably for the application icon ribbon, but a
height of 43972 would be enough to stack 458 96-pixel icons--- surely
not all of those need to be in the display surface at one time.

I will open an upstream ticket; started here because I used the Ubuntu
crash reporter and it looked like it might be a library incompatibility
issue.

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

Title:
  Control Center crashes with SIGTRAP (from X11 MIT-SHM BadAlloc) on
  Applications view

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


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

[Bug 1938494] Re: Control Center crashes with SIGTRAP (from X11 MIT-SHM BadAlloc) on Applications view

2021-09-15 Thread Brent Spillner
s/pixbuf/window/, looking at the backtrace--- been so long I forgot the
details.

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

Title:
  Control Center crashes with SIGTRAP (from X11 MIT-SHM BadAlloc) on
  Applications view

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


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

[Bug 1938494] [NEW] Control Center crashes with SIGTRAP (from X11 MIT-SHM BadAlloc) on Applications view

2021-07-29 Thread Brent Spillner
Public bug reported:

1) Running AMD64 edition of Ubuntu 20.04.2 LTS; it is up-to-date with no
pending updates from the main repo.

2) Specifically, have the amd64 build of gnome-control-center
1:3.36.5-0ubuntu2 installed.  libgdk-pixbuf2.0-0 is version
2.40.0+dfsg-3ubuntu0.2, libcairo2 is 1.16.0-4ubuntu1, libgtk2.0-0 is
2.24.32-4ubuntu4 and libgtk-3-0 is 3.24.20-0ubuntu1.

3) What I expected to happen: possible to navigate between the
"Applications" and other tabs of the Control Center without a crash.

4) What happens (100% reproducibly) instead: if the Control Center
starts in any view except Applications, clicking on "Applications" in
the selection pane causes an immediate application crash (hard exit)
with the text below written to stderr.  When the Control Center is
restarted, the Applications pane is now loaded, and can be navigated as
expected until I click the "<" in the top left of the window (to go back
and select another category), whereupon it immediately crashes with the
same error message quoted below.

Error message written to stderr in either case above:

Gdk-ERROR **: 22:18:27.542: The program 'gnome-control-center' received an X 
Window System error.
This probably reflects a bug in the program.
The error was 'BadAlloc (insufficient resources for operation)'.
  (Details: serial 47249 error_code 11 request_code 130 (MIT-SHM) minor_code 5)

From the backtrace below, it looks like this is possibly related to
loading the pixmap for one of my application icons; I happen to have
several applications with broken/missing icons (all Steam games), but
don't have any problems viewing or starting those games from the
Launcher, nor navigating to their settings when gnome-control-center
launches in the Applications view (e.g. after the crash described above,
or by manual selection on the command line).  In any event, a Control
Center crash for a missing or corrupted pixmap is not robust behavior.

Of note, line #14 in the backtrace (gdk_window_create_similar_surface) shows a 
"height" parameter of 43972, which may be unreasonably large in comparison to 
the width of 242 and possibly contributing to the BadAlloc.  This machine has 
16GB of RAM and no issues running much more demanding applications than the 
Control Center.
 
--- GDB stack trace follows ---

Thread 1 "gnome-control-c" hit Breakpoint 1, gdk_x_error 
(xdisplay=0x55ac94f0, 
error=0x7fffc440) at ../../../../../gdk/x11/gdkmain-x11.c:271
271 ../../../../../gdk/x11/gdkmain-x11.c: No such file or directory.
(gdb) bt
#0  gdk_x_error (xdisplay=0x55ac94f0, error=0x7fffc440)
at ../../../../../gdk/x11/gdkmain-x11.c:271
#1  0x76f4728b in _XError () at /lib/x86_64-linux-gnu/libX11.so.6
#2  0x76f43ff7 in  () at /lib/x86_64-linux-gnu/libX11.so.6
#3  0x76f44095 in  () at /lib/x86_64-linux-gnu/libX11.so.6
#4  0x76f4501d in _XReply () at /lib/x86_64-linux-gnu/libX11.so.6
#5  0x76f407f1 in XSync () at /lib/x86_64-linux-gnu/libX11.so.6
#6  0x76f4088f in  () at /lib/x86_64-linux-gnu/libX11.so.6
#7  0x75c06116 in XShmCreatePixmap () at 
/lib/x86_64-linux-gnu/libXext.so.6
#8  0x7725fddd in _cairo_xlib_shm_surface_create
(format=PIXMAN_a8r8g8b8, width=width@entry=242, height=height@entry=43972, 
will_sync=will_sync@entry=0, create_pixmap=4096, other=, 
other=)
at ../../../../src/cairo-xlib-surface-shm.c:843
#9  0x77260a08 in _cairo_xlib_surface_create_shm
(other=other@entry=0x564558b0, format=, 
width=width@entry=242, height=height@entry=43972) at 
../../../../src/cairo-xlib-surface-shm.c:1156
#10 0x77260aa1 in _cairo_xlib_surface_create_similar_shm
(other=0x564558b0, format=CAIRO_FORMAT_ARGB32, width=242, height=43972)
at ../../../../src/cairo-xlib-surface-shm.c:1181
#11 0x77233f6b in INT_cairo_surface_create_similar_image
(height=43972, width=242, format=CAIRO_FORMAT_ARGB32, other=)
at ../../../../src/cairo-surface.c:595
#12 INT_cairo_surface_create_similar_image
(other=, format=CAIRO_FORMAT_ARGB32, width=242, height=43972)
at ../../../../src/cairo-surface.c:576
#13 0x77234157 in cairo_surface_create_similar
(other=other@entry=0x564558b0, 
content=content@entry=CAIRO_CONTENT_COLOR_ALPHA, width=width@entry=242, 
height=height@entry=43972) at ../../../../src/cairo-surface.c:518
#14 0x773bfb99 in gdk_window_create_similar_surface
(window=0x56e7c290, content=content@entry=CAIRO_CONTENT_COLOR_ALPHA, 
width=width@entry=242, height=height@entry=43972) at 
../../../../gdk/gdkwindow.c:10187
#15 0x77760cbc in gtk_stack_render
(gadget=, cr=0x574f86c0, x=, y=, width=, height=, data=0x0) at 
../../../../gtk/gtkstack.c:2159
#16 0x775f1601 in gtk_css_custom_gadget_draw
(gadget=, cr=, x=, 
y=, width=, height=) at 
../../../../gtk/gtkcsscustomgadget.c:159
#17 0x775f649c in gtk_css_gadget_draw (gadget=0x5663a470, 
cr=0x574f86c0)
at 

[Bug 1836176] Re: Touchscreen stops working after S3 suspend on Lenovo X1 Yoga 3th

2021-04-22 Thread Ricky Brent
There's a better workaround (method 3) now suggested on the arch wiki page:
https://wiki.archlinux.org/index.php/Lenovo_ThinkPad_X1_Yoga_(Gen_3)

It works with Ubuntu as well; you can test it when the touch screen
isn't responding with:

sudo apt install acpi-call-dkms; sudo modprobe acpi_call; echo
'\\_SB.PCI0.LPCB.EC._Q2A' | sudo tee /proc/acpi/call

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

Title:
  Touchscreen stops working after S3 suspend on Lenovo X1 Yoga 3th

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

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

[Bug 1907659] [NEW] installer crashes upon making partition

2020-12-10 Thread Brent
Public bug reported:

Tried to use the experimental ZFS partition. Installer later reports its
trying to make an ext4 partition, and seems to fail at that stage.

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: ubiquity 20.04.15.2 [modified: usr/share/ubiquity/zsys-setup]
ProcVersionSignature: Ubuntu 5.4.0-42.46-generic 5.4.44
Uname: Linux 5.4.0-42-generic x86_64
NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
ApportVersion: 2.20.11-0ubuntu27.4
Architecture: amd64
CasperMD5CheckResult: pass
CasperVersion: 1.445.1
Date: Thu Dec 10 13:15:24 2020
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed 
maybe-ubiquity quiet splash ---
LiveMediaBuild: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

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


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

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

Title:
  installer crashes upon making partition

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

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

[Bug 1907660] [NEW] installer crashes upon making partition

2020-12-10 Thread Brent
Public bug reported:

Tried to use the experimental ZFS partition. Installer later reports its
trying to make an ext4 partition, and seems to fail at that stage.

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: ubiquity 20.04.15.2 [modified: usr/share/ubiquity/zsys-setup]
ProcVersionSignature: Ubuntu 5.4.0-42.46-generic 5.4.44
Uname: Linux 5.4.0-42-generic x86_64
NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
ApportVersion: 2.20.11-0ubuntu27.4
Architecture: amd64
CasperMD5CheckResult: pass
CasperVersion: 1.445.1
Date: Thu Dec 10 13:15:24 2020
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed 
maybe-ubiquity quiet splash ---
LiveMediaBuild: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

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


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

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

Title:
  installer crashes upon making partition

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

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

[Bug 1904658] [NEW] intel-ucode sig=0x406e3 from release 3.20201110.0ubuntu0.20.04.2 hangs system in early boot

2020-11-17 Thread Brent Gervais
Public bug reported:

My issue: system hang with black screen, and can try older kernels which
present status "Loading initial ramdisk..." indefinitely.

The symptom, issue, and the workaround are seemingly identical to those
reported in bug#1882890, however the issue here presents with a
different microcode update, namely 3.20201110.0ubuntu0.20.04.2.

# reference
* https://bugs.launchpad.net/ubuntu/+source/intel-microcode/+bug/1882890
* 
https://askubuntu.com/questions/1248769/intel-microcode-3-20200609-0ubuntu0-20-04-0-update-crashes-computer-unable-to-b
* microcode releases
* https://launchpad.net/ubuntu/focal/+source/intel-microcode

# issue/error
* boot normally gives black screen during early boot - stuck
* boot from previous kernels also give stuck screen, but also helpfully prints 
"Loading initial ramdisk..." ...indefinitely.
* boot from recovery works, can occasionally boot through to operational system 
from here
* boot from recovery and running rescue commands complained of near-full /boot 
(96%) which was subsequently solved (removed old kernels) and initramfs rebuilt 
(update-initramfs -u -k all) - I thought this was the issue initially but 
problem remained..
* 

# temporary boot workaround via kernel boot option
* can only boot successfully using dis_ucode_ldr kernel boot option:
* Nov 17 20:16:52 yoga710 kernel: Command line: 
BOOT_IMAGE=/vmlinuz-5.4.0-54-generic root=/dev/mapper/kubuntu--vg-root ro quiet 
splash dis_ucode_ldr

## kernel
* uname -r 
5.4.0-54-generic

* issue appeared on 2020-11-15 on kernel 5.4.0-53
* kernel updated today/2020-11-17 to 5.4.0-54 from 5.4.0-53 via dis_ucode_ldr 
booted system

## microcode
microcode: sig=0x406e3 (see below)

* sudo apt show intel-microcode 
Package: intel-microcode
Version: 3.20201110.0ubuntu0.20.04.2
[...]
APT-Manual-Installed: yes
APT-Sources: http://ca.archive.ubuntu.com/ubuntu focal-updates/main amd64 
Packages

* dmesg | grep microcode (NOTE: this *after* a boot w boot option dis_ucode_ldr)
[0.038777] [Firmware Bug]: TSC_DEADLINE disabled due to Errata; please 
update microcode to version: 0xb2 (or later)
[0.125707] SRBDS: Vulnerable: No microcode
[0.125708] MDS: Vulnerable: Clear CPU buffers attempted, no microcode

* dmesg | grep microcode (NOTE: this after a boot w microcode downgraded to 
3.20191115.1ubuntu3)
[0.00] microcode: microcode updated early to revision 0xd6, date = 
2019-10-03
[0.131196] SRBDS: Vulnerable: No microcode
[0.925593] microcode: sig=0x406e3, pf=0x80, revision=0xd6
[0.925717] microcode: Microcode Update Driver: v2.2.


* microcode update date via /var/log/apt/history.log:
Start-Date: 2020-11-12  13:15:29
Commandline: packagekit role='update-packages'
Requested-By:  (1000)
Install: linux-image-5.4.0-53-generic:amd64 (5.4.0-53.59), 
linux-headers-5.4.0-53-generic:amd64 (5.4.0-53.59), 
linux-modules-extra-5.4.0-53-generic:amd64 (5.4.0-53.59), 
linux-headers-5.4.0-53:amd64 (5.4.0-53.59), linux-modules-5.4.0-53>
Upgrade: libefivar1:amd64 (37-2ubuntu2, 37-2ubuntu2.1), intel-microcode:amd64 
(3.20200609.0ubuntu0.20.04.2, 3.20201110.0ubuntu0.20.04.2), 
linux-headers-generic:amd64 (5.4.0.52.55, 5.4.0.53.56), linux-libc-dev:amd64 
(5.4.0-52.57, 5.4.0->
End-Date: 2020-11-12  13:23:05

## processor
* lscpu | grep Model
Model name:  Intel(R) Pentium(R) CPU 4405Y @ 1.50GHz

* iucode-tool -S
iucode-tool: system has processor(s) with signature 0x000406e3

## ubuntu
* lsb_release -rd
Description:Ubuntu 20.04.1 LTS
Release:20.04

## system
* dmidecode
System Information
Manufacturer: LENOVO
Product Name: 80TX
Version: Lenovo YOGA 710-11ISK

BIOS Information
Vendor: LENOVO
Version: 0UCN22WW
Release Date: 09/27/2016
[...]
BIOS Revision: 1.22
Firmware Revision: 1.22


# to try
* check BIOS update status - new BIOS could fix?
* current: 2016-09-27
* available: 2018-03-26 0UCN25WW01
* 3. Modified: 1) Enhancement to address CVE-2017-5715.
* 
https://pcsupport.lenovo.com/us/en/products/laptops-and-netbooks/yoga-series/yoga-710-11isk/
* 
https://medium.com/@BladeCoder/flash-your-lenovo-ideapad-laptop-bios-from-linux-using-uefi-capsule-updates-a82e455ea29c

# solution attempts
* /boot - made space after a recovery utility complained of near-full (96%) 
/boot. uninstalled old kernels.

* downgrade and hold microcode
* sudo apt-get install intel-microcode=3.20191115.1ubuntu3
* sudo apt-mark hold intel-microcode
* **ISSUE FIXED WITH THIS WORKAROUND**

* reinstate current microcode to confirm
* sudo apt install intel-microcode=3.20201110.0ubuntu0.20.04.2
* "Unpacking intel-microcode (3.20201110.0ubuntu0.20.04.2) over 
(3.20191115.1ubuntu3)"
* YES - confirming the problem reappears.

** Affects: intel-microcode (Ubuntu)
 Importance: Undecided
 Status: 

[Bug 1898537] [NEW] package virtualbox-ext-pack 6.1.10-1~ubuntu1.20.04.1 failed to install/upgrade: new virtualbox-ext-pack package pre-installation script subprocess returned error exit status 1

2020-10-05 Thread brent
Public bug reported:

Installing oracle virtualbox package using command 'sudo apt install
virtualbox virtualbox-ext-pack' resulted in a license agreement popup in
terminal.  THAT license agreement stated user must accept or process
would be interrupted, but there was no possible means of accepting.
Could not click 'ok', hitting keyboard return, y, yes, Y, and OK
similarly had no effect.  It just froze.  The only way out of the
process was to use the exit button on the terminal window.  subsequent
attempts to install virtualbox via terminal met a similar end (after
using dpkg to uninstall the flawed virtualbox package).  Now, unable to
install any package from the ubunto store as well.  Going to try a
reboot after submitting the report.

ProblemType: Package
DistroRelease: Ubuntu 20.04
Package: virtualbox-ext-pack 6.1.10-1~ubuntu1.20.04.1
ProcVersionSignature: Ubuntu 5.4.0-48.52-generic 5.4.60
Uname: Linux 5.4.0-48-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.8
Architecture: amd64
CasperMD5CheckResult: skip
Date: Mon Oct  5 07:02:02 2020
Dependencies:
 
DuplicateSignature:
 package:virtualbox-ext-pack:6.1.10-1~ubuntu1.20.04.1
 Preparing to unpack .../virtualbox-ext-pack_6.1.10-1~ubuntu1.20.04.1_all.deb 
...
 User did not accept the license.
 dpkg: error processing archive 
/var/cache/apt/archives/virtualbox-ext-pack_6.1.10-1~ubuntu1.20.04.1_all.deb 
(--unpack):
  new virtualbox-ext-pack package pre-installation script subprocess returned 
error exit status 1
ErrorMessage: new virtualbox-ext-pack package pre-installation script 
subprocess returned error exit status 1
InstallationDate: Installed on 2020-09-09 (25 days ago)
InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
PackageArchitecture: all
Python3Details: /usr/bin/python3.8, Python 3.8.2, python3-minimal, 
3.8.2-0ubuntu2
PythonDetails: N/A
RelatedPackageVersions:
 dpkg 1.19.7ubuntu3
 apt  2.0.2ubuntu0.1
SourcePackage: virtualbox-ext-pack
Title: package virtualbox-ext-pack 6.1.10-1~ubuntu1.20.04.1 failed to 
install/upgrade: new virtualbox-ext-pack package pre-installation script 
subprocess returned error exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: virtualbox-ext-pack (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/1898537

Title:
  package virtualbox-ext-pack 6.1.10-1~ubuntu1.20.04.1 failed to
  install/upgrade: new virtualbox-ext-pack package pre-installation
  script subprocess returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/virtualbox-ext-pack/+bug/1898537/+subscriptions

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

[Bug 1890181] Re: Touchpad doesn't work

2020-08-31 Thread Brent van Lieshout
It did not solve the issue, even tried v5.8.5-050805-generic but that
version didn't aswell.

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

Title:
  Touchpad doesn't work

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

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

[Bug 1891822] Re: Libreoffice-calc crashes on menu selection

2020-08-18 Thread Brent Rose
Not sure how much of the initial part of the log you want to see but these are 
the last few lines of the normal startup of the computer, then opening 
libreoffice and selecting Tools>customize and having it crash. If you want any 
of the log entries before this then let me know:
...
Aug 18 17:50:04  systemd-timesyncd[572]: Initial synchronization to time 
server 91.189.91.157:123 (ntp.ubuntu.com).
Aug 18 17:50:06  systemd[1]: systemd-hostnamed.service: Succeeded.
Aug 18 17:50:10  systemd[1]: systemd-timedated.service: Succeeded.
Aug 18 17:50:14  systemd[1]: blueman-mechanism.service: Succeeded.
Aug 18 17:52:13  systemd[1]: Starting Daily apt upgrade and clean 
activities...
Aug 18 17:52:16  systemd[1]: apt-daily-upgrade.service: Succeeded.
Aug 18 17:52:16  systemd[1]: Finished Daily apt upgrade and clean 
activities.
Aug 18 17:54:59  systemd[1518]: Started VTE child process 2287 launched by 
mate-terminal process 2280.
Aug 18 17:55:14  audit[2324]: AVC apparmor="ALLOWED" operation="open" 
profile="libreoffice-soffice" name="/run/user/1000/ICEauthority" pid=2324 
comm="soffice.bin" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
Aug 18 17:55:14  kernel: kauditd_printk_skb: 29 callbacks suppressed
Aug 18 17:55:14  kernel: audit: type=1400 audit(1597787714.236:41): 
apparmor="ALLOWED" operation="open" profile="libreoffice-soffice" 
name="/run/user/1000/ICEauthority" pid=2324 comm="soffice.bin" 
requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
Aug 18 17:55:14  kernel: audit: type=1400 audit(1597787714.236:42): 
apparmor="ALLOWED" operation="open" profile="libreoffice-soffice" 
name="/run/user/1000/ICEauthority" pid=2324 comm="soffice.bin" 
requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
Aug 18 17:55:14  kernel: audit: type=1400 audit(1597787714.236:43): 
apparmor="ALLOWED" operation="open" profile="libreoffice-soffice" 
name="/run/user/1000/ICEauthority" pid=2324 comm="soffice.bin" 
requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
Aug 18 17:55:14  kernel: audit: type=1400 audit(1597787714.236:44): 
apparmor="ALLOWED" operation="open" profile="libreoffice-soffice" 
name="/run/user/1000/ICEauthority" pid=2324 comm="soffice.bin" 
requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
Aug 18 17:55:14  audit[2324]: AVC apparmor="ALLOWED" operation="open" 
profile="libreoffice-soffice" name="/run/user/1000/ICEauthority" pid=2324 
comm="soffice.bin" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
Aug 18 17:55:14  audit[2324]: AVC apparmor="ALLOWED" operation="open" 
profile="libreoffice-soffice" name="/run/user/1000/ICEauthority" pid=2324 
comm="soffice.bin" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
Aug 18 17:55:14  audit[2324]: AVC apparmor="ALLOWED" operation="open" 
profile="libreoffice-soffice" name="/run/user/1000/ICEauthority" pid=2324 
comm="soffice.bin" requested_mask="r" denied_mask="r" fsuid=1000 ouid=1000
Aug 18 17:55:44  systemd[1518]: Started VTE child process 2347 launched by 
mate-terminal process 2280.

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

Title:
  Libreoffice-calc crashes on menu selection

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

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

[Bug 1891822] Re: Libreoffice-calc crashes on menu selection

2020-08-17 Thread Brent Rose
Nothing originally appeared in /var/crash and the file whoopsie-id was
blank. After commenting line 23 ("'problem_types': ['Bug', 'Package'],")
in '/etc/apport/crashdb.conf' and rebooting and reproducing the crash,
/var/crash was still empty but there was an id in the whoopsie file.
Using it with the URL you gave led to a page that said "No errors have
been reported from this system".

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

Title:
  Libreoffice-calc crashes on menu selection

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

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

[Bug 1891824] Re: Libreoffice calc crashes on menu selection

2020-08-16 Thread Brent Rose
*** This bug is a duplicate of bug 1891822 ***
https://bugs.launchpad.net/bugs/1891822

** This bug has been marked a duplicate of bug 1891822
   Libreoffice-calc crashes on menu selection

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

Title:
  Libreoffice calc crashes on menu selection

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

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

[Bug 1891824] [NEW] Libreoffice calc crashes on menu selection

2020-08-16 Thread Brent Rose
*** This bug is a duplicate of bug 1891822 ***
https://bugs.launchpad.net/bugs/1891822

Public bug reported:

Libreoffice calc Version: 6.4.4.2 Build ID: 1:6.4.4-0ubuntu0.20.04.1
crashes on selecting Tools>Customize from the menubar. This is on a
fresh install of Mate and happens on multiple computers, desktop and
laptop.

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: libreoffice-core 1:6.4.4-0ubuntu0.20.04.1
ProcVersionSignature: Ubuntu 5.4.0-42.46-generic 5.4.44
Uname: Linux 5.4.0-42-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.6
Architecture: amd64
CasperMD5CheckResult: skip
CurrentDesktop: MATE
Date: Sun Aug 16 18:04:17 2020
ExecutablePath: /usr/lib/libreoffice/program/soffice.bin
InstallationDate: Installed on 2020-08-14 (2 days ago)
InstallationMedia: Ubuntu-MATE 20.04.1 LTS "Focal Fossa" - Release amd64 
(20200731)
SourcePackage: libreoffice
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: libreoffice (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/1891824

Title:
  Libreoffice calc crashes on menu selection

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

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

[Bug 1891823] [NEW] Icon toggle doesn't work for Advanced Mate Menu

2020-08-16 Thread Brent Rose
Public bug reported:

Right clicking on the advanced mate menu icon and selecting
preferences--> Main Button tab-->"Show button icon" toggle box doesn't
work. The icon remains visible regardless of the setting.

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: mate-menu 20.04.3-0ubuntu1
ProcVersionSignature: Ubuntu 5.4.0-42.46-generic 5.4.44
Uname: Linux 5.4.0-42-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.6
Architecture: amd64
CasperMD5CheckResult: skip
Date: Sun Aug 16 17:53:00 2020
ExecutablePath: /usr/bin/mate-menu
InstallationDate: Installed on 2020-08-14 (2 days ago)
InstallationMedia: Ubuntu-MATE 20.04.1 LTS "Focal Fossa" - Release amd64 
(20200731)
InterpreterPath: /usr/bin/python3.8
PackageArchitecture: all
ProcEnviron:
 
Python3Details: /usr/bin/python3.8, Python 3.8.2, python3-minimal, 
3.8.2-0ubuntu2
PythonDetails: N/A
SourcePackage: mate-menu
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: mate-menu (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/1891823

Title:
  Icon toggle doesn't work for Advanced Mate Menu

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

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

[Bug 1891822] [NEW] Libreoffice-calc crashes on menu selection

2020-08-16 Thread Brent Rose
Public bug reported:

>From the menu bar in Libreoffice-calc 6.4.4.2 (Build ID:
1:6.4.4-0ubuntu0.20.04.1), selecting Tools>Customize will crash the
application. Issue happens on various computers, desktop and laptop and
this is with a fresh intsall of Mate 20.04.1

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: libreoffice-core 1:6.4.4-0ubuntu0.20.04.1
ProcVersionSignature: Ubuntu 5.4.0-42.46-generic 5.4.44
Uname: Linux 5.4.0-42-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.6
Architecture: amd64
CasperMD5CheckResult: skip
CurrentDesktop: MATE
Date: Sun Aug 16 17:28:12 2020
ExecutablePath: /usr/lib/libreoffice/program/soffice.bin
InstallationDate: Installed on 2020-08-14 (2 days ago)
InstallationMedia: Ubuntu-MATE 20.04.1 LTS "Focal Fossa" - Release amd64 
(20200731)
SourcePackage: libreoffice
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: libreoffice (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/1891822

Title:
  Libreoffice-calc crashes on menu selection

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

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

[Bug 1890181] [NEW] Touchpad doesn't work

2020-08-03 Thread Brent van Lieshout
Public bug reported:

Touchpad doesn't work at all (No response from the Touchpad), I have an
acer aspire E5-523-91TL. I did a fresh install (first time installing
Ubuntu on this pc). Immediately after i moved from Windows to Ubuntu,
the touchpad stopped working. i followed the steps as described in
https://wiki.ubuntu.com/DebuggingTouchpadDetection.

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: linux-image-5.4.0-42-generic 5.4.0-42.46
ProcVersionSignature: Ubuntu 5.4.0-42.46-generic 5.4.44
Uname: Linux 5.4.0-42-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.4
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC1:  brentdevent   1648 F pulseaudio
 /dev/snd/controlC0:  brentdevent   1648 F pulseaudio
CasperMD5CheckResult: skip
CurrentDesktop: ubuntu:GNOME
Date: Mon Aug  3 19:46:11 2020
InstallationDate: Installed on 2020-08-03 (0 days ago)
InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
MachineType: Acer Aspire E5-523
ProcFB: 0 amdgpudrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-42-generic 
root=UUID=31ca8f5a-d3c0-4886-bae4-5c1d6d4f0f36 ro quiet splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-5.4.0-42-generic N/A
 linux-backports-modules-5.4.0-42-generic  N/A
 linux-firmware1.187.2
SourcePackage: linux
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 06/28/2017
dmi.bios.vendor: Insyde Corp.
dmi.bios.version: V1.18
dmi.board.asset.tag: Type2 - Board Asset Tag
dmi.board.name: Wasp_SR
dmi.board.vendor: Acer
dmi.board.version: V1.18
dmi.chassis.type: 10
dmi.chassis.vendor: Chassis Manufacturer
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnInsydeCorp.:bvrV1.18:bd06/28/2017:svnAcer:pnAspireE5-523:pvrV1.18:rvnAcer:rnWasp_SR:rvrV1.18:cvnChassisManufacturer:ct10:cvrChassisVersion:
dmi.product.family: SR
dmi.product.name: Aspire E5-523
dmi.product.sku: Aspire E5-523_1099_1.18
dmi.product.version: V1.18
dmi.sys.vendor: Acer

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


** Tags: amd64 apport-bug focal

** Attachment added: ""cat /proc/bus/input/devices > ~/devices""
   https://bugs.launchpad.net/bugs/1890181/+attachment/5398379/+files/devices

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

Title:
  Touchpad doesn't work

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

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

[Bug 1881631] Re: arm64 Ubuntu kernel builds missing CONFIG_NLS_ASCII

2020-06-05 Thread Brent DeGraaf
So is it now changed to 'y'?  Last night I confirmed that the module is
missing in initrd.img and that is what was causing the mount error, so
this is great news.

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

Title:
  arm64 Ubuntu kernel builds missing CONFIG_NLS_ASCII

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

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

[Bug 1881631] Re: arm64 Ubuntu kernel builds missing CONFIG_NLS_ASCII

2020-06-02 Thread Brent DeGraaf
@fginther

Just to make sure that it was not my comment that misled you, I am not
aware of any currently fixed version.

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

Title:
  arm64 Ubuntu kernel builds missing CONFIG_NLS_ASCII

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

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

[Bug 1881631] Re: arm64 Ubuntu kernel builds missing CONFIG_NLS_ASCII

2020-06-02 Thread Brent DeGraaf
** Attachment removed: "image.png"
   
https://bugs.launchpad.net/ubuntu/+source/linux-raspi2/+bug/1881631/+attachment/5379838/+files/image.png

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

Title:
  arm64 Ubuntu kernel builds missing CONFIG_NLS_ASCII

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

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

Re: [Bug 1881631] Re: arm64 Ubuntu kernel builds missing CONFIG_NLS_ASCII

2020-06-02 Thread Brent DeGraaf
Perhaps looking backward from this Raspberry pi kernel will help locate the
issue, which was definitely present in the build below:

5.3.0-1026-raspi2 #28~18.04.1-Ubuntu SMP Thu May 21 14:48:58 UTC 2020
aarch64 aarch64 aarch64 GNU/Linux

The final kernel that was getting built on arm64 did not have the flag set
on that tag.  The same flag is notably absent in the arm64 defconfig, which
appears to be what was used judging from the buildlog output I was able to
see searching on that tag.  If this was very recently fixed, we haven't
received a snap refresh as of yet.


--


Brent DeGraaf

Principal Engineer

734.395.0852

brent.degr...@k4connect.com


[image: image.png]


www.K4Connect.com <http://www.k4connect.com/> | @K4Connect
<https://twitter.com/K4Connect> | Facebook
<https://www.facebook.com/k4connect>| LinkedIn
<https://www.linkedin.com/company/5187480>

5511 Capital Center Dr. Suite 350

Raleigh, NC 27606


On Tue, Jun 2, 2020 at 11:45 AM Loïc Minier <1881...@bugs.launchpad.net>
wrote:

> ubuntu-focal.git, focal/raspi2 branch:
> debian.raspi2/config/config.common.ubuntu:CONFIG_NLS_ASCII=y
>
> ubuntu-bionic.git, bionic/raspi2 branch:
> debian.raspi2/config/config.common.ubuntu:CONFIG_NLS_ASCII=y
>
> So not quite sure where this is coming from
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1881631
>
> Title:
>   arm64 Ubuntu kernel builds missing CONFIG_NLS_ASCII
>
> Status in linux-raspi2 package in Ubuntu:
>   Confirmed
>
> Bug description:
>   Remounting log mounts in Ubuntu core are failing on arm64 builds due to
> missing CONFIG_NLS_ASCII in the arm64 kernel build options.
>   This option is enabled on the other kernel builds but somehow was
> overlooked on arm64 appears to affect our ability to access logs via
> journalctl with data from prior to restart because certain mounts are
> failing.
>   Other Raspberry Pi kernel builds, such as the armhf build, have the
> option enabled and so do not encounter the mount error.
>   The kernel option that needs to be turned on to resolve this is
> CONFIG_NLS_ASCII. It needs to be set to either 'm' or 'y'. Most of the
> other chips have it set to 'y', keeping it built-in.
>
> To manage notifications about this bug go to:
>
> https://bugs.launchpad.net/ubuntu/+source/linux-raspi2/+bug/1881631/+subscriptions
>


** Attachment added: "image.png"
   https://bugs.launchpad.net/bugs/1881631/+attachment/5379838/+files/image.png

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

Title:
  arm64 Ubuntu kernel builds missing CONFIG_NLS_ASCII

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

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

[Bug 1762033] Re: X BadWindow error when attemtping to create a window with unsupported OpenGL attributes

2020-05-15 Thread Brent Gardner
A similar bug is still present in 2.0.10, but fixed in 2.0.12:
https://hg.libsdl.org/SDL/rev/6e17e1a6cf2e

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

Title:
  X BadWindow error when attemtping to create a window with unsupported
  OpenGL attributes

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

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

[Bug 1836176] Re: Touchscreen stops working after S3 suspend on Lenovo X1 Yoga 3th

2020-04-19 Thread Ricky Brent
usbcore.quirks=056a:5146:m also failed for me (with 19.10 and focal); I
read on the Arch wiki that disabling Thunderbolt in the bios (under
Security -> IO ports) might work and tried it, and it worked!

I imagine this breaks Thunderbolt, but have no way to test.

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

Title:
  Touchscreen stops working after S3 suspend on Lenovo X1 Yoga 3th

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

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

[Bug 1798572] Re: package lxd 3.0.1-0ubuntu1~18.04.1 failed to install/upgrade: new lxd package pre-installation script subprocess returned error exit status 1

2020-04-10 Thread Ricky Brent
Speaking of, I ran into this bug moving from 18.04 to 20.04.

It left apt in a broken state, but I was able to uninstall the lxd and
lxd-client packages and complete the upgrade.

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

Title:
  package lxd 3.0.1-0ubuntu1~18.04.1 failed to install/upgrade: new lxd
  package pre-installation script subprocess returned error exit status
  1

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

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

[Bug 1867701] [NEW] Installer crashes on partition formatting during 1st install step

2020-03-16 Thread Brent DeGraaf
Public bug reported:

Attempting to recover from "Firmware bug" report by reinstall of 18.04
(system suddenly won't boot into Ubuntu).  Installer is being difficult.

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: ubiquity 18.04.14.14
ProcVersionSignature: Ubuntu 5.3.0-28.30~18.04.1-generic 5.3.13
Uname: Linux 5.3.0-28-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.9
Architecture: amd64
CasperVersion: 1.394.3
Date: Tue Mar 17 01:07:23 2020
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed 
boot=casper quiet splash ---
LiveMediaBuild: Ubuntu 18.04.4 LTS "Bionic Beaver" - Release amd64 (20200203.1)
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.14 ubuntu

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

Title:
  Installer crashes on partition formatting during 1st install step

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

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

[Bug 1843262] Re: tracker-miner-fs crashed with SIGABRT in raise()

2019-11-09 Thread Brent Pinkston
I am also having this error, and the output is identical to the original
poster, and also happens at each restart.

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

Title:
  tracker-miner-fs crashed with SIGABRT in raise()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tracker-miners/+bug/1843262/+subscriptions

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

[Bug 1200632] Re: X axis is shifted to the right when you zoom in

2019-09-23 Thread Brent Roman
Lance,

This bug seems to occur when the X-axis (first column) contains large
values.

These data do not display at all:

time,pitch (degree),roll (degree),depth
1559245764.00,-3.9353654384613,6.67214441299438,0.243953543210028
1559245766.00,-0.330003321170807,4.06886768341064,0.353055504063683
1559245768.00,-1.90330624580383,6.67894172668457,0.371797847748353
1559245770.00,-7.83213710784912,3.62915658950806,0.253701153105323
1559245772.00,-3.61825370788574,-0.0809656530618668,0.255412587849288
1559245774.00,0.637735843658447,4.22454881668091,0.266509104424275
1559245776.00,-2.2054443359375,4.35870885848999,0.275753144281817
1559245778.00,-1.5074155330658,5.8386607170105,0.272834014170026
1559245780.00,-0.846648573875427,0.189283519983292,0.285850225830712
1559245782.00,-4.8403172492981,5.42889881134033,0.224504248496948
1559245784.00,-5.56000137329102,4.10268592834473,0.2912015270515
1559245786.00,-0.251207947731018,-2.60144400596619,0.225260836480686
1559245788.00,-2.81213164329529,7.42689800262451,0.22720682887724
1559245790.00,-1.84972643852234,1.12259078025818,0.277530750268431
1559245792.00,-1.126091837883,4.02948093414307,0.243176157335612
1559245794.00,-1.55595779418945,2.57466530799866,0.241637534810342
1559245796.00,-1.23133766651154,6.41764783859253,0.288629135590001
1559245798.00,-2.60550117492676,3.07119536399841,0.276906545311058
1559245800.00,-0.987749576568604,3.5232036113739,0.306081219458631
1559245802.00,0.224536225199699,1.65546321868896,0.253745014633278
1559245804.00,-5.40355110168457,-0.783964991569519,0.230393251535622
1559245806.00,2.5057897567749,8.34267139434814,0.356737981104309
1559245808.00,-1.14007198810577,3.07535719871521,0.525036520243447
1559245810.00,-6.2310643196106,2.01219868659973,0.47070914878097
1559245812.00,-3.11489152908325,6.7323312378,0.24352894468232
1559245814.00,-4.85607385635376,-1.1636551618576,0.227257196213644
1559245816.00,-3.99073672294617,3.11237859725952,0.319460056062971
1559245818.00,-11.7779245376587,2.89610457420349,0.38593813187931
1559245820.00,-15.096248626709,3.22468185424805,0.324848561298921
1559245822.00,-10.7687206268311,4.03974914550781,0.34229238626712
1559245824.00,-8.79499912261963,-2.94412064552307,0.490133709781469
1559245826.00,-8.5345401763916,6.8925929069519,0.414498568572985
1559245828.00,-4.15735054016113,0.692847967147827,0.277370252684328
1559245830.00,1.46603751182556,1.87603604793549,0.251749277930019
1559245832.00,-2.74271631240845,1.85179090499878,0.275315731774253
1559245834.00,1.32355129718781,9.78719902038574,0.22987103891552
1559245836.00,-2.88955521583557,1.59017860889435,0.241423150684545
1559245838.00,-3.72821354866028,4.58208799362183,0.346176213704579
1559245840.00,-2.57343244552612,1.83237910270691,0.325903679755709
1559245842.00,-0.715076684951782,3.27798509597778,0.249213228202393
1559245844.00,-1.89223229885101,6.61782789230347,0.247289353468911
1559245846.00,-0.210374265909195,0.323745965957642,0.248786875530892
1559245848.00,-1.31314885616302,6.18715286254883,0.298060296573188
1559245850.00,0.042249608784914,9.11976051330566,0.248961868019832
1559245852.00,-0.730160295963287,-0.0403342247009277,0.233490539025809
1559245854.00,-2.55063104629517,7.01042413711548,0.228607420088712
1559245856.00,0.113081306219101,4.75519847869873,0.240902227964662
1559245858.00,-0.816366791725159,-2.26371240615845,0.240499640680412
1559245860.00,-2.08708143234253,3.34470224380493,0.252640832294139
1559245862.00,1.58468437194824,3.16907048225403,0.279656503209652
1559245864.00,-0.955387532711029,3.72174978256226,0.241029202037748
1559245866.00,-0.898137152194977,2.77536296844482,0.234271339483256
1559245868.00,-0.0718854293227196,2.68994379043579,0.244231097138696
1559245870.00,1.80630075931549,-3.28241372108459,0.27679170083566
1559245872.00,0.547980308532715,5.36480808258057,0.198909178237183
1559245874.00,-3.40554213523865,-2.34994912147522,0.240096756889858
1559245876.00,7.38559341430664,5.27146911621094,0.371805233241891
1559245878.00,5.81380081176758,2.69053363800049,0.510964751140326
1559245880.00,-1.72851359844208,0.32530552148819,0.342493819198223
1559245882.00,0.884816408157349,3.11528849601746,0.261737333125702
1559245884.00,1.4277286529541,0.751519083976746,0.343763856728423
1559245886.00,-4.77587795257568,3.29928159713745,0.211274511757328
1559245888.00,-1.86890637874603,4.49824666976929,0.31009269476
1559245890.00,-7.58919239044189,1.35655581951141,0.340798354872497
1559245892.00,1.17140626907349,2.09438729286194,0.304987230329553
1559245894.00,-4.12538719177246,2.41812705993652,0.298184250531104
1559245896.00,-2.09216737747192,12.3013792037964,0.295320622464606
1559245898.00,-6.71325826644897,-0.643544852733612,0.33050538736932
1559245900.00,-4.29985666275024,2.51661825180054,0.260687319676857
1559245902.00,0.0310925059020519,4.52143049240112,0.246851862794516
1559245904.00,-5.42035818099976,0.57304722070694,0.217446718119452
1559245906.00,-3.08245730400085,0.589982151985168,0.361868512674979

  1   2   3   4   5   6   >