[Bug 1502302] Status changed to Confirmed

2015-10-02 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/1502302

Title:
  general protection fault:  [#1] SMP

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

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


[Bug 1502010] Re: Sync 25.3.12-2 from Debian testing

2015-10-02 Thread Hans Joachim Desserud
** Tags added: 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/1502010

Title:
  Sync 25.3.12-2 from Debian testing

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

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


[Bug 1501015] Comment bridged from LTC Bugzilla

2015-10-02 Thread bugproxy
--- Comment From mauri...@br.ibm.com 2015-10-02 19:57 EDT---
There's a different function path that's relevant here.
It seems the previous one only effects a config or something.
(I couldn't verify at install time w/ gdb yet, but per the call to 'nvram', 
it's likely to be correct now.)

The analysis points to ofpathname called w/ a /dev/mapper/mpathX path, which it 
can't work with.
So, the options are still handling this in either grub-installer or grub2.

It should be simpler to handle errors in grub-installer rather than grub2
(even accounting for checks of working/online paths, retries in case of errors, 
etc).

Function path and comments:
---

The boot device settings are modified here:

main()
@ grub-install.c
...
dev = grub_util_get_os_disk (install_device);
grub_install_register_ieee1275 (0, dev, partno,
"BootX");
...
grub_install_register_ieee1275 (1, grub_util_get_os_disk (install_device),
0, NULL);
...

There are 2 relevant functions:
- grub_install_register_ieee1275()
- grub_util_get_os_disk()

First,

grub_install_register_ieee1275()
@ grub-core/osdep/unix/platform.c

char *boot_device;
...
ofpath = get_ofpathname (install_device);
...
ptr = grub_stpcpy (boot_device, ofpath);
...
boot_device = get_ofpathname (install_device);
...
if (strcmp (grub_install_get_default_powerpc_machtype (), "chrp_ibm") == 0)
{
char *arg = xasprintf ("boot-device=%s", boot_device);
if (grub_util_exec ((const char * []){ "nvram",
"--update-config", arg, NULL }))
...

which runs 'nvram --update-config boot-device=' with the value printed
by 'ofpathname' for that device.

get_ofpathname()
@ grub-core/osdep/unix/platform.c
...
pid = grub_util_exec_pipe ((const char * []){ "ofpathname", dev, NULL }, );
...

Second, 'that device' is obtained by:

grub_util_get_os_disk
@ util/getroot.c
...
return convert_system_partition_to_system_disk (os_dev, _part);
...

convert_system_partition_to_system_disk()
@ util/getroot.c
...
if (grub_util_device_is_mapped_stat ())
return grub_util_devmapper_part_to_disk (, is_part, os_dev);
...

grub_util_devmapper_part_to_disk()
@ grub-core/osdep/devmapper/getroot.c
...
if (grub_util_get_dm_node_linear_info (st->st_rdev,
, , 0))
{
*is_part = 1;
return grub_find_device ("/dev",
(major << 8) | minor);
}
*is_part = 0;
return xstrdup (path);

But grub_util_get_dm_node_linear_info() doesn't understand mpath/LVM devmapper 
targets, only linear.
If it's linear, then it sets major and minor.

grub_util_get_dm_node_linear_info()
@ grub-core/osdep/devmapper/hostdisk.c
...
if (node_uuid && (strncmp (node_uuid, "LVM-", 4) == 0
|| strncmp (node_uuid, "mpath-", 6) == 0))
{
dm_task_destroy (dmt);
break;
}
...
if (grub_strcmp (target, "linear") != 0)
{
dm_task_destroy (dmt);
break;
}
...
major = grub_strtoul (params, , 10);
...
minor = grub_strtoul (ptr, , 10);

Otherwise, later on:
return 1;

Which makes grub_util_devmapper_part_to_disk() not to call grub_find_device(),
returning the same path it received.

This path is not understandable by ofpathname, so nvram probably ends up
updating something incorrectly.

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

Title:
  ISST-LTE: Multipath disk is not automatically set as 1st boot device
  after installation

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

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


[Bug 1460226] Re: Caffeine can't connect to display since Ubuntu 15.04 upgrade

2015-10-02 Thread kay
*** This bug is a duplicate of bug 1482844 ***
https://bugs.launchpad.net/bugs/1482844

rm .Xauthority and relogin has solved the issue.

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

Title:
  Caffeine can't connect to display since Ubuntu 15.04 upgrade

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

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


[Bug 1482844] Re: Caffeine can't connect to display since updating Trusty to Vivid kernel and X (HWE)

2015-10-02 Thread kay
rm .Xauthority and relogin has solved the issue. used
python3-xlib_0.14+20091101-1ubuntu3_all.deb

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

Title:
  Caffeine can't connect to display since updating Trusty to Vivid
  kernel and X (HWE)

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

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


[Bug 1501491] Re: Unable to start containers after upgrade to 1.0.7-0ubuntu0.6 on trusty

2015-10-02 Thread Tyler Hicks
The Ubuntu Security Team has produced some packages built with the
proposed fix from Serge (thanks again, Serge!). They have not been
tested by the Security Team yet but those affected by this bug may find
the packages useful. They can be found in:

  https://launchpad.net/~ubuntu-security-
proposed/+archive/ubuntu/ppa/+packages

IMPORTANT: You should not add this PPA to your apt sources.list file.
Please only pull down the specific binary packages. The Security Team
uploads experimental packages to this PPA and we cannot provide any
guarantees regarding the contents of this PPA.

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

Title:
  Unable to start containers after upgrade to 1.0.7-0ubuntu0.6 on trusty

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

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


[Bug 1501491] Re: Unable to start containers after upgrade to 1.0.7-0ubuntu0.6 on trusty

2015-10-02 Thread Tyler Hicks
The Ubuntu Security Team has produced some packages built with the
proposed fix from Serge (thanks again, Serge!). They have not been
tested by the Security Team yet but those affected by this bug may find
the packages useful. They can be found in:

  https://launchpad.net/~ubuntu-security-
proposed/+archive/ubuntu/ppa/+packages

IMPORTANT: You should not add this PPA to your apt sources.list file.
Please only pull down the specific binary packages. The Security Team
uploads experimental packages to this PPA and we cannot provide any
guarantees regarding the contents of this PPA.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to lxc in Ubuntu.
https://bugs.launchpad.net/bugs/1501491

Title:
  Unable to start containers after upgrade to 1.0.7-0ubuntu0.6 on trusty

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1243932] Re: aa-logprof: Log contains unknown mode senw

2015-10-02 Thread Rune Philosof
It would be nice if patches that are backported to trusty are also backported 
to 15.04. I upgraded to 15.04 to enjoy newer features.
I was expecting to only see new bugs related to those newer features that I 
chose to upgrade to, not expecting patches that made it to 14.04 didn't make it 
to 15.04.
Like this one and Bug #1399027.

Since 15.10 is expected near the end of the month I am not really expecting 
this to get into 15.04 now.
In the future it would be nice if SRU meant fixing both the LTS and the current 
stable Ubuntu release.

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

Title:
  aa-logprof:  Log contains unknown mode senw

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

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


[Bug 1473680] Re: Please update Ninja from Debian

2015-10-02 Thread Hans Joachim Desserud
Timo: Oh. I thought it had already landed and that a rebuild of oxide
would now fail. Sorry about that.

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

Title:
  Please update Ninja from Debian

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ninja-build/+bug/1473680/+subscriptions

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


[Bug 1501772] Re: Metadata proxy process errors with binary user_data

2015-10-02 Thread OpenStack Infra
Reviewed:  https://review.openstack.org/230513
Committed: 
https://git.openstack.org/cgit/openstack/neutron/commit/?id=13b6d76da361178ea0b84baf4831a4c7f53e29c7
Submitter: Jenkins
Branch:stable/liberty

commit 13b6d76da361178ea0b84baf4831a4c7f53e29c7
Author: Ihar Hrachyshka 
Date:   Thu Oct 1 17:13:25 2015 +0200

metadata: don't crash proxy on non-unicode user data

We attempt to log every successful metadata response with LOG.debug. But
as per oslo.log docs [1], we should make sure that what we pass into the
library is unicode.

Http.request returns a tuple of Response object and a string, which is
bytes in Python 2.x [2].

That's why we need to convert the response content to unicode before
passing it into oslo.log.

To achieve it, we utilize encodeutils.safe_decode with 'replace' errors
handling strategy, so that we don't get exceptions on input that does
not conform unicode.

For the unit test case, we pass a string that is not expected to convert
to unicode with errors='strict' strategy or similar, and check that we
still don't crash.

While at it, we remove a check for the number of log calls being
triggered, because it's something that we should avoid validating in
test cases, and it cannot trigger a real bug. The mock that was used to
count the number would also hide the bug that we try to reproduce.

Note that the bug does not require debug to be set because the crash
occurs before oslo.log machinery decides it should not log the message.

[1]: 
http://docs.openstack.org/developer/oslo.log/usage.html#no-more-implicit-conversion-to-unicode-str
[2]: 
http://bitworking.org/projects/httplib2/doc/html/libhttplib2.html#httplib2.Http.request

Closes-Bug: #1501772
Change-Id: I6a32c40ff117fae43913386134c8981539697ce8
(cherry picked from commit 80e3d9be4923ecad17377b1d15c8392b8a43dac6)


** Tags added: in-stable-liberty

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to neutron in Ubuntu.
https://bugs.launchpad.net/bugs/1501772

Title:
  Metadata proxy process errors with binary user_data

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1472903] Re: Camera flash black screen one time after open camera app.

2015-10-02 Thread Launchpad Bug Tracker
** Branch linked: lp:~fboucault/camera-app/startup_black_flash_fix

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

Title:
  Camera flash black screen one time after open camera app.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/camera-app/+bug/1472903/+subscriptions

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


[Bug 1501966] Re: support changing Apparmor hats

2015-10-02 Thread Seth Arnold
~ubuntu-reviewers, the patch posted here is intended to sketch what a
new patch for this feature may look like and is not intended to be used
as-is in any capacity. Feel free to unsub from this bug.

Thanks

** Tags removed: patch

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in Ubuntu.
https://bugs.launchpad.net/bugs/1501966

Title:
  support changing Apparmor hats

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1502279] [NEW] package libreoffice-common (not installed) failed to install/upgrade: tentative de remplacement de « /usr/bin/soffice », qui appartient aussi au paquet openoffice-debian-menus 4.1.

