[Bug 1528466] [NEW] Mellanox ConnectX4 MTU limits: max and min

2015-12-21 Thread Talat Batheesh
Public bug reported:


Max MTU limit should be 9978 

Tested on Ubuntu 14.04.4 daily build, this issue exist also in 15.10.

reproduce

# ifconfig p2p1  mtu 900   
SIOCSIFMTU: Invalid argument   

# dmesg

[62898.559808] mlx5_core :20:00.0 p2p1: mlx5e_change_mtu: Bad MTU (900) 
> (1) Max
[63058.512668] command failed, status bad parameter(0x3), syndrome 0x648afc


Upstream commit that fix the issue  

commit 60825c35bf023553f8524f6695f176236e54df97  
Author: Doron Tsur  
Date:   Thu Nov 12 19:35:27 2015 +0200   

net/mlx5e: Max mtu comparison fix
 
On change mtu the driver compares between hardware queried mtu and
software requested mtu. We need to compare between software   
representation of the queried mtu and the requested mtu.  
  
Fixes: facc9699f0fe ('net/mlx5e: Fix HW MTU settings')
Signed-off-by: Doron Tsur
Signed-off-by: Saeed Mahameed
Signed-off-by: Or Gerlitz  
Signed-off-by: David S. Miller   


# cat /etc/os-release
NAME="Ubuntu"
VERSION="14.04.3 LTS, Trusty Tahr"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 14.04.3 LTS"
VERSION_ID="14.04"
HOME_URL="http://www.ubuntu.com/";
SUPPORT_URL="http://help.ubuntu.com/";
BUG_REPORT_URL="http://bugs.launchpad.net/ubuntu/";

# uname -r
4.2.0-22-generic

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

** Attachment added: "net/mlx5e: Max mtu comparison fix"
   
https://bugs.launchpad.net/bugs/1528466/+attachment/4538790/+files/0001-net-mlx5e-Max-mtu-comparison-fix.patch

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

Title:
  Mellanox ConnectX4 MTU limits: max and min

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

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


[Bug 961166] Re: lb_binary_disk doesn't check compression of the initramfs

2015-12-21 Thread Shih-Yuan Lee
The patch contains the following commits.

>From 0aab94aac9a07f450dd69e7897428b28c27879a4 Mon Sep 17 00:00:00 2001
From: Daniel Baumann 
Date: Thu, 21 Jul 2011 17:06:54 +0200
Subject: [PATCH] Calling mkdir with -p to avoid build failures with multiple
 kernels on disk info in ubuntu mode, thanks to Cody A.W. Somerville
 .

---
 scripts/build/lb_binary_disk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/build/lb_binary_disk b/scripts/build/lb_binary_disk
index a28a0fe..b592b88 100755
--- a/scripts/build/lb_binary_disk
+++ b/scripts/build/lb_binary_disk
@@ -88,7 +88,7 @@ case "${LB_INITRAMFS}" in
casper)
for INITRD in binary/casper/initrd.img*
do
-   mkdir uuid
+   mkdir -p uuid
cd uuid
 
zcat "../${INITRD}" | cpio --quiet -id conf/uuid.conf
-- 
1.9.1

>From 8316bd2d9813cbc7b2b8288b6618eec2c2004028 Mon Sep 17 00:00:00 2001
From: Daniel Baumann 
Date: Thu, 21 Jul 2011 17:24:08 +0200
Subject: [PATCH] Correcting uuid extraction from initrds in ubuntu mode to
 work from within binary so that it is cleaned up by lb_clean on failed
 builds.

---
 scripts/build/lb_binary_disk | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/scripts/build/lb_binary_disk b/scripts/build/lb_binary_disk
index b592b88..b1c4728 100755
--- a/scripts/build/lb_binary_disk
+++ b/scripts/build/lb_binary_disk
@@ -86,12 +86,12 @@ fi
 
 case "${LB_INITRAMFS}" in
casper)
-   for INITRD in binary/casper/initrd.img*
+   for INITRD in $(ls binary/casper/initrd.img* > /dev/null 2>&1)
do
-   mkdir -p uuid
-   cd uuid
+   mkdir -p binary/uuid
+   cd binary/uuid
 
-   zcat "../${INITRD}" | cpio --quiet -id conf/uuid.conf
+   zcat "../../${INITRD}" | cpio --quiet -id conf/uuid.conf
 
if [ -e conf/uuid.conf ]
then
@@ -100,8 +100,8 @@ case "${LB_INITRAMFS}" in
Echo_warning "Failed to find casper uuid.conf 
in '${INITRD}'"
fi
 
-   cd ..
-   rm -rf uuid
+   cd ${OLDPWD}
+   rm -rf binary/uuid
done
;;
 esac
-- 
1.9.1

>From dfaa4a67b55613087cd7beb80fb386a85f1c84f8 Mon Sep 17 00:00:00 2001
From: Daniel Baumann 
Date: Wed, 7 Sep 2011 14:16:05 +0200
Subject: [PATCH] Doing uuid.conf extraction from initrd with the correct
 decompression utility (Closes: #637979).

---
 scripts/build/lb_binary_disk | 14 +-
 1 file changed, 13 insertions(+), 1 deletion(-)

diff --git a/scripts/build/lb_binary_disk b/scripts/build/lb_binary_disk
index a7ddef2..1dc8d82 100755
--- a/scripts/build/lb_binary_disk
+++ b/scripts/build/lb_binary_disk
@@ -91,7 +91,19 @@ case "${LB_INITRAMFS}" in
mkdir -p binary/uuid
cd binary/uuid
 
-   zcat "../../${INITRD}" | cpio --quiet -id conf/uuid.conf
+   case "${LB_INITRAMFS_COMPRESSION}" in
+   gzip)
+   zcat "../../${INITRD}" | cpio --quiet 
-id conf/uuid.conf
+   ;;
+
+   bzip2)
+   bzcat "../../${INITRD}" | cpio --quiet 
-id conf/uuid.conf
+   ;;
+
+   lzma)
+   lzcat "../../${INITRD}" | cpio --quiet 
-id conf/uuid.conf
+   ;;
+   esac
 
if [ -e conf/uuid.conf ]
then
-- 
1.9.1

>From 2eab8fec682e896cd5e2c1fd48386d43ce6f0139 Mon Sep 17 00:00:00 2001
From: Daniel Baumann 
Date: Thu, 12 Jan 2012 11:57:45 +0100
Subject: [PATCH] Correcting wrong and incompatible loop for casper initrds in
 binary_disk.

---
 scripts/build/lb_binary_disk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/build/lb_binary_disk b/scripts/build/lb_binary_disk
index 96e2233..3f44a4b 100755
--- a/scripts/build/lb_binary_disk
+++ b/scripts/build/lb_binary_disk
@@ -93,7 +93,7 @@ fi
 
 case "${LB_INITRAMFS}" in
casper)
-   for INITRD in $(ls binary/casper/initrd.img* > /dev/null 2>&1)
+   for INITRD in binary/casper/initrd.img*
do
mkdir -p binary/uuid
cd binary/uuid
-- 
1.9.1

