[Bug 1747590] [NEW] installation crashed

2018-02-06 Thread Akanksha Dixit
Public bug reported:

This is my first installation of ubuntu 17.0 and it crashed showing the
following error:error ensuring '/target/var/lib/dpkg/reassemble.deb'
doesn't exist: Read-only file system

ProblemType: Bug
DistroRelease: Ubuntu 17.10
Package: ubiquity 17.10.10
ProcVersionSignature: Ubuntu 4.13.0-21.24-generic 4.13.13
Uname: Linux 4.13.0-21-generic x86_64
ApportVersion: 2.20.7-0ubuntu3.7
Architecture: amd64
CasperVersion: 1.387
CurrentDesktop: ubuntu:GNOME
Date: Tue Feb  6 13:20:53 2018
LiveMediaBuild: Ubuntu 17.10 "Artful Aardvark" - Release amd64 (20180105.1)
ProcEnviron:
 LANGUAGE=en_IN
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_IN
 LC_NUMERIC=C.UTF-8
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug artful

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

Title:
  installation crashed

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

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

[Bug 1747587] [NEW] package python3 3.5.1-3 failed to install/upgrade: 子进程 已安装 pre-removal 脚本 返回错误状态 127

2018-02-06 Thread hsc
Public bug reported:

pip3 install pip

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: python3 3.5.1-3
ProcVersionSignature: Ubuntu 4.13.0-32.35~16.04.1-generic 4.13.13
Uname: Linux 4.13.0-32-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.15
Architecture: amd64
Date: Tue Feb  6 14:36:32 2018
ErrorMessage: 子进程 已安装 pre-removal 脚本 返回错误状态 127
InstallationDate: Installed on 2018-02-05 (0 days ago)
InstallationMedia: Ubuntu 16.04.3 LTS "Xenial Xerus" - Release amd64 (20170801)
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.3
 apt  1.2.24
