[Bug 1915633] [NEW] The icons disappear or gets misformed when starting my laptop after it was suspended.

2021-02-13 Thread Dipesh Khandelwal
Public bug reported:

The icons disappear or get misformed when starting my laptop after it
was suspended.

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: gnome-shell 3.36.4-1ubuntu1~20.04.2
ProcVersionSignature: Ubuntu 5.8.0-43.49~20.04.1-generic 5.8.18
Uname: Linux 5.8.0-43-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.11-0ubuntu27.16
Architecture: amd64
CasperMD5CheckResult: skip
CurrentDesktop: ubuntu:GNOME
Date: Sun Feb 14 12:46:29 2021
DisplayManager: gdm3
InstallationDate: Installed on 2020-04-23 (296 days ago)
InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
RelatedPackageVersions: mutter-common 3.36.7+git20201123-0.20.04.1
SourcePackage: gnome-shell
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: gnome-shell (Ubuntu)
 Importance: Undecided
 Status: New


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

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

Title:
  The icons disappear or gets misformed when starting my laptop after it
  was suspended.

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

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

[Bug 1766076] Re: USB over thunderbolt turns off every once in a while

2021-02-13 Thread Oded Arbel
#110 (Toumas) - I no longer experience this problem when running 20.10
with the latest kernel and the latest Dell firmware update (fwupdmgr
works reasonably well, but you can also just download the firmware file
from Dell, put it on a USB dok and the preboot screen lets you apply it
directly - no MS-Windows needed).

That being said, when I had the most serious problems, the small script
attached below would take care of things semi-automatically or
automatically (follow step 4 in the header doc for completely automated
recovery - when the dock crashes, wait a few seconds and it'll auto
recover).


#!/bin/bash

### Installation Instructions:
# 1. Install file into `/usr/local/bin/reset-tb`
#
# 2. Optional: allow password less sudo by creating a file 
`/etc/sudoers.d/allow-reset-tb` with the following content:
# 8<-
#  ALL = NOPASSWD: /usr/local/bin/reset-tb
# 8<-
# 
# 3. Optional: allow easy access from the menu by creating a file 
`$HOME/.local/share/applications/Reset Thunderbolt.desktop` with the following 
content:
# 8<-
# [Desktop Entry]
# Exec=bash -c 'sudo -S /usr/local/bin/reset-tb'
# Icon=amarok_playlist_refresh
# Name=Reset Thunderbolt
# NoDisplay=false
# StartupNotify=false
# 8<-
#
# 4. Optional: run a service to automatically trigger the reset and send you an 
email when "unknown event type 15" error is detected, by setting your email
# in this file below, then creating a file 
`/etc/systemd/system/auto-reset-tb.service` with the following content:
# 8<-
# [Unit]
# Description=Automatically reset XHCI USB bus when detecting a Thunderbolt 
dock error
# [Service]
# ExecStart=/usr/local/bin/reset-tb -l
# [Install]
# WantedBy=multi-user.target
# 8<-
# Then run:
# ```
# sudo systemctl daemon-reload
# sudo systemctl enable auto-reset-tb
# sudo systemctl start auto-reset-tb
# ```

EMAIL=o...@geek.co.il
SUBJECT="Detected Thunderbolt error in your system"
MESSAGE="
Check the logs, please.
"

function do_reset() {
tbtid="$(ls /sys/bus/pci/drivers/xhci_hcd/ | grep '[0-9]' | tail -n1)"
echo "Resetting thunderbolt bus">&2
for id in $tbtid; do
echo -n $id > /sys/bus/pci/drivers/xhci_hcd/unbind
done
sleep 1
for id in $tbtid; do
echo -n $id > /sys/bus/pci/drivers/xhci_hcd/bind
done
echo "Done resetting thunderbolt bus" >&2
}

function listen_for_reset() {
dmesg -w | while read line; do
[[ "$line" =~ "xHCI host controller not responding, assume 
dead" ]] || continue
(
sleep 15 # let the busses settle
do_reset
sleep 90 # don't reset too much
)&
mail -s "$SUBJECT" $EMAIL <<< "$MESSAGE Date: $(date -R)"
done
}

[ "$1" == "-l" ] && listen_for_reset || do_reset

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

Title:
  USB over thunderbolt turns off every once in a while

To manage notifications about this bug go to:
https://bugs.launchpad.net/dell-sputnik/+bug/1766076/+subscriptions

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

[Bug 1906939] Re: kde frontend, ModuleNotFoundError: No module named 'sip'

2021-02-13 Thread Ariel Faigon
Some more info, with the hope this is helpful.

installing python3-sip didn't work for me:

```
% sudo apt install python3-sip 
Reading package lists... Done
Building dependency tree   
Reading state information... Done
python3-sip is already the newest version (4.19.7+dfsg-1ubuntu0.1).
0 upgraded, 0 newly installed, 0 to remove and 83 not upgraded.

% /usr/bin/usb-creator-kde 
Traceback (most recent call last):
  File "/usr/bin/usb-creator-kde", line 21, in 
import sip
ModuleNotFoundError: No module named 'sip'
```

This is because of needing to support multiple `python3` versions:

```
% sudo update-alternatives --config python3
There are 3 choices for the alternative python3 (providing /usr/bin/python3).

  SelectionPathPriority   Status

  0/usr/bin/python3.8   3 auto mode
  1/usr/bin/python3.6   1 manual mode
* 2/usr/bin/python3.7   2 manual mode
  3/usr/bin/python3.8   3 manual mode
```

Installing `sip` (for the python3.7 env) with `python3 -m pip --user
--upgrade sip` (keeping the system python install intact, doesn't solve
the problem either). Same import error.

If I edit the shebang line of /usr/bin/usb-creator-kde to the more
explicit:

#!/usr/bin/python3.6

the script starts without failing the import.

However, it fails immediately after with a popup "An error occurred
while talking to the udisks service"

systemctl list-units | grep udisks

shows there's a `udisks2` service but not a `udisks` service.

So yes, this is a simple dependency issue that keeps growing over time.

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

Title:
  kde frontend, ModuleNotFoundError: No module named 'sip'

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/usb-creator/+bug/1906939/+subscriptions

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

[Bug 1915542] Re: Ubiquity crashed when selecting WiFi network

2021-02-13 Thread Leó Kolbeinsson
*** This bug is a duplicate of bug 1912327 ***
https://bugs.launchpad.net/bugs/1912327

** This bug has been marked a duplicate of bug 1912327
   Ubiquity crashed when selecting WiFi network

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

Title:
  Ubiquity crashed when selecting WiFi network

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

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

[Bug 1866999] Re: gnome-calendar does not sync with Google Calendar

2021-02-13 Thread יהוחנן
I'm not sure if this will be of any help with debugging.

Before I installed gnome-calendar (it's not installed by default when I
did a fresh minimal install of 20.04 last December 2020), Focal's Panel
Calendar was showing the data from Google Calendar.

However, after I installed gnome-calendar yesterday (Feb 12), that's
when the system stopped showing anything from Google Calendar.

I tried the following:
* snap version
* apt version
* flatpak version

I also uninstalled (and also purged in the case of apt) gnome-calendar
but the system will no longer show anything from Google Calendar
regardless of how many times I re-added my Google account via Online
Accounts of Focal as well as logged-out and rebooted.

At least from my experience, it seems that gnome-calendar changed
something deep which messed the whole system in 20.04 since the Panel
Calendar only stopped working after I installed gnome-calendar.

I hope it helps somehow.

Shalom.

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

Title:
  gnome-calendar does not sync with Google Calendar

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

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

[Bug 1890891] Re: Dock icons don't appear or appear delayed if you have none pinned

2021-02-13 Thread Nicolas Damgaard Larsen
To be fair, this should probably be prioritized higher.
a) the specific configuration is more common than you might think
b) there is a fundamental problem with this extension representing itself as a 
whole slew of different issues.

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

Title:
  Dock icons don't appear or appear delayed if you have none pinned

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

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

[Bug 1859353] Re: software-properties-gtk not working

2021-02-13 Thread vitaly ven
I found the same message with journalctl, I try reinstall six and certify, it 
did not works.
Then try to run code from requests_unixsocket docs with python3 interactive 
console.

   import requests_unixsocket

   requests_unixsocket.monkeypatch()

   r = requests.get('http+unix://%2Fvar%2Frun%2Fdocker.sock/info')
   assert r.status_code == 200

it can't import requests.

Works again with software properties and livepatch tab after reinstall
requests for me.

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

Title:
  software-properties-gtk not working

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

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

[Bug 1874578] Re: [wayland] dock has very long load time when show-mounts is enabled

2021-02-13 Thread Nicolas Damgaard Larsen
To be fair, this should probably be prioritized higher.
a) the specific configuration is more common than you might think
b) there is a fundamental problem with this extension representing itself as a 
whole slew of different issues.

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

Title:
  [wayland] dock has very long load time when show-mounts is enabled

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

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

[Bug 1905200] Re: Ubuntu-dock in Wayland slow

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

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

** Changed in: gnome-shell-extension-ubuntu-dock (Ubuntu)
   Status: New => Confirmed

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

Title:
  Ubuntu-dock in Wayland slow

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

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

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

2021-02-13 Thread Braulio Correa
I am also affected. Ubuntu 20.4 con hplip.

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

Title:
  No system tray detected by hp-systray

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

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

[Bug 1649537] Re: [MIR] exfat-utils and fuse-exfat

2021-02-13 Thread Colin Watson
Since the last discussion on this bug report, Microsoft announced that
they were supporting integration of exFAT into the Linux kernel
(https://cloudblogs.microsoft.com/opensource/2019/08/28/exfat-linux-
kernel/).  I haven't worked out whether that changes the situation; if
people still want to push for this, it may be worth seeing if we can get
internal legal review to see whether this is safe now.

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

Title:
  [MIR] exfat-utils and fuse-exfat

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

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

[Bug 1915411] Re: bcm2835-codec bcm2835-codec: bcm2835_codec_stop_streaming: Timeout waiting for buffers to be returned

2021-02-13 Thread Sergey Borovkov
And there is also this fix in the rpi tree that is related -
https://github.com/raspberrypi/linux/pull/3790/files

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

Title:
   bcm2835-codec bcm2835-codec: bcm2835_codec_stop_streaming: Timeout
  waiting for buffers to be returned

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

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

[Bug 1915587] [NEW] Assault Cube crashes when being launched

2021-02-13 Thread Ganton
Public bug reported:

