[Bug 1800446] Re: kidle_inject constantly running

2018-11-01 Thread Cristian Aravena Romero
** Also affects: thermald (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/1800446

Title:
  kidle_inject constantly running

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

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

[Bug 1801091] [NEW] [SRU] Align octavia-dashboard with ubuntu openstack dashboard packages

2018-11-01 Thread Corey Bryant
Public bug reported:

[Impact]
The octavia-dashboard package was synced late from Debian in Cosmic but does 
not align with the other Ubuntu OpenStack dashboard packages.

There are three things that need to be fixed:
1) python 3 interpreter must be used to collect/compress static assets
2) chown of /var/lib/openstack-dashboard must use horizon:horizon
see similar for sahara-dashboard: 
https://git.launchpad.net/~ubuntu-server-dev/ubuntu/+source/sahara-dashboard/tree/debian/python3-sahara-dashboard.postinst?h=stable/rocky
3) the dashboard modules only needs to be copied to 
/usr/lib/python3/dist-packages/openstack_dashboard/enabled since 
/usr/share/openstack-dashboard/openstack_dashboard is a symlink in ubuntu
see similar for sahara-dashboard: 
https://git.launchpad.net/~ubuntu-server-dev/ubuntu/+source/sahara-dashboard/tree/debian/rules?h=stable/rocky#n41
see alternatives postinst for horizon: 
https://git.launchpad.net/~ubuntu-server-dev/ubuntu/+source/horizon/tree/debian/python3-django-horizon.postinst?h=stable/rocky#n6

[Test Case]
Deploy openstack, install octavia-dashboard on horizon node, and manually 
verify that octavia's dashboard works.

[Regression Potential]
The initial version is only in cosmic-proposed and didn't make it all of the 
way to cosmic proper.

** Affects: octavia-dashboard (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/1801091

Title:
  [SRU] Align octavia-dashboard with ubuntu openstack dashboard packages

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/octavia-dashboard/+bug/1801091/+subscriptions

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

[Bug 1776563] Re: Acer Aspire A315 IOAPIC failure on Ubuntu 18.04, kernel hangs, can't load, kernel freeze (AMD Ryzen 5/Radeon/Raven) / AMDGPU Hybrid crash

2018-11-01 Thread Another User
Strange... Is there really almost the same laptops with Metapod_RR motherboard?
Mine have 38-46C idle temp and 72C while gaming with AC plugged. With TLP 
Ubuntu reports for 5+ hours estimated battery runtime (idle, almost minimum 
brightness; 4h without TLP). Or 3 hours of FHD video in VLC. So real battery 
life is somewhere between.
On Windows 10 I had similar results, but used it for few days.
Only problem is higher battery drain after sleep-resume.

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

Title:
  Acer Aspire A315 IOAPIC failure on Ubuntu 18.04, kernel hangs, can't
  load, kernel freeze  (AMD Ryzen 5/Radeon/Raven) / AMDGPU Hybrid crash

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

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

Re: [Bug 1799868] Re: seq command has problems near its max integer

2018-11-01 Thread Kevin O'Gorman
I dont usually read info pages since I have trouble navigating them.  But
reading what you quoted made clear what happened.

I would personally have preferred it if seq would notice when the increment
is not doing anything, and instead of producing infinite output, complained
and quit as it does when the starting value is too large.  The fact that it
does that in one case is part of why I thought it was a bug to not do it in
another.

But to be honest, I'd have implemented unlimited integers rather than using
floating point, perhaps by making it use Python under the covers, since
that's how Python normally works.  Well maybe I wouldn't do it that way in
coreutils  But I'd do it.  It's not that hard if you're not doing
multiply or divide.

On Mon, Oct 29, 2018 at 4:00 PM C de-Avillez  wrote:

> Hello Kevin, and thank you for opening this bug and helping make Ubuntu
> better.
>
> The info page for seq (info seq) has the following note:
>
> " On most systems, seq can produce whole-number output for values up to
> at least 2^{53}.  Larger integers are approximated.  The details differ
> depending on your floating-point implementation.  *Note Floating
> point::.  A common case is that ‘seq’ works with integers through
> 2^{64}, and larger integers may not be numerically correct:
>
>  $ seq 5000 2 5004
>  5000
>  5000
>  5004
>
>However, note that when limited to non-negative whole numbers, an
> increment of 1 and no format-specifying option, seq can print
> arbitrarily large numbers.
>
>Be careful when using ‘seq’ with outlandish values: otherwise you may
> see surprising results, as ‘seq’ uses floating point internally.  For
> example, on the x86 platform, where the internal representation uses a
> 64-bit fraction, the command:
>
>  seq 1 0.001 1.009
>
>outputs 1.007 twice and skips 1.008."
>
> Now, 2^64 is 18446744073709551616, which is *much* smaller than the
> values you are using. So... you are in the boundary of the map, where it
> is written "here be dragons."
>
> I ran 'seq' with your initial value, and increment of 1, and varying
> end-values, all larger than the initial value. All seemed to work
> correctly. But the moment I changed the increment... things went south
> very fast (including what seemed as an infinite loop, with 'seq'
> outputting the same value over and over).
>
> I am in a mind of closing this bug INVALID, but wanted to have your
> input before that.
>
> Thank you.
>
> ** Changed in: coreutils (Ubuntu)
>Status: New => Incomplete
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1799868
>
> Title:
>   seq command has problems near its max integer
>
> Status in coreutils package in Ubuntu:
>   Incomplete
>
> Bug description:
>   I can use seq(1) to generate sequences of large numbers if I use the
>   default increment:
>
>   $ seq 170141183460469231731687303715884105721
> 170141183460469231731687303715884105725
>   170141183460469231731687303715884105721
>   170141183460469231731687303715884105722
>   170141183460469231731687303715884105723
>   170141183460469231731687303715884105724
>   170141183460469231731687303715884105725
>   $
>
>   However, if I use an increment of 2 (which should stop 2 short of the
> max int,) it starts with the max integer+1 (2^127) and outputs it forever:
>   $ seq 170141183460469231731687303715884105721 2
> 170141183460469231731687303715884105725 | less
>   170141183460469231731687303715884105728
>   170141183460469231731687303715884105728
>   170141183460469231731687303715884105728
>   170141183460469231731687303715884105728
>   .
>   .
>   .
>
>   ProblemType: Bug
>   DistroRelease: Ubuntu 18.04
>   Package: coreutils 8.28-1ubuntu1
>   ProcVersionSignature: Ubuntu 4.15.0-36.39-generic 4.15.18
>   Uname: Linux 4.15.0-36-generic x86_64
>   NonfreeKernelModules: nvidia_modeset nvidia
>   ApportVersion: 2.20.9-0ubuntu7.4
>   Architecture: amd64
>   CurrentDesktop: ubuntu:GNOME
>   Date: Wed Oct 24 20:17:15 2018
>   SourcePackage: coreutils
>   UpgradeStatus: Upgraded to bionic on 2018-08-19 (66 days ago)
>
> To manage notifications about this bug go to:
>
> https://bugs.launchpad.net/ubuntu/+source/coreutils/+bug/1799868/+subscriptions
>


-- 
Kevin O'Gorman
#define QUESTION ((bb) || (!bb))   /* Shakespeare */

Please consider the environment before printing this email.


** Attachment added: "unnamed"
   https://bugs.launchpad.net/bugs/1799868/+attachment/5207860/+files/unnamed

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

Title:
  seq command has problems near its max integer

To manage notifications about this bug go to:

[Bug 1801103] [NEW] Kubuntu driver manager fails to install nvidia-prime on hybrid systems and that makes system unusable for unexperienced users

2018-11-01 Thread Serhiy Zahoriya
Public bug reported:

Ignoring the fact that only nvidia-340 drivers were suggested when 390
is available, with a completely fresh install after using Kubuntu driver
manager system does not show GUI on the next boot because NVIDIA drivers
cannot work without nvidia-prime on hybrid systems.

ProblemType: Bug
DistroRelease: Ubuntu 18.10
Package: kubuntu-driver-manager 15.10ubuntu4
ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
Uname: Linux 4.18.0-10-generic x86_64
NonfreeKernelModules: wl
ApportVersion: 2.20.10-0ubuntu13
Architecture: amd64
CurrentDesktop: KDE
Date: Thu Nov  1 16:44:54 2018
InstallationDate: Installed on 2018-11-01 (0 days ago)
InstallationMedia: Kubuntu 18.10 "Cosmic Cuttlefish" - Release amd64 
(20181017.2)
SourcePackage: kubuntu-driver-manager
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug cosmic

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

Title:
  Kubuntu driver manager fails to install nvidia-prime on hybrid systems
  and that makes system unusable for unexperienced users

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

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

[Bug 1801091] Re: [SRU] Align octavia-dashboard with ubuntu openstack dashboard packages

2018-11-01 Thread Corey Bryant
** Description changed:

  [Impact]
  The octavia-dashboard package was synced late from Debian in Cosmic but does 
not align with the other Ubuntu OpenStack dashboard packages.
  
- There are three things that need to be fixed:
+ There are 4 things that need to be fixed:
  1) python 3 interpreter must be used to collect/compress static assets
  2) chown of /var/lib/openstack-dashboard must use horizon:horizon
  see similar for sahara-dashboard: 
https://git.launchpad.net/~ubuntu-server-dev/ubuntu/+source/sahara-dashboard/tree/debian/python3-sahara-dashboard.postinst?h=stable/rocky
  3) the dashboard modules only needs to be copied to 
/usr/lib/python3/dist-packages/openstack_dashboard/enabled since 
/usr/share/openstack-dashboard/openstack_dashboard is a symlink in ubuntu
  see similar for sahara-dashboard: 
https://git.launchpad.net/~ubuntu-server-dev/ubuntu/+source/sahara-dashboard/tree/debian/rules?h=stable/rocky#n41
  see alternatives postinst for horizon: 
https://git.launchpad.net/~ubuntu-server-dev/ubuntu/+source/horizon/tree/debian/python3-django-horizon.postinst?h=stable/rocky#n6
+ 4) debian/watch file should get release artifact from tarballs.openstack.org
  
  [Test Case]
  Deploy openstack, install octavia-dashboard on horizon node, and manually 
verify that octavia's dashboard works.
  
  [Regression Potential]
  The initial version is only in cosmic-proposed and didn't make it all of the 
way to cosmic proper.

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

Title:
  [SRU] Align octavia-dashboard with ubuntu openstack dashboard packages

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/octavia-dashboard/+bug/1801091/+subscriptions

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

[Bug 1801047] Re: Impossible to update to 18.04