SourcePackage: python3-defaults
Title: package python3 3.5.1-3 failed to install/upgrade: 子进程 已安装 pre-removal 
脚本 返回错误状态 127
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: python3-defaults (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/1747587

Title:
  package python3 3.5.1-3 failed to install/upgrade: 子进程 已安装 pre-removal
  脚本 返回错误状态 127

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python3-defaults/+bug/1747587/+subscriptions

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

[Bug 1747589] [NEW] asyncpg fails to build against postgresql 10.1

2018-02-06 Thread ChristianEhrhardt
Public bug reported:

Hi,
I tried to fulfil to the promise that dpb made and tried to help with som 
eolder proposed migrations.
After a while I found something I can actually help, so I looked at asyncpg.
Building version 0.13.0-1 was failing on armhf [1]

Error (all 198 of them):
E   ValueError: invalid literal for int() with base 10: '1 (Ubuntu 10'

That seems to do a int conversion with something that gets an "1 (Ubuntu 10" as 
text.
That is in function split_server_version_string
The failing variable is the argument "version_string"

That could be related to postgres 10 now being to digits.
But why only on armhf then?

It triggers the code on setup when checking for the postgres version.
Function _get_pg_version in asyncpg/cluster.py.

To get it it calls effectively:
/usr/lib/postgresql/10/bin/postgres --version

This is now the string:
"postgres (PostgreSQL) 10.1 (Ubuntu 10.1-3)"

Then it drops the prefix:
"10.1 (Ubuntu 10.1-3)"

Well all that happens on x86 as well.
If I modify the source to be a callable program and iterate a bit I see that:
$ ./test-serverversion.py "10.1 (Ubuntu 10.1-3)"
Initial 10.1 (Ubuntu 10.1-3)
parts ['10', '1 (Ubuntu 10', '1']
Traceback (most recent call last):
  File "./test-serverversion.py", line 44, in 
main(sys.argv[1])
  File "./test-serverversion.py", line 33, in main
versions = [int(p) for p in parts][:3]
ValueError: invalid literal for int() with base 10: '1 (Ubuntu 10'

I think it was broken by "build time".
On x86 I see:
postgresql-client-10_10.0-1_amd64.deb
On armhf I see:
postgresql-client-10_10.1-3_armhf.deb

The old version format was "postgres (PostgreSQL) 9.6.6"

A fix would be:
   if " (" in version_string:   
   version_string = version_string[0:version_string.find(" (")]

With all that known I found [2] and [3].

I pinged [3] with the info on [2] and given an upload happens this will
resolve and by that unblock part of the proposed-migration.

Further on I found, debugged, fixed and reported [4] which makes it build and 
work correctly again.
There might be more things that need to be addressed by upstream to follow this 
pg change, but for now things seem better than before.

I prepared an ubuntu1 upload to get this finally migrating in bionic.
And we can make it a sync once upstream & Debian picked things up.

[1]: https://launchpad.net/ubuntu/+source/asyncpg/0.13.0-1/+build/13670362
[2]: https://github.com/MagicStack/asyncpg/issues/250
[3]: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=882017
[4]: https://github.com/MagicStack/asyncpg/issues/256

** Affects: asyncpg (Ubuntu)
 Importance: Medium
 Status: Triaged

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

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

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

** Changed in: asyncpg (Ubuntu)
   Status: New => Triaged

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

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

Title:
  asyncpg fails to build against postgresql 10.1

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

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

[Bug 1747588] [NEW] Suspend/Resume swap group failed

2018-02-06 Thread Hassan El Jacifi
Public bug reported:

Flooding syslog with warning messages:

Feb  6 08:46:52 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Suspend swap group failed.
Feb  6 08:46:52 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Resume swap group failed.
Feb  6 08:46:57 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Suspend swap group failed.
Feb  6 08:46:57 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Resume swap group failed.
Feb  6 08:46:57 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Suspend swap group failed.
Feb  6 08:46:57 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Resume swap group failed.
Feb  6 08:47:02 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Suspend swap group failed.
Feb  6 08:47:02 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Resume swap group failed.
Feb  6 08:47:02 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Suspend swap group failed.
Feb  6 08:47:02 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Resume swap group failed.
Feb  6 08:47:07 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Suspend swap group failed.
Feb  6 08:47:07 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 


ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: gdm3 3.26.2.1-2ubuntu1
ProcVersionSignature: Ubuntu 4.13.0-32.35-generic 4.13.13
Uname: Linux 4.13.0-32-generic x86_64
NonfreeKernelModules: nvidia_uvm wl nvidia_drm nvidia_modeset nvidia
ApportVersion: 2.20.8-0ubuntu8
Architecture: amd64
CurrentDesktop: GNOME
Date: Tue Feb  6 08:47:42 2018
InstallationDate: Installed on 2018-01-01 (35 days ago)
InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Alpha amd64 (20171221)
SourcePackage: gdm3
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug bionic

** Description changed:

  Flooding syslog with warning messages:
  
  Feb  6 08:46:52 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Suspend swap group failed.
  Feb  6 08:46:52 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Resume swap group failed.
  Feb  6 08:46:57 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Suspend swap group failed.
  Feb  6 08:46:57 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Resume swap group failed.
  Feb  6 08:46:57 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Suspend swap group failed.
  Feb  6 08:46:57 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Resume swap group failed.
  Feb  6 08:47:02 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Suspend swap group failed.
  Feb  6 08:47:02 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Resume swap group failed.
  Feb  6 08:47:02 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Suspend swap group failed.
  Feb  6 08:47:02 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Resume swap group failed.
  Feb  6 08:47:07 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Suspend swap group failed.
- Feb  6 08:47:07 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Resume swap group failed.
- Feb  6 08:47:07 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Suspend swap group failed.
- Feb  6 08:47:07 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Resume swap group failed.
- Feb  6 08:47:10 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Suspend swap group failed.
- Feb  6 08:47:10 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Resume swap group failed.
- Feb  6 08:47:10 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Suspend swap group failed.
- Feb  6 08:47:10 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Resume swap group failed.
- Feb  6 08:47:10 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Suspend swap group failed.
- Feb  6 08:47:10 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Resume swap group failed.
- Feb  6 08:47:10 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Suspend swap group failed.
- Feb  6 08:47:10 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Resume swap group failed.
- Feb  6 08:47:10 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Suspend swap group failed.
- Feb  6 08:47:10 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Resume swap group failed.
- Feb  6 08:47:10 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Suspend swap group failed.
- Feb  6 08:47:10 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Resume swap group failed.
- Feb  6 08:47:12 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Suspend swap group failed.
- Feb  6 08:47:12 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (WW) NVIDIA(0): 
Resume swap group failed.
- Feb  6 08:47:12 Jupiter /usr/lib/gdm3/gdm-x-session[2485]: (W

[Bug 1641290] Re: [04f3:0903] Elan Microelectronics Corp fingerprint reader not recognised

2018-02-06 Thread Igor Filatov
@mirek libfprint only handles usb devices, not i2c. If there's nothing
in lsusb (could you post the output btw?), libfprint won't work.

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

Title:
  [04f3:0903] Elan Microelectronics Corp fingerprint reader not
  recognised

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

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

[Bug 1747567] Re: gedit crashed with SIGSEGV in g_datalist_id_dup_data()

2018-02-06 Thread Jean-Baptiste Lallement
** Information type changed from Private to Public

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

Title:
  gedit crashed with SIGSEGV in g_datalist_id_dup_data()

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

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

[Bug 1747588] Re: Suspend/Resume swap group failed

2018-02-06 Thread Daniel van Vugt
It appears that error message is coming directly from the nvidia
graphics driver. Please let us know which version/package of the driver
you have installed so we can assign the bug appropriately.

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

Title:
  Suspend/Resume swap group failed

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

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

[Bug 1730143] Re: no response to scroll wheel

2018-02-06 Thread ChristianEhrhardt
FYI - For various downstream consumers of ncurse it is still compiled with 
--with-abi-version=5.
As ncurse 6 was explicitly mentioned I'D assume it is abi ver 6, and that might 
be the reason.
I have no insight in any planned transition, just wanted to let you know.

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

Title:
  no response to scroll wheel

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

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

[Bug 1747456] Re: gnome-software process using 5.6 GiB of memory in the background

2018-02-06 Thread Jean-Baptiste Lallement
*** This bug is a duplicate of bug 1616332 ***
https://bugs.launchpad.net/bugs/1616332

** This bug has been marked a duplicate of bug 1616332
   gnome-software using hundreds of MB of memory when not in use

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

Title:
  gnome-software process using 5.6 GiB of memory in the background

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

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

[Bug 1644364] Re: [MIR] htop

2018-02-06 Thread ChristianEhrhardt
Released in Debian (thanks) and also 2.1.0-2 is in Bionic universe now.
That said all preconditions for the MIR ack to be ok are complete.

I'll prep a seed change to review (IIRC this was only adding to main,
not about shipping it on disk - let me know if intentions were
otherwise)

** Changed in: htop (Ubuntu)
   Status: New => Triaged

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

Title:
  [MIR] htop

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

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

[Bug 1616332] Re: gnome-software using hundreds of MB of memory when not in use

2018-02-06 Thread Jean-Baptiste Lallement
** Changed in: gnome-software (Ubuntu)
   Importance: Medium => High

** Tags added: bionic rls-bb-incoming

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

Title:
  gnome-software using hundreds of MB of memory when not in use

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

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

[Bug 1559072] Fix proposed to python-troveclient (master)

2018-02-06 Thread OpenStack Infra
Fix proposed to branch: master
Review: https://review.openstack.org/541170

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

Title:
  [SRU] exceptions.from_response with webob 1.6.0 results in
  "AttributeError: 'unicode' object has no attribute 'get'"

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-archive/+bug/1559072/+subscriptions

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

[Bug 1747596] [NEW] package lsb-core 9.20160110ubuntu0.2 failed to install/upgrade: vereistenproblemen - blijft ongeconfigureerd

2018-02-06 Thread Stefan
Public bug reported:

it happens during startup

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: lsb-core 9.20160110ubuntu0.2
ProcVersionSignature: Ubuntu 4.13.0-32.35~16.04.1-generic 4.13.13
Uname: Linux 4.13.0-32-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.15
Architecture: amd64
Date: Tue Feb  6 08:12:56 2018
ErrorMessage: vereistenproblemen - blijft ongeconfigureerd
InstallationDate: Installed on 2018-01-28 (8 days ago)
InstallationMedia: Ubuntu 16.04.3 LTS "Xenial Xerus" - Release amd64 (20170801)
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.3
 apt  1.2.24
SourcePackage: lsb
Title: package lsb-core 9.20160110ubuntu0.2 failed to install/upgrade: 
vereistenproblemen - blijft ongeconfigureerd
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: lsb (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/1747596

Title:
  package lsb-core 9.20160110ubuntu0.2 failed to install/upgrade:
  vereistenproblemen - blijft ongeconfigureerd

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

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

[Bug 1644364] Re: [MIR] htop

2018-02-06 Thread ChristianEhrhardt
Linked lp:~paelzer/ubuntu-seeds/18.04-support-htop which is the proposed
seed change.

** Branch linked: lp:~paelzer/ubuntu-seeds/18.04-support-htop

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

Title:
  [MIR] htop

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

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

[Bug 1746357] Re: Boot loop MSI A88XM-E35 AMD APU A8-5600K (Aruba HD7560D)

2018-02-06 Thread Bib
https://bugs.freedesktop.org/show_bug.cgi?id=104963

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

Title:
  Boot loop MSI A88XM-E35 AMD APU A8-5600K (Aruba HD7560D)

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

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

[Bug 1747589] Re: asyncpg fails to build against postgresql 10.1

2018-02-06 Thread Bug Watch Updater
** Changed in: asyncpg (Debian)
   Status: Unknown => New

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

Title:
  asyncpg fails to build against postgresql 10.1

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

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

[Bug 1747597] Missing required logs.

2018-02-06 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 1747597

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: zesty

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

Title:
  Number of processes exploded after upgrade to 4.13.0-32-generic

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

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

[Bug 1746740] Re: XPS13 L322X Bionic (daily dev) touchpad laggy

2018-02-06 Thread Bib
Just tried : neither this issue with Trusty K4.4.0-112 nor K4.15.1 real 
installs.
Only met it with Bionic-dev-Live-K4. I also tried the Live USB with 
acpi_osi=Linux as seen (but not mandatory) in my usual /etc/default/grub, with 
no difference : touchpad cursor still laggy, often locks for a while. I noticed 
that when the touchpad is glued in position on the screen, it is still 
responsive on right and bottom sides, although the option ~scroll on sides~ is 
disabled by default in Devices settings. Changing the option as no effect, 
neither as disabling default enabled 2-Fingers-Scroll.
An other strange issue I met with the Live USB : when I reboot from Live, I 
can't go back in Live with my BIOS F12 Select boot drive: even when I select 
USB Live, then the usual grub menu is displayed. I have to completely shutdown 
the laptop so that USB boot selection works, when this is not the case when I 
reboot from usual installed Trusty.
I ran these tests with a new Bionic USB stick created from a Live Bionic 
session, itself running from the first Bionic key (that was created from an 
real Xenial install on another machine).

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

Title:
  XPS13 L322X Bionic (daily dev) touchpad laggy

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

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

[Bug 1746947] Re: failing autopkgtest due to password issue by nss

2018-02-06 Thread ChristianEhrhardt
** Changed in: freeipa (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/1746947

Title:
  failing autopkgtest due to password issue by nss

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

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

[Bug 1747597] [NEW] Number of processes exploded after upgrade to 4.13.0-32-generic

2018-02-06 Thread Marc Pignat
Public bug reported:

After an update from 4.10.0-40-generic to 4.13.0-32-generic (ubuntu
16.04 + hwe kernel), the number of process when doing IO on my machine
has exploded.

Before the update, maximum number of process : 284
After the update, doing a simple rsync to an external disk : 771

The system is now unstable and crashes. The processes are hundreds of
"kworker".

Please let me know if there is something more needed.

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


** Tags: zesty

** Attachment added: "apport.linux-image-4.13.0-32-generic.s_a8ercv.apport"
   
https://bugs.launchpad.net/bugs/1747597/+attachment/5049580/+files/apport.linux-image-4.13.0-32-generic.s_a8ercv.apport

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

Title:
  Number of processes exploded after upgrade to 4.13.0-32-generic

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

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

[Bug 1734147] Re: corrupted BIOS due to Intel SPI bug in kernel

2018-02-06 Thread Dennis Pries
#546

Sorry for the late response. It even doesn't do POST anymore. I turn it
on and all it does is, to start the fan at full power.

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

Title:
  corrupted BIOS due to Intel SPI bug in kernel

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

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

[Bug 1722677] Re: Touch Screen NOT working

2018-02-06 Thread redx
Sorry but this kernel not fix the problem.

...
update-initramfs: Generating /boot/initrd.img-4.15.0+
W: Possible missing firmware /lib/firmware/i915/skl_dmc_ver1_27.bin for module 
i915
W: Possible missing firmware /lib/firmware/i915/kbl_dmc_ver1_04.bin for module 
i915
W: Possible missing firmware /lib/firmware/i915/kbl_guc_ver9_39.bin for module 
i915
W: Possible missing firmware /lib/firmware/i915/bxt_guc_ver9_29.bin for module 
i915
W: Possible missing firmware /lib/firmware/i915/skl_guc_ver9_33.bin for module 
i915
Generazione file di configurazione GRUB...
Trovata immagine linux: /boot/vmlinuz-4.15.1-0
...

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

Title:
  Touch Screen NOT working

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

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

[Bug 1746740] Re: XPS13 L322X Bionic (daily dev) touchpad laggy

2018-02-06 Thread Bib
Just tried : neither this issue with Trusty K4.4.0-112 nor K4.15.1 real 
installs.
Only met it with Bionic-dev-Live-K4. I also tried the Live USB with 
acpi_osi=Linux as seen (but not mandatory) in my usual /etc/default/grub, with 
no difference : touchpad cursor still laggy, often locks for a while. I noticed 
that when the touchpad is glued in position on the screen, it is still 
responsive on right and bottom sides, although the option ~scroll on sides~ is 
disabled by default in Devices settings. Changing the option as no effect, 
neither as disabling default enabled 2-Fingers-Scroll.
An other strange issue I met with the Live USB : when I reboot from Live, I 
can't go back in Live with my BIOS F12 Select boot drive: even when I select 
USB Live, then the usual grub menu is displayed. I have to completely shutdown 
the laptop so that USB boot selection works, when this is not the case when I 
reboot from usual installed Trusty.
I ran these tests with a new Bionic USB stick created from a Live Bionic 
session, itself running from the first Bionic key (that was created from an 
real Xenial install on another machine).

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

Title:
  XPS13 L322X Bionic (daily dev) touchpad laggy

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

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

[Bug 1747604] [NEW] telepathy-logger-qt5: not compatible with qt-gstreamer5

2018-02-06 Thread Steve Langasek
Public bug reported:

Despite being named 'qt5', telepathy-logger-qt5 is dependent on the qt4
builds of qtgstreamer (libqtgstreamer-dev, instead of libqt5gstreamer-
dev).  These have now been dropped from bionic-proposed, so telepathy-
logger-qt5 is not buildable.

Changing the build-dependency is not enough to let this package build.

Since this has no reverse-dependencies and has not been uploaded since
2014, it should probably be removed.

** Affects: telepathy-logger-qt5 (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/1747604

Title:
  telepathy-logger-qt5: not compatible with qt-gstreamer5

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/telepathy-logger-qt5/+bug/1747604/+subscriptions

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

[Bug 1747605] [NEW] telepathy-logger-qt5: not compatible with qt-gstreamer5

2018-02-06 Thread Steve Langasek
Public bug reported:

Despite being named 'qt5', telepathy-logger-qt5 is dependent on the qt4
builds of qtgstreamer (libqtgstreamer-dev, instead of libqt5gstreamer-
dev).  These have now been dropped from bionic-proposed, so telepathy-
logger-qt5 is not buildable.

Changing the build-dependency is not enough to let this package build.

Since this has no reverse-dependencies and has not been uploaded since
2014, it should probably be removed.

** Affects: telepathy-logger-qt5 (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/1747605

Title:
  telepathy-logger-qt5: not compatible with qt-gstreamer5

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/telepathy-logger-qt5/+bug/1747605/+subscriptions

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

[Bug 1746740] Re: XPS13 L322X Bionic (daily dev) touchpad laggy

2018-02-06 Thread Kai-Heng Feng
So it's more likely to be a userspace issue.

** Also affects: libinput (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/1746740

Title:
  XPS13 L322X Bionic (daily dev) touchpad laggy

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

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

[Bug 1747594] Re: clementine crashed with signal 5 in g_main_context_new()

2018-02-06 Thread Apport retracing service
*** This bug is a duplicate of bug 1545593 ***
https://bugs.launchpad.net/bugs/1545593

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

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

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

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

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

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

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

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

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

** Information type changed from Private to Public

** Tags removed: need-amd64-retrace

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

Title:
  clementine crashed with signal 5 in g_main_context_new()

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

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

[Bug 1746740] Re: XPS13 L322X Bionic (daily dev) touchpad laggy

2018-02-06 Thread Bib
The Eleventh Commandment ?

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

Title:
  XPS13 L322X Bionic (daily dev) touchpad laggy

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

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

[Bug 1747594] Re: clementine crashed with signal 5 in g_main_context_new()

2018-02-06 Thread Bruce Pieterse
*** This bug is a duplicate of bug 1545593 ***
https://bugs.launchpad.net/bugs/1545593

Additional entries from the journal

** Attachment added: "clementine-journal.log"
   
https://bugs.launchpad.net/ubuntu/+source/clementine/+bug/1747594/+attachment/5049581/+files/clementine-journal.log

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

Title:
  clementine crashed with signal 5 in g_main_context_new()

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

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

[Bug 1644132] Comment bridged from LTC Bugzilla

2018-02-06 Thread bugproxy
--- Comment From prudm...@in.ibm.com 2018-02-06 03:30 EDT---
Working fine on the 18.O4.
Details:
--
uname -a
Linux pkvmhab008 4.13.0-25-generic #29-Ubuntu SMP Mon Jan 8 21:15:55 UTC 2018 
ppc64le ppc64le ppc64le GNU/Linux

cat /etc/os-release
NAME="Ubuntu"
VERSION="18.04 LTS (Bionic Beaver)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu Bionic Beaver (development branch)"
VERSION_ID="18.04"
HOME_URL="https://www.ubuntu.com/";
SUPPORT_URL="https://help.ubuntu.com/";
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/";
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy";
VERSION_CODENAME=bionic
UBUNTU_CODENAME=bionic

Steps:
--
Please find the attachment.

--- Comment From prudm...@in.ibm.com 2018-02-06 03:33 EDT---
working fine on 18.O4, i am closing the Bug.

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

Title:
  iscsi - creation of network portal failed

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

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

[Bug 1644132] working steps

2018-02-06 Thread bugproxy
--- Comment (attachment only) From prudm...@in.ibm.com 2018-02-06 03:32 
EDT---


** Attachment added: "working steps"
   https://bugs.launchpad.net/bugs/1644132/+attachment/5049583/+files/portal.txt

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

Title:
  iscsi - creation of network portal failed

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

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

[Bug 1722677] Re: Touch Screen NOT working

2018-02-06 Thread Kai-Heng Feng
Can you attach dmesg?
Thanks.

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

Title:
  Touch Screen NOT working

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

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

[Bug 1746900] Re: linux: 3.13.0-142.191 -proposed tracker

2018-02-06 Thread Steve Beattie
** Changed in: kernel-sru-workflow/security-signoff
   Status: Confirmed => In Progress

** Changed in: kernel-sru-workflow/security-signoff
 Assignee: Canonical Security Team (canonical-security) => Steve Beattie 
(sbeattie)

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

Title:
  linux: 3.13.0-142.191 -proposed tracker

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

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

[Bug 1747597] Re: Number of processes exploded after upgrade to 4.13.0-32-generic

2018-02-06 Thread Marc Pignat
apport-collect 1747597 fails with "Bad bot, go away!"

** Tags removed: zesty
** Tags added: xenial

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

Title:
  Number of processes exploded after upgrade to 4.13.0-32-generic

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

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

[Bug 1747597] JournalErrors.txt

2018-02-06 Thread Marc Pignat
apport information

** Attachment added: "JournalErrors.txt"
   
https://bugs.launchpad.net/bugs/1747597/+attachment/5049588/+files/JournalErrors.txt

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

Title:
  Number of processes exploded after upgrade to 4.13.0-32-generic

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

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

[Bug 1747597] Re: Number of processes exploded after upgrade to 4.13.0-32-generic

2018-02-06 Thread Marc Pignat
apport information

** Tags added: apport-collected

** Description changed:

  After an update from 4.10.0-40-generic to 4.13.0-32-generic (ubuntu
  16.04 + hwe kernel), the number of process when doing IO on my machine
  has exploded.
  
  Before the update, maximum number of process : 284
  After the update, doing a simple rsync to an external disk : 771
  
  The system is now unstable and crashes. The processes are hundreds of
  "kworker".
  
  Please let me know if there is something more needed.
+ --- 
+ AlsaDevices:
+  total 0
+  crw-rw 1 root audio 116,  1 Feb  6 09:04 seq
+  crw-rw 1 root audio 116, 33 Feb  6 09:04 timer
+ AlsaVersion: Advanced Linux Sound Architecture Driver Version 
k4.13.0-32-generic.
+ AplayDevices: aplay: device_list:268: no soundcards found...
+ ApportVersion: 2.20.1-0ubuntu2.15
+ Architecture: amd64
+ ArecordDevices: arecord: device_list:268: no soundcards found...
+ AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
+ DistroRelease: Ubuntu 16.04
+ IwConfig: Error: [Errno 2] No such file or directory
+ MachineType: To Be Filled By O.E.M. To Be Filled By O.E.M.
+ Package: linux (not installed)
+ PciMultimedia:
+  
+ ProcFB: 0 inteldrmfb
+ ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.13.0-32-generic 
root=UUID=ef4f1569-51cf-478d-868c-78a3b7f04a2c ro
+ ProcVersionSignature: Ubuntu 4.13.0-32.35~16.04.1-generic 4.13.13
+ RelatedPackageVersions:
+  linux-restricted-modules-4.13.0-32-generic N/A
+  linux-backports-modules-4.13.0-32-generic  N/A
+  linux-firmware 1.157.15
+ RfKill: Error: [Errno 2] No such file or directory
+ Tags:  xenial
+ Uname: Linux 4.13.0-32-generic x86_64
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups: adm audio cdrom dip kvm libvirtd lpadmin lxd plugdev sambashare 
sudo sudo-no-log video
+ _MarkForUpload: True
+ dmi.bios.date: 05/17/2016
+ dmi.bios.vendor: American Megatrends Inc.
+ dmi.bios.version: P2.70
+ dmi.board.name: Z97 Extreme6
+ dmi.board.vendor: ASRock
+ dmi.chassis.asset.tag: To Be Filled By O.E.M.
+ dmi.chassis.type: 3
+ dmi.chassis.vendor: To Be Filled By O.E.M.
+ dmi.chassis.version: To Be Filled By O.E.M.
+ dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrP2.70:bd05/17/2016:svnToBeFilledByO.E.M.:pnToBeFilledByO.E.M.:pvrToBeFilledByO.E.M.:rvnASRock:rnZ97Extreme6:rvr:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
+ dmi.product.family: To Be Filled By O.E.M.
+ dmi.product.name: To Be Filled By O.E.M.
+ dmi.product.version: To Be Filled By O.E.M.
+ dmi.sys.vendor: To Be Filled By O.E.M.

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

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

Title:
  Number of processes exploded after upgrade to 4.13.0-32-generic

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

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

[Bug 1747614] [NEW] systemd-detect-virt fails with "Operation not permitted"

2018-02-06 Thread Oliver Zweigle
Public bug reported:

systemd version the issue has been seen with

229

- Used distribution

Ubuntu 16.04

- In case of bug report: Expected behaviour you didn't see

systemd-detect-virt should show help text

- In case of bug report: Unexpected behaviour you saw

During apt-get upgrade grub-pc can not install in virtual container
(docker) because of systemd-detect-virt fails with "Operation not
permitted".

Error output: /var/lib/dpkg/info/grub-pc.postinst: line 299: /usr/bin
/systemd-detect-virt: Operation not permitted

Call of systemd-detect-virt returns: "Operation not permitted"

- In case of bug report: Steps to reproduce the problem

apt-get update; apt-get upgrade; systemd-detect-virt

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


** Tags: docker systemd

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

Title:
  systemd-detect-virt fails with "Operation not permitted"

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

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

[Bug 1747597] CurrentDmesg.txt

2018-02-06 Thread Marc Pignat
apport information

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

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

Title:
  Number of processes exploded after upgrade to 4.13.0-32-generic

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

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

[Bug 1747597] ProcEnviron.txt

2018-02-06 Thread Marc Pignat
apport information

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

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

Title:
  Number of processes exploded after upgrade to 4.13.0-32-generic

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

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

[Bug 1747597] ProcCpuinfo.txt

2018-02-06 Thread Marc Pignat
apport information

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

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

Title:
  Number of processes exploded after upgrade to 4.13.0-32-generic

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

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

[Bug 1747597] Lsusb.txt

2018-02-06 Thread Marc Pignat
apport information

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

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

Title:
  Number of processes exploded after upgrade to 4.13.0-32-generic

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

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

[Bug 1747597] ProcInterrupts.txt

2018-02-06 Thread Marc Pignat
apport information

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

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

Title:
  Number of processes exploded after upgrade to 4.13.0-32-generic

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

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

[Bug 1747597] Lspci.txt

2018-02-06 Thread Marc Pignat
apport information

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

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

Title:
  Number of processes exploded after upgrade to 4.13.0-32-generic

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

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

[Bug 1747416] Re: ibus-ui-gtk3 crashed with signal 5 in g_settings_set_property

2018-02-06 Thread Jean-Baptiste Lallement
** Summary changed:

- ibus-ui-gtk3 crashed with signal 5
+ ibus-ui-gtk3 crashed with signal 5 in g_settings_set_property

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

Title:
  ibus-ui-gtk3 crashed with signal 5 in g_settings_set_property

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

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

[Bug 1747597] WifiSyslog.txt

2018-02-06 Thread Marc Pignat
apport information

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

** Package changed: linux (Ubuntu) => linux-meta-hwe (Ubuntu)

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

Title:
  Number of processes exploded after upgrade to 4.13.0-32-generic

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

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

[Bug 1747597] ProcCpuinfoMinimal.txt

2018-02-06 Thread Marc Pignat
apport information

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

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

Title:
  Number of processes exploded after upgrade to 4.13.0-32-generic

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

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

[Bug 1746740] Re: XPS13 L322X Bionic (daily dev) touchpad laggy

2018-02-06 Thread Daniel van Vugt
Bib,

Comment #11 is probably missing because people can hide their own
comments if they make a mistake etc.

A laggy touchpad is probably because you have an old version of libinput
installed. The lag is mostly fixed in the latest libinput version so
please tell us what version of package 'libinput10' you have installed.

If you have an old version then this bug would be a duplicate of bug
1696929.

If you have the current version the this bug may be similar to the
touchpad range bug 1586683.

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

Title:
  XPS13 L322X Bionic (daily dev) touchpad laggy

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

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

[Bug 1747568] Re: Mouse clicks ignored in Wayland

2018-02-06 Thread Thomas Kregelin
I had the same issue and I disabling the default for Wayland also
resolved it for me.

(I had to uncomment the line #WaylandEnable=false in
/etc/gdm3/custom.conf.)

Initially after updating from 17.04 to 17.10 I had no troubles. For me
this mouse issue appeared some time after (not right away) using
ppa:ubuntu-x-swat/updates for the latest Mesa releases.

By the way, also mouse hovering over an element that would usually focus
on hovering over it did not work for me in a 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/1747568

Title:
  Mouse clicks ignored in Wayland

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

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

[Bug 1747597] ProcModules.txt

2018-02-06 Thread Marc Pignat
apport information

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

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

Title:
  Number of processes exploded after upgrade to 4.13.0-32-generic

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

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

[Bug 1747597] UdevDb.txt

2018-02-06 Thread Marc Pignat
apport information

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

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

Title:
  Number of processes exploded after upgrade to 4.13.0-32-generic

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

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

[Bug 1744072] Re: MIR Chrony in 18.04

2018-02-06 Thread ChristianEhrhardt
** Description changed:

  --- MIR ---
  
  1. Availability: The package is Ubuntu universe and builds for the
  architectures it is designed to work on.
  
  2. Rationale:
   2.1 NTP in general is needed quite a lot, but we want to exchange ntpd
   which is the current implementation in main with chrony for 18.04.
   2.2 Security: chrony was considered easier to be maintained easier in
   terms of security and provide a more modern ntp experience as well.
   2.3 Efficiency: Furthermore several cloud people seem to be interested to
   change to chrony in the guests for its lower memoy/cpu footprint
   (efficiency I guess).
  2.4 related to this MIR 6 years ago this is the same but for Fedora.
  See: https://fedoraproject.org/wiki/Features/ChronyDefaultNTP
  IIRC some limitations that were present have been eliminated since, so
  it is even better than it was back then.
  2.5 In general one has to realize that in a systemd-timesync world
  ntp/chrony are mostly for the "serving" portion of an ntp service, and
  not so much about the client (unless you the better accuracy vs
  timesyncd is needed).
  
  3. Security: In fact the request came in by security Team, so I guess I
  call this section done
  
  3. Quality assurance
   3.1 configuration ease - works after installation
   3.2 no high prio debconf
   3.3 usability (no major issues in Debian nor Ubuntu)
   asked Paul in regard to the ntp charm in comment #5
   3.4 long-term >=high bugs (none in Debian nor Ubuntu)
   3.5 Debian/Ubuntu bugs look reasonable maintained
   3.6 does not deal with hard to support exotic hardware (other than ntpd
   btw). If used this can be done through universe package GPSD (no
   dependency)
   3.7 Test suite runs on build (some skipped if not env applicable)
   3.8 debian/watch exists
   3.9 not depending on obsoleted packages
  
  4.1 It does not face graphical UI
  4.2 It is unfortunately not internationalized as far as I could see in the 
source
  
  5. Dependencies - there is one not in main libtomcrypt
     We don't want it in main either, instead we want to fix bug 1744328 and 
then use libnss which is in main already.
  
  6. Not found major Policy or FSH violations that would have to be fixed.
  
  7. Maintenance
    7.1 Upstream - is maintained well (and better than ntpd it seems
     according to some discussisons)
    7.2 Ubuntu - Owning Team would be Ubuntu (in exchange to drop ntp)
  
  8. Background information:
    Fulfills the same role as ntp, yet according to the security Team would
    be preferred for them.
  
  --- Affected Packages ---
  
  I'll add all those as bug tasks.
  Once the MIR has passed the state of uncertainty (e.g. would it be blocked by 
one of the dependent bug being not doable at all) then please work on these 
into 18.04. Here a list what is affected in the listed packages:
  
  Maas - needs to change dependencies and maybe template
  cloud-init - needs to support writing ntp config to chrony instead of ntpd
  ceph-base - change recommends from ntpd to chrony (it only intends to get 
good time and doesn't care via which dameon that is, so that should be ok to be 
change)
  ntp charm - switch to chrony for >=18.04
  chrony - MIR itself (discussion here and eventually seeding)
  
  --- Depending on further Bugs ---
  In my initial evaluation I uncovered (and filed) a set of bugs that I 
consider requirement to make it fully ready:
  Reminder - tracking state here might be out of sync, I'll only change them to 
Done once complete and not care about interim status changes.
  
  DONE - bug 1744662 - add chrony apparmor profile
- COMMITTED - bug 1744328 - make src:libnss libfreebl3 usable by other programs
+ DONE - bug 1744328 - make src:libnss libfreebl3 usable by other programs
  COMMITTED - bug 1744664 - use Ubuntu time servers
+ COMMITTED - bug 1744072 - d/control: use to nss instead of tomcrypt
+ Some more cleanups in Chrony are optional but useful.

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

Title:
  MIR Chrony in 18.04

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

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

[Bug 1649566] Re: [GeForce 7025 / nForce 630a] System freeze

2018-02-06 Thread Dieter Maurer
Using a different drive, I could successfully burn the daily Ubuntu Live
CD. I was not able to reproduce the freeze with the corresponding
installation.

Thank you for your support.

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

Title:
  [GeForce 7025 / nForce 630a] System freeze

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

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

[Bug 1746411] Re: [linux-oem] Fix out of bound VBT pin on CNP

2018-02-06 Thread Timo Aaltonen
** Package changed: linux (Ubuntu) => linux-oem (Ubuntu)

** Also affects: linux-oem (Ubuntu Xenial)
   Importance: Undecided
   Status: New

** Changed in: linux-oem (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/1746411

Title:
  [linux-oem] Fix out of bound VBT pin on CNP

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1746411/+subscriptions

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

[Bug 1746411] Re: [linux-oem] Fix out of bound VBT pin on CNP

2018-02-06 Thread Alex Tu
** Also affects: oem-priority
   Importance: Undecided
   Status: New

** Tags added: originate-from-1743937

** Tags added: originate-from-1738973

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

Title:
  [linux-oem] Fix out of bound VBT pin on CNP

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1746411/+subscriptions

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

[Bug 1746901] Re: linux-lts-trusty: 3.13.0-142.191~precise1 -proposed tracker

2018-02-06 Thread Łukasz Zemczak
** Changed in: kernel-sru-workflow/promote-to-proposed
   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/1746901

Title:
  linux-lts-trusty: 3.13.0-142.191~precise1 -proposed tracker

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

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

[Bug 1747615] [NEW] wifi

2018-02-06 Thread walt
Public bug reported:

wifi

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: xorg 1:7.7+13ubuntu3
ProcVersionSignature: Ubuntu 4.13.0-32.35~16.04.1-lowlatency 4.13.13
Uname: Linux 4.13.0-32-lowlatency i686
ApportVersion: 2.20.1-0ubuntu2.15
Architecture: i386
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: None
Date: Tue Feb  6 10:07:17 2018
DistUpgraded: Fresh install
DistroCodename: xenial
DistroVariant: ubuntu
GraphicsCard:
 Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (primary) 
[8086:2a02] (rev 0c) (prog-if 00 [VGA controller])
   Subsystem: Hewlett-Packard Company Compaq 6710b [103c:30c0]
   Subsystem: Hewlett-Packard Company Compaq 6710b [103c:30c0]
InstallationDate: Installed on 2018-01-27 (9 days ago)
InstallationMedia: Ubuntu-Studio 16.04.3 LTS "Xenial Xerus" - Release i386 
(20170801)
MachineType: Hewlett-Packard HP Compaq 6710b (GR680ET#ABH)
PccardctlIdent:
 Socket 0:
   no product info available
PccardctlStatus:
 Socket 0:
   no card
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.13.0-32-lowlatency 
root=UUID=483b6c1c-a633-478b-b5d9-c140ad9a0898 ro quiet splash vt.handoff=7
SourcePackage: xorg
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 01/11/2008
dmi.bios.vendor: Hewlett-Packard
dmi.bios.version: 68DDU Ver. F.10
dmi.board.name: 30C0
dmi.board.vendor: Hewlett-Packard
dmi.board.version: KBC Version 71.2E
dmi.chassis.asset.tag: CNU80416JF
dmi.chassis.type: 10
dmi.chassis.vendor: Hewlett-Packard
dmi.modalias: 
dmi:bvnHewlett-Packard:bvr68DDUVer.F.10:bd01/11/2008:svnHewlett-Packard:pnHPCompaq6710b(GR680ET#ABH):pvrF.10:rvnHewlett-Packard:rn30C0:rvrKBCVersion71.2E:cvnHewlett-Packard:ct10:cvr:
dmi.product.family: 103C_5336AN
dmi.product.name: HP Compaq 6710b (GR680ET#ABH)
dmi.product.version: F.10
dmi.sys.vendor: Hewlett-Packard
version.compiz: compiz N/A
version.libdrm2: libdrm2 2.4.83-1~16.04.1
version.libgl1-mesa-dri: libgl1-mesa-dri 17.2.4-0ubuntu1~16.04.4
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 17.2.4-0ubuntu1~16.04.4
version.xserver-xorg-core: xserver-xorg-core N/A
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A
xserver.bootTime: Tue Feb  6 07:58:12 2018
xserver.configfile: default
xserver.errors:
 
xserver.logfile: /var/log/Xorg.0.log
xserver.version: 2:1.19.5-0ubuntu2~16.04.1
xserver.video_driver: modeset

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


** Tags: apport-bug i386 ubuntu xenial

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

Title:
  wifi

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

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

[Bug 1744666] Re: package mariadb-server-10.0 10.0.33-0ubuntu0.16.04.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2018-02-06 Thread Maarten Hoogveld
Just a reply to help others who run into the same issue.

"df -h" said the filesystem was only 78% in use.
However, the partition uses btrfs which can be fully utilized even if df says 
there should be space left.
See: 
https://btrfs.wiki.kernel.org/index.php/Problem_FAQ#I_get_.22No_space_left_on_device.22_errors.2C_but_df_says_I.27ve_got_lots_of_space

The problem was indeed that there was no space left and was not mariadb
related.

** Changed in: mariadb-10.0 (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/1744666

Title:
  package mariadb-server-10.0 10.0.33-0ubuntu0.16.04.1 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/mariadb-10.0/+bug/1744666/+subscriptions

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

[Bug 1722677] Re: Touch Screen NOT working

2018-02-06 Thread redx
http://www.fnpaste.com/1yxz?hash=8940ec1160d851452ed19850f5ce834e

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

Title:
  Touch Screen NOT working

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

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

[Bug 1728244] JournalErrors.txt

2018-02-06 Thread iBART
apport information

** Attachment added: "JournalErrors.txt"
   
https://bugs.launchpad.net/bugs/1728244/+attachment/5049635/+files/JournalErrors.txt

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

Title:
  Touchpad stops working after reboot on Apollo Lake

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

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

[Bug 1728244] Re: Touchpad stops working after reboot on Apollo Lake

2018-02-06 Thread iBART
Thanks Kai-Heng Feng but touch-pad is still not working.

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

Title:
  Touchpad stops working after reboot on Apollo Lake

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

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

[Bug 1728244] Re: Touchpad stops working after reboot on Apollo Lake

2018-02-06 Thread iBART
** Attachment added: "dmesg"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1728244/+attachment/5049638/+files/dmesg.log

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

Title:
  Touchpad stops working after reboot on Apollo Lake

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

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

[Bug 1728244] apport information

2018-02-06 Thread iBART
ApportVersion: 2.20.1-0ubuntu2.15
Architecture: amd64
CurrentDesktop: Unity
DistroRelease: Ubuntu 16.04
Package: linux (not installed)
Tags:  xenial
Uname: Linux 4.15.0+ x86_64
UnreportableReason: The running kernel is not an Ubuntu kernel
UpgradeStatus: No upgrade log present (probably fresh install)
UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
_MarkForUpload: True

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

Title:
  Touchpad stops working after reboot on Apollo Lake

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

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

[Bug 1747581] Re: package grub-common 2.02~beta3-4ubuntu7.1 failed to install/upgrade: podproces zainstalowany skrypt post-installation zwrócił kod błędu 1

2018-02-06 Thread Stefan Jacomeit
I have the same problem and see in other threads you need the 'strace
plymouth --ping', so here it is on my machine:

execve("/bin/plymouth", ["plymouth", "--ping"], [/* 63 vars */]) = 0
brk(NULL)   = 0x55ee0eea8000
access("/etc/ld.so.nohwcap", F_OK)  = -1 ENOENT (No such file or directory)
access("/etc/ld.so.preload", R_OK)  = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=87326, ...}) = 0
mmap(NULL, 87326, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7efc5de1
close(3)= 0
access("/etc/ld.so.nohwcap", F_OK)  = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/lib/x86_64-linux-gnu/libply.so.4", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\E\0\0\0\0\0\0"..., 
832) = 832
fstat(3, {st_mode=S_IFREG|0644, st_size=88632, ...}) = 0
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0x7efc5de0e000
mmap(NULL, 2185728, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 
0x7efc5d9e9000
mprotect(0x7efc5d9fe000, 2093056, PROT_NONE) = 0
mmap(0x7efc5dbfd000, 8192, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x14000) = 0x7efc5dbfd000
close(3)= 0
access("/etc/ld.so.nohwcap", F_OK)  = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/lib/x86_64-linux-gnu/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\340\22\2\0\0\0\0\0"..., 
832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=1960656, ...}) = 0
mmap(NULL, 4061792, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 
0x7efc5d609000
mprotect(0x7efc5d7df000, 2097152, PROT_NONE) = 0
mmap(0x7efc5d9df000, 24576, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1d6000) = 0x7efc5d9df000
mmap(0x7efc5d9e5000, 14944, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7efc5d9e5000
close(3)= 0
access("/etc/ld.so.nohwcap", F_OK)  = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/lib/x86_64-linux-gnu/librt.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\"\0\0\0\0\0\0"..., 
832) = 832
fstat(3, {st_mode=S_IFREG|0644, st_size=31744, ...}) = 0
mmap(NULL, 2128864, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 
0x7efc5d401000
mprotect(0x7efc5d408000, 2093056, PROT_NONE) = 0
mmap(0x7efc5d607000, 8192, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7efc5d607000
close(3)= 0
access("/etc/ld.so.nohwcap", F_OK)  = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/lib/x86_64-linux-gnu/libdl.so.2", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220\16\0\0\0\0\0\0"..., 
832) = 832
fstat(3, {st_mode=S_IFREG|0644, st_size=14632, ...}) = 0
mmap(NULL, 2109712, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 
0x7efc5d1fd000
mprotect(0x7efc5d20, 2093056, PROT_NONE) = 0
mmap(0x7efc5d3ff000, 8192, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7efc5d3ff000
close(3)= 0
access("/etc/ld.so.nohwcap", F_OK)  = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/lib/x86_64-linux-gnu/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 
3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360a\0\0\0\0\0\0"..., 
832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=144776, ...}) = 0
mmap(NULL, 2221160, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 
0x7efc5cfde000
mprotect(0x7efc5cff8000, 2093056, PROT_NONE) = 0
mmap(0x7efc5d1f7000, 8192, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x19000) = 0x7efc5d1f7000
mmap(0x7efc5d1f9000, 13416, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7efc5d1f9000
close(3)= 0
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0x7efc5de0c000
arch_prctl(ARCH_SET_FS, 0x7efc5de0d040) = 0
mprotect(0x7efc5d9df000, 16384, PROT_READ) = 0
mprotect(0x7efc5d1f7000, 4096, PROT_READ) = 0
mprotect(0x7efc5d3ff000, 4096, PROT_READ) = 0
mprotect(0x7efc5d607000, 4096, PROT_READ) = 0
mprotect(0x7efc5dbfd000, 4096, PROT_READ) = 0
mprotect(0x55ee0d992000, 4096, PROT_READ) = 0
mprotect(0x7efc5de26000, 4096, PROT_READ) = 0
munmap(0x7efc5de1, 87326)   = 0
set_tid_address(0x7efc5de0d310) = 24058
set_robust_list(0x7efc5de0d320, 24) = 0
rt_sigaction(SIGRTMIN, {sa_handler=0x7efc5cfe3c70, sa_mask=[], 
sa_flags=SA_RESTORER|SA_SIGINFO, sa_restorer=0x7efc5cff1150}, NULL, 8) = 0
rt_sigaction(SIGRT_1, {sa_handler=0x7efc5cfe3d00, sa_mask=[], 
sa_flags=SA_RESTORER|SA_RESTART|SA_SIGINFO, sa_restorer=0x7efc5cff1150}, NULL, 
8) = 0
rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, 
rlim_max=RLIM64_INFINITY

[Bug 1747614] Re: systemd-detect-virt fails with "Operation not permitted"

2018-02-06 Thread Oliver Zweigle
** Description changed:

  systemd version the issue has been seen with
  
- 229
+ 229
  
  - Used distribution
  
  Ubuntu 16.04
  
  - In case of bug report: Expected behaviour you didn't see
  
- systemd-detect-virt should show help text
+ systemd-detect-virt should show virtual system (e.g. docker) or none
  
  - In case of bug report: Unexpected behaviour you saw
  
  During apt-get upgrade grub-pc can not install in virtual container
  (docker) because of systemd-detect-virt fails with "Operation not
  permitted".
  
  Error output: /var/lib/dpkg/info/grub-pc.postinst: line 299: /usr/bin
  /systemd-detect-virt: Operation not permitted
  
  Call of systemd-detect-virt returns: "Operation not permitted"
  
  - In case of bug report: Steps to reproduce the problem
  
  apt-get update; apt-get upgrade; systemd-detect-virt

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

Title:
  systemd-detect-virt fails with "Operation not permitted"

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

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

[Bug 1728244] ProcCpuinfoMinimal.txt

2018-02-06 Thread iBART
apport information

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

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

Title:
  Touchpad stops working after reboot on Apollo Lake

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

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

[Bug 1746407] Re: package lib32z1-dev 1:1.2.8.dfsg-2ubuntu4 failed to install/upgrade: trying to overwrite '/usr/include/i386-linux-gnu/zconf.h', which is also in package zlib1g-dev:i386 1:1.2.8.dfsg

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

** Changed in: zlib (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/1746407

Title:
  package lib32z1-dev 1:1.2.8.dfsg-2ubuntu4 failed to install/upgrade:
  trying to overwrite '/usr/include/i386-linux-gnu/zconf.h', which is
  also in package zlib1g-dev:i386 1:1.2.8.dfsg-2ubuntu4

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

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

[Bug 1728244] ProcEnviron.txt

2018-02-06 Thread iBART
apport information

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

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

Title:
  Touchpad stops working after reboot on Apollo Lake

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

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

[Bug 1747619] [NEW] package samba-common 2:4.3.11+dfsg-0ubuntu0.16.04.12 failed to install/upgrade: subprocess installed post-installation script returned error exit status 10

2018-02-06 Thread sergio
Public bug reported:

installation of a new package impossible

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: samba-common 2:4.3.11+dfsg-0ubuntu0.16.04.12
ProcVersionSignature: Ubuntu 4.4.0-112.135-generic 4.4.98
Uname: Linux 4.4.0-112-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.15
Architecture: amd64
Date: Tue Feb  6 10:22:06 2018
DuplicateSignature:
 package:samba-common:2:4.3.11+dfsg-0ubuntu0.16.04.12
 Setting up grub-pc (2.02~beta2-36ubuntu3.16) ...
 dpkg: error processing package grub-pc (--configure):
  subprocess installed post-installation script returned error exit status 10
ErrorMessage: subprocess installed post-installation script returned error exit 
status 10
InstallationDate: Installed on 2014-04-24 (1383 days ago)
InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Release amd64 (20140417)
PackageArchitecture: all
RelatedPackageVersions:
 nautilus 1:3.18.4.is.3.14.3-0ubuntu6
 gvfs 1.28.2-1ubuntu1~16.04.2
SambaClientRegression: No
SourcePackage: samba
Title: package samba-common 2:4.3.11+dfsg-0ubuntu0.16.04.12 failed to 
install/upgrade: subprocess installed post-installation script returned error 
exit status 10
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: samba (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/1747619

Title:
  package samba-common 2:4.3.11+dfsg-0ubuntu0.16.04.12 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 10

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

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

[Bug 1747507] Re: starting VMs causing retpoline4 to reboot

2018-02-06 Thread Andy Whitcroft
That feature bit warning is normal.  Occurs benignly in most VM starts.
I have tested this on an Intel system and am not seeing any issues with
VMs so the issue must be AMD specific at least.

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

Title:
  starting VMs causing retpoline4 to reboot

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

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

[Bug 1747619] Re: package samba-common 2:4.3.11+dfsg-0ubuntu0.16.04.12 failed to install/upgrade: subprocess installed post-installation script returned error exit status 10

2018-02-06 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/1747619

Title:
  package samba-common 2:4.3.11+dfsg-0ubuntu0.16.04.12 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 10

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

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

[Bug 1746740] Re: XPS13 L322X Bionic (daily dev) touchpad laggy

2018-02-06 Thread Bib
Daniel, comment #11 was probably a double post.
libinput10 is the one in the live

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

Title:
  XPS13 L322X Bionic (daily dev) touchpad laggy

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

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

[Bug 1747618] Re: package grub-pc 2.02~beta2-36ubuntu3.16 failed to install/upgrade: subprocess installed post-installation script returned error exit status 10

2018-02-06 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/1747618

Title:
  package grub-pc 2.02~beta2-36ubuntu3.16 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 10

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

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

[Bug 1747618] [NEW] package grub-pc 2.02~beta2-36ubuntu3.16 failed to install/upgrade: subprocess installed post-installation script returned error exit status 10

2018-02-06 Thread sergio
Public bug reported:

installation of a new package impossible

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: grub-pc 2.02~beta2-36ubuntu3.16
ProcVersionSignature: Ubuntu 4.4.0-112.135-generic 4.4.98
Uname: Linux 4.4.0-112-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.15
Architecture: amd64
Date: Tue Feb  6 10:22:04 2018
DuplicateSignature:
 package:grub-pc:2.02~beta2-36ubuntu3.16
 Setting up grub-pc (2.02~beta2-36ubuntu3.16) ...
 dpkg: error processing package grub-pc (--configure):
  subprocess installed post-installation script returned error exit status 10
ErrorMessage: subprocess installed post-installation script returned error exit 
status 10
InstallationDate: Installed on 2014-04-24 (1383 days ago)
InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Release amd64 (20140417)
InvalidGrubScript: /etc/default/grub
ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-112-generic 
root=UUID=c07166cc-a9e1-4109-9a71-ec7bb165440a ro
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.3
 apt  1.2.24
SourcePackage: grub2
Title: package grub-pc 2.02~beta2-36ubuntu3.16 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 10
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: grub2 (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/1747618

Title:
  package grub-pc 2.02~beta2-36ubuntu3.16 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 10

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

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

[Bug 1747625] [NEW] [v4.13,mlx5_core] Oops: 0000 [#1] SMP PTI

2018-02-06 Thread Alvaro Uría
Public bug reported:

PowerEdge R730
4.13.0-26-generic #29~16.04.2-Ubuntu
mlx5_core firmware version: 14.20.1820

kernel trace: https://pastebin.ubuntu.com/26529021/

Issue happened when I issued "reboot" command. Other nodes with same
specifications and software versions didn't hit this bug.

A new "reboot" on the node that panic'ed didn't hit the bug.

I've set "pti=off" on all of them for now.

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


** Tags: canonical-bootstack

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

Title:
  [v4.13,mlx5_core] Oops:  [#1] SMP PTI

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

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

[Bug 1746740] Re: XPS13 L322X Bionic (daily dev) touchpad laggy

2018-02-06 Thread Daniel van Vugt
Please tell us the exact version that is problematic:

dpkg -s libinput10 | grep Version

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

Title:
  XPS13 L322X Bionic (daily dev) touchpad laggy

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

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

[Bug 1747621] [NEW] corrupt files via /run/user//gvfs

2018-02-06 Thread j^
Public bug reported:

files can be corrupt if copied from /run/user//gvfs/

this happens for files around 8-10k in size.
the resulting file is truncated.

the following fails:

cp "/run/user/1000/gvfs/mtp:host=%5Busb%3A001%2C018%5D/Internal
storage/test.json" /tmp/failed.json

this works:

gio copy mtp://[usb:001,018]/Internal%20storage/test.json /tmp/ok.json


upstream bug: https://bugzilla.gnome.org/show_bug.cgi?id=793121

** Affects: gvfs (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/1747621

Title:
  corrupt files via /run/user//gvfs

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

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

[Bug 1746740] Re: XPS13 L322X Bionic (daily dev) touchpad laggy

2018-02-06 Thread Bib
I read the touchpad range bug 1586683. This is not the same as my laptop
is Dell XPS13 developper edition (L322X), and at ~best~ I could say the
behaviour is reversed : my TP would have normal sensitivity on
right+bottom, and poor on center. Although this doesn't look like a
sensitivity issue, merely some usb buffer overflow or irq or I don't
know what, as I can move the cursor touching the central part on the
touchpad, the cursor moves OK then still sliding my finger as usual the
cursor stops moving. I have then to wait for a while to recover the
ability to make another move

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

Title:
  XPS13 L322X Bionic (daily dev) touchpad laggy

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

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

[Bug 1717856] Re: Kernel security test test_021_aslr_dapper_libs failed on 3.2 Precise i386

2018-02-06 Thread Po-Hsu Lin
Tested with one of the laptop in the cert lab. (201307-13930)
This issue can be reproduced with 3.2.0-131 but not with 3.2.0-133 in the 
proposed pocket.

I will leave the bug status as-is, since this is a different node from
our normal test pool for regression-testing.

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

Title:
  Kernel security test test_021_aslr_dapper_libs failed on 3.2 Precise
  i386

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

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

[Bug 1746765] Re: systemd FTBFS on arm64

2018-02-06 Thread Matthias Klose
this is now fixed in binutils

** Changed in: binutils (Ubuntu Bionic)
   Status: New => Fix Released

** Changed in: gnu-efi (Ubuntu Bionic)
   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/1746765

Title:
  systemd FTBFS on arm64

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

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

[Bug 1735248] Re: HW offload support for set actions

2018-02-06 Thread James Page
Uploaded with snapshot for branch-2.9 into Bionic

** Changed in: openvswitch (Ubuntu)
   Status: Triaged => Fix Committed

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

Title:
  HW offload support for set actions

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

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

[Bug 1747543] Re: [Hyper-V] linux-azure: PCI: hv: Do not sleep in compose_msi_msg()

2018-02-06 Thread Marcelo Cerri
** Also affects: linux-azure-edge (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/1747543

Title:
  [Hyper-V] linux-azure: PCI: hv: Do not sleep in compose_msi_msg()

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

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

[Bug 1742316] Re: DVB Card with SAA7146 chipset not working

2018-02-06 Thread Kai-Heng Feng
Hmmpf, please try this one,
people.canonical.com/~khfeng/lp1742316-dma/

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

Title:
  DVB Card with SAA7146 chipset not working

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

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

[Bug 1709272] Re: ovs-2.8.0 + dpdk - testsuite failures

2018-02-06 Thread James Page
DPDK enabled test suite passes on branch-2.9.

Uploaded with snapshot for branch-2.9 into Bionic

** Changed in: openvswitch (Ubuntu)
   Status: Triaged => Fix Committed

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

Title:
  ovs-2.8.0 + dpdk - testsuite failures

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

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

[Bug 1686406] Re: 2.7.0 test failure on armhf

2018-02-06 Thread James Page
All tests passing on all archs with branch-2.9; uploaded to bionic
(pending migration)

** Changed in: openvswitch (Ubuntu)
   Status: Triaged => Fix Committed

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

Title:
  2.7.0 test failure on armhf

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

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

[Bug 1736390] Re: openvswitch: kernel oops destroying interfaces on i386

2018-02-06 Thread James Page
Marking OVS tasks as invalid as we think this issue is in the kernel.

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

** Changed in: openvswitch (Ubuntu Bionic)
   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/1736390

Title:
  openvswitch: kernel oops destroying interfaces on i386

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

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

[Bug 1672522] Re: The python-openvswitch package should build the json C extension

2018-02-06 Thread James Page
I've added the -dev BD's to the package with a recent upload; however
the python native extension self depends on the package being built
which I've not figured out yet; we probably need to expose some sort of
libopenvswitch0{-dev} type package but I'm not sure.

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

Title:
  The python-openvswitch package should build the json C extension

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

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

[Bug 965283] Re: include openvswitch documentation / package openvswitch-docs

2018-02-06 Thread James Page
Uploaded with snapshot for branch-2.9 into Bionic

** Changed in: openvswitch (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/965283

Title:
  include openvswitch documentation / package openvswitch-docs

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

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

[Bug 1747625] Missing required logs.

2018-02-06 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 1747625

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: artful

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

Title:
  [v4.13,mlx5_core] Oops:  [#1] SMP PTI

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

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

[Bug 1747630] Missing required logs.

2018-02-06 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 1747630

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

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

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

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

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

Title:
  Kernel security test test_022_aslr_hardy_vdso failed on Precise i386

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

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

[Bug 1747630] [NEW] Kernel security test test_022_aslr_hardy_vdso failed on Precise i386

2018-02-06 Thread Po-Hsu Lin
Public bug reported:

This issue can be reproduced in 3.2.0-133 in proposed and 3.2.0-131. So
it should not be considered as a regression.

We didn't spot this issue before, until I'm testing 3.2 kernel on one of
the laptop (CID 201307-13930) in Cert lab instead of using our regular
regression-testing test pool from kernel team this cycle.

  ==
  FAIL: test_022_aslr_hardy_vdso (__main__.KernelSecurityTest)
  ASLR of vdso
  --
  Traceback (most recent call last):
File "./test-kernel-security.py", line 1863, in test_022_aslr_hardy_vdso
  self._test_aslr('vdso', expected)
File "./test-kernel-security.py", line 1795, in _test_aslr
  self._test_aslr_all(area, expected, "unlimited stack %s" % area)
File "./test-kernel-security.py", line 1772, in _test_aslr_all
  self._test_aslr_exec(area, expected, target, name)
File "./test-kernel-security.py", line 1765, in _test_aslr_exec
  self.assertShellExitEquals(aslr_expected, ["./%s" % (target), area, 
"--verbose"], msg="%s:\n" % name)
File 
"/home/ubuntu/autotest/client/tmp/ubuntu_qrt_kernel_security/src/qa-regression-testing/scripts/testlib.py",
 line 1134, in assertShellExitEquals
  self.assertEqual(expected, rc, msg + result + report)
  AssertionError: unlimited stack vdso native:
  Got exit code 1, expected 0
  Command: './aslr', 'vdso', '--verbose'
  Output:
  Checking ASLR of vdso:
   0x40022000
   0x40022000
   0x40022000
  FAIL: ASLR not functional (vdso always at 0x40022000)

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


** Tags: precise

** Tags added: precise

** Description changed:

  This issue can be reproduced in 3.2.0-133 in proposed and 3.2.0-131. So
  it should not be considered as a regression.
  
+ We didn't spot this issue before, until I'm testing 3.2 kernel on one of
+ the laptop (CID 201307-13930) in Cert lab instead of using our regular
+ regression-testing test pool from kernel team this cycle.
  
- We didn't spot this issue before, until I'm testing 3.2 kernel on one of the 
laptop (CID 201307-13930) in Cert lab this cycle.
- 
-   ==
-   FAIL: test_022_aslr_hardy_vdso (__main__.KernelSecurityTest)
-   ASLR of vdso
-   --
-   Traceback (most recent call last):
- File "./test-kernel-security.py", line 1863, in test_022_aslr_hardy_vdso
-   self._test_aslr('vdso', expected)
- File "./test-kernel-security.py", line 1795, in _test_aslr
-   self._test_aslr_all(area, expected, "unlimited stack %s" % area)
- File "./test-kernel-security.py", line 1772, in _test_aslr_all
-   self._test_aslr_exec(area, expected, target, name)
- File "./test-kernel-security.py", line 1765, in _test_aslr_exec
-   self.assertShellExitEquals(aslr_expected, ["./%s" % (target), area, 
"--verbose"], msg="%s:\n" % name)
- File 
"/home/ubuntu/autotest/client/tmp/ubuntu_qrt_kernel_security/src/qa-regression-testing/scripts/testlib.py",
 line 1134, in assertShellExitEquals
-   self.assertEqual(expected, rc, msg + result + report)
-   AssertionError: unlimited stack vdso native:
-   Got exit code 1, expected 0
-   Command: './aslr', 'vdso', '--verbose'
-   Output:
-   Checking ASLR of vdso:
-   0x40022000
-   0x40022000
-   0x40022000
-   FAIL: ASLR not functional (vdso always at 0x40022000)
+   ==
+   FAIL: test_022_aslr_hardy_vdso (__main__.KernelSecurityTest)
+   ASLR of vdso
+   --
+   Traceback (most recent call last):
+ File "./test-kernel-security.py", line 1863, in test_022_aslr_hardy_vdso
+   self._test_aslr('vdso', expected)
+ File "./test-kernel-security.py", line 1795, in _test_aslr
+   self._test_aslr_all(area, expected, "unlimited stack %s" % area)
+ File "./test-kernel-security.py", line 1772, in _test_aslr_all
+   self._test_aslr_exec(area, expected, target, name)
+ File "./test-kernel-security.py", line 1765, in _test_aslr_exec
+   self.assertShellExitEquals(aslr_expected, ["./%s" % (target), area, 
"--verbose"], msg="%s:\n" % name)
+ File 
"/home/ubuntu/autotest/client/tmp/ubuntu_qrt_kernel_security/src/qa-regression-testing/scripts/testlib.py",
 line 1134, in assertShellExitEquals
+   self.assertEqual(expected, rc, msg + result + report)
+   AssertionError: unlimited stack vdso native:
+   Got exit code 1, expected 0
+   Command: './aslr', 'vdso', '--verbose'
+   Output:
+   Checking ASLR of vdso:
+    0x40022000
+    0x40022000
+    0x40022000
+   FAIL: ASLR not functional (vdso always at 0x40022000)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subs

[Bug 1745959] Re: linux: 3.2.0-133.179 -proposed tracker

2018-02-06 Thread Po-Hsu Lin
3.2.0-133.179 - generic
Regression test CMPL.
http://kernel.ubuntu.com/testing/tracker-index.html

Issue to note in amd64:
  ubuntu_qrt_apparmor - recaching test failed, passed after retest

Issue to note in i386:
  ubuntu_qrt_apparmor - recaching test failed, passed after retest
  ubuntu_qrt_kernel_security - test_021_aslr_dapper_libs passed (bug 1717856), 
test_022_aslr_hardy_vdso failed on this system, not a regression as it can be 
reproduced with 3.2.0-131, bug 1747630

Note that I'm using systems from the Cert lab for this cycle,
201307-13930 (i386) and 201308-14073 (amd64)

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

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

Title:
  linux: 3.2.0-133.179 -proposed tracker

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

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

[Bug 1644364] Re: [MIR] htop

2018-02-06 Thread Bug Watch Updater
** Changed in: htop (Debian)
   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/1644364

Title:
  [MIR] htop

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

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

[Bug 1744072] Re: MIR Chrony in 18.04

2018-02-06 Thread ChristianEhrhardt
Builds complete against new nss, also all other bugs we wanted are grouped.
New chrony uploaded to bionic - once passed we can do the seeding.

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

Title:
  MIR Chrony in 18.04

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

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

[Bug 1745959] Re: linux: 3.2.0-133.179 -proposed tracker

2018-02-06 Thread Brad Figg
** Changed in: kernel-sru-workflow/promote-to-security
   Status: New => Confirmed

** Changed in: kernel-sru-workflow/promote-to-updates
   Status: New => Confirmed

** Tags removed: block-proposed-precise

** Tags removed: block-proposed

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

Title:
  linux: 3.2.0-133.179 -proposed tracker

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

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

[Bug 1744722] Re: Unknown bad source brings up during 'zesty' to 'artful' upgrade and It break the process

2018-02-06 Thread Julian Andres Klode
While I cannot seem to reproduce thsi with the provided sources.list, my
test case works. I had to delete the DistUpgrade package from the source
tree to get autopkgtest to pick up the installed version (or autopkgtest
here apparently test the source tree, which is wrong).

With 17.10.9:

==  
  
FAIL: test sources.list rewrite of an obsolete mirror
-- 
Traceback (most recent call last):  
 
  File "/usr/lib/python3/dist-packages/mock/mock.py", line 1305, in patched
return func(*args, **keywargs)
  File "/tmp/autopkgtest.qMDThe/tree/tests/test_sources_list.py", line 169, in 
test_sources_list_inactive_mirror
""")   
  File "/tmp/autopkgtest.qMDThe/tree/tests/test_sources_list.py", line 584, in 
_verifySources2Way
(l, sources_list))
AssertionError: False is not true : unexpected entry 'deb 
http://archive.ubuntu.com/ubuntu stable main # auto generated by 
ubuntu-release-upgrader' in sources.list. got:


With 17.10.10 (--apt-pocket=proposed):

autopkgtest [11:01:33]: test nose-tests: [---
...
** (nosetests3:6104): WARNING **: Error retrieving accessibility bus address: 
org.freedesktop.DBus.Error.ServiceUnknown: The name org.a11y.Bus was not 
provided by any .service files

(nosetests3:6104): Gtk-CRITICAL **: gtk_main_quit: assertion 'main_loops != 
NULL' failed
.äää
--
Ran 44 tests in 11.451s

OK
autopkgtest [11:01:45]: test nose-tests: ---]


** Description changed:

  [Impact]
  Upgrades from unsupported releases do not work if they have some third-party 
repositories in their sources.list, for example a repository with "stable" as 
the suite. u-r-u generates a new sources.list with an Ubuntu entry for "stable".
  
  [Test case]
- On a zesty system, add
- 
-   deb https://example.com/3rd-party/deb/ stable main
- 
- to the sources.list and try to upgrade to artful. It will generate an
- entry:
- 
-   deb https://archive.ubuntu.com/ stable main
- 
- and fail.
- 
- Now run do-release-upgrade --proposed and check that it does not do
- that.
- 
- Alternatively, just rely on the autopkgtest test case testing that.
+ Run the provided test case against 17.10.9 and check that it fails. Run it 
again 17.10.10 and check that it works.
  
  [Regression Potential]
  This affects release upgrades, and if broken, might prevent some release 
updates. It seems unlikely though: The change just checks that the new 
distribution of a sources.list entry is valid before writing it out.
  
  [Original bug report]
  
  During update after release 'zesty' 'end of life' strange error appear:
  
  E:The repository 'http://archive.ubuntu.com/ubuntu stable Release' does
  not have a Release file.
  
  This error prevent upgrade process. There is no entry like 
'http://archive.ubuntu.com/ubuntu stable Release' in my 'sources.list'. I have 
no idea where this entry comes from. During regular packages update try, only 
appears error messages directly related to 'end of life' release state. No 
error like above. I am not sure, but it seems like 
'http://archive.ubuntu.com/ubuntu stable Release' is wrongly formatted and have 
no idea where this comes from as all. Here is my sources list (as is now). As 
could be seen from the sources list my install is from 2014. Over the years I 
make upgrade after 'end of life' release few times without any problems. Now is 
the first time I have such issue.
  Thanks in advance!
  
  ProblemType: Bug
  DistroRelease: Ubuntu 17.04
  Package: ubuntu-release-upgrader-core 1:17.04.10
  ProcVersionSignature: Ubuntu 4.10.0-42.46-generic 4.10.17
  Uname: Linux 4.10.0-42-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.20.4-0ubuntu4.10
  Architecture: amd64
  CrashDB: ubuntu
  CurrentDesktop: KDE
  Date: Mon Jan 22 15:56:24 2018
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2014-07-12 (1289 days ago)
  InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Release amd64 (20140417)
  PackageArchitecture: all
  SourcePackage: ubuntu-release-upgrader
  Symptom: ubuntu-release-upgrader
  UpgradeStatus: Upgraded to zesty on 2018-01-20 (2 days ago)
  VarLogDistupgradeAptlog:
   Log time: 2018-01-20 03:20:51.814404
   Log time: 2018-01-20 03:20:56.946483
   Log time: 2018-01-20 03:21:25.049488

** Description changed:

  [Impact]
  Upgrades from unsupported releases do not work if they have some third-party 
repositories in their sources.list, for example a repository with "stable" as 
the suite. u-r-u generates a new sources.list with an Ubuntu entry for "stable".
  
  [Test case]
- Run the provided test case against 17.10.9 and check that it fails. Run it 
again 17.10.10 and check th

[Bug 1644364] Re: [MIR] htop

2018-02-06 Thread ChristianEhrhardt
@MIR Team - we realized that this has no MIR Team ack yet, so I kindly
ask you as well to formally ack this MIR.

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

Title:
  [MIR] htop

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

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

[Bug 1590660] Re: Migrate dependency from py2 to py3, or moving py2 from Depends to Suggests in control file

2018-02-06 Thread James Page
*** This bug is a duplicate of bug 1735377 ***
https://bugs.launchpad.net/bugs/1735377

** This bug has been marked a duplicate of bug 1735377
   openvswitch: Use of Python3 needed

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

Title:
  Migrate dependency from py2 to py3, or moving py2 from Depends to
  Suggests in control file

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

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

[Bug 1747632] [NEW] package zope2.13-sandbox 2.13.21-1ubuntu1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2018-02-06 Thread angelo
Public bug reported:

Si sono verificati degli errori nell'elaborazione:
 zope2.13-sandbox
E: Sub-process /usr/bin/dpkg returned an error code (1)

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: zope2.13-sandbox 2.13.21-1ubuntu1
ProcVersionSignature: Ubuntu 4.4.0-101.124~14.04.1-generic 4.4.95
Uname: Linux 4.4.0-101-generic i686
ApportVersion: 2.14.1-0ubuntu3.27
Architecture: i386
Date: Tue Feb  6 10:43:13 2018
DuplicateSignature: package:zope2.13-sandbox:2.13.21-1ubuntu1:subprocess 
installed post-installation script returned error exit status 1
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationDate: Installed on 2016-12-05 (427 days ago)
InstallationMedia: Ubuntu 14.04.3 LTS "Trusty Tahr" - Beta i386 (20150805)
PackageArchitecture: all
RelatedPackageVersions:
 dpkg 1.17.5ubuntu5.7
 apt  1.0.1ubuntu2.17
SourcePackage: zope2.13
Title: package zope2.13-sandbox 2.13.21-1ubuntu1 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
UpgradeStatus: Upgraded to trusty on 2016-12-05 (427 days ago)

** Affects: zope2.13 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 trusty

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

Title:
  package zope2.13-sandbox 2.13.21-1ubuntu1 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/zope2.13/+bug/1747632/+subscriptions

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

[Bug 1747633] [NEW] [Hewlett-Packard HP EliteBook 8460p] hibernate/resume failure

2018-02-06 Thread mfakhriabdul...@gmail.com
Public bug reported:

suddenly screen blank with some yellow dot on the left edge blinking, i
don't know why. recovered after reboot

ProblemType: KernelOops
DistroRelease: Ubuntu 18.04
Package: linux-image-4.13.0-32-generic 4.13.0-32.35
ProcVersionSignature: Ubuntu 4.13.0-32.35-generic 4.13.13
Uname: Linux 4.13.0-32-generic x86_64
Annotation: This occurred during a previous hibernation, and prevented the 
system from resuming properly.
ApportVersion: 2.20.8-0ubuntu8
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  muhammad   1521 F pulseaudio
Date: Sun Feb  4 20:26:12 2018
DuplicateSignature: hibernate/resume:Hewlett-Packard HP EliteBook 8460p:68SCF 
Ver. F.65
ExecutablePath: /usr/share/apport/apportcheckresume
Failure: hibernate/resume
HibernationDevice: RESUME=UUID=efe174e4-e201-4371-a3f2-5838808bd295
InstallationDate: Installed on 2018-02-02 (3 days ago)
InstallationMedia: Ubuntu 16.04.3 LTS "Xenial Xerus" - Release amd64 (20170801)
InterpreterPath: /usr/bin/python3.6
MachineType: Hewlett-Packard HP EliteBook 8460p
ProcCmdline: /usr/bin/python3 /usr/share/apport/apportcheckresume
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.13.0-32-generic 
root=UUID=e19030b9-4b26-46ca-9237-14b74aa33739 ro quiet splash vt.handoff=1
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
Python3Details: /usr/bin/python3.6, Python 3.6.4, python3-minimal, 
3.6.3-0ubuntu2
PythonDetails: /usr/bin/python2.7, Python 2.7.14+, python-minimal, 
2.7.14-2ubuntu1
RelatedPackageVersions:
 linux-restricted-modules-4.13.0-32-generic N/A
 linux-backports-modules-4.13.0-32-generic  N/A
 linux-firmware 1.170
SourcePackage: linux
Title: [Hewlett-Packard HP EliteBook 8460p] hibernate/resume failure
UpgradeStatus: Upgraded to bionic on 2018-02-04 (1 days ago)
UserGroups:
 
dmi.bios.date: 04/06/2017
dmi.bios.vendor: Hewlett-Packard
dmi.bios.version: 68SCF Ver. F.65
dmi.board.name: 161C
dmi.board.vendor: Hewlett-Packard
dmi.board.version: KBC Version 97.4E
dmi.chassis.asset.tag: CNU2379L6S
dmi.chassis.type: 10
dmi.chassis.vendor: Hewlett-Packard
dmi.modalias: 
dmi:bvnHewlett-Packard:bvr68SCFVer.F.65:bd04/06/2017:svnHewlett-Packard:pnHPEliteBook8460p:pvrA0001D02:rvnHewlett-Packard:rn161C:rvrKBCVersion97.4E:cvnHewlett-Packard:ct10:cvr:
dmi.product.family: 103C_5336AN
dmi.product.name: HP EliteBook 8460p
dmi.product.version: A0001D02
dmi.sys.vendor: Hewlett-Packard

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


** Tags: amd64 apport-kerneloops bionic hibernate resume

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

Title:
  [Hewlett-Packard HP EliteBook 8460p] hibernate/resume failure

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

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

[Bug 1746431] Re: virt-aa-helper: do not fail with memory slots specified in guest xml

2018-02-06 Thread ChristianEhrhardt
** Summary changed:

- ISST-LTE:KVM:Ubuntu1804:BostonLC:boslcp3: Unable to start the guest from 
Ubuntu1804 KVM host machine
+ virt-aa-helper: do not fail with memory slots specified in guest xml

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

Title:
  virt-aa-helper: do not fail with memory slots specified in guest xml

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

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

  1   2   3   4   5   6   7   8   >