[Bug 1509037] Re: linux-armadaxp: 3.2.0-1659.81 -proposed tracker

2015-10-23 Thread Brad Figg
All builds are complete, packages in this bug can be copied to
-proposed.

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

** Changed in: kernel-sru-workflow/prepare-package
 Assignee: Canonical Hardware Enablement ARM Kernel 
(canonical-hwe-arm-kernel) => Ike Panhc (ikepanhc)

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

** Description changed:

  This bug is for tracking the 3.2.0-1659.81 upload package. This bug will
  contain status and testing results related to that upload.
  
  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Thursday, 22. October 2015 18:03 UTC
- kernel-stable-phase:Prepare
- kernel-stable-phase-changed:Thursday, 22. October 2015 18:03 UTC
  kernel-stable-master-bug:1508939
  kernel-stable-Certification-testing-end:Friday, 23. October 2015 08:01 UTC
  kernel-stable-Security-signoff-end:Friday, 23. October 2015 08:01 UTC
+ kernel-stable-phase:CopyToProposed
+ kernel-stable-Prepare-package-end:Friday, 23. October 2015 09:02 UTC
+ kernel-stable-Promote-to-proposed-start:Friday, 23. October 2015 09:02 UTC
+ kernel-stable-phase-changed:Friday, 23. October 2015 09:02 UTC

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

Title:
  linux-armadaxp: 3.2.0-1659.81 -proposed tracker

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

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


[Bug 1493888] Re: FGLRX incompatible with kernel 4.2

2015-10-23 Thread Paolo Rotolo
Kolasa patches from GitHub don't work anymore on Ubuntu 15.10:
https://github.com/kolasa/fglrx-core-15.201/issues/2

Is there a PPA to test latest patched drivers on Wily?

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

Title:
  FGLRX incompatible with kernel 4.2

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

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


[Bug 1481295] Re: virt-manager after upgrade: Error polling connection 'qemu:///system': internal error: could not get interface XML description: File operation failed - Failed to read (null)

2015-10-23 Thread Thomas Bruno
The root cause is netcf not handling network alias
https://bugzilla.redhat.com/show_bug.cgi?id=1185850

https://rhn.redhat.com/errata/RHBA-2015-0363.html

Patch located in this post:
https://lists.fedorahosted.org/pipermail/netcf-devel/2015-January/000924.html

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

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

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

Title:
  virt-manager after upgrade: Error polling connection 'qemu:///system':
  internal error: could not get interface XML description: File
  operation failed - Failed to read (null)

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

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


[Bug 1481295] Re: virt-manager after upgrade: Error polling connection 'qemu:///system': internal error: could not get interface XML description: File operation failed - Failed to read (null)

2015-10-23 Thread Thomas Bruno
The root cause is netcf not handling network alias
https://bugzilla.redhat.com/show_bug.cgi?id=1185850

https://rhn.redhat.com/errata/RHBA-2015-0363.html

Patch located in this post:
https://lists.fedorahosted.org/pipermail/netcf-devel/2015-January/000924.html

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

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

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

Title:
  virt-manager after upgrade: Error polling connection 'qemu:///system':
  internal error: could not get interface XML description: File
  operation failed - Failed to read (null)

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

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


[Bug 1481295] Re: virt-manager after upgrade: Error polling connection 'qemu:///system': internal error: could not get interface XML description: File operation failed - Failed to read (null)

2015-10-23 Thread Thomas Bruno
Putthing this in debian/patch/fix-virtmanager and adding fix-virtmanager
to debian/patch/series solved this issue:

diff --git a/src/dutil_linux.c b/src/dutil_linux.c
index a3b0176..5d69d19 100644
--- a/src/dutil_linux.c
+++ b/src/dutil_linux.c
@@ -1041,7 +1041,14 @@ static void add_link_info(struct netcf *ncf,
 ERR_NOMEM(!path, ncf);
 state = read_file(path, );
 FREE(path);
-ERR_THROW_STRERROR(!state, ncf, EFILE, "Failed to read %s", path);
+if (!state) {
+/* missing operstate is *not* an error. It could be due to an
+ * alias interface, which has not entry in /sys/class/net at
+ * all, for example.
+ */
+state = strdup("");
+ERR_NOMEM(!state, ncf);
+}
 if ((nl = strchr(state, '\n')))
 *nl = 0;
 prop = xmlSetProp(link_node, BAD_CAST "state", BAD_CAST state);

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

Title:
  virt-manager after upgrade: Error polling connection 'qemu:///system':
  internal error: could not get interface XML description: File
  operation failed - Failed to read (null)

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

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


[Bug 1504481] Re: package xe-guest-utilities 6.2.0-1120+dsf1-0ubuntu1~14.04.1 failed to install: sub-processo script post-installation instalado retornou estado de saída de erro 1

2015-10-23 Thread Ben Howard
Uploaded fix to Xenial.

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

Title:
  package xe-guest-utilities 6.2.0-1120+dsf1-0ubuntu1~14.04.1 failed to
  install: sub-processo script post-installation instalado retornou
  estado de saída de erro 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xe-guest-utilities/+bug/1504481/+subscriptions

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

[Bug 1501276] Re: No Screen or Blank Screen instead of Login Screen

2015-10-23 Thread Serge
*** This bug is a duplicate of bug 1493888 ***
https://bugs.launchpad.net/bugs/1493888

** This bug has been marked a duplicate of bug 1493888
   FGLRX incompatible with kernel 4.2

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

Title:
  No Screen or Blank Screen instead of Login Screen

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

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


[Bug 1508574] Re: linux-lts-vivid: 3.19.0-32.37~14.04.1 -proposed tracker

2015-10-23 Thread Steve Beattie
** Changed in: kernel-sru-workflow/security-signoff
   Status: In Progress => Fix Released

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

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

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

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


[Bug 1509472] [NEW] hardcoded python 3.4 build dependency

2015-10-23 Thread Matthias Klose
Public bug reported:

$ fgrep -r 3.4 .
./libertine/libertine_lxc_manager_wrapper.h:#include 

pretty please ...

** Affects: libertine (Ubuntu)
 Importance: High
 Status: Confirmed


** Tags: ftbfs

** Summary changed:

- hardcode python 3.4 build dependency
+ hardcoded python 3.4 build dependency

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

Title:
  hardcoded python 3.4 build dependency

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

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


[Bug 1409332] Re: Mouse cursor freezes, when using e.g. youtube in chromium, and stays that way

2015-10-23 Thread Jarno Suni
Kalmer Piiskop, have you made another bug report and if so, which is the
number?

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

Title:
  Mouse cursor freezes, when using e.g. youtube in chromium, and stays
  that way

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

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


[Bug 1506169] Re: if linux metapackage is installed software properties will uninstall it

2015-10-23 Thread Launchpad Bug Tracker
** Branch linked: lp:~brian-murray/software-properties/bug-1506169

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

Title:
  if linux metapackage is installed software properties will uninstall
  it

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

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


[Bug 1509341] Re: linux: 3.13.0-67.110 -proposed tracker

2015-10-23 Thread Brad Figg
** Changed in: kernel-sru-workflow/prepare-package-signed
   Status: New => Fix Released

** Changed in: kernel-sru-workflow/prepare-package-signed
 Assignee: Canonical Kernel Team (canonical-kernel-team) => Luis Henriques 
(henrix)

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

Title:
  linux: 3.13.0-67.110 -proposed tracker

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

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


Re: [Bug 1094744] Re: MS Sculpt Touch Mouse needs to be re-paired periodically

2015-10-23 Thread Marcos Alano
Thanks David.

I will check this and create and submit a patch.

Cheers.

2015-10-23 15:49 GMT-02:00 David Cesarino de Sousa <1094...@bugs.launchpad.net>:
> Hi Marcos,
>
> I did a clean install of 15.10 yesterday, so I also used that
> opportunity to test this issue. In short, pairing using the user
> interface still did not work, but adding the OUI to the XML file was
> enough to persist the connection across reboots and suspends. No need to
> use the command line foo I did in #59.
>
> To be fully precise, this is what I did:
>
> 1. Clean install Ubuntu 15.10.
> 2. Pair using the bluetooth icon in the top right at the desktop.
> 3. Try suspend or reboot. It did not work (connection even refused to set up 
> without removing and adding the device again).
> 4. Added the OUI to the XML file as this, under the Microsoft Mice section:
>
> 
>
> 5. Reboot.
>
> After this, the connection is now persisting across reboots and
> suspends. It would be nice for other users if they didn't need to edit
> the XML and the user interface did all that was needed automatically,
> but I'm satisfied it works easily now.
>
> Cheers.
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1094744
>
> Title:
>   MS Sculpt Touch Mouse needs to be re-paired periodically
>
> Status in GNOME Bluetooth:
>   Fix Released
> Status in bluez package in Ubuntu:
>   Confirmed
> Status in gnome-bluetooth package in Ubuntu:
>   Fix Released
> Status in bluez source package in Precise:
>   Confirmed
> Status in gnome-bluetooth source package in Precise:
>   Fix Released
> Status in bluez source package in Quantal:
>   Won't Fix
> Status in gnome-bluetooth source package in Quantal:
>   Fix Released
> Status in bluez source package in Raring:
>   Won't Fix
> Status in gnome-bluetooth source package in Raring:
>   Won't Fix
> Status in bluez package in Fedora:
>   Unknown
>
> Bug description:
>   [Impact] The patch makes Microsoft Wedge/Sculpt Touch mice stay connected.
>   [Test Case] Get a Microsoft Wedge/Sculpt Touch mouse, pair it, restart 
> session, watch it automatically re-pair.
>   [Regression Potential] Little. The patched piece of XML is only relevant to 
> hardware having the same ID.
>
>   When you don't use the mouse for a long enough time, the mouse
>   disconnects and won't reconnect. I have to go into bluetooth settings,
>   remove it, and re-pair it.
>
>   1)
>   ~ % lsb_release -rd
>   Description:  Ubuntu 12.04.1 LTS
>   Release:  12.04
>
>   2)
>   ~ % apt-cache policy bluez
>   bluez:
> Installed: 4.98-2ubuntu7
> Candidate: 4.98-2ubuntu7
> Version table:
>*** 4.98-2ubuntu7 0
>   500 http://us.archive.ubuntu.com/ubuntu/ precise/main amd64 Packages
>   100 /var/lib/dpkg/status
>
>   3)
>   I expected the mouse to reconnect automatically, or at least after I try to 
> reconnect manually through the bluetooth settings.
>
>   4)
>   I have to re-pair the mouse in order to use it again. Turning the mouse off 
> and on doesn't work either.
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/gnome-bluetooth/+bug/1094744/+subscriptions


