[Bug 1610959] Re: blocked cellular data toogle

2016-08-09 Thread Daniel van Vugt
*** This bug is a duplicate of bug 1598010 ***
https://bugs.launchpad.net/bugs/1598010

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug 1598010, so it 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. Feel free to continue to report any other bugs you may
find.


** This bug has been marked a duplicate of bug 1598010
   cellular data switch disabled until SIM selected in settings

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

Title:
  blocked cellular data toogle

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1610959/+subscriptions

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


[Bug 1611604] Re: Update to 3.20.0

2016-08-09 Thread Jeremy Bicha
** Description changed:

  https://git.gnome.org/browse/gnome-bluetooth/tree/NEWS
  
  This needs gnome-settings-daemon 3.20 to be uploaded to yakkety first
- since this drop the rfkill rules file because it's packaged there
- instead. Therefore, I set the block-proposed tag.
+ since this drops the rfkill rules file because it's packaged there
+ instead. (It has been shipped in gnome-settings-daemon for a while but I
+ am moving it to gnome-settings-daemon-schemas.) Therefore, I set the
+ block-proposed tag.

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

Title:
  Update to 3.20.0

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

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


[Bug 1598010] Re: cellular data switch disabled until SIM selected in settings

2016-08-09 Thread Daniel van Vugt
OK, I'm going to assume this is getting fixed with the fix for bug
1607079, until proven otherwise.

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

Title:
  cellular data switch disabled until SIM selected in settings

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1598010/+subscriptions

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


[Bug 1607079] Re: Cellular Option immediately crashes [OTA-12]

2016-08-09 Thread Daniel van Vugt
Would the fix for this bug also resolve bug 1598010?

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

Title:
  Cellular Option immediately crashes [OTA-12]

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1607079/+subscriptions

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


[Bug 1183771] Re: xdiagnose's shortcut launched nothing

2016-08-09 Thread Timo Aaltonen
*** This bug is a duplicate of bug 1483276 ***
https://bugs.launchpad.net/bugs/1483276

** This bug has been marked a duplicate of bug 1483276
   Unable to launch xdiagnose through the Activities Overview in the normal way

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

Title:
  xdiagnose's shortcut launched nothing

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

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


[Bug 1168596] Re: xdiagnose does not launch

2016-08-09 Thread Timo Aaltonen
*** This bug is a duplicate of bug 1483276 ***
https://bugs.launchpad.net/bugs/1483276

** This bug is no longer a duplicate of bug 1183771
   xdiagnose's shortcut launched nothing
** This bug has been marked a duplicate of bug 1483276
   Unable to launch xdiagnose through the Activities Overview in the normal way

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

Title:
  xdiagnose does not launch

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

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


[Bug 1611603] Re: fails to start when confined in a snap

2016-08-09 Thread Paul Collins
** Description changed:

  I attempted to package a simple WSGI app in an Ubuntu snap with
  gunicorn, and ran into a problem with gunicorn vs. the Snap security
  policy.
  
  The policy forbids calling chown at all, whereas the
  gunicorn.worker.WorkerTemp class relies on the default and historically
  unproblematic behaviour of silently succeeding when the UID/GID are the
  same as the calling process's.
  
  I've attached a patch that attempts to short-circuit chown when it would
  be a no-op, which is the case when gunicorn is run as root in a snap,
  and this patch lets my app work when confined.
  
- snaps also do not currently allow setuid, etc., and so there's no sense
- in trying to create a gunicorn-using snap that starts as root and then
- drops privileges.  For more information on the snap security policy,
- please visit: https://developer.ubuntu.com/en/snappy/guides/security/
+ snaps also do not currently allow setuid, etc., and so there's no sense in 
trying to create a gunicorn-using snap that starts as root and then drops 
privileges.  For more information on the snap security policy, please visit: 
https://developer.ubuntu.com/en/snappy/guides/security/
+ and https://developer.ubuntu.com/en/snappy/build-apps/debug/

** Description changed:

  I attempted to package a simple WSGI app in an Ubuntu snap with
  gunicorn, and ran into a problem with gunicorn vs. the Snap security
  policy.
  
  The policy forbids calling chown at all, whereas the
- gunicorn.worker.WorkerTemp class relies on the default and historically
+ workers.workertmp.WorkerTmp class relies on the default and historically
  unproblematic behaviour of silently succeeding when the UID/GID are the
  same as the calling process's.
  
  I've attached a patch that attempts to short-circuit chown when it would
  be a no-op, which is the case when gunicorn is run as root in a snap,
  and this patch lets my app work when confined.
  
  snaps also do not currently allow setuid, etc., and so there's no sense in 
trying to create a gunicorn-using snap that starts as root and then drops 
privileges.  For more information on the snap security policy, please visit: 
https://developer.ubuntu.com/en/snappy/guides/security/
  and https://developer.ubuntu.com/en/snappy/build-apps/debug/

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

Title:
  fails to start when confined in a snap

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

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


[Bug 1611604] Re: Update to 3.20.0

2016-08-09 Thread Launchpad Bug Tracker
** Branch linked: lp:~jbicha/gnome-bluetooth/update-to-320

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

Title:
  Update to 3.20.0

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

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


[Bug 1539896] Re: [enhancement] Support Vulkan

2016-08-09 Thread Daniel van Vugt
Oh I forgot the Vulkan work is based on NBS. And NBS only just got
turned on in Mir releases 0.23.5 and 0.24.0.

Was that the only blocker?

** Changed in: mir (Ubuntu)
   Importance: Undecided => Wishlist