2018-11-01 Thread Brian Murray
Thank you for taking the time to report this bug and helping to make
Ubuntu better. The error that you are a reporting is a conflict between
packages from the official Ubuntu archive and packages from a PPA. To
resolve this situation please deactivate PPAs using the tool 'ppa-purge'
which is provided by the ppa-purge package. Then try performing the
release upgrade again. Thanks in advance!

** Changed in: ubuntu-release-upgrader (Ubuntu)
   Status: New => Invalid

** Tags added: ppa-conflict

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

Title:
  Impossible to update to 18.04

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

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

[Bug 1800901] Re: Updating breaks wifi on Intel Compute Stick

2018-11-01 Thread Brian Murray
** Package changed: ubuntu => linux (Ubuntu)

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

Title:
  Updating breaks wifi on Intel Compute Stick

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

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

[Bug 1800882] Re: unable to upgrade

2018-11-01 Thread Brian Murray
Thank you for taking the time to report this bug and helping to make
Ubuntu better. The error that you are a reporting is a conflict between
packages from the official Ubuntu archive and packages from a PPA. To
resolve this situation please deactivate PPAs using the tool 'ppa-purge'
which is provided by the ppa-purge package. Then try performing the
release upgrade again. Thanks in advance!

** Changed in: ubuntu-release-upgrader (Ubuntu)
   Status: New => Invalid

** Tags added: ppa-conflict

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

Title:
  unable to upgrade

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

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

[Bug 1783706] Re: [MIR] oath-toolkit

2018-11-01 Thread Jamie Strandboge
Actually, 2.6.1-1.2ubuntu0.18.10.1 is in cosmic-proposed already.
Adjusting that.

Override component to main
oath-toolkit 2.6.1-1.2ubuntu0.18.10.1 in cosmic: universe/devel -> main
Override [y|N]? y
1 publication overridden.

Override component to main
liboath0 2.6.1-1.2ubuntu0.18.10.1 in cosmic amd64: universe/libs/optional/100% 
-> main
liboath0 2.6.1-1.2ubuntu0.18.10.1 in cosmic arm64: universe/libs/optional/100% 
-> main
liboath0 2.6.1-1.2ubuntu0.18.10.1 in cosmic armhf: universe/libs/optional/100% 
-> main
liboath0 2.6.1-1.2ubuntu0.18.10.1 in cosmic i386: universe/libs/optional/100% 
-> main
liboath0 2.6.1-1.2ubuntu0.18.10.1 in cosmic ppc64el: 
universe/libs/optional/100% -> main
liboath0 2.6.1-1.2ubuntu0.18.10.1 in cosmic s390x: universe/libs/optional/100% 
-> main
Override [y|N]? y
6 publications overridden.

** Changed in: oath-toolkit (Ubuntu)
 Assignee: Ubuntu Security Team (ubuntu-security) => (unassigned)

** Changed in: oath-toolkit (Ubuntu)
   Status: New => 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/1783706

Title:
  [MIR] oath-toolkit

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/oath-toolkit/+bug/1783706/+subscriptions

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

[Bug 1791219] Re: Symbolic link to src.zip in openjdk-11-source points to an invalid location

2018-11-01 Thread matihost
Workaround:
```
cd /usr/lib/jvm/java-11-openjdk-amd64
sudo rm src.zip
sudo ln -s ../openjdk-11/lib/src.zip src.zip
```

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

Title:
  Symbolic link to src.zip in openjdk-11-source points to an invalid
  location

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

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

[Bug 1798091] Re: thumbnailer cannot create tempfiles (with apparmor denials)

2018-11-01 Thread Jamie Strandboge
Uploaded 3.30.1-1ubuntu1.2 to cosmic-proposed.

** Changed in: evince (Ubuntu)
   Status: In Progress => Fix Committed

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

Title:
  thumbnailer cannot create tempfiles (with apparmor denials)

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

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

[Bug 814908] Re: lpstat should return failure when cupsd is not running

2018-11-01 Thread gf
Hello Benjamin,
Thank you for submitting this feature/enhancement request for the cups package. 
 You made this request quite some time ago and Ubuntu has been updated since 
then. 

Do you think this feature/enhancement is still needed or can we close
this bug report?

Thank you again for helping make Ubuntu better. 
G
[Ubuntu Bug Squad volunteer triager]

** Changed in: cups (Ubuntu)
   Status: Triaged => Incomplete

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

Title:
  lpstat should return failure when cupsd is not running

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

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

[Bug 1592959] Re: streamtuner2 does not show any SHOUTCast radio stations

2018-11-01 Thread Diego Foglino
I confirm this bug. Directory are empty. Don't update.

** Attachment added: "streamtuner.png"
   
https://bugs.launchpad.net/ubuntu/+source/streamtuner2/+bug/1592959/+attachment/5207854/+files/streamtuner.png

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

Title:
  streamtuner2 does not show any SHOUTCast radio stations

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

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

[Bug 343801] Re: cupsd.conf defaults need to allow reprint of jobs

2018-11-01 Thread gf
Hello Kemble,
Thank you for submitting this feature/enhancement request for the hplip 
package.  You made this request quite some time ago and Ubuntu has been updated 
since then. 

Do you think this feature/enhancement is still needed or can we close
this bug report?

Thank you again for helping make Ubuntu better. 
G
[Ubuntu Bug Squad volunteer triager]

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

Title:
  cupsd.conf defaults need to allow reprint of jobs

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

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

[Bug 322210] Re: [needs-packaging] PPD for Dymo LabelWriter 400 not complete

2018-11-01 Thread gf
Hello Ben,
Thank you for submitting this feature/enhancement request for the hplip 
package.  You made this request quite some time ago and Ubuntu has been updated 
since then. 

Do you think this feature/enhancement is still needed or can we close
this bug report?

Thank you again for helping make Ubuntu better. 
G
[Ubuntu Bug Squad volunteer triager]

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

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

Title:
  [needs-packaging] PPD for Dymo LabelWriter 400 not complete

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

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

[Bug 322210] Re: [needs-packaging] PPD for Dymo LabelWriter 400 not complete

2018-11-01 Thread gf
Sorry, I meant: ".. with the *cups* package."  :)

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

Title:
  [needs-packaging] PPD for Dymo LabelWriter 400 not complete

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

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

[Bug 343801] Re: cupsd.conf defaults need to allow reprint of jobs

2018-11-01 Thread gf
Sorry, I meant: ".. with the *cups* package."


** Changed in: cups (Ubuntu)
   Status: Triaged => Incomplete

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

Title:
  cupsd.conf defaults need to allow reprint of jobs

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

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

[Bug 856776] Re: Cannot declare itself as another username with CUPS server

2018-11-01 Thread gf
Hello Jonathan,
Thank you for submitting this feature/enhancement request for the cups package. 
 You made this request quite some time ago and Ubuntu has been updated since 
then. 

Do you think this feature/enhancement is still needed or can we close
this bug report?

Thank you again for helping make Ubuntu better. 
G
[Ubuntu Bug Squad volunteer triager]

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

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

Title:
  Cannot declare itself as another username with CUPS server

To manage notifications about this bug go to:
https://bugs.launchpad.net/common-print-dialog-gtk/+bug/856776/+subscriptions

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

[Bug 1650337] Re: unknown filesystem efivarfs

2018-11-01 Thread Alkis Georgopoulos
I'm having this issue with Ubuntu MATE 18.04.1 32bit on 64bit UEFI
hardware.

I think the problem is caused by the following kernel configuration directive, 
which is set on 64bit, but not on 32bit:
CONFIG_EFI_MIXED=y

Now this is supposed to allow 32bit firmware to boot 64bit kernels, but if I'm 
reading the code correctly, it's necessary for the opposite as well, otherwise 
the efivarfs file system doesn't exist, and efibootmgr/grub-install fail:
http://lkml.iu.edu/hypermail/linux/kernel/1403.0/01370.html

Btw, in dmesg the following message is shown:
efi: setup done, disabling due to 32/64-bit mismatch

And efivarfs doesn't exist in /proc/filesystems, even though
/sys/firmware/efi is populated.

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

Title:
  unknown filesystem efivarfs

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

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

[Bug 1795760] Re: Xwayland crashed with SIGABRT in OsAbort()

2018-11-01 Thread Gert van de Kraats
*** This bug is a duplicate of bug 1745799 ***
https://bugs.launchpad.net/bugs/1745799

As stated above this bug report is not a duplicate and contains working code to 
solve the bug.
Using this code doesn ot give any risk to the main stream of the code, it only 
handles an exception.
I thought it might be a pleasure to get a solution  for a problem.
PLease do something with it.

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

Title:
  Xwayland crashed with SIGABRT in OsAbort()

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

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

[Bug 1800804] Re: linux-azure: 4.15.0-1031.32~14.04.1 -proposed tracker

2018-11-01 Thread Andy Whitcroft
** Changed in: kernel-sru-workflow/prepare-package-signed
   Status: Fix Released => Confirmed

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

Title:
  linux-azure: 4.15.0-1031.32~14.04.1 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1800804/+subscriptions

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

[Bug 1801102] Missing required logs.

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

apport-collect 1801102

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

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

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

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

** Tags added: bionic

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

Title:
  Please include this patch in bionic kernel
  https://www.spinics.net/lists/linux-wireless/msg169994.html

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

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

[Bug 1800901] Missing required logs.

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

apport-collect 1800901

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

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

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

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

** Tags added: utopic

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

Title:
  Updating breaks wifi on Intel Compute Stick

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

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

[Bug 1800901] Re: Updating breaks wifi on Intel Compute Stick

2018-11-01 Thread Cristian Aravena Romero
Did this issue start happening after an update/upgrade? Was there a
prior kernel version where you were not having this particular problem?

Would it be possible for you to test the latest upstream kernel? Refer
to https://wiki.ubuntu.com/KernelMainlineBuilds . Please test the latest
v4.19 kernel[0].

If this bug is fixed in the mainline kernel, please add the following
tag 'kernel-fixed-upstream'.

If the mainline kernel does not fix this bug, please add the tag:
'kernel-bug-exists-upstream'.

Once testing of the upstream kernel is complete, please mark this bug as
"Confirmed".

Thanks in advance.

[0] http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.19

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

Title:
  Updating breaks wifi on Intel Compute Stick

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

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

[Bug 1800804] Re: linux-azure: 4.15.0-1031.32~14.04.1 -proposed tracker

2018-11-01 Thread Brad Figg
** Changed in: kernel-sru-workflow/prepare-package-signed
   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/1800804

Title:
  linux-azure: 4.15.0-1031.32~14.04.1 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1800804/+subscriptions

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