-- 
Marcos Alano
--
P: Por que este email é tão curto?
R: http://five.sentenc.es
--

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

Title:
  MS Sculpt Touch Mouse needs to be re-paired periodically

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

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

[Bug 1508574] Re: linux-lts-vivid: 3.19.0-32.37~14.04.1 -proposed tracker

2015-10-23 Thread Brad Figg
** Changed in: kernel-sru-workflow/verification-testing
   Status: New => In Progress

** Changed in: kernel-sru-workflow/certification-testing
   Status: New => Confirmed

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

** Changed in: kernel-sru-workflow/security-signoff
   Status: New => Confirmed

** Description changed:

  This bug is for tracking the 3.19.0-32.37~14.04.1 upload package. This
  bug will contain status and testing results related to that upload.
  
  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Wednesday, 21. October 2015 19:02 UTC
  kernel-stable-master-bug:1508381
- kernel-stable-phase:CopyToProposed
  kernel-stable-Prepare-package-end:Thursday, 22. October 2015 19:02 UTC
  kernel-stable-Promote-to-proposed-start:Thursday, 22. October 2015 19:02 UTC
- kernel-stable-phase-changed:Thursday, 22. October 2015 19:02 UTC
  kernel-stable-Promote-to-proposed-end:Friday, 23. October 2015 16:31 UTC
+ kernel-stable-phase:Verification & Testing
+ kernel-stable-phase-changed:Friday, 23. October 2015 18:00 UTC
+ kernel-stable-Verification-testing-start:Friday, 23. October 2015 18:00 UTC
+ kernel-stable-Certification-testing-start:Friday, 23. October 2015 18:00 UTC
+ kernel-stable-Security-signoff-start:Friday, 23. October 2015 18:01 UTC
+ proposed-announcement-sent:True
+ kernel-stable-Regression-testing-start:Friday, 23. October 2015 18:01 UTC

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

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

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

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


[Bug 1509178] Re: linux-raspi2: 4.2.0-1014.20 -proposed tracker

2015-10-23 Thread Brad Figg
** Changed in: kernel-sru-workflow/prepare-package-meta
   Status: New => Fix Released

** Changed in: kernel-sru-workflow/prepare-package-meta
 Assignee: Canonical Kernel Team (canonical-kernel-team) => Brad Figg 
(brad-figg)

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

Title:
  linux-raspi2: 4.2.0-1014.20 -proposed tracker

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

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


[Bug 1509159] Re: Wine 1.7 Missing Dependencies on Ubuntu 15.10

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