2015-10-02 Thread boulas
Public bug reported:

installation commune de open-office et de libre-office

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: libreoffice-common (not installed)
ProcVersionSignature: Ubuntu 3.2.0-91.129-generic-pae 3.2.71
Uname: Linux 3.2.0-91-generic-pae i686
NonfreeKernelModules: nvidia
ApportVersion: 2.0.1-0ubuntu17.11
Architecture: i386
Date: Fri Oct  2 18:38:46 2015
DuplicateSignature: package:libreoffice-common:(not installed):tentative de 
remplacement de « /usr/bin/soffice », qui appartient aussi au paquet 
openoffice-debian-menus 4.1.1-9775
ErrorMessage: tentative de remplacement de « /usr/bin/soffice », qui appartient 
aussi au paquet openoffice-debian-menus 4.1.1-9775
InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Release i386 (20120423)
MarkForUpload: True
SourcePackage: libreoffice
Title: package libreoffice-common (not installed) failed to install/upgrade: 
tentative de remplacement de « /usr/bin/soffice », qui appartient aussi au 
paquet openoffice-debian-menus 4.1.1-9775
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: apport-package i386 precise

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

Title:
  package libreoffice-common (not installed) failed to install/upgrade:
  tentative de remplacement de « /usr/bin/soffice », qui appartient
  aussi au paquet openoffice-debian-menus 4.1.1-9775

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

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

[Bug 1451170] Re: [ ASUS N550LF , Realtek ALC668, Speaker, Internal] To much sound

2015-10-02 Thread dubis
Hi Raymond,

My laptop doesn't have any optical SPDIF.
I don't have any idea which file I 've to modify and how to do that if I need 
lauch any script.
Is it ? 
/etc/pulse/daemon.conf 
 or which file?

Thanks

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

Title:
  [ ASUS N550LF , Realtek ALC668, Speaker, Internal] To much sound

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

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


[Bug 1498791] Re: new Chromium 45 has broken UI on Trusty

2015-10-02 Thread kay
Have found discussion at chromium:
https://code.google.com/p/chromium/issues/detail?id=531020

Running chromium with "--disable-gpu" has solved the problem.

** Bug watch added: code.google.com/p/chromium/issues #531020
   http://code.google.com/p/chromium/issues/detail?id=531020

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

Title:
  new Chromium 45 has broken UI on Trusty

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

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


[Bug 1472903] Re: Camera flash black screen one time after open camera app.

2015-10-02 Thread Florian Boucault
** Changed in: camera-app (Ubuntu)
   Importance: Undecided => High

** Changed in: camera-app (Ubuntu)
 Assignee: (unassigned) => Florian Boucault (fboucault)

** Changed in: camera-app (Ubuntu)
   Status: Confirmed => 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/1472903

Title:
  Camera flash black screen one time after open camera app.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/camera-app/+bug/1472903/+subscriptions

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


[Bug 1466409] Re: All photos stored in portrait, no matter what orientation the camera was when taken

2015-10-02 Thread Florian Boucault
** Changed in: camera-app
   Status: In Progress => Fix Released

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

Title:
  All photos stored in portrait, no matter what orientation the camera
  was when taken

To manage notifications about this bug go to:
https://bugs.launchpad.net/camera-app/+bug/1466409/+subscriptions

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


[Bug 1447364] Re: CVE-2014-9717

2015-10-02 Thread Steve Beattie
** Changed in: linux-lts-quantal (Ubuntu Precise)
   Status: New => Invalid

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

** Changed in: linux-lts-raring (Ubuntu Precise)
   Status: New => Invalid

** Changed in: linux-lts-saucy (Ubuntu Precise)
   Status: New => Invalid

** Description changed:

  [USERNS allows circumventing MNT_LOCKED]
+ 
+ Break-Fix: - e0c9c0afd2fc958ffa34b697972721d81df8a56f

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

Title:
  CVE-2014-9717

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

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