[Bug 1791219] Re: Symbolic link to src.zip in openjdk-11-source points to an invalid location

2018-11-01 Thread matihost
Workaround taken from https://github.com/redhat-developer/vscode-
java/issues/689#issuecomment-434046529  (solves issue under VSCode
unable to show Java JDK source code)

** Bug watch added: github.com/redhat-developer/vscode-java/issues #689
   https://github.com/redhat-developer/vscode-java/issues/689

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

Title:
  Symbolic link to src.zip in openjdk-11-source points to an invalid
  location

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

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

Re: [Bug 1800785] Re: package libgs9-common 9.25~dfsg+1-0ubuntu0.18.04.1 failed to install/upgrade: Unterprozess new libgs9-common package pre-installation script gab den Fehler-Ausgangsstatus 1 zurüc

2018-11-01 Thread Olaf Fenski
Thank you very much for your help. Yes, I tried to fix the problem with 
my printer and it works, but only one day. I am very pleased, that I can 
update again and my printers works too.

On 31.10.18 12:15, Marc Deslauriers wrote:
> Here's the error log:
>
> dpkg-maintscript-helper: error: file 
> '/usr/share/ghostscript/9.25/iccprofiles/ps_gray.icc' not owned by package 
> 'libgs9-common:all'
> dpkg-maintscript-helper: error: file 
> '/usr/share/ghostscript/9.25/iccprofiles/ps_cmyk.icc' not owned by package 
> 'libgs9-common:all'
> dpkg-maintscript-helper: error: file 
> '/usr/share/ghostscript/9.25/iccprofiles/gray_to_k.icc' not owned by package 
> 'libgs9-common:all'
> dpkg-maintscript-helper: error: file 
> '/usr/share/ghostscript/9.25/iccprofiles/default_gray.icc' not owned by 
> package 'libgs9-common:all'
> dpkg-maintscript-helper: error: file 
> '/usr/share/ghostscript/9.25/iccprofiles/lab.icc' not owned by package 
> 'libgs9-common:all'
> dpkg-maintscript-helper: error: file 
> '/usr/share/ghostscript/9.25/iccprofiles/srgb.icc' not owned by package 
> 'libgs9-common:all'
> dpkg-maintscript-helper: error: file 
> '/usr/share/ghostscript/9.25/iccprofiles/default_cmyk.icc' not owned by 
> package 'libgs9-common:all'
> dpkg-maintscript-helper: error: file 
> '/usr/share/ghostscript/9.25/iccprofiles/ps_rgb.icc' not owned by package 
> 'libgs9-common:all'
> dpkg-maintscript-helper: error: file 
> '/usr/share/ghostscript/9.25/iccprofiles/sgray.icc' not owned by package 
> 'libgs9-common:all'
> dpkg-maintscript-helper: error: file 
> '/usr/share/ghostscript/9.25/iccprofiles/default_rgb.icc' not owned by 
> package 'libgs9-common:all'
>
> Did you manually copy files into the
> /usr/share/ghostscript/9.25/iccprofiles directory to try and fix an
> upgrade issue?
>

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

Title:
  package libgs9-common 9.25~dfsg+1-0ubuntu0.18.04.1 failed to
  install/upgrade: Unterprozess new libgs9-common package pre-
  installation script gab den Fehler-Ausgangsstatus 1 zurück

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

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

[Bug 1799237] Re: mprotect fails on ext4 with dax

2018-11-01 Thread Joseph Salisbury
Is this the case with all kernel versions, or can we still consider this
a regression in the kernel?

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

Title:
  mprotect fails on ext4 with dax

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

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

[Bug 1788623] Re: regression: IPv6 PMTU discovery fails with source-specific routing

2018-11-01 Thread Joseph Salisbury
You mention in comment #2 that your patch resolves this bug.  Is that
still the case, and have you sent it upstream for inclusion in mainline?

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

Title:
  regression: IPv6 PMTU discovery fails with source-specific routing

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

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

[Bug 1650337] Re: unknown filesystem efivarfs

2018-11-01 Thread Alkis Georgopoulos
** Package changed: linux-lts-xenial (Ubuntu) => linux-signed (Ubuntu)

** Changed in: linux-signed (Ubuntu)
   Importance: Undecided => Low