>From 7f91738540715f4e0d434383b03659926f7d68b1 Mon Sep 17 00:00:00 2001
From: Daniel Baumann 
Date: Tue, 7 Feb 2012 10:12:52 +0100
Subject: [PATCH] Correcting destination path for uuid.conf when using casper
 in binary_disk, thanks to Luigi Capriotti  (Closes:
 #

[Bug 1470700] Re: QNetworkAccessManager hangs when in flight mode

2015-12-21 Thread Timo Jyrinki
** Also affects: qtbase-opensource-src (Ubuntu RTM)
   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/1470700

Title:
  QNetworkAccessManager hangs when in flight mode

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qtbase-opensource-src/+bug/1470700/+subscriptions

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


[Bug 1512135] Re: Cannot add Telegram account to Telepathy

2015-12-21 Thread Balaam's Miracle
Then where is it supposed to be, Jorge?

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

Title:
  Cannot add Telegram account to Telepathy

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ktp-contact-list/+bug/1512135/+subscriptions

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


[Bug 1479036] Re: /usr/bin/media-hub-server:6:__gnu_cxx::__verbose_terminate_handler:__cxxabiv1::__terminate:std::terminate:__cxxabiv1::__cxa_throw:core::ubuntu::media::HashedKeyedPlayerStore::player_

2015-12-21 Thread Łukasz Zemczak
This bug was fixed in the package media-hub
4.0.0+15.04.20151218-0ubuntu1 in https://launchpad.net/~ci-train-ppa-
service/+archive/ubuntu/stable-phone-overlay

---

media-hub (4.0.0+15.04.20151218-0ubuntu1) vivid; urgency=medium

  * Fix bug #1479036 which prevents the out_of_range exception from
causing media-hub-server from crashing when a player key is not
found (LP: #1479036)

 -- Jim Hodapp   Fri, 18 Dec 2015 18:11:24
+


** Changed in: media-hub (Ubuntu RTM)
   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/1479036

Title:
  /usr/bin/media-hub-
  
server:6:__gnu_cxx::__verbose_terminate_handler:__cxxabiv1::__terminate:std::terminate:__cxxabiv1::__cxa_throw:core::ubuntu::media::HashedKeyedPlayerStore::player_for_key

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

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


[Bug 616447] Re: Launcher - Quit does not actually quit applications

2015-12-21 Thread Didier Roche
The patch looks excellent!

Just a last nitpick: you did see that all other patches in
debian/patches ends with .patch, mind renaming yours to end with a
.patch as well? (and don't forget to do the same change in
debian/patches/series).

Then, just regenerate a debdiff and we should be good to go!

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

Title:
  Launcher - Quit does not actually quit applications

To manage notifications about this bug go to:
https://bugs.launchpad.net/ayatana-design/+bug/616447/+subscriptions

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


[Bug 1528297] Re: libvpx FTBFS with gcc 5.3 on armhf

2015-12-21 Thread Olivier Tilloy
Thanks for your analysis and for the patch Colin! This kind of subtlety on 
standards compliance goes beyond my C knowledge.
I’ll apply the patch to oxide and will test building it. If it works it should 
be good enough until the situation can be clarified by someone learned in C 
standards.

I wonder why the same code compiles just fine on amd64 and x86 with the
same compiler though?

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

Title:
  libvpx FTBFS with gcc 5.3 on armhf

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

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

[Bug 1525402] Re: "Input Sources" button looks really out of place in Keyboard settings

2015-12-21 Thread Tim
Can you attach a screenshot when using adwaita.

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

Title:
  "Input Sources" button looks really out of place in Keyboard settings

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

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


[Bug 1473142] Re: sh: 1: /lib/libc.so.6: not found

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

** Changed in: hardinfo (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/1473142

Title:
  sh: 1: /lib/libc.so.6: not found

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

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


[Bug 1528444] Re: Sync xserver-xorg-video-amdgpu 1.0.0-1 (universe) from Debian unstable (main)

2015-12-21 Thread Logan Rosen
This bug was fixed in the package xserver-xorg-video-amdgpu - 1.0.0-1
Sponsored for Jackson Doak (noskcaj)

---
xserver-xorg-video-amdgpu (1.0.0-1) unstable; urgency=medium

  [ Andreas Boll ]
  * First upstream release.
  * Let uscan verify tarball signatures.
  * Replace non-existing Suggests: linux-firmware with new firmware-amd-
graphics.
  * Remove unused libpciaccess-dev build-dep.
  * Update list of supported chips.
  * Use https for Vcs-* fields.

 -- Timo Aaltonen   Tue, 24 Nov 2015 15:46:07 +0200

xserver-xorg-video-amdgpu (0.0.01~git20150807-1) unstable; urgency=low

  * Initial release (Closes: #795686)

 -- Timo Aaltonen   Sun, 16 Aug 2015 11:26:30 +0300

** Changed in: xserver-xorg-video-amdgpu (Ubuntu)
   Status: New => Fix Released

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

Title:
  Sync xserver-xorg-video-amdgpu 1.0.0-1 (universe) from Debian unstable
  (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-amdgpu/+bug/1528444/+subscriptions

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


[Bug 961166] Re: lb_binary_disk doesn't check compression of the initramfs

2015-12-21 Thread Shih-Yuan Lee
** Changed in: live-build (Ubuntu)
   Status: Triaged => 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/961166

Title:
  lb_binary_disk doesn't check compression of the initramfs

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

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


[Bug 1528451] Re: package jackd2 1.9.10+20140719git3eb0ae6a~dfsg-2 failed to install/upgrade: package is in a very bad inconsistent state; you should reinstall it before attempting configuration

2015-12-21 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/1528451

Title:
  package jackd2 1.9.10+20140719git3eb0ae6a~dfsg-2 failed to
  install/upgrade: package is in a very bad inconsistent state; you
  should  reinstall it before attempting configuration

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

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


[Bug 1508281] Re: Wifi disconnects every few minutes

2015-12-21 Thread Jim Breen
The problem seems to have been solved in 15.10. Not all is totally
correct with the WiFi, but this disconnect problem has now gone away.

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

Title:
  Wifi disconnects every few minutes

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

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


[Bug 1528451] [NEW] package jackd2 1.9.10+20140719git3eb0ae6a~dfsg-2 failed to install/upgrade: package is in a very bad inconsistent state; you should reinstall it before attempting configuration

2015-12-21 Thread Russ Andrade
Public bug reported:



ProblemType: Package
DistroRelease: Ubuntu 15.04
Package: jackd2 1.9.10+20140719git3eb0ae6a~dfsg-2
ProcVersionSignature: Ubuntu 3.19.0-39.44-generic 3.19.8-ckt9
Uname: Linux 3.19.0-39-generic x86_64
ApportVersion: 2.17.2-0ubuntu1.8
Architecture: amd64
Date: Mon Dec 21 21:45:33 2015
DuplicateSignature: package:jackd2:1.9.10+20140719git3eb0ae6a~dfsg-2:package is 
in a very bad inconsistent state; you should  reinstall it before attempting 
configuration
ErrorMessage: package is in a very bad inconsistent state; you should  
reinstall it before attempting configuration
InstallationDate: Installed on 2015-12-08 (14 days ago)
InstallationMedia: Ubuntu-GNOME 15.04 "Vivid Vervet" - Release amd64 (20150422)
RelatedPackageVersions:
 dpkg 1.17.25ubuntu1.1
 apt  1.0.9.7ubuntu4.2
SourcePackage: jackd2
Title: package jackd2 1.9.10+20140719git3eb0ae6a~dfsg-2 failed to 
install/upgrade: package is in a very bad inconsistent state; you should  
reinstall it before attempting configuration
UpgradeStatus: No upgrade log present (probably fresh install)
modified.conffile..etc.bash.completion.d.jackd: [deleted]

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


** Tags: amd64 apport-package vivid

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

Title:
  package jackd2 1.9.10+20140719git3eb0ae6a~dfsg-2 failed to
  install/upgrade: package is in a very bad inconsistent state; you
  should  reinstall it before attempting configuration

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

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


[Bug 1523698] Re: indicator-session is leaking memory on ubuntu 15.10

2015-12-21 Thread kevin
Me too.

Fresh installation of 15.10 and old /home partition.
More worse than listed by @Jelle De Loecker (skerit) have listed in #5.

Had to reset many times, if I missed to kill the indicator-session-
service process in every minute.

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

Title:
  indicator-session is leaking memory on ubuntu 15.10

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

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


[Bug 1528444] [NEW] Sync xserver-xorg-video-amdgpu 1.0.0-1 (universe) from Debian unstable (main)

2015-12-21 Thread Jackson Doak
Public bug reported:

Please sync xserver-xorg-video-amdgpu 1.0.0-1 (universe) from Debian
unstable (main)

Explanation of the Ubuntu delta and why it can be dropped:
  * Sync from debian git.
Debian has now released this package, no need for our old version

Changelog entries since current xenial version
0.0.01~git20150807-0ubuntu1:

xserver-xorg-video-amdgpu (1.0.0-1) unstable; urgency=medium

  [ Andreas Boll ]
  * First upstream release.
  * Let uscan verify tarball signatures.
  * Replace non-existing Suggests: linux-firmware with new firmware-amd-
graphics.
  * Remove unused libpciaccess-dev build-dep.
  * Update list of supported chips.
  * Use https for Vcs-* fields.

 -- Timo Aaltonen   Tue, 24 Nov 2015 15:46:07 +0200

xserver-xorg-video-amdgpu (0.0.01~git20150807-1) unstable; urgency=low

  * Initial release (Closes: #795686)

 -- Timo Aaltonen   Sun, 16 Aug 2015 11:26:30 +0300

** Affects: xserver-xorg-video-amdgpu (Ubuntu)
 Importance: Wishlist
 Status: New

** Changed in: xserver-xorg-video-amdgpu (Ubuntu)
   Importance: Undecided => Wishlist

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

Title:
  Sync xserver-xorg-video-amdgpu 1.0.0-1 (universe) from Debian unstable
  (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-amdgpu/+bug/1528444/+subscriptions

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


[Bug 1525293] Re: "window->screen()->physicalDotsPerInch() / 25.4" may be negative on xenial

2015-12-21 Thread Daniel van Vugt
Invalid for Mir. Unless you can show Mir returning bad data using the
'mirout' command or such.

Mir will indeed have some DisplayConfigurationOutput structures whose
contents are not fully populated. However QtMir should be ignoring those
structures on the basis of the 'used' and 'connected' flags being false.
Admittedly the header file docs don't make this obvious.

** Changed in: mir
   Status: Incomplete => Invalid

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

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

Title:
  "window->screen()->physicalDotsPerInch() / 25.4" may be negative on
  xenial

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

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


[Bug 1523900] Re: Buffer leak during repeated mirscreencasts causes server to be killed

2015-12-21 Thread Daniel van Vugt
IIRC, the image data is ref-counted internally in the driver (per
Khronos extension docs). So you not only need to remember to destroy the
image, but also need to delete all associated GL textures. Only when all
such references are gone will the buffer be freed.

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

Title:
  Buffer leak during repeated mirscreencasts causes server to be killed

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

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


[Bug 1527661] Re: Create new instance boot from rbd image failed (no image created in VMS pools), after upgrade lastest kilo build

2015-12-21 Thread prescolt
edit, I find problem cause by  NFS file system  can not lock file,  reboot NFS 
service have no luck, I must reboot NFS server
Now it worked correctly.
This problem cause by update NFS service

** Changed in: nova
   Status: New => Invalid

** Changed in: nova (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/1527661

Title:
  Create new instance  boot from rbd image failed (no image created in
  VMS pools),after upgrade lastest kilo build

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

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


[Bug 1301717] Re: Fatal Error: Failed to load libsteam.so

2015-12-21 Thread indymaynard
This affects me to this day. Manual creation of the folders gets the
install done, but steam.sh throws a segmentation fault. Maybe another
folder needs to be created? I haven't been able to play Steam on Linux
for almost two years. This is getting frustrating.

Error: Couldn't find bootstrap, it's not safe to reset Steam. Please
contact technical support.

Anyone else with this issue?

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

Title:
  Fatal Error: Failed to load libsteam.so

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

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


[Bug 1507232] Re: Mangler mangling hostname/port information in wily

2015-12-21 Thread Chris Y.
** Also affects: mangler (Arch Linux)
   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/1507232

Title:
  Mangler mangling hostname/port information in wily

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

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


[Bug 1377668] Re: pidgin cannot login to XMPP service ("Not authorized")

2015-12-21 Thread Launchpad Bug Tracker
[Expired for pidgin (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  pidgin cannot login to XMPP service ("Not authorized")

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

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


[Bug 1054732] Re: [LENOVO 4298R86] suspend/resume failure

2015-12-21 Thread Launchpad Bug Tracker
[Expired for linux (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  [LENOVO 4298R86] suspend/resume failure

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

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


[Bug 1268124] Re: Pidgin keeps crashing at random times

2015-12-21 Thread Launchpad Bug Tracker
[Expired for pidgin (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  Pidgin keeps crashing at random times

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

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


[Bug 933474] Re: XMPP account can't login: "not authorized"

2015-12-21 Thread Launchpad Bug Tracker
[Expired for pidgin (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  XMPP account can't login: "not authorized"

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

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


[Bug 1160336] Re: SOAP Client failed to load entry

2015-12-21 Thread Launchpad Bug Tracker
[Expired for php5 (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  SOAP Client failed to load entry

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

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


[Bug 1195286] Re: Attempting a voice call with any facebook contact crashes pidgin.

2015-12-21 Thread Launchpad Bug Tracker
[Expired for pidgin (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  Attempting a voice call with any facebook contact crashes pidgin.

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

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


[Bug 1480785] Re: ofono does not start after upgrade (initclt stalls when sending an event)

2015-12-21 Thread Launchpad Bug Tracker
[Expired for upstart (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  ofono does not start after upgrade (initclt stalls when sending an
  event)

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

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


[Bug 1468778] Re: Unable to login to ICQ after changing pass/attaching email

2015-12-21 Thread Launchpad Bug Tracker
[Expired for pidgin (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  Unable to login to ICQ after changing pass/attaching email

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

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


[Bug 1492229] Re: automount error due to syntax error in nsswitch.conf after ipa-client-install

2015-12-21 Thread Launchpad Bug Tracker
[Expired for freeipa (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  automount error due to syntax error in nsswitch.conf after ipa-client-
  install

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

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


[Bug 1354621] Re: Creating Skype account crashes Pidgin

2015-12-21 Thread Launchpad Bug Tracker
[Expired for pidgin (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  Creating Skype account crashes Pidgin

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

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


[Bug 1508281] Re: Wifi disconnects every few minutes

2015-12-21 Thread Launchpad Bug Tracker
[Expired for linux (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  Wifi disconnects every few minutes

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

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


[Bug 1297144] Re: [Lenovo ThinkPad X230] Invisible cursor after resume from suspend

2015-12-21 Thread Launchpad Bug Tracker
[Expired for xorg (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  [Lenovo ThinkPad X230] Invisible cursor after resume from suspend

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

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


[Bug 1508503] Re: package linux-image-3.19.0-30-generic 3.19.0-30.34 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/zz-update-grub exited with return code 10

2015-12-21 Thread Launchpad Bug Tracker
[Expired for grub (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  package linux-image-3.19.0-30-generic 3.19.0-30.34 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/zz-update-grub
  exited with return code 10

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

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


[Bug 1509025] Re: System update from Kubuntu 15.04 to 15.10 fails.

2015-12-21 Thread Launchpad Bug Tracker
[Expired for ubuntu-release-upgrader (Ubuntu) because there has been no
activity for 60 days.]

** Changed in: ubuntu-release-upgrader (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  System update from Kubuntu 15.04 to 15.10 fails.

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

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


[Bug 1508818] Re: making a new administrator user without a password and then setting the password after logging in with that user causes lock not to work and logout doesn't request password to login

2015-12-21 Thread Launchpad Bug Tracker
[Expired for lxsession (Ubuntu) because there has been no activity for
60 days.]

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

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

Title:
  making a new administrator user without a password and then setting
  the password after logging in with that user causes lock not to work
  and logout doesn't request password to login with that user

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

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


[Bug 1508883] Re: not updating

2015-12-21 Thread Launchpad Bug Tracker
[Expired for ubuntu-release-upgrader (Ubuntu) because there has been no
activity for 60 days.]

** Changed in: ubuntu-release-upgrader (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  not updating

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

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


[Bug 1528429] [NEW] cant upgrade from 14.04 to 15.04

2015-12-21 Thread Nick Weddle
Public bug reported:

i am trying to update and this is the last try im just gonna start fresh

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: ubuntu-release-upgrader-core 1:0.220.8
ProcVersionSignature: Ubuntu 3.19.0-42.48~14.04.1-generic 3.19.8-ckt10
Uname: Linux 3.19.0-42-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.19
Architecture: amd64
CrashDB: ubuntu
Date: Mon Dec 21 23:11:53 2015
InstallationDate: Installed on 2015-12-10 (11 days ago)
InstallationMedia: Ubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64 (20150805)
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=en_US
 TERM=xterm
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: ubuntu-release-upgrader
UpgradeStatus: Upgraded to trusty on 2015-12-22 (0 days ago)
VarLogDistupgradeTermlog:
 
mtime.conffile..etc.update.manager.release.upgrades: 2015-12-19T20:24:49.813461

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


** Tags: amd64 apport-bug dist-upgrade third-party-packages trusty

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

Title:
  cant upgrade from 14.04 to 15.04

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

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


[Bug 1528416] Re: gedit deadlocks on opening Open or Save As dialog

2015-12-21 Thread Tim
** Also affects: ubuntu-gnome
   Importance: Undecided
   Status: New

** Changed in: ubuntu-gnome
Milestone: None => xenial

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

Title:
  gedit deadlocks on opening Open or Save As dialog

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

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


[Bug 1523900] Re: mirscreencast crashes, fails to take screenshot

2015-12-21 Thread Cemil Azizoglu
>How would leaking the image cause a crash?

Server runs out of memory and is killed. Meanwhile, mirscreencast client
fails to connect since there is no server.

** Summary changed:

- mirscreencast crashes, fails to take screenshot
+ Buffer leak during repeated mirscreencasts causes server to be killed

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

Title:
  Buffer leak during repeated mirscreencasts causes server to be killed

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

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


[Bug 1528428] [NEW] "Computer" or / location has to be added as a manual bookmark in 16.04

2015-12-21 Thread Andrew
Public bug reported:

Just upgraded from 14.04 to 16.04 and the usual side-panel shortcut to
the filesystem is missing.

I see these:

Recent
Home
Desktop
Documents
Downloads
Music
Pictures
Videos
Rubbish Bin





+ Other Locations

I would suggest to place either "Filesystem" or "Computer" between
bookmarks and other locations.

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

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

Title:
  "Computer" or / location has to be added as a manual bookmark in 16.04

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

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


[Bug 961166] Re: lb_binary_disk doesn't check compression of the initramfs

2015-12-21 Thread Shih-Yuan Lee
There is no such issue for trusty, vivid, wily and xenial.
We only need to fix this issue for precise.

** Changed in: live-build (Ubuntu)
 Assignee: (unassigned) => Shih-Yuan Lee (fourdollars)

** Tags added: precise

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

Title:
  lb_binary_disk doesn't check compression of the initramfs

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

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


[Bug 1528304] Re: Mir graphics drivers don't automatically upgrade when libmir* is manually upgraded, resulting in broken system

2015-12-21 Thread Daniel van Vugt
I think a virtual package ("Provides") might be the right answer here.
That is mir-platform-graphics-android8 (and mesa etc) would then
"Provide" a virtual "mir-server-graphics-8". And libmirserverN would
depend on virtual package "mir-server-graphics-8" that is only supplied
by installing one or more driver packages.

[https://www.debian.org/doc/debian-policy/ch-relationships.html]

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

Title:
  Mir graphics drivers don't automatically upgrade when libmir* is
  manually upgraded, resulting in broken system

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

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


[Bug 1519463] Re: Cannot upgrade from Ubuntu 14.04 to 16.04

2015-12-21 Thread Andrew
Hello. I just did an upgrade from 14.04 to 16.04.

My PC locked up during the process of dpkg setting up packages. I reset
the machine and then ran this command:

sudo dpkg --configure -a

mySQL package failed to install and so I had to find that process and
pkill the start process (from an alt terminal), then dpkg would
continue.

I was left with an unstable system and could not obtain any network
connection, eth0 or wlan0

I then ran sudo dpkg -C
Output:
The following packages have been unpacked but not yet configured.
They must be configured using dpkg --configure or the configure
menu option in dselect for them to work:
 apparmor User-space parser utility for AppArmor
 console-setupconsole font and keymap setup program
 console-setup-linux  Linux specific part of console-setup
 kbd  Linux console font and keytable utilities
 mysql-server MySQL database server (metapackage depending on the lates
 ubuntu-minimal   Minimal core of Ubuntu

The following packages are only half configured, probably due to problems
configuring them the first time. The configuration should be retried using
dpkg --configure  or the configure menu option in dselect:
 haproxy  fast and reliable load balancing reverse proxy
 initramfs-tools  generic modular initramfs generator
 mysql-server-5.6 MySQL database server binaries and system database setup

I then ran these commands in this order:

sudo dpkg --configure initramfs-tools
sudo dpkg --configure apparmor
sudo dpkg --configure mysql-server mysql-server-5.6
sudo dpkg --configure kbd console-setup console-setup-linux
sudo dpkg --configure ubuntu-minimal

haproxy still not working but all of the rest are fine and the network
subsequently regained a connection. Seems now to be a successful
upgrade. I suggest you check your dpkg config with this command:

sudo dpkg -C

** Attachment added: "Contains /var/log/dist-upgrade/ files among others."
   
https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1519463/+attachment/4538737/+files/release-upgrade-logs.zip

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

Title:
  Cannot upgrade from Ubuntu 14.04 to 16.04

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

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


[Bug 1523900] Re: mirscreencast crashes, fails to take screenshot

2015-12-21 Thread Daniel van Vugt
Surely both of those statements suggest we'd just leak (or freeze). How
would leaking the image cause a crash?

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

Title:
  mirscreencast crashes, fails to take screenshot

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

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


[Bug 1523900] Re: mirscreencast crashes, fails to take screenshot

2015-12-21 Thread Cemil Azizoglu
N4 driver is not doing decRef when eglDestroyImageKHR() is called for
the screencast DisplayBuffer.

Also,  mir is not calling eglDestroyImageKHR() for the capture buffer
(which is affecting both N4 and krillin).

 krillin  : http://pastebin.ubuntu.com/14134610/
 N4 : http://pastebin.ubuntu.com/14134689/

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

Title:
  mirscreencast crashes, fails to take screenshot

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

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


[Bug 1525615] Re: Ubuntu not booting on iMac 5K with ACPI enabled

2015-12-21 Thread tedaste
Still stops at  Loading Initial ramdisk

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

Title:
  Ubuntu not booting on iMac 5K with ACPI enabled

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

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


[Bug 1528422] [NEW] Additional drivers reports the wrong driver in use

2015-12-21 Thread Vadim Peretokin
Public bug reported:

See attached screenshot - it's reporting the AMD driver is in use, while
in reality it is the Intel driver.

ProblemType: Bug
DistroRelease: Ubuntu 15.10
Package: software-properties-gtk 0.96.13.1
ProcVersionSignature: Ubuntu 4.2.0-22.27-generic 4.2.6
Uname: Linux 4.2.0-22-generic x86_64
ApportVersion: 2.19.1-0ubuntu5
Architecture: amd64
CurrentDesktop: Unity
Date: Tue Dec 22 12:45:42 2015
InstallationDate: Installed on 2014-06-26 (543 days ago)
InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Release amd64 (20140417)
PackageArchitecture: all
SourcePackage: software-properties
UpgradeStatus: Upgraded to wily on 2015-10-26 (56 days ago)

** Affects: software-properties (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug wily

** Attachment added: "Selection_220.png"
   
https://bugs.launchpad.net/bugs/1528422/+attachment/4538731/+files/Selection_220.png

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

Title:
  Additional drivers reports the wrong driver in use

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

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


[Bug 1444110]

2015-12-21 Thread Qubit
Migrating Whiteboard tags to Keywords: (bibisected)
[NinjaEdit]

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

Title:
  soffice.bin crashed with SIGSEGV in ScDocShell::AdjustRowHeight()

To manage notifications about this bug go to:
https://bugs.launchpad.net/df-libreoffice/+bug/1444110/+subscriptions

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


[Bug 1528421] [NEW] Erro ao Atualizar do 14.04 para 15.04

2015-12-21 Thread Thiago Campos Barbosa
Public bug reported:

Mensagem de erro ao tentar efetuar o Upgrade para a versão 15.04:
Verificando o Gerenciador de pacotes
Lendo listas de pacotes... Feito 
Construindo árvore de dependências
Lendo informação de estado... Feito  
Construindo estruturas de dados... Feito 

Calculando as mudanças

Calculando as mudanças

Não foi possível calcular a atualização

Um problema não solucionável ocorreu ao calcular a atualização.

As possíveis causas são: 
* Uma atualização para uma versão de pré-lançamento do Ubuntu; 
* Executar a partir de uma versão de pré-lançamento do Ubuntu; 
* Uso de pacotes não-oficiais e não fornecidos pelo Ubuntu; 

Se nada disso se aplicar, relate esse erro usando o comando 
'ubuntu-bug ubuntu-release-upgrader-core' no terminal. 


Restaurando o estado original do sistema

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: ubuntu-release-upgrader-core 1:0.220.8
ProcVersionSignature: Ubuntu 3.13.0-74.118-generic 3.13.11-ckt30
Uname: Linux 3.13.0-74-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.19
Architecture: amd64
CrashDB: ubuntu
Date: Tue Dec 22 00:06:19 2015
InstallationDate: Installed on 2013-11-01 (780 days ago)
InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Release amd64 (20131016.1)
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=pt_BR:pt:en
 TERM=xterm
 PATH=(custom, no user)
 LANG=pt_BR.UTF-8
 SHELL=/bin/bash
SourcePackage: ubuntu-release-upgrader
UpgradeStatus: Upgraded to trusty on 2015-12-22 (0 days ago)
mtime.conffile..etc.update.manager.release.upgrades: 2015-12-21T23:44:01.446420

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


** Tags: amd64 apport-bug dist-upgrade third-party-packages trusty

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

Title:
  Erro ao Atualizar do 14.04 para 15.04

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

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

[Bug 1509334] Re: [sru] plasma-nm blocks temporarily on startup w/o bluetooth device – KDE/Plasma very slow to launch (Kubuntu 15.10)

2015-12-21 Thread Elias Kouskoumvekakis
I had the same symptoms and thought it was the plasma-nm package but
realized that I already have the wily-updates fix that this report is
all about.

Luckily I read the above (#80 - #83) and just selected in System
Settings -> Startup and Shutdown -> Desktop Session tab -> On Login
section -> Start with an empty session (it was set before as Restore
previous session).

Everything is fine now and I don't have to wait for half a minute
looking at the KDE login progress bar.

Shouldn't we submit this info elsewhere? I searched and couldn't find a
matching bug report, thanks.

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

Title:
  [sru] plasma-nm blocks temporarily on startup w/o bluetooth device –
  KDE/Plasma very slow to launch (Kubuntu 15.10)

To manage notifications about this bug go to:
https://bugs.launchpad.net/plasma-nm/+bug/1509334/+subscriptions

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

[Bug 1528418] [NEW] autopostgresqlbackup does not delete old backups

2015-12-21 Thread Lionel Montrieux
Public bug reported:

On Ubuntu 12.04.5 LTS.

We run daily backups with autopostgresqlbackup. The backups are created
just fine, but for some reason they are never deleted.  This has been
going on for months. We only noticed when investigating why the server
was running out of disk space.

Below is the configuration file we're using:

# ===
# === Debian specific options ===
#

# By default, on Debian systems, only 'postgres' user
# is allowed to access PostgreSQL databases without password.
# In order to dump databases we need to run pg_dump/psql
# commands as 'postgres' with su.
#
# The following setting has been added to workraound this issue.
# (if it is set to empty, 'su' usage will be disabled)
SU_USERNAME=postgres

#=
# Set the following variables to your system needs
# (Detailed instructions below variables)
#=

# Username to access the PostgreSQL server e.g. dbuser
USERNAME=postgres

# Password
# create a file $HOME/.pgpass containing a line like this
#   hostname:*:*:dbuser:dbpass
# replace hostname with the value of DBHOST and postgres with
# the value of USERNAME

# Host name (or IP address) of PostgreSQL server e.g localhost
DBHOST=localhost

# List of DBNAMES for Daily/Weekly Backup e.g. "DB1 DB2 DB3"
DBNAMES=" "

# Backup directory location e.g /backups
BACKUPDIR="/var/lib/autopostgresqlbackup"

# Mail setup
# What would you like to be mailed to you?
# - log   : send only log file
# - files : send log file and sql files as attachments (see docs)
# - stdout : will simply output the log to the screen if run manually.
# - quiet : Only send logs if an error occurs to the MAILADDR.
MAILCONTENT="quiet"

# Set the maximum allowed email size in k. (4000 = approx 5MB email [see docs])
MAXATTSIZE="4000"

# Email Address to send mail to? (u...@domain.com)
MAILADDR=""

# 
# === ADVANCED OPTIONS ( Read the doc's below for details )===
#=

# List of DBBNAMES for Monthly Backups.
MDBNAMES="template1 $DBNAMES"

# List of DBNAMES to EXLUCDE if DBNAMES are set to all (must be in " quotes)
DBEXCLUDE=""

# Include CREATE DATABASE in backup?
CREATE_DATABASE=yes

# Separate backup directory and file for each DB? (yes or no)
SEPDIR=yes

# Which day do you want weekly backups? (1 to 7 where 1 is Monday)
DOWEEKLY=6

# Choose Compression type. (gzip or bzip2)
#COMP=gzip
COMP=

# Compress communications between backup server and PostgreSQL server?
# set compression level from 0 to 9 (0 means no compression)
COMMCOMP=0

# Additionally keep a copy of the most recent backup in a seperate directory.
LATEST=no

# Command to run before backups (uncomment to use)
#PREBACKUP="/etc/postgresql-backup-pre"

# Command run after backups (uncomment to use)
#POSTBACKUP="/etc/postgresql-backup-post"

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

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

Title:
  autopostgresqlbackup does not delete old backups

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

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


[Bug 1526155] Re: nvidia-340 340.96-0ubuntu0.14.04.1: nvidia-340 kernel module failed to build [cc: error: unrecognized command line option ‘-fstack-protector-strong’]

2015-12-21 Thread Greg
This is resolved by installing gcc4.9 and setting it up as an
alternative with aoto gcc selection on. The same also fixes the virtual
box dkms issue with recent kernels

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

Title:
  nvidia-340 340.96-0ubuntu0.14.04.1: nvidia-340 kernel module failed to
  build [cc: error: unrecognized command line option ‘-fstack-protector-
  strong’]

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

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

[Bug 1528086] Re: nvidia-352 352.63-0ubuntu0.15.10.1: nvidia-352 kernel module failed to build

2015-12-21 Thread Daniel van Vugt
*** This bug is a duplicate of bug 1526155 ***
https://bugs.launchpad.net/bugs/1526155

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


** This bug has been marked a duplicate of bug 1526155
   nvidia-340 340.96-0ubuntu0.14.04.1: nvidia-340 kernel module failed to build 
[cc: error: unrecognized command line option ‘-fstack-protector-strong’]

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

Title:
  nvidia-352 352.63-0ubuntu0.15.10.1: nvidia-352 kernel module failed to
  build

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

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

[Bug 1526155] Re: nvidia-340 340.96-0ubuntu0.14.04.1: nvidia-340 kernel module failed to build [cc: error: unrecognized command line option ‘-fstack-protector-strong’]

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

** Changed in: nvidia-graphics-drivers-340 (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/1526155

Title:
  nvidia-340 340.96-0ubuntu0.14.04.1: nvidia-340 kernel module failed to
  build [cc: error: unrecognized command line option ‘-fstack-protector-
  strong’]

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

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

[Bug 1526155] Re: nvidia-340 340.96-0ubuntu0.14.04.1: nvidia-340 kernel module failed to build [cc: error: unrecognized command line option ‘-fstack-protector-strong’]

2015-12-21 Thread Daniel van Vugt
** Also affects: nvidia-graphics-drivers-352 (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: nvidia-graphics-drivers-352 (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/1526155

Title:
  nvidia-340 340.96-0ubuntu0.14.04.1: nvidia-340 kernel module failed to
  build [cc: error: unrecognized command line option ‘-fstack-protector-
  strong’]

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

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

[Bug 1447767] Re: [XPS 13 9343, Intel Broadwell HDMI, Digital Out, HDMI] No sound at all

2015-12-21 Thread Alex
Garry,

Did you ever update the BIOS, and did it fix the problem? I'm using a
Dell XPS 13 and have this problem following a recent install of 14.04.

Alex

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

Title:
  [XPS 13 9343, Intel Broadwell HDMI, Digital Out, HDMI] No sound at all

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

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


[Bug 1528304] Re: Missing dependency between mir and android drivers

2015-12-21 Thread Daniel van Vugt
It appears our dependencies are correct. mir-graphics-drivers-android
depends on mir-platform-graphics-android7. If you install either then
the problem is solved. But yeah I can see how upgrading libmir* would
fail to upgrade the required drivers (although there's no evidence that
an older android driver was previously installed, I assume it was).

** Summary changed:

- Missing dependency between mir and android drivers
+ Mir graphics drivers don't automatically upgrade when libmir* is upgraded, 
resulting in broken system

** Summary changed:

- Mir graphics drivers don't automatically upgrade when libmir* is upgraded, 
resulting in broken system
+ Mir graphics drivers don't automatically upgrade when libmir* is manually 
upgraded, resulting in broken system

** Changed in: mir
   Status: New => Triaged

** Changed in: mir
   Importance: Undecided => Medium

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

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

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

Title:
  Mir graphics drivers don't automatically upgrade when libmir* is
  manually upgraded, resulting in broken system

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

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


[Bug 1342580] Re: tftpd-hpa doesn't start on boot

2015-12-21 Thread Gfish
As with comment #10:

TFTP_ADDRESS="0.0.0.0:69" worked for me on 14.04 (server edition). The
other workaround of: "start on (filesystem and net-device-up IFACE!=lo)"
did not help at all. Even tried: "start on (filesystem and started
network-services)"

Maybe something to do with fact that I have 2 network interfaces?

Why is the status still reported as "start/running" when the process
clearly is not running? This is, I suppose, why the respawning of the
job by upstart does not get done even though the respawn stanza is
present in the conf file?

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

Title:
  tftpd-hpa doesn't start on boot

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

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


[Bug 1528416] [NEW] gedit deadlocks on opening Open or Save As dialog

2015-12-21 Thread Jeffrey
Public bug reported:

On Ubuntu 15.10, gedit randomly (about half the time) hangs when either
the Open or the Save As dialog is opened.

The cause appears to be a deadlock:

Thread 1 is in a GCancellable::cancelled signal handler, and indirectly calls 
g_dbus_connection_signal_subscribe which tries to acquire a GDBusConnection's 
mutex
Thread 3 is in on_worker_message_received, which holds the GDBusConnection's 
mutex and indirectly calls g_cancellable_disconnect which waits for the 
GCancellable's signal handler to complete.

Thread 1 (Thread 0x77f27a00 (LWP 10630)):
#0  0x748c45a9 in syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
#1  0x7514102c in g_mutex_lock_slowpath (mutex=mutex@entry=0x6e55a8) at 
/build/glib2.0-ajuDY6/glib2.0-2.46.1/./glib/gthread-posix.c:1315
#2  0x75141872 in g_mutex_lock (mutex=mutex@entry=0x6e55a8) at 
/build/glib2.0-ajuDY6/glib2.0-2.46.1/./glib/gthread-posix.c:1339
#3  0x7591cdb9 in g_dbus_connection_signal_subscribe 
(connection=0x6e5590 [GDBusConnection], sender=0x0, 
interface_name=interface_name@entry=0x75969d10 
"org.freedesktop.DBus.Properties", member=member@entry=0x759681f0 
"PropertiesChanged", object_path=0xd7a210 "/org/gtk/vfs/Daemon", arg0=0xc09880 
"org.gtk.vfs.Daemon", flags=G_DBUS_SIGNAL_FLAGS_NONE, callback=0x75925da0 
, user_data=0x8be350, user_data_free_func=0x75925cf0 
) at 
/build/glib2.0-ajuDY6/glib2.0-2.46.1/./gio/gdbusconnection.c:3445
#4  0x759263c2 in async_initable_init_first 
(initable=initable@entry=0x7fffd4010780)
at /build/glib2.0-ajuDY6/glib2.0-2.46.1/./gio/gdbusproxy.c:1740
#5  0x75927238 in async_initable_init_async (initable=0x7fffd4010780, 
io_priority=0, cancellable=0x0, callback=, user_data=) at /build/glib2.0-ajuDY6/glib2.0-2.46.1/./gio/gdbusproxy.c:1862
#6  0x7587fb51 in g_async_initable_new_valist_async 
(object_type=, first_property_name=0x7fffe8c83b40 "g-flags", 
var_args=0x7fffd360, io_priority=0, cancellable=0x0, 
callback=0x7fffe8eb0780 , user_data=0x2)
at /build/glib2.0-ajuDY6/glib2.0-2.46.1/./gio/gasyncinitable.c:426
#7  0x7587fc08 in g_async_initable_new_async (object_type=, io_priority=io_priority@entry=0, cancellable=cancellable@entry=0x0, 
callback=callback@entry=0x7fffe8eb0780 , 
user_data=user_data@entry=0x2, 
first_property_name=first_property_name@entry=0x7fffe8c83b40 "g-flags") at 
/build/glib2.0-ajuDY6/glib2.0-2.46.1/./gio/gasyncinitable.c:339
#8  0x7fffe8c74df8 in gvfs_dbus_daemon_proxy_new (connection=0x6e5590 
[GDBusConnection], flags=flags@entry=G_DBUS_PROXY_FLAGS_NONE, 
name=name@entry=0x0, object_path=object_path@entry=0x7fffe8ebbb95 
"/org/gtk/vfs/Daemon", cancellable=cancellable@entry=0x0, 
callback=callback@entry=0x7fffe8eb0780 , user_data=0x2) at 
gvfsdbus.c:1201
#9  0x7fffe8eb0528 in async_call_cancelled_cb (cancellable=, 
_data=) at gvfsdaemondbus.c:376
#13 0x753ed12f in  
(instance=instance@entry=0xd57450, signal_id=, 
detail=detail@entry=0) at 
/build/glib2.0-ajuDY6/glib2.0-2.46.1/./gobject/gsignal.c:3439
#10 0x753d2015 in g_closure_invoke (closure=0xd792f0, 
return_value=return_value@entry=0x0, n_param_values=1, 
param_values=param_values@entry=0x7fffd6b0, 
invocation_hint=invocation_hint@entry=0x7fffd630) at 
/build/glib2.0-ajuDY6/glib2.0-2.46.1/./gobject/gclosure.c:801
#11 0x753e4061 in signal_emit_unlocked_R (node=node@entry=0x6efa40, 
detail=detail@entry=0, instance=instance@entry=0xd57450, 
emission_return=emission_return@entry=0x0, 
instance_and_params=instance_and_params@entry=0x7fffd6b0)
at /build/glib2.0-ajuDY6/glib2.0-2.46.1/./gobject/gsignal.c:3627
#12 0x753ecdfc in g_signal_emit_valist (instance=, 
signal_id=, detail=, 
var_args=var_args@entry=0x7fffd860) at 
/build/glib2.0-ajuDY6/glib2.0-2.46.1/./gobject/gsignal.c:3383
#14 0x758833b8 in g_cancellable_cancel (cancellable=0xd57450 
[GCancellable]) at /build/glib2.0-ajuDY6/glib2.0-2.46.1/./gio/gcancellable.c:508
#15 0x76fe6ba4 in update_places (sidebar=0xd92460 [GtkPlacesSidebar]) 
at /build/gtk+3.0-pIzeMy/gtk+3.0-3.16.7/./gtk/gtkplacessidebar.c:941
#16 0x753d2244 in _g_closure_invoke_va (closure=closure@entry=0xa9c9d0, 
return_value=return_value@entry=0x0, instance=instance@entry=0xce7690, 
args=args@entry=0x7fffdc80, n_params=, param_types=0x0) at 
/build/glib2.0-ajuDY6/glib2.0-2.46.1/./gobject/gclosure.c:864
#17 0x753eca46 in g_signal_emit_valist (instance=0xce7690, 
signal_id=, detail=0, var_args=var_args@entry=0x7fffdc80)
at /build/glib2.0-ajuDY6/glib2.0-2.46.1/./gobject/gsignal.c:3292
#18 0x753ed12f in g_signal_emit (instance=instance@entry=0xce7690, 
signal_id=, detail=detail@entry=0)
at /build/glib2.0-ajuDY6/glib2.0-2.46.1/./gobject/gsignal.c:3439
#19 0x77097f86 in trash_enumerate_next_files_cb (has_trash=0, 
monitor=0xce7690 [GtkTrashMonitor])
at /build/gtk+3.0-pIzeMy/gtk+3.0-3.16.7/./gtk/gtk

[Bug 1316242] Re: Preseed example needs an update

2015-12-21 Thread Dimitri John Ledkov
Also this is for the package contents in the archive, rather than
deployed webpages.

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

Title:
  Preseed example needs an update

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

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


[Bug 1316242] Re: Preseed example needs an update

2015-12-21 Thread Dimitri John Ledkov
@nick-minkler

The bug is fixed for the development series, that is xenial
specifically. Thus for xenial, the correct status is fix released. If
this change is required to be SRUed into stable releases (e.g. trusty),
please follow steps at https://wiki.ubuntu.com/StableReleaseUpdates to
request such a change.

** Changed in: installation-guide (Ubuntu)
   Status: Incomplete => 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/1316242

Title:
  Preseed example needs an update

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

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


[Bug 1528279] Re: Spinner not shown

2015-12-21 Thread Daniel van Vugt
** Changed in: unity-system-compositor/0.3
   Status: In Progress => Fix Committed

** Branch unlinked: lp:unity-system-compositor/0.3

** Branch linked: lp:~andreas-pokorny/unity-system-compositor/support-
rgb-wallpaper

** Changed in: unity-system-compositor (Ubuntu)
   Status: New => Triaged

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

Title:
  Spinner not shown

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

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


[Bug 1528279] Re: Spinner not shown

2015-12-21 Thread Launchpad Bug Tracker
** Branch linked: lp:unity-system-compositor/0.3

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

Title:
  Spinner not shown

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

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


[Bug 1528279] Re: Spinner not shown

2015-12-21 Thread Daniel van Vugt
Kevin's analysis sounds right...

Ha, I just realized my name is on eglspinner.cpp so I might get assigned
such bugs. Although I never had anything to do with eglspinner or USC,
that particular code was copied from mine in Mir's examples/.

** Changed in: unity-system-compositor (Ubuntu)
 Assignee: Daniel van Vugt (vanvugt) => (unassigned)

** Changed in: unity-system-compositor (Ubuntu)
   Status: In Progress => New

** Changed in: unity-system-compositor (Ubuntu)
 Assignee: (unassigned) => Kevin DuBois (kdub)

** Changed in: unity-system-compositor (Ubuntu)
   Status: New => In Progress

** Also affects: unity-system-compositor
   Importance: Undecided
   Status: New

** Changed in: unity-system-compositor
 Assignee: (unassigned) => Kevin DuBois (kdub)

** Changed in: unity-system-compositor
   Importance: Undecided => Critical

** Changed in: unity-system-compositor
   Status: New => In Progress

** Changed in: unity-system-compositor (Ubuntu)
   Status: In Progress => New

** Changed in: unity-system-compositor (Ubuntu)
 Assignee: Kevin DuBois (kdub) => (unassigned)

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

Title:
  Spinner not shown

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

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


[Bug 1528279] Re: Spinner not shown

2015-12-21 Thread Daniel van Vugt
Fix committed on trunk a couple of weeks ago:


revno: 264 [merge]
author: Andreas Pokorny 
committer: Tarmac
branch nick: trunk
timestamp: Mon 2015-12-07 14:00:39 +
message:
  Use actual image.bytes_per_pixel to decide about GL format of pixel data.
  
  Approved by Alexandros Frantzis, PS Jenkins bot, Kevin DuBois.



** Changed in: unity-system-compositor
 Assignee: Kevin DuBois (kdub) => Andreas Pokorny (andreas-pokorny)

** Changed in: unity-system-compositor
   Status: In Progress => Fix Committed

** Also affects: unity-system-compositor/0.3
   Importance: Undecided
   Status: New

** Changed in: unity-system-compositor/0.3
 Assignee: (unassigned) => Kevin DuBois (kdub)

** Changed in: unity-system-compositor/0.3
   Importance: Undecided => Critical

** Changed in: unity-system-compositor/0.3
   Status: New => 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/1528279

Title:
  Spinner not shown

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

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


[Bug 1528304] Re: Missing dependency between mir and android drivers

2015-12-21 Thread Daniel van Vugt
IIRC, this is by design. Mir can't possibly know which driver package is
the right one for you at build time. And although we do have probing,
installing all driver packages bloats the dependency tree unnecessarily.
So our solution (IIRC) was to put a seed in the phone image such that
the android drivers package was always included.

I'm not sure if there's something in our packaging that might have made
it easier for your system to become broken...?


** Also affects: mir
   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/1528304

Title:
  Missing dependency between mir and android drivers

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

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


[Bug 1525615] Re: Ubuntu not booting on iMac 5K with ACPI enabled

2015-12-21 Thread Christopher M. Penalver
tedaste, could you please test the latest mainline kernel (4.4-rc6) and
advise to the results?

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

Title:
  Ubuntu not booting on iMac 5K with ACPI enabled

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

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


[Bug 1528406] Re: image provider test fails in CI train for arm64 (Vivid only)

2015-12-21 Thread Michi Henning
** Changed in: thumbnailer (Ubuntu)
   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/1528406

Title:
  image provider test fails in CI train for arm64 (Vivid only)

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

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


[Bug 1155796] Re: libGL error

2015-12-21 Thread Christopher M. Penalver
szeitlin, it will help immensely if you filed a new report with Ubuntu via a 
terminal:
ubuntu-bug xorg

Please ensure you have the package xdiagnose installed, and that you
click the Yes button for attaching additional debugging information.

Also, please feel free to subscribe me to it.

For more on this, please see https://wiki.ubuntu.com/ReportingBugs .

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

Title:
  libGL error

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-ati/+bug/1155796/+subscriptions

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


[Bug 1470994] Re: X11 freezes, sshd working, chvt 1 very slow

2015-12-21 Thread Christopher M. Penalver
Andreas Kostyrka, if you update to the Vivid enablement stack as
outlined in https://wiki.ubuntu.com/Kernel/LTSEnablementStack does this
improve the issue?

** Changed in: linux (Ubuntu)
   Importance: Low => Medium

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

Title:
  X11 freezes, sshd working, chvt 1 very slow

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

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


Re: [Bug 1521612] Re: Continued TFTP timeouts when PXE booting via grub

2015-12-21 Thread Ming Lei
Hi Dann,

On Mon, Dec 21, 2015 at 11:59 PM, dann frazier
 wrote:
> @Ming can you clarify which build(s) you tested (trusty, vivid, and/or
> wily)? It isn't clear to me if "three grub changes" means you tested all

All three have been tested on both two kinds of arm64.

thanks,

> 3 builds, or if you tested one build comprising 3 source changes.
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1521612
>
> Title:
>   Continued TFTP timeouts when PXE booting via grub
>
> Status in grub2 package in Ubuntu:
>   Fix Released
> Status in grub2-signed package in Ubuntu:
>   Fix Released
> Status in grub2 source package in Trusty:
>   Fix Committed
> Status in grub2-signed source package in Trusty:
>   Fix Committed
> Status in grub2 source package in Vivid:
>   Fix Committed
> Status in grub2-signed source package in Vivid:
>   Fix Committed
> Status in grub2 source package in Wily:
>   Fix Committed
> Status in grub2-signed source package in Wily:
>   Fix Committed
> Status in grub2 source package in Xenial:
>   Fix Released
> Status in grub2-signed source package in Xenial:
>   Fix Released
>
> Bug description:
>   [Impact]
>   While the Grub2 patches described in LP#1508893 reduce the TFTP time-out, 
> HP ProLiant m400 servers when booting via UEFI, may still experience TFTP 
> timeouts.
>
>   [Test Case]
>   PXE boot a UEFI-based system (d-i or MAAS) and monitor the time it takes 
> for GRUB to download the kernel/initrd. tcpdump will show TFTP timeouts and 
> packet retries, and it can take on the order of minutes to begin running the 
> kernel.
>
>   [Regression Risk]
>   The fix is restricted to UEFI-based systems.
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/ubuntu/+source/grub2/+bug/1521612/+subscriptions

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

Title:
  Continued TFTP timeouts when PXE booting via grub

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

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


[Bug 1527444] Re: Intel 7260 Wifi not working on Ubuntu 15.10

2015-12-21 Thread Christopher M. Penalver
Rodrigo Primo, as per http://www.dell.com/support/home/us/en/19/product-
support/product/vostro-5470/drivers/advanced an update to your
computer's buggy and outdated BIOS is available (A12). If you update to
this following https://help.ubuntu.com/community/BIOSUpdate does it
change anything?

For more on BIOS updates and linux, please see
https://help.ubuntu.com/community/ReportingBugs#Bug_reporting_etiquette
.

Please note your current BIOS is already in the Bug Description, so
posting this on the old BIOS would not be helpful. As well, you don't
have to create a new bug report.

Once the BIOS is updated, if the problem is still reproducible:
1) Please provide the output of the following terminal command (not perform an 
apport-collect):
sudo dmidecode -s bios-version && sudo dmidecode -s bios-release-date
2) Please make a comment specifically advising on if there was an improvement 
or not.
3) Please mark this report Status Confirmed. If it's not reproducible, please 
mark this as Invalid.

Thank you for your understanding.

** Tags added: bios-outdated-a12

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

Title:
  Intel 7260 Wifi not working on Ubuntu 15.10

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

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


[Bug 1472739] Re: Wrong handling of forcepad edges

2015-12-21 Thread Christopher M. Penalver
Jan, as per
http://h20564.www2.hp.com/hpsc/swd/public/readIndex?sp4ts.oid=6569464&swLangOid=8&swEnvOid=4060
an update to your computer's buggy and outdated BIOS is available
(1.33). If you update to this following
https://help.ubuntu.com/community/BIOSUpdate does it change anything?

For more on BIOS updates and linux, please see
https://help.ubuntu.com/community/ReportingBugs#Bug_reporting_etiquette
.

Please note your current BIOS is already in the Bug Description, so
posting this on the old BIOS would not be helpful. As well, you don't
have to create a new bug report.

Once the BIOS is updated, if the problem is still reproducible:
1) Please provide the output of the following terminal command (not perform an 
apport-collect):
sudo dmidecode -s bios-version && sudo dmidecode -s bios-release-date
2) Please make a comment specifically advising on if there was an improvement 
or not.
3) Please mark this report Status Confirmed. If it's not reproducible, please 
mark this as Invalid.

Thank you for your understanding.

** Tags added: bios-outdated-1.33

** Attachment removed: "ProcEnviron.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1472739/+attachment/4426529/+files/ProcEnviron.txt

** Attachment removed: "Dependencies.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1472739/+attachment/4426528/+files/Dependencies.txt

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

Title:
  Wrong handling of forcepad edges

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

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


[Bug 1528405] [NEW] Changing Orca preferences disable the Braille support

2015-12-21 Thread Vincent Le Goff
Public bug reported:

When leaving Orca preferences by pressing the OK button, or even
applying them with the Apply button, the Braille support is disabled.
After a few seconds, the Braille display prompts:  "Screen not in text
mode".  One has to open the orca preferences again, go to Braille and
check the checkbox for Braille support that, for some reason, unchecks
itself each time the preferences are modified.

** Affects: gnome-orca (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  Changing Orca preferences disable the Braille support

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

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


[Bug 1528406] [NEW] image provider test fails in CI train for arm64 (Vivid only)

2015-12-21 Thread Michi Henning
Public bug reported:

The image provider test fails consistently on arm64 only, in CI train
only (passes on Jenkins CI), and only on Vivid (passes on Xenial).

https://launchpadlibrarian.net/230899583/buildlog_ubuntu-vivid-
arm64.thumbnailer_2.3%2B15.04.20151222-0ubuntu1_BUILDING.txt.gz

Note the "QSignalSpy: Not a valid signal: ''" messages.

8: [ RUN  ] ProviderTest.thumbnail_image
8: thumbnailer-service: [00:35:35.490] Initializing
8: thumbnailer-service: [00:35:35.527] image cache: 0 entries, 0 bytes, hit 
rate 0.00 (0/0), avg hit run 0.00, avg miss run 0.00
8: thumbnailer-service: [00:35:35.527] thumbnail cache: 0 entries, 0 bytes, hit 
rate 0.00 (0/0), avg hit run 0.00, avg miss run 0.00
8: thumbnailer-service: [00:35:35.527] failure cache:   0 entries, 0 bytes, hit 
rate 0.00 (0/0), avg hit run 0.00, avg miss run 0.00
8: QSignalSpy: Not a valid signal: ''
8: thumbnailer-service: [00:35:35.544] "thumbnail: 
/«BUILDDIR»/thumbnailer-2.3+15.04.20151222/tests/media/orientation-1.jpg 
(128,128): 0.011494 sec (MISS)"
8: 
/«BUILDDIR»/thumbnailer-2.3+15.04.20151222/tests/image-providers/provider_test.cpp:84:
 Failure
8: Value of: spy.wait(SIGNAL_WAIT_TIME)
8:   Actual: false
8: Expected: true
8: thumbnailer-service: [00:35:45.704] Exiting
8: [  FAILED  ] ProviderTest.thumbnail_image (10553 ms)
8: [ RUN  ] ProviderTest.thumbnail_cancel
8: thumbnailer-service: [00:35:46.041] Initializing
8: thumbnailer-service: [00:35:46.073] image cache: 0 entries, 0 bytes, hit 
rate 0.00 (0/0), avg hit run 0.00, avg miss run 0.00
8: thumbnailer-service: [00:35:46.073] thumbnail cache: 0 entries, 0 bytes, hit 
rate 0.00 (0/0), avg hit run 0.00, avg miss run 0.00
8: thumbnailer-service: [00:35:46.073] failure cache:   0 entries, 0 bytes, hit 
rate 0.00 (0/0), avg hit run 0.00, avg miss run 0.00
8: QSignalSpy: Not a valid signal: ''
8: thumbnailer-service: [00:35:46.086] "thumbnail: 
/«BUILDDIR»/thumbnailer-2.3+15.04.20151222/tests/media/orientation-1.jpg 
(128,128): 0.010912 sec (MISS)"
8: 
/«BUILDDIR»/thumbnailer-2.3+15.04.20151222/tests/image-providers/provider_test.cpp:84:
 Failure
8: Value of: spy.wait(SIGNAL_WAIT_TIME)
8:   Actual: false
8: Expected: true
8: thumbnailer-service: [00:35:55.713] Exiting
8: [  FAILED  ] ProviderTest.thumbnail_cancel (10009 ms)

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

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

Title:
  image provider test fails in CI train for arm64 (Vivid only)

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

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

[Bug 1525615] Lspci.txt

2015-12-21 Thread tedaste
apport information

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

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

Title:
  Ubuntu not booting on iMac 5K with ACPI enabled

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

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


[Bug 1522201] Re: NUC NUC5CPYH Does not reboot on Ubuntu 15.10 (linux-image-4.2.0-19)

2015-12-21 Thread Christopher M. Penalver
szotman, it will help immensely if you filed a new report via a terminal:
ubuntu-bug linux

Please feel free to subscribe me to it.

For more on this, please see https://wiki.ubuntu.com/ReportingBugs .

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

Title:
  NUC NUC5CPYH Does not reboot on Ubuntu 15.10 (linux-image-4.2.0-19)

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

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


[Bug 1517048] Re: External monitors are not detected

2015-12-21 Thread Christopher M. Penalver
Jose, this report is awaiting your commit bisect as outlined in
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1517048/comments/5
.

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

Title:
  External monitors are not detected

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

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


[Bug 1525615] UdevDb.txt

2015-12-21 Thread tedaste
apport information

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

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

Title:
  Ubuntu not booting on iMac 5K with ACPI enabled

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

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


[Bug 1525615] ProcInterrupts.txt

2015-12-21 Thread tedaste
apport information

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

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

Title:
  Ubuntu not booting on iMac 5K with ACPI enabled

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

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


[Bug 1525615] Re: Ubuntu not booting on iMac 5K with ACPI enabled

2015-12-21 Thread tedaste
OK done

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

Title:
  Ubuntu not booting on iMac 5K with ACPI enabled

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

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


[Bug 1525615] ProcModules.txt

2015-12-21 Thread tedaste
apport information

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

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

Title:
  Ubuntu not booting on iMac 5K with ACPI enabled

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

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


[Bug 1525615] CurrentDmesg.txt

2015-12-21 Thread tedaste
apport information

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

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

Title:
  Ubuntu not booting on iMac 5K with ACPI enabled

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

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


[Bug 1525615] WifiSyslog.txt

2015-12-21 Thread tedaste
apport information

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

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

Title:
  Ubuntu not booting on iMac 5K with ACPI enabled

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

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


[Bug 1522201] Re: NUC NUC5CPYH Does not reboot on Ubuntu 15.10 (linux-image-4.2.0-19)

2015-12-21 Thread Christopher M. Penalver
szotman, it will help immensely if you filed a new report via a terminal:
ubuntu-bug linux

Please feel free to subscribe me to it.

For more on this, please see https://wiki.ubuntu.com/ReportingBugs .

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

Title:
  NUC NUC5CPYH Does not reboot on Ubuntu 15.10 (linux-image-4.2.0-19)

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

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


[Bug 1525615] Lsusb.txt

2015-12-21 Thread tedaste
apport information

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

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

Title:
  Ubuntu not booting on iMac 5K with ACPI enabled

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

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


[Bug 1525615] JournalErrors.txt

2015-12-21 Thread tedaste
apport information

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

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

Title:
  Ubuntu not booting on iMac 5K with ACPI enabled

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

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


[Bug 1525615] ProcCpuinfo.txt

2015-12-21 Thread tedaste
apport information

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

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

Title:
  Ubuntu not booting on iMac 5K with ACPI enabled

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

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


[Bug 1525615] CRDA.txt

2015-12-21 Thread tedaste
apport information

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

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

Title:
  Ubuntu not booting on iMac 5K with ACPI enabled

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

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


[Bug 1525615] Re: Ubuntu not booting on iMac 5K with ACPI enabled

2015-12-21 Thread tedaste
apport information

** Description changed:

  With a 27in 5k ( new as of two weeks ago) I'm unable to boot. The
  applies to both the live installer and a system installed on disk. I
  just get a blank screen. It gives a blank screen event if the "quiet" is
  removed from the kernel parameters. The system has a 250G SSD. I'm using
  the Kubutu live installer for Wily off a USB stick.
  
  WORKAROUND: Use kernel parameters:
  acpi=off nomodeset
  
  ---
  ApportVersion: 2.19.1-0ubuntu5
  Architecture: amd64
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 15.10
  InstallationDate: Installed on 2015-12-08 (9 days ago)
  InstallationMedia: Kubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  Package: linux (not installed)
  Tags:  wily
  Uname: Linux 4.4.0-040400rc5-generic x86_64
  UnreportableReason: The running kernel is not an Ubuntu kernel
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
+ --- 
+ ApportVersion: 2.19.1-0ubuntu5
+ Architecture: amd64
+ AudioDevicesInUse:
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC0:  toivo  1330 F pulseaudio
+  /dev/snd/controlC1:  toivo  1330 F pulseaudio
+ DistroRelease: Ubuntu 15.10
+ InstallationDate: Installed on 2015-12-08 (14 days ago)
+ InstallationMedia: Kubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
+ MachineType: Apple Inc. iMac17,1
+ Package: linux (not installed)
+ ProcEnviron:
+  LANGUAGE=en_AU:en
+  TERM=xterm
+  PATH=(custom, no user)
+  LANG=en_AU.UTF-8
+  SHELL=/usr/bin/zsh
+ ProcFB: 0 EFI VGA
+ ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-21-generic.efi.signed 
root=UUID=0751bb9a-8e2b-439a-aca9-e29cf2dadb77 ro persistent acpi=off nomodeset
+ ProcVersionSignature: Ubuntu 4.2.0-21.25-generic 4.2.6
+ PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
+ RelatedPackageVersions:
+  linux-restricted-modules-4.2.0-21-generic N/A
+  linux-backports-modules-4.2.0-21-generic  N/A
+  linux-firmware1.149.3
+ RfKill:
+  0: phy0: Wireless LAN
+   Soft blocked: no
+   Hard blocked: no
+ Tags:  wily
+ UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
+ Uname: Linux 4.2.0-21-generic x86_64
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups:
+  
+ _MarkForUpload: True
+ dmi.bios.date: 10/09/2015
+ dmi.bios.vendor: Apple Inc.
+ dmi.bios.version: IM171.88Z.0105.B04.1510091442
+ dmi.board.name: Mac-65CE76090165799A
+ dmi.board.vendor: Apple Inc.
+ dmi.board.version: iMac17,1
+ dmi.chassis.type: 9
+ dmi.chassis.vendor: Apple Inc.
+ dmi.chassis.version: Mac-65CE76090165799A
+ dmi.modalias: 
dmi:bvnAppleInc.:bvrIM171.88Z.0105.B04.1510091442:bd10/09/2015:svnAppleInc.:pniMac17,1:pvr1.0:rvnAppleInc.:rnMac-65CE76090165799A:rvriMac17,1:cvnAppleInc.:ct9:cvrMac-65CE76090165799A:
+ dmi.product.name: iMac17,1
+ dmi.product.version: 1.0
+ dmi.sys.vendor: Apple Inc.

** Attachment added: "AlsaInfo.txt"
   
https://bugs.launchpad.net/bugs/1525615/+attachment/4538685/+files/AlsaInfo.txt

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

Title:
  Ubuntu not booting on iMac 5K with ACPI enabled

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

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


[Bug 1525615] IwConfig.txt

2015-12-21 Thread tedaste
apport information

** Attachment added: "IwConfig.txt"
   
https://bugs.launchpad.net/bugs/1525615/+attachment/4538688/+files/IwConfig.txt

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

Title:
  Ubuntu not booting on iMac 5K with ACPI enabled

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

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


[Bug 1528297] Re: libvpx FTBFS with gcc 5.3 on armhf

2015-12-21 Thread Colin Watson
I *think* the relevant C code is non-compliant.  C99 6.7.5.2(4) "If the
size is not present, the array type is an incomplete type"; 6.7.5.3(12)
"If the function declarator is not part of a definition of that
function, parameters may have incomplete type".  That would seem to
imply that in the situation where the declarator is part of a definition
of the function, as in this case, parameters may not have incomplete
type, although oddly I can't find an explicit statement of that.
Perhaps a more awake C standards pedant could find one? :-)

The attached patch can be added to the top of the patch stack of libvpx
1.4.0-4 and avoids this construction.  It at least compiles on the armhf
porter box; I haven't tried doing anything with it at run-time.  I
assume that a similar change can be applied to oxide-qt, though I also
haven't tried that.

** Patch added: "incomplete-array-parameters.patch"
   
https://bugs.launchpad.net/ubuntu/+source/libvpx/+bug/1528297/+attachment/4538684/+files/incomplete-array-parameters.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/1528297

Title:
  libvpx FTBFS with gcc 5.3 on armhf

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gcc-5/+bug/1528297/+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-12-21 Thread Vincent Thiele
Common guys please fix this on other releases.

-- 
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 1448102] Re: Kubuntu 15.04: plasmashell crashes

2015-12-21 Thread Elias Kouskoumvekakis
This keeps happening for me on 15.04 (upgrade from 14.10) and on 15.10
(clean install).

When it happened while searching for an answer (firefox still works even
though plasma is crashed and black) I run the above (#24) three commands
and plasma was restored and worked fine. I only had to close the
terminal I run them since plasma will keep printing them.

I now have put those 3 commands inside a shell script in order to easily
restore plasma when it crashes, until we have a bug fix for this.

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

Title:
  Kubuntu 15.04: plasmashell crashes

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

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


Re: [Bug 1527666] Re: lxc on Wily cannot dist-upgrade Xenial

2015-12-21 Thread Robie Basak
On Mon, Dec 21, 2015 at 07:38:29PM -, Serge Hallyn wrote:
> Let me rephrase - I can't reproduce by hand, even doing apt-get install
> --reinstall systemd.  adt-run does indeed fail.

I couldn't reproduce that either in the end. Sorry if the report is
contradictory, I made assumptions and then realised they were wrong,
amended my report but missed few places.

My suspicion is that reinstalling systemd doesn't cause the same changes
as whatever is dist-upgrading in the systemd trigger that fires.

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

Title:
  lxc on Wily cannot dist-upgrade Xenial

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

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


[Bug 1528228] Re: [ADT test failure] linux-lts-utopic: ubuntu_qrt_apparmor.test-apparmor.py -- FAIL: test_aa_unconfined (__main__.ApparmorTest)

2015-12-21 Thread Seth Arnold
(The test in question is in QRT, scripts/test-apparmor.py ; I added
apparmor dep just to make sure this doesn't get lost.)

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

Title:
  [ADT test failure] linux-lts-utopic: ubuntu_qrt_apparmor.test-
  apparmor.py --   FAIL: test_aa_unconfined (__main__.ApparmorTest)

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

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


[Bug 1528228] Re: [ADT test failure] linux-lts-utopic: ubuntu_qrt_apparmor.test-apparmor.py -- FAIL: test_aa_unconfined (__main__.ApparmorTest)

2015-12-21 Thread Seth Arnold
There's no logging if nc fails to exec and there may not be logging if
nc can't bind the port, and thus isn't running when needed. This may be
just be a random error.

Thanks

** Also affects: apparmor (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  [ADT test failure] linux-lts-utopic: ubuntu_qrt_apparmor.test-
  apparmor.py --   FAIL: test_aa_unconfined (__main__.ApparmorTest)

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

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


[Bug 1527603] Re: kernel crashes due to rtl8192ee driver on ubuntu 15.10

2015-12-21 Thread Ubuntu Foundations Team Bug Bot
The attachment "patch_rtl8192ee.patch" seems to be a patch.  If it
isn't, please remove the "patch" flag from the attachment, remove the
"patch" tag, and if you are a member of the ~ubuntu-reviewers,
unsubscribe the team.

[This is an automated message performed by a Launchpad user owned by
~brian-murray, for any issues please contact him.]

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

Title:
  kernel crashes due to rtl8192ee driver on ubuntu 15.10

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

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


[Bug 1528381] Re: package tex-common 4.04 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2015-12-21 Thread Apport retracing service
*** This bug is a duplicate of bug 1270410 ***
https://bugs.launchpad.net/bugs/1270410

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

** Tags removed: need-duplicate-check

** This bug has been marked a duplicate of bug 1270410
   package tex-common 4.04 failed to install/upgrade: subprocess installed 
post-installation script returned error exit status 1

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

Title:
  package tex-common 4.04 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 1

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

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


  1   2   3   4   5   6   7   8   >