** Changed in: wine (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/1509159

Title:
  Wine 1.7 Missing Dependencies on Ubuntu 15.10

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

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


[Bug 1481295] Re: virt-manager after upgrade: Error polling connection 'qemu:///system': internal error: could not get interface XML description: File operation failed - Failed to read (null)

2015-10-23 Thread Thomas Bruno
Putthing this in debian/patch/fix-virtmanager and adding fix-virtmanager
to debian/patch/series solved this issue:

diff --git a/src/dutil_linux.c b/src/dutil_linux.c
index a3b0176..5d69d19 100644
--- a/src/dutil_linux.c
+++ b/src/dutil_linux.c
@@ -1041,7 +1041,14 @@ static void add_link_info(struct netcf *ncf,
 ERR_NOMEM(!path, ncf);
 state = read_file(path, );
 FREE(path);
-ERR_THROW_STRERROR(!state, ncf, EFILE, "Failed to read %s", path);
+if (!state) {
+/* missing operstate is *not* an error. It could be due to an
+ * alias interface, which has not entry in /sys/class/net at
+ * all, for example.
+ */
+state = strdup("");
+ERR_NOMEM(!state, ncf);
+}
 if ((nl = strchr(state, '\n')))
 *nl = 0;
 prop = xmlSetProp(link_node, BAD_CAST "state", BAD_CAST state);

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

Title:
  virt-manager after upgrade: Error polling connection 'qemu:///system':
  internal error: could not get interface XML description: File
  operation failed - Failed to read (null)

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

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


[Bug 1508574] Re: linux-lts-vivid: 3.19.0-32.37~14.04.1 -proposed tracker

2015-10-23 Thread Steve Beattie
** Changed in: kernel-sru-workflow/security-signoff
   Status: Confirmed => In Progress

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

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

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

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

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


Re: [Bug 1434826] Re: Strange artifacts on top of the Unity

2015-10-23 Thread Micha
Hi,
but I do not want to install Ubuntu again only for a bugreport which eventually
is not even possible cause Ubuntu was almost unusable with these defect
graphics/desktop - Mint is working almost except gaming, all Ubuntu-distros I
tried were defect directy after install and first startup with these graphical
problems and almost unusable - and I do not want to delete my almost working
Mate now only for a bugreport...
Thanks anyway, but the problem the x1250 have is definately not Ubuntu-related,
every distro I tried has problems - it must be a mesa / ati-driver problem or
something else, not distro-specific.

Greets, Micha

> "Christopher M. Penalver"  hat am 17.
> Oktober 2015 um 20:17 geschrieben:
> 
> 
> Micha, if you have a problem with Ubuntu (not Mint), it will help immensely if
> you filed a new report 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.
> 
> -- 
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1434826
> 
> Title:
>   Strange artifacts on top of the Unity
> 
> Status in xserver-xorg-video-ati package in Ubuntu:
>   Incomplete
> 
> Bug description:
>   Strange artifacts on top of Unity.
> 
>   ProblemType: Bug
>   DistroRelease: Ubuntu 15.04
>   Package: xorg 1:7.7+7ubuntu4
>   ProcVersionSignature: Ubuntu 3.19.0-9.9-generic 3.19.1
>   Uname: Linux 3.19.0-9-generic i686
>   .tmp.unity.support.test.0:
> 
>   ApportVersion: 2.16.2-0ubuntu4
>   Architecture: i386
>   CasperVersion: 1.355
>   CompizPlugins: No value set for
> `/apps/compiz-1/general/screen0/options/active_plugins'
>   CompositorRunning: compiz
>   CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
>   CompositorUnredirectFSW: true
>   CurrentDesktop: Unity
>   Date: Sat Mar 21 14:18:27 2015
>   DistUpgraded: Fresh install
>   DistroCodename: vivid
>   DistroVariant: ubuntu
>   ExtraDebuggingInterest: Yes
>   GraphicsCard:
>    Advanced Micro Devices, Inc. [AMD/ATI] RS600M [Radeon Xpress 1250]
> [1002:7942] (prog-if 00 [VGA controller])
>      Subsystem: Samsung Electronics Co Ltd Device [144d:c036]
>   LiveMediaBuild: Ubuntu 15.04 "Vivid Vervet" - Alpha i386 (20150321)
>   MachineType: SAMSUNG ELECTRONICS CO., LTD. R40P/R41P
>   PccardctlIdent:
>    Socket 0:
>      no product info available
>   PccardctlStatus:
>    Socket 0:
>      no card
>   ProcEnviron:
>    TERM=xterm
>    PATH=(custom, no user)
>    XDG_RUNTIME_DIR=
>    LANG=en_US.UTF-8
>    SHELL=/bin/bash
>   ProcKernelCmdLine: file=/cdrom/preseed/username.seed boot=casper
> initrd=/casper/initrd.lz quiet splash --- maybe-ubiquity
>   SourcePackage: xorg
>   Symptom: display
>   UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
>   UpgradeStatus: No upgrade log present (probably fresh install)
>   dmi.bios.date: 03/29/2007
>   dmi.bios.vendor: Phoenix Technologies LTD
>   dmi.bios.version: 02YE
>   dmi.board.name: R40P/R41P
>   dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
>   dmi.chassis.asset.tag: No Asset Tag
>   dmi.chassis.type: 1
>   dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
>   dmi.chassis.version: N/A
>   dmi.modalias:
> dmi:bvnPhoenixTechnologiesLTD:bvr02YE:bd03/29/2007:svnSAMSUNGELECTRONICSCO.,LTD.:pnR40P/R41P:pvr01YE:rvnSAMSUNGELECTRONICSCO.,LTD.:rnR40P/R41P:rvr:cvnSAMSUNGELECTRONICSCO.,LTD.:ct1:cvrN/A:
>   dmi.product.name: R40P/R41P
>   dmi.product.version: 01YE
>   dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.
>   version.compiz: compiz 1:0.9.12.1+15.04.20150303-0ubuntu1
>   version.libdrm2: libdrm2 2.4.59-0ubuntu1
>   version.libgl1-mesa-dri: libgl1-mesa-dri 10.5.0-0ubuntu1
>   version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
>   version.libgl1-mesa-glx: libgl1-mesa-glx 10.5.0-0ubuntu1
>   version.xserver-xorg-core: xserver-xorg-core 2:1.17.1-0ubuntu3
>   version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.0-1ubuntu2
>   version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.5.0-1ubuntu2
>   version.xserver-xorg-video-intel: xserver-xorg-video-intel
> 2:2.99.917-1~exp1ubuntu2build1
>   version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau
> 1:1.0.11-1ubuntu2build1
>   xserver.bootTime: Sat Mar 21 13:57:40 2015
>   xserver.configfile: default
>   xserver.errors:
> 
>   xserver.logfile: /var/log/Xorg.0.log
>   xserver.outputs: OutputLVDS
> S-video   VGA-0
>   xserver.version: 2:1.17.1-0ubuntu3
>   xserver.video_driver: radeon
> 
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-ati/+bug/1434826/+subscriptions

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

Title:
  

[Bug 1509470] [NEW] Sound very low in subwoofer.

2015-10-23 Thread mindentropy
Public bug reported:

I have upgraded from ubuntu 15.04 to 15.10. After this the sound from
the subwoofer is very low. I tested with another machine which is a
15.04 to check if my subwoofer was busted and found that the sound comes
out fine.

In the present machine I have a snd-hda-intel.
lspci -vv output

00:1b.0 Audio device: Intel Corporation 82801JI (ICH10 Family) HD Audio 
Controller
Subsystem: Dell Device 02ac
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- https://bugs.launchpad.net/bugs/1509470

Title:
  Sound very low in subwoofer.

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

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

[Bug 1508574] fozzie (amd64) - tests ran: 180, failed: 0

2015-10-23 Thread Brad Figg
tests ran: 180, failed: 0;
  
http://kernel.ubuntu.com/testing/3.19.0-32.37~14.04.1/fozzie__3.19.0-32.37~14.04.1__2015-10-23_16-34-00/results-index.html

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

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

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

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


[Bug 1300948] Re: aa-genprof crashed with PermissionError in _mkstemp_inner(): [Errno 13] Permission denied: '/etc/apparmor.d/tmphtnhuikm~'

2015-10-23 Thread Christian Boltz
*** This bug is a duplicate of bug 1489196 ***
https://bugs.launchpad.net/bugs/1489196

** This bug has been marked a duplicate of bug 1489196
   aa-genprof should display a clear error message instead of a stack trace if 
it doesn't have write permissions to the profile directory

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

Title:
  aa-genprof crashed with PermissionError in _mkstemp_inner(): [Errno
  13] Permission denied: '/etc/apparmor.d/tmphtnhuikm~'

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

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


[Bug 1509470] Re: Sound very low in subwoofer.

2015-10-23 Thread mindentropy
** Description changed:

  I have upgraded from ubuntu 15.04 to 15.10. After this the sound from
  the subwoofer is very low. I tested with another machine which is a
  15.04 to check if my subwoofer was busted and found that the sound comes
  out fine.
  
  In the present machine I have a snd-hda-intel.
  lspci -vv output
  
  00:1b.0 Audio device: Intel Corporation 82801JI (ICH10 Family) HD Audio 
Controller
- Subsystem: Dell Device 02ac
- Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- 
SERR- TAbort- 
SERR- https://bugs.launchpad.net/bugs/1509470

Title:
  Sound very low in subwoofer.

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

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

[Bug 1508574] ms10-35-mcdivittB0 (arm64) - tests ran: 153, failed: 5

2015-10-23 Thread Brad Figg
tests ran: 153, failed: 5;
  
http://kernel.ubuntu.com/testing/3.19.0-32.37~14.04.1/ms10-35-mcdivittB0__3.19.0-32.37~14.04.1__2015-10-23_16-38-00/results-index.html

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

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

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

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


[Bug 919115] Re: CVE-2012-0056

2015-10-23 Thread Mathew Hodson
** Changed in: linux (Ubuntu Precise)
   Status: Fix Released => Invalid

** Changed in: linux-ti-omap4 (Ubuntu Precise)
   Status: Fix Released => Invalid

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

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

Title:
  CVE-2012-0056

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

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


[Bug 1509237] Re: dm-cache: clean cache resyncs to origin on every boot

2015-10-23 Thread Bogdan Vasiliev
** Changed in: linux (Ubuntu)
   Status: Incomplete => New

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

Title:
  dm-cache: clean cache resyncs to origin on every boot

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

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


[Bug 1500591] Re: ubuntu-drivers-common should not care about case-sensitivity in modaliases

2015-10-23 Thread Alberto Milone
** Changed in: ubuntu-drivers-common (Ubuntu)
   Status: New => Triaged

** Changed in: ubuntu-drivers-common (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/1500591

Title:
  ubuntu-drivers-common should not care about case-sensitivity in
  modaliases

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

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


[Bug 1509251] [NEW] Custom hotkeys stop working after sometime

2015-10-23 Thread gorilych
Public bug reported:

I have custom hotkeys (like CapsLock for changing keyboard layouts) and
after some time they stop to work. Nothing happens when I use keyboard
shortcut. It starts working again for sometime if I go to the settings
and reconfigure it.

$ lsb_release -rd
Description:Ubuntu 15.10
Release:15.10

This is Kubuntu (fresh installation)

Let me know what additional information I can provide. Unfortunately I
don't know which package is responsible for keyboard shortcuts in
Kubuntu.

** Affects: kde-workspace (Ubuntu)
 Importance: Undecided
 Status: New

** Description changed:

- I have custom hotkeys (like CapsLock for changing keyboard layouts or
- Ctrl+A to invoke shell script) and after some time they stop to work.
- Nothing happens when I use keyboard shortcut. It starts working again
- for sometime if I go to the settings and reconfigure it.
+ I have custom hotkeys (like CapsLock for changing keyboard layouts) and
+ after some time they stop to work. Nothing happens when I use keyboard
+ shortcut. It starts working again for sometime if I go to the settings
+ and reconfigure it.
  
  $ lsb_release -rd
  Description:Ubuntu 15.10
  Release:15.10
  
  This is Kubuntu (fresh installation)
  
  Let me know what additional information I can provide. Unfortunately I
  don't know which package is responsible for keyboard shortcuts in
  Kubuntu.

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

Title:
  Custom hotkeys stop working after sometime

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

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


[Bug 1509083] Re: Backport Apache fix "Honor ProxyTimeout" (54973)

2015-10-23 Thread Robin Kluth
I can help you to identify the upstream patch in upstream VCS for now ;)

The revision:
http://svn.apache.org/viewvc?view=revisionrevision=1524368

The path:
http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/mod_proxy_fcgi.c?r1=1524368=1524367=1524368=patch

Regards,

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

Title:
  Backport Apache fix "Honor ProxyTimeout" (54973)

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

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


[Bug 1509083] Re: Backport Apache fix "Honor ProxyTimeout" (54973)

2015-10-23 Thread Robin Kluth
I can help you to identify the upstream patch in upstream VCS for now ;)

The revision:
http://svn.apache.org/viewvc?view=revisionrevision=1524368

The path:
http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/mod_proxy_fcgi.c?r1=1524368=1524367=1524368=patch

Regards,

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

Title:
  Backport Apache fix "Honor ProxyTimeout" (54973)

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

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


[Bug 1509254] [NEW] Unable to enable Wifi for Qualcomm Atheros Device(Acer E5-573-5108)

2015-10-23 Thread santosh
Public bug reported:

I installed ubuntu 14.04.3 version in my Acer laptop but I am unable to
enable the wifiQualcomm Atheros Device(Acer E5-573-5108)

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: linux-image-3.19.0-31-generic 3.19.0-31.36~14.04.1
ProcVersionSignature: Ubuntu 3.19.0-31.36~14.04.1-generic 3.19.8-ckt7
Uname: Linux 3.19.0-31-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.16
Architecture: amd64
CurrentDesktop: Unity
Date: Fri Oct 23 14:06:30 2015
InstallationDate: Installed on 2015-10-23 (0 days ago)
InstallationMedia: Ubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64 (20150805)
SourcePackage: linux-lts-vivid
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: linux-lts-vivid (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug trusty

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

Title:
  Unable to enable Wifi for Qualcomm Atheros Device(Acer E5-573-5108)

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

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


[Bug 1460545] Re: Packages for KDE4.14.3 are not ready

2015-10-23 Thread Flames_in_Paradise
Hi there,

since Wily 15.10 has been released recently – could we have an
estimation about progress expectations here?

best regards

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

Title:
  Packages for KDE4.14.3 are not ready

To manage notifications about this bug go to:
https://bugs.launchpad.net/kubuntu-ppa/+bug/1460545/+subscriptions

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


[Bug 1194465] Re: scope-runner-dbus.py crashed with SIGSEGV in auth_session_remote_object_destroyed_cb()

2015-10-23 Thread Thomas A. F. Thorne
My Ubuntu 14.04 LTS 64-bit system had just rebooted after installing
some software updates.  As it happens my DHCP server was offline when I
rebooted so I ended up with no IP networking for 1/2 hour.  While I was
instigating what was wrong with my PC (not yet knowing that the DHCP
server was offline) I had an error report pop up.  Once the Internet
connection was restored I reported the error.

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

Title:
  scope-runner-dbus.py crashed with SIGSEGV in
  auth_session_remote_object_destroyed_cb()

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity-scope-gdrive/+bug/1194465/+subscriptions

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


[Bug 1427359] Re: ubuntu-device-flash fails to flash image once it reboots into recovery mode

2015-10-23 Thread Rex Tsai
The problem is the u-d-f (ubuntu-device-flash) could get access to "adb
shell" to deploy new images after it send "adb reboot recovery" to the
device.

It's because the production recovery image does not enable adb shell for
security reason. You have to pass a engineering version recovery to
reflash with ubuntu-device-flash.

You could find the engineering recovery image at

http://people.canonical.com/~jhm/barajas/recovery-krillin.img
http://people.canonical.com/~alextu/tangxi/recovery/recovery.img


** Changed in: android-tools (Ubuntu)
   Status: Confirmed => Invalid

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

Title:
  ubuntu-device-flash fails to flash image once it reboots into recovery
  mode

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

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


[Bug 1450222] Re: [SDK] cursor handle is cut off by keyboard and not functional

2015-10-23 Thread Andrea Bernabei
I'm not entirely sure this will fix it...

the new handle will still have most of its ("extended") touch area under
the keyboard, so it will still be difficult to grab, plus the keyboard
will still cut it if the view doesn't have any bottom margin.

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

Title:
  [SDK] cursor handle is cut off by keyboard and not functional

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

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


[Bug 1487524] Re: 14e4:43ba Broadcom BCM43602 not seeing 5Ghz range

2015-10-23 Thread Berg Lloyd-Haig
Ubuntu 15.10 with the firmware 1.149 package:

~$ lspci | grep Network
 04:00.0 Network controller: Broadcom Corporation BCM43602 802.11ac 
Wireless LAN SoC (rev 01)

~$ dpkg -l | grep firmware
 ii  linux-firmware  1.149 

I can see that the device supports 5 GHz, but it still can't see any 5
GHz networks.

~$ iwlist wlp4s0 freq
wlp4s032 channels in total; available frequencies :
  Channel 01 : 2.412 GHz
  Channel 02 : 2.417 GHz
  Channel 03 : 2.422 GHz
  Channel 04 : 2.427 GHz
  Channel 05 : 2.432 GHz
  Channel 06 : 2.437 GHz
  Channel 07 : 2.442 GHz
  Channel 08 : 2.447 GHz
  Channel 09 : 2.452 GHz
  Channel 10 : 2.457 GHz
  Channel 11 : 2.462 GHz
  Channel 12 : 2.467 GHz
  Channel 13 : 2.472 GHz
  Channel 36 : 5.18 GHz
  Channel 40 : 5.2 GHz
  Channel 44 : 5.22 GHz
  Channel 48 : 5.24 GHz
  Channel 52 : 5.26 GHz
  Channel 56 : 5.28 GHz
  Channel 60 : 5.3 GHz
  Channel 64 : 5.32 GHz
  Channel 100 : 5.5 GHz
  Channel 104 : 5.52 GHz
  Channel 108 : 5.54 GHz
  Channel 112 : 5.56 GHz
  Channel 116 : 5.58 GHz
  Channel 120 : 5.6 GHz
  Channel 124 : 5.62 GHz
  Channel 128 : 5.64 GHz
  Channel 132 : 5.66 GHz
  Channel 136 : 5.68 GHz
  Channel 140 : 5.7 GHz
  Current Frequency:2.462 GHz (Channel 11)

~$ sudo iwlist wlp4s0 scan | grep -e Freq -e SSID
Frequency:2.462 GHz (Channel 11)
ESSID:"Mistico"
Frequency:2.412 GHz (Channel 1)
ESSID:"Telstra1D5A"
Frequency:2.437 GHz (Channel 6)
ESSID:"HP-Print-42-Officejet Pro 8600"
Frequency:2.437 GHz (Channel 6)
ESSID:"Living room"

~$ iw phy [5 GHz Section]
Frequencies:
* 5170 MHz [34] (disabled)
* 5180 MHz [36] (20.0 dBm)
* 5190 MHz [38] (disabled)
* 5200 MHz [40] (20.0 dBm)
* 5210 MHz [42] (disabled)
* 5220 MHz [44] (20.0 dBm)
* 5230 MHz [46] (disabled)
* 5240 MHz [48] (20.0 dBm)
* 5260 MHz [52] (20.0 dBm) (no IR, radar detection)
  DFS state: usable (for 2969 sec)
  DFS CAC time: 6 ms
* 5280 MHz [56] (20.0 dBm) (no IR, radar detection)
  DFS state: usable (for 2969 sec)
  DFS CAC time: 6 ms
* 5300 MHz [60] (20.0 dBm) (no IR, radar detection)
  DFS state: usable (for 2969 sec)
  DFS CAC time: 6 ms
* 5320 MHz [64] (20.0 dBm) (no IR, radar detection)
  DFS state: usable (for 2969 sec)
  DFS CAC time: 6 ms
* 5500 MHz [100] (20.0 dBm) (no IR, radar detection)
  DFS state: usable (for 2969 sec)
  DFS CAC time: 6 ms
* 5520 MHz [104] (20.0 dBm) (no IR, radar detection)
  DFS state: usable (for 2969 sec)
  DFS CAC time: 6 ms
* 5540 MHz [108] (20.0 dBm) (no IR, radar detection)
  DFS state: usable (for 2969 sec)
  DFS CAC time: 6 ms
* 5560 MHz [112] (20.0 dBm) (no IR, radar detection)
  DFS state: usable (for 2969 sec)
  DFS CAC time: 6 ms
* 5580 MHz [116] (20.0 dBm) (no IR, radar detection)
  DFS state: usable (for 2969 sec)
  DFS CAC time: 6 ms
* 5600 MHz [120] (20.0 dBm) (no IR, radar detection)
  DFS state: usable (for 2969 sec)
  DFS CAC time: 6 ms
* 5620 MHz [124] (20.0 dBm) (no IR, radar detection)
  DFS state: usable (for 2969 sec)
  DFS CAC time: 6 ms
* 5640 MHz [128] (20.0 dBm) (no IR, radar detection)
  DFS state: usable (for 2969 sec)
  DFS CAC time: 6 ms
* 5660 MHz [132] (20.0 dBm) (no IR, radar detection)
  DFS state: usable (for 2969 sec)
  DFS CAC time: 6 ms
* 5680 MHz [136] (20.0 dBm) (no IR, radar detection)
  DFS state: usable (for 2969 sec)
  

[Bug 1507982] Re: [regression] OTA7 broke previously working app

2015-10-23 Thread Alan Griffiths
We don't know how things will be done in the future, but I do know what
Mir supports in the present. That is maintaining backward compatibility
for the libmirclient9 client ABI. We have tests to ensure this.

Mir does not support "bringing your own libmir*" on just the client side
- you also have to "bring" the server side. That is the way it is.

If you disagree, please point me at any tests for this functionality. If
you want to change it please convince the team that it is needed and
provide the tests for a supported "feature".

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

Title:
  [regression] OTA7 broke previously working app

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

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


[Bug 1494804] Re: evolution-source-registry crashed with SIGABRT in g_assertion_message()

2015-10-23 Thread Thomas A. F. Thorne
I don't quite understand that part about "seems like you didn't active
ddeb for trusty-updates".  Do you mean that there are some steps I need
to take to enable the installation of debug symbols for packages that
come from trusty-updates?

If it is likely that this is a different issue, I can raise a new bug
report.  I seem to still have the /var/crash
/_usr_lib_evolution_evolution-source-registry.1000.crash file from the
19th so I will try and file a report from that.

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

Title:
  evolution-source-registry crashed with SIGABRT in
  g_assertion_message()

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution-data-server/+bug/1494804/+subscriptions

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


[Bug 1450222] Re: [SDK] cursor handle is cut off by keyboard and not functional

2015-10-23 Thread Andrea Bernabei
After talking to Jouni,
it seems the plan is also to make editable text components have a default 
padding around them to accomodate the text handler.

That would invalidate my comment above.

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

Title:
  [SDK] cursor handle is cut off by keyboard and not functional

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

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


[Bug 1508381] kili (amd64) - tests ran: 1, failed: 1

2015-10-23 Thread Brad Figg
tests ran:   1, failed: 1;
  
http://kernel.ubuntu.com/testing/3.19.0-32.37/kili__3.19.0-32.37__2015-10-23_04-34-00/results-index.html

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

Title:
  linux: 3.19.0-32.37 -proposed tracker

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

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


[Bug 1507769] Re: App store does not display images

2015-10-23 Thread Timo Jyrinki
Silo 32's qtbase ( 5.4.1+dfsg-2ubuntu11~vivid1~test1 ) has had a batch
of network fixes waiting for bug #1470700. It fixes at least two
networking problems (non OTA targeted though), but causes a regression
#1508945 that is also now seen on Qt 5.5.1 where the patches are
backported from.

If 32 has anything to fix this bug too (please check the instruction in
1470700 description), we should start considering the landing of 032 and
finding out what causes the regression. I've tried a bit looking at the
weather app's logs and code but found no hints. I did start to wonder
though if it could be something new apparmor blocks when the patches are
in use.

As a sidenote Jolla just started shipping essentially 032 sans the QNAM-
hang-when-offline patch http://is.gd/Nu0A6y - ie the two network
accesibility patches backported all the way to Qt 5.2. They use connman
however so it's otherwise a different code path.

If 32 doesn't change anything, then I don't have currently other
networking related patches in queue.

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

Title:
  App store does not display images

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

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


[Bug 1508893] Re: TFTP timeout on ARM64 hw when booting from grub that was PXE loaded

2015-10-23 Thread Andrew Cloke
>From discussions with Ming, the cvm0 node on which he tested
successfully, may be running with Cavium's UEFI rather than AMI's.

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

Title:
  TFTP timeout on ARM64 hw when booting from grub that was  PXE loaded

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

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


[Bug 1500591] Re: ubuntu-drivers-common should not care about case-sensitivity in modaliases

2015-10-23 Thread Alberto Milone
Good point. The current code (i.e. fnmatch.fnmatch()) is case sensitive
because the OS is.

** Changed in: ubuntu-drivers-common (Ubuntu)
 Assignee: (unassigned) => Alberto Milone (albertomilone)

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

Title:
  ubuntu-drivers-common should not care about case-sensitivity in
  modaliases

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

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


[Bug 1492895] Comment bridged from LTC Bugzilla

2015-10-23 Thread bugproxy
--- Comment From kamale...@in.ibm.com 2015-10-23 08:43 EDT---
Can maintainer from Canonical have a look at the response and kindly let us 
know if your looking for more information to make the requested changes.

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

Title:
  Ubuntu 14.04.03 Missing file - run.vpdupdate in libvpd package

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

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


[Bug 1509237] Missing required logs.

2015-10-23 Thread Brad Figg
This bug is missing log files that will aid in diagnosing the problem.
>From a terminal window please run:

apport-collect 1509237

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

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

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

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

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

Title:
  dm-cache: clean cache resyncs to origin on every boot

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

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


[Bug 1508972] Re: Can't enumerate cameras on the phone

2015-10-23 Thread Chris Coulson
I worked around this in Oxide with http://bazaar.launchpad.net/~oxide-
developers/oxide/oxide.trunk/revision/1238

This is won't fix for 1.11 because of bug 1509256.

** Changed in: oxide/1.11
   Status: Triaged => Won't Fix

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

Title:
  Can't enumerate cameras on the phone

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

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


[Bug 1508510] Re: Something in the Kernel crashes when I try to mount via NFS

2015-10-23 Thread Andreas Bouché
Thanks @marius888.

Yes, behaviour and the log-messages were exactly the same under 3.16.0-51, as 
you can see in marius' stacktrace. 
We were both facing this using vagrant-built virtualbox-machines with 
NFS-shares on Lenovo Thinkpads W520/30.

I will try to reproduce it also on lts-vivid shortly.

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

Title:
  Something in the Kernel crashes when I try to mount via NFS

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

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


[Bug 1461950] Status changed to Confirmed

2015-10-23 Thread Brad Figg
This change was made by a bot.

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

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

Title:
  Support for Ambient Light Sensor in ASUS Zenbook

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

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


[Bug 1485217] Re: Magic for text/x-tex broken

2015-10-23 Thread Jan Philipp Wächter
The bug is now fixed in Debian upstream (revision 378, thanks to user "slomo"):
http://anonscm.debian.org/viewvc/pkg-freedesktop/trunk/shared-mime-info/debian/patches/061_tex-matlab.patch?view=log

It is not (and probably never was) present in the Freedesktop sources:
http://cgit.freedesktop.org/xdg/shared-mime-info/tree/freedesktop.org.xml.in

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

Title:
  Magic for text/x-tex broken

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/shared-mime-info/+bug/1485217/+subscriptions

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


[Bug 1363356] Re: ssl.SSLEOFError: EOF occurred in violation of protocol

2015-10-23 Thread Tyler Hicks
Thanks for the bug reports. Do any of you affected folks have a simple
reproducer? I'm unable to reproduce the bug but I also cannot get
`yowsup-cli registration` to work (pulled from github) and I don't know
what kind of setup is needed to reproduce Eli's issue.

A simple reproducer would go a long way in triaging this bug. Thanks!

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

Title:
  ssl.SSLEOFError: EOF occurred in violation of protocol

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

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


[Bug 1489196] Re: aa-genprof should display a clear error message instead of a stack trace if it doesn't have write permissions to the profile directory

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

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

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

Title:
  aa-genprof should display a clear error message instead of a stack
  trace if it doesn't have write permissions to the profile directory

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

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


[Bug 1508574] onibi (amd64) - tests ran: 180, failed: 0

2015-10-23 Thread Brad Figg
tests ran: 180, failed: 0;
  
http://kernel.ubuntu.com/testing/3.19.0-32.37~14.04.1/onibi__3.19.0-32.37~14.04.1__2015-10-23_16-35-00/results-index.html

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

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

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

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


[Bug 1495983] Re: [Hyper-V] kernel panic occurs when installing Ubuntu Server 15.10 x32

2015-10-23 Thread Joseph Salisbury
The patch "storvsc: use small sg_tablesize on x86" is in the master-next
branch for both Vivid and Wily.  They fix will be in the next kernel
version released.

Once the trusty test kernel is validated, I can submit and SRU request
for Trusty.

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

Title:
  [Hyper-V] kernel panic occurs when installing Ubuntu Server 15.10 x32

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

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


[Bug 1508574] dwalin (amd64) - tests ran: 66, failed: 66

2015-10-23 Thread Brad Figg
tests ran:  66, failed: 66;
  
http://kernel.ubuntu.com/testing/3.19.0-32.37~14.04.1/dwalin__3.19.0-32.37~14.04.1__2015-10-23_17-51-00/results-index.html

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

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

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

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


[Bug 1509470] Re: Sound very low in subwoofer.

2015-10-23 Thread mindentropy
** Description changed:

  I have upgraded from ubuntu 15.04 to 15.10. After this the sound from
  the subwoofer is very low. I tested with another machine which is a
  15.04 to check if my subwoofer was busted and found that the sound comes
- out fine.
+ out fine. I have a 4.1 Creative speakers.
  
  In the present machine I have a snd-hda-intel.
  lspci -vv output
  
  00:1b.0 Audio device: Intel Corporation 82801JI (ICH10 Family) HD Audio 
Controller
  Subsystem: Dell Device 02ac
  Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
  Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- 
SERR- https://bugs.launchpad.net/bugs/1509470

Title:
  Sound very low in subwoofer.

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

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

[Bug 1470250] Re: [Hyper-V] Ubuntu 14.04.2 LTS Generation 2 SCSI Errors on VSS Based Backups

2015-10-23 Thread Joseph Salisbury
We are currently awaiting the patches posted in comment #35.

Can you post the specific CentOS kernel version you are using?

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

Title:
  [Hyper-V] Ubuntu 14.04.2 LTS Generation 2 SCSI Errors on VSS Based
  Backups

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

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


[Bug 1509471] [NEW] plasma-nm 5.4.2 in Kubuntu 15.10 hangs in system tray on statup

2015-10-23 Thread themroc
Public bug reported:

With systray enabled for Networkmanager in KDE Sytem Settings plasma
desktop hangs a minute after startup.

After this long time to log into plasma 5: plasma-nm ends up with a
unclickable blank icon

Same effekt starting kde5-nm-connection-editor via systray-icon or
directly via console.

Disabling network in systray stops the problem.

plasma-nm   4:5.4.2-0ubuntu1
libkf5networkmanagerqt6 5.15.0-0ubuntu1

Qt: 5.4.2
KDE Frameworks: 5.15.0

** Affects: plasma-nm (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: 15.10 networkmanager plasma

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

Title:
  plasma-nm 5.4.2 in  Kubuntu 15.10 hangs in system tray on statup

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

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


[Bug 1509081] Re: nano segfaults as root after upgrade to 15.10

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

** Changed in: nano (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/1509081

Title:
  nano segfaults as root after upgrade to 15.10

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

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


[Bug 1504481] Re: package xe-guest-utilities 6.2.0-1120+dsf1-0ubuntu1~14.04.1 failed to install: sub-processo script post-installation instalado retornou estado de saída de erro 1

2015-10-23 Thread Launchpad Bug Tracker
This bug was fixed in the package xe-guest-utilities -
6.2.0-1120+dsf1-0ubuntu3

---
xe-guest-utilities (6.2.0-1120+dsf1-0ubuntu3) xenial; urgency=medium

  * upstart job: Check if /sys/hypervisor/type exists before attempting to
read it (LP: #1504481).

 -- Ben Howard   Fri, 23 Oct 2015 12:01:49 -0600

** Changed in: xe-guest-utilities (Ubuntu)
   Status: Confirmed => Fix Released

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

Title:
  package xe-guest-utilities 6.2.0-1120+dsf1-0ubuntu1~14.04.1 failed to
  install: sub-processo script post-installation instalado retornou
  estado de saída de erro 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xe-guest-utilities/+bug/1504481/+subscriptions

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

[Bug 1509478] Missing required logs.

2015-10-23 Thread Brad Figg
This bug is missing log files that will aid in diagnosing the problem.
>From a terminal window please run:

apport-collect 1509478

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

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

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

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

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

Title:
  Aspire-ES1-311 touchpad

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

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


[Bug 1509478] [NEW] Aspire-ES1-311 touchpad

2015-10-23 Thread Jamal
Public bug reported:

1. Aspire e 13 -es1-311-c7hp
2. precision touchpad
3. from beginning
' Touchpad' did not work after installation of Ubuntu.


Ubuntu 14.04.3 LTS

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

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

Title:
  Aspire-ES1-311 touchpad

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

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


[Bug 1509264] [NEW] package vlc-nox 2.2.1-3 failed to install/upgrade: triggers looping, abandoned

2015-10-23 Thread Gerd Grundke
Public bug reported:

Error happened after upgrade from 15.04 to 15.10

Please let me know which further information you need not yet attached.

ProblemType: Package
DistroRelease: Ubuntu 15.10
Package: vlc-nox 2.2.1-3
Uname: Linux 3.19.3-031903-generic x86_64
ApportVersion: 2.19.1-0ubuntu3
Architecture: amd64
Date: Fri Oct 23 10:50:40 2015
DuplicateSignature: package:vlc-nox:2.2.1-3:triggers looping, abandoned
ErrorMessage: triggers looping, abandoned
InstallationDate: Installed on 2014-02-27 (602 days ago)
InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
SourcePackage: vlc
Title: package vlc-nox 2.2.1-3 failed to install/upgrade: triggers looping, 
abandoned
UpgradeStatus: Upgraded to wily on 2015-10-23 (0 days ago)

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


** Tags: amd64 apport-package dist-upgrade 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/1509264

Title:
  package vlc-nox 2.2.1-3 failed to install/upgrade: triggers looping,
  abandoned

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

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


[Bug 1509263] [NEW] package dictionaries-common 1.26.2 failed to install/upgrade: triggers looping, abandoned

2015-10-23 Thread Gerd Grundke
Public bug reported:

Error happened after upgrade from 15.04 to 15.10

Please let me know which further information you need not yet attached.

ProblemType: Package
DistroRelease: Ubuntu 15.10
Package: dictionaries-common 1.26.2
Uname: Linux 3.19.3-031903-generic x86_64
ApportVersion: 2.19.1-0ubuntu3
Architecture: amd64
Date: Fri Oct 23 10:50:41 2015
DuplicateSignature: package:dictionaries-common:1.26.2:triggers looping, 
abandoned
ErrorMessage: triggers looping, abandoned
InstallationDate: Installed on 2014-02-27 (602 days ago)
InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
PackageArchitecture: all
RelatedPackageVersions:
 dpkg 1.18.2ubuntu5
 apt  1.0.10.2ubuntu1
SourcePackage: dictionaries-common
Title: package dictionaries-common 1.26.2 failed to install/upgrade: triggers 
looping, abandoned
UpgradeStatus: Upgraded to wily on 2015-10-23 (0 days ago)

** Affects: dictionaries-common (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package dist-upgrade 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/1509263

Title:
  package dictionaries-common 1.26.2 failed to install/upgrade: triggers
  looping, abandoned

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

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


[Bug 1423462] Re: DemoRenderer: GL_BLEND is really always enabled even when not required (also causes RGBX discolouration in mir_proving_server)

2015-10-23 Thread Daniel van Vugt
** Branch linked: lp:~vanvugt/mir/fix-1423462

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

Title:
  DemoRenderer: GL_BLEND is really always enabled even when not required
  (also causes RGBX discolouration in mir_proving_server)

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

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


[Bug 1296370] Re: cant connect anymore to the phone

2015-10-23 Thread Flames_in_Paradise
** Changed in: kdeconnect (Ubuntu)
   Status: New => Incomplete

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

Title:
  cant connect anymore to the phone

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

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


[Bug 495981] Re: NM disconnects Wi-Fi every 2 minutes but iwconfig+dhclient and wicd don't -- ath9k

2015-10-23 Thread Antony
Good Morning,

I'm recording in this report that I am also being affected by the bug
described above. Remembering , reported 4 years ago .

Thanks.

** Changed in: network-manager (Ubuntu)
 Assignee: (unassigned) => Antony (antony-ag)

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

Title:
  NM disconnects Wi-Fi every 2 minutes but iwconfig+dhclient and wicd
  don't -- ath9k

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

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


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

2015-10-23 Thread Morten Clausen
Seems like there is already a bug filed for the

[drm:gen8_irq_handler [i915]] *ERROR* The master control interrupt lied
(SDE)!

kernel message:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1488719

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

Title:
  Cryptsetup Keyboard not working on Xubuntu 3.19.0-30

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

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


[Bug 1509279] Re: Unable to securely remove file during wily install

2015-10-23 Thread Colin Law
OK, sorry for the noise.

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

Title:
  Unable to securely remove file during wily install

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

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


[Bug 1500918] Re: rc-proposed location is way out in comparison to ota6

2015-10-23 Thread Dave Morley
** Attachment added: "ubuntu-espoo-service.log"
   
https://bugs.launchpad.net/ubuntu/+source/location-service/+bug/1500918/+attachment/4503135/+files/ubuntu-espoo-service.log

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

Title:
  rc-proposed location is way out in comparison to ota6

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

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


[Bug 1389727] Re: Can't run any application using PositionSource on desktop

2015-10-23 Thread Michael Zanetti
** Description changed:

  Using this example code:
  
  
  import QtQuick 2.2
  import QtPositioning 5.1
  
  Item {
- height: 500; width: 500
+ height: 500; width: 500
  
- PositionSource {}
+ PositionSource {}
  }
  --
  
  crashes when started on desktop with the message:
  
  Ubuntu Platform API: Unable to find module configuration file -- Aborting
  Aborted (core dumped)
  
- 
- This affects all phone applications using Positioning. They can't be tested 
on the desktop atm.
+ This affects all phone applications using Positioning. They can't be
+ tested on the desktop atm. Each test run needs to happen on the phone,
+ which slows down the app development process a lot.

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

Title:
  Can't run any application using PositionSource on desktop

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-developer-experience/+bug/1389727/+subscriptions

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

[Bug 1509311] [NEW] package python-oneconf 0.3.7 failed to install/upgrade: subprocess new pre-removal script returned error exit status 127

2015-10-23 Thread Raktim Barua
Public bug reported:

cant open software centre in ubuntu15.04

ProblemType: Package
DistroRelease: Ubuntu 15.04
Package: python-oneconf 0.3.7
ProcVersionSignature: Ubuntu 3.19.0-31.36-generic 3.19.8-ckt7
Uname: Linux 3.19.0-31-generic x86_64
ApportVersion: 2.17.2-0ubuntu1.5
Architecture: amd64
Date: Fri Oct 23 12:07:04 2015
DuplicateSignature: package:python-oneconf:0.3.7:subprocess new pre-removal 
script returned error exit status 127
ErrorMessage: subprocess new pre-removal script returned error exit status 127
InstallationDate: Installed on 2015-10-14 (8 days ago)
InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
PackageArchitecture: all
RelatedPackageVersions:
 dpkg 1.17.25ubuntu1
 apt  1.0.9.7ubuntu4.1
SourcePackage: oneconf
Title: package python-oneconf 0.3.7 failed to install/upgrade: subprocess new 
pre-removal script returned error exit status 127
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: oneconf (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/1509311

Title:
  package python-oneconf 0.3.7 failed to install/upgrade: subprocess new
  pre-removal script returned error exit status 127

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

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


[Bug 1500918] Re: rc-proposed location is way out in comparison to ota6

2015-10-23 Thread Dave Morley
** Attachment added: "ubuntu-location-service.log"
   
https://bugs.launchpad.net/ubuntu/+source/location-service/+bug/1500918/+attachment/4503136/+files/ubuntu-location-service.log

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

Title:
  rc-proposed location is way out in comparison to ota6

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

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


[Bug 1220146] Re: Ralink Mediatek 14c3:7630 wi-fi card isn't supported out of the box

2015-10-23 Thread dave
Ok I got wireless networking working using the MT7630 device under
Ubuntu 15.10 by following the procedure below.

I used benjarobin for a working driver and kuba-moo to get hold of a
couple of make files that simplify the installation.

Download the following files:

MT7630E-master.zip from https://github.com/benjarobin/MT7630E 
mt7630e-master.zip from https://github.com/kuba-moo/mt7630e

I used the "Download ZIP" button in both cases which appears at the
bottom of the RHS column of these pages.

Unzip both files and copy "Makefile" and "dkms.conf" from mt76303-master
to MT7630E-master.

Open a terminal and get to the MT7630E-master directory and then follow
the instructions at https://github.com/kuba-moo/mt7630e omitting the
"clone repo" steps as you already have the source, (git clone didn't
work for me due to a permission issue that I did not understand).

This procedure appeared to work for me, even after a computer restart,
(I had got it working without loading on restart and dkms in posts 273
and 274, but hopefully nothing is required above what I describe in this
post).

Thanks to kuba-moo, benjarobin and mycodef.  Much appreciated.

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

Title:
  Ralink Mediatek 14c3:7630 wi-fi card isn't supported out of the box

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

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


[Bug 1498580] Re: Images added to Pictures folder don't show up

2015-10-23 Thread Víctor R . Ruiz
** Attachment added: "screenshot20151023_085922906.png"
   
https://bugs.launchpad.net/ubuntu/+source/gallery-app/+bug/1498580/+attachment/4503074/+files/screenshot20151023_085922906.png

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

Title:
  Images added to Pictures folder don't show up

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

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


[Bug 1498580] Re: Images added to Pictures folder don't show up

2015-10-23 Thread Víctor R . Ruiz
Pat: artmello was able to reproduce this. I discovered the problem while
testing a silo. A just reproduced the problem right now following these
steps.

- Use a JPG image (I use the ones at apod.nasa.gov).
- I copy this image various times (7 times).
- Open Nautilus and copy the images in batches of two.
- The result is that not all the images are shown.

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

Title:
  Images added to Pictures folder don't show up

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

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


[Bug 1470250] Re: [Hyper-V] Ubuntu 14.04.2 LTS Generation 2 SCSI Errors on VSS Based Backups

2015-10-23 Thread Frederik Bosch
A little remark that still has no answer yet: what are the Ubuntu
specifics that cause this issue? In the 10 months we have these machines
running: many crashes for Ubuntu with VSS snapshots while the CentOS
machines have had no crash at all. Maybe @jsalisbury has a explanation
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/1470250

Title:
  [Hyper-V] Ubuntu 14.04.2 LTS Generation 2 SCSI Errors on VSS Based
  Backups

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

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


[Bug 1470250] Re: [Hyper-V] Ubuntu 14.04.2 LTS Generation 2 SCSI Errors on VSS Based Backups

2015-10-23 Thread Frederik Bosch
What do you mean with: did not occur until you followed those
instructions? You mean without the daemons everything was fine?

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

Title:
  [Hyper-V] Ubuntu 14.04.2 LTS Generation 2 SCSI Errors on VSS Based
  Backups

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

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


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

2015-10-23 Thread Silvio Bierman
I need to correct what I said above. Turning of hinting DOES improve
things a lot but it does not work immediately. I did have to restart the
system after disabling hinting which made me believe earlier that it did
nothing (and then I kept restoring the setting to ON/FULL).

Fonts still look wrong in parts of my Eclipse IDE but that varies with
the Eclipse window (package explorer is bad, source editor is good) and
some web pages in Chromium show ugly fonts. Overall my desktop looks OK
now.

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

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

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

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


[Bug 1509107] Re: mercurial 3.4 doesn't work with hgsubversion 1.8.2

2015-10-23 Thread Vsevolod Velichko
Addition: version 3.5 works with debian/ dir ported from 3.1.2 release, but 
also fails with debian/ from 3.4, so it seems it's Ubuntu patches break the 
compatibility.
Mercurial 3.5.2-1 from Debian Stretch ( 
https://packages.debian.org/stretch/mercurial ) breaks hgsubversion as well.

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

Title:
  mercurial 3.4 doesn't work with hgsubversion 1.8.2

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

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


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

2015-10-23 Thread Silvio Bierman
An additional remark about the garbled fonts in Eclipse: this happens
when I scroll the package-explorer window. This might be a Java related
thing since I can not reproduce the behavior outside Eclipse.

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

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

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

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


[Bug 1509294] [NEW] X freezes when notfiy OSD appears while in full-screen openGL game

2015-10-23 Thread Omega-xis
Public bug reported:

when I want to change volume while I'm running a full-screen app the
whole GUI freezes and I have to manually open a terminal to restart X11.

ProblemType: Bug
DistroRelease: Ubuntu 15.10
Package: notify-osd 0.9.35+15.10.20151014-0ubuntu1
ProcVersionSignature: Ubuntu 4.2.0-16.19-generic 4.2.3
Uname: Linux 4.2.0-16-generic x86_64
ApportVersion: 2.19.1-0ubuntu3
Architecture: amd64
CurrentDesktop: Unity
Date: Fri Oct 23 12:15:29 2015
DesktopSession: 'ubuntu'
GtkTheme: 'Ambiance'
IconTheme: 'ubuntu-mono-dark'
InstallationDate: Installed on 2014-11-08 (348 days ago)
InstallationMedia: Ubuntu 14.10 "Utopic Unicorn" - Release amd64 (20141022.1)
MachineType: Notebook W65_67SF
ProcEnviron:
 LANGUAGE=nl_NL
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=nl_NL.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-16-generic 
root=UUID=c1033a27-1470-4958-aa0f-9c93f0858e3f ro quiet splash
RelatedPackageVersions:
 xserver-xorg 1:7.7+7ubuntu4
 libgl1-mesa-glx  11.0.2-1ubuntu4
 libdrm2  2.4.64-1
 xserver-xorg-video-intel 2:2.99.917+git20150808-0ubuntu4
 xserver-xorg-video-ati   1:7.5.0+git20150819-0ubuntu1
SourcePackage: notify-osd
UpgradeStatus: Upgraded to wily on 2015-10-19 (3 days ago)
dmi.bios.date: 08/25/2014
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 1.03.04
dmi.board.asset.tag: Tag 12345
dmi.board.name: W65_67SF
dmi.board.vendor: Notebook
dmi.board.version: Not Applicable
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 9
dmi.chassis.vendor: Notebook
dmi.chassis.version: N/A
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.03.04:bd08/25/2014:svnNotebook:pnW65_67SF:pvrNotApplicable:rvnNotebook:rnW65_67SF:rvrNotApplicable:cvnNotebook:ct9:cvrN/A:
dmi.product.name: W65_67SF
dmi.product.version: Not Applicable
dmi.sys.vendor: Notebook

** Affects: notify-osd (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug third-party-packages wily

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

Title:
  X freezes when notfiy OSD appears while in full-screen openGL game

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

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


[Bug 1509299] Re: parallel build race condition between dh_gencontrol and dh_strip

2015-10-23 Thread Martin Pitt
This looks like a bug in vim's debian/rules:

doko | the indep and arch targets are run in parallel
pitti | ah, it never sets DH_OPTIONS=-a or -s, just -i

** Package changed: pkg-create-dbgsym (Ubuntu) => vim (Ubuntu)

** Changed in: vim (Ubuntu)
 Assignee: Martin Pitt (pitti) => (unassigned)

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

Title:
  parallel build race condition between dh_gencontrol and dh_strip

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

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


[Bug 1508157] Re: Kernel not upgraded during Vivid -> Wily upgrade

2015-10-23 Thread zob
@brian-murray

Done. New possibly duplicate report is here:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-
upgrader/+bug/1509305

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

Title:
  Kernel not upgraded during Vivid -> Wily upgrade

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

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


[Bug 1509311] Re: package python-oneconf 0.3.7 failed to install/upgrade: subprocess new pre-removal script returned error exit status 127

2015-10-23 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/1509311

Title:
  package python-oneconf 0.3.7 failed to install/upgrade: subprocess new
  pre-removal script returned error exit status 127

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

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


[Bug 1432265] Re: does not ask for multiple LUKS passphrases without plymouth

2015-10-23 Thread Julian Gilbey
I can't even unlock both encrypted drives when using plymouth.

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

Title:
  does not ask for multiple LUKS passphrases without plymouth

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

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


[Bug 1507073] Re: 8086:1616 Display goes black at random times

2015-10-23 Thread Christopher M. Penalver
Adam Carter, I made a slight error in
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1507073/comments/16
. You actually want to send it to the maintainers Daniel Vetter and Jani
Nikula, and CC intel-gfx.

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

Title:
  8086:1616 Display goes black at random times

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

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


[Bug 1504909] Re: blk_update_request: I/O error when accessing a disk that is spun down

2015-10-23 Thread Christopher M. Penalver
Felix Matouschek, how about older Utopic kernels?

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

Title:
  blk_update_request: I/O error when accessing a disk that is spun down

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

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


[Bug 1506139] Re: 15.10beta crashes encrypted swap partition

2015-10-23 Thread Hadmut Danisch
More info from the source code of systemd-cryptsetup:


 else if (streq(option, "luks"))
arg_type = CRYPT_LUKS1;
...
 } else if (STR_IN_SET(option, "plain", "swap", "tmp"))
arg_type = CRYPT_PLAIN;


so the swap argument overwrites the luks argument and resets the ecryption type 
to plain. 


And indeed, when using

/lib/systemd/systemd-cryptsetup attach sda2_crypt /dev/sda2 none
swap,luks,discard


(i.e. just change the order of the parameters,  use   swap,luks,discard   
instead of  luks, swap, discard , as the ubuntu installer creates, it works and 
uses the luks partition correctly.

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

Title:
  15.10beta crashes encrypted swap partition

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

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


[Bug 1507957] Re: Huawei E3372 LTE modem works properly only after at least one replug

2015-10-23 Thread Christopher M. Penalver
Cysioland, the next step is to fully reverse commit bisect from kernel
4.2 to 4.3-rc6 in order to identify the last bad commit, followed
immediately by the first good one. Once this commit has been identified,
then it may be reviewed as a candidate for backporting into your
release. Could you please do this following
https://wiki.ubuntu.com/Kernel/KernelBisection#How_do_I_reverse_bisect_the_upstream_kernel.3F
?

Please note, finding adjacent kernel versions is not fully commit
bisecting.

Thank you for your understanding.

Helpful bug reporting tips:
https://wiki.ubuntu.com/ReportingBugs

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

** Tags removed: kernel-fixed-upstream-4.0-rc6
** Tags added: kernel-fixed-upstream-4.3-rc6 needs-reverse-bisect

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

Title:
  Huawei E3372 LTE modem works properly only after at least one replug

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

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


[Bug 1509068] Re: "Ask each time" option does not work when launching executable text files in GUI.

2015-10-23 Thread Samy
** Attachment removed: "JournalErrors.txt"
   
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1509068/+attachment/4502635/+files/JournalErrors.txt

** Information type changed from Public to Private Security

** Attachment added: "JournalErrors.txt"
   
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1509068/+attachment/4503241/+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/1509068

Title:
  "Ask each time" option does not work when launching executable text
  files in GUI.

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

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


[Bug 1509262] Re: Browser stop working while watching a video on Youtube

2015-10-23 Thread Pat McGowan
I also reproduced it on mako running rc-proposed r268

The vol key does not seem to be part of the issue, the first time the youtube 
page loads the video will not play. Hitting refresh to reload the page will 
allow it to play.
When the page is reloaded the video shows "HQ" but not on first load

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

Title:
  Browser stop working while watching a video on Youtube

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

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


[Bug 1101348] Re: xrender pipeline creates graphics corruption

2015-10-23 Thread Bug Watch Updater
** Changed in: openjdk
   Status: In Progress => Fix Released

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

Title:
  xrender pipeline creates graphics corruption

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

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


[Bug 1508574] Re: linux-lts-vivid: 3.19.0-32.37~14.04.1 -proposed tracker

2015-10-23 Thread Chris J Arges
** Changed in: kernel-sru-workflow/promote-to-proposed
   Status: Confirmed => In Progress

** Changed in: kernel-sru-workflow/promote-to-proposed
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru) => Chris J Arges 
(arges)

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

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

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

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


[Bug 1508929] Re: Many empty/broken entries in location permission settings

2015-10-23 Thread Pat McGowan
I confirmed simply uninstalling an app shows a blank

We could fix this in settings by not showing entries for which there is
no installed app, but it would seem better to fix this in the trust
store, perhaps purging entries when an app is  uninsatlled

** Also affects: ubuntu-system-settings (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: trust-store (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: canonical-devices-system-image
   Importance: Undecided => High

** Changed in: canonical-devices-system-image
   Status: New => Confirmed

** Changed in: canonical-devices-system-image
Milestone: None => backlog

** Changed in: canonical-devices-system-image
 Assignee: (unassigned) => Bill Filler (bfiller)

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

Title:
  Many empty/broken entries in location permission settings

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

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


[Bug 1509262] Re: Browser stop working while watching a video on Youtube

2015-10-23 Thread Nicola
I have made this test with WIFI ON. I have don't check with normal
network connection.

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

Title:
  Browser stop working while watching a video on Youtube

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

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


[Bug 1389775] Re: location access, shouldn't show apps in the list that have been uninstalled

2015-10-23 Thread Sebastien Bacher
** Changed in: trust-store (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/1389775

Title:
  location access, shouldn't show apps in the list that have been
  uninstalled

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

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


[Bug 1508826] Re: [20ANCTO1WW, Realtek ALC3232, Black Headphone Out, Left] No sound at all when headset plugged in

2015-10-23 Thread Raymond
** Changed in: alsa-driver (Ubuntu)
   Status: Confirmed => Incomplete

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

Title:
  [20ANCTO1WW, Realtek ALC3232, Black Headphone Out, Left] No sound at
  all when headset plugged in

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

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


[Bug 1487919] Re: macbookrpro12,1 fails to suspend

2015-10-23 Thread Joe Barnett
sudo wpa_cli suspend before suspend still leaves me unable to resume.

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

Title:
  macbookrpro12,1 fails to suspend

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

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


[Bug 1509262] Re: Browser stop working while watching a video on Youtube

2015-10-23 Thread Olivier Tilloy
What happens when opening a youtube video from google search results is
the following:

GET /url?q=http://m.youtube.com/watch%3Fv%3D-tJYN-eG1zk&… HTTP/1.1
Host: www.google.fr

HTTP/1.1 302 Found
Location: http://m.youtube.com/watch?v=-tJYN-eG1zk

GET /watch?v=-tJYN-eG1zk HTTP/1.1
Host: m.youtube.com
User-Agent: Mozilla/5.0 (Linux; Ubuntu 14.04 like Android 4.4) 
AppleWebKit/537.36 Chromium/35.0.1870.2 Mobile Safari/537.36
Referer: http://www.google.fr/search?q=we+will+rock+you&…


As can be seen from the second GET request, the UA override for youtube 
(http://bazaar.launchpad.net/~phablet-team/webbrowser-app/trunk/view/head:/src/Ubuntu/Web/ua-overrides-mobile.js#L23)
 hasn’t been applied.

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

Title:
  Browser stop working while watching a video on Youtube

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

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

[Bug 1279106] Re: Customized LiveUSB setup cannot handle persistence

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

** Changed in: casper (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/1279106

Title:
  Customized LiveUSB setup cannot handle persistence

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/casper/+bug/1279106/+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   9   10   >