[Bug 1541649] Re: Plymouth needs a safe method to unlock the device on boot without a physical keyboard.

2021-02-20 Thread Bug Watch Updater
** Changed in: plymouth
   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/1541649

Title:
  Plymouth needs a safe method to unlock the device on boot without a
  physical keyboard.

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

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

[Bug 1916324] Re: tracker-extract crashed with signal 31 in __GI___fstatat64()

2021-02-20 Thread Apport retracing service
*** This bug is a duplicate of bug 1916323 ***
https://bugs.launchpad.net/bugs/1916323

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

** Attachment removed: "CoreDump.gz"
   
https://bugs.launchpad.net/bugs/1916324/+attachment/5465424/+files/CoreDump.gz

** Attachment removed: "Disassembly.txt"
   
https://bugs.launchpad.net/bugs/1916324/+attachment/5465426/+files/Disassembly.txt

** Attachment removed: "ProcMaps.txt"
   
https://bugs.launchpad.net/bugs/1916324/+attachment/5465430/+files/ProcMaps.txt

** Attachment removed: "ProcStatus.txt"
   
https://bugs.launchpad.net/bugs/1916324/+attachment/5465431/+files/ProcStatus.txt

** Attachment removed: "Registers.txt"
   
https://bugs.launchpad.net/bugs/1916324/+attachment/5465432/+files/Registers.txt

** Attachment removed: "Stacktrace.txt"
   
https://bugs.launchpad.net/bugs/1916324/+attachment/5465433/+files/Stacktrace.txt

** Attachment removed: "ThreadStacktrace.txt"
   
https://bugs.launchpad.net/bugs/1916324/+attachment/5465434/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of private bug 1916323

** Information type changed from Private to Public

** Tags removed: need-amd64-retrace

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

Title:
  tracker-extract crashed with signal 31 in __GI___fstatat64()

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

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

[Bug 1349026] Re: regression: graphviz package does not configure plugins

2021-02-20 Thread anatoly techtonik
That was a problem with LXD container. There is no such error anymore,
so I believe this bug is fixed in recent Ubuntu versions.

** Bug watch added: LXD bug tracker #8490
   https://github.com/lxc/lxd/issues/8490

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

Title:
  regression: graphviz package does not configure plugins

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

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

[Bug 1349026] Re: regression: graphviz package does not configure plugins

2021-02-20 Thread anatoly techtonik
If anybody wants details on LXD bug - they are here
https://github.com/lxc/lxd/issues/8490#issuecomment-782596277

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

Title:
  regression: graphviz package does not configure plugins

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

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

[Bug 1502045] Re: Move from consolekit to logind