Using Kubuntu 20.04: Assault Cube crashes when being launched. It didn't
happen previously, ¿maybe an update has caused that? In the command line
is shown:

$ assaultcube
parsing commandline argument 1: "--home=/home/user/.assaultcube"
Using home directory: /home/user/.assaultcube/
parsing commandline argument 2: "--init"
writing to file: /home/user/.assaultcube/clientlog.txt
init: sdl (2.0.10)
init: net (1.3.6)
init: world (1202)
init: video: sdl
init: video: mode
init: video: misc
init: gl
Renderer: Mesa DRI Intel(R) HD Graphics 4400 (HSW GT2) (Intel Open Source 
Technology Center)
Driver: 3.0 Mesa 20.2.6
init: console
libpng warning: iCCP: known incorrect sRGB profile
libpng warning: iCCP: known incorrect sRGB profile
libpng warning: iCCP: known incorrect sRGB profile
libpng warning: iCCP: known incorrect sRGB profile
init: sound
Audio devices: OpenAL Soft
Sound: OpenAL Soft / OpenAL Soft (OpenAL Community)
Driver: 1.1 ALSOFT 1.19.1
init: cfg
init: models
init: docs
init: localconnect
read map packages/maps/official/ac_complex.cgz rev 3 (18 milliseconds)
Industrial Zone - by makkE
loaded textures (206 milliseconds)
loaded mapmodels (155 milliseconds)
loaded mapsounds (303 milliseconds)
game mode is "TDM"
init: mainloop
Beware: This is a recent release designed to allow users of Debian/GNU Linux 
based distributions to play.
  Although it can run on normal 1.2.0.2 servers, it is not fully supported.
  Coopedit will not work. Some maps will not work. Maps edited here will not 
work on old clients.
  There are slight changes in physics, so don't use this client to play 
competitively.
  As this is based on the latest game development, you may notice other 
changes. Good game!
resolving hostname us.ac-akimbo.net failed (0.0.0.0)
resolving hostname de.ac-akimbo.net failed (0.0.0.0)
resolving hostname packages.ac-akimbo.net failed (0.0.0.0)
successfully pinged 0 media servers, 3 failures, 0 disabled
stacktrace:
./ac_client(+0xe983e) [0x55c139b0183e]
/lib/x86_64-linux-gnu/libc.so.6(+0x46210) [0x7efd7820d210]
/usr/lib/x86_64-linux-gnu/dri/i965_dri.so(+0x3b5863) [0x7efd74c10863]
/usr/lib/x86_64-linux-gnu/dri/i965_dri.so(+0x123b00) [0x7efd7497eb00]
/usr/lib/x86_64-linux-gnu/dri/i965_dri.so(+0x2aed16) [0x7efd74b09d16]
./ac_client(+0x83a87) [0x55c139a9ba87]
./ac_client(+0x8b7e1) [0x55c139aa37e1]
./ac_client(+0x8c252) [0x55c139aa4252]
./ac_client(main+0x10b5) [0x55c139a88835]
/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf3) [0x7efd781ee0b3]
./ac_client(+0x1d64e) [0x55c139a3564e]
AssaultCube error (11) ()
OpenAL Error (A004): invalid operation, line 359
OpenAL Error (A004): invalid operation, line 359
AL lib: (EE) alc_cleanup: 1 device not closed