** Changed in: mir (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/1539896

Title:
  [enhancement] Support Vulkan

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

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


[Bug 1611486] Re: Radiotray does not start on a vanilla 16.04

2016-08-09 Thread dino99
*** This bug is a duplicate of bug 1557115 ***
https://bugs.launchpad.net/bugs/1557115

** This bug has been marked a duplicate of bug 1557115
   [regression] RadioTray won't launch without python-xdg & 
gir1.2-appindicator3-0.1

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

Title:
  Radiotray does not start on a vanilla 16.04

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

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


[Bug 1611277] Re: Kernel Shipped With Ubuntu 16.04.1 Cannot Recognize fakeRaid

2016-08-09 Thread Stefan Bader
The user-space tool that is responsible to set up fakeraid (except for
Intel MSM and DDS style meta-data). Make sure that package is still
installed and the dmraid command is still usable.

A rc1 mainline kernel is probably a bit too recent since the first
release candidate can always be unstable. A 4.7 final maybe would have
been better, though I suspect its less of a kernel issue than a problem
with the user-space tool. Maybe related to the kernel because the
interface to set up a device-mapper raid1 could have changed.

Not sure if you know how to get back to a working kernel. If not, it
should be possible to quickly hit left-shift between BIOS and the hidden
grub screen to get to the grub menu (though I am too slow most of the
time). From there one would select the alternative option and there has
the choice of older kernels.

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

Title:
  Kernel Shipped With Ubuntu 16.04.1 Cannot Recognize fakeRaid

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

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


[Bug 1611604] [NEW] Update to 3.20.0

2016-08-09 Thread Jeremy Bicha
Public bug reported:

https://git.gnome.org/browse/gnome-bluetooth/tree/NEWS

This needs gnome-settings-daemon 3.20 to be uploaded to yakkety first
since this drop the rfkill rules file because it's packaged there
instead. Therefore, I set the block-proposed tag.

** Affects: gnome-bluetooth (Ubuntu)
 Importance: Wishlist
 Status: New


** Tags: block-proposed upgrade-software-version

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

Title:
  Update to 3.20.0

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

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


[Bug 1611603] [NEW] fails to start when confined in a snap

2016-08-09 Thread Paul Collins
Public bug reported:

I attempted to package a simple WSGI app in an Ubuntu snap with
gunicorn, and ran into a problem with gunicorn vs. the Snap security
policy.

The policy forbids calling chown at all, whereas the
gunicorn.worker.WorkerTemp class relies on the default and historically
unproblematic behaviour of silently succeeding when the UID/GID are the
same as the calling process's.

I've attached a patch that attempts to short-circuit chown when it would
be a no-op, which is the case when gunicorn is run as root in a snap,
and this patch lets my app work when confined.

snaps also do not currently allow setuid, etc., and so there's no sense
in trying to create a gunicorn-using snap that starts as root and then
drops privileges.  For more information on the snap security policy,
please visit: https://developer.ubuntu.com/en/snappy/guides/security/

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


** Tags: canonical-is

** Patch added: "skip chown when it would be a no-op"
   
https://bugs.launchpad.net/bugs/1611603/+attachment/4717942/+files/gunicorn.chown.patch

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

Title:
  fails to start when confined in a snap

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

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


[Bug 1366883] Re: "Edit Filesystem..." option is labeled wrong

2016-08-09 Thread Dan Dascalescu
This still hasn't been fixed as of Ubuntu 16.04, and is a regression -
see http://askubuntu.com/questions/276911/how-to-rename-
partitions/276928#276928

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

Title:
  "Edit Filesystem..." option is labeled wrong

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-disk-utility/+bug/1366883/+subscriptions

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


[Bug 1611598] Re: jamvm is broken due to missing native methods in sun.misc.Unsafe

2016-08-09 Thread Bug Watch Updater
Launchpad has imported 1 comments from the remote bug at
http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=3134.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.


On 2016-08-10T04:22:49+00:00 Tiago Stürmer Daitx wrote:

Created attachment 1546
add 2 new sun.misc.unsafe methods to jamvm

[Issue]
The fix of OpenJDK's bug 8158260 
(http://icedtea.classpath.org/hg/release/icedtea7-forest-2.6/hotspot/rev/4f8cbd54a9c6)
 introduced 2 new native methods to the sun.misc.Unsafe class: isBigEndian0 and 
unalignedAccess0. 

This completely broke JamVM and as of now it is impossible to start a
jamvm session.

jtreg summary results:
hotspot   - Test results: passed: 5; failed: 309; error: 7
langtools - Test results: passed: 374; failed: 1,593; error: 1

An error output from a testcase:
--System.err:(6/344)--
Error initialising VM (initialiseMainThread)
Check the README for compatible class-libraries/versions
Exception occurred while printing exception (java/lang/NullPointerException)...
Original exception was java/lang/UnsatisfiedLinkError
Error: Could not create the Java Virtual Machine.
Error: A fatal exception has occurred. Program will exit.
result: Failed. Unexpected exit from test [exit code: 1]

Running java -jamvm -version fails the same way.


[Fix]
The simple fix is to add both methods to the natives.c file in the 
classlib/openjdk directory.

I have tested this with IcedTea 2.6.7 and now jtreg passes:
hotspot   - Test results: passed: 220; failed: 90; error: 11
langtools - Test results: passed: 1,901; failed: 65; error: 2


I have reported this upstream at 
https://sourceforge.net/p/jamvm/code/merge-requests/1/ and it is now waiting 
review.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/openjdk-7/+bug/1611598/comments/0


** Changed in: openjdk
   Status: Unknown => Confirmed

** Changed in: openjdk
   Importance: Unknown => Critical

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

Title:
  jamvm is broken due to missing native methods in sun.misc.Unsafe

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

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

[Bug 1609236] Re: cannot change keyboard language when entering password after screen-saver lock

2016-08-09 Thread Amr Ibrahim
** This bug is no longer a duplicate of bug 1605012
   compiz lockscreen crashed with SIGABRT in AcceleratorController :: 
OnActionActivated

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

Title:
  cannot change keyboard language when entering password after screen-
  saver lock

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

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


[Bug 1611598] Re: jamvm is broken due to missing native methods in sun.misc.Unsafe

2016-08-09 Thread Tiago Stürmer Daitx
** Summary changed:

- jamvm is broken after 2.6.7 update
+ jamvm is broken due to missing native methods in sun.misc.Unsafe

** Description changed:

  [Issue]
- The fix of OpenJDK's bug 8158260 
(http://icedtea.classpath.org/hg/release/icedtea7-forest-2.6/hotspot/rev/4f8cbd54a9c6)
 introduced 2 new native methods to the sun.misc.Unsafe class: isBigEndian0 and 
unalignedAccess0. 
+ The fix of OpenJDK's bug 8158260 
(http://icedtea.classpath.org/hg/release/icedtea7-forest-2.6/hotspot/rev/4f8cbd54a9c6)
 introduced 2 new native methods to the sun.misc.Unsafe class: isBigEndian0 and 
unalignedAccess0.
  
  This completely broke JamVM and as of now it is impossible to start a
  jamvm session.
  
- jtreg summary results:
+ jtreg summary results for OpenJDK 7:
  hotspot   - Test results: passed: 5; failed: 309; error: 7
  langtools - Test results: passed: 374; failed: 1,593; error: 1
  
  An error output from a testcase:
  --System.err:(6/344)--
  Error initialising VM (initialiseMainThread)
  Check the README for compatible class-libraries/versions
  Exception occurred while printing exception 
(java/lang/NullPointerException)...
  Original exception was java/lang/UnsatisfiedLinkError
  Error: Could not create the Java Virtual Machine.
  Error: A fatal exception has occurred. Program will exit.
  result: Failed. Unexpected exit from test [exit code: 1]
  
  Running java -jamvm -version fails the same way.
  
- 
  [Fix]
  The simple fix is to add both methods to the natives.c file in the 
classlib/openjdk directory.
  
  I have tested this with IcedTea 2.6.7 and now jtreg passes:
  hotspot   - Test results: passed: 220; failed: 90; error: 11
  langtools - Test results: passed: 1,901; failed: 65; error: 2
  
- 
- I have reported this upstream at 
https://sourceforge.net/p/jamvm/code/merge-requests/1/ and it is now waiting 
review.
+ I have reported this upstream at https://sourceforge.net/p/jamvm/code
+ /merge-requests/1/ and it is now waiting review.

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

Title:
  jamvm is broken due to missing native methods in sun.misc.Unsafe

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

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


[Bug 1611598] [NEW] jamvm is broken after 2.6.7 update

2016-08-09 Thread Tiago Stürmer Daitx
Public bug reported:

[Issue]
The fix of OpenJDK's bug 8158260 
(http://icedtea.classpath.org/hg/release/icedtea7-forest-2.6/hotspot/rev/4f8cbd54a9c6)
 introduced 2 new native methods to the sun.misc.Unsafe class: isBigEndian0 and 
unalignedAccess0. 

This completely broke JamVM and as of now it is impossible to start a
jamvm session.

jtreg summary results:
hotspot   - Test results: passed: 5; failed: 309; error: 7
langtools - Test results: passed: 374; failed: 1,593; error: 1

An error output from a testcase:
--System.err:(6/344)--
Error initialising VM (initialiseMainThread)
Check the README for compatible class-libraries/versions
Exception occurred while printing exception (java/lang/NullPointerException)...
Original exception was java/lang/UnsatisfiedLinkError
Error: Could not create the Java Virtual Machine.
Error: A fatal exception has occurred. Program will exit.
result: Failed. Unexpected exit from test [exit code: 1]

Running java -jamvm -version fails the same way.


[Fix]
The simple fix is to add both methods to the natives.c file in the 
classlib/openjdk directory.

I have tested this with IcedTea 2.6.7 and now jtreg passes:
hotspot   - Test results: passed: 220; failed: 90; error: 11
langtools - Test results: passed: 1,901; failed: 65; error: 2


I have reported this upstream at 
https://sourceforge.net/p/jamvm/code/merge-requests/1/ and it is now waiting 
review.

** Affects: openjdk
 Importance: Unknown
 Status: Unknown

** Affects: openjdk-7 (Ubuntu)
 Importance: Undecided
 Assignee: Tiago Stürmer Daitx (tdaitx)
 Status: Confirmed

** Changed in: openjdk-7 (Ubuntu)
   Status: New => Confirmed

** Changed in: openjdk-7 (Ubuntu)
 Assignee: (unassigned) => Tiago Stürmer Daitx (tdaitx)

** Bug watch added: Iced Tea Bugzilla #3134
   http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=3134

** Also affects: openjdk via
   http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=3134
   Importance: Unknown
   Status: Unknown

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

Title:
  jamvm is broken after 2.6.7 update

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

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

[Bug 1611009] Re: [SRU] New stable micro release 2.14

2016-08-09 Thread Mathew Hodson
** Changed in: snapcraft (Ubuntu Xenial)
Milestone: None => xenial-updates

** Changed in: snapcraft (Ubuntu Yakkety)
Milestone: xenial-updates => None

** Changed in: snapcraft (Ubuntu Xenial)
   Importance: Undecided => Wishlist

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

Title:
  [SRU] New stable micro release 2.14

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

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


[Bug 1575148] Re: Ubuntu 16.04 with kernel 4.4.0.21 does not recognize at all the nvidia card of a macbook pro 11, 1

2016-08-09 Thread Launchpad Bug Tracker
[Expired for linux (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  Ubuntu 16.04 with kernel 4.4.0.21 does not recognize at all the nvidia
  card of a macbook pro 11,1

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

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


[Bug 1586805] Re: gcc: internal compiler error: Killed (program cc1)

2016-08-09 Thread Launchpad Bug Tracker
[Expired for gcc-5 (Ubuntu) because there has been no activity for 60
days.]

** Changed in: gcc-5 (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  gcc: internal compiler error: Killed (program cc1)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gcc-5/+bug/1586805/+subscriptions

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


[Bug 1590072] Re: kernel 4.4.0-21.37-generic in 16.04 sees no disks on HP ProLiant BL465c Gen8 if IOMMU is enabled

2016-08-09 Thread Launchpad Bug Tracker
[Expired for linux (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  kernel 4.4.0-21.37-generic in 16.04 sees no disks on HP ProLiant
  BL465c Gen8  if IOMMU is enabled

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

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


[Bug 1577790] Re: OS Does not rememeber wifi on/off state upon startup.

2016-08-09 Thread Launchpad Bug Tracker
[Expired for network-manager (Ubuntu) because there has been no activity
for 60 days.]

** Changed in: network-manager (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  OS Does not rememeber wifi on/off state upon startup.

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

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


[Bug 1573597] Re: Problems with shut down and boot (Lenovo T450s)

2016-08-09 Thread Launchpad Bug Tracker
[Expired for linux (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  Problems with shut down and boot (Lenovo T450s)

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

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


[Bug 1581076] Re: Xorg segfaults on start-up on Big Endian PPC hardware

2016-08-09 Thread Launchpad Bug Tracker
[Expired for xorg-server (Ubuntu) because there has been no activity for
60 days.]

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

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

Title:
  Xorg segfaults on start-up on Big Endian PPC hardware

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

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


[Bug 1532318] Re: alt-tab only show desktop

2016-08-09 Thread Launchpad Bug Tracker
[Expired for bamf (Ubuntu) because there has been no activity for 60
days.]

** Changed in: bamf (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  alt-tab only show desktop

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

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


[Bug 1611277] Re: Kernel Shipped With Ubuntu 16.04.1 Cannot Recognize fakeRaid

2016-08-09 Thread Huang YangWen
/scripts/init-top/udev: line 14: can't create /sys/kernel/uevent-helper:
Permission denied.

Gave up waiting for root device. Common problems:
- Boot args (cat /proc/cmdline)
- Check root delay= (did the system wait long enough?)
- Check root= (did the system wait for the right device?)
- Missing modules (cat /proc/modules, ls /dev)
ALERT! /dev/mapper/ubuntu--vg-root does not exist. Dropping to a shell.
BusyBox v1.12.1 (Ubuntu 1:1.21.0-iubuntu1) built-in shell (ash) Enter 'help'
for a list a built-in commands

(initramfs)

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

Title:
  Kernel Shipped With Ubuntu 16.04.1 Cannot Recognize fakeRaid

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

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


[Bug 1610714] Re: Evince crashes with _cairo_gstate_set_dash

2016-08-09 Thread Mathew Hodson
** Changed in: poppler (Ubuntu Xenial)
   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/1610714

Title:
  Evince crashes with _cairo_gstate_set_dash

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

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


[Bug 1551181] Re: Update to latest upstream 2.92

2016-08-09 Thread Jeremy Bicha
Here's a .debdiff for sponsoring

** Patch added: "update-transmission-lp1551181.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/transmission/+bug/1551181/+attachment/4717940/+files/update-transmission-lp1551181.debdiff

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

Title:
  Update to latest upstream 2.92

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

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


[Bug 1535297] Re: Unity8 crashes on logout with "Error in `unity8': double free or corruption" called from libprotobuf.so.9, called from libprotobuf-lite.so.9

2016-08-09 Thread Daniel van Vugt
** Changed in: mir
   Status: In Progress => Triaged

** Changed in: mir
 Assignee: Daniel van Vugt (vanvugt) => (unassigned)

** Changed in: mir
Milestone: 0.25.0 => None

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

Title:
  Unity8 crashes on logout with "Error in `unity8': double free or
  corruption" called from libprotobuf.so.9, called from libprotobuf-
  lite.so.9

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1535297/+subscriptions

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


[Bug 761830] Re: grub2 still hands off to blank tty7 on non-Server command-line-only systems and some Server systems

2016-08-09 Thread Kaijia Feng
This bug happens to me every time in Xenial (none in Trusty) when
installing a server using minimal ISO.

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

Title:
  grub2 still hands off to blank tty7 on non-Server command-line-only
  systems and some Server systems

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

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


[Bug 1599599] Re: System beep broken (again) in Xenial Xerus

2016-08-09 Thread Silviu Podariu
I would also like to see this  'echo -e "-a"' fixed somehow as i also
used it as bell notification for remote ssh-jobs completing their
tasks... Thanks Anthony for asking the question!

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

Title:
  System beep broken (again) in Xenial Xerus

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

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


[Bug 1611277] Re: Kernel Shipped With Ubuntu 16.04.1 Cannot Recognize fakeRaid

2016-08-09 Thread Huang YangWen
Sorry, I'm not able to boot my PC with kernel
4.8.0-040800rc1_4.8.0-040800rc1.201608072231.

The error message is as follows:
/scripts/init-top/udev: line 14: can't create /sys/kernel/uevent_helper: 
permissions failed

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

Title:
  Kernel Shipped With Ubuntu 16.04.1 Cannot Recognize fakeRaid

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

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


[Bug 1609913] onza (i386) - tests ran: 136, failed: 0

2016-08-09 Thread Brad Figg
tests ran: 136, failed: 0;
  
http://kernel.ubuntu.com/testing/4.6.0-10.12/onza__4.6.0-10.12__2016-08-10_02-34-00/results-index.html

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

Title:
  linux: 4.6.0-10.12 -proposed tracker

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

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


[Bug 1611587] Re: package bcmwl-kernel-source 6.30.223.248+bdcom-0ubuntu2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 6

2016-08-09 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/1611587

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

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

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


[Bug 1611587] [NEW] package bcmwl-kernel-source 6.30.223.248+bdcom-0ubuntu2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 6

2016-08-09 Thread prashant
Public bug reported:

i tried to install bdcomm software from additional software updates
section

ProblemType: Package
DistroRelease: Ubuntu 15.04
Package: bcmwl-kernel-source 6.30.223.248+bdcom-0ubuntu2
ProcVersionSignature: Ubuntu 3.19.0-15.15-generic 3.19.3
Uname: Linux 3.19.0-15-generic x86_64
ApportVersion: 2.17.2-0ubuntu1
Architecture: amd64
Date: Wed Aug 10 08:16:23 2016
DuplicateSignature: 
package:bcmwl-kernel-source:6.30.223.248+bdcom-0ubuntu2:subprocess installed 
post-installation script returned error exit status 6
ErrorMessage: subprocess installed post-installation script returned error exit 
status 6
InstallationDate: Installed on 2015-09-20 (324 days ago)
InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
RelatedPackageVersions:
 dpkg 1.17.25ubuntu1
 apt  1.0.9.7ubuntu4
SourcePackage: bcmwl
Title: package bcmwl-kernel-source 6.30.223.248+bdcom-0ubuntu2 failed to 
install/upgrade: subprocess installed post-installation script returned error 
exit status 6
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package vivid

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

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

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

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


Re: [Bug 1611521] package semanticscuttle 0.98.5+dfsg-1 failed to install/upgrade: subprocess installed pre-removal script returned error exit status 1

2016-08-09 Thread rts
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1611521

Title:
  package semanticscuttle 0.98.5+dfsg-1 failed to install/upgrade:
  subprocess installed pre-removal script returned error exit status 1

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

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


[Bug 1583949] Re: Unity8 falls back to software rendering on Intel GPUs [intel_miptree_blit: Can't use hardware blitter from MESA_FORMAT_R8G8B8A8_UNORM to MESA_FORMAT_A_UNORM8, falling back. intelCopy

2016-08-09 Thread Daniel van Vugt
This is still happening on yakkety, with Intel Haswell desktop graphics.

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

Title:
  Unity8 falls back to software rendering on Intel GPUs
  [intel_miptree_blit: Can't use hardware blitter from
  MESA_FORMAT_R8G8B8A8_UNORM to MESA_FORMAT_A_UNORM8, falling back.
  intelCopyTexSubImage - fallback to swrast]

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1583949/+subscriptions

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


[Bug 1611583] Status changed to Confirmed

2016-08-09 Thread Brad Figg
This change was made by a bot.

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

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

Title:
  Trackpad isn't recognized by kernel

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

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


[Bug 1611583] Re: Trackpad isn't recognized by kernel

2016-08-09 Thread Aidan Hodge
And the last one.

** Attachment added: "Xorg.0.log"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1611583/+attachment/4717916/+files/Xorg.0.log

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

Title:
  Trackpad isn't recognized by kernel

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

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


[Bug 1611583] Re: Trackpad isn't recognized by kernel

2016-08-09 Thread Aidan Hodge
Looks like it only attached one of my files. Here is the next one.

** Attachment added: "xinput"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1611583/+attachment/4717915/+files/xinput

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

Title:
  Trackpad isn't recognized by kernel

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

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


[Bug 1611583] [NEW] Trackpad isn't recognized by kernel

2016-08-09 Thread Aidan Hodge
Public bug reported:

I just got an ASUS F556UA-AS54 laptop and of course I immediately
deleted windows and installed ubuntu ;). Everything works fine, except
that the trackpad doesn't seem to be recognized properly. I am certain
that I have the bug on this page:

https://wiki.ubuntu.com/DebuggingTouchpadDetection#In_case_Touchpad_features_like_scrolling.2C_tapping.2C_etc._do_not_work_at_all.

It works for basic functions (clicking, tracking), but I can't scroll or
do other things a trackpad should do. And, just like the page said, the
options for my trackpad are missing in the mouse and touchpad settings.
It's just the single page for the mouse. I've attached the three files
that the page asked for. Thanks in advance for any help!

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: linux-image-4.4.0-34-generic 4.4.0-34.53
ProcVersionSignature: Ubuntu 4.4.0-34.53-generic 4.4.15
Uname: Linux 4.4.0-34-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  aidan  3577 F pulseaudio
CurrentDesktop: Unity
Date: Tue Aug  9 22:34:45 2016
HibernationDevice: RESUME=UUID=f6b45d13-6efe-4691-b3b9-f96ef5f74e84
InstallationDate: Installed on 2016-08-09 (0 days ago)
InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 (20160719)
Lsusb:
 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
 Bus 001 Device 004: ID 13d3:3496 IMC Networks 
 Bus 001 Device 003: ID 0bda:57b5 Realtek Semiconductor Corp. 
 Bus 001 Device 002: ID 0bda:0129 Realtek Semiconductor Corp. RTS5129 Card 
Reader Controller
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
MachineType: ASUSTeK COMPUTER INC. X556UA
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-34-generic.efi.signed 
root=UUID=ff9e8c9c-7769-45e7-a3ec-962cd53292cf ro quiet splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-4.4.0-34-generic N/A
 linux-backports-modules-4.4.0-34-generic  N/A
 linux-firmware1.157.2
SourcePackage: linux
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 03/09/2016
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: X556UA.402
dmi.board.asset.tag: ATN12345678901234567
dmi.board.name: X556UA
dmi.board.vendor: ASUSTeK COMPUTER INC.
dmi.board.version: 1.0
dmi.chassis.asset.tag: ATN12345678901234567
dmi.chassis.type: 10
dmi.chassis.vendor: ASUSTeK COMPUTER INC.
dmi.chassis.version: 1.0
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrX556UA.402:bd03/09/2016:svnASUSTeKCOMPUTERINC.:pnX556UA:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnX556UA:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
dmi.product.name: X556UA
dmi.product.version: 1.0
dmi.sys.vendor: ASUSTeK COMPUTER INC.

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


** Tags: amd64 apport-bug xenial

** Attachment added: "devices"
   https://bugs.launchpad.net/bugs/1611583/+attachment/4717899/+files/devices

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

Title:
  Trackpad isn't recognized by kernel

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

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


[Bug 1118903] Re: [enhancement] Mir lacks a software rendering backend (and doesn't work in virtual machines)

2016-08-09 Thread Daniel van Vugt
** Changed in: mesa (Ubuntu)
   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/1118903

Title:
  [enhancement] Mir lacks a software rendering backend (and doesn't work
  in virtual machines)

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1118903/+subscriptions

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


[Bug 1609913] onibi (amd64) - tests ran: 136, failed: 0

2016-08-09 Thread Brad Figg
tests ran: 136, failed: 0;
  
http://kernel.ubuntu.com/testing/4.6.0-10.12/onibi__4.6.0-10.12__2016-08-10_01-35-00/results-index.html

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

Title:
  linux: 4.6.0-10.12 -proposed tracker

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

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


[Bug 1609913] onza (amd64) - tests ran: 136, failed: 0

2016-08-09 Thread Brad Figg
tests ran: 136, failed: 0;
  
http://kernel.ubuntu.com/testing/4.6.0-10.12/onza__4.6.0-10.12__2016-08-10_01-18-00/results-index.html

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

Title:
  linux: 4.6.0-10.12 -proposed tracker

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

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


[Bug 1543748] Re: [MIR] designate

2016-08-09 Thread Seth Arnold
I reviewed designate version 1:3.0.0~b2-0ubuntu1 as checked into Ubuntu
Yakkety. This shouldn't be considered a full security audit but rather a
quick gauge of maintainability.

- Two CVEs in our UCT database, both related to a tenant publishing
  invalid DNS data that caused other DNS services problems. The OpenStack
  security team handled the issue well.

- designate provides an API to backend storage systems for several DNS
  servers so OpenStack tenants can publish DNS data using designate's API.
  It has extremely complicated interfaces:
  - It provides a REST API for clients to use
  - It directly interacts with backend databases for a variety of DNS servers
  - It interacts with DNS servers to trigger AXFR/IXFR transfers and
verify that updates completed as anticipated
  - It supports both synchronous and asynchronous modes of operation which
introduce complicated native threading and green threading interfaces
internally.

- Build-Depends: debhelper, dh-python, dh-systemd, openstack-pkg-tools,
  python-all, python-setuptools, python-sphinx, python-babel, python-coverage,
  python-debtcollector, python-designateclient, python-dnspython,
  python-eventlet, python-fixtures, python-flask, python-greenlet,
  python-hacking, python-jinja2, python-jsonschema, python-keystonemiddleware,
  python-memcache, python-migrate, python-mock, python-netaddr,
  python-neutronclient, python-oslo.concurrency, python-oslo.config,
  python-oslo.context, python-oslo.db, python-oslo.i18n, python-oslo.log,
  python-oslo.messaging, python-oslo.middleware, python-oslo.policy,
  python-oslo.reports, python-oslo.rootwrap, python-oslo.serialization,
  python-oslo.service, python-oslo.utils, python-oslosphinx, python-oslotest,
  python-paste, python-pastedeploy, python-pbr, python-pecan,
  python-pkg-resources, python-requests, python-requests-mock, python-routes,
  python-six, python-sphinxcontrib-httpdomain, python-sqlalchemy,
  python-stevedore, python-suds, python-tempest-lib, python-testscenarios,
  python-testtools, python-tooz, python-webob, python-webtest, python-werkzeug,
  python-keystoneauth1, python-zake, subunit, testrepository,
- Usual oslo_service openstack service startup
- pre/post inst/rm look to be entirely automatically added boilerplates
- init scripts look like usual boilerplate
- No dbus service
- No setuid executables
- A handful of new binaries in the PATH:
  - designate-agent
  - designate-api
  - designate-central
  - designate-manage
  - designate-mdns
  - designate-pool-manager
  - designate-rootwrap
  - designate-sink
  - designate-zone-manager
- Includes sudo configuration:
  Defaults:designate !requiretty
  designate ALL = (root) NOPASSWD: /usr/sbin/rndc
  designate ALL = (root) NOPASSWD: /usr/bin/designate-rootwrap 
/etc/designate/rootwrap.conf *
  Note that the Ubuntu security teams does not consider rootwrap to be a
  root-hard boundary layer. rndc is also unlikely to be programmed to be
  root-hard. designate should be considered equivalent to root.
- No udev rules
- No cronjobs
- Large test suite run during build

- Processes are spawned, all using array-mechnanisms in real code, test
  code used strings
- Environment variables only explicitly used in test code
- Logging looked reasonable
- One chmod() call in one backend, looked safe
- Does not itself do cryptography
- Network input is managed via usual OpenStack middleware layers
- Extensive SQL use; most uses via sqlalchemy layer, a few direct uses of
  SQL but safe binding-based approaches were used with parameters
- I did not inspect closely enough to see if privileged portions of code
  exist
- Does not use WebKit
- Doesn't explicitly use /tmp outside of tests
- Does not use policykit


Designate is well-programmed but very ambitious and very complicated. It
builds in knowledge of several DNS servers' back-end databases as part of
its operation but I never saw mechanisms to ensure that the database
schema hasn't changed since the backend was authored. This runs the risk
that specific servers may stop working when the servers are upgraded. It
also likely forces some "lowest common denominator" aspects to the API.
(For example, I didn't see any support for DNSSEC.)

DNS is complicated enough on its own that adding a middleware layer may be
fighting against users who may rather just supply zone files or issue API
calls directly to the DNS server.

When I reported a concern, the team responded promptly.

So, I have my doubts about the overall utility of designate but see no
reason why we shouldn't support it.

Security team ACK for promoting designate to main.

Thanks


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

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

Title:
  [MIR] designate

To manage notifications about this bug go to:

[Bug 1573062] Comment bridged from LTC Bugzilla

2016-08-09 Thread bugproxy
--- Comment From balb...@au1.ibm.com 2016-07-17 21:43 EDT---
I tried the kernel at http://people.canonical.com/~kamal/lp1573062/lp1573062.1/ 
and it worked fine for me

--- Comment From balb...@au1.ibm.com 2016-07-19 01:04 EDT---
Looks like I got a failure with the run on 
http://people.canonical.com/~kamal/lp1573062/lp1573062.1/

But with my diff + 4.4.0 source from apt-source, I can always get the
the following command to succeed.

timeout -s 9 $end_time stress-ng --aggressive --verify --timeout
$runtime --brk 0

I've tried three times with my diff (all success) and twice with the
kernel @ ~kamal (one failure and one success). I've not tried the longer
7 hour run

--- Comment From balb...@au1.ibm.com 2016-07-19 01:37 EDT---
In the kern.log posted, it looks like the problem has moved to

rwsem_wake+0xcc/0x110
up_write+0x78/0x90
unlink_anon_vmas+0x15c/0x2c0

A bunch of threads are stuck on rwsem_wake -- spinning on the
sem->wait_lock. I can see a whole bunch of exiting  stress-ng-mmapf
stuck on this lock, spinning. I'll double check this. Can we get a build
with lockdep enabled? I am unable to reproduce this issue at my end with
the diff applied on my machine at the moment

--- Comment From balb...@au1.ibm.com 2016-07-19 19:51 EDT---
I am cloning the sources to debug further

--- Comment From balb...@au1.ibm.com 2016-07-19 23:52 EDT---
I cloned the kernel from 
https://git.launchpad.net/~kamalmostafa/ubuntu/+source/linux/+git/xenial/log/?h=lp1573062
 and built with the machine config specified from /boot/config. I also verified 
the diff matches my changes.

I ran

timeout -s 9 $end_time stress-ng --aggressive --verify --timeout
$runtime --brk 0

twice

Both the times, the test did the right thing. Could someone verify if

(a) The smaller subset works fine?
(b) The larger test fails, if so, can we get a run with lockdep

I was just testing for the command line above and I could see a
difference with those patches.

--- Comment From balb...@au1.ibm.com 2016-07-21 20:14 EDT---
No, the diff matches, sorry for the confusion, but here is what I said

"I also verified the diff matches my changes"

In summary, here is what I did

1. cloned the sources
2. built locally on my machine
3. Ran stress-ng with recommended parameters
4. The test succeeded, got back the console

Did four runs and I got back the console each time

However with the provided binaries

Step 3 (stress-ng) failed for me once in two runs

--- Comment From balb...@au1.ibm.com 2016-07-25 08:08 EDT---
Strange, I am able to reproduce the issue with the provided binaries, but not 
when I build it. I am not doing a deb build, but just a make -j64 with the 
config from /boot for 4.4.0-28. The problem could be at my end, but I am a 
little concerned.

I also noticed that if I am interacting with the system during runs, it
succeeds, frequently checking if the console is active (enters and
control-o-h). I am going to see if I can get a repro again and debug
further.

--- Comment From balb...@au1.ibm.com 2016-07-25 09:09 EDT---
In the meanwhile, any updates on the bisect? I was hoping we could do both 
things (RCA and bisect) in parallel

Thanks,
Balbir

--- Comment From balb...@au1.ibm.com 2016-07-25 23:37 EDT---
I've been working off the assumption that the bug was fixed in mainline :)

I tried a few runs, including 4.5
(4.5.0-040500-generic_4.5.0-040500.201605161244) and it worked for me as
well (comment #25). I presume I should stick to comment #92 and assume
that the bug is still present in mainline

--- Comment From balb...@au1.ibm.com 2016-07-31 21:17 EDT---
Does this succeed on your system? Could you please try three runs?

timeout -s 9 $end_time stress-ng --aggressive --verify --timeout
$runtime --brk 0

--- Comment From balb...@au1.ibm.com 2016-08-09 21:29 EDT---
Could the team please try the patch I posted at 
http://marc.info/?l=linux-mm=147071635030062=2? It is under discussion at 
the moment. I've tried it a few times at my end on top of the xenial git tree 
on top of the oom reaper changes. More testing in progress at my end

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

Title:
  memory_stress_ng failing for IBM Power S812LC(TN71-BP012) for 16.04

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

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


[Bug 1611185] Re: Error : Opening the cache

2016-08-09 Thread mark
E: Problem with MergeList /var/lib/dpkg/status
E: The package lists or status file could not be parsed or opened.


This is what I see in the Terminal when I try different things.
Commands to correct it ?

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

Title:
  Error : Opening the cache

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

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


[Bug 1607237] Re: Accented dead characters (áéíóú) not working on external keyboards

2016-08-09 Thread Daniel van Vugt
Minor correction: The fix is committed in yakkety proposed right now:

maliit-framework (0.99.1+git20151118+62bd54b-0ubuntu11) yakkety;
urgency=medium

But not 'released' anywhere.

** Changed in: maliit-framework (Ubuntu)
   Status: Fix Released => 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/1607237

Title:
  Accented dead characters (áéíóú) not working on external keyboards

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1607237/+subscriptions

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

[Bug 1611215] Re: linux: 4.4.0-35.54 -proposed tracker

2016-08-09 Thread Brad Figg
** Changed in: kernel-sru-workflow/prepare-package-signed
   Status: Confirmed => Fix Released

** Changed in: kernel-sru-workflow/prepare-package-signed
 Assignee: Canonical Kernel Team (canonical-kernel-team) => Stefan Bader 
(smb)

** Description changed:

  This bug is for tracking the 4.4.0-35.54 upload package. This bug will
  contain status and testing results related to that upload.
  
  For an explanation of the tasks and the associated workflow see:
  https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
- kernel-stable-phase:Packaging
- kernel-stable-phase-changed:Tuesday, 09. August 2016 07:00 UTC
- 
  -- swm properties --
  derivative-trackers-created: true
  phase: Packaging
+ kernel-stable-phase-changed:Wednesday, 10. August 2016 02:01 UTC
+ kernel-stable-phase:Uploaded

** Description changed:

  This bug is for tracking the 4.4.0-35.54 upload package. This bug will
  contain status and testing results related to that upload.
  
  For an explanation of the tasks and the associated workflow see:
  https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  
  -- swm properties --
  derivative-trackers-created: true
- phase: Packaging
- kernel-stable-phase-changed:Wednesday, 10. August 2016 02:01 UTC
- kernel-stable-phase:Uploaded
+ phase: Uploaded

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

Title:
  linux: 4.4.0-35.54 -proposed tracker

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

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


[Bug 1611250] Re: linux: 3.19.0-67.75 -proposed tracker

2016-08-09 Thread Brad Figg
** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => Fix Released

** Changed in: kernel-sru-workflow/prepare-package
 Assignee: Canonical Kernel Team (canonical-kernel-team) => Stefan Bader 
(smb)

** Changed in: kernel-sru-workflow/prepare-package-signed
   Status: Confirmed => Fix Released

** Changed in: kernel-sru-workflow/prepare-package-signed
 Assignee: Canonical Kernel Team (canonical-kernel-team) => Stefan Bader 
(smb)

** Changed in: kernel-sru-workflow/promote-to-proposed
   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/1611250

Title:
  linux: 3.19.0-67.75 -proposed tracker

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

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


[Bug 1591356] Re: keyboard autorepeat in Xmir apps & GTK-on-Mir does not work

2016-08-09 Thread Daniel van Vugt
A second more correct fix landed later in:
https://git.launchpad.net/~xmir-team/xorg-server/+git/xmir/commit/?id=f704937aa59132b612a1c4802018b86c98e620ca

But that should be included automatically in the next update too.

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

Title:
  keyboard autorepeat in Xmir apps & GTK-on-Mir does not work

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1591356/+subscriptions

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


[Bug 1506704] Re: Thin font, nautilus doesn't integrate with Unity.

2016-08-09 Thread WinEunuchs2Unix
NB This is more than a Nautilus issue because like others the Unity bar
is now clearer (before it was hard to read). Conky is now clearer.
Google chrome is noticeably clearer and scrolling is smooth when it used
to be choppy. The pixel breaks / line cracks when scrolling in Chrome
have disappeared. Should this be reclassified as a critical bug with
Linux Kernel / systemd as a whole and not just Nautilus? I had just
upgraded to Ubuntu 16.04 Kernel 4.4 then 4.6.3 when the Nautilus font
became an issue and led me to this thread. But even under Ubuntu 14.04 /
Kernel 3.13 there were problems which I'll try to recreate / eliminate
with the USB plugged in / not plugged in during boot.

As far as "3) Bluetooth Earbuds" in post #23 we must eliminate that off
the list because it's on a Y-Cable with the smartphone and only the
smartphone gets data comm + power, whereas the Earbuds are power only.

Watson the game is afoot.

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

Title:
  Thin font, nautilus doesn't integrate with Unity.

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

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


[Bug 1611281] Re: linux: 3.13.0-94.141 -proposed tracker

2016-08-09 Thread Brad Figg
** Changed in: kernel-sru-workflow/prepare-package
   Status: Confirmed => Fix Released

** Changed in: kernel-sru-workflow/prepare-package
 Assignee: Canonical Kernel Team (canonical-kernel-team) => Stefan Bader 
(smb)

** Changed in: kernel-sru-workflow/prepare-package-signed
   Status: Confirmed => Fix Released

** Changed in: kernel-sru-workflow/prepare-package-signed
 Assignee: Canonical Kernel Team (canonical-kernel-team) => Stefan Bader 
(smb)

** Changed in: kernel-sru-workflow/promote-to-proposed
   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/1611281

Title:
  linux: 3.13.0-94.141 -proposed tracker

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

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


[Bug 1504422] Re: Xmir: xrandr outputs information is lost after root window resize

2016-08-09 Thread Daniel van Vugt
** Description changed:

  [Impact]
  
- Users trying to use xrandr on Xmir will get bogus info for the root
- window after resizing it.
+ Users trying to use xrandr on Xmir will get bogus info for the attached
+ displays after resizing the root window.
  
  [Test Case]
  
  1. Start up an X application through Xmir.
  2. Type xrandr and observe output.
  3. Resize the window.
  4. Type xrandr again.
  
  Valid output should be given.
  
  [Regression Potential]
  
  None observed.
  
  
  Original Description:
  Xmir: xrandr outputs information is lost after root window resize 
(non-rootless mode)
  
  $ xrandr
  Screen 0: minimum 320 x 200, current 1920 x 1200, maximum 32767 x 32767
  VGA-0 disconnected
  DP-0 disconnected
  HDMI-0 disconnected
  DP-1 disconnected
  HDMI-1 disconnected
  DP-2 connected 1920x1200+0+0 520mm x 320mm
     1920x1200@60.0Hz  59.88*+
  DP-3 disconnected
  
  # Now I resize the root window in the Mir shell...
  
  $ xrandr
  Screen 0: minimum 320 x 200, current 1631 x 1098, maximum 32767 x 32767

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

Title:
  Xmir: xrandr outputs information is lost after root window resize

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

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

[Bug 1611579] [NEW] inconsistent text

2016-08-09 Thread Seth Arnold
Public bug reported:

Hello, a friend reports difficulties installing Ubuntu 16.04 on a UEFI
laptop with a current Windows install.

> It tells us to create a uefi boot partition, and when we create one, it
> errors out saying there are two but there can only be one. The exact
> phrasing in the error message also varies from what is available in the
> partitioning tool. The error message says "efi boot partition", the
> partitioning tool only allows "bios boot partition" and "efi system
> partition"

My friend will report back with more exact messages later.

Consistency in wording in the installer is especially important when
installing in akward situatios, such as alongside Windows.

Thanks

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

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

Title:
  inconsistent text

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

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


[Bug 1611009] Re: [SRU] New stable micro release 2.14

2016-08-09 Thread Leo Arias
Init:
✔ Run snapcraft init with an existing .snapcraft.yaml file.

Parser:
✔ Run the parser using a part defined in .snapcraft.yaml

Plugins and snaps:
✔ Build a rust snap.
✔ Build a python2 snap and check that the pyc files are removed.
✔ Build a python2 snap and check that the shebangs use env.
✔ Build a python3 snap and check that the shebangs use env.
✔ Build a snap with a oneshot daemon.
✔ Build a snap using the godeps plugin.
✔ Run the ROS example snap in xenial.
✔ Build mhall's Arduino IDE snap.
✔ Build the OS snap, check the file ownership.
✔ Build kernel snaps with debarch targets.

Autocomplete:
✔ Autocomplete with register, tour, push, release, prime, update, define, 
search.

Store:
✔ Run the integration tests using the staging store.
✔ Run the integration tests using the production store.

Exploratory:
✔ Build snaps using the go plugin.
✔ Build snaps using the dump plugin.

✗ Packaging:
* Install snapcraft in a virtualenv using the requirements files.
* Run the tests in a virtualenv using the requirements-test file.
There is still work to do here, but not a blocker for this release: bug #1611498
This is not related to the package in xenial, just affects the developer 
experience from master. The work done in this milestone gets us closer to work 
nicely in a virtualenv, which wasn't working before, so not are regression 
either.

I'm going to mark this bug as verified. Thanks Steve!

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

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

Title:
  [SRU] New stable micro release 2.14

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

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

[Bug 1611185] Re: Error : Opening the cache

2016-08-09 Thread mark
This is what I'm getting after trying to upgrade to 16.04.1 from 14.04
Looking for language to correct the situation.

** Attachment added: "Error Message"
   
https://bugs.launchpad.net/ubuntu/+source/squid3/+bug/1611185/+attachment/4717885/+files/20160808_192421.jpg

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

Title:
  Error : Opening the cache

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

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


[Bug 1574347] Re: [SRU] Re-read the link type if the name changed

2016-08-09 Thread John M
Same here Lenovo T530 Intel 6205 wifi adapter.
The work around (sudo systemctl restart network-manager.service) works for me 
most of the time. Sometimes my machine needs a reboot then a router reboot to 
reconnect. It's an old router but didn't present any issues before Ubuntu 16LTS 
install. Hopefully coincidental. Good luck!

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

Title:
  [SRU] Re-read the link type if the name changed

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

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


[Bug 1611185] Re: Error : Opening the cache

2016-08-09 Thread mark
I didn't think this was a bug in squid. Just the way it came up in the
report. Wanting to figure out this issue so I can continue with the
upgrade to 16.04.1. Any ideas ?

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

Title:
  Error : Opening the cache

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

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


[Bug 1611570] [NEW] Installing 5.2 from PPA on 14.04 removes Gnome Desktop

2016-08-09 Thread Julio Lajara
Public bug reported:

Attempting to upgrade from 5.1 to 5.2 using PPA on Ubuntu 14.04 causes
it to want to remove Gnome Desktop:

Snippet from apt-get dist-upgrade:

...
The following packages will be REMOVED:
  gnome gnome-desktop-environment libreoffice-gnome libreoffice-gtk
...

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


** Tags: 14.04 ppa trusty ubuntu

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

Title:
  Installing 5.2 from PPA on 14.04 removes Gnome Desktop

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

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


[Bug 259698] Re: pptp vpn service stops unexpectedly

2016-08-09 Thread diegotc
Has a work around found for this bug?

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

Title:
  pptp vpn service stops unexpectedly

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

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


[Bug 1611185] Re: Error : Opening the cache

2016-08-09 Thread Amos Jeffries
What make you think this is a bug in Squid?

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

Title:
  Error : Opening the cache

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

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


[Bug 1609913] onibi (i386) - tests ran: 20, failed: 3

2016-08-09 Thread Brad Figg
tests ran:  20, failed: 3;
  
http://kernel.ubuntu.com/testing/4.6.0-10.12/onibi__4.6.0-10.12__2016-08-09_23-48-00/results-index.html

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

Title:
  linux: 4.6.0-10.12 -proposed tracker

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

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


[Bug 1609913] onza (amd64) - tests ran: 20, failed: 2

2016-08-09 Thread Brad Figg
tests ran:  20, failed: 2;
  
http://kernel.ubuntu.com/testing/4.6.0-10.12/onza__4.6.0-10.12__2016-08-09_23-30-00/results-index.html

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

Title:
  linux: 4.6.0-10.12 -proposed tracker

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

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


[Bug 1610767] Re: ftbfs with gcc 6

2016-08-09 Thread Launchpad Bug Tracker
This bug was fixed in the package juju-mongodb3.2 - 3.2.8-0ubuntu3

---
juju-mongodb3.2 (3.2.8-0ubuntu3) yakkety; urgency=medium

  * Fix ftbfs: (LP: #1610767):
- Add d/patches/gcc6-ftbfs.patch to fix 2 warnings and 1 error.
- Add d/patches/SERVER-16221-SERVER-23712-Aggregation-unit-tests-sho.patch,
  backported from master.

 -- Michael Hudson-Doyle   Mon, 08 Aug 2016
13:41:08 +1200

** Changed in: juju-mongodb3.2 (Ubuntu)
   Status: New => Fix Released

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

Title:
  ftbfs with gcc 6

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/juju-mongodb3.2/+bug/1610767/+subscriptions

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


[Bug 1506704] Re: Thin font, nautilus doesn't integrate with Unity.

2016-08-09 Thread WinEunuchs2Unix
Can confirm now that simply unplugging the USB powered hub and rebooting
fixes the Nautilus 1 pixel font problem. Another problem where the
built-in display was black and only the TV got wallpaper was also fixed.
Plugging the USB hub in after boot did not break Nautilus fonts.

On the hub are:

1) UPS battery status monitor
2) Smartphone
3) Blue tooth ear buds
4) Laser Printer
5) Couple of spare cables

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

Title:
  Thin font, nautilus doesn't integrate with Unity.

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

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


[Bug 1605903] Re: "type: os" should prevent stage and prime stages from mangling content

2016-08-09 Thread Sergio Schvezov
** Changed in: snapcraft
   Status: Fix Committed => Fix Released

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

Title:
  "type: os" should prevent stage and prime stages from mangling content

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

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


[Bug 1506704] Re: Thin font, nautilus doesn't integrate with Unity.

2016-08-09 Thread WinEunuchs2Unix
Unfortunately the solution in #21 is not permanent and you have to
repeat it after reboot. More investigation is needed.

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

Title:
  Thin font, nautilus doesn't integrate with Unity.

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

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


[Bug 1611564] [NEW] ddclient debconf settings don't allow namecheap protocol

2016-08-09 Thread Jonathan Kamens
Public bug reported:

"namecheap" is a valid protocol to specify in the ddclient configuration
file, but the debconf templates for the ddclient package don't allow it
to be selected.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: ddclient 3.8.2-2ubuntu2
ProcVersionSignature: Ubuntu 4.4.0-34.53-generic 4.4.15
Uname: Linux 4.4.0-34-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
CurrentDesktop: Unity
Date: Tue Aug  9 20:16:07 2016
InstallationDate: Installed on 2016-08-09 (0 days ago)
InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 (20160719)
PackageArchitecture: all
SourcePackage: ddclient
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug xenial

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

Title:
  ddclient debconf settings don't allow namecheap protocol

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

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


[Bug 1506704] Re: Thin font, nautilus doesn't integrate with Unity.

2016-08-09 Thread WinEunuchs2Unix
I had same problems with Nautilus. Something to do with MS ttf fonts.
The solution for me was to open terminal and type:

fc-cache -rv

Then log out and log back in.

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

Title:
  Thin font, nautilus doesn't integrate with Unity.

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

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


[Bug 1611563] [NEW] /usr/sbin/lightdm:11:greeter_set_hint:switch_to_greeter_from_failed_session:_g_closure_invoke_va:g_signal_emit_valist:g_signal_emit

2016-08-09 Thread errors.ubuntu.com bug bridge
Public bug reported:

The Ubuntu Error Tracker has been receiving reports about a problem
regarding lightdm.  This problem was most recently seen with version
1.18.1-0ubuntu1, the problem page at
https://errors.ubuntu.com/problem/af154bdb2fb23373ca64a7402c3ea9accf7c476d
contains more details.

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


** Tags: trusty vivid xenial

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

Title:
  
/usr/sbin/lightdm:11:greeter_set_hint:switch_to_greeter_from_failed_session:_g_closure_invoke_va:g_signal_emit_valist:g_signal_emit

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

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


[Bug 1611162] Re: 16.04.1 LTS: using "screen lock" requires reboot to use computer

2016-08-09 Thread Promptjock
OK, after some more "rooting around" @ the Ubuntu site
(https://wiki.ubuntu.com/Bugs/FindRightPackage#Finding_the_Package_Name),
I (finally) found the page with the information pertaining to my
problem:
https://wiki.ubuntu.com/DebuggingScreenLocking/HowScreenLockingWorks.  I
sincerely apologize for the "wasted bandwidth"

** Package changed: ubuntu => gnome-screensaver (Ubuntu)

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

Title:
  16.04.1 LTS: using "screen lock" requires reboot to use computer

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

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


[Bug 1610778] Re: please remove this package from yakkety

2016-08-09 Thread Michael Hudson-Doyle
The package needs to be removed from -proposed too.

** Changed in: juju-mongodb2.6 (Ubuntu)
   Status: Fix Released => In Progress

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

Title:
  please remove this package from yakkety

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/juju-mongodb2.6/+bug/1610778/+subscriptions

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


[Bug 1611162] Re: 16.04.1 LTS: using "screen lock" requires reboot to use computer

2016-08-09 Thread Promptjock
Regarding the "package" information: I believe the "package" is the
64-bit "AMD64" version of Ubuntu 16.04.1LTS.  As I've already related,
this update occurred via the "Software Update" feature of the 14.04LTS
installation I had when it informed me that "ver. 16.04 was available".

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

Title:
  16.04.1 LTS: using "screen lock" requires reboot to use computer

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

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


[Bug 1609913] dwalin (amd64) - tests ran: 136, failed: 0

2016-08-09 Thread Brad Figg
tests ran: 136, failed: 0;
  
http://kernel.ubuntu.com/testing/4.6.0-10.12/dwalin__4.6.0-10.12__2016-08-09_23-08-00/results-index.html

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

Title:
  linux: 4.6.0-10.12 -proposed tracker

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

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


[Bug 1611198] Re: [needs-packaging] libgames-support

2016-08-09 Thread Brian Murray
*** This is an automated message ***

This bug is tagged needs-packaging which identifies it as a request for
a new package in Ubuntu.  As a part of the managing needs-packaging bug
reports specification,
https://wiki.ubuntu.com/QATeam/Specs/NeedsPackagingBugs, all needs-
packaging bug reports have Wishlist importance.  Subsequently, I'm
setting this bug's status to Wishlist.

** Changed in: gnome-nibbles (Ubuntu)
   Importance: Undecided => Wishlist

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

Title:
  [needs-packaging] libgames-support

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

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


[Bug 1611198] Re: [needs-packaging] libgames-support

2016-08-09 Thread Brian Murray
*** This is an automated message ***

This bug is tagged needs-packaging which identifies it as a request for
a new package in Ubuntu.  As a part of the managing needs-packaging bug
reports specification,
https://wiki.ubuntu.com/QATeam/Specs/NeedsPackagingBugs, all needs-
packaging bug reports have Wishlist importance.  Subsequently, I'm
setting this bug's status to Wishlist.

** Changed in: gnome-robots (Ubuntu)
   Importance: Undecided => Wishlist

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

Title:
  [needs-packaging] libgames-support

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

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


[Bug 1579834] Re: update-apt-xapian-index-dbus fails because of wrong import

2016-08-09 Thread Brian Murray
I've uploaded your changes to the Xenial proposed queue for review by
the SRU team, but changed the version number to 0.47ubuntu8.2 since we'd
already used 0.47ubuntu8.1.

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

Title:
  update-apt-xapian-index-dbus fails because of wrong import

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

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


[Bug 1611552] Status changed to Confirmed

2016-08-09 Thread Brad Figg
This change was made by a bot.

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

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

Title:
  package linux-image-4.4.0-34-generic 4.4.0-34.53 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 2

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

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


[Bug 1611194] Re: Update to 3.20.1

2016-08-09 Thread Jeremy Bicha
** Description changed:

  Needed for gnome-control-center 3.20, bug 1611195
- As of today, it's blocked by the PackageKit 1.0 transition.
+ 
+ It will be stuck in -proposed until the PackageKit 1.0 transition
+ completes (and Qt 5.6 and libwebp6).
+ 
+ The only flavor that uses the gnome-settings-daemon binary package
+ itself these days is Ubuntu GNOME.
+ 
+ The gnome-settings-daemon-schemas package is used by more flavors but it
+ should be the same as 3.18 since darkxst patched back in the one dropped
+ schema this cyle.

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

Title:
  Update to 3.20.1

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

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


[Bug 1611194] Re: Update to 3.20.1

2016-08-09 Thread Launchpad Bug Tracker
** Branch linked: lp:~jbicha/gnome-settings-daemon/update-to-320

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

Title:
  Update to 3.20.1

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

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


[Bug 513644] Re: Does not log fsck invocations in /var/log/fsck/

2016-08-09 Thread solipso
I'm sorry, guys, but this sucks. Critical bug unsolved for six years -
the responsible person should get spanked bare bottom.

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

Title:
  Does not log fsck invocations in /var/log/fsck/

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

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


[Bug 1611550] [NEW] package systemd 229-4ubuntu7 failed to install/upgrade: subprocess installed pre-removal script returned error exit status 2

2016-08-09 Thread Doug Baltz
Public bug reported:

no idea what happened

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: systemd 229-4ubuntu7
ProcVersionSignature: Ubuntu 4.4.0-31.50-generic 4.4.13
Uname: Linux 4.4.0-31-generic i686
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: i386
Date: Wed Aug  3 21:32:19 2016
DuplicateSignature:
 package:systemd:229-4ubuntu7
 De-configuring udev (225-1ubuntu9.1) ...
 dpkg: error processing archive 
/var/cache/apt/archives/systemd_229-4ubuntu7_i386.deb (--unpack):
  subprocess installed pre-removal script returned error exit status 2
ErrorMessage: subprocess installed pre-removal script returned error exit 
status 2
InstallationDate: Installed on 2016-02-29 (162 days ago)
InstallationMedia: Ubuntu-MATE 15.04 "Vivid Vervet" - Release i386 (20150422.1)
Lsusb:
 Bus 001 Device 002: ID 0480:a006 Toshiba America Inc External Disk 1.5TB
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
 Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
 Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
 Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
MachineType: Dell Computer Corporation Dimension 3000
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-31-generic 
root=UUID=b87afe84-ca98-4ff9-a03f-a86cb49c0c49 ro quiet splash vt.handoff=7
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.1
 apt  1.2.12~ubuntu16.04.1
SourcePackage: systemd
SystemdDelta:
 [EXTENDED]   /lib/systemd/system/systemd-timesyncd.service → 
/lib/systemd/system/systemd-timesyncd.service.d/disable-with-time-daemon.conf
 [EXTENDED]   /lib/systemd/system/rc-local.service → 
/lib/systemd/system/rc-local.service.d/debian.conf
 
 2 overridden configuration files found.
Title: package systemd 229-4ubuntu7 failed to install/upgrade: subprocess 
installed pre-removal script returned error exit status 2
UpgradeStatus: Upgraded to xenial on 2016-08-04 (5 days ago)
dmi.bios.date: 08/24/2004
dmi.bios.vendor: Dell Computer Corporation
dmi.bios.version: A01
dmi.board.name: 0N6381
dmi.board.vendor: Dell Computer Corp.
dmi.chassis.type: 6
dmi.chassis.vendor: Dell Computer Corporation
dmi.modalias: 
dmi:bvnDellComputerCorporation:bvrA01:bd08/24/2004:svnDellComputerCorporation:pnDimension3000:pvr:rvnDellComputerCorp.:rn0N6381:rvr:cvnDellComputerCorporation:ct6:cvr:
dmi.product.name: Dimension 3000
dmi.sys.vendor: Dell Computer Corporation

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


** Tags: apport-package i386 xenial

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

Title:
  package systemd 229-4ubuntu7 failed to install/upgrade: subprocess
  installed pre-removal script returned error exit status 2

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

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

[Bug 1611552] Re: package linux-image-4.4.0-34-generic 4.4.0-34.53 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2016-08-09 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/1611552

Title:
  package linux-image-4.4.0-34-generic 4.4.0-34.53 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 2

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

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


[Bug 1611552] [NEW] package linux-image-4.4.0-34-generic 4.4.0-34.53 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2016-08-09 Thread Shane Synan
Public bug reported:

This error occurred when installing the most recent round of updates.

Running 'sudo dpkg -i /var/cache/apt/archives/linux-
image-4.4.0-34-generic_4.4.0-34.53_amd64.deb' then 'sudo apt-get install
-f' seemed to fix the problem.

Perhaps the installation of the kernel was somehow interrupted?  During
installation I opened the System76 driver, but nothing else happened, no
system crash, etc.

(As this was generated by Apport, I'm assuming the necessary debug
information is attached)

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: linux-image-4.4.0-34-generic 4.4.0-34.53
ProcVersionSignature: Ubuntu 4.4.0-31.50-generic 4.4.13
Uname: Linux 4.4.0-31-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/pcmC0D0p:   sly3747 F...m pulseaudio
 /dev/snd/controlC0:  sly3747 F pulseaudio
 /dev/snd/controlC1:  sly3747 F pulseaudio
Date: Tue Aug  9 19:09:10 2016
DuplicateSignature:
 package:linux-image-4.4.0-34-generic:4.4.0-34.53
 Setting up linux-image-4.4.0-34-generic (4.4.0-34.53) ...
 Internal Error: Could not find image (/boot/vmlinuz-4.4.0-34-generic)
 dpkg: error processing package linux-image-4.4.0-34-generic (--configure):
  subprocess installed post-installation script returned error exit status 2
ErrorMessage: subprocess installed post-installation script returned error exit 
status 2
HibernationDevice: RESUME=UUID=c4490ff3-1d2a-4a7b-aa3d-fbdcc9bac94c
InstallationDate: Installed on 2016-07-06 (34 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1)
Lsusb:
 Bus 002 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub
 Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
 Bus 001 Device 003: ID 0c45:6416 Microdia 
 Bus 001 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
MachineType: Dell Inc. Studio 1558
ProcFB: 0 radeondrmfb
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.4.0-31-generic 
root=/dev/mapper/system_ssd-root ro rootflags=subvol=@ quiet splash vt.handoff=7
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
RelatedPackageVersions: grub-pc 2.02~beta2-36ubuntu3.2
RfKill:
 0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
SourcePackage: linux
Title: package linux-image-4.4.0-34-generic 4.4.0-34.53 failed to 
install/upgrade: subprocess installed post-installation script returned error 
exit status 2
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 03/30/2011
dmi.bios.vendor: Dell Inc.
dmi.bios.version: A12
dmi.board.name: 345678
dmi.board.vendor: Dell Inc.
dmi.board.version: A12
dmi.chassis.type: 8
dmi.chassis.vendor: Dell Inc.
dmi.chassis.version: A12
dmi.modalias: 
dmi:bvnDellInc.:bvrA12:bd03/30/2011:svnDellInc.:pnStudio1558:pvrA12:rvnDellInc.:rn345678:rvrA12:cvnDellInc.:ct8:cvrA12:
dmi.product.name: Studio 1558
dmi.product.version: A12
dmi.sys.vendor: Dell Inc.

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

Title:
  package linux-image-4.4.0-34-generic 4.4.0-34.53 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 2

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

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


[Bug 1611550] Re: package systemd 229-4ubuntu7 failed to install/upgrade: subprocess installed pre-removal script returned error exit status 2

2016-08-09 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/1611550

Title:
  package systemd 229-4ubuntu7 failed to install/upgrade: subprocess
  installed pre-removal script returned error exit status 2

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

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


[Bug 1553178] Re: perf: POWER8: Allow specifying Power PMU events by name rather than raw codes

2016-08-09 Thread bugproxy
** Tags removed: targetmilestone-inin1610
** Tags added: targetmilestone-inin1704

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

Title:
  perf: POWER8: Allow specifying Power PMU events by name rather than
  raw codes

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

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


[Bug 1611545] [NEW] CIFS storage pool fails to mount - bad UNC

2016-08-09 Thread Ofer Bezalel
Public bug reported:

In ubuntu 14.04 LTS (Linux hio-converged 4.2.0-42-generic
#49~14.04.1-Ubuntu SMP Wed Jun 29 20:22:11 UTC 2016 x86_64 x86_64 x86_64
GNU/Linux)

libvirt version: 1.2.2

using the following xml to define a storage pool (netfs-cifs.xml):

  netfs-cifs
  



  
  
/tmp/cifs
  


I define the pool (virsh pool-define netfs-cifs.xml), build (virsh pool-
build netfs-cifs) and then start it (virsh pool-start netfs-cifs)

results in the following error:
error: Failed to start pool netfs-cifs
error: internal error: Child process (/bin/mount -t cifs 192.168.1.2:Video 
/tmp/cifs) unexpected exit status 1: mount.cifs: bad UNC (192.168.1.2:Video)

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


** Tags: cifs storage-pools

** Description changed:

+ In ubuntu 14.04 LTS (Linux hio-converged 4.2.0-42-generic
+ #49~14.04.1-Ubuntu SMP Wed Jun 29 20:22:11 UTC 2016 x86_64 x86_64 x86_64
+ GNU/Linux)
+ 
+ libvirt version: 1.2.2
+ 
  using the following xml to define a storage pool (netfs-cifs.xml):
  
-   netfs-cifs
-   
- 
- 
- 
-   
-   
- /tmp/cifs
-   
+   netfs-cifs
+   
+ 
+ 
+ 
+   
+   
+ /tmp/cifs
+   
  
  
  I define the pool (virsh pool-define netfs-cifs.xml), build (virsh pool-
  build netfs-cifs) and then start it (virsh pool-start netfs-cifs)
  
  results in the following error:
  error: Failed to start pool netfs-cifs
  error: internal error: Child process (/bin/mount -t cifs 192.168.1.2:Video 
/tmp/cifs) unexpected exit status 1: mount.cifs: bad UNC (192.168.1.2:Video)

** Bug watch added: Red Hat Bugzilla #1186969
   https://bugzilla.redhat.com/show_bug.cgi?id=1186969

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

Title:
  CIFS storage pool fails to mount - bad UNC

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

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

[Bug 1611545] Re: CIFS storage pool fails to mount - bad UNC

2016-08-09 Thread Ofer Bezalel
Found this... https://bugzilla.redhat.com/show_bug.cgi?id=1186969 I
guess that answers my question - resolved in 1.2.17

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

Title:
  CIFS storage pool fails to mount - bad UNC

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

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


[Bug 1609913] onibi (amd64) - tests ran: 32, failed: 1

2016-08-09 Thread Brad Figg
tests ran:  32, failed: 1;
  
http://kernel.ubuntu.com/testing/4.6.0-10.12/onibi__4.6.0-10.12__2016-08-09_22-12-00/results-index.html

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

Title:
  linux: 4.6.0-10.12 -proposed tracker

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

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


Re: [Bug 1565658] Re: Upgrade to 1.1.1 that was released in March 2016

2016-08-09 Thread Luke Yelavich
Yakkety has 1.1.2 for utils and lib now.

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

Title:
  Upgrade to 1.1.2 that was released in August 2016

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-lib/+bug/1565658/+subscriptions

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


[Bug 1610434] Re: Ubuntu GNOME Trusty HWE upgrade fails to install libwayland-egl1-mesa-lts-xenial

2016-08-09 Thread Brian Murray
I've recreated the situation described in the bug description by
installing a virtual machine with Ubuntu Gnome 14.04.2 and using 'hwe-
support-status --show-replacements' to determine packages to upgrade I
ended up with a system that booted without X.  The file
/var/log/gdm/:0-greeter.log seems to contain information about the
problem.

** (gnome-settings-daemon:1161): WARNING **: Error activating plugin 
'Background'
gnome-shell: error while loading shared libraries: libwayland-egl.so.1: cannot 
open shared object file: No such file or directory

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

Title:
  Ubuntu GNOME Trusty HWE upgrade fails to install libwayland-egl1-mesa-
  lts-xenial

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

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


[Bug 1611536] Status changed to Confirmed

2016-08-09 Thread Brad Figg
This change was made by a bot.

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

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

Title:
  Fan on full speed without noapic or nolapic on HP 6715s

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

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


[Bug 1574020] Re: Can't use networkmanager from lightdm

2016-08-09 Thread Joakim Koed
TenLeftFingers just turn it on? It's right in the settings.

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

Title:
  Can't use networkmanager from lightdm

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

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


[Bug 1611532] Status changed to Confirmed

2016-08-09 Thread Brad Figg
This change was made by a bot.

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

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

Title:
  bluetooth USB dongle CSR8510 causes system freeze

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

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


[Bug 1611532] Re: bluetooth USB dongle CSR8510 causes system freeze

2016-08-09 Thread Bernd Porr
bp1@bp1-ThinkPad-X220:~/sandbox/rfcomm$ ./btscan 
00:1F:CC:F4:25:E1  SGH-J700
00:06:66:7D:A9:D3  GN-ATTYS
bp1@bp1-ThinkPad-X220:~/sandbox/rfcomm$ ./btscan 
00:06:66:7D:A9:D3  [unknown]
00:1F:CC:F4:25:E1  SGH-J700
bp1@bp1-ThinkPad-X220:~/sandbox/rfcomm$ 
-


** Attachment added: "Test program, adapted from the bluez tutorial pages."
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1611532/+attachment/4717847/+files/rfcomm.tar.gz

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

Title:
  bluetooth USB dongle CSR8510 causes system freeze

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

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


[Bug 1551937] Re: lvm and multipath and xenial not happy together

2016-08-09 Thread Felipe Reyes
Andres, it seems you forgot to change the tag to verification-done.

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

Title:
  lvm and multipath and xenial not happy together

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

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


[Bug 862662] Re: No startup notification when launching applications

2016-08-09 Thread Usuarioh Redeh
Not fixed on Debian/Ubuntu 16.04.1 or any of its spin-offs (likeLXLE
16.04.1) using LXDE+openbox, "Startup Notification" doesn't work! If
could help, FEDORA 24 LXDE+openbox has a fully functional working
"Startup Notification", but uses LXDM instead of Lightdm.

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

Title:
  No startup notification when launching applications

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

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


[Bug 1609913] onza (amd64) - tests ran: 35, failed: 4

2016-08-09 Thread Brad Figg
tests ran:  35, failed: 4;
  
http://kernel.ubuntu.com/testing/4.6.0-10.12/onza__4.6.0-10.12__2016-08-09_21-36-00/results-index.html

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

Title:
  linux: 4.6.0-10.12 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-development-workflow/+bug/1609913/+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   >