[Bug 1502302] [NEW] general protection fault: 0000 [#1] SMP

2015-10-02 Thread Jose Gómez
Public bug reported:

Had some issues, the computer locked a couple of times. May or may not
be related to this, as there was another error with Xorg.

ProblemType: KernelOops
DistroRelease: Ubuntu 15.10
Package: linux-image-4.2.0-12-generic 4.2.0-12.14
ProcVersionSignature: Ubuntu 4.2.0-12.14-generic 4.2.1
Uname: Linux 4.2.0-12-generic x86_64
Annotation: Your system might become unstable now and might need to be 
restarted.
ApportVersion: 2.19-0ubuntu1
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC1:  gdm2466 F pulseaudio
  jose   3166 F pulseaudio
 /dev/snd/controlC0:  gdm2466 F pulseaudio
  jose   3166 F pulseaudio
Date: Fri Oct  2 19:54:40 2015
Failure: oops
HibernationDevice: RESUME=UUID=be9ce8a7-7662-4da6-810c-14ff26282803
InstallationDate: Installed on 2014-02-04 (605 days ago)
InstallationMedia: Ubuntu-GNOME 14.04 "Trusty Tahr" - Alpha amd64 (20140203)
MachineType: Dell Inc. XPS 15 9530
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-12-generic.efi.signed 
root=UUID=d7bcaffd-60e1-4fef-93fb-3d73a8d18907 ro 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: kerneloops-daemon 0.12+git20090217-3ubuntu8
SourcePackage: linux
Title: general protection fault:  [#1] SMP
UpgradeStatus: Upgraded to wily on 2015-10-01 (1 days ago)
dmi.bios.date: 01/08/2015
dmi.bios.vendor: Dell Inc.
dmi.bios.version: A08
dmi.board.name: XPS 15 9530
dmi.board.vendor: Dell Inc.
dmi.board.version: A08
dmi.chassis.type: 8
dmi.chassis.vendor: Dell Inc.
dmi.chassis.version: Not Specified
dmi.modalias: 
dmi:bvnDellInc.:bvrA08:bd01/08/2015:svnDellInc.:pnXPS159530:pvrA08:rvnDellInc.:rnXPS159530:rvrA08:cvnDellInc.:ct8:cvrNotSpecified:
dmi.product.name: XPS 15 9530
dmi.product.version: A08
dmi.sys.vendor: Dell Inc.

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


** Tags: amd64 apport-kerneloops kernel-driver-cifs kernel-oops wily

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

Title:
  general protection fault:  [#1] SMP

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

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


[Bug 1502032] Re: CVE-2015-7613

2015-10-02 Thread Steve Beattie
** Changed in: linux-lts-quantal (Ubuntu Precise)
   Status: New => Invalid

** Changed in: linux (Ubuntu Wily)
   Status: New => Fix Committed

** Changed in: linux-lts-raring (Ubuntu Precise)
   Status: New => Invalid

** Changed in: linux-lts-saucy (Ubuntu Precise)
   Status: New => Invalid

** Description changed:

  While working on KernelThreadSanitizer (KTSAN), a data race detector for
  kernels, Dmitry Vyukov found a data race that can trick the kernel into
  using unitialized memory. - This can at least give access to arbitrary
  SysV shared memory and Dmitry developed a proof of concept exploit for
  this. (On many systems, this can be used to escalate privileges). -
  While we didn't investigate this deeply, it is almost certain that this
  vulnerability can be used to gain arbitrary code execution in the
  kernel. Exercise left to the reader.
+ 
+ Break-Fix: - b9a532277938798b53178d5a66af6e2915cb27cf

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

Title:
  CVE-2015-7613

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

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


[Bug 1502009] Re: Sync 10.0.20-3 from Debian testing

2015-10-02 Thread Hans Joachim Desserud
** Tags added: 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/1502009

Title:
  Sync 10.0.20-3 from Debian testing

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mariadb-10.0/+bug/1502009/+subscriptions

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


[Bug 1229401] Re: [Ubuntu Touch] adding number to existing contact does not work from call log

2015-10-02 Thread Enrique
Just for the record, I have two SIM cards just in case that makes a
difference.

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

Title:
  [Ubuntu Touch] adding number to existing contact does not work from
  call log

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dialer-app/+bug/1229401/+subscriptions

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


[Bug 1484793] Re: CVE-2015-5156

2015-10-02 Thread Steve Beattie
** Changed in: linux-lts-quantal (Ubuntu Precise)
   Status: New => Invalid

** Changed in: linux (Ubuntu Vivid)
   Status: New => Fix Committed

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

** Changed in: linux (Ubuntu Trusty)
   Status: New => Fix Committed

** Changed in: linux-lts-raring (Ubuntu Precise)
   Status: New => Invalid

** Changed in: linux-lts-saucy (Ubuntu Precise)
   Status: New => Invalid

** Description changed:

  [virt-io max-skb-frags heap overflow]
+ 
+ Break-Fix: - 48900cb6af4282fa0fb6ff4d72a81aa3dadb5c39

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

Title:
  CVE-2015-5156

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

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


[Bug 1499612] Re: CVE-2015-7312

2015-10-02 Thread Steve Beattie
** Changed in: linux-lts-quantal (Ubuntu Precise)
   Status: New => Invalid

** Changed in: linux (Ubuntu Wily)
   Status: New => Fix Committed

** Changed in: linux-lts-raring (Ubuntu Precise)
   Status: New => Invalid

** Changed in: linux-lts-saucy (Ubuntu Precise)
   Status: New => Invalid

** Description changed:

  [Use-after-free in Linux kernel with aufs mmap patch]
+ 
+ Break-Fix: - local-2015-7312-fix

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

Title:
  CVE-2015-7312

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

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


[Bug 1499606] Re: CVE-2015-5257

2015-10-02 Thread Steve Beattie
** Changed in: linux-lts-quantal (Ubuntu Precise)
   Status: New => Invalid

** Changed in: linux-lts-raring (Ubuntu Precise)
   Status: New => Invalid

** Changed in: linux-lts-saucy (Ubuntu Precise)
   Status: New => Invalid

** Description changed:

  [USB: whiteheat: potential null-deref at probe]
+ 
+ Break-Fix: - cbb4be652d374f64661137756b8f357a1827d6a4

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

Title:
  CVE-2015-5257

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

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


[Bug 1496232] Re: CVE-2015-6937

2015-10-02 Thread Steve Beattie
** Changed in: linux (Ubuntu Wily)
   Status: New => 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/1496232

Title:
  CVE-2015-6937

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

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


[Bug 1489314] Re: CVE-2015-6252

2015-10-02 Thread Steve Beattie
** Changed in: linux-armadaxp (Ubuntu Precise)
   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/1489314

Title:
  CVE-2015-6252

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

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


[Bug 1499609] Re: CVE-2015-5283

2015-10-02 Thread Steve Beattie
** Changed in: linux-lts-quantal (Ubuntu Precise)
   Status: New => Invalid

** Changed in: linux-lts-raring (Ubuntu Precise)
   Status: New => Invalid

** Changed in: linux-lts-saucy (Ubuntu Precise)
   Status: New => Invalid

** Description changed:

  [Creating multiple sockets when SCTP module isn't loaded leads to kernel
  panic]
+ 
+ Break-Fix: 4db67e808640e3934d82ce61ee8e2e89fd877ba8
+ 8e2d61e0aed2b7c4ecb35844fe07e0b2b762dee4

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

Title:
  CVE-2015-5283

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

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


[Bug 1489318] Re: CVE-2015-6526

2015-10-02 Thread Steve Beattie
** Changed in: linux-lts-trusty (Ubuntu Precise)
   Status: New => Fix Committed

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

** Changed in: linux (Ubuntu Trusty)
   Status: New => Fix Committed

** Changed in: linux-armadaxp (Ubuntu Precise)
   Status: Fix Committed => Fix Released

** Changed in: linux-lts-vivid (Ubuntu Trusty)
   Status: New => Invalid

** Changed in: linux-lts-utopic (Ubuntu Trusty)
   Status: New => 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/1489318

Title:
  CVE-2015-6526

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

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


[Bug 1502058] Re: Update to 2015g

2015-10-02 Thread Hans Joachim Desserud
** Tags added: 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/1502058

Title:
  Update to 2015g

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

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


[Bug 1502305] [NEW] accelerate proecessing of OpenJDK crashes by adding multicore support to core dump processing routine

2015-10-02 Thread Karl-Philipp Richter
Public bug reported:

If OpenJDK crashes core dumps are somehow processed by `apport` which
takes up to several minutes while only one CPU core is used 100 %. This
could be improved by adding multicore support for this routine.

ProblemType: Bug
DistroRelease: Ubuntu 15.04
Package: apport 2.17.2-0ubuntu1.5
Uname: Linux 4.2.2-040202-generic x86_64
ApportLog:
 ERROR: apport (pid 3616) Fri Oct  2 18:01:45 2015: called for pid 3558, signal 
6, core limit 0
 ERROR: apport (pid 3616) Fri Oct  2 18:01:45 2015: executable: 
/usr/bin/kactivitymanagerd (command line "/usr/bin/kactivitymanagerd 
start-daemon")
 ERROR: apport (pid 3616) Fri Oct  2 18:01:45 2015: debug: session gdbus call: 
(true,)
 
 ERROR: apport (pid 3616) Fri Oct  2 18:01:47 2015: wrote report 
/var/crash/_usr_bin_kactivitymanagerd.1000.crash
ApportVersion: 2.17.2-0ubuntu1.5
Architecture: amd64
CurrentDesktop: Unity
Date: Fri Oct  2 21:29:01 2015
InstallationDate: Installed on 2015-09-14 (17 days ago)
InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
PackageArchitecture: all
SourcePackage: apport
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug vivid

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

Title:
  accelerate proecessing of OpenJDK crashes by adding multicore support
  to core dump processing routine

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

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


[Bug 1498307] cavac (amd64) - tests ran: 2, failed: 1

2015-10-02 Thread Brad Figg
tests ran:   2, failed: 1;
  
http://kernel.ubuntu.com/testing/3.19.0-30.33~14.04.1/cavac__3.19.0-30.33~14.04.1__2015-10-02_16-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/1498307

Title:
  linux-lts-vivid: 3.19.0-30.33~14.04.1 -proposed tracker

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

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


[Bug 1502055] Re: Crypt password screen not responding

2015-10-02 Thread Piotr Piwonski
I've applied workaround and till now the issue did not appear. 
I've removed from /etc/default/grub options spash and quiet from the 
GRUB_CMDLINE_LINUX_DEFAULT.  
used: # sudo update-grub to apply changes and now the "nice" screen promping 
for password is not showing up. The issue also is not appearing. 

I've notice that when I removed that option temporary by editing GRUB
options during start (via e) I did not hit this issue.

This would indicate that the problem is with the graphical env for the
crypt screen. Not sure if this will help anyone but this is what I've
got.


Regards,
Peter

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

Title:
  Crypt password screen not responding

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

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


[Bug 1502113] Re: package kde-config-telepathy-accounts (not installed) failed to install/upgrade: tentative de remplacement de « /usr/share/accounts/services/google-im.service », qui appartient aussi

2015-10-02 Thread Seth Arnold
Your logs are filled with troubling messages; some of them are killing
processes because your computer doesn't have enough memory and doesn't
have any swap space, some of them are entirely novel to me: I've never
seen "trap int3" messages before and don't know what to suggest about
them. They may represent hardware problems or may represent the fact
that you're very low on memory and swap.

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/1502113

Title:
  package kde-config-telepathy-accounts (not installed) failed to
  install/upgrade: tentative de remplacement de «
  /usr/share/accounts/services/google-im.service », qui appartient aussi
  au paquet account-plugin-google 0.12+15.10.20150723-0ubuntu1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ktp-accounts-kcm/+bug/1502113/+subscriptions

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

[Bug 1502307] Re: improper APM settings chosen when power status cannot be determined

2015-10-02 Thread Antoine Pitrou
I'm entirely sure about the diagnosis, since it seems the configuration
is conditioned on APMD_DRIVES (does it get a default value when the
script is being run?). What I know is that, since Ubuntu 15.04, my HDD
has been showing this behaviour of spinning down quite quickly while it
didn't before...

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

Title:
  improper APM settings chosen when power status cannot be determined

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

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


[Bug 1502311] [NEW] Support a Traditional Chinese input method

2015-10-02 Thread Pat McGowan
Public bug reported:

Our pinyin plugin only provides support for  Simplified Chinese  and 
Traditional Chinese is often requested.
In Taiwan especially many people use Zhuyin  and it is taught in elementary 
schools. 

Ubuntu has a Chewing implementation on the desktop, presumably an
approach similar to the pinyin plugin can be developed.

** Affects: ubuntu-keyboard (Ubuntu)
 Importance: Wishlist
 Status: New

** Summary changed:

- Support a traditional chinese input method
+ Support a Traditional Chinese input method

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

Title:
  Support a Traditional Chinese input method

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

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


[Bug 1502113] Re: package kde-config-telepathy-accounts (not installed) failed to install/upgrade: tentative de remplacement de « /usr/share/accounts/services/google-im.service », qui appartient aussi

2015-10-02 Thread Seth Arnold
Thanks for taking the time to report this bug and helping to make Ubuntu
better. We appreciate the difficulties you are facing, but this appears
to be a "regular" (non-security) bug.  I have unmarked it as a security
issue since this bug does not show evidence of allowing attackers to
cross privilege boundaries nor directly cause loss of data/privacy.
Please feel free to report any other bugs you may find.

** Information type changed from Private Security to Public

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

Title:
  package kde-config-telepathy-accounts (not installed) failed to
  install/upgrade: tentative de remplacement de «
  /usr/share/accounts/services/google-im.service », qui appartient aussi
  au paquet account-plugin-google 0.12+15.10.20150723-0ubuntu1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ktp-accounts-kcm/+bug/1502113/+subscriptions

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

[Bug 1501703] Re: unit test failures on 32 bit architectures

2015-10-02 Thread OpenStack Infra
Reviewed:  https://review.openstack.org/230523
Committed: 
https://git.openstack.org/cgit/openstack/neutron/commit/?id=18344140bd0aae61dd6f50667d719cd9cfe149cb
Submitter: Jenkins
Branch:stable/liberty

commit 18344140bd0aae61dd6f50667d719cd9cfe149cb
Author: James Page 
Date:   Thu Oct 1 11:54:28 2015 +0100

Use format to convert ints to strings

This ensures that on 32bit architectures, where
sometimes an implicit long is created, the resulting
string does not contain a 'L' suffix as generated
by the hex function.

Change-Id: I264f90d68009963fe7a217c2170e1cf2f46ae2bb
Closes-Bug: 1501703
(cherry picked from commit 49883f1b2bfc9a4f06b1d336553d7f0ab4289a0d)


** Tags added: in-stable-liberty

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

Title:
  unit test failures on 32 bit architectures

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

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


[Bug 1501703] Re: unit test failures on 32 bit architectures

2015-10-02 Thread OpenStack Infra
Reviewed:  https://review.openstack.org/230523
Committed: 
https://git.openstack.org/cgit/openstack/neutron/commit/?id=18344140bd0aae61dd6f50667d719cd9cfe149cb
Submitter: Jenkins
Branch:stable/liberty

commit 18344140bd0aae61dd6f50667d719cd9cfe149cb
Author: James Page 
Date:   Thu Oct 1 11:54:28 2015 +0100

Use format to convert ints to strings

This ensures that on 32bit architectures, where
sometimes an implicit long is created, the resulting
string does not contain a 'L' suffix as generated
by the hex function.

Change-Id: I264f90d68009963fe7a217c2170e1cf2f46ae2bb
Closes-Bug: 1501703
(cherry picked from commit 49883f1b2bfc9a4f06b1d336553d7f0ab4289a0d)


** Tags added: in-stable-liberty

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to neutron in Ubuntu.
https://bugs.launchpad.net/bugs/1501703

Title:
  unit test failures on 32 bit architectures

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1499089] Re: Please enable kconfig X86_LEGACY_VM86 for i386

2015-10-02 Thread jimble
We use the vm86() system call extensively with our applications,
primarily for performance reasons with DOS binaries that cannot be
changed.

Switching to CPU emulation is not possible as the applications run
considerably slower than if using the hardware features of the real CPU.
For this very same reason we run only 32 bit x86 on the servers to
support this single system call. Of course the answer could be proposed
that we compile our own kernels with this feature enabled, but this is
in a production environment running stable existing software for
business and not some desktop PC to just run DOS games, so we really
need kernels with a proper provenance.

Again for performance reasons we track the very latest hardware and
chipsets, so it means we usually have to use the hardware enablement
stack for LTS 14.04, currently this is based on kernel 3.19 and runs
vm86() syscalls just fine out of the box, but soon the Wily based kernel
4.2 will be used for that. Kernel 4.2 in Wily has the vm86() syscall
compile time disabled at present.

If you could change the Kconfig to allow vm86() to be runtime enabled that 
would be the ideal solution and remove the regression. I suspect that you might 
want to backport this simple patch to set the runtime default to disabled
https://github.com/torvalds/linux/commit/76fc5e7b2355af167dea1a32e93c57fc37900a5b

I can only hope you understand the importance of this to our business,
if this isn't fixed we will be unable to update our servers and also
that they wouldn't be viable without the full x86 support for the vm86()
syscall.

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

Title:
  Please enable kconfig X86_LEGACY_VM86 for i386

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

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


[Bug 1502307] Re: improper APM settings chosen when power status cannot be determined

2015-10-02 Thread Antoine Pitrou
Note the aforementioned file is part of the hdparm package, which is
reasonable to install on a desktop machine:

$ dpkg -S apm/event.d/20hdparm
hdparm: /etc/apm/event.d/20hdparm

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

Title:
  improper APM settings chosen when power status cannot be determined

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

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


[Bug 1502307] [NEW] improper APM settings chosen when power status cannot be determined

2015-10-02 Thread Antoine Pitrou
Public bug reported:

On my *desktop* machine, on_ac_power returns 255 as a status code, which
according to the man page means "Power status could not be determined".
This is reasonable, but unfortunately /etc/apm/event.d/20hdparm takes it
(*) as meaning "use the conservative setting" which sets the hard drive
to spin down after 90 seconds of inactivity. This is entirely
inappropriate for a desktop machine, as now I have to wait several
seconds each time I access my non-system hard drive.

/etc/apm/event.d/20hdparm should really take 255 to mean "this is
unlikely to be a battery-powered machine at all, don't mess with the
power management settings".

(*) relevant snippet:

choose_power ()
{
if on_ac_power > /dev/null
then
power_performance
else
power_conserve
fi
}

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

** Package changed: laptop-mode-tools (Ubuntu) => hdparm (Ubuntu)

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

Title:
  improper APM settings chosen when power status cannot be determined

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

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


[Bug 1482844] Re: Caffeine can't connect to display since updating Trusty to Vivid kernel and X (HWE)

2015-10-02 Thread kay
python3-xlib_0.14+20091101-5_all.deb doesn't fix the issue too:

Traceback (most recent call last):
  File "/usr/bin/caffeine", line 36, in 
ewmh = EWMH()
  File "/usr/lib/python3/dist-packages/ewmh.py", line 50, in __init__
self.display = _display or display.Display()
  File "/usr/lib/python3/dist-packages/Xlib/display.py", line 80, in __init__
self.display = _BaseDisplay(display)
  File "/usr/lib/python3/dist-packages/Xlib/display.py", line 62, in __init__
display.Display.__init__(*(self, ) + args, **keys)
  File "/usr/lib/python3/dist-packages/Xlib/protocol/display.py", line 129, in 
__init__
raise error.DisplayConnectionError(self.display_name, r.reason)
Xlib.error.DisplayConnectionError: Can't connect to display ":0": b'Invalid 
MIT-MAGIC-COOKIE-1 key'

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

Title:
  Caffeine can't connect to display since updating Trusty to Vivid
  kernel and X (HWE)

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

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


[Bug 1460226] Re: Caffeine can't connect to display since Ubuntu 15.04 upgrade

2015-10-02 Thread kay
*** This bug is a duplicate of bug 1482844 ***
https://bugs.launchpad.net/bugs/1482844

python3-xlib_0.14+20091101-1ubuntu3_all.deb didn't solve the issue. I
receive:

Traceback (most recent call last):
  File "/usr/bin/caffeine", line 36, in 
ewmh = EWMH()
  File "/usr/lib/python3/dist-packages/ewmh.py", line 50, in __init__
self.display = _display or display.Display()
  File "/usr/lib/python3/dist-packages/Xlib/display.py", line 80, in __init__
self.display = _BaseDisplay(display)
  File "/usr/lib/python3/dist-packages/Xlib/display.py", line 62, in __init__
display.Display.__init__(*(self, ) + args, **keys)
  File "/usr/lib/python3/dist-packages/Xlib/protocol/display.py", line 129, in 
__init__
raise error.DisplayConnectionError(self.display_name, r.reason)
Xlib.error.DisplayConnectionError: Can't connect to display ":0": b'Invalid 
MIT-MAGIC-COOKIE-1 key'

Old python3-xlib_0.14+20091101-1ubuntu2_all.deb returns:

Traceback (most recent call last):
  File "/usr/bin/caffeine", line 36, in 
ewmh = EWMH()
  File "/usr/lib/python3/dist-packages/ewmh.py", line 50, in __init__
self.display = _display or display.Display()
  File "/usr/lib/python3/dist-packages/Xlib/display.py", line 80, in __init__
self.display = _BaseDisplay(display)
  File "/usr/lib/python3/dist-packages/Xlib/display.py", line 62, in __init__
display.Display.__init__(*(self, ) + args, **keys)
  File "/usr/lib/python3/dist-packages/Xlib/protocol/display.py", line 129, in 
__init__
raise error.DisplayConnectionError(self.display_name, r.reason)
Xlib.error.DisplayConnectionError: Can't connect to display ":0": b'No protocol 
specified\n'

ubuntu 14.04 lts with 3.19.0-30-generic kernel from vivid and xserver-
xorg-lts-vivid 1:7.7+7ubuntu3~trusty1

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

Title:
  Caffeine can't connect to display since Ubuntu 15.04 upgrade

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

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


[Bug 1460226] Re: Caffeine can't connect to display since Ubuntu 15.04 upgrade

2015-10-02 Thread kay
*** This bug is a duplicate of bug 1482844 ***
https://bugs.launchpad.net/bugs/1482844

python3-xlib_0.14+20091101-5_all.deb doesn't fix the issue too:

Traceback (most recent call last):
  File "/usr/bin/caffeine", line 36, in 
ewmh = EWMH()
  File "/usr/lib/python3/dist-packages/ewmh.py", line 50, in __init__
self.display = _display or display.Display()
  File "/usr/lib/python3/dist-packages/Xlib/display.py", line 80, in __init__
self.display = _BaseDisplay(display)
  File "/usr/lib/python3/dist-packages/Xlib/display.py", line 62, in __init__
display.Display.__init__(*(self, ) + args, **keys)
  File "/usr/lib/python3/dist-packages/Xlib/protocol/display.py", line 129, in 
__init__
raise error.DisplayConnectionError(self.display_name, r.reason)
Xlib.error.DisplayConnectionError: Can't connect to display ":0": b'Invalid 
MIT-MAGIC-COOKIE-1 key'

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

Title:
  Caffeine can't connect to display since Ubuntu 15.04 upgrade

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

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


[Bug 1161291] Re: Unity Dash behind all windows

2015-10-02 Thread Alex Baggott
Thank you for taking the time to report this bug. Unfortunately, we
can’t work out how to recreate this bug from your description. Please
describe the process you go through to trigger this bug and then change
the bug status to NEW. See this page for more information:
https://wiki.ubuntu.com/BigDesktopBugScrub

** Changed in: unity
   Status: Confirmed => Incomplete

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

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

Title:
  Unity Dash behind all windows

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

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

[Bug 1492193] Re: CVE-2015-6666

2015-10-02 Thread Mathew Hodson
** Changed in: linux (Ubuntu Wily)
   Status: Fix Committed => Invalid

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

Title:
  CVE-2015-

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

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


[Bug 875170] Re: synergy on ubuntu 11.10 doesn't pickup edge event

2015-10-02 Thread Alex Baggott
Would someone confirm whether or not this bug is fixed now?

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

Title:
  synergy on ubuntu 11.10 doesn't pickup edge event

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

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


[Bug 1501772] Re: Metadata proxy process errors with binary user_data

2015-10-02 Thread OpenStack Infra
Reviewed:  https://review.openstack.org/230513
Committed: 
https://git.openstack.org/cgit/openstack/neutron/commit/?id=13b6d76da361178ea0b84baf4831a4c7f53e29c7
Submitter: Jenkins
Branch:stable/liberty

commit 13b6d76da361178ea0b84baf4831a4c7f53e29c7
Author: Ihar Hrachyshka 
Date:   Thu Oct 1 17:13:25 2015 +0200

metadata: don't crash proxy on non-unicode user data

We attempt to log every successful metadata response with LOG.debug. But
as per oslo.log docs [1], we should make sure that what we pass into the
library is unicode.

Http.request returns a tuple of Response object and a string, which is
bytes in Python 2.x [2].

That's why we need to convert the response content to unicode before
passing it into oslo.log.

To achieve it, we utilize encodeutils.safe_decode with 'replace' errors
handling strategy, so that we don't get exceptions on input that does
not conform unicode.

For the unit test case, we pass a string that is not expected to convert
to unicode with errors='strict' strategy or similar, and check that we
still don't crash.

While at it, we remove a check for the number of log calls being
triggered, because it's something that we should avoid validating in
test cases, and it cannot trigger a real bug. The mock that was used to
count the number would also hide the bug that we try to reproduce.

Note that the bug does not require debug to be set because the crash
occurs before oslo.log machinery decides it should not log the message.

[1]: 
http://docs.openstack.org/developer/oslo.log/usage.html#no-more-implicit-conversion-to-unicode-str
[2]: 
http://bitworking.org/projects/httplib2/doc/html/libhttplib2.html#httplib2.Http.request

Closes-Bug: #1501772
Change-Id: I6a32c40ff117fae43913386134c8981539697ce8
(cherry picked from commit 80e3d9be4923ecad17377b1d15c8392b8a43dac6)


** Tags added: in-stable-liberty

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

Title:
  Metadata proxy process errors with binary user_data

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

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


[Bug 1501966] Re: support changing Apparmor hats

2015-10-02 Thread Seth Arnold
~ubuntu-reviewers, the patch posted here is intended to sketch what a
new patch for this feature may look like and is not intended to be used
as-is in any capacity. Feel free to unsub from this bug.

Thanks

** Tags removed: patch

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

Title:
  support changing Apparmor hats

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

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


[Bug 1502271] Re: package openjdk-8-jre-headless:amd64 8u45-b14-1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2015-10-02 Thread Seth Arnold
Thanks for taking the time to report this bug and helping to make Ubuntu
better. We appreciate the difficulties you are facing, but this appears
to be a "regular" (non-security) bug.  I have unmarked it as a security
issue since this bug does not show evidence of allowing attackers to
cross privilege boundaries nor directly cause loss of data/privacy.
Please feel free to report any other bugs you may find.

** Information type changed from Private Security to Public

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

Title:
  package openjdk-8-jre-headless:amd64 8u45-b14-1 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/openjdk-8/+bug/1502271/+subscriptions

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


[Bug 1502271] Re: package openjdk-8-jre-headless:amd64 8u45-b14-1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2015-10-02 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/1502271

Title:
  package openjdk-8-jre-headless:amd64 8u45-b14-1 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/openjdk-8/+bug/1502271/+subscriptions

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


[Bug 1501818] Re: linux: 4.2.0-14.16 -proposed tracker

2015-10-02 Thread Brad Figg
** Changed in: kernel-development-workflow/automated-testing
   Status: New => Confirmed

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

** Changed in: kernel-development-workflow/prepare-package-signed
 Assignee: Canonical Kernel Team (canonical-kernel-team) => Tim Gardner 
(timg-tpi)

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

Title:
  linux: 4.2.0-14.16 -proposed tracker

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

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


[Bug 1472903] Re: Camera flash black screen one time after open camera app.

2015-10-02 Thread Florian Boucault
** Also affects: camera-app
   Importance: Undecided
   Status: New

** Changed in: camera-app
   Status: New => In Progress

** Changed in: camera-app
 Assignee: (unassigned) => Florian Boucault (fboucault)

** Changed in: camera-app
   Importance: Undecided => High

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

Title:
  Camera flash black screen one time after open camera app.

To manage notifications about this bug go to:
https://bugs.launchpad.net/camera-app/+bug/1472903/+subscriptions

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


[Bug 1472904] Re: Camera flash black screen one time after open camera app.

2015-10-02 Thread Florian Boucault
*** This bug is a duplicate of bug 1472903 ***
https://bugs.launchpad.net/bugs/1472903

** This bug has been marked a duplicate of bug 1472903
   Camera flash black screen one time after open camera app.

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

Title:
  Camera flash black screen one time after open camera app.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/camera-app/+bug/1472904/+subscriptions

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


[Bug 1500112] Re: missing dependency on libyaml-0-2

2015-10-02 Thread Hans Joachim Desserud
** Changed in: hundredpapercuts
   Status: Confirmed => Fix Released

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

Title:
  missing dependency on libyaml-0-2

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

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


[Bug 1377866] Re: pay-service on idle machine is polling at ~1Hz causing system wakeups

2015-10-02 Thread Rodney Dawes
Taking this and setting to in progress, as the new pay-service rewrite
in go will fix this, as it's dbus activated and has a timeout to exit
after a period of inactivity.

** Changed in: pay-service (Ubuntu)
   Importance: Undecided => High

** Changed in: pay-service (Ubuntu)
   Status: New => In Progress

** Changed in: pay-service (Ubuntu)
 Assignee: (unassigned) => Rodney Dawes (dobey)

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

Title:
  pay-service on idle machine is polling at ~1Hz causing system wakeups

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pay-service/+bug/1377866/+subscriptions

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


[Bug 1469315] Re: CVE-2015-4692

2015-10-02 Thread Mathew Hodson
** Changed in: linux (Ubuntu Wily)
   Status: Fix Committed => Invalid

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

Title:
  CVE-2015-4692

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

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


[Bug 1500751] Re: Cryptsetup Keyboard not working on Xubuntu 3.19.0-30

2015-10-02 Thread Fredrik Jonson
Tested version 3.19.0-29.31~lp1500751Commit50031c9d and it also/still
has the bug.

This time it was slightly different compared to how I recall it from the
original case. I still cannot enter text in the cryptsetup area, but rather
than emitting the password at the upper left corner of the same virtual console,
the text appears in another virtual console - the same where the systemd
version is printed.

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

Title:
  Cryptsetup Keyboard not working on Xubuntu 3.19.0-30

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

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


[Bug 1497627] Re: Periodically video will freeze for no reason at all and no specific time between freezes.

2015-10-02 Thread chris pollock
Today, 2 Oct 2015 at 12:39:07 video froze again. Mouse cursor would move
can't switch to any windows. Uptime at freeze was 1d20h12m. I'm
attaching:

Gpu-Manager.log (don't know if this means anything)
kern.log
syslog for today until time of reboot
dmesg

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

Title:
  Periodically video will freeze for no reason at all and no specific
  time between freezes.

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

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


[Bug 1502032] Re: CVE-2015-7613

2015-10-02 Thread Mathew Hodson
** Description changed:

- While working on KernelThreadSanitizer (KTSAN), a data race detector for
- kernels, Dmitry Vyukov found a data race that can trick the kernel into
- using unitialized memory. - This can at least give access to arbitrary
- SysV shared memory and Dmitry developed a proof of concept exploit for
- this. (On many systems, this can be used to escalate privileges). -
- While we didn't investigate this deeply, it is almost certain that this
- vulnerability can be used to gain arbitrary code execution in the
+ While working on KernelThreadSanitizer (KTSAN), a data race detector
+ for kernels, Dmitry Vyukov found a data race that can trick the kernel
+ into using uninitialized memory.
+ - This can at least give access to arbitrary SysV shared memory and
+ Dmitry developed a proof of concept exploit for this. (On many
+ systems, this can be used to escalate privileges).
+ - While we didn't investigate this deeply, it is almost certain that
+ this vulnerability can be used to gain arbitrary code execution in the
  kernel. Exercise left to the reader.
  
  Break-Fix: - b9a532277938798b53178d5a66af6e2915cb27cf

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

Title:
  CVE-2015-7613

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

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


[Bug 1500751] Re: Cryptsetup Keyboard not working on Xubuntu 3.19.0-30

2015-10-02 Thread Sean Sosik-Hamor
You can add one more XPS 13 to the list of affected systems. I'm about
to EOD but can also test additional kernels starting on Monday. All my
system info attached to duplicate LP Bug #1502171.

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

Title:
  Cryptsetup Keyboard not working on Xubuntu 3.19.0-30

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

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


[Bug 1502279] Re: package libreoffice-common (not installed) failed to install/upgrade: tentative de remplacement de « /usr/bin/soffice », qui appartient aussi au paquet openoffice-debian-menus 4.1.1-

2015-10-02 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/1502279

Title:
  package libreoffice-common (not installed) failed to install/upgrade:
  tentative de remplacement de « /usr/bin/soffice », qui appartient
  aussi au paquet openoffice-debian-menus 4.1.1-9775

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

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

[Bug 1502285] [NEW] api should provide translated "no network" and "no location" results

2015-10-02 Thread Kyle Nitzsche
Public bug reported:

Scopes that use the network or that use location (status for each is
provided through the metadata to the scope) usually need to inform the
user when there is no network and when location is disabled.

Currently, every scope must handle this on its own, including
translations.

It therefore seems efficient for that the api to provide translated
results for these, perhaps with something like the following text:

"Sorry! The network is not available. Please check your settings and
connections."

"Sorry! Location services are not enabled for this scope. Please check
the scope settings."

** Affects: savilerow
 Importance: Undecided
 Status: New

** Affects: unity-scopes-api (Ubuntu)
 Importance: Undecided
 Status: New

** Also affects: savilerow
   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/1502285

Title:
  api should provide translated "no network" and "no location" results

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

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


[Bug 1502282] Re: "unknown" connectivity status problematic

2015-10-02 Thread Kyle Nitzsche
** Also affects: savilerow
   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/1502282

Title:
  "unknown" connectivity status problematic

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

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


[Bug 1502291] [NEW] 'do-release-upgrade -d' should always offer to upgrade to the most recent development release

2015-10-02 Thread Mathew Hodson
Public bug reported:

On Trusty, 'do-release-upgrade -d' is currently offering an upgrade to
14.10. It should offer to upgrade to Wily, because Wily is the current
development release.

It makes sense if we are skipping versions for stable releases to also
skip versions for development releases. The code in update-manager
parses the meta-release files to determine which release to upgrade. As
an example here is the meta-release-development entry for Utopic.

Dist: utopic
Name: Utopic Unicorn
Version: 14.10
Date: Thu, 23 Oct 2014 14:10:00 UTC
Supported: 0
Description: This is the 14.10 release
Release-File: http://archive.ubuntu.com/ubuntu/dists/utopic/Release
ReleaseNotes: http://changelogs.ubuntu.com/EOLReleaseAnnouncement
UpgradeTool: 
http://archive.ubuntu.com/ubuntu/dists/utopic/main/dist-upgrader-all/current/utopic.tar.gz
UpgradeToolSignature: 
http://archive.ubuntu.com/ubuntu/dists/utopic/main/dist-upgrader-all/current/utopic.tar.gz.gpg

We currently just check the date and supported status to determine to
which release to upgrade, as the meta release files don't really contain
information about whether or not a release is obsolete. If we are
running with the -d switch we could check to see if the release date is
greater than today. There should probably be a fudge factor of a day
though as otherwise people may not be able to upgrade on release day.

** Affects: update-manager (Ubuntu)
 Importance: Low
 Status: New


** Tags: trusty

** Changed in: ubuntu-release-upgrader (Ubuntu)
   Importance: Undecided => Low

** Changed in: ubuntu-release-upgrader (Ubuntu)
 Assignee: Brian Murray (brian-murray) => (unassigned)

** Package changed: ubuntu-release-upgrader (Ubuntu) => update-manager
(Ubuntu)

** Description changed:

  On Trusty, 'do-release-upgrade -d' is currently offering an upgrade to
  14.10. It should offer to upgrade to Wily, because Wily is the current
  development release.
  
  It makes sense if we are skipping versions for stable releases to also
  skip versions for development releases. The code in update-manager
  parses the meta-release files to determine which release to upgrade. As
- an example here is the meta-release-development entry for utopic.
+ an example here is the meta-release-development entry for Utopic.
  
  Dist: utopic
  Name: Utopic Unicorn
  Version: 14.10
  Date: Thu, 23 Oct 2014 14:10:00 UTC
  Supported: 0
  Description: This is the 14.10 release
  Release-File: http://archive.ubuntu.com/ubuntu/dists/utopic/Release
  ReleaseNotes: http://changelogs.ubuntu.com/EOLReleaseAnnouncement
  UpgradeTool: 
http://archive.ubuntu.com/ubuntu/dists/utopic/main/dist-upgrader-all/current/utopic.tar.gz
  UpgradeToolSignature: 
http://archive.ubuntu.com/ubuntu/dists/utopic/main/dist-upgrader-all/current/utopic.tar.gz.gpg
  
  We currently just check the date and supported status to determine to
  which release to upgrade, as the meta release files don't really contain
  information about whether or not a release is obsolete. If we are
  running with the -d switch we could check to see if the release date is
  greater than today. There should probably be a fudge factor of a day
  though as otherwise people may not be able to upgrade on release day.

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

Title:
  'do-release-upgrade -d' should always offer to upgrade to the most
  recent development release

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

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


[Bug 602071] Re: [0a5c:5801] Broadcom fingerprint reader not working

2015-10-02 Thread Jozef Wagner
This seems to be fixed in Fedora, see
https://copr.fedoraproject.org/coprs/dani/ccid-drivers-backport/

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

Title:
  [0a5c:5801] Broadcom fingerprint reader not working

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

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


[Bug 1501719] Re: scope for social network

2015-10-02 Thread Rodney Dawes
** Package changed: unity-scope-click (Ubuntu) => onehundredscopes

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

Title:
  scope for social network

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

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


[Bug 1502311] Re: Support a Traditional Chinese input method

2015-10-02 Thread Michael Sheldon
libpinyin (which we currently use for pinyin input) appears to have
support for chewing style input, does anyone know how this compares to
libchewing or libzhuyin? It'd probably be simpler to use libpinyin as we
already make use of it for simplified Chinese input, but only if its
chewing performance is on a par with the dedicated libraries on offer.

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

Title:
  Support a Traditional Chinese input method

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

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


[Bug 1413754] Re: decrypt_keyctl crashes kernel

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

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

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

Title:
  decrypt_keyctl crashes kernel

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

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


[Bug 1413754] Re: decrypt_keyctl crashes kernel

2015-10-02 Thread jabba
swap works - luks seems to be the bad entry here

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

Title:
  decrypt_keyctl crashes kernel

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

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


[Bug 1380025] Re: linux could use CONFIG_CC_STACKPROTECTOR_STRONG instead of CONFIG_CC_STACKPROTECTOR_REGULAR

2015-10-02 Thread Tim Gardner
** Also affects: linux (Ubuntu Wily)
   Importance: Medium
   Status: Triaged

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

** Changed in: linux (Ubuntu Wily)
 Assignee: (unassigned) => Tim Gardner (timg-tpi)

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

Title:
  linux could use CONFIG_CC_STACKPROTECTOR_STRONG instead of
  CONFIG_CC_STACKPROTECTOR_REGULAR

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

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


[Bug 1501411] Re: Where to translate the title of the scope-click?

2015-10-02 Thread Rodney Dawes
Please don't use bug reports to ask questions. The translations for the
click scope are at https://translations.launchpad.net/unity-scope-click

** Changed in: unity-scope-click (Ubuntu)
   Status: New => Invalid

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

Title:
  Where to translate the title of the scope-click?

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

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


[Bug 1482273] Re: Dell Ubuntu 3551: failure to boot without nolapic option

2015-10-02 Thread Mark Standridge
I have tested the attached patch against ubuntu kernels 3.13.0-58,
3.13.0-63, 3.13.0-64, and 3.13.0-65 for over a month. Never once has
this laptop suffered a kernel panic with the applied patch to reinstate
the optimization to stepwise.c. It has never failed to boot. As I said
earlier, I found the origin of the regression through a git bisect.

I also have tested the latest upstream kernel, version
4.3.0-040300rc3-generic #201509271225. It has no issue booting. Looking
at:

https://github.com/torvalds/linux/blob/master/drivers/thermal/step_wise.c

I see that the commit which introduces this issue has not been applied
upstream. Probably because commit
178c2490b99f898efc06d1ad75cadc84f13021a6 (thermal: step_wise: Revert
optimization) is not needed due to
8c8dd64345ba2a8c41556095c7adacb1c8af7c1 ("acerhdf: Use bang-bang thermal
governor") fixing the issue for the fan control upstream. So the issue
I'm experiencing is not so much fixed upstream, as rather it never
existed upstream.

I do have an old Acer Aspire 1410 which uses the acerhdf fan control
module if you would like assistance in testing a backport of
8c8dd64345ba2a8c41556095c7adacb1c8af7c1 ("acerhdf: Use bang-bang thermal
governor") to 3.13.0.

Ubuntu kernel 3.13.0-65-generic is still unable to reliably boot without
a kernel panic.

Thanks

** Attachment added: "reinstate the optimization to stepwise.c"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1482273/+attachment/4482285/+files/patch

** Tags added: patch

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

Title:
  Dell Ubuntu 3551: failure to boot without nolapic option

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

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


[Bug 1500981] Re: juju-db segfault while syncing with replicas

2015-10-02 Thread Curtis Hovey
** Tags added: mongodb

** Changed in: juju-core
   Status: New => Triaged

** Changed in: juju-core
   Importance: Undecided => High

** Changed in: juju-core
Milestone: None => 1.26-alpha1

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

Title:
  juju-db segfault while syncing with replicas

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1500981/+subscriptions

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


[Bug 1482273] Re: Dell Ubuntu 3551: failure to boot without nolapic option

2015-10-02 Thread Mark Standridge
** Tags added: confirmed

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

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

Title:
  Dell Ubuntu 3551: failure to boot without nolapic option

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

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


[Bug 1500981] Re: juju-db segfault while syncing with replicas

2015-10-02 Thread Curtis Hovey
** Tags added: mongodb

** Changed in: juju-core
   Status: New => Triaged

** Changed in: juju-core
   Importance: Undecided => High

** Changed in: juju-core
Milestone: None => 1.26-alpha1

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to juju-mongodb in Ubuntu.
https://bugs.launchpad.net/bugs/1500981

Title:
  juju-db segfault while syncing with replicas

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1500981/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1501818] Re: linux: 4.2.0-14.16 -proposed tracker

2015-10-02 Thread Brad Figg
** Changed in: kernel-development-workflow/automated-testing
   Status: Confirmed => Fix Released

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

Title:
  linux: 4.2.0-14.16 -proposed tracker

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

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


[Bug 1478716] Re: aa-genprof crashes when analyzing audit log

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

** Changed in: apparmor (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/1478716

Title:
  aa-genprof crashes when analyzing audit log

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

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


[Bug 1415880] Re: 14e4:4365 bcmwl-kernel source: fix for null pointer crash

2015-10-02 Thread Daniele Castrovilli
Any of you noticed a decreasing signal with this driver, with the same
machine and os (Ubuntu 14.04) i had a decrease on wifi signal (and wifi
is still the same i checked it) any of you noticed about this?

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

Title:
  14e4:4365 bcmwl-kernel source: fix for null pointer crash

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

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


[Bug 955816] Re: Logging in with UBUNTU_MENUPROXY=0 makes unity-panel-services crash continuously

2015-10-02 Thread Alex Baggott
Thank you for taking the time to report this bug. We have tried to
recreate this on the latest release of Ubuntu and cannot reproduce it.
This bug is being marked as Invalid. If you believe the problem to still
exist in the latest version of Ubuntu, please comment on why that is the
case and change the bug status to NEW.

** Changed in: unity
   Status: Confirmed => Invalid

** Changed in: unity (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/955816

Title:
  Logging in with UBUNTU_MENUPROXY=0 makes unity-panel-services crash
  continuously

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

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


[Bug 1502339] Re: Either security update crash or wine module addition crash

2015-10-02 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/1502339

Title:
  Either security update crash or wine module addition crash

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

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


[Bug 1502255] Re: make it possible to use custom history.sqlite files in FillCustomSmsHistory

2015-10-02 Thread Gustavo Pichorim Boiko
** Changed in: messaging-app (Ubuntu)
 Assignee: (unassigned) => Gustavo Pichorim Boiko (boiko)

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

Title:
  make it possible to use custom history.sqlite files in
  FillCustomSmsHistory

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/messaging-app/+bug/1502255/+subscriptions

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


[Bug 1502345] [NEW] [NOVATECH LTD PERSONAL COMPUTER] suspend/resume failure

2015-10-02 Thread Campbell Boyd
Public bug reported:

Crashed on wakiing from Suspend. Had to power off and on.

ProblemType: KernelOops
DistroRelease: Ubuntu 14.04
Package: linux-image-3.13.0-45-generic 3.13.0-45.74
ProcVersionSignature: Ubuntu 3.13.0-45.74-generic 3.13.11-ckt13
Uname: Linux 3.13.0-45-generic x86_64
Annotation: This occured during a previous suspend and prevented it from 
resuming properly.
ApportVersion: 2.14.1-0ubuntu3.15
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC1:  campbell   2747 F pulseaudio
 /dev/snd/controlC0:  campbell   2747 F pulseaudio
Date: Fri Oct  2 19:24:41 2015
DuplicateSignature: suspend/resume:NOVATECH LTD PERSONAL COMPUTER:F5
ExecutablePath: /usr/share/apport/apportcheckresume
Failure: suspend/resume
HibernationDevice: RESUME=UUID=b7290e2f-642a-414d-988b-cac7bac6530e
InstallationDate: Installed on 2014-09-17 (380 days ago)
InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Release amd64 (20140417)
InterpreterPath: /usr/bin/python3.4
IwConfig:
 eth0  no wireless extensions.
 
 lono wireless extensions.
MachineType: NOVATECH LTD PERSONAL COMPUTER
ProcCmdline: /usr/bin/python3 /usr/share/apport/apportcheckresume
ProcEnviron:
 TERM=linux
 PATH=(custom, no user)
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-45-generic 
root=UUID=fc6ea265-b75c-458a-b5d2-2950ebad0828 ro 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:
 linux-restricted-modules-3.13.0-45-generic N/A
 linux-backports-modules-3.13.0-45-generic  N/A
 linux-firmware 1.127.15
RfKill:
 
SourcePackage: linux
Title: [NOVATECH LTD PERSONAL COMPUTER] suspend/resume failure
UpgradeStatus: No upgrade log present (probably fresh install)
UserGroups:
 
dmi.bios.date: 06/19/2014
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: F5
dmi.board.asset.tag: To be filled by O.E.M.
dmi.board.name: H81M-DS2V
dmi.board.vendor: Gigabyte Technology Co., Ltd.
dmi.board.version: To be filled by O.E.M.
dmi.chassis.asset.tag: xxx-xxx
dmi.chassis.type: 3
dmi.chassis.vendor: NOVATECH LTD
dmi.chassis.version: V1.0
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrF5:bd06/19/2014:svnNOVATECHLTD:pnPERSONALCOMPUTER:pvrV1.0:rvnGigabyteTechnologyCo.,Ltd.:rnH81M-DS2V:rvrTobefilledbyO.E.M.:cvnNOVATECHLTD:ct3:cvrV1.0:
dmi.product.name: PERSONAL COMPUTER
dmi.product.version: V1.0
dmi.sys.vendor: NOVATECH LTD

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


** Tags: amd64 apport-kerneloops need-duplicate-check resume suspend trusty

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

Title:
  [NOVATECH LTD PERSONAL COMPUTER] suspend/resume failure

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

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


[Bug 1432871] Re: `df` shows bind mounts instead of real mounts.

2015-10-02 Thread Dave Chiluk
This same patch applies cleanly to both wily and vivid, but it has wily
in the changelog.

** Patch added: "lp1432871.wily.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/coreutils/+bug/1432871/+attachment/4482367/+files/lp1432871.wily.debdiff

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

Title:
  `df` shows bind mounts instead of real mounts.

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

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


[Bug 1448092] Re: [needs-packaging] ibmpmlinux

2015-10-02 Thread Guo, Liang Chang
Hi Mathieu,
Thank you very much for your hours in the review. It sounds you almost get to 
the bottom of PMUbuntu.

> - ship a sysv init script in /etc/init.d/ (which should work both for
15.10 and all the way to 14.04)

This means we need to modify PMUbuntu to be a service (or job in upstart
term). It's fine but will take some time.

> - ship all files in their paths under /opt/ibm/pm ...

We will follow the requests that you mentioned here, but not necessary
to replace every "/var/perf/pm" with PMUbuntu's new home because we
still try to maintain PM programs good for all Linux variants.

> We also don't appear to need the preinst, prerm, postrm files;

That those scriptlets are installed to /debian is not what we expect at
all. The scripts are for package install/upgrade/uninstall moments only
and supposed to be stored in apt/dpkg internal database.

> since running verify.PMLnx or uninstall.PMLnx cause incompatible paths
to be added on the filesystem, or crontab to be changed, which aren't
allowable as per the packaging policy.

If we decide to move home for PMUbuntu, then there will be no
incompatible paths created by the final .PMLnx programs. PM item in
crontab will also be relocated into /etc/cron.* as per your request.

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

Title:
  [needs-packaging] ibmpmlinux

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

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


[Bug 1502345] Re: [NOVATECH LTD PERSONAL COMPUTER] suspend/resume failure

2015-10-02 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/1502345

Title:
  [NOVATECH LTD PERSONAL COMPUTER] suspend/resume failure

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

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


[Bug 1497534] Re: apt-get crashed with SIGSEGV in strlen()

2015-10-02 Thread Steve Langasek
StackTraceSource.txt shows the failure is because at the time
debTranslationsIndex::Exists() is called, Language points to an invalid
string.

Tracking this down will be non-trivial without a reproducer case.  Is
anyone who's seen this bug able to reproduce it at will?  This bug
report shows the problem was triggered by running 'apt-get --yes
autoremove' as root (in an Italian locale).  If the problem is
reproducible, can someone please try running apt-get under valgrind?

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

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

Title:
  apt-get crashed with SIGSEGV in strlen()

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

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


[Bug 1468842] Re: Middle click with mouse wheel not working on Ubuntu 15.04

2015-10-02 Thread Lysenko Denis
Thank you for taking the time to report this bug.  We have tried to
recreate this on the latest release of Ubuntu and cannot reproduce it.
This bug is being marked as Invalid.  If you believe the problem to
still exist in the latest version of Ubuntu please comment on why that
is the case and change the bug status to NEW.

** Changed in: compiz (Ubuntu)
   Status: New => Invalid

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

Title:
  Middle click with mouse wheel not working on Ubuntu 15.04

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

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


[Bug 1432871] Re: `df` shows bind mounts instead of real mounts.

2015-10-02 Thread Dave Chiluk
** Description changed:

  [Impact]
  
   * df displays bind mounts instead of "real" mounts if the bind mount is
  mounted to a shorter directory.
  
   * justification - This is a change of behavior from precise
  
   * Explanation - This patch checks to see if the source directory of a
  mount is contains the destination directory of the mount it's replacing
  *(check if it's bind mount from the original directory).
  
  [Test Case]
  
   * $ mount
  
- 192.168.1.2:/raid on /raid type nfs 
+ 192.168.1.2:/raid on /raid type nfs
  /dev/sdc5 on /data type ext4 (rw)
  
  /data/a on /a type none (rw,bind)
  /raid/temp on /b type none (rw,bind)
  
  $df
  Filesystem   1K-blocks   Used  Available Use% Mounted on
  
  /data/a  449830616  229975284  196982196  54% /a
  /raid/temp  7752072192 5581343744 1780023296  76% /b
  
  
  I'd expect to see the real mount prioritized over the bind mount.  Like so.
  $df
  Filesystem   1K-blocks   Used  Available Use% Mounted on
  
  /dev/sdc5449830616  229975284  196982196  54% /data
  192.168.1.2:/raid   7752072192 5581438976 1779929088  76% /raid
  
  
  [Regression Potential]
  
-  * Patch is not upstream, and will not be upstreamed *(see other info)
+  * Patch is upstreamed.
  
-  * df command could stop working if I wrote the patch poorly.  df might
- not process mounts correctly.
+  * df command now relies on /proc/self/mountinfo
  
  [Other Info]
  
-  * The behavior of df, mount and similar number of other commands has changed 
going forward.  Previously these commands all processed /etc/mtab which was 
maintained by the mount command.  Going forward they still process /etc/mtab, 
but this is simply a symlink to /proc/mounts now which is maintained by the 
kernel and likely significantly more accurate.  Unlike the mount command, the 
kernel makes no distinction between bind mounts and normal mounts.  This is 
evident by the fact that you can mount a device, bind mount from that device, 
and then unmount the original mount.  The default behavior of df in this case 
is to simply pick the mounted directory for a device that is the shortest since 
it has no other information to go on from /proc/mounts.
-  * Theoretically df, mount and a number of other commands could be modified 
to run ioctl commands to determine if the mount is from a root inode of the 
mounted filesystem to determine preference, but that is really more of an 
upstream exercise.
+  * The behavior of df, mount and similar number of other commands has
+ changed going forward.  Previously these commands all processed
+ /etc/mtab which was maintained by the mount command.  Going forward they
+ still process /etc/mtab, but this is simply a symlink to /proc/mounts
+ now which is maintained by the kernel and slightly more accurate.
+ Unlike the mount command, the kernel makes no distinction between bind
+ mounts and normal mounts.  This is evident by the fact that you can
+ mount a device, bind mount from that device, and then unmount the
+ original mount.  The default behavior of df in this case is to simply
+ pick the mounted directory for a device that is the shortest since it
+ has no other information to go on from /proc/mounts.  Moving to using
+ /proc/self/mountinfo resolves this issue, and is what upstream is doing
+ moving forward.
  
  Original bug.
  
  Depending on mount path length df sometimes prioritizes showing bind mounts 
over real mounts
  
  for example.
  $ mount
  
  192.168.1.2:/raid on /raid type nfs 
(rw,nosuid,nodev,noexec,vers=4,addr=192.168.1.2,clientaddr=192.168.1.3)
  /dev/sdc5 on /data type ext4 (rw)
  
  /data/a on /a type none (rw,bind)
  /raid/temp on /b type none (rw,bind)
  
  $df
  Filesystem   1K-blocks   Used  Available Use% Mounted on
  
  /data/a  449830616  229975284  196982196  54% /a
  /raid/temp  7752072192 5581343744 1780023296  76% /b
  
  
  I'd expect to see the real mount prioritized over the bind mount.  Like so.
  $df
  Filesystem   1K-blocks   Used  Available Use% Mounted on
  
  /dev/sdc5449830616  229975284  196982196  54% /data
  192.168.1.2:/raid   7752072192 5581438976 1779929088  76% /raid
  

** Description changed:

  [Impact]
  
   * df displays bind mounts instead of "real" mounts if the bind mount is
  mounted to a shorter directory.
  
-  * justification - This is a change of behavior from precise
+  * justification - When trusty moved to using /proc/mounts this changed
+ behavior from precise.  Additionally it doesn't make sense that a bind
+ mount should show up in df over a real root mount.
  
-  * Explanation - This patch checks to see if the source directory of a
- mount is contains the destination directory of the mount it's replacing
- *(check if it's bind mount from the original directory).
+  * Explanation - These patches change behavior of df to rely 

[Bug 940927] Re: HUD is using Korean/Chinese input method's shortcut key

2015-10-02 Thread Alex Baggott
Thank you for taking the time to report this bug. We have tried to
recreate this on the latest release of Ubuntu and cannot reproduce it.
This bug is being marked as Invalid. If you believe the problem to still
exist in the latest version of Ubuntu, please comment on why that is the
case and change the bug status to NEW.

** Changed in: unity
   Status: Confirmed => Invalid

** Changed in: unity (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/940927

Title:
  HUD is using Korean/Chinese input method's shortcut key

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

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


[Bug 1445595] Re: Empty trash from Launcher results in Nautilus window opening

2015-10-02 Thread Bernadette Addison
Experiencing the same behavior on brand new Ubuntu 15.04 64-bit
installation. Empty Trash always opens Nautilus. This did not happen in
14.04

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

Title:
  Empty trash from Launcher results in Nautilus window opening

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

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


[Bug 1502330] Re: bluetooh - GPS navigator - pairing trouble

2015-10-02 Thread mna
** Attachment added: "list.txt"
   
https://bugs.launchpad.net/ubuntu/+source/ubuntu-system-settings/+bug/1502330/+attachment/4482293/+files/list.txt

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

Title:
  bluetooh - GPS navigator - pairing trouble

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

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


[Bug 1502330] Re: bluetooh - GPS navigator - pairing trouble

2015-10-02 Thread mna
** Attachment added: "blouetoothd.log"
   
https://bugs.launchpad.net/ubuntu/+source/ubuntu-system-settings/+bug/1502330/+attachment/4482294/+files/blouetoothd.log

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

Title:
  bluetooh - GPS navigator - pairing trouble

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

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


[Bug 1502279] Re: package libreoffice-common (not installed) failed to install/upgrade: tentative de remplacement de « /usr/bin/soffice », qui appartient aussi au paquet openoffice-debian-menus 4.1.1-

2015-10-02 Thread Björn Michaelsen
openoffice-debian-menus is a third-party package, they should take care
of not colliding with supported packages in main.

** Changed in: libreoffice (Ubuntu)
   Status: New => Invalid

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

Title:
  package libreoffice-common (not installed) failed to install/upgrade:
  tentative de remplacement de « /usr/bin/soffice », qui appartient
  aussi au paquet openoffice-debian-menus 4.1.1-9775

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

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

[Bug 1502238] Re: bridge does not forward neighbor solicitation packets

2015-10-02 Thread Brad Figg
** Changed in: linux (Ubuntu)
   Status: Incomplete => Triaged

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

Title:
  bridge does not forward neighbor solicitation packets

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

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


[Bug 1502339] [NEW] Either security update crash or wine module addition crash

2015-10-02 Thread Jeff
Public bug reported:

Ubuntu 14.04
Was installing security updates and trying to troubleshoot Wine not lauching 
World of Warships at same time.  Security updates just stopped responding with 
error messages in details that I did not take down.  Also tried to add optional 
add-on for Wine (don't remember which) that also gave error message.

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: linux-image-3.16.0-50-generic 3.16.0-50.66~14.04.1
ProcVersionSignature: Ubuntu 3.16.0-49.65~14.04.1-generic 3.16.7-ckt15
Uname: Linux 3.16.0-49-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.15
AptdaemonVersion: 1.1.1-1ubuntu5.2
Architecture: amd64
Date: Fri Oct  2 17:11:42 2015
DuplicateSignature: 
package:linux-image-3.16.0-50-generic:3.16.0-50.66~14.04.1:package 
linux-image-3.16.0-50-generic is already installed and configured
ErrorMessage: package linux-image-3.16.0-50-generic is already installed and 
configured
InstallationDate: Installed on 2015-05-23 (132 days ago)
InstallationMedia: Ubuntu 14.04.2 LTS "Trusty Tahr" - Release amd64 (20150218.1)
RelatedPackageVersions:
 dpkg 1.17.5ubuntu5.4
 apt  1.0.1ubuntu2.10
SourcePackage: dpkg
Title: package linux-image-3.16.0-50-generic 3.16.0-50.66~14.04.1 failed to 
install/upgrade: package linux-image-3.16.0-50-generic is already installed and 
configured
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: already-installed amd64 apport-package trusty

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

Title:
  Either security update crash or wine module addition crash

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

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


[Bug 1498805] Re: Please merge usb-modeswitch 2.2.5+repack0-1 from Debian unstable/testing - current 2.2.3 version in Wily has regressions with lots of Huawei modems

2015-10-02 Thread Mathieu Trudel-Lapierre
I updated usb-modeswitch and tested it on my ZTE, Huawei, and Sierra
devices, but I don' t have a Huawei modem affected by the issues noted.
Could you please try it on your end and let me know if this works
appropriately for you?

https://launchpad.net/~mathieu-tl/+archive/ubuntu/ppa/+sourcepub/5474428
/+listing-archive-extra

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

Title:
  Please merge usb-modeswitch 2.2.5+repack0-1 from Debian
  unstable/testing - current 2.2.3 version in Wily has regressions with
  lots of Huawei modems

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

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


[Bug 1501428] Re: TrustStoreModel fails to expose application name for non-click app

2015-10-02 Thread Olivier Tilloy
That’s because the trust store currently whitelists unconfined applications. 
The prompt you’re getting is from the browser itself, and you’ll get one per 
domain. The browser should remember your decision, but it doesn’t (that’s a 
known issue: bug #1425143).
If you test with silo 59 (i.e. browser confined), you will get the system 
prompt once for webbrowser-app, and it should be added to the trust store’s db.

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

Title:
  TrustStoreModel fails to expose application name for non-click app

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

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

[Bug 1498407] Re: Every second time a menu item is selected window exits from maximized state

2015-10-02 Thread Lysenko Denis
Confirm, in 15.10 it is working as expected. Tested with Firefox.

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

Title:
  Every second time a menu item is selected window exits from maximized
  state

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

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


<    2   3   4   5   6   7   8   9   10   >