** Affects: assaultcube (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/1915587

Title:
  Assault Cube crashes when being launched

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

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

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

2021-02-13 Thread Oleksii Nadtochii
I have the same problem with Asus Rog Strix (GL502VY). Nvidia 980M.
Ubuntu 20.10, kernel 5.8.0-43-generic. Driver nvidia-driver-460.
Movement of modules to initramfs did not help.

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

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

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

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

[Bug 1915598] [NEW] Use calamares as kubuntu installer

2021-02-13 Thread soredake
Public bug reported:

By using calamares 3 bugs can be fixed:
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1915594
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1915596
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1915597

** Affects: kubuntu-meta (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/1915598

Title:
  Use calamares as kubuntu installer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/kubuntu-meta/+bug/1915598/+subscriptions

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

[Bug 1915597] Re: ubiquity-frontend-kde: add option to create hibernation file

2021-02-13 Thread soredake
https://calamares.io/

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

Title:
   ubiquity-frontend-kde: add option to create hibernation file

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

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

[Bug 1915597] Re: ubiquity-frontend-kde: add option to create hibernation file

2021-02-13 Thread soredake
** Attachment added: "Calamares support this"
   
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1915597/+attachment/5463336/+files/Screenshot_20210213_133439.png

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

Title:
   ubiquity-frontend-kde: add option to create hibernation file

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

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

[Bug 1865322] Re: Kubuntu doesnt have hibernate

2021-02-13 Thread soredake
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1915597

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

Title:
  Kubuntu doesnt have hibernate

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/kubuntu-meta/+bug/1865322/+subscriptions

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

[Bug 1915601] [NEW] Software application not launching after reboot. pycharm. ubuntu software, vs code display launch icon but then nothing happens

2021-02-13 Thread Reagan
Public bug reported:

I tried running all sorts of cleans, updates and upgrade commands without any 
success.
I saw in update notification and rebooted my machine. I have all the latest 
software packages installed.

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: ubuntu-release-upgrader-core 1:20.04.30
ProcVersionSignature: Ubuntu 5.8.0-43.49~20.04.1-generic 5.8.18
Uname: Linux 5.8.0-43-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.16
Architecture: amd64
CasperMD5CheckResult: skip
CrashDB: ubuntu
CurrentDesktop: ubuntu:GNOME
Date: Sat Feb 13 15:01:17 2021
InstallationDate: Installed on 2021-02-01 (11 days ago)
InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
PackageArchitecture: all
SourcePackage: ubuntu-release-upgrader
Symptom: release-upgrade
UpgradeStatus: No upgrade log present (probably fresh install)

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


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

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

Title:
  Software application not launching after reboot. pycharm. ubuntu
  software, vs code display launch icon but then nothing happens

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

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

[Bug 1915605] [NEW] Firefox (circle spinning while run program) problem on Ubuntu bionic family - 18.04.5

2021-02-13 Thread Piotr
Public bug reported:

Dear Launchpad Team,

I have problem with Firefox on Ubuntu 18.04.5 system. When I run firefox
this loading too long (circle spinning - animation of my cursor). I
noticed this bug also on Xubuntu 18.04.4 on another computer. On Lubuntu
18.04.5 system on another computer I don't have these kind of bug so it
is problem with Ubuntu and Xubuntu system. On Ubuntu 20.04 and Ubuntu
20.04.1 I don't have these bug.

Of course I have updated system.

I noticed also that if I will run firefox for the first time after
booting my system this bug is not exist. I have this bug for the second
run of the firefox and next.


I have this problem also booting my computer with live USB with clear system 
image with Ubuntu 18.04.5. Like I earlier said this is problem with the system. 
When I use Ubuntu 20.04 I don't have this problem.

My system is clean this is fresh install. I don't know what is problem
but I am sure that everyone with Ubuntu 18.04.5 have this problem.
Firefox is the newest 85.0.1 version. On older vesion I also had this
problem in Ubuntu 18.04.5.

Firefox start with no errors. No errors is a shown in terminal.

Problem is with spinning with the cursor. When I run firefox cursor is
spinning but firefox normally works. This cursor spinning only when I
move this cursor on GNOME environment (top of the screen I don't know
what is the name of this. This is graphic bar? When I run firefox in
this "graphic bar" are shown name of the program (in my case firefox).

On Ubuntu 20.04 my cursor doesn't spinning. Like I said this is problem
only with Ubuntu 18.04.5 and Xubuntu 18.04.4 system. So this is the
problem with bionic family but on Lubuntu 18.04.4 and 18.04.5 and
doesn't have this problem too.

I tried reinstall firefox but this doesn't help. I also deleted files
for firex in /home but this also doesn't help. I think that this problem
is more complicated.

Can you fix it? I am sure that everyone have this problem.


Some output from terminal:

uname -a

5.4.0-65-generic #73~18.04.1-Ubuntu SMP Tue Jan 19 09:02:24 UTC 2021
x86_64 x86_64 x86_64 GNU/Linux

lsb_release -crid

Distributor ID: Ubuntu
Description: Ubuntu 18.04.5 LTS
Release: 18.04

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

** Description changed:

  Dear Launchpad Team,
  
  I have problem with Firefox on Ubuntu 18.04.5 system. When I run firefox
  this loading too long (circle spinning - animation of my cursor). I
  noticed this bug also on Xubuntu 18.04.4 on another computer. On Lubuntu
  18.04.5 system on another computer I don't have these kind of bug so it
  is problem with Ubuntu and Xubuntu system. On Ubuntu 20.04 and Ubuntu
  20.04.1 I don't have these bug.
  
  Of course I have updated system.
  
  I noticed also that if I will run firefox for the first time after
  booting my system this bug is not exist. I have this bug for the second
  run of the firefox and next.
  
  
+ I have this problem also booting my computer with live USB with clear system 
image with Ubuntu 18.04.5. Like I earlier said this is problem with the system. 
When I use Ubuntu 20.04 I don't have this problem.
+ 
+ My system is clean this is fresh install. I don't know what is problem
+ but I am sure that everyone with Ubuntu 18.04.5 have this problem.
+ Firefox is the newest 85.0.1 version. On older vesion I also had this
+ problem in Ubuntu 18.04.5.
+ 
+ Firefox start with no errors. No errors is a shown in terminal.
+ 
+ Problem is with spinning with the cursor. When I run firefox cursor is
+ spinning but firefox normally works. This cursor spinning only when I
+ move this cursor on GNOME environment (top of the screen I don't know
+ what is the name of this. This is graphic bar? When I run firefox in
+ this "graphic bar" are shown name of the program (in my case firefox).
+ 
+ On Ubuntu 20.04 my cursor doesn't spinning. Like I said this is problem
+ only with Ubuntu 18.04.5 and Xubuntu 18.04.4 system. So this is the
+ problem with bionic family but on Lubuntu 18.04.4 and 18.04.5 and
+ doesn't have this problem too.
+ 
+ I tried reinstall firefox but this doesn't help. I also deleted files
+ for firex in /home but this also doesn't help. I think that this problem
+ is more complicated.
+ 
  Can you fix it? I am sure that everyone have this problem.
+ 
+ 
+ Some output from terminal:
+ 
+ uname -a
+ 
+ 5.4.0-65-generic #73~18.04.1-Ubuntu SMP Tue Jan 19 09:02:24 UTC 2021
+ x86_64 x86_64 x86_64 GNU/Linux
+ 
+ lsb_release -crid
+ 
+ Distributor ID: Ubuntu
+ Description: Ubuntu 18.04.5 LTS
+ Release: 18.04

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

Title:
  Firefox (circle spinning while run program) problem on Ubuntu bionic
  family - 18.04.5

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

-- 
ubuntu-bugs mailing list

[Bug 1915603] Re: install beleaves motherboard is EFI

2021-02-13 Thread laulau
the computer booted correclty to the new instlled ubuntu ...
maybe because there was already a grub installed before (previously mint 20.1)

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

Title:
  install beleaves motherboard is EFI

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

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

[Bug 1915606] [NEW] la versione 20.04 su questo pc ha seri prolemi

2021-02-13 Thread Marina Bravin
Public bug reported:

Il PC continua bloccarsi nei vari applicativi anche firefox , vlc,
terminale, ecc.

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: ubiquity 18.04.14.15
ProcVersionSignature: Ubuntu 5.4.0-42.46~18.04.1-generic 5.4.44
Uname: Linux 5.4.0-42-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.16
Architecture: amd64
CasperVersion: 1.394.3
CurrentDesktop: ubuntu:GNOME
Date: Sat Feb 13 15:20:09 2021
InstallCmdLine: file=/cdrom/preseed/ubuntu.seed boot=casper 
initrd=/casper/initrd quiet splash --- maybe-ubiquity
LiveMediaBuild: Ubuntu 18.04.5 LTS "Bionic Beaver" - Release amd64 (20200806.1)
ProcEnviron:
 LANGUAGE=it_IT.UTF-8
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=it_IT.UTF-8
 LC_NUMERIC=C.UTF-8
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

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


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

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

Title:
  la versione 20.04 su questo pc ha seri prolemi

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

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

[Bug 1915590] [NEW] gnome-shell closed unexpectedly but it did not crash, just now power on but it shws the incorrect message

2021-02-13 Thread Balashanmugam
Public bug reported:

gnome-shell closed unexpectedly but it did not crash, just now power on
but it shws the incorrect message

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: apport-gtk 2.20.11-0ubuntu27.16
ProcVersionSignature: hostname 5.8.0-43.49~20.04.1-generic 5.8.18
Uname: Linux 5.8.0-43-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.16
Architecture: amd64
CasperMD5CheckResult: skip
CurrentDesktop: ubuntu:GNOME
Date: Sat Feb 13 15:07:03 2021
ExecutablePath: /usr/share/apport/apport-gtk
InstallationDate: Installed on 2021-02-05 (7 days ago)
InstallationMedia: Ubuntu 20.04.2 LTS "Focal Fossa" - Release amd64 (20210204)
InterpreterPath: /usr/bin/python3.8
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=en_IN:en
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_IN
 SHELL=/bin/bash
Python3Details: /usr/bin/python3.8, Python 3.8.5, python3-minimal, 
3.8.2-0ubuntu2
PythonDetails: N/A
SourcePackage: apport
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: apport (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/1915590

Title:
  gnome-shell closed unexpectedly but it did not crash, just now power
  on but it shws the incorrect message

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

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

[Bug 1915594] [NEW] ubiquity-frontend-kde: give explicit settings for system language and system locale

2021-02-13 Thread soredake
Public bug reported:

Instead of auto-setting system language to language selected in
installer and system locale to selected timezone.

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

Title:
  ubiquity-frontend-kde: give explicit settings for system language and
  system locale

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

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

[Bug 1915594] Re: ubiquity-frontend-kde: give explicit settings for system language and system locale

2021-02-13 Thread soredake
** Attachment added: "How it's done in kde neon installer"
   
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1915594/+attachment/5463335/+files/Screenshot_20210210_152014.png

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

Title:
  ubiquity-frontend-kde: give explicit settings for system language and
  system locale

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

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

[Bug 1915592] [NEW] preinstall `kio-fuse` by default

2021-02-13 Thread soredake
Public bug reported:

Neon doing this
https://invent.kde.org/neon/neon/seeds/-/blob/Neon/unstable/desktop#L109

Video about kio-fuse https://www.youtube.com/watch?v=KqpPlFo7OjY

** Affects: kubuntu-meta (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/1915592

Title:
   preinstall `kio-fuse` by default

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/kubuntu-meta/+bug/1915592/+subscriptions

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

[Bug 1915594] Re: ubiquity-frontend-kde: give explicit settings for system language and system locale

2021-02-13 Thread soredake
I attached screenshot showing how it can be done.

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

Title:
  ubiquity-frontend-kde: give explicit settings for system language and
  system locale

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

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

[Bug 1914967] Re: dput relies on python2

2021-02-13 Thread Rolf Leggewie
Hello Mattia, thank you for your quick response and my apologies for the
less than ideal bug report.

What I forgot to say is that my main system is Bionic which has python2
as default.  I changed that to python3 and now dput fails.  In bionic it
has the shebang #!/usr/bin/python which works fine when python points to
python2, but breaks when it points to python3.  It is very easy to fix
and I reported this for the sake of making life easier for other bionic
users.

This should not be an issue in focal which I believe has python3 as
default.

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

Title:
  dput relies on python2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dput-ng/+bug/1914967/+subscriptions

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

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

2021-02-13 Thread albertoiNET
@Maton Danko pressing down on right is a secondary click. About
multitouch I don't know any multigestures touch app. I'll try to find
any app.

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

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

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

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

[Bug 1915592] Re: preinstall `kio-fuse` by default

2021-02-13 Thread Rik Mills
At the moment this is not possible. The addition would require fuse3 on
the Kubuntu ISO, which causes the ISO build to fail due to Ubuntu ISO
build system still requiring fuse2 be installed.

** Changed in: kubuntu-meta (Ubuntu)
   Importance: Undecided => Wishlist

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

Title:
   preinstall `kio-fuse` by default

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/kubuntu-meta/+bug/1915592/+subscriptions

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

[Bug 1915599] [NEW] Upgrade from 18.04 to 20.04

2021-02-13 Thread Krishnaiah Marichetty
Public bug reported:

Error: No minimal package available

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: ubuntu-release-upgrader-core 1:18.04.42
ProcVersionSignature: Ubuntu 4.15.0-135.139-generic 4.15.18
Uname: Linux 4.15.0-135-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.23
Architecture: amd64
CrashDB: ubuntu
Date: Sat Feb 13 17:29:32 2021
InstallationDate: Installed on 2017-07-27 (1297 days ago)
InstallationMedia: Ubuntu 16.04.2 LTS "Xenial Xerus" - Release amd64 
(20170215.2)
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=en_IN:en
 TERM=linux
 PATH=(custom, no user)
 LANG=en_IN
 SHELL=/bin/bash
SourcePackage: ubuntu-release-upgrader
UpgradeStatus: Upgraded to bionic on 2021-02-13 (0 days ago)
VarLogDistupgradeAptlog:
 Log time: 2021-02-13 17:28:30.641874
 Log time: 2021-02-13 17:28:48.022644
 Log time: 2021-02-13 17:29:27.648150
 Log time: 2021-02-13 17:29:40.545261
VarLogDistupgradeTermlog:

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


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

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

Title:
  Upgrade from 18.04 to 20.04

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

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

[Bug 1910872] Re: desktop icon tooltips set to 128

2021-02-13 Thread Sean Davis
Beyond that, none of the Xubuntu default settings seem to be applied.
Fonts, wallpaper, and more are just the Xfce defaults.

** Changed in: xubuntu-default-settings (Ubuntu)
   Status: New => Confirmed

** Summary changed:

- desktop icon tooltips set to 128
+ Xubuntu default settings are not applied

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

Title:
  Xubuntu default settings are not applied

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xubuntu-default-settings/+bug/1910872/+subscriptions

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

[Bug 1826703] Re: Could not prepare Boot variable: Function not implemented

2021-02-13 Thread ar barzh paour
the same for me
jpb@jpb-HP-ProBook-4710s:~$ sudo efibootmgr  --create --disk  /dev/sda   --part 
 7  --label  "grububuntu"  --loader   "\efi\ubuntu\grubx64.efi"
[sudo] Mot de passe de jpb : 
Could not prepare Boot variable: Function not implemented
jpb@jpb-HP-ProBook-4710s:~$ uname -a && lsb_release -a
Linux jpb-HP-ProBook-4710s 5.8.0-43-generic #49~20.04.1-Ubuntu SMP Fri Feb 5 
09:57:56 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
No LSB modules are available.
Distributor ID: Ubuntu
Description:Ubuntu 20.04.2 LTS
Release:20.04
Codename:   focal
jpb@jpb-HP-ProBook-4710s:~$ sudo fdisk -l /dev/sda
Disque /dev/sda : 232,91 GiB, 250059350016 octets, 488397168 secteurs
Disk model: Samsung SSD 860 
Unités : secteur de 1 × 512 = 512 octets
Taille de secteur (logique / physique) : 512 octets / 512 octets
taille d'E/S (minimale / optimale) : 512 octets / 512 octets
Type d'étiquette de disque : dos
Identifiant de disque : 0xde2df8d4

Périphérique Amorçage Début   Fin  Secteurs Taille Id Type
/dev/sda1  2048  58593279  5859123228G 83 Linux
/dev/sda2  58593280 120032733  61439454  29,3G 83 Linux
/dev/sda3 120033280 222433279 10240  48,8G 83 Linux
/dev/sda4 222435326 352850239 130414914  62,2G  5 Étendue
/dev/sda5 222435328 232675327  1024   4,9G 83 Linux
/dev/sda6 232677376 310800383  78123008  37,3G 83 Linux
/dev/sda7*310802432 31090483110240050M ef EFI (FAT-12/16/32)
/dev/sda8 310906880 352850239  4194336020G 83 Linux
jpb@jpb-HP-ProBook-4710s:~$ efibootmgr -v
BootCurrent: 0005
Timeout: 0 seconds
BootOrder: 0005,,0001,0003
Boot* Optical Disk Drive
BBS(CDROM,�,0x0)...
Boot0001* Notebook Hard Drive   
BBS(HD,�,0x0)...
Boot0002* Notebook Ethernet 
BBS(128,�,0x0)>..
Boot0003* Notebook Ethernet 
BBS(128,�,0x0)>..
Boot0004* USB Hard Drive
BBS(HD,�,0x900)...
Boot0005* ubuntu
HD(4,MBR,0xde2df8d4,0xd4217fe,0x7c5f942)/HD(3,MBR,0x0,0x12867800,0x19000)/File(\EFI\ubuntu\shimx64.efi)
jpb@jpb-HP-ProBook-4710s:~$

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

Title:
  Could not prepare Boot variable: Function not implemented

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

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

[Bug 1915603] [NEW] install beleaves motherboard is EFI

2021-02-13 Thread laulau
Public bug reported:

this computer is old BIOS / CSM, has no EFI.
install beleaves it's EFI :
- complains there is no EFI partition
- grub-efi fails

ProblemType: Bug
DistroRelease: Ubuntu 20.10
Package: ubiquity 20.10.13
ProcVersionSignature: Ubuntu 5.8.0-25.26-generic 5.8.14
Uname: Linux 5.8.0-25-generic x86_64
NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
ApportVersion: 2.20.11-0ubuntu50
Architecture: amd64
CasperMD5CheckResult: skip
CasperVersion: 1.455
Date: Sat Feb 13 14:25:33 2021
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed 
maybe-ubiquity quiet splash ---
LiveMediaBuild: Ubuntu 20.10 "Groovy Gorilla" - Release amd64 (20201022)
RebootRequiredPkgs:
 linux-image-5.8.0-43-generic
 linux-base
 linux-image-5.8.0-25-generic
 linux-base
 linux-base
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

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


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

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

Title:
  install beleaves motherboard is EFI

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

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

[Bug 1744340] Re: missing models.dat file

2021-02-13 Thread Graham White
I have an HP Laserjet Pro M102a printer, and I cannot get it to work with my 
Ubuntu 
machine: the error message is always some variant of "models.dat not found" 
(and, indeed,
I cannot find any models.datfile in any of the obvious places). This is very 
like the 
previous problems described in this thread.

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

Title:
  missing models.dat file

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

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

[Bug 1915608] [NEW] crash on finalising installation on external drive

2021-02-13 Thread agitdd99
Public bug reported:

error message: executing grub-install /dev/sda failed. This is a fatal
error

ProblemType: Bug
DistroRelease: Ubuntu 20.10
Package: ubiquity 20.10.13
ProcVersionSignature: Ubuntu 5.8.0-25.26-generic 5.8.14
Uname: Linux 5.8.0-25-generic x86_64
NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
ApportVersion: 2.20.11-0ubuntu50
Architecture: amd64
CasperMD5CheckResult: pass
CasperVersion: 1.455
CurrentDesktop: ubuntu:GNOME
Date: Sat Feb 13 21:33:29 2021
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed 
maybe-ubiquity quiet splash ---
LiveMediaBuild: Ubuntu 20.10 "Groovy Gorilla" - Release amd64 (20201022)
ProcEnviron:
 LANGUAGE=en_US.UTF-8
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 LC_NUMERIC=C.UTF-8
RebootRequiredPkgs:
 linux-image-5.8.0-25-generic
 linux-base
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

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


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

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

Title:
  crash on finalising installation on external drive

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

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

[Bug 1915607] [NEW] gimp fails to start

2021-02-13 Thread David Higton
Public bug reported:

gimp was working when I last tried, a few weeks ago.  Now, clicking on
its "favourite" icon doesn't start gimp, it just crashes.

```
GNU Image Manipulation Program version 2.10.22
git-describe: GIMP_2_10_20-217-g0c8a7891f7
Build: unknown rev 0 for linux
# C compiler #
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none:hsa
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 
9.3.0-17ubuntu1~20.04' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs 
--enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,gm2 --prefix=/usr 
--with-gcc-major-version-only --program-suffix=-9 
--program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id 
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix 
--libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug 
--enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new 
--enable-gnu-unique-object --disable-vtable-verify --enable-plugin 
--enable-default-pie --with-system-zlib --with-target-system-zlib=auto 
--enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 
--with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib 
--with-tune=generic 
--enable-offload-targets=nvptx-none=/build/gcc-9-HskZEa/gcc-9-9.3.0/debian/tmp-nvptx/usr,hsa
 --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu 
--host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04) 

# Libraries #
using babl version 0.1.82 (compiled against version 0.1.82)
using GEGL version 0.4.26 (compiled against version 0.4.26)
using GLib version 2.64.6 (compiled against version 2.64.3)
using GdkPixbuf version 2.40.0 (compiled against version 2.40.0)
using GTK+ version 2.24.32 (compiled against version 2.24.32)
using Pango version 1.44.7 (compiled against version 1.44.7)
using Fontconfig version 2.13.1 (compiled against version 2.13.1)
using Cairo version 1.16.0 (compiled against version 1.16.0)

```
> fatal error: Aborted

Stack trace:
```

# Stack traces obtained from PID 17696 - Thread 17696 #

[New LWP 17699]
[New LWP 17700]
[New LWP 17701]
[New LWP 17702]
[New LWP 17703]
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
__libc_read (nbytes=256, buf=0x7ffca8d49a40, fd=15) at 
../sysdeps/unix/sysv/linux/read.c:26
  Id   Target Id  Frame 
* 1Thread 0x7fc1ce836340 (LWP 17696) "gimp-2.10"  __libc_read 
(nbytes=256, buf=0x7ffca8d49a40, fd=15) at ../sysdeps/unix/sysv/linux/read.c:26
  2Thread 0x7fc1ce05b700 (LWP 17699) "worker" syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
  3Thread 0x7fc1c7fff700 (LWP 17700) "gmain"  0x7fc1cf66faff in 
__GI___poll (fds=0x55d0dfeaa580, nfds=1, timeout=5701) at 
../sysdeps/unix/sysv/linux/poll.c:29
  4Thread 0x7fc1c77fe700 (LWP 17701) "gdbus"  0x7fc1cf66faff in 
__GI___poll (fds=0x55d0dfec2ac0, nfds=2, timeout=-1) at 
../sysdeps/unix/sysv/linux/poll.c:29
  5Thread 0x7fc1b9bd2700 (LWP 17702) "async"  syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
  6Thread 0x7fc1b93d1700 (LWP 17703) "pool-gimp-2.10" syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38

Thread 6 (Thread 0x7fc1b93d1700 (LWP 17703)):
#0  syscall () at ../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
#1  0x7fc1cf9654b6 in g_cond_wait_until () at 
/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0
#2  0x7fc1cf8e8541 in  () at /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0
#3  0x7fc1cf94230a in  () at /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0
#4  0x7fc1cf941911 in  () at /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0
#5  0x7fc1cf755609 in start_thread (arg=) at 
pthread_create.c:477
ret = 
pd = 
unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140470013204224, 
8009944906271456171, 140723141064990, 140723141064991, 140723141065136, 
140470013200512, -8022467784023573589, -8022436377673040981}, mask_was_saved = 
0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, 
canceltype = 0}}}
not_first_call = 0
#6  0x7fc1cf67c293 in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:95

Thread 5 (Thread 0x7fc1b9bd2700 (LWP 17702)):
#0  syscall () at ../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
#1  0x7fc1cf965393 in g_cond_wait () at 
/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0
#2  0x55d0df345a34 in  ()
#3  0x7fc1cf941911 in  () at /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0
#4  0x7fc1cf755609 in start_thread (arg=) at 
pthread_create.c:477
ret = 
pd = 
unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140470021596928, 

[Bug 1912327] Re: Ubiquity crashed when selecting WiFi network

2021-02-13 Thread Leó Kolbeinsson
Testing Kubuntu Hirsute daily 20210213 -
http://cdimage.ubuntu.com/kubuntu/daily-live/20210213/hirsute-desktop-amd64.iso

Installing from the"Install Kubuntu " button - fails when selecting WiFi
network as in original report.

My test reports on the QA website :
http://iso.qa.ubuntu.com/qatracker/milestones/419/builds/226763/testcases/1300/results

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

Title:
  Ubiquity crashed when selecting WiFi network

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

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

[Bug 1915597] [NEW] ubiquity-frontend-kde: add option to create hibernation file

2021-02-13 Thread soredake
Public bug reported:

To allow users to finally use hibernation in kde by default.

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

Title:
   ubiquity-frontend-kde: add option to create hibernation file

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

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

[Bug 1915596] [NEW] ubiquity-frontend-kde: add option to create swap

2021-02-13 Thread soredake
Public bug reported:

With custom size slider and disable options.

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

** Summary changed:

- ubiquity-frontend-kde: add swap setting
+ ubiquity-frontend-kde: add option to create swap

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

Title:
  ubiquity-frontend-kde: add option to create swap

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

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

[Bug 490015] Re: python-pydot is broken

2021-02-13 Thread Peter Nowee
Upstream issue for the first bug:
https://github.com/pydot/pydot/issues/214 (should get_nodes() return
also "implicit" nodes?)

** Bug watch added: github.com/pydot/pydot/issues #214
   https://github.com/pydot/pydot/issues/214

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

Title:
  python-pydot is broken

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

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

[Bug 1915593] [NEW] preinstall `plasma-firewall` by default

2021-02-13 Thread soredake
Public bug reported:

Neon doing this
https://invent.kde.org/neon/neon/seeds/-/blob/Neon/unstable/desktop#L90

** Affects: kubuntu-meta (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/1915593

Title:
   preinstall `plasma-firewall` by default

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/kubuntu-meta/+bug/1915593/+subscriptions

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

[Bug 1903875] Re: cryptgnupg-sc initramfs script with plymouth locks up pinentry

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

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

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

Title:
  cryptgnupg-sc initramfs script with plymouth locks up pinentry

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

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

[Bug 1888942] Re: marked url in firefox by using one click isn't copied to clipboard, only with a triple mouse-click

2021-02-13 Thread Matthias Sprau
I accept the new behaviour, now it makes sense to me like described
above.

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

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

Title:
  marked url in firefox by using one click isn't copied to clipboard,
  only with a triple mouse-click

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

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

[Bug 1817648] Re: Directory ownership changes by itself

2021-02-13 Thread Brian Gomes Bascoy
This error can happen when there is a problem with your sendmail.cf: It
seems that Debian's sendmailconfig doesn't properly handle errors in
sendmail configuration files. For instance if there is a syntactic error
and you see a message like:

Creating /etc/mail/sendmail.cf... 
m4:/etc/mail/sendmail.mc:123: ERROR: end of file in string

the sendmailconfig script will just keep going (although it should
actually exit there) and then break somewhere else because the state of
/etc/mail is invalid.

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

Title:
  Directory ownership changes by itself

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

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

[Bug 1774950] Re: Suspend fails in Ubuntu and Kubuntu 18.04 but works fine in Ubuntu and Kubuntu 17.10 (and on Kubuntu 18.04 using kernel 4.14.47)

2021-02-13 Thread /tony/dev/null
I tried `v4.14.0-041400-generic` kernel, when I close & open lid it doesnt hang 
at all.
I left lid closed for hours & it woke up like charm. 

But when I checked `/var/log/syslog` & `/var/log/kern.log` there was no text 
about suspending.
Not even single line was printed.

So I think its entering suspend mode at all, but manages to turn off
screen & backlight.

Clicking suspend button or entering `sudo systemctl suspend` enters
suspend mode & laptop gets stuck. holding power button is the only way
to get back.

The `syslog` shows text releted to suspend, here :Feb 13 19:50:41 pc 
systemd[1]: Starting Flush Journal to Persistent Storage...
```
Feb 13 19:48:54 pc systemd[1]: Reached target Sleep.
Feb 13 19:48:54 pc systemd[1]: Starting Suspend...
Feb 13 19:48:54 pc systemd-sleep[2788]: Suspending system...
Feb 13 19:48:54 pc kernel: [ 6678.873054] PM: suspend entry (deep) 
``` 

I tired another version `4.14.40-041440-generic` & closing lid enters
suspend mode which causes hanging.

It seems `v4.14.0-041400-generic` is only one who doesn't have this
problem.

If you want me to test any other version of kernel, feel free to ask.

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

Title:
  Suspend fails in Ubuntu and Kubuntu 18.04 but works fine in Ubuntu and
  Kubuntu 17.10 (and on Kubuntu 18.04 using kernel 4.14.47)

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

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

[Bug 1880245] Re: Error loading extension ubuntu-shell-extension-move-clock

2021-02-13 Thread Jeroen P
I've found a patch here which works:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell-extension-move-
clock/+bug/1816834

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

Title:
  Error loading extension ubuntu-shell-extension-move-clock

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

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

[Bug 1774950] Re: Suspend fails in Ubuntu and Kubuntu 18.04 but works fine in Ubuntu and Kubuntu 17.10 (and on Kubuntu 18.04 using kernel 4.14.47)

2021-02-13 Thread /tony/dev/null
I tried `v4.14.0-041400-generic` kernel, when I close & open lid it doesnt hang 
at all.
I left lid closed for hours & it woke up like charm.

But when I checked `/var/log/syslog` & `/var/log/kern.log` there was no text 
about suspending.
Not even single line was printed.

So I think its not entering suspend mode at all, but manages to turn off
the screen & backlight.

Clicking suspend button or entering `sudo systemctl suspend` enters
suspend mode & laptop gets stuck. holding power button is the only way
to get back.

The `syslog` shows text related to suspending, here :
```
Feb 13 19:48:54 pc systemd[1]: Reached target Sleep.
Feb 13 19:48:54 pc systemd[1]: Starting Suspend...
Feb 13 19:48:54 pc systemd-sleep[2788]: Suspending system...
Feb 13 19:48:54 pc kernel: [ 6678.873054] PM: suspend entry (deep)
```

I tired another version `4.14.40-041440-generic` & closing lid enters
suspend mode which causes hanging.

It seems `v4.14.0-041400-generic` is only one who doesn't have this
problem.

If you want me to test any other version of kernel, feel free to ask.

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

Title:
  Suspend fails in Ubuntu and Kubuntu 18.04 but works fine in Ubuntu and
  Kubuntu 17.10 (and on Kubuntu 18.04 using kernel 4.14.47)

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

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

[Bug 1915598] Re: Use calamares as kubuntu installer

2021-02-13 Thread Rik Mills
** Changed in: kubuntu-meta (Ubuntu)
   Importance: Undecided => Wishlist

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

Title:
  Use calamares as kubuntu installer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/kubuntu-meta/+bug/1915598/+subscriptions

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

[Bug 1915593] Re: preinstall `plasma-firewall` by default

2021-02-13 Thread Rik Mills
Would need testing. I have seen comments from debian developers on IRC
that it is 'crashy'.

** Changed in: kubuntu-meta (Ubuntu)
   Importance: Undecided => Wishlist

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

Title:
   preinstall `plasma-firewall` by default

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/kubuntu-meta/+bug/1915593/+subscriptions

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

[Bug 1913731] Re: /sbin/rescan-scsi-bus: line 592: [: 1.57: integer expression expected

2021-02-13 Thread Bug Watch Updater
** Changed in: scsitools (Debian)
   Status: Unknown => New

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

Title:
  /sbin/rescan-scsi-bus: line 592: [: 1.57: integer expression expected

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

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

[Bug 1915615] Re: package bcmwl-kernel-source 6.30.223.271+bdcom-0ubuntu5 failed to install/upgrade: installed bcmwl-kernel-source package post-installation script subprocess returned error exit statu

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

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

Title:
  package bcmwl-kernel-source 6.30.223.271+bdcom-0ubuntu5 failed to
  install/upgrade: installed bcmwl-kernel-source package post-
  installation script subprocess returned error exit status 10

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

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

[Bug 1915612] [NEW] package bcmwl-kernel-source error (Broadcom wifi not working)

2021-02-13 Thread Marvin Schin
Public bug reported:

I guess this bug is related to the one already reported here for kernels
up to 5.8.

trying to use/install the bcmwl package returns the following error:

6.30.223.271+bdcom-0ubuntu7 failed to install/upgrade: installed bcmwl-
kernel-source package post-installation script subprocess returned error
exit status 10

ProblemType: Package
DistroRelease: Ubuntu 20.10
Package: bcmwl-kernel-source 6.30.223.271+bdcom-0ubuntu7
Uname: Linux 5.10.11-051011-generic x86_64
ApportVersion: 2.20.11-0ubuntu50.5
AptOrdering:
 dkms:amd64: Install
 bcmwl-kernel-source:amd64: Install
 NULL: ConfigurePending
Architecture: amd64
CasperMD5CheckResult: skip
Date: Sat Feb 13 18:43:42 2021
ErrorMessage: installed bcmwl-kernel-source package post-installation script 
subprocess returned error exit status 10
Python3Details: /usr/bin/python3.8, Python 3.8.6, python3-minimal, 
3.8.6-0ubuntu1
PythonDetails: N/A
RelatedPackageVersions:
 dpkg 1.20.5ubuntu2
 apt  2.1.10ubuntu0.2
SourcePackage: bcmwl
Title: package bcmwl-kernel-source 6.30.223.271+bdcom-0ubuntu7 failed to 
install/upgrade: installed bcmwl-kernel-source package post-installation script 
subprocess returned error exit status 10
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package groovy

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

Title:
  package bcmwl-kernel-source error (Broadcom wifi not working)

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

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

[Bug 1915570] modified.conffile..etc.gdm3.custom.conf.txt

2021-02-13 Thread Sebastian Horatio Stillion
apport information

** Attachment added: "modified.conffile..etc.gdm3.custom.conf.txt"
   
https://bugs.launchpad.net/bugs/1915570/+attachment/5463383/+files/modified.conffile..etc.gdm3.custom.conf.txt

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

Title:
  Login screen password entry not working

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

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

[Bug 1915570] ProcCpuinfoMinimal.txt

2021-02-13 Thread Sebastian Horatio Stillion
apport information

** Attachment added: "ProcCpuinfoMinimal.txt"
   
https://bugs.launchpad.net/bugs/1915570/+attachment/5463382/+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/1915570

Title:
  Login screen password entry not working

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

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

[Bug 1915614] Re: mozilla thunderbird

2021-02-13 Thread sessetessu2021
keep all ubuntu software all programs update
always 

when mozilla thunderbird new version is release
send update all linux ubuntu LTS 16 and 18 and 20 
ubuntu

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

Title:
  mozilla thunderbird

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

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

[Bug 1915614] [NEW] mozilla thunderbird

2021-02-13 Thread sessetessu2021
Public bug reported:

mozilla thunderbird always update linux 
when mozilla thunderbird new version
update always last time mozilla thunderbird
update last 2020 summer now is take this 
mozilla thunderbird new versions update
linux ubuntu LTS always is keep all
emails safe now is new versio
mozilla thunderbird is 78 update 
all ubuntu 16 and 18 and 20 LTS

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

Title:
  mozilla thunderbird

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

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

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

2021-02-13 Thread Samaun Parvez
** Changed in: ubuntu-cdimage
 Assignee: (unassigned) => Samaun Parvez (parvez1)

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

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

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

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

[Bug 1915570] Re: Login screen password entry not working

2021-02-13 Thread Sebastian Horatio Stillion
apport information

** Tags added: apport-collected

** Description changed:

- This bug is for the login package. This only affects users of the
- development release and does not affect stable users. The bug in the
- password entry causes either the password to be entered only for the
- login to hang, or when attempting to enter the password, the computer
- quickly deletes any characters entered as if backspace was being held
- therefore preventing a user from being able to log in.
+ This bug is for the login package. This only affects users of the development 
release and does not affect stable users. The bug in the password entry causes 
either the password to be entered only for the login to hang, or when 
attempting to enter the password, the computer quickly deletes any characters 
entered as if backspace was being held therefore preventing a user from being 
able to log in.
+ --- 
+ ProblemType: Bug
+ ApportVersion: 2.20.11-0ubuntu57
+ Architecture: amd64
+ CasperMD5CheckResult: unknown
+ CurrentDesktop: ubuntu:GNOME
+ DistroRelease: Ubuntu 21.04
+ InstallationDate: Installed on 2021-02-12 (0 days ago)
+ InstallationMedia: Ubuntu 21.04 "Hirsute Hippo" - Alpha amd64 (20210212)
+ NonfreeKernelModules: nvidia_modeset nvidia
+ Package: gdm3 3.38.1-2ubuntu1.1
+ PackageArchitecture: amd64
+ ProcEnviron:
+  TERM=xterm-256color
+  PATH=(custom, no user)
+  XDG_RUNTIME_DIR=
+  LANG=en_US.UTF-8
+  SHELL=/bin/bash
+ ProcVersionSignature: Ubuntu 5.10.0-14.15-generic 5.10.11
+ Tags:  hirsute
+ Uname: Linux 5.10.0-14-generic x86_64
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
+ _MarkForUpload: True
+ mtime.conffile..etc.gdm3.custom.conf: 2021-02-12T13:25:57.150125

** Attachment added: "Dependencies.txt"
   
https://bugs.launchpad.net/bugs/1915570/+attachment/5463381/+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/1915570

Title:
  Login screen password entry not working

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

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

[Bug 1915615] [NEW] package bcmwl-kernel-source 6.30.223.271+bdcom-0ubuntu5 failed to install/upgrade: installed bcmwl-kernel-source package post-installation script subprocess returned error exit sta

2021-02-13 Thread JOSE SEBASTIAN
Public bug reported:

New to linux. Have no idea why the system crashed.

ProblemType: Package
DistroRelease: Ubuntu 20.04
Package: bcmwl-kernel-source 6.30.223.271+bdcom-0ubuntu5
ProcVersionSignature: Ubuntu 5.8.0-38.43~20.04.1-generic 5.8.18
Uname: Linux 5.8.0-38-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.14
AptOrdering:
 forticlient:amd64: Remove
 NULL: ConfigurePending
Architecture: amd64
CasperMD5CheckResult: skip
Date: Sun Feb 14 00:07:43 2021
DpkgHistoryLog:
 Start-Date: 2021-02-14  00:07:33
 Commandline: apt-get remove forticlient
 Requested-By: jose (1000)
 Remove: forticlient:amd64 (6.4.0.0851)
ErrorMessage: installed bcmwl-kernel-source package post-installation script 
subprocess returned error exit status 10
InstallationDate: Installed on 2020-10-15 (121 days ago)
InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
Python3Details: /usr/bin/python3.8, Python 3.8.5, python3-minimal, 
3.8.2-0ubuntu2
PythonDetails: N/A
RelatedPackageVersions:
 dpkg 1.19.7ubuntu3
 apt  2.0.2ubuntu0.2
SourcePackage: bcmwl
Title: package bcmwl-kernel-source 6.30.223.271+bdcom-0ubuntu5 failed to 
install/upgrade: installed bcmwl-kernel-source package post-installation script 
subprocess returned error exit status 10
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: bcmwl (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/1915615

Title:
  package bcmwl-kernel-source 6.30.223.271+bdcom-0ubuntu5 failed to
  install/upgrade: installed bcmwl-kernel-source package post-
  installation script subprocess returned error exit status 10

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

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

[Bug 1915426] Re: HP deskjet 2600 series scanner not working ubuntu 20.04 LTS

2021-02-13 Thread sessetessu2021
HP deskjet 2600 series scanner not working ubuntu 20.04 LTS
dont working my desktop and laptop when trying scan 
something HP deskjet 2600 series scanner not working

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

Title:
  HP deskjet 2600 series scanner not working ubuntu 20.04 LTS

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

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

[Bug 1915491] Re: Wifi adapter installed but can't be found in Settings

2021-02-13 Thread Jeremy
What results do you get from this command in terminal before and after
the issue

iwconfig

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

Title:
  Wifi adapter installed but can't be found in Settings

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

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

[Bug 1912327] Re: Ubiquity crashed when selecting WiFi network

2021-02-13 Thread Rik Mills
>From IRC:

[15:37] RikMills: looks like ssid should be converted from a QVariant 
to string before using it as a dictionary key.
[15:38] So something like "ssid = ssid.toString()" should fix it, but 
maybe similar changes are needed in other parts of the code.
[15:45] ssid = index.data(QtNetworkStore.SsidRole)
[15:46] that occurs in 2 definitions, so I guess yes
[15:46] Maybe just appending .toString() in both definitions will be 
enough

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

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

Title:
  Ubiquity crashed when selecting WiFi network

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

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

[Bug 1912327] Re: Ubiquity crashed when selecting WiFi network

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

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

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

Title:
  Ubiquity crashed when selecting WiFi network

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

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

[Bug 1894593] Re: Fractional scaling switch doesn't work in Wayland sessions

2021-02-13 Thread corrado venturini
Toggle “fractional scaling” and select 125% and 'Apply' the screen start
blinking and part of it is full of noise. To have screen again clean I
unchecked "fractional scaling” selected 'scale 200%' and then again
'scale 100%'

corrado@corrado-x7-hh-0212:~$ apt policy gnome-control-center
gnome-control-center:
  Installed: 1:3.38.3-1ubuntu3
  Candidate: 1:3.38.3-1ubuntu3
  Version table:
 *** 1:3.38.3-1ubuntu3 500
500 http://archive.ubuntu.com/ubuntu hirsute/main amd64 Packages
100 /var/lib/dpkg/status
corrado@corrado-x7-hh-0212:~$ inxi -Gx
Graphics:
  Device-1: Intel HD Graphics 630 vendor: ASRock driver: i915 v: kernel 
  bus ID: 00:02.0 
  Device-2: ARC USB 2.0 Camera type: USB driver: uvcvideo bus ID: 3-1.3:4 
  Display: wayland server: X.Org 1.20.9 compositor: gnome-shell driver: 
  loaded: modesetting unloaded: fbdev,vesa resolution: 1920x1080~60Hz 
  OpenGL: renderer: Mesa Intel HD Graphics 630 (KBL GT2) v: 4.6 Mesa 20.3.4 
  direct render: Yes 
corrado@corrado-x7-hh-0212:~$

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

Title:
  Fractional scaling switch doesn't work in Wayland sessions

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

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

[Bug 1915612] Re: package bcmwl-kernel-source error (Broadcom wifi not working)

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

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

Title:
  package bcmwl-kernel-source error (Broadcom wifi not working)

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

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

[Bug 1782342] Re: mawk memory corruption on recent tzdb data

2021-02-13 Thread Paul Eggert
This bug is fixed in Ubuntu 20.10 (and probably earlier versions), as
Ubuntu 20.10 uses mawk 1.3.4 20200120. So you can close the bug report.
(I'd close the bug report myself but don't seem to have the bits to do
that.)

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

Title:
  mawk memory corruption on recent tzdb data

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

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

[Bug 1911032] Re: autopkgtest fails in 2021

2021-02-13 Thread Launchpad Bug Tracker
This bug was fixed in the package mysql-8.0 - 8.0.23-1ubuntu2

---
mysql-8.0 (8.0.23-1ubuntu2) hirsute; urgency=medium

  * Add missing libzstd-dev on runtime dev package
(Closes: #981905)

 -- Gianfranco Costamagna   Thu, 04 Feb 2021
22:30:12 +0100

** Changed in: mysql-8.0 (Ubuntu)
   Status: Triaged => Fix Released

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

Title:
  autopkgtest fails in 2021

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-8.0/+bug/1911032/+subscriptions

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

[Bug 1882527] Re: mysql timeoutsec results in killing mysql process

2021-02-13 Thread Launchpad Bug Tracker
This bug was fixed in the package mysql-8.0 - 8.0.23-1ubuntu2

---
mysql-8.0 (8.0.23-1ubuntu2) hirsute; urgency=medium

  * Add missing libzstd-dev on runtime dev package
(Closes: #981905)

 -- Gianfranco Costamagna   Thu, 04 Feb 2021
22:30:12 +0100

** Changed in: mysql-8.0 (Ubuntu)
   Status: Confirmed => Fix Released

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

Title:
  mysql timeoutsec results in killing mysql process

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-8.0/+bug/1882527/+subscriptions

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

Re: [Bug 1915491] Re: Wifi adapter installed but can't be found in Settings

2021-02-13 Thread Md. Rezwanul Haque Razib
[image: Screenshot from 2021-02-14 00-14-05.png]

Currently, While I'm connected to wifi, I'm getting the above output on the
terminal when executing `iwconfig` command. If I face the issue again I
will post the result to this mail.


Sincerely,

*Md Rezwanul Haque Razib*

*Software Engineer*

*Vivasoft Ltd.*


On Sat, Feb 13, 2021 at 9:30 PM Jeremy <1915...@bugs.launchpad.net> wrote:

> What results do you get from this command in terminal before and after
> the issue
>
> iwconfig
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1915491
>
> Title:
>   Wifi adapter installed but can't be found in Settings
>
> Status in gnome-control-center package in Ubuntu:
>   Incomplete
>
> Bug description:
>   # Summary:
>   > ## Wifi Adpter Not found
>
>   ## Steps to Reproduce:
>   - I don't know
>
>
>   ## Expected Results:
>   Wifi should always be available
>
>   ## Problem Description:
>   Sometimes when startup my pc there is no wifi icon on the top right
> corner menu. When checking the wifi settings on the settings window it
> shows that the wifi adapter not found. But after restarting the pc,
> everything back to normal again. This is happening too frequently now.
>
>   * * *
>
>
>   Screenshot:
> https://drive.google.com/file/d/1i1gyhacC9I7zDHs4vGgxra9_7uvCDOR7/view?usp=sharing
>
>   ProblemType: Bug
>   DistroRelease: Ubuntu 20.04
>   Package: xorg 1:7.7+19ubuntu14
>   ProcVersionSignature: Ubuntu 5.8.0-43.49~20.04.1-generic 5.8.18
>   Uname: Linux 5.8.0-43-generic x86_64
>   ApportVersion: 2.20.11-0ubuntu27.16
>   Architecture: amd64
>   BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
>   CasperMD5CheckResult: skip
>   CompositorRunning: None
>   CurrentDesktop: ubuntu:GNOME
>   Date: Fri Feb 12 11:13:48 2021
>   DistUpgraded: Fresh install
>   DistroCodename: focal
>   DistroVariant: ubuntu
>   ExtraDebuggingInterest: I just need to know a workaround
>   GraphicsCard:
>Intel Corporation Skylake GT2 [HD Graphics 520] [8086:1916] (rev 07)
> (prog-if 00 [VGA controller])
>  Subsystem: Dell Latitude E7470 [1028:06dc]
>   InstallationDate: Installed on 2021-01-06 (36 days ago)
>   InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64
> (20200731)
>   MachineType: Dell Inc. Latitude E7470
>   ProcEnviron:
>PATH=(custom, no user)
>XDG_RUNTIME_DIR=
>LANG=en_US.UTF-8
>SHELL=/usr/bin/zsh
>   ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.8.0-43-generic
> root=UUID=26d49ac7-77fe-4d5d-abbd-c857cbefc6f2 ro quiet splash vt.handoff=7
>   SourcePackage: xorg
>   Symptom: display
>   UpgradeStatus: No upgrade log present (probably fresh install)
>   dmi.bios.date: 08/20/2018
>   dmi.bios.release: 1.20
>   dmi.bios.vendor: Dell Inc.
>   dmi.bios.version: 1.20.3
>   dmi.board.name: 047I7V
>   dmi.board.vendor: Dell Inc.
>   dmi.board.version: A00
>   dmi.chassis.type: 9
>   dmi.chassis.vendor: Dell Inc.
>   dmi.modalias:
> dmi:bvnDellInc.:bvr1.20.3:bd08/20/2018:br1.20:svnDellInc.:pnLatitudeE7470:pvr:rvnDellInc.:rn047I7V:rvrA00:cvnDellInc.:ct9:cvr:
>   dmi.product.family: Latitude
>   dmi.product.name: Latitude E7470
>   dmi.product.sku: 06DC
>   dmi.sys.vendor: Dell Inc.
>   version.compiz: compiz N/A
>   version.libdrm2: libdrm2 2.4.102-1ubuntu1~20.04.1
>   version.libgl1-mesa-dri: libgl1-mesa-dri 20.2.6-0ubuntu0.20.04.1
>   version.libgl1-mesa-glx: libgl1-mesa-glx 20.2.6-0ubuntu0.20.04.1
>   version.xserver-xorg-core: xserver-xorg-core 2:1.20.9-2ubuntu1.2~20.04.1
>   version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
>   version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.1.0-1
>   version.xserver-xorg-video-intel: xserver-xorg-video-intel
> 2:2.99.917+git20200226-1
>   version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.16-1
>
> To manage notifications about this bug go to:
>
> https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1915491/+subscriptions
>


** Attachment added: "Screenshot from 2021-02-14 00-14-05.png"
   
https://bugs.launchpad.net/bugs/1915491/+attachment/5463384/+files/Screenshot%20from%202021-02-14%2000-14-05.png

** Attachment added: "iwconfig(wifi-conected)-output.txt"
   
https://bugs.launchpad.net/bugs/1915491/+attachment/5463385/+files/iwconfig%28wifi-conected%29-output.txt

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

Title:
  Wifi adapter installed but can't be found in Settings

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

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

[Bug 1915614] Missing required logs.

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

apport-collect 1915614

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

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

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

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

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

Title:
  mozilla thunderbird

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

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

[Bug 1915614] ProcInterrupts.txt

2021-02-13 Thread sessetessu2021
apport information

** Attachment added: "ProcInterrupts.txt"
   
https://bugs.launchpad.net/bugs/1915614/+attachment/5463455/+files/ProcInterrupts.txt

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

Title:
  mozilla thunderbird

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

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

[Bug 1915614] ProcModules.txt

2021-02-13 Thread sessetessu2021
apport information

** Attachment added: "ProcModules.txt"
   
https://bugs.launchpad.net/bugs/1915614/+attachment/5463456/+files/ProcModules.txt

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

Title:
  mozilla thunderbird

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

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

[Bug 1915614] PulseList.txt

2021-02-13 Thread sessetessu2021
apport information

** Attachment added: "PulseList.txt"
   
https://bugs.launchpad.net/bugs/1915614/+attachment/5463457/+files/PulseList.txt

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

Title:
  mozilla thunderbird

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

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

[Bug 1915614] ProcCpuinfoMinimal.txt

2021-02-13 Thread sessetessu2021
apport information

** Attachment added: "ProcCpuinfoMinimal.txt"
   
https://bugs.launchpad.net/bugs/1915614/+attachment/5463454/+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/1915614

Title:
  mozilla thunderbird

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

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

[Bug 1915614] Lsusb-v.txt

2021-02-13 Thread sessetessu2021
apport information

** Attachment added: "Lsusb-v.txt"
   
https://bugs.launchpad.net/bugs/1915614/+attachment/5463452/+files/Lsusb-v.txt

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

Title:
  mozilla thunderbird

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

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

[Bug 1915614] ProcCpuinfo.txt

2021-02-13 Thread sessetessu2021
apport information

** Attachment added: "ProcCpuinfo.txt"
   
https://bugs.launchpad.net/bugs/1915614/+attachment/5463453/+files/ProcCpuinfo.txt

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

Title:
  mozilla thunderbird

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

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

[Bug 1915614] UdevDb.txt

2021-02-13 Thread sessetessu2021
apport information

** Attachment added: "UdevDb.txt"
   https://bugs.launchpad.net/bugs/1915614/+attachment/5463458/+files/UdevDb.txt

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

Title:
  mozilla thunderbird

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

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

[Bug 1915491] Re: Wifi adapter installed but can't be found in Settings

2021-02-13 Thread Jeremy
Power management might be crashing the driver, in terminal

sudo sed -i 's/3/2/' /etc/NetworkManager/conf.d/default-wifi-powersave-on.conf
systemctl restart network-manager.service

See if it happens again

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

Title:
  Wifi adapter installed but can't be found in Settings

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

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

[Bug 1915614] Lspci.txt

2021-02-13 Thread sessetessu2021
apport information

** Attachment added: "Lspci.txt"
   https://bugs.launchpad.net/bugs/1915614/+attachment/5463448/+files/Lspci.txt

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

Title:
  mozilla thunderbird

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

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

[Bug 1915614] Lspci-vt.txt

2021-02-13 Thread sessetessu2021
apport information

** Attachment added: "Lspci-vt.txt"
   
https://bugs.launchpad.net/bugs/1915614/+attachment/5463449/+files/Lspci-vt.txt

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

Title:
  mozilla thunderbird

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

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

[Bug 1915614] Lsusb.txt

2021-02-13 Thread sessetessu2021
apport information

** Attachment added: "Lsusb.txt"
   https://bugs.launchpad.net/bugs/1915614/+attachment/5463450/+files/Lsusb.txt

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

Title:
  mozilla thunderbird

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

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

[Bug 1915614] Lsusb-t.txt

2021-02-13 Thread sessetessu2021
apport information

** Attachment added: "Lsusb-t.txt"
   
https://bugs.launchpad.net/bugs/1915614/+attachment/5463451/+files/Lsusb-t.txt

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

Title:
  mozilla thunderbird

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

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

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

2021-02-13 Thread Rolando Gorgs
I can confirm that the new PGP solution is working flawlessly in
thunderbird 1:78.7.1+build1-0ubuntu0.20.04.1.

I personally don't _like_ this new integrated pgp approach but it works
as intended. Hope there will be more enigmail feeling soon but well,
this back port seems to be ready for production.

I've tested this on a virtualbox vm with ubuntu 20.04.1 and focal-
proposed enabled.

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

Title:
  Backport Thunderbird 78 to 20.04 LTS and 18.04 LTS

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

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

[Bug 1837156] Re: Quietly "saves" invalid event (incidence) start or end times as midnight (particularly affects fr_CA (French Canadian) sub-locale)

2021-02-13 Thread Philippe Cloutier
** Description changed:

  After switching from Debian 9 to Kubuntu 19.04 (KOrganizer 5.10.3), I
  noticed that event edition had broken with regards to times. No matter
  what start and end times would be entered, saving would store these as
  midnight. This would also affect existing events; editing these would
  corrupt times, even if these are left untouched.
  
  After investigation, this turned out to be a complicated issue.
  Ultimately, this symptom comes from 3 underlying issues. The first
  element explains why the regression happened at this moment: Qt Core's
  QLocale changed its short time format for the fr_CA sub-locale from
  version 29 to 32, from the earlier "23:59" to "23 h 59". This change may
  be undesirable and while there may be no ticket asking for reversion, I
  am on it: https://unicode-org.atlassian.net/browse/CLDR-8503
  
  The second element is that the widget used to input start and end times,
  KTimeComboBox, is very fragile with regards to time formats. It works
  with the most common, but fails with some which were less tested, like
- "23 h 59". With such a format, in invalid input mask is generated, and
+ "23 h 59". With such a format, an invalid input mask is generated, and
  instead of producing a "__ h __" field, the input is initialized to "__
  _ __", as reported in KDE ticket #409867:
  https://bugs.kde.org/show_bug.cgi?id=409867
  
  Due to issue #409867, when the users wants to enter, say, 23:45,
  incidenceeditor will get back an invalid time string which - if I
  understand correctly - would be in this example "2345". It is obviously
  impossible for incidenceeditor to do the right thing, but the third
  issue is that incidenceeditor does not properly handle this situation.
  Rather than reporting failure, it quietly "saves" a corrupted time, as
  reported in KDE ticket #409912:
  https://bugs.kde.org/show_bug.cgi?id=409912
  
  In the end, none of these issues is in the korganizer package, so this
  ticket does not request a change to korganizer itself. Its only role is
  to prevent other users from wasting a huge amount of time debugging. If
  Launchpad allows assigning a ticket to a certain package while still
  finding that ticket in lookups for another package, feel free to
  reassign this to incidenceeditor and mark it as affecting korganizer.
  Otherwise, this ticket can be closed or its severity decreased once
  Ubuntu's latest release has one of the causing issues solved.

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

Title:
  Quietly "saves" invalid event (incidence) start or end times as
  midnight (particularly affects fr_CA (French Canadian) sub-locale)

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

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

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

2021-02-13 Thread Steve Langasek
** Changed in: ubuntu-cdimage
 Assignee: Samaun Parvez (parvez1) => (unassigned)

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

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

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

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

[Bug 1915619] [NEW] Error: Unsupported server version: '8.0.23-0ubuntu0.20.10.1'

2021-02-13 Thread YAN
Public bug reported:

# innobackupex  --host='192.168.1.70'  --user=root  --password=xx
--no-timestamp ./backup

210213 15:21:18  version_check Connected to MySQL server
210213 15:21:18  version_check Executing a version check against the server...
210213 15:21:18  version_check Done.
210213 15:21:18 Connecting to MySQL server host: 192.168.1.70, user: root, 
password: set, port: not set, socket: not set
Error: Unsupported server version: '8.0.23-0ubuntu0.20.10.1'. Please report a 
bug at https://bugs.launchpad.net/percona-xtrabackup

No LSB modules are available.


Distributor ID: Ubuntu
Description: Ubuntu 20.10
Release: 20.10
Codename: groovy

mysql> status;
--
mysql  Ver 8.0.23-0ubuntu0.20.10.1 for Linux on x86_64 ((Ubuntu))

Connection id:  24531
Current database:
Current user:   root@localhost
SSL:Not in use
Current pager:  stdout
Using outfile:  ''
Using delimiter:;
Server version: 8.0.23-0ubuntu0.20.10.1 (Ubuntu)
Protocol version:   10
Connection: Localhost via UNIX socket
Server characterset:utf8mb4
Db characterset:utf8mb4
Client characterset:utf8mb4
Conn.  characterset:utf8mb4
UNIX socket:/var/run/mysqld/mysqld.sock
Binary data as: Hexadecimal
Uptime: 1 day 19 hours 44 min 2 sec

** Affects: percona-xtrabackup (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/1915619

Title:
  Error: Unsupported server version: '8.0.23-0ubuntu0.20.10.1'

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/percona-xtrabackup/+bug/1915619/+subscriptions

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

[Bug 174672]

2021-02-13 Thread Pander
Note to also take into account that a country can have multiple Mozilla
holiday calendars, each for a language spoken or relevant for that
country. Usually an alternative/additional calendar is in English for
international purposes.

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

Title:
  Allow easily adding holiday calendars

To manage notifications about this bug go to:
https://bugs.launchpad.net/infodomestic-spatial-objects/+bug/174672/+subscriptions

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

[Bug 1915614] CRDA.txt

2021-02-13 Thread sessetessu2021
apport information

** Attachment added: "CRDA.txt"
   https://bugs.launchpad.net/bugs/1915614/+attachment/5463431/+files/CRDA.txt

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

Title:
  mozilla thunderbird

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

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

[Bug 1915614] Re: mozilla thunderbird

2021-02-13 Thread sessetessu2021
apport information

** Description changed:

  mozilla thunderbird always update linux 
  when mozilla thunderbird new version
  update always last time mozilla thunderbird
  update last 2020 summer now is take this 
  mozilla thunderbird new versions update
  linux ubuntu LTS always is keep all
  emails safe now is new versio
  mozilla thunderbird is 78 update 
  all ubuntu 16 and 18 and 20 LTS
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27.16
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  snowden1456 F pulseaudio
   /dev/snd/controlC0:  snowden1456 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2021-02-07 (6 days ago)
  InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
  IwConfig:
   lono wireless extensions.
   
   enp2s0no wireless extensions.
  MachineType: MSI MS-7817
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=fi_FI.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-65-generic 
root=UUID=8603e1a2-896a-48b4-9a52-8620ce811f29 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-65.73-generic 5.4.78
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-65-generic N/A
   linux-backports-modules-5.4.0-65-generic  N/A
   linux-firmware1.187.9
  RfKill:
   
  Tags:  focal
  Uname: Linux 5.4.0-65-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/21/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: V10.9
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: B85M-E45 (MS-7817)
  dmi.board.vendor: MSI
  dmi.board.version: 2.0
  dmi.chassis.asset.tag: To be filled by O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: MSI
  dmi.chassis.version: 2.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrV10.9:bd04/21/2015:svnMSI:pnMS-7817:pvr2.0:rvnMSI:rnB85M-E45(MS-7817):rvr2.0:cvnMSI:ct3:cvr2.0:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: MS-7817
  dmi.product.sku: To be filled by O.E.M.
  dmi.product.version: 2.0
  dmi.sys.vendor: MSI
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27.16
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  snowden1456 F pulseaudio
   /dev/snd/controlC0:  snowden1456 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2021-02-07 (6 days ago)
  InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
  IwConfig:
   lono wireless extensions.
   
   enp2s0no wireless extensions.
  MachineType: MSI MS-7817
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=fi_FI.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-65-generic 
root=UUID=8603e1a2-896a-48b4-9a52-8620ce811f29 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-65.73-generic 5.4.78
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-65-generic N/A
   linux-backports-modules-5.4.0-65-generic  N/A
   linux-firmware1.187.9
  RfKill:
   
  Tags:  focal
  Uname: Linux 5.4.0-65-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/21/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: V10.9
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: B85M-E45 (MS-7817)
  dmi.board.vendor: MSI
  dmi.board.version: 2.0
  dmi.chassis.asset.tag: To be filled by O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: MSI
  dmi.chassis.version: 2.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrV10.9:bd04/21/2015:svnMSI:pnMS-7817:pvr2.0:rvnMSI:rnB85M-E45(MS-7817):rvr2.0:cvnMSI:ct3:cvr2.0:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: MS-7817
  dmi.product.sku: To be filled by O.E.M.
  dmi.product.version: 2.0
  dmi.sys.vendor: MSI
+ --- 
+ ProblemType: Bug
+ ApportVersion: 2.20.11-0ubuntu27.16
+ Architecture: amd64
+ AudioDevicesInUse:
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC1:  snowden1456 F pulseaudio
+  /dev/snd/controlC0:  snowden1456 F pulseaudio
+ CasperMD5CheckResult: skip
+ CurrentDesktop: ubuntu:GNOME
+ DistroRelease: Ubuntu 20.04
+ InstallationDate: Installed on 2021-02-07 (6 days ago)
+ InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
+ IwConfig:
+  lono wireless 

[Bug 1915614] CurrentDmesg.txt

2021-02-13 Thread sessetessu2021
apport information

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

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

Title:
  mozilla thunderbird

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

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

[Bug 1915614] Lspci.txt

2021-02-13 Thread sessetessu2021
apport information

** Attachment added: "Lspci.txt"
   https://bugs.launchpad.net/bugs/1915614/+attachment/5463433/+files/Lspci.txt

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

Title:
  mozilla thunderbird

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

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

[Bug 1915614] Lspci-vt.txt

2021-02-13 Thread sessetessu2021
apport information

** Attachment added: "Lspci-vt.txt"
   
https://bugs.launchpad.net/bugs/1915614/+attachment/5463434/+files/Lspci-vt.txt

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

Title:
  mozilla thunderbird

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

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

[Bug 1915614] PulseList.txt

2021-02-13 Thread sessetessu2021
apport information

** Attachment added: "PulseList.txt"
   
https://bugs.launchpad.net/bugs/1915614/+attachment/5463442/+files/PulseList.txt

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

Title:
  mozilla thunderbird

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

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

[Bug 1915614] UdevDb.txt

2021-02-13 Thread sessetessu2021
apport information

** Attachment added: "UdevDb.txt"
   https://bugs.launchpad.net/bugs/1915614/+attachment/5463443/+files/UdevDb.txt

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

Title:
  mozilla thunderbird

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

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

[Bug 1915614] WifiSyslog.txt

2021-02-13 Thread sessetessu2021
apport information

** Attachment added: "WifiSyslog.txt"
   
https://bugs.launchpad.net/bugs/1915614/+attachment/5463444/+files/WifiSyslog.txt

** Description changed:

  mozilla thunderbird always update linux 
  when mozilla thunderbird new version
  update always last time mozilla thunderbird
  update last 2020 summer now is take this 
  mozilla thunderbird new versions update
  linux ubuntu LTS always is keep all
  emails safe now is new versio
  mozilla thunderbird is 78 update 
  all ubuntu 16 and 18 and 20 LTS
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27.16
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  snowden1456 F pulseaudio
   /dev/snd/controlC0:  snowden1456 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2021-02-07 (6 days ago)
  InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
  IwConfig:
   lono wireless extensions.
   
   enp2s0no wireless extensions.
  MachineType: MSI MS-7817
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=fi_FI.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-65-generic 
root=UUID=8603e1a2-896a-48b4-9a52-8620ce811f29 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-65.73-generic 5.4.78
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-65-generic N/A
   linux-backports-modules-5.4.0-65-generic  N/A
   linux-firmware1.187.9
  RfKill:
   
  Tags:  focal
  Uname: Linux 5.4.0-65-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/21/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: V10.9
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: B85M-E45 (MS-7817)
  dmi.board.vendor: MSI
  dmi.board.version: 2.0
  dmi.chassis.asset.tag: To be filled by O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: MSI
  dmi.chassis.version: 2.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrV10.9:bd04/21/2015:svnMSI:pnMS-7817:pvr2.0:rvnMSI:rnB85M-E45(MS-7817):rvr2.0:cvnMSI:ct3:cvr2.0:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: MS-7817
  dmi.product.sku: To be filled by O.E.M.
  dmi.product.version: 2.0
  dmi.sys.vendor: MSI
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27.16
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  snowden1456 F pulseaudio
   /dev/snd/controlC0:  snowden1456 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2021-02-07 (6 days ago)
  InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
  IwConfig:
   lono wireless extensions.
   
   enp2s0no wireless extensions.
  MachineType: MSI MS-7817
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=fi_FI.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-65-generic 
root=UUID=8603e1a2-896a-48b4-9a52-8620ce811f29 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-65.73-generic 5.4.78
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-65-generic N/A
   linux-backports-modules-5.4.0-65-generic  N/A
   linux-firmware1.187.9
  RfKill:
   
  Tags:  focal
  Uname: Linux 5.4.0-65-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/21/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: V10.9
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: B85M-E45 (MS-7817)
  dmi.board.vendor: MSI
  dmi.board.version: 2.0
  dmi.chassis.asset.tag: To be filled by O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: MSI
  dmi.chassis.version: 2.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrV10.9:bd04/21/2015:svnMSI:pnMS-7817:pvr2.0:rvnMSI:rnB85M-E45(MS-7817):rvr2.0:cvnMSI:ct3:cvr2.0:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: MS-7817
  dmi.product.sku: To be filled by O.E.M.
  dmi.product.version: 2.0
  dmi.sys.vendor: MSI
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27.16
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  snowden1456 F pulseaudio
   /dev/snd/controlC0:  snowden1456 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2021-02-07 (6 days ago)
 

[Bug 1915614] ProcCpuinfoMinimal.txt

2021-02-13 Thread sessetessu2021
apport information

** Attachment added: "ProcCpuinfoMinimal.txt"
   
https://bugs.launchpad.net/bugs/1915614/+attachment/5463439/+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/1915614

Title:
  mozilla thunderbird

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

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

[Bug 1915614] ProcCpuinfo.txt

2021-02-13 Thread sessetessu2021
apport information

** Attachment added: "ProcCpuinfo.txt"
   
https://bugs.launchpad.net/bugs/1915614/+attachment/5463438/+files/ProcCpuinfo.txt

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

Title:
  mozilla thunderbird

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

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

[Bug 1915614] ProcInterrupts.txt

2021-02-13 Thread sessetessu2021
apport information

** Attachment added: "ProcInterrupts.txt"
   
https://bugs.launchpad.net/bugs/1915614/+attachment/5463440/+files/ProcInterrupts.txt

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

Title:
  mozilla thunderbird

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

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

[Bug 1915614] ProcModules.txt

2021-02-13 Thread sessetessu2021
apport information

** Attachment added: "ProcModules.txt"
   
https://bugs.launchpad.net/bugs/1915614/+attachment/5463441/+files/ProcModules.txt

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

Title:
  mozilla thunderbird

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

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

  1   2   3   >