2021-02-20 Thread Stephen Kitt
** Changed in: solaar (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/1502045

Title:
  Move from consolekit to logind

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

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

[Bug 1916325] [NEW] Overly strict NAME_REGEX rejects valid hostnames

2021-02-20 Thread Jonathan Hunter
Public bug reported:

All our servers' hostnames start with a location identifier, which is
mostly numeric e.g. 123, 124 or sometimes 12A. A full hostname might be
12a-proxy-01.mydomain.co.uk, for example.

We are switching to Ubuntu but have hit this bug in the 20.04 curtin
installer, which prevents us setting the hostname during installation.
(Tested on plain 20.04 and on 20.04.02)

Our workaround has been to set a dummy hostname on installation, and
then change it back once curtin has finished - but that gets messy
especially as we are now looking into cloud-init and automation, where
this won't work.

The NAME_REGEX quoted by curtin is "[a-z_][a-z0-9_-]*" which correctly
prevents hostnames starting with a hyphen.. but it also prevents
otherwise perfectly valid hostnames that start with a number.
(Interestingly, an underscore is not defined as a valid hostname
character, but is included as valid in the regex above)

I believe the correct NAME_REGEX would be "[a-z0-9_][a-z0-9_-]*" - i.e.
adding 0-9 as valid characters at the start. (I've left the underscore
character in, also)

Thanks

Jonathan


Ref:
https://man7.org/linux/man-pages/man7/hostname.7.html#:~:text=Valid%20characters%20for%20hostnames%20are,to%20an%20address%20for%20use.
   Each element of the hostname must be from 1 to 63 characters long
   and the entire hostname, including the dots, can be at most 253
   characters long.  Valid characters for hostnames are ASCII(7)
   letters from a to z, the digits from 0 to 9, and the hyphen (-).
   A hostname may not start with a hyphen.

** Affects: curtin (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/1916325

Title:
  Overly strict NAME_REGEX rejects valid hostnames

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

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

[Bug 1908139] Re: ThinkPad T14s external display not working on ThinkPad USB-C Dock Gen2

2021-02-20 Thread Andreas Herrmann
The issue persists as of Feb. 20 2021 on Ubunutu 20.10 with the latest updates 
installed.
@kaihengfeng I tested with mainline 5.10 as requested, see above. Please let me 
know if you require further information or testing.

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

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

Title:
  ThinkPad T14s external display not working on ThinkPad USB-C Dock Gen2

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

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

[Bug 1915941] Re: Pinta crashes especially with large images

2021-02-20 Thread MadhuSoodanan
** Package changed: xorg (Ubuntu) => pinta (Ubuntu)

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

Title:
  Pinta crashes especially with large images

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

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

[Bug 1908139] Status changed to Confirmed

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

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

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

Title:
  ThinkPad T14s external display not working on ThinkPad USB-C Dock Gen2

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

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

[Bug 1916326] [NEW] package texlive-base (not installed) failed to install/upgrade: tentative de remplacement de « /usr/share/doc/texlive-doc/generic/iftex/iftex.pdf », qui appartient aussi au paquet

2021-02-20 Thread koua
Public bug reported:

I try to remove texlive with sudo apt-get remove texlive. than appeared
this bug.

ProblemType: Package
DistroRelease: Ubuntu 20.04
Package: texlive-base (not installed)
ProcVersionSignature: Ubuntu 5.4.0-65.73-generic 5.4.78
Uname: Linux 5.4.0-65-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.16
Architecture: amd64
CasperMD5CheckResult: skip
Date: Tue Feb 16 16:35:17 2021
ErrorMessage: tentative de remplacement de « 
/usr/share/doc/texlive-doc/generic/iftex/iftex.pdf », qui appartient aussi au 
paquet texlive-plain-generic 2017.20180305-2
Python3Details: /usr/bin/python3.8, Python 3.8.5, python3-minimal, 
3.8.2-0ubuntu2
PythonDetails: N/A
RelatedPackageVersions:
 dpkg 1.19.7ubuntu3
 apt  2.0.4
SourcePackage: texlive-base
Title: package texlive-base (not installed) failed to install/upgrade: 
tentative de remplacement de « 
/usr/share/doc/texlive-doc/generic/iftex/iftex.pdf », qui appartient aussi au 
paquet texlive-plain-generic 2017.20180305-2
UpgradeStatus: Upgraded to focal on 2021-01-15 (36 days ago)

** Affects: texlive-base (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/1916326

Title:
  package texlive-base (not installed) failed to install/upgrade:
  tentative de remplacement de « /usr/share/doc/texlive-
  doc/generic/iftex/iftex.pdf », qui appartient aussi au paquet texlive-
  plain-generic 2017.20180305-2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/texlive-base/+bug/1916326/+subscriptions

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

[Bug 1915941] Re: Pinta crashes especially with large images

2021-02-20 Thread MadhuSoodanan
Output of "Pinta" in Terminal:

Failed to load module "canberra-gtk-module"

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

Title:
  Pinta crashes especially with large images

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

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

[Bug 1915941] Re: Pinta crashes especially with large images

2021-02-20 Thread MadhuSoodanan
(sorry, I used all in small letters)

So the output of 'pinta' in Terminal is

Failed to load module "canberra-gtk-module"

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

Title:
  Pinta crashes especially with large images

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

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

[Bug 1914953] Re: grub2 incompatibility between at_keyboard and gfxterm modules lead to impossible to type passphrase or access ubuntu grub2 menu on a fully encrypted installation

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

** Changed in: grub2 (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/1914953

Title:
  grub2 incompatibility between at_keyboard and gfxterm modules lead to
  impossible to type passphrase or access ubuntu grub2 menu on a fully
  encrypted installation

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

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

[Bug 1916328] [NEW] at the end of installation ( 20.010) ubuntu, with 3 hard disks , one with files, ntfs, anoter with win 10 , and i try to erase the third one , that has debian 10 inside, i

2021-02-20 Thread stamatis stamatellos
Public bug reported:

at the end of  installation ( 20.010) ubuntu,  with 3  hard disks  ,
one with files,  NTFS, another with win 10 , and i try to  erase the
third one  , that has  Debian 10  inside,idelete the  last disk
to make a new  swap area  6 gb , and   make the installation.   at  the
end   of command  grub-install   .dev/sda1   the  system inform me that
the   system crashed. cannot install  grub-install on disk .  now i have
the last  information   process   that  writes " installation complete"
, installation is complete . you need to restart the computer  in order
to use the new installation.  (  i try  use the command grub-install
manually but i cannot  find  the terminal to do it. . (  the
installation is  direct  ( install ubuntu  not try ubuntu ) at
installation menu

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 20 14:12:35 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/1916328

Title:
  at the end of  installation ( 20.010) ubuntu,  with 3  hard disks  ,
  one with files,  ntfs, anoter with win 10 , and i try to  erase the
  third one  , that has  debian 10  inside,idelete the  last
  disk to make a new  sawap area  6 gb , and   make the installation.
  ath the the of conmmad  grub-install   .dev/sda1   the  sytem inform
  me tat  the   system carashed

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

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

[Bug 1914953] Re: grub2 incompatibility between at_keyboard and gfxterm modules lead to impossible to type passphrase or access ubuntu grub2 menu on a fully encrypted installation

2021-02-20 Thread John Doe
I can confirm this bug.
But a qemu machine seems unaffected.


There is another effect:

Step 1: Let the GRUB console start.

Step 2: select console as terminal_input and terminal_output. This is
the default anyways.

Step 3: set a non-US keyboard layout
since console is the active terminal_input, the new layout has no effect yet

Step 4: set console AND at_keyboard (both! This is possible) as terminal_input
now ALL keys you press are handled by at_keyboard. You can detect this because 
the non-US keyboard layout is used for all keys pressed. There is no delay, 
everything just works great right now.

Step 5: activate gfxterm as terminal_output
Now strange things happen: press a key that would be affected by the non-US 
keboard layout. You get random output now: the character you see can be 
affected by the non-US layout, it can be the US layout character or the 
keypress does nothing at all.
The only difference to step 4: gfxterm is active


Why does gfxterm affect at_keyboard?

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

Title:
  grub2 incompatibility between at_keyboard and gfxterm modules lead to
  impossible to type passphrase or access ubuntu grub2 menu on a fully
  encrypted installation

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

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

Re: [Bug 1878279] Re: MSFT0004:00 06CB:CD98 Touchpad/trackpad mouse randomly not recognized from any given boot

2021-02-20 Thread Michael Amplatz
The first problem is that a BIOS-Update is only delivered as an EXE-file 
for Windows 10.

Does this work with WINE?

Am 19.02.21 um 12:05 schrieb Hans de Goede:
> I've been debugging a similar issue together with a Fedora user:
> https://bugzilla.redhat.com/show_bug.cgi?id=1871793
> (note this bug is set to private atm, so you can likely not view this, I've 
> asked the reporter if it is ok to open it up)
>
> I see some comments here about things no longer working after a BIOS
> upgrade, here is what I wrote about this in the Fedora bug:
>
> "Sometimes BIOS upgrades don't clear the BIOS settings even though they
> should, causing the new BIOS to interpret the binary settings blob from
> the old BIOS in the wrong way. This may also cause hidden settings to be
> wrong.
>
> Have you tried loading the BIOS default or optimal settings?"
>
> And it turns out that on the reporters "Lenovo IdeaPad 5 14IIL05" the
> fix for this issue is the combination of:
>
> 1. Install the latest BIOS
> 2. Enter setup, load default or optimal settings.
> 3. Save settings, reboot
>
> Please give this a try and if this works, please let us know that this
> helped.
>
> If you are adding a comment about this helping or not, it would also be
> useful to know:
>
> 1. If you tried "pci=nocrs" with older BIOS versions and if that helped with 
> the older BIOS
> 2. If you are still using "pci=nocrs" with the newer BIOS
> 3. If you are still using "pci=nocrs" with the newer BIOS, please try 
> removing "pci=nocrs" from the kernel commandline, do things still work?
>
> Note for the Fedora reporter things worked with:
>
> 1. The old BIOS + "pci=nocrs"
> 2. The new BIOS + default-settings-load without needing "pci=nocrs"
>
>
> ** Bug watch added: Red Hat Bugzilla #1871793
> https://bugzilla.redhat.com/show_bug.cgi?id=1871793
>

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

Title:
  MSFT0004:00 06CB:CD98 Touchpad/trackpad mouse randomly not recognized
  from any given boot

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

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

[Bug 1916329] [NEW] Will not run without installing runc

2021-02-20 Thread Nikos Mavrogiannopoulos
Public bug reported:

If I do `apt install podman` on a clean install and try to run it, I get:
$ podman run -ti ubuntu:20.04 /bin/bash
Error: default OCI runtime "runc" not found: invalid argument


If in addition I do `apt install runc`, everything works well.

I'd expect the component podman to run correctly without the manual
installation of runc.

** Affects: libpod (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/1916329

Title:
  Will not run without installing runc

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

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

[Bug 192877] Re: pdftex for some reason scans the whole home directory

2021-02-20 Thread Nikos Mavrogiannopoulos
Marking it as fix released as it seems to be solved in later versions.

** Changed in: texlive-bin (Ubuntu)
   Status: In Progress => 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/192877

Title:
  pdftex for some reason scans the whole home directory

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/texlive-bin/+bug/192877/+subscriptions

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

[Bug 1872476] Re: Shared files are shown as folders

2021-02-20 Thread Nathan Rennie-Waldock
Turns out it's caused by user.DOSATTRIB being empty (missing attribute
doesn't cause this). I can reproduce with simply `setfattr -n
user.DOSATTRIB testfile.txt`

Currently testing a patch on my servers to handle this, I'll attach the
patch and also make a PPA for anyone wanting to test later today.

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

Title:
  Shared files are shown as folders

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

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

[Bug 1860921] Re: Missing window decorations in VNC

2021-02-20 Thread Kai Webber
Few notes from my research of this problem:

https://bugzilla.xfce.org/show_bug.cgi?id=16713

> Actually, the problem is the lack of XRender support in the
tightvncserver Xserver.

https://sourceforge.net/p/vnc-tight/mailman/message/28243000/

> Unfortunately, TightVNC for Unix/Linux is quite old, it was not updated for 
> years, and I guess it would not be simple to enable Xrender in it.
> So I'd recommend looking at some other VNC-compatible servers for Unix, e.g. 
> TigerVNC or RealVNC's one.

So new vnc server is fastest workaround.
I migrated to TigerVNC but caught 
https://github.com/TigerVNC/tigervnc/issues/800
Fixed it by adding view-only password with "vncpasswd"
Works fine so far.

** Bug watch added: github.com/TigerVNC/tigervnc/issues #800
   https://github.com/TigerVNC/tigervnc/issues/800

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

Title:
  Missing window decorations in VNC

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

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

[Bug 1916330] Re: tracker-extract crashed with signal 31 in __GI___fstatat64()

2021-02-20 Thread Apport retracing service
*** This bug is a duplicate of bug 1916323 ***
https://bugs.launchpad.net/bugs/1916323

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

** Attachment removed: "CoreDump.gz"
   
https://bugs.launchpad.net/bugs/1916330/+attachment/5465453/+files/CoreDump.gz

** Attachment removed: "Disassembly.txt"
   
https://bugs.launchpad.net/bugs/1916330/+attachment/5465455/+files/Disassembly.txt

** Attachment removed: "ProcMaps.txt"
   
https://bugs.launchpad.net/bugs/1916330/+attachment/5465458/+files/ProcMaps.txt

** Attachment removed: "ProcStatus.txt"
   
https://bugs.launchpad.net/bugs/1916330/+attachment/5465459/+files/ProcStatus.txt

** Attachment removed: "Registers.txt"
   
https://bugs.launchpad.net/bugs/1916330/+attachment/5465460/+files/Registers.txt

** Attachment removed: "Stacktrace.txt"
   
https://bugs.launchpad.net/bugs/1916330/+attachment/5465461/+files/Stacktrace.txt

** Attachment removed: "ThreadStacktrace.txt"
   
https://bugs.launchpad.net/bugs/1916330/+attachment/5465462/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of private bug 1916323

** Information type changed from Private to Public

** Tags removed: need-amd64-retrace

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

Title:
  tracker-extract crashed with signal 31 in __GI___fstatat64()

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

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

[Bug 1893650] Re: Chromium snap causes network traffic. (Duh!)

2021-02-20 Thread rew
(earlier this week:) To debug this further I started chromium under
"strace -f -o /tmp/..."  : Must be run as root. Hmm.

Today I tried something different. I used strace on ALL 33 chrome
processes. Many did something every second or so, just one was in a
tight loop. This is also the process that continues to use about 30% of
one core.

I used "task manager" from Chrome to try to figure out what chrome would
call this process itself. I expected to find "browser", but the top CPU-
users according to chrome were using only about 2% of CPU time, so it is
not listed on the "task manager" list. :-/

The process that is using CPU time, turns out to be the same as the one
that is causing the network traffic: Just stopping that one process
causes the network traffic to stop.

What I don't understand is how the calls:


poll([{fd=11, events=POLLIN}, {fd=12, events=POLLIN}, {fd=30, events=POLLIN}, 
{fd=31, events=POLLIN}, {fd=41, events=POLLIN}], 5, 0) = 1 ([{fd=12, 
revents=POLLIN}])
recvmsg(30, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily 
unavailable)
read(12, "!", 2)= 1
write(28, "\0", 1)  = 1
recvmsg(30, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily 
unavailable)
recvmsg(31, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily 
unavailable)
recvmsg(31, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily 
unavailable)
recvmsg(31, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily 
unavailable)
poll([{fd=11, events=POLLIN}, {fd=12, events=POLLIN}, {fd=30, events=POLLIN}, 
{fd=31, events=POLLIN}, {fd=41, events=POLLIN}], 5, 0) = 0 (Timeout)
recvmsg(30, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily 
unavailable)
recvmsg(30, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily 
unavailable)
recvmsg(31, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily 
unavailable)
recvmsg(31, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily 
unavailable)
recvmsg(31, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily 
unavailable)

end up causing NFS traffic. It is about 50/50 that I see a timeout and "data 
available on fd 12" 
When that data is available and read (one character) then often one character 
is written to fd 30 (more than 50% of the cases, but not always). 

The three filedescriptors are a pipe and two sockets. I don't know how
to find out where they go.

lr-x-- 1 wolff wolff 64 Feb 20 13:40 12 -> 'pipe:[42472991]'
lrwx-- 1 wolff wolff 64 Feb 20 13:40 30 -> 'socket:[42471337]'
lrwx-- 1 wolff wolff 64 Feb 20 13:40 31 -> 'socket:[42470374]'

I see 4637 poll calls each 10 seconds, 2270  read (12...) calls (49%)
and 1537 (33%) writes to fd 30. With about 23000 total EAGAIN calls to
recvmsg. The total of 23000 corresponds to the number of network packets
in a period of 10 seconds...

So my conclusion is that

recvmsg(30, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily 
unavailable)
recvmsg(30, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily 
unavailable)
recvmsg(31, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily 
unavailable)
recvmsg(31, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily 
unavailable)
recvmsg(31, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily 
unavailable)

is causing NFS(?!) network traffic.

OK. Found it That process has many tasks and pipe 12/13 is used for
inter-task communciation.  Some of the other tasks are spinning on
statting and/or opening some files:

/home/wolff/snap/chromium/common/chromium/Default/databases/Databases.db-wal
/home/wolff/snap/chromium/common/chromium/Default/databases/Databases.db-journal
/home/wolff/snap/chromium/common/chromium/Default/File System/primary.origin

These files don't exist. (such a "does not exist" is not cached by NFS,
by design).

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

Title:
  Chromium snap causes network traffic. (Duh!)

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

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

[Bug 1916331] [NEW] Cannot Select TimeZone at Install Time (Kubuntu)

2021-02-20 Thread Marco Parillo
Public bug reported:

Installing Daily Hirsute Hippo Live Image from 2021-02-20 05:43
My region came up as Antigua. When I changed it to United States, I could not 
select my time zone.

https://irc-attachments.kde.org/tw91cuWe/file_41777.jpg

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


** Tags: hirsute

** Attachment added: "Possible root cause"
   
https://bugs.launchpad.net/bugs/1916331/+attachment/5465463/+files/file_41777.jpg

** Tags added: hirsute

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

Title:
  Cannot Select TimeZone at Install Time (Kubuntu)

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

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

[Bug 588569] Re: Uses excessive memory on import

2021-02-20 Thread Alexander Kallenbach
More than ten years later, I still have the same problem. (Ubuntu 20.10;
Shotwell 0.30.10)). Shouldn't such a bug also be marked as a security
issue? Isn't such a memory overflow potentially dangerous?

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

Title:
  Uses excessive memory on import

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

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

[Bug 1916331] Re: Cannot Select TimeZone at Install Time (Kubuntu)

2021-02-20 Thread Rik Mills
** Changed in: ubiquity (Ubuntu)
   Status: New => Confirmed

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

** Tags added: kubuntu

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

Title:
  Cannot Select TimeZone at Install Time (Kubuntu)

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

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

[Bug 1893650] Re: Chromium snap causes network traffic. (Duh!)

2021-02-20 Thread rew
I copied the "common" directory of ~/snap/chromium to a local filesystem
(1Gb ) and created a symlink to point to the local version.

When I start chromium I then get:

 mkdir: cannot create directory '/home/wolff/snap/chromium/common': File
exists

and chrome refuses to start. I then restored my backup and chromium is
back to the old behaviour.

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

Title:
  Chromium snap causes network traffic. (Duh!)

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

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

[Bug 1915307] Re: Please merge sudo 1.9.5p2-2 (main) from Debian unstable (main)

2021-02-20 Thread Launchpad Bug Tracker
This bug was fixed in the package sudo - 1.9.5p2-2ubuntu3

---
sudo (1.9.5p2-2ubuntu3) hirsute; urgency=medium

  * No change rebuild with fixed ownership.

 -- Dimitri John Ledkov   Thu, 18 Feb 2021 00:03:21
+

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

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

Title:
  Please merge sudo 1.9.5p2-2 (main) from Debian unstable (main)

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

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

[Bug 588569] Re: Uses excessive memory on import

2021-02-20 Thread Alexander Kallenbach
Opened a bug report on Gnomes Gitlab:
https://gitlab.gnome.org/GNOME/shotwell/-/issues/323

** Bug watch added: gitlab.gnome.org/GNOME/shotwell/-/issues #323
   https://gitlab.gnome.org/GNOME/shotwell/-/issues/323

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

Title:
  Uses excessive memory on import

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

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

[Bug 1916319] Re: Excessive number of disparate fonts bundled together

2021-02-20 Thread Gunnar Hjalmarsson
Thanks for your report. It seems to be an offshoot from
.

Please note that the fonts-noto packaging happens at Debian, so Debian
is a more proper place to bring up this discussion.

I see the old bug . Actually, the fonts-
noto package is a meta package which pulls a bunch of binaries:

$ apt depends fonts-noto
fonts-noto
  Depends: fonts-noto-core
  Recommends: fonts-noto-cjk
  Recommends: fonts-noto-cjk-extra
  Recommends: fonts-noto-color-emoji
  Recommends: fonts-noto-extra
  Recommends: fonts-noto-mono
  Recommends: fonts-noto-ui-core
  Recommends: fonts-noto-ui-extra
  Recommends: fonts-noto-unhinted

But since your request is about splitting fonts-noto-core further, I
don't think the old Debian bug applies, so you'd better submit a new
one.

** Bug watch added: Debian Bug tracker #756456
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=756456

** Changed in: fonts-noto (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/1916319

Title:
  Excessive number of disparate fonts bundled together

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/fonts-noto/+bug/1916319/+subscriptions

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

[Bug 1916335] [NEW] Keyboard Layout display incorrectly numeric keyboard when "numlock always on" is active

2021-02-20 Thread Mlocik97
Public bug reported:

When I open "Show keyboard layout" it show buttons like "Home, Up, Pg
Up" on Numeric keyboard, even when "NumLock always on" is active, (but
pressing number 7 that is show as "Home" button, correctly return symbol
"7").

Screenshot: https://i.imgur.com/26wD4lW.png

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: ubuntu-settings 20.04.5
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: Sat Feb 20 14:50:57 2021
InstallationDate: Installed on 2021-02-13 (6 days ago)
InstallationMedia: Ubuntu 20.04.2.0 LTS "Focal Fossa" - Release amd64 
(20210209.1)
PackageArchitecture: all
SourcePackage: ubuntu-settings
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: ubuntu
 Importance: Undecided
 Status: New

** Affects: console-setup (Ubuntu)
 Importance: Undecided
 Status: New

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


** Tags: amd64 apport-bug focal

** Also affects: ubuntu-settings (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: console-setup (Ubuntu)
   Importance: Undecided
   Status: New

** Description changed:

  When I open "Show keyboard layout" it show buttons like "Home, Up, Pg
  Up" on Numeric keyboard, even when "NumLock always on" is active, but
- pressing number 7 ("that is show as "Home" button, correctly return
- symbol "7".
+ pressing number 7 (that is show as "Home" button, correctly return
+ symbol "7").
  
  Screenshot: https://i.imgur.com/26wD4lW.png
  
  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: ubuntu-settings 20.04.5
  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: Sat Feb 20 14:50:57 2021
  InstallationDate: Installed on 2021-02-13 (6 days ago)
  InstallationMedia: Ubuntu 20.04.2.0 LTS "Focal Fossa" - Release amd64 
(20210209.1)
  PackageArchitecture: all
  SourcePackage: ubuntu-settings
  UpgradeStatus: No upgrade log present (probably fresh install)

** Description changed:

  When I open "Show keyboard layout" it show buttons like "Home, Up, Pg
- Up" on Numeric keyboard, even when "NumLock always on" is active, but
- pressing number 7 (that is show as "Home" button, correctly return
- symbol "7").
+ Up" on Numeric keyboard, even when "NumLock always on" is active, (but
+ pressing number 7 that is show as "Home" button, correctly return symbol
+ "7").
  
  Screenshot: https://i.imgur.com/26wD4lW.png
  
  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: ubuntu-settings 20.04.5
  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: Sat Feb 20 14:50:57 2021
  InstallationDate: Installed on 2021-02-13 (6 days ago)
  InstallationMedia: Ubuntu 20.04.2.0 LTS "Focal Fossa" - Release amd64 
(20210209.1)
  PackageArchitecture: all
  SourcePackage: ubuntu-settings
  UpgradeStatus: No upgrade log present (probably fresh install)

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

Title:
  Keyboard Layout display incorrectly numeric keyboard when "numlock
  always on" is active

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

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

[Bug 1916336] [NEW] ubuquity crash during Groovy live install perhaps because I choose zsh and cypher

2021-02-20 Thread tallagrand
Public bug reported:

partitioning was zsh with cypher 
my first time with these settings 
Ubuntu 20.10 \n \l

ProblemType: Bug
DistroRelease: Ubuntu 20.10
Package: ubiquity 20.10.13.1 [modified: 
usr/lib/ubiquity/plugins/ubi-usersetup.py 
usr/lib/ubiquity/user-setup/user-setup-ask-oem]
ProcVersionSignature: Ubuntu 5.8.0-43.49-generic 5.8.18
Uname: Linux 5.8.0-43-generic x86_64
NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
ApportVersion: 2.20.11-0ubuntu50.5
Architecture: amd64
CasperMD5CheckResult: pass
CasperVersion: 1.455
CurrentDesktop: ubuntu:GNOME
Date: Sat Feb 20 15:00:09 2021
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz boot=casper 
file=/cdrom/preseed/ubuntu.seed only-ubiquity quiet splash 
oem-config/enable=true ---
LiveMediaBuild: Ubuntu 20.10.0 2021.02.19 amd64 "Yourdev Groovy Gorilla" 
(20210219)
ProcEnviron:
 LANGUAGE=fr_FR.UTF-8
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=fr_FR.UTF-8
 LC_NUMERIC=C.UTF-8
RebootRequiredPkgs:
 linux-image-5.8.0-43-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.1

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

Title:
  ubuquity crash during Groovy live install perhaps because I choose zsh
  and cypher

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1916336/+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-20 Thread Magnus Falk
Hello,
The installer crashed during installation of Jamulus OS on my Seagate BarraCuda 
510 M2 SSD from USB live image. The bug was already reported (3rd party 
drivers) but I have some extra hardware info in attached JamulusOS.txt-file if 
needed.
Thanks for an excellent work!
Yours Magnus Falk in Oslo, Norway

** Attachment added: "Version, cpuinfo, meminfo, dmesg, uname -a"
   
https://bugs.launchpad.net/ubuntu-cdimage/+bug/1871268/+attachment/5465472/+files/JamulusOS.txt

-- 
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 1916336] Re: ubuquity crash during Groovy live install perhaps because I choose zsh and cypher

2021-02-20 Thread tallagrand
sorry my mistake
not zsh but zfs

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

Title:
  ubuquity crash during Groovy live install perhaps because I choose zsh
  and cypher

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

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

[Bug 1865642] Re: package dma 0.11-2 failed to install/upgrade: installed dma package post-installation script subprocess returned error exit status 128

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

** Changed in: dma (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/1865642

Title:
  package dma 0.11-2 failed to install/upgrade: installed dma package
  post-installation script subprocess returned error exit status 128

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

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

[Bug 1865642] Re: package dma 0.11-2 failed to install/upgrade: installed dma package post-installation script subprocess returned error exit status 128

2021-02-20 Thread intherye
Also happened for me when updating from 18.04 to 20.04 on a x64-VM
(qemu/kvm).

I worked around by "apt remove dma", "apt install dma"

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

Title:
  package dma 0.11-2 failed to install/upgrade: installed dma package
  post-installation script subprocess returned error exit status 128

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

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

[Bug 1773765] Re: There is a possibility that 'running' notification will remain

2021-02-20 Thread Radosław Piliszek
This is fixed in a later Train release. The current is 9.1.1.

Ubuntu has to build the package.

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

Title:
  There is a possibility that 'running' notification will remain

To manage notifications about this bug go to:
https://bugs.launchpad.net/charm-masakari/+bug/1773765/+subscriptions

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

[Bug 1773765] Re: There is a possibility that 'running' notification will remain

2021-02-20 Thread Radosław Piliszek
Ussuri* release. Sorry for the confusion.

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

Title:
  There is a possibility that 'running' notification will remain

To manage notifications about this bug go to:
https://bugs.launchpad.net/charm-masakari/+bug/1773765/+subscriptions

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

[Bug 1912052] Re: [Acer Spin 5 - SP513-54N] External headset microphone not working on Ubuntu 20.10 (not even wired, cable headset)

2021-02-20 Thread Carla Sella
I have a DELL XPS-8940 and both a usb mic or 3.5mm jack mic do not work.
They are detected by the operating system and listed in Input section of sound 
settings, but they do not work, no sound is detected when talking or recording.


*-multimedia
 description: Audio device
 product: Comet Lake PCH cAVS
 vendor: Intel Corporation
 physical id: 1f.3
 bus info: pci@:00:1f.3
 version: 00
 width: 64 bits
 clock: 33MHz
 capabilities: pm msi bus_master cap_list
 configuration: driver=snd_hda_intel latency=32
 resources: irq:165 memory:e5418000-e541bfff 
memory:e510-e51f


 *-multimedia
description: Audio device
product: TU104 HD Audio Controller
vendor: NVIDIA Corporation
physical id: 0.1
bus info: pci@:01:00.1
version: a1
width: 32 bits
clock: 33MHz
capabilities: pm msi pciexpress bus_master cap_list
configuration: driver=snd_hda_intel latency=0
resources: irq:17 memory:e508-e5083fff



$ arecord -l
 List of CAPTURE Hardware Devices 
card 0: PCH [HDA Intel PCH], device 0: ALC3861 Analog [ALC3861 Analog]
  Subdevices: 0/1
  Subdevice #0: subdevice #0
card 2: Device [USB PnP Sound Device], device 0: USB Audio [USB Audio]
  Subdevices: 0/1
  Subdevice #0: subdevice #0

The strange thing is that the mic on my Logitech Webcam C310 works just
fine.

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

Title:
  [Acer Spin 5 - SP513-54N] External headset microphone not working on
  Ubuntu 20.10 (not even wired, cable headset)

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

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

[Bug 1883877] Re: Resync wireguard/wireguard-linux-compat with development

2021-02-20 Thread Amr Ibrahim
** Changed in: wireguard-linux-compat (Ubuntu)
   Status: In Progress => Fix Released

** Changed in: wireguard (Ubuntu)
   Status: In Progress => 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/1883877

Title:
  Resync wireguard/wireguard-linux-compat with development

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

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

[Bug 1916117] Re: CVE-2021-3177 in python2.7

2021-02-20 Thread Saif Hakim
** Summary changed:

- CVE-2021-3177
+ CVE-2021-3177 in python2.7

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

Title:
  CVE-2021-3177 in python2.7

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

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

[Bug 1916305] Re: Telegraf shouldn't automatically attempt to connect to influxdb after installation

2021-02-20 Thread Launchpad Bug Tracker
This bug was fixed in the package telegraf - 1.17.2+ds1-0ubuntu3

---
telegraf (1.17.2+ds1-0ubuntu3) hirsute; urgency=medium

  * d/rules: Disable test for inputs/riemann_listener.
The test is currently failing with Go 1.16.  The issue has been
reported upstream.

 -- Sergio Durigan Junior   Sat, 20 Feb
2021 01:10:20 -0500

** Changed in: telegraf (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/1916305

Title:
  Telegraf shouldn't automatically attempt to connect to influxdb after
  installation

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

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

[Bug 1916339] [NEW] Error copying Grub during Ubuntu install on SolidRun HoneyComb LX2 Arm64 workstation

2021-02-20 Thread Samer EL-Haj-Mahmoud
Public bug reported:

During Ubuntu installation on SolidRun HoneyComb LX2 workstation, an
error occurs at the end of installation while setting up Grub. The error
is caused by EFI SetVariable call fail. However, this results in a
potentially non-bootable Ubuntu installation on the disk. The installer
should instead place the default /efi/boot/bootaa64.efi boot loader, and
the  correct grub.cfg configuration to find and load the kernel and the
initrd.

This issue happens with all versions of Ubuntu aarch64 (desktop and
server), including 20.04.2, 20.10, and 21.04

ProblemType: Bug
DistroRelease: Ubuntu 21.04
Package: ubiquity 21.04.8
ProcVersionSignature: Ubuntu 5.8.0-36.40+21.04.1-generic 5.8.18
Uname: Linux 5.8.0-36-generic aarch64
NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
ApportVersion: 2.20.11-0ubuntu58
Architecture: arm64
CasperMD5CheckResult: pass
CasperVersion: 1.456
Date: Sat Feb 20 12:00:37 2021
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz quiet --- modprobe.blacklist=amdgpu
LiveMediaBuild: Ubuntu 21.04 "Hirsute Hippo" - Alpha arm64 (20210217)
RebootRequiredPkgs:
 linux-image-5.8.0-36-generic
 linux-base
SourcePackage: grub-installer
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: apport-bug arm64 hirsute ubiquity-21.04.8

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

Title:
  Error copying Grub during Ubuntu install on SolidRun HoneyComb LX2
  Arm64 workstation

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

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

[Bug 1916340] [NEW] Logitech G920 Driving Force don't work when using external USB hub

2021-02-20 Thread Todor Iliev
Public bug reported:

I bought a USB hubs that allow to switch ON and OFF every USB port separately. 
Idea is not to connect and disconnect all the time unnecessary USB peripheral 
devices like cameras, and especially Logitech G920 Driving Force gaming wheel. 
I want to notice there is no hardware problem – the wheel is fully functional 
thru the USB hub under Windows 10.
The following is the output of the lsusb and dmesg -w commands in the following 
situation:
1. No hub connected to PC
2. USB hub connected to PC, USB ports on the hub all switched off.
3. USB hub connected to PC, Logitech G920 Driving Force connected and switched 
on thru the USB hub
4. After connecting Logitech G920 Driving Force directly to PC(the wheel is 
working):
>From what I see when the wheel is connected thru the USB hub HID++ force 
>feedback module is not loading.


1.No hub connected to PC:
lsusb
Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 006 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 005 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 006: ID 1532:021e Razer USA, Ltd 
Bus 001 Device 005: ID 1532:005c Razer USA, Ltd 
Bus 001 Device 004: ID 046d:082b Logitech, Inc. Webcam C170
Bus 001 Device 003: ID 1532:0514 Razer USA, Ltd 
Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

2.USB HUB connected to PC, USB ports on hub switched off:

lsusb
Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 006 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 005 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 003 Device 005: ID 05e3:0610 Genesys Logic, Inc. 4-port hub
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 006: ID 1532:021e Razer USA, Ltd 
Bus 001 Device 005: ID 1532:005c Razer USA, Ltd 
Bus 001 Device 004: ID 046d:082b Logitech, Inc. Webcam C170
Bus 001 Device 003: ID 1532:0514 Razer USA, Ltd 
Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

3.After switching on Logitech G920 Driving Force THRU USB hub:
lsusb
Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 006 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 005 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 003 Device 007: ID 046d:c261 Logitech, Inc. 
Bus 003 Device 005: ID 05e3:0610 Genesys Logic, Inc. 4-port hub
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 006: ID 1532:021e Razer USA, Ltd 
Bus 001 Device 005: ID 1532:005c Razer USA, Ltd 
Bus 001 Device 004: ID 046d:082b Logitech, Inc. Webcam C170
Bus 001 Device 003: ID 1532:0514 Razer USA, Ltd 
Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

dmesg -w
[ 7127.803087] usb 3-1.4: new full-speed USB device number 7 using xhci_hcd
[ 7127.929279] usb 3-1.4: New USB device found, idVendor=046d, idProduct=c261, 
bcdDevice=96.01
[ 7127.929284] usb 3-1.4: New USB device strings: Mfr=1, Product=2, 
SerialNumber=3
[ 7127.929287] usb 3-1.4: Product: G920 Driving Force Racing Wheel for Xbox One
[ 7127.929302] usb 3-1.4: Manufacturer: Logitech
[ 7127.929305] usb 3-1.4: SerialNumber: 0bf1c8867e46


4.Connecting Logitech G920 Driving Force directly, without USB hub:

lsusb
Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 006 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 005 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 003 Device 009: ID 046d:c262 Logitech, Inc. G920 Driving Force Racing Wheel 
for Xbox One
Bus 003 Device 005: ID 05e3:0610 Genesys Logic, Inc. 4-port hub
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 006: ID 1532:021e Razer USA, Ltd 
Bus 001 Device 005: ID 1532:005c Razer USA, Ltd 
Bus 001 Device 004: ID 046d:082b Logitech, Inc. Webcam C170
Bus 001 Device 003: ID 1532:0514 Razer USA, Ltd 
Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

[ 7658.159078] usb 3-2: new full-speed USB device number 10 using xhci_hcd
[ 7658.316551] usb 3-2: New USB device found, idVendor=046d, idProduct=c261, 
bcdDevice=96.01
[ 7658.3

[Bug 1872476] Re: Shared files are shown as folders

2021-02-20 Thread Sergio Durigan Junior
Thank you all for the further investigation on this bug.

@Nathan, were you able to identify an upstream patch that fixes this
issue?  I would appreciate if you could point me to a commit so that I
could test it locally as well.

Thanks.

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

Title:
  Shared files are shown as folders

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

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

[Bug 1910934] Re: lxqt loses natural scrolling

2021-02-20 Thread js1
The suggestion to delete the existing session.conf and let lxqt create a
new one was good.  It worked for a while, but natural scrolling broke
again today (2021-02-20).  Last time I had the computer on (2021-02-18)
natural scrolling was working fine.

Could this be a problem with the USB bus?

The session.conf file has a date stamp of 2021-01-30, so it has not been
altered.

[General]
__userfile__=true

[Environment]
BROWSER=firefox
GTK_CSD=0
GTK_OVERLAY_SCROLLING=0
SAL_USE_VCLPLUGIN=qt5
TERM=qterminal

[Touchpad]
DELL%2520DELL%2520USB%2520Laser%2520Mouse\accelSpeed=@Variant(\0\0\0\x87\0\0\0\0)
DELL%2520DELL%2520USB%2520Laser%2520Mouse\naturalScrollingEnabled=1
DELL%2520DELL%2520USB%2520Laser%2520Mouse\scrollingMethodEnabled=0
DELL%2520DELL%2520USB%2520Laser%2520Mouse\tapToDragEnabled=-1
DELL%2520DELL%2520USB%2520Laser%2520Mouse\tappingEnabled=-1

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

Title:
  lxqt loses natural scrolling

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

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

[Bug 1916341] [NEW] poppler-utils/pdfimages list function names the wrong color in output table

2021-02-20 Thread Bill Yikes
Public bug reported:

When running:

$ pdfimages -list grayscale-document.pdf

the output is:

```
   page   num  type   width height color comp bpc  enc interp  object ID x-ppi 
y-ppi size ratio
   

  1 0 image2556  3288  rgb 3   8  jpeg   no 7  0   301  
 300  200K 0.8%
  2 1 image2556  3288  rgb 3   8  jpeg   no12  0   301  
 300  275K 1.5%
  3 2 image2556  3288  rgb 3   8  jpeg   no17  0   301  
 300  395K 0.8%
  4 3 image2556  3288  rgb 3   8  jpeg   no22  0   301  
 300  583K 2.8%
  5 4 image2556  3288  rgb 3   8  jpeg   no27  0   301  
 300  317K 1.3%
...
```

"rgb" is incorrect, which is evident after running: 'pdfimages -all -f 1
-l 1 grayscale-document.pdf foo && identify -format "%[type]"
foo-000.jpg', which correctly outputs "Grayscale".

Strangely, when "pdfimages -list" is fed a bilevel document, it states
that every page has color "gray".

** Affects: poppler (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/1916341

Title:
  poppler-utils/pdfimages list function names the wrong color in output
  table

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

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

[Bug 1916342] [NEW] Sub-pixel anti-aliasing is not being applied to snaps

2021-02-20 Thread soredake
Public bug reported:

In my ~/.config/fontconfig/fonts.conf i have this:
```
  
   rgb
  
```
It is not applied to snaps, making fonts in snaps look bad.

** Affects: snapd (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/1916342

Title:
  Sub-pixel anti-aliasing is not being applied to snaps

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

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

[Bug 1916342] Re: Sub-pixel anti-aliasing is not being applied to snaps

2021-02-20 Thread soredake
** Attachment added: "How rgb should look like"
   
https://bugs.launchpad.net/ubuntu/+source/snapd/+bug/1916342/+attachment/5465504/+files/rgb.png

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

Title:
  Sub-pixel anti-aliasing is not being applied to snaps

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

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

[Bug 1916342] Re: Sub-pixel anti-aliasing is not being applied to snaps

2021-02-20 Thread soredake
** Attachment added: "How snaps looks by default (grayscale)"
   
https://bugs.launchpad.net/ubuntu/+source/snapd/+bug/1916342/+attachment/5465505/+files/non-rgb.png

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

Title:
  Sub-pixel anti-aliasing is not being applied to snaps

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

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

[Bug 1906720] Re: Fix the disable_ssl_certificate_validation option

2021-02-20 Thread Heather Lemon
Hey, so i didn't know that the verification done needed to a comment as
I changed it in the description instead.

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

Title:
  Fix the disable_ssl_certificate_validation option

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-httplib2/+bug/1906720/+subscriptions

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

[Bug 1906720] Re: Fix the disable_ssl_certificate_validation option

2021-02-20 Thread Heather Lemon
updated tag to verification-done

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

Title:
  Fix the disable_ssl_certificate_validation option

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-httplib2/+bug/1906720/+subscriptions

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

[Bug 1906720] Re: Fix the disable_ssl_certificate_validation option

2021-02-20 Thread Heather Lemon
[VERIFICATION DONE]
- 
ubuntu series tested: bionic 
MAAS name: ubuntu-bionic MAAS
MAAS version: 2.4.2 (7034-g2f5deb8b8-0ubuntu1)

sudo apt-get remove python-httplib2
dpkg -l PKGNAME | cat

sudo apt-get install python-httplib2
package version installed: 0.9.2+dfsg-1ubuntu0.3

sudo apt-get install maas

sudo maas init

-- fill out questions

# create 2 users secure & unsecure 
maas createadmin
 username: testadmin
 username: secureadmin 

sudo maas apikey --username=testadmin > api-key-testadmin
sudo maas apikey --username=testadmin > api-key-secureadmin 

sudo apt get update
sudo apt-get install nginx 

touch /etc/nginx/sites-available/maas-https-default
# copy and paste from here: 
server {
 listen 443 ssl http2;

 server_name _;
 ssl_certificate /home/ubuntu/localhost.crt;
 ssl_certificate_key /home/ubuntu/localhost.key;

 location / {
  proxy_pass http://localhost:5240;
  include /etc/nginx/proxy_params;
 }

 location /MAAS/ws {
  proxy_pass http://127.0.0.1:5240/MAAS/ws;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
  proxy_set_header Connection "Upgrade";
 }
}

vim /etc/nginx/sites-available/maas-https-default
# restart ngnix 
sudo service nginx restart
# create maas login scripts 
touch maas-login.sh
# contents of maas-login.sh
#!/bin/sh
PROFILE=testadmin
API_KEY_FILE=/root/api-key-testadmin
API_SERVER=127.0.0.1:5240

MAAS_URL=http://$API_SERVER/MAAS

touch https-maas-login.sh

# contents of https-maas-login.sh 
#!/bin/sh
PROFILE=secureadmin
API_KEY_FILE=/root/api-key-secureadmin
API_SERVER=localhost

MAAS_URL=https://$API_SERVER/MAAS

maas login $PROFILE $MAAS_URL - < $API_KEY_FILE


sudo chmod +rwx maas-login.sh
sud./maas-login.sh o chmod +rwx https-maas-login.sh 

cd /etc/nginx/sites-enabled
sudo touch maas-https-default
vim maas-https-default 
sudo ln -s /etc/nginx/sites-available/maas-https-default 
/etc/nginx/sites-enabled
# login to maas with unsecure & secure user
./maas-login.sh  
./https-maas-login.sh 


# console output
root@ubuntu-bionic:~# ./https-maas-login.sh 

You are now logged in to the MAAS server at
https://localhost/MAAS/api/2.0/ with the profile name 'secureadmin'.

For help with the available commands, try:

  maas secureadmin --help

root@ubuntu-bionic:~# exit

# reverse sshuttle if needed to check gui login 
sshuttle -r root@ 127.0.0.1/0

** Tags removed: verification-needed-bionic
** Tags added: verification-done-bionic

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

Title:
  Fix the disable_ssl_certificate_validation option

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-httplib2/+bug/1906720/+subscriptions

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

[Bug 1916345] [NEW] I cannot update or install any thing same problem in 18 as well

2021-02-20 Thread Doctor loki
Public bug reported:

First my internet was fine. I cannot install more like get the package
from the internet like as installing docker for instance i get err while
getting same of package form Internet

Problems seems like:
E: Failed to fetch 
http://np.archive.ubuntu.com/ubuntu/dists/focal-updates/main/binary-amd64/by-hash/SHA256/120b0d908c717cd34371791a19d0a0d56349d47f3e2c0cb55cba96e6fd928308
  Hash Sum mismatch


E: Some index files failed to download. They have been ignored, or old
ones used instead.

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: ubiquity (not installed)
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
CurrentDesktop: ubuntu:GNOME
Date: Sun Feb 21 00:27:48 2021
InstallCmdLine: file=/cdrom/preseed/ubuntu.seed initrd=/casper/initrd quiet 
splash --- maybe-ubiquity
InstallationDate: Installed on 2021-02-17 (3 days ago)
InstallationMedia: Ubuntu 20.04.2.0 LTS "Focal Fossa" - Release amd64 
(20210209.1)
SourcePackage: ubiquity
Symptom: installer
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug focal ubiquity-20.04.15.10

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

Title:
  I cannot update or install any thing same problem in 18 as  well

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

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

[Bug 1915941] Re: Pinta crashes especially with large images

2021-02-20 Thread Cameron White
This is probably the same issue as bug 1786822 - I'd suggest installing
a newer version of Mono from https://www.mono-
project.com/download/stable/#download-lin, or installing the Snap /
Flatpak package

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

Title:
  Pinta crashes especially with large images

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

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

[Bug 1916117] Re: CVE-2021-3177 in python2.7

2021-02-20 Thread Dimitri John Ledkov
doko merged above pull request already.

** Information type changed from Public to Public Security

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

Title:
  CVE-2021-3177 in python2.7

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

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

[Bug 1916349] [NEW] pkgconfig --libs flags

2021-02-20 Thread Luis de Arquer
Public bug reported:

After installing the development version, the file:

/usr/lib/x86_64-linux-gnu/pkgconfig/libjpeg.pc

contains the line:

libdir=/build/libjpeg-turbo-6HlDLQ/libjpeg-turbo-2.0.3/obj-x86_64-linux-
gnu/lib/x86_64-linux-gnu

which points to no valid directory in the system. It probably should
look like:

libdir=/usr/lib/x86_64-linux-gnu

Otherwise, it breaks any build using pkg-config for this library

** Affects: libjpeg-turbo (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/1916349

Title:
  pkgconfig --libs flags

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libjpeg-turbo/+bug/1916349/+subscriptions

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

[Bug 1551171]

2021-02-20 Thread flying sheep
Bug 568218 points out the correct files to use for this: mimeapps.list →
defaults.list, as defined by the mime actions spec
https://specifications.freedesktop.org/mime-apps-spec/latest/

The “Default Applications” section says:
https://specifications.freedesktop.org/mime-apps-
spec/latest/ar01s03.html

> Indicating the default application for a given mimetype is done by writing 
> into the group [Default Applications] in the file mimeapps.list.
> […]
> This example ensures that the application default1.desktop will be used for 
> mimetype1, if it's installed, and otherwise default2.desktop if it's 
> installed:
> 
> [Default Applications]
> mimetype1=default1.desktop;default2.desktop

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

Title:
  /usr/share/applications/mimeinfo.cache is used for default
  applications in Firefox

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

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

[Bug 1916351] [NEW] the installation programm is crashed

2021-02-20 Thread Giulio Casalegno
Public bug reported:

the installation programm is crashed during the installation

ProblemType: Bug
DistroRelease: Ubuntu 20.10
Package: ubiquity 20.10.13
ProcVersionSignature: Ubuntu 5.8.0-1006.9-raspi 5.8.14
Uname: Linux 5.8.0-1006-raspi aarch64
ApportVersion: 2.20.11-0ubuntu50
Architecture: arm64
CasperMD5CheckResult: skip
CurrentDesktop: ubuntu:GNOME
Date: Sat Feb 20 20:50:06 2021
ImageMediaBuild: 20201022
SourcePackage: ubiquity
UbiquityDebug:
 
UbiquitySyslog:
 
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: ubuntu
 Importance: Undecided
 Status: New


** Tags: apport-bug arm64 groovy oem-config

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

Title:
  the installation programm is crashed

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

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

[Bug 1916350] [NEW] grub install error during ubuntu installation

2021-02-20 Thread KJV 1611 FWBC
Public bug reported:

grub install error during ubuntu installation

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: ubiquity 20.04.15.2
ProcVersionSignature: Ubuntu 5.4.0-42.46-generic 5.4.44
Uname: Linux 5.4.0-42-generic x86_64
NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
ApportVersion: 2.20.11-0ubuntu27.4
Architecture: amd64
CasperMD5CheckResult: pass
CasperVersion: 1.445.1
CurrentDesktop: ubuntu:GNOME
Date: Sat Feb 20 14:50:43 2021
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed 
maybe-ubiquity quiet splash nomodeset ---
LiveMediaBuild: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
ProcEnviron:
 LANGUAGE=en_US.UTF-8
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 LC_NUMERIC=C.UTF-8
SourcePackage: grub-installer
UpgradeStatus: No upgrade log present (probably fresh install)

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


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

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

Title:
  grub install error during ubuntu installation

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

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

[Bug 1916351] Re: the installation programm is crashed

2021-02-20 Thread Ubuntu Foundations Team Bug Bot
** Package changed: ubuntu => ubiquity (Ubuntu)

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

Title:
  the installation programm is crashed

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

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

[Bug 1916340] Re: Logitech G920 Driving Force don't work when using external USB hub

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

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

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

** Tags added: bot-comment

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

Title:
  Logitech G920 Driving Force don't work when using external USB hub

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

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

[Bug 1916356] [NEW] The installer failed to create partition on disk

2021-02-20 Thread Leó Kolbeinsson
Public bug reported:

Testing Lubuntu Hirsute ISO 20210220 - 
Test machine Lenovo V14 IIL - booting in UEFI+secure boot mode

Connected to WiFi network and ran the installer - Calamares crashed with
the error: "the installer failed to create partition on disk "WDC PC
SN20 ..." see attached screenshot and files.

ProblemType: Bug
DistroRelease: Ubuntu 21.04
Package: calamares 3.2.35-0ubuntu2
ProcVersionSignature: Ubuntu 5.10.0-14.15-generic 5.10.11
Uname: Linux 5.10.0-14-generic x86_64
.etc.calamares.modules.finished.conf:
 ---
 restartNowMode: user-checked
 restartNowCommand: "systemctl -i reboot"
.etc.calamares.modules.shellprocess_logs.conf:
 ---
 dontChroot: true
 timeout: 30
 script:
 - calamares-logs-helper @@ROOT@@
.etc.calamares.modules.unpackfs.conf:
 ---
 unpack:
 -   source: "/cdrom/casper/filesystem.squashfs"
 sourcefs: "squashfs"
 destination: ""
ApportVersion: 2.20.11-0ubuntu59
Architecture: amd64
CasperMD5CheckResult: pass
CasperVersion: 1.456
CurrentDesktop: LXQt
Date: Sat Feb 20 20:23:48 2021
LiveMediaBuild: Lubuntu 21.04 "Hirsute Hippo" - Alpha amd64 (20210220)
RelatedPackageVersions:
 calamares-settings-ubuntu-common 1:21.04.1
 calamares-settings-lubuntu   1:21.04.1
 xfsprogs 5.6.0-1ubuntu4
 btrfs-progs  5.10.1-1
SourcePackage: calamares
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug hirsute

** Attachment added: "screen.jpg"
   https://bugs.launchpad.net/bugs/1916356/+attachment/5465534/+files/screen.jpg

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

Title:
  The installer failed to create partition on disk

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

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

[Bug 1800280] Re: Setting ZSH as login shell causes various issues because it doesn't source /etc/profile

2021-02-20 Thread Gunnar Hjalmarsson
** Bug watch added: Debian Bug tracker #776663
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=776663

** Also affects: zsh (Debian) via
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=776663
   Importance: Unknown
   Status: Unknown

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

Title:
  Setting ZSH as login shell causes various issues because it doesn't
  source /etc/profile

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

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

[Bug 1916357] [NEW] change upstream and packge latest release

2021-02-20 Thread Steve Arnold
Public bug reported:

The code has had a new home on github for a while now
(https://github.com/sarnold/) with the approval and some feedback
from the original author (Tim Littlefair).  The current release is 3.1.6
and it would be really nice to get it updated for at least
bionic->newer. Now that I say that, I should probably push it to my
PPA...  Thanks in advance...

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

** Description changed:

  The code has had a new home on github for a while now
  (https://github.com/sarnold/) with the approval and some feedback
  from the original author (Tim Littlefair).  The current release is 3.1.6
- and it would be rally nice to get it updated for at least bionic->newer.
- Now that I say that, I should probably push it my PPA...  Thanks in
- advance...
+ and it would be really nice to get it updated for at least
+ bionic->newer. Now that I say that, I should probably push it my PPA...
+ Thanks in advance...

** Description changed:

  The code has had a new home on github for a while now
  (https://github.com/sarnold/) with the approval and some feedback
  from the original author (Tim Littlefair).  The current release is 3.1.6
  and it would be really nice to get it updated for at least
- bionic->newer. Now that I say that, I should probably push it my PPA...
- Thanks in advance...
+ bionic->newer. Now that I say that, I should probably push it to my
+ PPA...  Thanks in advance...

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

Title:
  change upstream and packge latest release

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

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

[Bug 1916355] Re: tracker-extract crashed with signal 31 in __GI___fstatat64()

2021-02-20 Thread Apport retracing service
*** This bug is a duplicate of bug 1916323 ***
https://bugs.launchpad.net/bugs/1916323

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

** Attachment removed: "CoreDump.gz"
   
https://bugs.launchpad.net/bugs/1916355/+attachment/5465523/+files/CoreDump.gz

** Attachment removed: "Disassembly.txt"
   
https://bugs.launchpad.net/bugs/1916355/+attachment/5465525/+files/Disassembly.txt

** Attachment removed: "ProcMaps.txt"
   
https://bugs.launchpad.net/bugs/1916355/+attachment/5465529/+files/ProcMaps.txt

** Attachment removed: "ProcStatus.txt"
   
https://bugs.launchpad.net/bugs/1916355/+attachment/5465530/+files/ProcStatus.txt

** Attachment removed: "Registers.txt"
   
https://bugs.launchpad.net/bugs/1916355/+attachment/5465531/+files/Registers.txt

** Attachment removed: "Stacktrace.txt"
   
https://bugs.launchpad.net/bugs/1916355/+attachment/5465532/+files/Stacktrace.txt

** Attachment removed: "ThreadStacktrace.txt"
   
https://bugs.launchpad.net/bugs/1916355/+attachment/5465533/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of private bug 1916323

** Information type changed from Private to Public

** Tags removed: need-amd64-retrace

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

Title:
  tracker-extract crashed with signal 31 in __GI___fstatat64()

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

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

[Bug 1915927] Re: defining float_t as double breaks libreoffice autopkgtest with glibc 2.33 on s390x

2021-02-20 Thread Launchpad Bug Tracker
This bug was fixed in the package clucene-core - 2.3.3.4+dfsg-1ubuntu3

---
clucene-core (2.3.3.4+dfsg-1ubuntu3) hirsute; urgency=medium

  * Make libclucene-contribs1v5f Conflict/Replace libclucene-contribs1v5

clucene-core (2.3.3.4+dfsg-1ubuntu2) hirsute; urgency=medium

  * Drop defining float_t as double on s390x, rename packages changing the ABI
to use float_t as float instead (LP: #1915927)

 -- Balint Reczey   Wed, 17 Feb 2021 22:11:42 +0100

** Changed in: clucene-core (Ubuntu)
   Status: In Progress => Fix Released

** Changed in: libreoffice (Ubuntu)
   Status: In Progress => 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/1915927

Title:
  defining float_t as double breaks libreoffice autopkgtest with glibc
  2.33 on s390x

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/clucene-core/+bug/1915927/+subscriptions

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

[Bug 1915927] Re: defining float_t as double breaks libreoffice autopkgtest with glibc 2.33 on s390x

2021-02-20 Thread Launchpad Bug Tracker
This bug was fixed in the package libreoffice - 1:7.0.4~rc2-0ubuntu3

---
libreoffice (1:7.0.4~rc2-0ubuntu3) hirsute; urgency=medium

  * Build-depend on libclucene-dev (>= 2.3.3.4+dfsg-1ubuntu2~) to use
libclucene's ABI defining float_t as float on s390x (LP: #1915927)

 -- Balint Reczey   Wed, 17 Feb 2021 19:29:42 +0100

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

Title:
  defining float_t as double breaks libreoffice autopkgtest with glibc
  2.33 on s390x

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/clucene-core/+bug/1915927/+subscriptions

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

[Bug 1916356] Re: The installer failed to create partition on disk

2021-02-20 Thread Leó Kolbeinsson
** Description changed:

- Testing Lubuntu Hirsute ISO 20210220 - 
+ Testing Lubuntu Hirsute ISO 20210220 -
  Test machine Lenovo V14 IIL - booting in UEFI+secure boot mode
  
- Connected to WiFi network and ran the installer - Calamares crashed with
+ Connected to WiFi network and ran the installer -
+ 
+ I selected "Erase disk with swap file" and then Calamares crashed with
  the error: "the installer failed to create partition on disk "WDC PC
  SN20 ..." see attached screenshot and files.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 21.04
  Package: calamares 3.2.35-0ubuntu2
  ProcVersionSignature: Ubuntu 5.10.0-14.15-generic 5.10.11
  Uname: Linux 5.10.0-14-generic x86_64
  .etc.calamares.modules.finished.conf:
-  ---
-  restartNowMode: user-checked
-  restartNowCommand: "systemctl -i reboot"
+  ---
+  restartNowMode: user-checked
+  restartNowCommand: "systemctl -i reboot"
  .etc.calamares.modules.shellprocess_logs.conf:
-  ---
-  dontChroot: true
-  timeout: 30
-  script:
-  - calamares-logs-helper @@ROOT@@
+  ---
+  dontChroot: true
+  timeout: 30
+  script:
+  - calamares-logs-helper @@ROOT@@
  .etc.calamares.modules.unpackfs.conf:
-  ---
-  unpack:
-  -   source: "/cdrom/casper/filesystem.squashfs"
-  sourcefs: "squashfs"
-  destination: ""
+  ---
+  unpack:
+  -   source: "/cdrom/casper/filesystem.squashfs"
+  sourcefs: "squashfs"
+  destination: ""
  ApportVersion: 2.20.11-0ubuntu59
  Architecture: amd64
  CasperMD5CheckResult: pass
  CasperVersion: 1.456
  CurrentDesktop: LXQt
  Date: Sat Feb 20 20:23:48 2021
  LiveMediaBuild: Lubuntu 21.04 "Hirsute Hippo" - Alpha amd64 (20210220)
  RelatedPackageVersions:
-  calamares-settings-ubuntu-common 1:21.04.1
-  calamares-settings-lubuntu   1:21.04.1
-  xfsprogs 5.6.0-1ubuntu4
-  btrfs-progs  5.10.1-1
+  calamares-settings-ubuntu-common 1:21.04.1
+  calamares-settings-lubuntu   1:21.04.1
+  xfsprogs 5.6.0-1ubuntu4
+  btrfs-progs  5.10.1-1
  SourcePackage: calamares
  UpgradeStatus: No upgrade log present (probably fresh install)

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

Title:
  The installer failed to create partition on disk

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

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

[Bug 1916356] Re: The installer failed to create partition on disk

2021-02-20 Thread Ubuntu QA Website
This bug has been reported on the Ubuntu ISO testing tracker.

A list of all reports related to this bug can be found here:
http://iso.qa.ubuntu.com/qatracker/reports/bugs/1916356

** Tags added: iso-testing

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

Title:
  The installer failed to create partition on disk

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

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

[Bug 1916356] Re: The installer failed to create partition on disk

2021-02-20 Thread Leó Kolbeinsson
Also ran 2 tests in Virtual machines - one in VirtualBox and another in
QEMU - both installed with no errors. In both cases i selected "Erase
disk with swap file".

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

Title:
  The installer failed to create partition on disk

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

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

[Bug 1916356] Re: The installer failed to create partition on disk

2021-02-20 Thread Leó Kolbeinsson
Further tests reported here:

http://iso.qa.ubuntu.com/qatracker/milestones/419/builds/227100/testcases/1701/results

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

Title:
  The installer failed to create partition on disk

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

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

[Bug 1800280] Re: Setting ZSH as login shell causes various issues because it doesn't source /etc/profile

2021-02-20 Thread Bug Watch Updater
** Changed in: zsh (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/1800280

Title:
  Setting ZSH as login shell causes various issues because it doesn't
  source /etc/profile

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

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

[Bug 1916358] [NEW] #789859

2021-02-20 Thread Cemirtan Igor Grigore
Public bug reported:

sudo rm /etc/apt/sources.list.d/some-ppa.list
rm: невозможно удалить '/etc/apt/sources.list.d/some-ppa.list': Нет такого 
файла или каталога

** Affects: software-properties (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/1916358

Title:
  #789859

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

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

[Bug 1916359] [NEW] Logitech M510 worked fine until upgrade to 20.04

2021-02-20 Thread Giancarlo
Public bug reported:

I was forced to upgrade to 20.04 (not my doing) and my Logitech M510 right 
mouse click does not work anymore. It was working perfectly fine with 18.04. I 
tried a wired mouse and the right click works. I have a laptop Dell Inspiron 15 
5000 series. The touchpad right click stopped working but got around it by 
installing gnome-tweaks.
When I did the xev - grep -i button the right click does not show anything, the 
other buttons display action. 

Information
Mouse Logitech M510
USB wireless
Optical

I am attaching the Xorg.0.log could not figure out how to attach more
than one file. See lines 382 to 405 for the mouse info.

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: xorg 1:7.7+19ubuntu14
ProcVersionSignature: Ubuntu 5.4.0-65.73-generic 5.4.78
Uname: Linux 5.4.0-65-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: Sat Feb 20 16:19:06 2021
DistUpgraded: Fresh install
DistroCodename: focal
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes
GraphicsCard:
 Intel Corporation UHD Graphics 620 [8086:5917] (rev 07) (prog-if 00 [VGA 
controller])
   Subsystem: Dell UHD Graphics 620 [1028:0810]
InstallationDate: Installed on 2019-08-30 (540 days ago)
InstallationMedia: Ubuntu 18.04.1 LTS "Bionic Beaver" - Release amd64 (20180725)
MachineType: Dell Inc. Inspiron 5570
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-65-generic 
root=UUID=b73b1f09-202a-4a95-a225-210c1953e209 ro quiet splash vt.handoff=7
SourcePackage: xorg
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 02/02/2018
dmi.bios.vendor: Dell Inc.
dmi.bios.version: 1.1.3
dmi.board.name: 09YTN7
dmi.board.vendor: Dell Inc.
dmi.board.version: X07
dmi.chassis.type: 10
dmi.chassis.vendor: Dell Inc.
dmi.modalias: 
dmi:bvnDellInc.:bvr1.1.3:bd02/02/2018:svnDellInc.:pnInspiron5570:pvr:rvnDellInc.:rn09YTN7:rvrX07:cvnDellInc.:ct10:cvr:
dmi.product.family: Inspiron
dmi.product.name: Inspiron 5570
dmi.product.sku: 0810
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

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


** Tags: amd64 apport-bug focal ubuntu

** Attachment added: "Xorg.0.log"
   https://bugs.launchpad.net/bugs/1916359/+attachment/5465554/+files/Xorg.0.log

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

Title:
  Logitech M510 worked fine until upgrade to 20.04

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

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

[Bug 1916359] Re: Logitech M510 worked fine until upgrade to 20.04

2021-02-20 Thread Giancarlo
This is just a screenshot of the xev output as you can see there is not
Button 2 which is the right mouse button.

** Attachment added: "XEV output"
   
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1916359/+attachment/5465575/+files/LogitechM510_notworking%2020.04.png

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

Title:
  Logitech M510 worked fine until upgrade to 20.04

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

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

[Bug 1914438] Re: compiled without MPRIS

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

** Changed in: cmus (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/1914438

Title:
  compiled without MPRIS

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

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

[Bug 1916359] Re: Logitech M510 worked fine until upgrade to 20.04

2021-02-20 Thread Giancarlo
This is the other attachent xmodmap

** Attachment added: "xmodmap"
   
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1916359/+attachment/5465576/+files/xmodmap-pp

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

Title:
  Logitech M510 worked fine until upgrade to 20.04

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

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

[Bug 1899866] Re: bcmwl-6.30.223.271+bdcom on kernel 5.9.0-050900-generic fails to install module

2021-02-20 Thread Butterfly
*** This bug is a duplicate of bug 1909369 ***
https://bugs.launchpad.net/bugs/1909369

** This bug has been marked a duplicate of bug 1909369
   linux-headers-5.10.3-051003-generic is not supported

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

Title:
  bcmwl-6.30.223.271+bdcom on kernel 5.9.0-050900-generic fails to
  install module

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bcmwl/+bug/1899866/+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-20 Thread Butterfly
*** This bug is a duplicate of bug 1909369 ***
https://bugs.launchpad.net/bugs/1909369

** This bug has been marked a duplicate of bug 1909369
   linux-headers-5.10.3-051003-generic is not supported

-- 
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 1901125] Re: 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 statu

2021-02-20 Thread Butterfly
*** This bug is a duplicate of bug 1909369 ***
https://bugs.launchpad.net/bugs/1909369

** This bug has been marked a duplicate of bug 1909369
   linux-headers-5.10.3-051003-generic is not supported

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

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

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

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

[Bug 1914438] Re: compiled without MPRIS

2021-02-20 Thread Ryan Reamsbottom
Can confirm this.  The package on Focal doesn't have MPRIS working, even
when toggled on in the settings. Must have been compiled without
libsystemd-dev which should be added to the build-deps, and without the
configure option CONFIG_MPRIS=y.  Installing the build-deps for cmus
along with libsystemd-dev, compiling with ./configure CONFIG_MPRIS=y,
running make, sudo make install, results in cmus being installed with
MPRIS support.

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

Title:
  compiled without MPRIS

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

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

[Bug 1916357] Re: change upstream and packge latest release

2021-02-20 Thread Steve Arnold
I updated the rules a bit, new package is here:
https://launchpad.net/~nerdboy/+archive/ubuntu/embedded/+sourcepub/12156828
/+listing-archive-extra

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

Title:
  change upstream and packge latest release

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

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

[Bug 1916359] Re: Logitech M510 worked fine until upgrade to 20.04

2021-02-20 Thread Giancarlo
If in settings I switch the primary button to the right then the mouse main 
buttons do not work properly. If I left click on an empty area then I get a 
menu for New folder, etc like a right click should be and if I left click on a 
file then I get the options to open the files like with the standard left 
click. 
I also need to mention that when I was forced to update to 20.04 (I was doing a 
apt-get update, apt-get upgrade, not a version update) the laptop would not 
boot with some udev failures "Failed to Listen on udev kernel Socket and 
control socket". I had to boot into recovery and then fix broken packages, that 
allowed me to boot the laptop. Maybe that has something to do with this issue.
Thanks no more posting. Sorry.

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

Title:
  Logitech M510 worked fine until upgrade to 20.04

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

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

[Bug 1910934] Re: lxqt loses natural scrolling

2021-02-20 Thread js1
Interesting, natural scrolling works after staring a new lxqt session
(log off and log back in).

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

Title:
  lxqt loses natural scrolling

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

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

[Bug 1916362] Re: tracker-extract crashed with signal 31 in __GI___fstatat64()

2021-02-20 Thread Apport retracing service
*** This bug is a duplicate of bug 1916323 ***
https://bugs.launchpad.net/bugs/1916323

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

** Attachment removed: "CoreDump.gz"
   
https://bugs.launchpad.net/bugs/1916362/+attachment/5465578/+files/CoreDump.gz

** Attachment removed: "Disassembly.txt"
   
https://bugs.launchpad.net/bugs/1916362/+attachment/5465580/+files/Disassembly.txt

** Attachment removed: "ProcMaps.txt"
   
https://bugs.launchpad.net/bugs/1916362/+attachment/5465583/+files/ProcMaps.txt

** Attachment removed: "ProcStatus.txt"
   
https://bugs.launchpad.net/bugs/1916362/+attachment/5465584/+files/ProcStatus.txt

** Attachment removed: "Registers.txt"
   
https://bugs.launchpad.net/bugs/1916362/+attachment/5465585/+files/Registers.txt

** Attachment removed: "Stacktrace.txt"
   
https://bugs.launchpad.net/bugs/1916362/+attachment/5465586/+files/Stacktrace.txt

** Attachment removed: "ThreadStacktrace.txt"
   
https://bugs.launchpad.net/bugs/1916362/+attachment/5465587/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of private bug 1916323

** Information type changed from Private to Public

** Tags removed: need-amd64-retrace

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

Title:
  tracker-extract crashed with signal 31 in __GI___fstatat64()

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

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

[Bug 1916285] Re: am-utils package contains libtool script in place of sun2amd binary

2021-02-20 Thread Eric J Korpela
** Tags added: packaging

** Description changed:

- After installing am-utils-6.2+rc20110530-3.2ubuntu2 (sparc) and
+ After installing am-utils-6.2+rc20110530-3.2ubuntu2 (x86_64) and
  attempting to convert a map from sun to amd format the following message
  appears.
  
  # sun2amd /etc/auto.disks
  /usr/sbin/sun2amd: error: '/usr/sbin/.libs/sun2amd' does not exist
  This script is just a wrapper for sun2amd.
  See the libtool documentation for more information.
  
  Seems likely to be an error in the automake environment for the package.

** Tags added: focal

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

Title:
  am-utils package contains libtool script in place of sun2amd binary

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

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

[Bug 1762167]

2021-02-20 Thread Techxgames
Created attachment 135931
New crash information added by DrKonqi

ktorrent (20.12.2) using Qt 5.15.2

- What I was doing when the application crashed:

After pressing Ctrl+Q to exit it, I got notified of the crash.

-- Backtrace (Reduced):
#5  0x55da6cae7fe6 in kt::ViewModel::Item::color (this=0x55da6dc46550, 
col=) at ./ktorrent/view/viewmodel.cpp:238
#6  0x55da6cae999d in kt::ViewModel::data (this=, index=..., 
role=) at 
/usr/include/x86_64-linux-gnu/qt5/QtCore/qabstractitemmodel.h:63
#7  0x7ff7174b05d7 in QModelIndex::data (arole=9, this=0x7ffc2d577180) at 
../../include/QtCore/../../src/corelib/itemmodels/qabstractitemmodel.h:460
#8  QStyledItemDelegate::initStyleOption (this=0x55da7252c3d0, 
option=0x7ffc2d577010, index=...) at itemviews/qstyleditemdelegate.cpp:291
#9  0x7ff7174afcf7 in QStyledItemDelegate::sizeHint (this=0x55da7252c3d0, 
option=..., index=...) at itemviews/qstyleditemdelegate.cpp:410

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

Title:
  ktorrent always crashes on exit

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

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

[Bug 1916301] Re: I can't play live videos on YouTube (problem with live transmission) - Ubuntu 18.04.5

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

** Changed in: firefox (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/1916301

Title:
  I can't play live videos on YouTube (problem with live transmission) -
  Ubuntu 18.04.5

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

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

[Bug 1892369] Re: Impossible to skip integrity test for ubuntu-server 20.04.1 iso

2021-02-20 Thread Sebastian Kraus
I agree. I understand the situation, why this integrity check came up
and is considered as helpful for users installing their OS with a broken
USB Stick. But in case of Non-MAAS datacenter operations (SMC IPMI for
me), this feature is an entire pain. Although connected to the ISO via
an 1 GBps connection, it takes 25 minutes to complete the integrity
check. After that, the entire setup is (almost) made within four
minutes. Until...  the unskippable "Installing security Updates"
happens, which can be cancelled, when its finished. Srsly, I would
highly appreciate any efforts to give one a chance to reliably skip
integrity check and security patches during a server installation.

Netboot is not an option for me, as in a datacenter with public IPv4/v6
assignments, I prefer manual IP assignments. Therefore, no DHCP is
available during setup.

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

Title:
  Impossible to skip integrity test for ubuntu-server 20.04.1 iso

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

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

[Bug 1916363] [NEW] Bug # 1916301 Firefox wil not play live streaming video Ubuntu 20.04

2021-02-20 Thread Bernard Stafford
Public bug reported:

Ubuntu 20.04 Firefox, will not play live streaming video. 
https://www.youtube.com/watch?v=21X5lGlDOfg  NASA Live streaming video.
Further  https://answers.launchpad.net/ubuntu/+source/firefox/+question/695633
https://bugs.launchpad.net/ubuntu/+source/firefox/+bug/1916301

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: firefox 85.0.1+build1-0ubuntu0.20.04.1
ProcVersionSignature: Ubuntu 5.8.0-44.50~20.04.1-generic 5.8.18
Uname: Linux 5.8.0-44-generic x86_64
AddonCompatCheckDisabled: False
ApportVersion: 2.20.11-0ubuntu27.16
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  b3  774 F pulseaudio
BuildID: 20210204182252
CasperMD5CheckResult: skip
Channel: Unavailable
CurrentDesktop: ubuntu:GNOME
Date: Sat Feb 20 18:27:53 2021
DefaultProfileExtensions: extensions.sqlite corrupt or missing
DefaultProfileIncompatibleExtensions: Unavailable (corrupt or non-existant 
compatibility.ini or extensions.sqlite)
DefaultProfileLocales: extensions.sqlite corrupt or missing
DefaultProfilePrefErrors: Unexpected character ',' before close parenthesis @ 
/usr/lib/firefox/omni.ja:greprefs.js:353
DefaultProfileThemes: extensions.sqlite corrupt or missing
ForcedLayersAccel: False
InstallationDate: Installed on 2021-01-23 (28 days ago)
InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
IpRoute:
 default via 10.0.2.2 dev enp0s3 proto dhcp metric 100 
 10.0.2.0/24 dev enp0s3 proto kernel scope link src 10.0.2.15 metric 100 
 169.254.0.0/16 dev enp0s3 scope link metric 1000
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 SHELL=/bin/bash
Profile0Extensions: extensions.sqlite corrupt or missing
Profile0IncompatibleExtensions: Unavailable (corrupt or non-existant 
compatibility.ini or extensions.sqlite)
Profile0Locales: extensions.sqlite corrupt or missing
Profile0PrefErrors: Unexpected character ',' before close parenthesis @ 
/usr/lib/firefox/omni.ja:greprefs.js:353
Profile0PrefSources: prefs.js
Profile0Themes: extensions.sqlite corrupt or missing
Profiles:
 Profile1 (Default) - LastVersion=None/None (Out of date)
 Profile0 - LastVersion=85.0.1/20210204182252
RunningIncompatibleAddons: False
SourcePackage: firefox
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 12/01/2006
dmi.bios.vendor: innotek GmbH
dmi.bios.version: VirtualBox
dmi.board.name: VirtualBox
dmi.board.vendor: Oracle Corporation
dmi.board.version: 1.2
dmi.chassis.type: 1
dmi.chassis.vendor: Oracle Corporation
dmi.modalias: 
dmi:bvninnotekGmbH:bvrVirtualBox:bd12/01/2006:svninnotekGmbH:pnVirtualBox:pvr1.2:rvnOracleCorporation:rnVirtualBox:rvr1.2:cvnOracleCorporation:ct1:cvr:
dmi.product.family: Virtual Machine
dmi.product.name: VirtualBox
dmi.product.version: 1.2
dmi.sys.vendor: innotek GmbH

** Affects: firefox (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/1916363

Title:
  Bug # 1916301 Firefox wil not play live streaming video Ubuntu 20.04

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

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

[Bug 1916364] [NEW] gnome-control-center won't install in Ubuntu 20.04.2 LTS

2021-02-20 Thread Linda
Public bug reported:

I wanted to possibly change my sleep and suspend settings, but I could
find no Settings, or Control Panel, or any type of basic system
settings.  I saw Tweaks and suggestions to install new apps about Power
& Battery, etc, but isn't there supposed to be some sort of main system
settings?  Every other computer, other Linux flavors, and previous
incarnations of Ubuntu had a settings console.

Also, in the top right if I click on the drop down arrow, then the right
arrow beside "Fully Charged", then "Power Settings", nothing happens.
Similarly, if I click on the right arrow beside "On", then "Bluetooth
Settings", nothing happens.

prompt> sudo apt install gnome-control-center

Reading package lists... Done
Building dependency tree   
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 gnome-control-center : Depends: gnome-control-center-data (< 1:3.37) but 
1:3.38.2-1ubuntu1pop1~1609361000~20.04~f56ab3c is to be installed
Recommends: rygel but it is not going to be installed or
rygel-tracker but it is not going to be 
installed
E: Unable to correct problems, you have held broken packages.

** Affects: gnome-control-center (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/1916364

Title:
  gnome-control-center won't install in Ubuntu 20.04.2 LTS

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

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

[Bug 1916301] Re: I can't play live videos on YouTube (problem with live transmission) - Ubuntu 18.04.5

2021-02-20 Thread Bernard Stafford
Please Link: 
https://bugs.launchpad.net/ubuntu/+source/firefox/+bug/1916363
to this bug report.
Firefox will not play live streaming video. Ubuntu 20.04 I used apport to 
gather information.
https://answers.launchpad.net/ubuntu/+source/firefox/+question/695633

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

Title:
  I can't play live videos on YouTube (problem with live transmission) -
  Ubuntu 18.04.5

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

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

[Bug 1730612] Re: Enable Remote desktop feature during build

2021-02-20 Thread Jonathan Kamens
Even with that version of mutter installed I still don't see screen
sharing as an option under sharing in the settings app when logged in
under Wayland. Are there other packages that need to be updated before
screen sharing will be available in Wayland sessions, and are there open
bug tickets for those?

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

Title:
  Enable Remote desktop feature during build

To manage notifications about this bug go to:
https://bugs.launchpad.net/baltix-default-settings/+bug/1730612/+subscriptions

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

[Bug 1696885] Re: Implement remote desktop support for GNOME on Wayland

2021-02-20 Thread Jonathan Kamens
GNOME now supports remote desktop sharing in Wayland, but it isn't
enabled in Ubuntu. Apparently one of the prerequisites for being able to
enable it in Ubuntu was recompiling mutter with support for it, and that
has now been done in Hirsute. What else needs to be done in Hirsute to
make this work?

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

Title:
  Implement remote desktop support for GNOME on Wayland

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

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

[Bug 1730612] Re: Enable Remote desktop feature during build

2021-02-20 Thread Andrew Hayzen
@jik, I think that you need the package gnome-remote-desktop, this has a
MIR request in bug 1802614. And then another package will need to
recommend it to have it installed by default, you can follow this on the
Trello board here https://trello.com/c/NnUq5bHv/15-mir-gnome-remote-
desktop-and-seed-recommend-it

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

Title:
  Enable Remote desktop feature during build

To manage notifications about this bug go to:
https://bugs.launchpad.net/baltix-default-settings/+bug/1730612/+subscriptions

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

[Bug 1916364] Re: gnome-control-center won't install in Ubuntu 20.04.2 LTS

2021-02-20 Thread Gunnar Hjalmarsson
Apparently you have had (or still have) ppa:system76/pop enabled. So you
didn't find a bug, but possibly you need support:

https://ubuntu.com/support/community-support

** Changed in: gnome-control-center (Ubuntu)
   Status: New => Invalid

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

Title:
  gnome-control-center won't install in Ubuntu 20.04.2 LTS

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

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

[Bug 1916366] [NEW] during installation, grub bootloader fails to load to target

2021-02-20 Thread ricco heatherly
Public bug reported:

tried 2 different Peach OSI versions...both fail to install with a grub
failed to load to target message. Using a Lenovo think center all in one
computer.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: ubiquity 2.21.63.6 [modified: usr/lib/ubiquity/ubiquity/misc.py 
usr/share/ubiquity/apt-setup]
ProcVersionSignature: Ubuntu 4.4.0-112.135-generic 4.4.98
Uname: Linux 4.4.0-112-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.15
Architecture: amd64
CasperVersion: 1.376.2
Date: Sat Feb 20 18:13:04 2021
LiveMediaBuild: Peach-OSI-Barebones-16.04-64bit 16.04 - Release amd64
ProcEnviron:
 PATH=(hostname, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
SourcePackage: ubiquity
UbiquitySyslog:
 
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: ubuntu
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug custom xenial

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

Title:
  during installation, grub bootloader fails to load to target

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

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

[Bug 1916367] [NEW] https proxy to shibboleth fails in autopkgtest

2021-02-20 Thread Dimitri John Ledkov
Public bug reported:

https proxy to shibboleth fails in autopkgtest

hence put the test files here

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


** Tags: update-excuse

** Tags added: update-excuse

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

Title:
  https proxy to shibboleth fails in autopkgtest

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

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

[Bug 1916367] Re: https proxy to shibboleth fails in autopkgtest

2021-02-20 Thread Dimitri John Ledkov
** Attachment added: "key.der"
   
https://bugs.launchpad.net/ubuntu/+source/xmltooling/+bug/1916367/+attachment/5465606/+files/key.der

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

Title:
  https proxy to shibboleth fails in autopkgtest

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

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

[Bug 1916367] Re: https proxy to shibboleth fails in autopkgtest

2021-02-20 Thread Dimitri John Ledkov
** Attachment added: "cert.pem"
   
https://bugs.launchpad.net/ubuntu/+source/xmltooling/+bug/1916367/+attachment/5465608/+files/cert.pem

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

Title:
  https proxy to shibboleth fails in autopkgtest

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

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

  1   2   >