** Changed in: linux-signed (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/1650337

Title:
  unknown filesystem efivarfs

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

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

[Bug 1801102] Re: Please include this patch in bionic kernel https://www.spinics.net/lists/linux-wireless/msg169994.html

2018-11-01 Thread Konstantin Petrov
** Changed in: linux (Ubuntu)
   Status: Incomplete => Confirmed

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

Title:
  Please include this patch in bionic kernel
  https://www.spinics.net/lists/linux-wireless/msg169994.html

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

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

[Bug 1801106] [NEW] grub will not install with any 18.xx flavors, all 16.xx will install ok. 18.xx will install when i tic minimal install radio button.

2018-11-01 Thread G.Dean
Public bug reported:

If you would like to remotely monitor my install just let me know what i
need to do. I am happy to help.

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: ubiquity 18.04.14.9
ProcVersionSignature: Ubuntu 4.15.0-39.42-generic 4.15.18
Uname: Linux 4.15.0-39-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.4
Architecture: amd64
CasperVersion: 1.394
Date: Thu Nov  1 09:57:11 2018
InstallCmdLine: BOOT_IMAGE=(loop)/casper/vmlinuz root=UUID=79D0-8174 
maybe-ubiquity debian-installer/language=en 
keyboard-configuration/layoutcode=us 
iso-scan/filename=/bionic-desktop-amd64.iso boot=casper 
file=/cdrom/preseed/ubuntustudio.seed noprompt quiet splash --
LiveMediaBuild: Ubuntu-MATE 18.04.1 LTS "Bionic Beaver" - Release amd64 
(20181101)
ProcEnviron:
 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 bionic package-from-proposed ubiquity-18.04.14.9 
ubuntustudio

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

Title:
  grub will not install with any 18.xx flavors, all 16.xx will install
  ok. 18.xx will install when i tic minimal install radio button.

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

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

[Bug 1800963] Re: Changing Primary DIsplay Flips Which Display Has The Dock

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

apport-collect -p xorg-server 1800963

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

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

** Also affects: xorg-server (Ubuntu)
   Importance: Undecided
   Status: New

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

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

Title:
  Changing Primary DIsplay Flips Which Display Has The Dock

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

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

[Bug 1800785] Re: package libgs9-common 9.25~dfsg+1-0ubuntu0.18.04.1 failed to install/upgrade: Unterprozess new libgs9-common package pre-installation script gab den Fehler-Ausgangsstatus 1 zurück

2018-11-01 Thread Marc Deslauriers
Great, closing this bug. Thanks!

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

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

Title:
  package libgs9-common 9.25~dfsg+1-0ubuntu0.18.04.1 failed to
  install/upgrade: Unterprozess new libgs9-common package pre-
  installation script gab den Fehler-Ausgangsstatus 1 zurück

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

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

[Bug 1778332] Re: Apparmor Permission Denied (apparmor="DENIED")

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

** Changed in: gnome-system-monitor (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/1778332

Title:
  Apparmor Permission Denied (apparmor="DENIED")

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

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

[Bug 1411371] Re: Use FQDN in apt-listchanges report

2018-11-01 Thread Dongxia Liu
I'm curious whether there is any update for this bug report.

apt-list changes sends email from vm with subject "apt-listchanges: changelogs 
for ". 
we have several labs and the hostname are same, I hope it can be configured to 
use FQDN, not hostname. With FQDN in the email subject, it's easier to identify 
the host's location and how important of this email is.

Thanks
Dong

** Tags added: watching

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

Title:
  Use FQDN in apt-listchanges report

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt-listchanges/+bug/1411371/+subscriptions

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

[Bug 1800849] Re: [Ubuntu] kvm: fix deadlock when killed by oom

2018-11-01 Thread Frank Heimes
** Description changed:

+ == SRU Justification ==
+ 
+ Description: kvm: fix deadlock when killed by oom
+ Symptom: oom killer leaves processes in a deadlock state.
+ Problem: The problem arises in the rare cases in which
+  handle_mm_fault does not release the mm_sem.
+ Solution: Correct the issue by manually release the mm_sem when needed.
+ 
+ == Fix ==
+ 
+ 306d6c49ac9ded4cb53b0925da52f2c2ada1 ("s390/kvm: fix deadlock when
+ killed by oom")
+ 
+ == Patch ==
+ 
+ commit 306d6c49ac9ded4cb53b0925da52f2c2ada1
+ Author: Claudio Imbrenda 
+ Date:   Mon Jul 16 10:38:57 2018 +0200
+ 
+ s390/kvm: fix deadlock when killed by oom
+ 
+ When the oom killer kills a userspace process in the page fault handler
+ while in guest context, the fault handler fails to release the mm_sem
+ if the FAULT_FLAG_RETRY_NOWAIT option is set. This leads to a deadlock
+ when tearing down the mm when the process terminates. This bug can only
+ happen when pfault is enabled, so only KVM clients are affected.
+ 
+ The problem arises in the rare cases in which handle_mm_fault does not
+ release the mm_sem. This patch fixes the issue by manually releasing
+ the mm_sem when needed.
+ 
+ Fixes: 24eb3a824c4f3 ("KVM: s390: Add FAULT_FLAG_RETRY_NOWAIT for guest 
fault")
+ Cc:  # 3.15+
+ Signed-off-by: Claudio Imbrenda 
+ Signed-off-by: Martin Schwidefsky 
+ 
+ == Regression Potential ==
+ 
+ Low and minimal, because:
+ 
+ - code change is s390x only
+ - limited to one single file: /arch/s390/mm/fault.c
+ - just two additional lines added (if stmt)
+ - Xenial and Cosmic already have this commit via upstream stable updates.
+ - Hence patch is just missing in Bionic.
+ - Test kernel was build for testting.
+ 
+ == Test Case ==
+ 
+ Create numerous KVM guests so that the host starts swapping
+ and memory becomes overcomitted and the oom killer is triggered.
+ __
+ 
  Description:  kvm: fix deadlock when killed by oom
  
  Symptom:  oom killer leaves processes in a deadlock state.
  
  Problem:  The problem arises in the rare cases in which
-   handle_mm_fault does not release the mm_sem.
+   handle_mm_fault does not release the mm_sem.
  
  Solution: Correct the issue by manually relaese the mm_sem
-   when needed.
+   when needed.
  
  Reproduction: Create numerous KVM guests so that the host starts
-   swapping and memory becomes overcomitted and the oom
-   killer is triggered.
- 
+   swapping and memory becomes overcomitted and the oom
+   killer is triggered.
  
  kernel 4.19
  Upstream-ID:  306d6c49ac9ded4cb53b0925da52f2c2ada1

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

Title:
  [Ubuntu] kvm: fix deadlock when killed by oom

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-z-systems/+bug/1800849/+subscriptions

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

[Bug 1801108] [NEW] on resume from suspend I am logged out

2018-11-01 Thread Scott Stensland
Public bug reported:

After a fresh install of ubuntu 18.10 everything was fine for days
now when I suspend then resume it has logged me out
This behaviour is repeatable ... every suspend results in a resume into a fresh 
login session.
My uptime indicates its not a reboot just a log out 

Description:Ubuntu 18.10
Release:18.10

ProblemType: Bug
DistroRelease: Ubuntu 18.10
Package: linux-image-4.18.0-11-generic 4.18.0-11.12
ProcVersionSignature: Ubuntu 4.18.0-11.12-generic 4.18.12
Uname: Linux 4.18.0-11-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.10-0ubuntu13
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  ota1349 F pulseaudio
 /dev/snd/controlC1:  ota1349 F pulseaudio
CurrentDesktop: ubuntu:GNOME
Date: Thu Nov  1 11:23:30 2018
InstallationDate: Installed on 2018-10-26 (5 days ago)
InstallationMedia: Ubuntu 18.10 "Cosmic Cuttlefish" - Release amd64 (20181017.3)
MachineType: ASUSTeK COMPUTER INC. Q524UQK
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-11-generic 
root=UUID=1fb1b8d9-79f7-4190-8331-1d389ed4c80f ro quiet splash vt.handoff=1
RelatedPackageVersions:
 linux-restricted-modules-4.18.0-11-generic N/A
 linux-backports-modules-4.18.0-11-generic  N/A
 linux-firmware 1.175
SourcePackage: linux
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 10/17/2016
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: Q524UQK.303
dmi.board.asset.tag: ATN12345678901234567
dmi.board.name: Q524UQK
dmi.board.vendor: ASUSTeK COMPUTER INC.
dmi.board.version: 1.0
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 31
dmi.chassis.vendor: ASUSTeK COMPUTER INC.
dmi.chassis.version: 1.0
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrQ524UQK.303:bd10/17/2016:svnASUSTeKCOMPUTERINC.:pnQ524UQK:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnQ524UQK:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct31:cvr1.0:
dmi.product.family: Q
dmi.product.name: Q524UQK
dmi.product.version: 1.0
dmi.sys.vendor: ASUSTeK COMPUTER INC.

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


** Tags: amd64 apport-bug cosmic package-from-proposed

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

Title:
  on resume from suspend I am logged out

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

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

[Bug 1801103] Re: Kubuntu driver manager fails to install nvidia-prime on hybrid systems and that makes system unusable for unexperienced users

2018-11-01 Thread Rik Mills via ubuntu-bugs
The driver manager simply installs the nvidia driver/meta package for
the compatible selected driver. If prime should be a dependency of that,
then is really an issue with that package.

** Package changed: kubuntu-driver-manager (Ubuntu) => nvidia-graphics-
drivers-340 (Ubuntu)

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

Title:
  Kubuntu driver manager fails to install nvidia-prime on hybrid systems
  and that makes system unusable for unexperienced users

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

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

[Bug 1799497] Re: 4.15 kernel hard lockup about once a week

2018-11-01 Thread Stéphane Graber
Oh, I am also using zram-config on the affected machine.

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

Title:
  4.15 kernel hard lockup about once a week

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

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

[Bug 1801108] Status changed to Confirmed

2018-11-01 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/1801108

Title:
  on resume from suspend I am logged out

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

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

[Bug 1800849] Re: [Ubuntu] kvm: fix deadlock when killed by oom

2018-11-01 Thread Frank Heimes
SRU requested:
https://lists.ubuntu.com/archives/kernel-team/2018-November/096393.html

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

Title:
  [Ubuntu] kvm: fix deadlock when killed by oom

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-z-systems/+bug/1800849/+subscriptions

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

[Bug 1800639] Re: [Ubuntu] net/af_iucv: fix skb leaks for HiperTransport

2018-11-01 Thread Frank Heimes
SRU requested:
https://lists.ubuntu.com/archives/kernel-team/2018-November/096390.html

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

Title:
  [Ubuntu] net/af_iucv: fix skb leaks for HiperTransport

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-z-systems/+bug/1800639/+subscriptions

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

[Bug 1791894] Re: [SRU] figtree crashes on start

2018-11-01 Thread Graham Inggs
** Tags removed: verification-needed
** Tags added: 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/1791894

Title:
  [SRU] figtree crashes on start

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

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

[Bug 1759603] Re: Can't log in after installing indicator-multiload (ubuntu 17.10)

2018-11-01 Thread david braun
0.4-0ubuntu5 still a problem in Ubuntu 18.04.1

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

Title:
  Can't log in after installing indicator-multiload (ubuntu 17.10)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-multiload/+bug/1759603/+subscriptions

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

[Bug 1799417] Re: linux-kvm: 4.15.0-1026.26 -proposed tracker

2018-11-01 Thread Brad Figg
** Changed in: kernel-sru-workflow/automated-testing
   Status: Incomplete => Fix Released

** Description changed:

  This bug is for tracking the  upload package. This
  bug will contain status and testing results related to that upload.
  
  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1799411
  phase: Promoted to proposed
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
-   automated-testing: Testing FAILED
-   regression-testing: Testing in progress
security-signoff: Waiting for signoff
verification-testing: Testing in progress

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

Title:
  linux-kvm: 4.15.0-1026.26 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1799417/+subscriptions

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

[Bug 1800991] Re: Bad sata messages after upgrade to 4.15.0-41-generic on bionic

2018-11-01 Thread Konstantin Petrov
Unfortunately could not run the cmd:

apport-collect 1800991
QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root'
ERROR: The python3-launchpadlib package is not installed. This functionality is 
not available.


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

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

Title:
  Bad sata messages after upgrade to 4.15.0-41-generic on bionic

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

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

[Bug 1799407] Re: linux-euclid: 4.4.0-9029.31 -proposed tracker

2018-11-01 Thread Brad Figg
** Description changed:

  This bug is for tracking the  upload package. This
  bug will contain status and testing results related to that upload.
  
  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  -- swm properties --
  boot-testing-requested: true
  kernel-stable-master-bug: 1799401
  phase: Promoted to proposed
  proposed-announcement-sent: true
  proposed-testing-requested: true
  reason:
-   automated-testing: Testing in progress
certification-testing: Testing in progress
security-signoff: Waiting for signoff
-   verification-testing: Testing in progress

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

Title:
  linux-euclid: 4.4.0-9029.31 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1799407/+subscriptions

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

[Bug 1579548] Re: OTR plugin does not load in Xenial

2018-11-01 Thread Mustafa
Still have the same bug. Is this going to be patched?

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

Title:
  OTR plugin does not load in Xenial

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/irssi-plugin-otr/+bug/1579548/+subscriptions

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

[Bug 1801022] [NEW] Mouse not working on console (novnc) when there is a touch screen

2018-11-01 Thread Phang
Public bug reported:

Openstack: Mitaka Version
Description:Ubuntu 16.04.3 LTS
Release:16.04

nova-novncproxy  2:13.1.4-0ubuntu4.2   
novnc1:0.4+dfsg+1+20131010+gitf68af8af3d-4 
python-novnc 1:0.4+dfsg+1+20131010+gitf68af8af3d-4 

On the console (novnc) on Windows Server VM instance, the mouse is not
working when using notebook with touch screen device. Normal notebook
without touch screen is working fine.

Google search
https://forum.proxmox.com/threads/mouse-not-working-on-console-novnc.32619/
https://groups.google.com/forum/#!topic/novnc/bOpKeuZCd7s
https://github.com/novnc/noVNC/issues/620

Will it be possible to implement those fixes to ubuntu repository?

Thank you.

** Affects: novnc (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/1801022

Title:
  Mouse not working on console (novnc) when there is a touch screen

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

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

[Bug 1800838] Re: Lenovo P52 laptop fan control incorrect

2018-11-01 Thread Kirill Shustov
This is manual fan regulation what is not very handy to control fan speed 
manually all the time.
I found other issue, second fan is not wokring. It is repeating on 3 laptops, 
so can not be hardware malfunction.

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

Title:
  Lenovo P52 laptop fan control  incorrect

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

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

[Bug 1801027] [NEW] openturns ftbfs: remove it and demote eficas

2018-11-01 Thread Matthias Klose
Public bug reported:

openturns ftbfs: remove it and demote eficas

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

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

** Affects: openturns (Debian)
 Importance: Unknown
 Status: Unknown


** Tags: block-proposed ftbfs

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

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

** Tags added: block-proposed ftbfs

** Also affects: eficas (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/1801027

Title:
  openturns ftbfs: remove it and demote eficas

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

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

[Bug 1801024] Re: tpm2_takeownership -c: Failed to initialize tcti context: 0x1

2018-11-01 Thread Yuan-Chen Cheng
** Description changed:

  on a dell machine install bionic.
+ 
+ $ sudo resourcemgr
  
  $ sudo tpm2_takeownership -c
  Failed to initialize tcti context: 0x1
  
  However,
  
  $ sudo tpm2_getrandom -T device -d /dev/tpmrm0 4
  
  do return random value.

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

Title:
  tpm2_takeownership -c: Failed to initialize tcti context: 0x1

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

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

[Bug 1777860] Re: Sssd doesn't clean up PIDfile after crash

2018-11-01 Thread Launchpad Bug Tracker
** Merge proposal linked:
   
https://code.launchpad.net/~kstenerud/ubuntu/+source/sssd/+git/sssd/+merge/358149

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

Title:
  Sssd doesn't clean up PIDfile after crash

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

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

[Bug 1801024] Re: tpm2_takeownership -c: Failed to initialize tcti context: 0x1

2018-11-01 Thread Yuan-Chen Cheng
** Description changed:

  on a dell machine install bionic.
+ kernel: 4.15.0-38-generic
  
  $ sudo resourcemgr
  
  $ sudo tpm2_takeownership -c
  Failed to initialize tcti context: 0x1
  
  However,
  
  $ sudo tpm2_getrandom -T device -d /dev/tpmrm0 4
  
  do return random value.

** Description changed:

  on a dell machine install bionic.
  kernel: 4.15.0-38-generic
+ tpm2-tools: 2.1.0-1build1
+ libsapi-utils: 1.0-1
+ libsapi0: 1.0-1
  
  $ sudo resourcemgr
  
  $ sudo tpm2_takeownership -c
  Failed to initialize tcti context: 0x1
  
  However,
  
  $ sudo tpm2_getrandom -T device -d /dev/tpmrm0 4
  
  do return random value.

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

Title:
  tpm2_takeownership -c: Failed to initialize tcti context: 0x1

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

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

[Bug 1799407] Re: linux-euclid: 4.4.0-9029.31 -proposed tracker

2018-11-01 Thread Stefan Bader
CVE only update. No bug reports to be verified.

** Changed in: kernel-sru-workflow/verification-testing
   Status: Confirmed => Invalid

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

Title:
  linux-euclid: 4.4.0-9029.31 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1799407/+subscriptions

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

[Bug 1799407] Re: linux-euclid: 4.4.0-9029.31 -proposed tracker

2018-11-01 Thread Stefan Bader
Automated testing is not meaningful. The euclid kernel only boots on
very specific hardware which cannot be enforced within ADT.

** Changed in: kernel-sru-workflow/automated-testing
   Status: Confirmed => Invalid

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

Title:
  linux-euclid: 4.4.0-9029.31 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1799407/+subscriptions

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

[Bug 1800991] Missing required logs.

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

apport-collect 1800991

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

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

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

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

** Tags added: bionic

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

Title:
  Bad sata messages after upgrade to 4.15.0-41-generic on bionic

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

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

[Bug 1801031] [NEW] ftbfs in disco

2018-11-01 Thread Michael Hudson-Doyle
Public bug reported:

Hi, youkey-assistant fails to build in disco:

https://launchpad.net/ubuntu/+source/youker-assistant/3.0.0-0ubuntu2

This is the error message:

../../component/alertdialog.cpp: In member function ‘virtual void 
AlertDialog::paintEvent(QPaintEvent*)’:
../../component/alertdialog.cpp:40:5: error: ‘QStyleOption’ was not declared in 
this scope
 QStyleOption opt;
 ^~~~
../../component/alertdialog.cpp:40:5: note: suggested alternative: ‘QTextOption’
 QStyleOption opt;
 ^~~~
 QTextOption
../../component/alertdialog.cpp:41:5: error: ‘opt’ was not declared in this 
scope
 opt.init(this);
 ^~~
../../component/alertdialog.cpp:41:5: note: suggested alternative: ‘oct’
 opt.init(this);
 ^~~
 oct
../../component/alertdialog.cpp:42:12: error: invalid use of incomplete type 
‘class QStyle’
 style()->drawPrimitive(QStyle::PE_Widget, , , this);
^~
In file included from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QWidget:1,
 from ../../component/alertdialog.h:19,
 from ../../component/alertdialog.cpp:16:
/usr/include/x86_64-linux-gnu/qt5/QtWidgets/qwidget.h:67:7: note: forward 
declaration of ‘class QStyle’
 class QStyle;
   ^~
../../component/alertdialog.cpp:42:36: error: incomplete type ‘QStyle’ used in 
nested name specifier
 style()->drawPrimitive(QStyle::PE_Widget, , , this);
^

** Affects: youker-assistant (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/1801031

Title:
  ftbfs in disco

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/youker-assistant/+bug/1801031/+subscriptions

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

[Bug 1799497] Re: 4.15 kernel hard lockup about once a week

2018-11-01 Thread Luis Rodriguez
In my case it hasn't happen again.. Although I removed package zram-
config from the host servers  ( I think this is the only difference in
software from 16.04 to 18.04 that I added.  I would like to either
discard or confirm that that it has an effect on the issue

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

Title:
  4.15 kernel hard lockup about once a week

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

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

[Bug 1800329] Re: Ubnutu 18.04 LTS KDE Neon does not resolve local (or single name) queries through DHCP assigned DNS (cached) server on local network

2018-11-01 Thread Venca B Spam
I tried to find a reasonable solution and looks that there are different
approaches.

I wanted to stay at most within the distribution layout while keeping
all business requirements fulfilled. This is what I tested:

```code


# Install required package and reconfigure service plans (i.e. disable 
systemd-resolved, enable dnsmasq
sudo apt-get install dnsmasq
sudo systemctl disable systemd-resolved
sudo systemctl stop systemd-resolved
sudo systemctl enable dnsmasq

# These two lines should work on most environments, but .. :-)
# Just add or change 'dns=dnsmasq' to your NetworkManager.conf to the section 
[main]
#sudo cp /etc/NetworkManager/NetworkManager.conf 
/etc/NetworkManager/NetworkManager.conf.backup
#sudo bash -c 'cat /etc/NetworkManager/NetworkManager.conf.backup |sed -e 
"s/^dns=.*//"| sed -e "s/\[main\]/\[main\]\ndns=dnsmasq/" 
>/etc/NetworkManager/NetworkManager.conf'

# Restart NetworkManager to make the change above applied
sudo systemctl restart NetworkManager

# This removes the systemd resolv.conf link only if it has NetworkManager 
replacement :-)
ls /var/run/NetworkManager/resolv.conf && sudo rm /etc/resolv.conf 

# And add NetworkManager's resolv.conf available for the system resolver
sudo ln -s /var/run/NetworkManager/resolv.conf /etc/resolv.conf


```

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

Title:
  Ubnutu 18.04 LTS KDE Neon does not resolve local (or single name)
  queries through DHCP assigned DNS (cached) server on local network

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

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

[Bug 1800988] [NEW] Sync wxmaxima 18.10.2-1 (universe) from Debian unstable (main)

2018-11-01 Thread PeterPall
Public bug reported:

Please sync wxmaxima 18.10.2-1 (universe) from Debian unstable (main)

Changelog entries since current disco version 18.02.0-2:

wxmaxima (18.10.2-1) unstable; urgency=medium

  * A new upstream version that comes with many bugfixes, features and
performance improvements.
  * Updated the Homepage and the main upstream contact of the program.
  * Dropped all the patches as they are incorporated in the new upstream
  * release.
  * Raised the debhelper compatibility level (and min version) to 11
  * debian info: Promoted several URLs from http to https
  * debian packaging: Removed the unneeded get-orig-source target.
  * debian packaging: Added an vcs-browser field.
 -- Gunter Königsmann   Mon, 22 Oct 2018 08:12:36 +0100

** Affects: wxmaxima (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/1800988

Title:
  Sync wxmaxima 18.10.2-1 (universe) from Debian unstable (main)

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

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

[Bug 1800989] [NEW] package phpmyadmin (not installed) failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2018-11-01 Thread Tarun
Public bug reported:

help me

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: phpmyadmin (not installed)
ProcVersionSignature: Ubuntu 4.15.0-38.41~16.04.1-generic 4.15.18
Uname: Linux 4.15.0-38-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.18
AptOrdering:
 phpmyadmin: Install
 phpmyadmin: Configure
 NULL: ConfigurePending
Architecture: amd64
Date: Wed Oct 31 19:58:50 2018
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationDate: Installed on 2018-06-30 (123 days ago)
InstallationMedia: Ubuntu 16.04.4 LTS "Xenial Xerus" - Release amd64 (20180228)
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.4
 apt  1.2.29
SourcePackage: phpmyadmin
Title: package phpmyadmin (not installed) failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package xenial

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

Title:
  package phpmyadmin (not installed) failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

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

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

[Bug 1800991] Re: Bad sata messages after upgrade to 4.15.0-41-generic on bionic

2018-11-01 Thread Konstantin Petrov
Adding dmesg.

** Attachment added: "dmesg.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1800991/+attachment/5207739/+files/dmesg.txt

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

Title:
  Bad sata messages after upgrade to 4.15.0-41-generic on bionic

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

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

[Bug 1800859] Re: Fail to wake from suspend in Ubuntu 18.10

2018-11-01 Thread Tony Corbett
That would be a good idea  (silly me!)

Booted into 14.9 ... just testing as we speak!

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

Title:
  Fail to wake from suspend in Ubuntu 18.10

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

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

[Bug 1801024] [NEW] tpm2_takeownership -c: Failed to initialize tcti context: 0x1

2018-11-01 Thread Yuan-Chen Cheng
Public bug reported:

on a dell machine install bionic.

$ sudo tpm2_takeownership -c
Failed to initialize tcti context: 0x1

However,

$ sudo tpm2_getrandom -T device -d /dev/tpmrm0 4

do return random value.

** Affects: tpm2-tools (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/1801024

Title:
  tpm2_takeownership -c: Failed to initialize tcti context: 0x1

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

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

[Bug 1800164] Re: Keyboard backlight control doesn't work on Asus N550JV

2018-11-01 Thread Lastique
The keyboard backlight control doesn't work in 4.18.16.

** Tags added: kernel-bug-exists-upstream

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

Title:
  Keyboard backlight control doesn't work on Asus N550JV

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

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

[Bug 1766005] Re: tengo problemas

2018-11-01 Thread Daniel van Vugt
Thank you for reporting this bug to Ubuntu.
Ubuntu 17.10 (artful) reached end-of-life on July 19, 2018.

See this document for currently supported Ubuntu releases:
https://wiki.ubuntu.com/Releases 

We appreciate that this bug may be old and you might not be interested
in discussing it any more. But if you are then please upgrade to the
latest Ubuntu version and re-test. If you then find the bug is still
present in the newer Ubuntu version, please add a comment here telling
us which new version it is in and change the bug status to Confirmed.

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

** Changed in: ubuntu
   Status: New => Won't Fix

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

Title:
  tengo problemas

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

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

[Bug 1765451] Re: im trying

2018-11-01 Thread Daniel van Vugt
Thank you for taking the time to report this bug and helping to make
Ubuntu better. Unfortunately, we cannot work on this bug because your
description didn't include enough information. You may find it helpful
to read "How to report bugs effectively"
http://www.chiark.greenend.org.uk/~sgtatham/bugs.html. We'd be grateful
if you would then provide a more complete description of the problem.

We have instructions on debugging some types of problems at
http://wiki.ubuntu.com/DebuggingProcedures.

At a minimum, we need:
1. The specific steps or actions you took that caused you to encounter the 
problem.
2. The behavior you expected. 
3. The behavior you actually encountered (in as much detail as possible).
Thanks!


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

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

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

Title:
  im trying

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

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

[Bug 1764768] Re: i dont know do it yourself

2018-11-01 Thread Daniel van Vugt
Thank you for reporting this bug to Ubuntu.
Ubuntu 17.10 (artful) reached end-of-life on July 19, 2018.

See this document for currently supported Ubuntu releases:
https://wiki.ubuntu.com/Releases 

We appreciate that this bug may be old and you might not be interested
in discussing it any more. But if you are then please upgrade to the
latest Ubuntu version and re-test. If you then find the bug is still
present in the newer Ubuntu version, please add a comment here telling
us which new version it is in and change the bug status to Confirmed.


** Changed in: xorg (Ubuntu)
   Status: New => Won't Fix

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

Title:
  i dont know do it yourself

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

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

Re: [Bug 1800809] Re: login screen is huge

2018-11-01 Thread kopolov
yes, thank you!
I marked the ticket as invalid (and also found the culprit which thought it
was very funny ... :)  )

Hagai

On Thu, Nov 1, 2018 at 2:41 PM Daniel van Vugt <
daniel.van.v...@canonical.com> wrote:

> It sounds like you have zoom enabled. Unfortunately other bugs make it
> difficult to disable.
>
> On the login screen:
>
> 1. Click on the person icon near the top-right (the accessibility menu).
>
> 2. Select the second option in the menu that appears (but may appear
> partially missing). That is the "Zoom" option.
>
> ** Package changed: xorg (Ubuntu) => gnome-shell (Ubuntu)
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1800809
>
> Title:
>   login screen is huge
>
> To manage notifications about this bug go to:
>
> https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1800809/+subscriptions
>

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

Title:
  login screen is huge

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

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

[Bug 1799417] Re: linux-kvm: 4.15.0-1026.26 -proposed tracker

2018-11-01 Thread Po-Hsu Lin
4.15.0-1026.26 - kvm
Regression test CMPL, RTB.

Issue to note in amd64:
  ubuntu_fan_smoke_test - ubuntu_fan_smoke_test failed on 4.4/4.15 kvm kernel 
(bug 1763323)
  ubuntu_kvm_unit_tests - 18 failed
  ubuntu_ltp - hang with oom test
  ubuntu_ltp_syscalls - execveat03 failed (bug 1786729) getrandom02 timed out 
(bug 1797327) inotify08 failed with X/X-LTS/X-HWE/A/B kernel (bug 1775784) 
msgstress04 (bug 1797348) process_vm_readv01, process_vm_writev01 failed (bug 
1797330) process_vm_writev02, process_vm_readv02, process_vm_readv03 failed 
(bug 1797331) quotactl01 failed (bug 1790028) quotactl02 / 03 failed (bug 
1797325)
  ubuntu_lxc - network issue for lxc-test-no-new-privs
  ubuntu_performance_fio - test for nvidia project, should not be run
  ubuntu_performance_pts - test for nvidia project, should not be run
  ubuntu_qrt_kernel_panic - missing keyutils package (bug 1800416)
  ubuntu_quota_smoke_test - failed with KVM kernel (bug 1784535)
  ubuntu_sysdig_smoke_test - Unable to insert sysdig_probe module on B-KVM 
kernel (bug 1766565)


** Changed in: kernel-sru-workflow/regression-testing
   Status: Confirmed => Fix Released

** Changed in: kernel-sru-workflow/regression-testing
 Assignee: Canonical Kernel Team (canonical-kernel-team) => Po-Hsu Lin 
(cypressyew)

** Tags added: regression-testing-passed

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

Title:
  linux-kvm: 4.15.0-1026.26 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1799417/+subscriptions

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

[Bug 1801025] [NEW] nvidia-dkms-390 390.87-0ubuntu1: nvidia kernel module failed to build

2018-11-01 Thread Tobais Carlander
Public bug reported:

Nvidia Driver not loading

ProblemType: Package
DistroRelease: Ubuntu 18.10
Package: nvidia-dkms-390 390.87-0ubuntu1
ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
Uname: Linux 4.18.0-10-generic x86_64
ApportVersion: 2.20.10-0ubuntu13
Architecture: amd64
DKMSBuildLog:
 DKMS make.log for nvidia-390.87 for kernel 4.18.0-10-generic (x86_64)
 Thu  1 Nov 10:42:36 EAT 2018
 make: *** No rule to make target 'modules'.  Stop.
DKMSKernelVersion: 4.18.0-10-generic
Date: Thu Nov  1 10:42:37 2018
InstallationDate: Installed on 2018-10-19 (12 days ago)
InstallationMedia: Ubuntu 18.10 "Cosmic Cuttlefish" - Release amd64 (20181017.3)
PackageVersion: 390.87-0ubuntu1
Python3Details: /usr/bin/python3.6, Python 3.6.7rc1, python3-minimal, 3.6.6-1
PythonDetails: /usr/bin/python2.7, Python 2.7.15+, python-minimal, 2.7.15-3
RelatedPackageVersions:
 dpkg 1.19.0.5ubuntu5
 apt  1.7.0
SourcePackage: nvidia-graphics-drivers-390
Title: nvidia-dkms-390 390.87-0ubuntu1: nvidia kernel module failed to build
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package cosmic

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

Title:
  nvidia-dkms-390 390.87-0ubuntu1: nvidia kernel module failed to build

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

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

[Bug 1762593] Re: anki crashed with ModuleNotFoundError in /usr/share/anki/anki/mpv.py: No module named 'distutils.spawn'

2018-11-01 Thread Matthias Klose
yes, this should be replaced by shutil.which

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

Title:
  anki crashed with ModuleNotFoundError in /usr/share/anki/anki/mpv.py:
  No module named 'distutils.spawn'

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

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

[Bug 1800859] Re: Fail to wake from suspend in Ubuntu 18.10

2018-11-01 Thread Kai-Heng Feng
AMDGPU stops working after resume.

Please disable secure boot to test upstream kernel.

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

Title:
  Fail to wake from suspend in Ubuntu 18.10

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

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

[Bug 1787775] Re: touchpad not working on lenovo yoga 530

2018-11-01 Thread Luka Goltnik
Found this patch, that will hopefully solve this problem: https://www
.mail-archive.com/linux-kernel@vger.kernel.org/msg1793230.html

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

Title:
  touchpad not working on lenovo yoga 530

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

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

[Bug 1800881] Re: mysqldb bytes error

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

** Changed in: python-mysqldb (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/1800881

Title:
  mysqldb bytes error

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

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

[Bug 1800989] Re: package phpmyadmin (not installed) failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2018-11-01 Thread Apport retracing service
** Tags removed: need-duplicate-check

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

Title:
  package phpmyadmin (not installed) failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

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

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

[Bug 1800991] [NEW] Bad sata messages after upgrade to 4.15.0-41-generic on bionic

2018-11-01 Thread Konstantin Petrov
Public bug reported:

Hi:

After upgrading to latest 4.15.0-41 kernel on ubuntu bionic I start
getting weird error messages on kernel log (see below) related to sata
drive - in this case 128GB ssd drive. Couple of things - it happened
after system get out from sleep state (s3), the hdd is ssd and it is a
brand new one (I have bought it 2 weeks ago).

System: asus rog G551JW-CN319D (cpu i7, 16GM ram, 128GB ssd, 1TB hdd)
Kernel: Ubuntu 4.15.0-38.41-generic 4.15.18


[121459.829759] ata5: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[121459.831501] ata5.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
[121459.831505] ata5.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) 
filtered out
[121459.831508] ata5.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION 
OVERLAY) filtered out
[121459.834767] ata5.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
[121459.834773] ata5.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) 
filtered out
[121459.834777] ata5.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION 
OVERLAY) filtered out
[121459.836022] ata5.00: configured for UDMA/133
[121459.934847] IPv6: ADDRCONF(NETDEV_UP): enp5s0f1: link is not ready
[121459.983752] r8169 :05:00.1 enp5s0f1: link down
[121459.983923] IPv6: ADDRCONF(NETDEV_UP): enp5s0f1: link is not ready
[121459.987018] IPv6: ADDRCONF(NETDEV_UP): wlp4s0: link is not ready
[121460.230787] IPv6: ADDRCONF(NETDEV_UP): wlp4s0: link is not ready
[121460.285034] IPv6: ADDRCONF(NETDEV_UP): wlp4s0: link is not ready
[121463.674998] wlp4s0: authenticate with 68:7f:74:3e:b0:b7
[121463.676976] wlp4s0: send auth to 68:7f:74:3e:b0:b7 (try 1/3)
[121463.678951] wlp4s0: authenticated
[121463.681714] wlp4s0: associate with 68:7f:74:3e:b0:b7 (try 1/3)
[121463.684372] wlp4s0: RX AssocResp from 68:7f:74:3e:b0:b7 (capab=0x431 
status=0 aid=3)
[121463.687321] wlp4s0: associated
[121464.754044] IPv6: ADDRCONF(NETDEV_CHANGE): wlp4s0: link becomes ready
[121471.301682] ata6.00: exception Emask 0x10 SAct 0x6fff SErr 0x400100 
action 0x6 frozen
[121471.301685] ata6.00: irq_stat 0x0800, interface fatal error
[121471.301687] ata6: SError: { UnrecovData Handshk }
[121471.301690] ata6.00: failed command: WRITE FPDMA QUEUED
[121471.301695] ata6.00: cmd 61/40:00:00:80:d2/05:00:01:00:00/40 tag 0 ncq dma 
688128 out
 res 40/00:cc:40:05:d0/00:00:01:00:00/40 Emask 0x10 
(ATA bus error) 

   
[121471.301697] ata6.00: status: { DRDY }
[121471.301698] ata6.00: failed command: WRITE FPDMA QUEUED
[121471.301702] ata6.00: cmd 61/40:08:40:85:d2/05:00:01:00:00/40 tag 1 ncq dma 
688128 out
 res 40/00:cc:40:05:d0/00:00:01:00:00/40 Emask 0x10 
(ATA bus error) 

   
[121471.301704] ata6.00: status: { DRDY }
[121471.301706] ata6.00: failed command: WRITE FPDMA QUEUED
[121471.301709] ata6.00: cmd 61/40:10:80:8a:d2/05:00:01:00:00/40 tag 2 ncq dma 
688128 out
 res 40/00:cc:40:05:d0/00:00:01:00:00/40 Emask 0x10 
(ATA bus error) 

   
[121471.301711] ata6.00: status: { DRDY }
[121471.301713] ata6.00: failed command: WRITE FPDMA QUEUED
[121471.301716] ata6.00: cmd 61/40:18:c0:8f:d2/00:00:01:00:00/40 tag 3 ncq dma 
32768 out
 res 40/00:cc:40:05:d0/00:00:01:00:00/40 Emask 0x10 
(ATA bus error) 

   
[121471.301718] ata6.00: status: { DRDY }
[121471.301720] ata6.00: failed command: WRITE FPDMA QUEUED
[121471.301724] ata6.00: cmd 61/40:20:00:60:d2/05:00:01:00:00/40 tag 4 ncq dma 
688128 out
 res 40/00:cc:40:05:d0/00:00:01:00:00/40 Emask 0x10 
(ATA bus error) 

   
[121471.301725] ata6.00: status: { DRDY }
[121471.301727] ata6.00: failed command: WRITE FPDMA QUEUED
[121471.301731] ata6.00: cmd 61/40:28:40:65:d2/05:00:01:00:00/40 tag 5 ncq dma 
688128 out
 res 40/00:cc:40:05:d0/00:00:01:00:00/40 Emask 0x10 
(ATA bus error) 

   
[121471.301732] ata6.00: status: { DRDY }

[Bug 1799659] Re: upgrade to 18.04

2018-11-01 Thread ermek6
And I use `do-release-upgrade` tool without arguments

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

Title:
  upgrade to 18.04

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

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

[Bug 1797715] Re: Libvirt kvm windows guest has no network after upgrade to 18.10

2018-11-01 Thread JR
Hi Christian,
I did some further testing with the network interfaces, and I can report:
* networking in bridged mode (macvtap) with my ethernet device works as desired
* networking in bridged mode (macvtap) with my wifi device does *not* work
* networking in nat mode does not work on any of my devices (this is what I 
always used)

still, as said earlier, ping in nat mode does work, but everything else
I tested does not.

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

Title:
  Libvirt kvm windows guest has no network after upgrade to 18.10

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

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

[Bug 1790454] Re: Bluetooth (btintel) stops working after suspend/resume

2018-11-01 Thread Bas Zoetekouw
I'm happy to report that everything seems stable now.  
I'm now running the following config
 - kernel 4.19.0-041900rc7-generic
 - delay after reset set to 200ms (see #38)
 - unload iwlwifi on suspend/sleep
 - btusb.enable_autosuspend=0

Should I try with a regular kernel and only btusb.enable_autosuspend=0 ?

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

Title:
  Bluetooth (btintel) stops working after suspend/resume

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

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

[Bug 1800706] Re: Currently 32-bit program - upgrade to 64-bit

2018-11-01 Thread Adolfo Jayme
** Changed in: stellarium (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/1800706

Title:
  Currently 32-bit program - upgrade to 64-bit

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

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

[Bug 1783706] Re: [MIR] oath-toolkit

2018-11-01 Thread Matthias Klose
Override component to main
oath-toolkit 2.6.1-1.2ubuntu0.18.10.1 in disco: universe/devel -> main
1 publication overridden.

Override component to main
liboath0 2.6.1-1.2ubuntu0.18.10.1 in disco amd64: universe/libs/optional/100% 
-> main
liboath0 2.6.1-1.2ubuntu0.18.10.1 in disco arm64: universe/libs/optional/100% 
-> main
liboath0 2.6.1-1.2ubuntu0.18.10.1 in disco armhf: universe/libs/optional/100% 
-> main
liboath0 2.6.1-1.2ubuntu0.18.10.1 in disco i386: universe/libs/optional/100% -> 
main
liboath0 2.6.1-1.2ubuntu0.18.10.1 in disco ppc64el: universe/libs/optional/100% 
-> main
liboath0 2.6.1-1.2ubuntu0.18.10.1 in disco s390x: universe/libs/optional/100% 
-> main
6 publications overridden.

This still needs some override excludes ...

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

Title:
  [MIR] oath-toolkit

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/oath-toolkit/+bug/1783706/+subscriptions

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

[Bug 1800859] Re: Fail to wake from suspend in Ubuntu 18.10

2018-11-01 Thread Tony Corbett
This one failed to suspend properly on 14.9 ...

Nov  1 08:30:24 g0wfv kernel: [  282.955728] atkbd serio0: Unknown key pressed 
(translated set 2, code 0xd8 on isa0060/serio0).
Nov  1 08:30:24 g0wfv kernel: [  282.955736] atkbd serio0: Use 'setkeycodes 
e058 ' to make it known.
Nov  1 08:30:24 g0wfv kernel: [  282.964593] atkbd serio0: Unknown key released 
(translated set 2, code 0xd8 on isa0060/serio0).
Nov  1 08:30:24 g0wfv kernel: [  282.964600] atkbd serio0: Use 'setkeycodes 
e058 ' to make it known.
Nov  1 08:30:24 g0wfv kernel: [  283.290474] wlo1: deauthenticating from 
c0:ff:d4:71:dd:c8 by local choice (Reason: 3=DEAUTH_LEAVING)
Nov  1 08:30:28 g0wfv kernel: [  287.130650] PM: suspend entry (deep)
Nov  1 09:13:18 g0wfv kernel: [0.00] Linux version 
4.19.0-041900-generic (kernel@tangerine) (gcc version 8.2.0 (Ubuntu 
8.2.0-7ubuntu1)) #201810221809 SMP Mon Oct 22 22:11:45 UTC 2018

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

Title:
  Fail to wake from suspend in Ubuntu 18.10

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

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

[Bug 1787775] Re: touchpad not working on lenovo yoga 530

2018-11-01 Thread Luka Goltnik
Found this patch, that will hopefully solve this problem: https://www
.mail-archive.com/linux-kernel@vger.kernel.org/msg1793230.html

For now this is how I got touchpad/touchscreen working:
https://github.com/Syniurge/i2c-amd-mp2

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

Title:
  touchpad not working on lenovo yoga 530

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

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

[Bug 1801034] Re: remove mathgl and 3depict binaries on ppc64el and s390x

2018-11-01 Thread Matthias Klose
Removing packages from disco:
3depict 0.0.19-1build1 in disco ppc64el
3depict 0.0.19-1build1 in disco s390x
Comment: LP: #1801034 remove ppc64el and s390x binaries for mathgl and 3depict
2 packages successfully removed.

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

Title:
  remove mathgl and 3depict binaries on ppc64el and s390x

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

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

[Bug 1801034] [NEW] remove mathgl and 3depict binaries on ppc64el and s390x

2018-11-01 Thread Matthias Klose
Public bug reported:

remove mathgl and 3depict binaries on ppc64el and s390x, mathgl now b-d
on qtwebengine5-dev.

** Affects: 3depict (Ubuntu)
 Importance: Undecided
 Status: Fix Released

** Affects: mathgl (Ubuntu)
 Importance: Undecided
 Status: Fix Released

** Also affects: mathgl (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/1801034

Title:
  remove mathgl and 3depict binaries on ppc64el and s390x

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

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

[Bug 1801034] Re: remove mathgl and 3depict binaries on ppc64el and s390x

2018-11-01 Thread Matthias Klose
Removing packages from disco:
libmgl-dev 2.4.2.1-1build1 in disco ppc64el
libmgl-dev 2.4.2.1-1build1 in disco s390x
libmgl-fltk7.5.0 2.4.2.1-1build1 in disco ppc64el
libmgl-fltk7.5.0 2.4.2.1-1build1 in disco s390x
libmgl-glut7.5.0 2.4.2.1-1build1 in disco ppc64el
libmgl-glut7.5.0 2.4.2.1-1build1 in disco s390x
libmgl-mpi7.5.0 2.4.2.1-1build1 in disco ppc64el
libmgl-mpi7.5.0 2.4.2.1-1build1 in disco s390x
libmgl-qt5-7.5.0 2.4.2.1-1build1 in disco ppc64el
libmgl-qt5-7.5.0 2.4.2.1-1build1 in disco s390x
libmgl-wnd7.5.0 2.4.2.1-1build1 in disco ppc64el
libmgl-wnd7.5.0 2.4.2.1-1build1 in disco s390x
libmgl-wx7.5.0 2.4.2.1-1build1 in disco ppc64el
libmgl-wx7.5.0 2.4.2.1-1build1 in disco s390x
libmgl7.5.0 2.4.2.1-1build1 in disco ppc64el
libmgl7.5.0 2.4.2.1-1build1 in disco s390x
mathgl 2.4.2.1-1build1 in disco ppc64el
mathgl 2.4.2.1-1build1 in disco s390x
python-mathgl 2.4.2.1-1build1 in disco ppc64el
python-mathgl 2.4.2.1-1build1 in disco s390x
udav 2.4.2.1-1build1 in disco ppc64el
udav 2.4.2.1-1build1 in disco s390x
Comment: LP: #1801034 remove ppc64el and s390x binaries for mathgl and 3depict
22 packages successfully removed.


** Changed in: 3depict (Ubuntu)
   Status: New => Fix Released

** Changed in: mathgl (Ubuntu)
   Status: New => 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/1801034

Title:
  remove mathgl and 3depict binaries on ppc64el and s390x

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

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

[Bug 1801033] [NEW] ubuntu_bpf test failed on Cosmic s390x

2018-11-01 Thread Po-Hsu Lin
Public bug reported:

There are 29 failures reported by the ubuntu_bpf test on Cosmic s390x
KVM / Ubuntu on LPAR

Failed test cases:

#200/p runtime/jit: pass > 32bit index to tail_call FAIL retval 2 != 42
#540/p calls: basic sanity FAIL
#541/p calls: not on unpriviledged FAIL
#542/p calls: div by 0 in subprog FAIL
#551/p calls: conditional call 2 FAIL
#553/p calls: conditional call 4 FAIL
#556/p calls: using r0 returned by callee FAIL
#558/p calls: callee is using r1 FAIL
#559/p calls: callee using args1 FAIL
#561/p calls: callee using two args FAIL
#563/p calls: two calls with args FAIL
#564/p calls: calls with stack arith FAIL
#581/p calls: two calls with stack read FAIL
#582/p calls: two calls with stack write FAIL
#585/p calls: stack depth check using three frames. test1 FAIL
#586/p calls: stack depth check using three frames. test2 FAIL
#591/p calls: write into caller stack frame FAIL
#593/p calls: two calls with stack write and void return FAIL
#595/p calls: two calls that return map_value FAIL
#596/p calls: two calls that return map_value with bool condition FAIL
#599/p calls: two calls that receive map_value via arg=ptr_stack_of_caller. 
test2 FAIL
#601/p calls: two calls that receive map_value_ptr_or_null via arg. test1 FAIL
#603/p calls: pkt_ptr spill into caller stack FAIL
#605/p calls: pkt_ptr spill into caller stack 3 FAIL
#606/p calls: pkt_ptr spill into caller stack 4 FAIL
#610/p calls: pkt_ptr spill into caller stack 8 FAIL
#612/p calls: caller stack init to zero or map_value_or_null FAIL
#614/p calls: two calls returning different map pointers for lookup (hash, 
array) FAIL
#639/p ld_abs: jump around ld_abs FAIL
Summary: 869 PASSED, 0 SKIPPED, 29 FAILED

ProblemType: Bug
DistroRelease: Ubuntu 18.10
Package: linux-image-4.18.0-11-generic 4.18.0-11.12
ProcVersionSignature: Ubuntu 4.18.0-11.12-generic 4.18.12
Uname: Linux 4.18.0-11-generic s390x
NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
AlsaDevices: Error: command ['ls', '-l', '/dev/snd/'] failed with exit code 2: 
ls: cannot access '/dev/snd/': No such file or directory
AplayDevices: Error: [Errno 2] No such file or directory: 'aplay': 'aplay'
ApportVersion: 2.20.10-0ubuntu13
Architecture: s390x
ArecordDevices: Error: [Errno 2] No such file or directory: 'arecord': 'arecord'
CRDA: Error: command ['iw', 'reg', 'get'] failed with exit code 1: nl80211 not 
found.
CurrentDmesg:
 
Date: Thu Nov  1 09:08:11 2018
IwConfig: Error: [Errno 2] No such file or directory: 'iwconfig': 'iwconfig'
Lspci:
 
Lsusb: Error: command ['lsusb'] failed with exit code 1:
PciMultimedia:
 
ProcFB: Error: [Errno 2] No such file or directory: '/proc/fb'
ProcKernelCmdLine: root=UUID=86fb6fff-dc2f-4ffd-9ea8-a15d77ae3eaa 
crashkernel=196M
RelatedPackageVersions:
 linux-restricted-modules-4.18.0-11-generic N/A
 linux-backports-modules-4.18.0-11-generic  N/A
 linux-firmware 1.175
RfKill: Error: [Errno 2] No such file or directory: 'rfkill': 'rfkill'
SourcePackage: linux
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: ubuntu-kernel-tests
 Importance: Undecided
 Status: New

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


** Tags: apport-bug cosmic package-from-proposed s390x

** Also affects: ubuntu-kernel-tests
   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/1801033

Title:
  ubuntu_bpf test failed on Cosmic s390x

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-kernel-tests/+bug/1801033/+subscriptions

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

[Bug 1801037] [NEW] Touchpad not working at all ubuntu beaver

2018-11-01 Thread t.felder via ubuntu-bugs
Public bug reported:

Hello, I have seen different report of user regarding the right click
not working when pressing on the bottom of the touchscreen.

I however have a completely different problem.

The touchpad is not working at all. 
I cannot scroll.  (no matter the configuration, the number of fingers or the 
place of my fingers)
I cannot do a right-click (no matter the configuration in tweeks)
And the pointer randomly jump somewhere in the screen when I try pressing with 
two fingers.

I previously had ubuntu 14.04 LTS which was perfectly working. After the
upgrade to 18.04 LTS this bug directly affected me. I really cannot use
my computer at all without right click.

Thanks for the fixing of this bug.

Sincerely,

Thomas


Infos about my system:
Ubuntu 4.15.0-36.39-generic 4.15.18
 lspci-vnvn.log in the attachment file

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: linux-image-4.15.0-36-generic 4.15.0-36.39
ProcVersionSignature: Ubuntu 4.15.0-36.39-generic 4.15.18
Uname: Linux 4.15.0-36-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.4
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC1:  thomas 1236 F pulseaudio
 /dev/snd/controlC0:  thomas 1236 F pulseaudio
CurrentDesktop: ubuntu:GNOME
Date: Thu Nov  1 11:00:43 2018
InstallationDate: Installed on 2018-10-07 (24 days ago)
InstallationMedia: Ubuntu 18.04.1 LTS "Bionic Beaver" - Release amd64 (20180725)
MachineType: LENOVO 20A7003TMZ
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-36-generic 
root=UUID=f5844062-f9f6-42ad-bc0f-434219e69b89 ro persistent quiet splash 
vt.handoff=1
RelatedPackageVersions:
 linux-restricted-modules-4.15.0-36-generic N/A
 linux-backports-modules-4.15.0-36-generic  N/A
 linux-firmware 1.173.1
SourcePackage: linux
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 10/30/2014
dmi.bios.vendor: LENOVO
dmi.bios.version: GRET41WW (1.18 )
dmi.board.asset.tag: Not Available
dmi.board.name: 20A7003TMZ
dmi.board.vendor: LENOVO
dmi.board.version: SDK0E50510 Pro
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Not Available
dmi.modalias: 
dmi:bvnLENOVO:bvrGRET41WW(1.18):bd10/30/2014:svnLENOVO:pn20A7003TMZ:pvrThinkPadX1Carbon2nd:rvnLENOVO:rn20A7003TMZ:rvrSDK0E50510Pro:cvnLENOVO:ct10:cvrNotAvailable:
dmi.product.family: ThinkPad X1 Carbon 2nd
dmi.product.name: 20A7003TMZ
dmi.product.version: ThinkPad X1 Carbon 2nd
dmi.sys.vendor: LENOVO

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


** Tags: amd64 apport-bug bionic

** Attachment added: "lspci-vnvn.log"
   
https://bugs.launchpad.net/bugs/1801037/+attachment/5207774/+files/lspci-vnvn.log

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

Title:
  Touchpad not working at all ubuntu beaver

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

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

[Bug 1766945] Re: (EFI on top of legacy install) choosing "replace" or "resize" options in partitioning may lead to an install failure

2018-11-01 Thread techo nuxnet
for many time i try to install Ubuntu 18.04 (dualboot) on my own
notebook (ASUS) beside primary OS (Microsoft Windows 10 Enterprise). my
stuck is just only on installing grub2 package.. i've read all
documentation, report, tutorial from many resources (forum, article, web
video, etc). there some job/work to using Linux (which mean i prefer to
ubuntu) for first time.

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

Title:
  (EFI on top of legacy install) choosing "replace" or "resize" options
  in partitioning may lead to an install failure

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/partman-auto/+bug/1766945/+subscriptions

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

[Bug 1762593] Proposed package upload rejected

2018-11-01 Thread Robie Basak
An upload of anki to bionic-proposed has been rejected from the upload
queue for the following reason: "Please use different fix as
discussed.".

** Changed in: anki (Ubuntu Bionic)
 Assignee: Matthias Klose (doko) => (unassigned)

** Changed in: anki (Ubuntu Bionic)
   Status: Incomplete => Triaged

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

Title:
  anki crashed with ModuleNotFoundError in /usr/share/anki/anki/mpv.py:
  No module named 'distutils.spawn'

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

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

[Bug 1801037] Status changed to Confirmed

2018-11-01 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/1801037

Title:
  Touchpad not working at all ubuntu beaver

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

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

[Bug 1801046] Re: package ushare 1.1a-0ubuntu10 failed to install/upgrade: installed ushare package post-installation script subprocess returned error exit status 1

2018-11-01 Thread Apport retracing service
** Tags removed: need-duplicate-check

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

Title:
  package ushare 1.1a-0ubuntu10 failed to install/upgrade: installed
  ushare package post-installation script subprocess returned error exit
  status 1

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

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

[Bug 1773496] Re: Add Ubuntu cosmic as a supported release

2018-11-01 Thread Andy Whitcroft
Hello Steve, or anyone else affected,

Accepted debootstrap into bionic-proposed. The package will build now
and be available at
https://launchpad.net/ubuntu/+source/debootstrap/1.0.95ubuntu0.2 in a
few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation on how
to enable and use -proposed.  Your feedback will aid us getting this
update out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested and change the tag from
verification-needed-bionic to verification-done-bionic. If it does not
fix the bug for you, please add a comment stating that, and change the
tag to verification-failed-bionic. In either case, without details of
your testing we will not be able to proceed.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance for helping!

N.B. The updated package will be released to -updates after the bug(s)
fixed by this package have been verified and the package has been in
-proposed for a minimum of 7 days.

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

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

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

Title:
  Add Ubuntu cosmic as a supported release

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

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

[Bug 1801047] [NEW] Impossible to update to 18.04

2018-11-01 Thread MARIO TARTAGLIA
Public bug reported:

It`s impossible to calculate the 18.04 update progress because an
insolvable problem occurs during the procedure

ProblemType: Bug
DistroRelease: Ubuntu 17.10
Package: ubuntu-release-upgrader-core 1:17.10.11
ProcVersionSignature: Ubuntu 4.13.0-46.51-generic 4.13.16
Uname: Linux 4.13.0-46-generic x86_64
ApportVersion: 2.20.7-0ubuntu3.9
Architecture: amd64
CrashDB: ubuntu
CurrentDesktop: ubuntu:GNOME
Date: Thu Nov  1 11:29:57 2018
InstallationDate: Installed on 2017-02-01 (637 days ago)
InstallationMedia: Ubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.2)
PackageArchitecture: all
SourcePackage: ubuntu-release-upgrader
UpgradeStatus: Upgraded to artful on 2018-11-01 (0 days ago)

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


** Tags: amd64 apport-bug artful dist-upgrade third-party-packages 
wayland-session

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

Title:
  Impossible to update to 18.04

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

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

[Bug 1801046] [NEW] package ushare 1.1a-0ubuntu10 failed to install/upgrade: installed ushare package post-installation script subprocess returned error exit status 1

2018-11-01 Thread Vince McPeek
Public bug reported:

installed  4.19.0-041900 generic  getting unsigned error and unsecured
bios error

ProblemType: Package
DistroRelease: Ubuntu 18.10
Package: ushare 1.1a-0ubuntu10
Uname: Linux 4.19.0-041900-generic x86_64
ApportVersion: 2.20.10-0ubuntu13
AptOrdering: NULL: ConfigurePending
Architecture: amd64
Date: Thu Nov  1 03:17:00 2018
ErrorMessage: installed ushare package post-installation script subprocess 
returned error exit status 1
InstallationDate: Installed on 2018-10-28 (3 days ago)
InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Release amd64 (20180426)
Python3Details: /usr/bin/python3.6, Python 3.6.7, python3-minimal, 3.6.7-1~18.10
PythonDetails: N/A
RelatedPackageVersions:
 dpkg 1.19.0.5ubuntu5
 apt  1.7.0
SourcePackage: ushare
Title: package ushare 1.1a-0ubuntu10 failed to install/upgrade: installed 
ushare package post-installation script subprocess returned error exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)

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


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

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

Title:
  package ushare 1.1a-0ubuntu10 failed to install/upgrade: installed
  ushare package post-installation script subprocess returned error exit
  status 1

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

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

[Bug 1798868] Re: Compiz Crashed with SIGSEGV [Radeon]

2018-11-01 Thread Dash via ubuntu-bugs
I have the same problem, needed datas were given at
https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/1741447/comments/68

Daniel

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

Title:
  Compiz Crashed with SIGSEGV [Radeon]

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

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

  1   2   3   4   5   6   >