[Touch-packages] [Bug 1511628] [NEW] invoke-rc.d uses incorrect exit code

2015-10-29 Thread Nathan Osman
Public bug reported:

I am using invoke-rc.d on Vivid and have observed what appears to be
incorrect behavior. I have a systemd service installed that is masked
and I am attempting to use invoke-rc.d to obtain its status.

However, the exit code is 0, which falsely suggests that the service is
running. If I run "systemctl status myservice" directly for the masked
service, the exit code is 3, as expected.

This makes it impossible to determine if the service is in fact running
without resorting to systemd commands. I'm developing a package that
runs on releases that use init and releases that use systemd. The
packaging includes an init script and a systemd unit file. I need an
"init-agnostic" command for restarting the service in the .logrotate
file.

I dug a bit into the source code and found that line 407 contains "exit
0". I don't understand why anyone would want the return code for a
running service and a masked service to be identical. I assume this is a
bug.

ProblemType: Bug
DistroRelease: Ubuntu 15.04
Package: sysv-rc 2.88dsf-53.2ubuntu12
ProcVersionSignature: Ubuntu 3.19.0-30.34-generic 3.19.8-ckt6
Uname: Linux 3.19.0-30-generic x86_64
ApportVersion: 2.17.2-0ubuntu1.5
Architecture: amd64
CurrentDesktop: Unity
Date: Thu Oct 29 23:37:05 2015
InstallationDate: Installed on 2015-06-01 (150 days ago)
InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
PackageArchitecture: all
SourcePackage: sysvinit
UpgradeStatus: Upgraded to vivid on 2015-10-22 (7 days ago)

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


** Tags: amd64 apport-bug vivid

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to sysvinit in Ubuntu.
https://bugs.launchpad.net/bugs/1511628

Title:
  invoke-rc.d uses incorrect exit code

Status in sysvinit package in Ubuntu:
  New

Bug description:
  I am using invoke-rc.d on Vivid and have observed what appears to be
  incorrect behavior. I have a systemd service installed that is masked
  and I am attempting to use invoke-rc.d to obtain its status.

  However, the exit code is 0, which falsely suggests that the service
  is running. If I run "systemctl status myservice" directly for the
  masked service, the exit code is 3, as expected.

  This makes it impossible to determine if the service is in fact
  running without resorting to systemd commands. I'm developing a
  package that runs on releases that use init and releases that use
  systemd. The packaging includes an init script and a systemd unit
  file. I need an "init-agnostic" command for restarting the service in
  the .logrotate file.

  I dug a bit into the source code and found that line 407 contains
  "exit 0". I don't understand why anyone would want the return code for
  a running service and a masked service to be identical. I assume this
  is a bug.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: sysv-rc 2.88dsf-53.2ubuntu12
  ProcVersionSignature: Ubuntu 3.19.0-30.34-generic 3.19.8-ckt6
  Uname: Linux 3.19.0-30-generic x86_64
  ApportVersion: 2.17.2-0ubuntu1.5
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Thu Oct 29 23:37:05 2015
  InstallationDate: Installed on 2015-06-01 (150 days ago)
  InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  PackageArchitecture: all
  SourcePackage: sysvinit
  UpgradeStatus: Upgraded to vivid on 2015-10-22 (7 days ago)

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1510201] Re: AdaptativeLayout take longer to show a page

2015-10-29 Thread Zsombor Egri
Alternatively we can add an extra parameter to force page addition to be
synchronous.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to ubuntu-ui-toolkit in
Ubuntu.
https://bugs.launchpad.net/bugs/1510201

Title:
  AdaptativeLayout take longer to show a page

Status in Canonical System Image:
  Confirmed
Status in ubuntu-ui-toolkit package in Ubuntu:
  New

Bug description:
  Device: krillin
  Image: Ubuntu 15.04 (r153)

  
  I created a small/simple example with Pages using the new AdaptativeLayout.

  On this example the second page takes about 2.6 secs to show the page.
  While it only took 1.3 secs (Still a long time) when using PageStack.

  
  OBS:  You can easily change the example to use PageStack just changing the 
commented lines.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1510201] Re: AdaptativeLayout take longer to show a page

2015-10-29 Thread Zsombor Egri
We profiled this with Florian, and it ends up that Repeater is no longer
creating the bunch of components and then renders, but it creates each
delegate asynchronously after which it renders each of them separately.
So instead of a 1000 block create then render we have 1000 create +
render, and sniffed rendering between creates slows down the things.
This will always happen when page is loaded asynchronously and the
loaded page has a Repeater, until upstream does something with the
Repeater to load faster.

Using ListView with a cache to fit the whole model content behaves
differently, at least the visible items are created in a block
synchronously then rendered, and the rest of the invisible ones are
created asynchronously afterwards. So this may be a better approach for
use cases we have in the attached example.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to ubuntu-ui-toolkit in
Ubuntu.
https://bugs.launchpad.net/bugs/1510201

Title:
  AdaptativeLayout take longer to show a page

Status in Canonical System Image:
  Confirmed
Status in ubuntu-ui-toolkit package in Ubuntu:
  New

Bug description:
  Device: krillin
  Image: Ubuntu 15.04 (r153)

  
  I created a small/simple example with Pages using the new AdaptativeLayout.

  On this example the second page takes about 2.6 secs to show the page.
  While it only took 1.3 secs (Still a long time) when using PageStack.

  
  OBS:  You can easily change the example to use PageStack just changing the 
commented lines.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1489816] Re: gstreamer/rhythmbox submits invalid Disc IDs to MusicBrainz (Trusty Tahr)

2015-10-29 Thread Bug Watch Updater
** Changed in: gst-plugins-base
   Status: Unknown => Fix Released

** Changed in: gst-plugins-base
   Importance: Unknown => High

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to gst-plugins-base1.0 in
Ubuntu.
https://bugs.launchpad.net/bugs/1489816

Title:
  gstreamer/rhythmbox submits invalid Disc IDs to MusicBrainz (Trusty
  Tahr)

Status in gst-plugins-base:
  Fix Released
Status in gst-plugins-base1.0 package in Ubuntu:
  Fix Released
Status in gst-plugins-base1.0 source package in Trusty:
  Fix Committed

Bug description:
  Gstreamer calculates an ID for Audio CDs and optionally submits it to 
MusicBrainz.
  This enables programs to find the corresponding metadata for a CD on 
MusicBrainz.

  Gstreamer < 1.3.1 doesn't do this correctly for CDs with data tracks,
  leading to invalid Disc IDs being submitted to the MusicBrainz
  database.

  This is reported upstream in https://bugzilla.gnome.org/show_bug.cgi?id=708991
  and fixed in gstreamer 1.3.1. The corresponding patch is supplied as an 
attachment here.
  Trusty Tahr is using 1.2.x and there is no new release on that branch.
  Trusty Tahr is still supported until 2019. It would be really nice if that 
can be fixed.

  The bug surfaces as a problem in Rhythmbox because starting with 2.97
  this uses gstreamer for MusicBrainz Disc ID handling.

To manage notifications about this bug go to:
https://bugs.launchpad.net/gst-plugins-base/+bug/1489816/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1509846] Re: lightdm crashes on window open in Ubuntu 15.10 intel

2015-10-29 Thread aldebx
** Changed in: xorg (Ubuntu)
   Status: Incomplete => New

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1509846

Title:
  lightdm crashes on window open in Ubuntu 15.10 intel

Status in xorg package in Ubuntu:
  New

Bug description:
  Symptom: xorg crashes on windows creation

  How to reproduce: No 100% reproducibility, however intensively using
  2D/3D acceleration triggers the bug (e.g. by opening several new
  windows and/or menus in a Unity desktop environment)

  Affected hardware: Intel HD Graphics 4400/5000 etc
  Affected software:
  - kernel 4.2.0-16-generic #19-Ubuntu SMP Thu Oct 8 15:35:06 UTC 2015 x86_64
  - Ubuntu 15.10 with Unity (because of compiz 2D/3D acceleration)
  - any other software using direct rendering (e.g. VLC)

  Workaround:
  - Disable window animations in Compiz reduces the frequency of the crashes.
  Use compizconfig-settings-manager for this tweak (sudo apt-get install 
compizconfig-settings-manager)

  
  [original description below]

  I get crashes, when I open a new window in an already started
  application. It happens irregularely, but I can force the crash if I
  open several new message windows in thunderbird. But it also happens
  in other applilcations, for example a new terminal window.

  This is the output during the crash in /var/log/Xorg.0.log
  [   253.500] (EE)
  [   253.500] (EE) Backtrace:
  [   253.500] (EE) 0: /usr/bin/X (xorg_backtrace+0x4e) [0x55f09075b62e]
  [   253.500] (EE) 1: /usr/bin/X (0x55f0905a7000+0x1b8999) [0x55f09075f999]
  [   253.500] (EE) 2: /lib/x86_64-linux-gnu/libc.so.6 (0x7f44130a8000+0x352f0) 
[0x7f44130dd2f0]
  [   253.500] (EE) 3: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x24f18) [0x7f440f4a3f18]
  [   253.500] (EE) 4: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x26157) [0x7f440f4a5157]
  [   253.500] (EE) 5: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x2b4b1) [0x7f440f4aa4b1]
  [   253.500] (EE) 6: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x804e4) [0x7f440f4ff4e4]
  [   253.501] (EE) 7: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x80e2c) [0x7f440f4ffe2c]
  [   253.501] (EE) 8: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x82e1a) [0x7f440f501e1a]
  [   253.501] (EE) 9: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x4197c) [0x7f440f4c097c]
  [   253.501] (EE) 10: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x59906) [0x7f440f4d8906]
  [   253.501] (EE) 11: /usr/bin/X (_CallCallbacks+0x34) [0x55f090604654]
  [   253.501] (EE) 12: /usr/bin/X (WriteToClient+0x244) [0x55f09075f274]
  [   253.501] (EE) 13: /usr/bin/X (WriteEventsToClient+0x1e2) [0x55f09060a502]
  [   253.501] (EE) 14: /usr/bin/X (0x55f0905a7000+0xf495a) [0x55f09069b95a]
  [   253.501] (EE) 15: /usr/bin/X (0x55f0905a7000+0xf5ef5) [0x55f09069cef5]
  [   253.501] (EE) 16: /usr/bin/X (0x55f0905a7000+0x5818f) [0x55f0905ff18f]
  [   253.501] (EE) 17: /usr/bin/X (0x55f0905a7000+0x5c34b) [0x55f09060334b]
  [   253.501] (EE) 18: /lib/x86_64-linux-gnu/libc.so.6 
(__libc_start_main+0xf0) [0x7f44130c8a40]
  [   253.501] (EE) 19: /usr/bin/X (_start+0x29) [0x55f0905ed6c9]
  [   253.501] (EE)
  [   253.501] (EE) Segmentation fault at address 0x0
  [   253.501] (EE)
  Fatal server error:
  [   253.501] (EE) Caught signal 11 (Segmentation fault). Server aborting
  [   253.501] (EE)
  [   253.501] (EE)
  Please consult the The X.Org Foundation support
   at http://wiki.x.org
   for help.
  [   253.501] (EE) Please also check the log file at "/var/log/Xorg.0.log" for 
additional information.
  [   253.502] (EE)
  [   253.502] (II) AIGLX: Suspending AIGLX clients for VT switch
  [   253.588] (EE) Server terminated with error (1). Closing log file.
  ---
  .tmp.unity.support.test.0:

  ApportVersion: 2.19.1-0ubuntu3
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  DistUpgraded: Fresh install
  DistroCodename: wily
  DistroRelease: Ubuntu 15.10
  DistroVariant: ubuntu
  DkmsStatus:
   virtualbox, 5.0.4, 4.2.0-11-generic, x86_64: installed
   virtualbox, 5.0.4, 4.2.0-16-generic, x86_64: installed
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation Haswell-ULT Integrated Graphics Controller [8086:0a16] 
(rev 09) (prog-if 00 [VGA controller])
     Subsystem: Lenovo Device [17aa:3978]
  InstallationDate: Installed on 2015-10-20 (6 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Alpha amd64 (20150924)
  MachineType: LENOVO 20266
  Package: xorg 1:7.7+7ubuntu4
  PackageArchitecture: amd64
  ProcEnviron:
   TERM=screen
   PATH=(custom, no user)
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/

[Touch-packages] [Bug 1509846] Re: lightdm crashes on window open in Ubuntu 15.10 intel

2015-10-29 Thread aldebx
I've just experienced a xorg crash with 4.2.5-040205-generic while
opening a properties window inside libreoffice (with compiz animations
enabled) :/

Hw specs and logs of my case are attached to bug #1511615 . Thank you
for reviewing and analyzing them.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1509846

Title:
  lightdm crashes on window open in Ubuntu 15.10 intel

Status in xorg package in Ubuntu:
  New

Bug description:
  Symptom: xorg crashes on windows creation

  How to reproduce: No 100% reproducibility, however intensively using
  2D/3D acceleration triggers the bug (e.g. by opening several new
  windows and/or menus in a Unity desktop environment)

  Affected hardware: Intel HD Graphics 4400/5000 etc
  Affected software:
  - kernel 4.2.0-16-generic #19-Ubuntu SMP Thu Oct 8 15:35:06 UTC 2015 x86_64
  - Ubuntu 15.10 with Unity (because of compiz 2D/3D acceleration)
  - any other software using direct rendering (e.g. VLC)

  Workaround:
  - Disable window animations in Compiz reduces the frequency of the crashes.
  Use compizconfig-settings-manager for this tweak (sudo apt-get install 
compizconfig-settings-manager)

  
  [original description below]

  I get crashes, when I open a new window in an already started
  application. It happens irregularely, but I can force the crash if I
  open several new message windows in thunderbird. But it also happens
  in other applilcations, for example a new terminal window.

  This is the output during the crash in /var/log/Xorg.0.log
  [   253.500] (EE)
  [   253.500] (EE) Backtrace:
  [   253.500] (EE) 0: /usr/bin/X (xorg_backtrace+0x4e) [0x55f09075b62e]
  [   253.500] (EE) 1: /usr/bin/X (0x55f0905a7000+0x1b8999) [0x55f09075f999]
  [   253.500] (EE) 2: /lib/x86_64-linux-gnu/libc.so.6 (0x7f44130a8000+0x352f0) 
[0x7f44130dd2f0]
  [   253.500] (EE) 3: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x24f18) [0x7f440f4a3f18]
  [   253.500] (EE) 4: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x26157) [0x7f440f4a5157]
  [   253.500] (EE) 5: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x2b4b1) [0x7f440f4aa4b1]
  [   253.500] (EE) 6: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x804e4) [0x7f440f4ff4e4]
  [   253.501] (EE) 7: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x80e2c) [0x7f440f4ffe2c]
  [   253.501] (EE) 8: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x82e1a) [0x7f440f501e1a]
  [   253.501] (EE) 9: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x4197c) [0x7f440f4c097c]
  [   253.501] (EE) 10: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x59906) [0x7f440f4d8906]
  [   253.501] (EE) 11: /usr/bin/X (_CallCallbacks+0x34) [0x55f090604654]
  [   253.501] (EE) 12: /usr/bin/X (WriteToClient+0x244) [0x55f09075f274]
  [   253.501] (EE) 13: /usr/bin/X (WriteEventsToClient+0x1e2) [0x55f09060a502]
  [   253.501] (EE) 14: /usr/bin/X (0x55f0905a7000+0xf495a) [0x55f09069b95a]
  [   253.501] (EE) 15: /usr/bin/X (0x55f0905a7000+0xf5ef5) [0x55f09069cef5]
  [   253.501] (EE) 16: /usr/bin/X (0x55f0905a7000+0x5818f) [0x55f0905ff18f]
  [   253.501] (EE) 17: /usr/bin/X (0x55f0905a7000+0x5c34b) [0x55f09060334b]
  [   253.501] (EE) 18: /lib/x86_64-linux-gnu/libc.so.6 
(__libc_start_main+0xf0) [0x7f44130c8a40]
  [   253.501] (EE) 19: /usr/bin/X (_start+0x29) [0x55f0905ed6c9]
  [   253.501] (EE)
  [   253.501] (EE) Segmentation fault at address 0x0
  [   253.501] (EE)
  Fatal server error:
  [   253.501] (EE) Caught signal 11 (Segmentation fault). Server aborting
  [   253.501] (EE)
  [   253.501] (EE)
  Please consult the The X.Org Foundation support
   at http://wiki.x.org
   for help.
  [   253.501] (EE) Please also check the log file at "/var/log/Xorg.0.log" for 
additional information.
  [   253.502] (EE)
  [   253.502] (II) AIGLX: Suspending AIGLX clients for VT switch
  [   253.588] (EE) Server terminated with error (1). Closing log file.
  ---
  .tmp.unity.support.test.0:

  ApportVersion: 2.19.1-0ubuntu3
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  DistUpgraded: Fresh install
  DistroCodename: wily
  DistroRelease: Ubuntu 15.10
  DistroVariant: ubuntu
  DkmsStatus:
   virtualbox, 5.0.4, 4.2.0-11-generic, x86_64: installed
   virtualbox, 5.0.4, 4.2.0-16-generic, x86_64: installed
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation Haswell-ULT Integrated Graphics Controller [8086:0a16] 
(rev 09) (prog-if 00 [VGA controller])
     Subsystem: Lenovo Device [17aa:3978]
  InstallationDate: Installed on 2015-10-20 (6 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Alpha amd64 (20150924)
  MachineType: LENOVO 2

[Touch-packages] [Bug 1511615] [NEW] xorg crashes on Ubuntu 15.10 with Intel graphics

2015-10-29 Thread aldebx
*** This bug is a duplicate of bug 1509846 ***
https://bugs.launchpad.net/bugs/1509846

Public bug reported:

Symptom: xorg crashes on windows creation

How to reproduce: No 100% reproducibility, however intensively using
2D/3D acceleration triggers the bug (e.g. by opening several new windows
and/or menus in a Unity desktop environment)

Affected hardware: Intel HD Graphics 4400/5000 etc
Affected software:
- kernel Linux 4.2.0-16-generic #19-Ubuntu SMP x86_64
- also affected is kernel Linux 4.2.5-040205-generic x86_64
- Ubuntu 15.10 with Unity (because of compiz 2D/3D acceleration)
- any other software using direct rendering (e.g. VLC)

Workaround:
- Disable window animations in Compiz reduces the frequency of the crashes.
Use compizconfig-settings-manager for this tweak (sudo apt-get install 
compizconfig-settings-manager)
- Use XFCE or LXDE also reduces the frequency of crashes given that these 
desktop environments are 2D only

ProblemType: Bug
DistroRelease: Ubuntu 15.10
Package: xorg 1:7.7+7ubuntu4
Uname: Linux 4.2.5-040205-generic x86_64
.tmp.unity.support.test.0:

ApportVersion: 2.19.1-0ubuntu4
Architecture: amd64
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: Fri Oct 30 11:24:21 2015
DistUpgraded: 2015-10-25 22:39:00,819 DEBUG enabling apt cron job
DistroCodename: wily
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes
GraphicsCard:
 Intel Corporation Haswell-ULT Integrated Graphics Controller [8086:0a26] (rev 
09) (prog-if 00 [VGA controller])
   Subsystem: Lenovo Device [17aa:2218]
InstallationDate: Installed on 2014-10-21 (374 days ago)
InstallationMedia: Ubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 (20140722.2)
MachineType: LENOVO 20A7CTO1WW
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.2.5-040205-generic 
root=/dev/mapper/ettox1-system ro splash elevator=noop i915.i915_enable_fbc=1 
vt.handoff=7
SourcePackage: xorg
UpgradeStatus: Upgraded to wily on 2015-10-25 (4 days ago)
dmi.bios.date: 11/20/2014
dmi.bios.vendor: LENOVO
dmi.bios.version: GRET42WW (1.19 )
dmi.board.asset.tag: Not Available
dmi.board.name: 20A7CTO1WW
dmi.board.vendor: LENOVO
dmi.board.version: NO DPK
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Not Available
dmi.modalias: 
dmi:bvnLENOVO:bvrGRET42WW(1.19):bd11/20/2014:svnLENOVO:pn20A7CTO1WW:pvrThinkPadX1Carbon2nd:rvnLENOVO:rn20A7CTO1WW:rvrNODPK:cvnLENOVO:ct10:cvrNotAvailable:
dmi.product.name: 20A7CTO1WW
dmi.product.version: ThinkPad X1 Carbon 2nd
dmi.sys.vendor: LENOVO
version.compiz: compiz 1:0.9.12.2+15.10.20151015-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.64-1
version.libgl1-mesa-dri: libgl1-mesa-dri 11.0.2-1ubuntu4
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 11.0.2-1ubuntu4
version.xserver-xorg-core: xserver-xorg-core 2:1.17.2-1ubuntu9
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.2-1ubuntu1
version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:7.5.0+git20150819-0ubuntu1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20150808-0ubuntu4
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.11-1ubuntu3
xserver.bootTime: Fri Oct 30 11:09:12 2015
xserver.configfile: default
xserver.errors:

xserver.logfile: /var/log/Xorg.0.log
xserver.outputs:
 product id1048
 vendor LGD
xserver.version: 2:1.17.2-1ubuntu9

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


** Tags: amd64 apport-bug compiz-0.9 ubuntu wily

** Description changed:

  Symptom: xorg crashes on windows creation
  
  How to reproduce: No 100% reproducibility, however intensively using
  2D/3D acceleration triggers the bug (e.g. by opening several new windows
  and/or menus in a Unity desktop environment)
  
  Affected hardware: Intel HD Graphics 4400/5000 etc
  Affected software:
- - kernel 4.2.0-16-generic #19-Ubuntu SMP Thu Oct 8 15:35:06 UTC 2015 x86_64
+ - kernel Linux 4.2.0-16-generic #19-Ubuntu SMP x86_64
+ - also affected is kernel Linux 4.2.5-040205-generic x86_64
  - Ubuntu 15.10 with Unity (because of compiz 2D/3D acceleration)
  - any other software using direct rendering (e.g. VLC)
  
  Workaround:
  - Disable window animations in Compiz reduces the frequency of the crashes.
  Use compizconfig-settings-manager for this tweak (sudo apt-get install 
compizconfig-settings-manager)
  - Use XFCE or LXDE also reduces the frequency of crashes given that these 
desktop environments are 2D only
  
  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: xorg 1:7.7+7ubuntu4
  Uname: Linux 4.2.5-040205-generic x86_64
  .tmp.unity.support.test.0:
-  
+ 
  ApportVersion: 2.19.1-0ubuntu4
  Architecture: amd64

[Touch-packages] [Bug 1422143] Re: No wifi connection after suspend with systemd

2015-10-29 Thread Mathew Hodson
** Changed in: wpa (Ubuntu Wily)
   Importance: Undecided => High

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to wpa in Ubuntu.
https://bugs.launchpad.net/bugs/1422143

Title:
  No wifi connection after suspend with systemd

Status in One Hundred Papercuts:
  Confirmed
Status in NetworkManager:
  Unknown
Status in wpa package in Ubuntu:
  Fix Released
Status in wpa source package in Wily:
  Fix Committed
Status in wpa source package in Xenial:
  Fix Released

Bug description:
  Using systemd as my default init system if I resume from suspend my
  laptop, it doesn't automatically reconnect to the wireless network and
  it doesn't list the available network connections.

  The only way to get a wireless connection is to restart the network-
  manager daemon or going to the gnome-control-center, disable wireless
  and enable it again.

  SRU INFORMATION
  ===
  In some of these cases this bug can be worked around by calling "wpa_cli 
suspend/resume" before/after suspend, like we used to do with the old pm-utils 
quirks (/usr/lib/pm-utils/sleep.d/60_wpa_supplicant). This only affects 
particular hardware, and thus this needs to be tested by affected reporters, 
there is no general reproducer for arbitrary systems.

  
  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: network-manager 0.9.10.0-4ubuntu6
  Uname: Linux 3.19.0-031900-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.16.1-0ubuntu2
  Architecture: amd64
  Date: Sun Feb 15 18:27:39 2015
  IfupdownConfig:
   # interfaces(5) file used by ifup(8) and ifdown(8)
   auto lo
   iface lo inet loopback
  InstallationDate: Installed on 2014-10-22 (116 days ago)
  InstallationMedia: Ubuntu-GNOME 14.10 "Utopic Unicorn" - Alpha amd64 
(20140923)
  IpRoute:
   default via 10.0.0.1 dev wlan0  proto static  metric 1024
   10.0.0.0/24 dev wlan0  proto kernel  scope link  src 10.0.0.36
   169.254.0.0/16 dev wlan0  scope link  metric 1000
  SourcePackage: network-manager
  UpgradeStatus: Upgraded to vivid on 2015-01-13 (32 days ago)
  nmcli-dev:
   DEVICE   TYPE  STATEDBUS-PATH  
CONNECTION   CON-UUID  CON-PATH
   wlan0wifi  connected/org/freedesktop/NetworkManager/Devices/2  
openhost_caldas  09d1f69d-d3da-4978-a69c-d94455db7ecf  
/org/freedesktop/NetworkManager/ActiveConnection/0
   docker0  bridgeunavailable  /org/freedesktop/NetworkManager/Devices/3  
--   ----
   eth0 ethernet  unavailable  /org/freedesktop/NetworkManager/Devices/1  
--   ----
   lo   loopback  unmanaged/org/freedesktop/NetworkManager/Devices/0  
--   ----
  nmcli-nm: Error: command ['nmcli', '-f', 'all', 'nm'] failed with exit code 
2: Error: Object 'nm' is unknown, try 'nmcli help'.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1498655] Re: Steam Controller support: need read-write access to Valve-owned input event device nodes.

2015-10-29 Thread Mathew Hodson
** Changed in: steam (Ubuntu)
   Importance: Undecided => Medium

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

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

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

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to systemd in Ubuntu.
https://bugs.launchpad.net/bugs/1498655

Title:
  Steam Controller support: need read-write access to Valve-owned input
  event device nodes.

Status in steam package in Ubuntu:
  Fix Released
Status in systemd package in Ubuntu:
  Incomplete
Status in steam source package in Trusty:
  In Progress
Status in systemd source package in Trusty:
  Confirmed
Status in steam source package in Vivid:
  In Progress
Status in systemd source package in Vivid:
  Confirmed
Status in steam source package in Wily:
  In Progress
Status in systemd source package in Wily:
  Incomplete

Bug description:
  The Steam Controller is about to roll out; for the Steam Controller to
  be supported properly by the Steam Client, it needs to be able to read
  and write to HID device nodes that have the Valve USB vendor ID. In
  our own Steam package 'steam-launcher' [1], this is achieved by a udev
  rule [2] matching our vendor ID. There doesn't seem to be such a udev
  rule in the Ubuntu-provided package, meaning Ubuntu users will not be
  able to use the Steam Controller out of the box.

  [1] http://repo.steampowered.com/steam/pool/steam/s/steam/
  [2] ./lib/udev/rules.d/99-steam-controller-perms.rules

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1509846] Re: lightdm crashes on window open in Ubuntu 15.10 intel

2015-10-29 Thread aldebx
@penalvch, thank you for assisting.

I've flagged a few other bugs as duplicates of this one to assist
developers in tracking this issue given that several other users are
experiencing xorg crashes on Intel graphic cards while they open new
windows or menus in various applications using unity+compiz in Ubuntu
15.10

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1509846

Title:
  lightdm crashes on window open in Ubuntu 15.10 intel

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  Symptom: xorg crashes on windows creation

  How to reproduce: No 100% reproducibility, however intensively using
  2D/3D acceleration triggers the bug (e.g. by opening several new
  windows and/or menus in a Unity desktop environment)

  Affected hardware: Intel HD Graphics 4400/5000 etc
  Affected software:
  - kernel 4.2.0-16-generic #19-Ubuntu SMP Thu Oct 8 15:35:06 UTC 2015 x86_64
  - Ubuntu 15.10 with Unity (because of compiz 2D/3D acceleration)
  - any other software using direct rendering (e.g. VLC)

  Workaround:
  - Disable window animations in Compiz reduces the frequency of the crashes.
  Use compizconfig-settings-manager for this tweak (sudo apt-get install 
compizconfig-settings-manager)

  
  [original description below]

  I get crashes, when I open a new window in an already started
  application. It happens irregularely, but I can force the crash if I
  open several new message windows in thunderbird. But it also happens
  in other applilcations, for example a new terminal window.

  This is the output during the crash in /var/log/Xorg.0.log
  [   253.500] (EE)
  [   253.500] (EE) Backtrace:
  [   253.500] (EE) 0: /usr/bin/X (xorg_backtrace+0x4e) [0x55f09075b62e]
  [   253.500] (EE) 1: /usr/bin/X (0x55f0905a7000+0x1b8999) [0x55f09075f999]
  [   253.500] (EE) 2: /lib/x86_64-linux-gnu/libc.so.6 (0x7f44130a8000+0x352f0) 
[0x7f44130dd2f0]
  [   253.500] (EE) 3: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x24f18) [0x7f440f4a3f18]
  [   253.500] (EE) 4: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x26157) [0x7f440f4a5157]
  [   253.500] (EE) 5: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x2b4b1) [0x7f440f4aa4b1]
  [   253.500] (EE) 6: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x804e4) [0x7f440f4ff4e4]
  [   253.501] (EE) 7: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x80e2c) [0x7f440f4ffe2c]
  [   253.501] (EE) 8: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x82e1a) [0x7f440f501e1a]
  [   253.501] (EE) 9: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x4197c) [0x7f440f4c097c]
  [   253.501] (EE) 10: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x59906) [0x7f440f4d8906]
  [   253.501] (EE) 11: /usr/bin/X (_CallCallbacks+0x34) [0x55f090604654]
  [   253.501] (EE) 12: /usr/bin/X (WriteToClient+0x244) [0x55f09075f274]
  [   253.501] (EE) 13: /usr/bin/X (WriteEventsToClient+0x1e2) [0x55f09060a502]
  [   253.501] (EE) 14: /usr/bin/X (0x55f0905a7000+0xf495a) [0x55f09069b95a]
  [   253.501] (EE) 15: /usr/bin/X (0x55f0905a7000+0xf5ef5) [0x55f09069cef5]
  [   253.501] (EE) 16: /usr/bin/X (0x55f0905a7000+0x5818f) [0x55f0905ff18f]
  [   253.501] (EE) 17: /usr/bin/X (0x55f0905a7000+0x5c34b) [0x55f09060334b]
  [   253.501] (EE) 18: /lib/x86_64-linux-gnu/libc.so.6 
(__libc_start_main+0xf0) [0x7f44130c8a40]
  [   253.501] (EE) 19: /usr/bin/X (_start+0x29) [0x55f0905ed6c9]
  [   253.501] (EE)
  [   253.501] (EE) Segmentation fault at address 0x0
  [   253.501] (EE)
  Fatal server error:
  [   253.501] (EE) Caught signal 11 (Segmentation fault). Server aborting
  [   253.501] (EE)
  [   253.501] (EE)
  Please consult the The X.Org Foundation support
   at http://wiki.x.org
   for help.
  [   253.501] (EE) Please also check the log file at "/var/log/Xorg.0.log" for 
additional information.
  [   253.502] (EE)
  [   253.502] (II) AIGLX: Suspending AIGLX clients for VT switch
  [   253.588] (EE) Server terminated with error (1). Closing log file.
  ---
  .tmp.unity.support.test.0:

  ApportVersion: 2.19.1-0ubuntu3
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  DistUpgraded: Fresh install
  DistroCodename: wily
  DistroRelease: Ubuntu 15.10
  DistroVariant: ubuntu
  DkmsStatus:
   virtualbox, 5.0.4, 4.2.0-11-generic, x86_64: installed
   virtualbox, 5.0.4, 4.2.0-16-generic, x86_64: installed
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation Haswell-ULT Integrated Graphics Controller [8086:0a16] 
(rev 09) (prog-if 00 [VGA controller])
     Subsystem: Lenovo Device [17aa:3978]
  InstallationDate: Installed on 2015-10-20 (6 days ago)
  InstallationMedia: Ubuntu 1

[Touch-packages] [Bug 1509846] Re: lightdm crashes on window open in Ubuntu 15.10 intel

2015-10-29 Thread aldebx
** Description changed:

  Symptom: xorg crashes on windows creation
  
  How to reproduce: No 100% reproducibility, however intensively using
  2D/3D acceleration triggers the bug (e.g. by opening several new windows
  and/or menus in a Unity desktop environment)
  
  Affected hardware: Intel HD Graphics 4400/5000 etc
- Affected software: 
+ Affected software:
  - kernel 4.2.0-16-generic #19-Ubuntu SMP Thu Oct 8 15:35:06 UTC 2015 x86_64
  - Ubuntu 15.10 with Unity (because of compiz 2D/3D acceleration)
  - any other software using direct rendering (e.g. VLC)
  
- Workaround: 
+ Workaround:
  - Disable window animations in Compiz reduces the frequency of the crashes.
  Use compizconfig-settings-manager for this tweak (sudo apt-get install 
compizconfig-settings-manager)
- 
- Solution:
- - upgrade kernel (which includes newer Intel graphic drivers)
- Kernel 4.2.5-040205-generic #201510270124 SMP Tue Oct 27 01:25:49 UTC 2015 
seems not to trigger this issue, more testing ahead.  
  
  
  [original description below]
  
  I get crashes, when I open a new window in an already started
  application. It happens irregularely, but I can force the crash if I
  open several new message windows in thunderbird. But it also happens in
  other applilcations, for example a new terminal window.
  
  This is the output during the crash in /var/log/Xorg.0.log
  [   253.500] (EE)
  [   253.500] (EE) Backtrace:
  [   253.500] (EE) 0: /usr/bin/X (xorg_backtrace+0x4e) [0x55f09075b62e]
  [   253.500] (EE) 1: /usr/bin/X (0x55f0905a7000+0x1b8999) [0x55f09075f999]
  [   253.500] (EE) 2: /lib/x86_64-linux-gnu/libc.so.6 (0x7f44130a8000+0x352f0) 
[0x7f44130dd2f0]
  [   253.500] (EE) 3: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x24f18) [0x7f440f4a3f18]
  [   253.500] (EE) 4: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x26157) [0x7f440f4a5157]
  [   253.500] (EE) 5: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x2b4b1) [0x7f440f4aa4b1]
  [   253.500] (EE) 6: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x804e4) [0x7f440f4ff4e4]
  [   253.501] (EE) 7: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x80e2c) [0x7f440f4ffe2c]
  [   253.501] (EE) 8: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x82e1a) [0x7f440f501e1a]
  [   253.501] (EE) 9: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x4197c) [0x7f440f4c097c]
  [   253.501] (EE) 10: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x59906) [0x7f440f4d8906]
  [   253.501] (EE) 11: /usr/bin/X (_CallCallbacks+0x34) [0x55f090604654]
  [   253.501] (EE) 12: /usr/bin/X (WriteToClient+0x244) [0x55f09075f274]
  [   253.501] (EE) 13: /usr/bin/X (WriteEventsToClient+0x1e2) [0x55f09060a502]
  [   253.501] (EE) 14: /usr/bin/X (0x55f0905a7000+0xf495a) [0x55f09069b95a]
  [   253.501] (EE) 15: /usr/bin/X (0x55f0905a7000+0xf5ef5) [0x55f09069cef5]
  [   253.501] (EE) 16: /usr/bin/X (0x55f0905a7000+0x5818f) [0x55f0905ff18f]
  [   253.501] (EE) 17: /usr/bin/X (0x55f0905a7000+0x5c34b) [0x55f09060334b]
  [   253.501] (EE) 18: /lib/x86_64-linux-gnu/libc.so.6 
(__libc_start_main+0xf0) [0x7f44130c8a40]
  [   253.501] (EE) 19: /usr/bin/X (_start+0x29) [0x55f0905ed6c9]
  [   253.501] (EE)
  [   253.501] (EE) Segmentation fault at address 0x0
  [   253.501] (EE)
  Fatal server error:
  [   253.501] (EE) Caught signal 11 (Segmentation fault). Server aborting
  [   253.501] (EE)
  [   253.501] (EE)
  Please consult the The X.Org Foundation support
   at http://wiki.x.org
   for help.
  [   253.501] (EE) Please also check the log file at "/var/log/Xorg.0.log" for 
additional information.
  [   253.502] (EE)
  [   253.502] (II) AIGLX: Suspending AIGLX clients for VT switch
  [   253.588] (EE) Server terminated with error (1). Closing log file.
  ---
  .tmp.unity.support.test.0:
  
  ApportVersion: 2.19.1-0ubuntu3
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  DistUpgraded: Fresh install
  DistroCodename: wily
  DistroRelease: Ubuntu 15.10
  DistroVariant: ubuntu
  DkmsStatus:
   virtualbox, 5.0.4, 4.2.0-11-generic, x86_64: installed
   virtualbox, 5.0.4, 4.2.0-16-generic, x86_64: installed
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation Haswell-ULT Integrated Graphics Controller [8086:0a16] 
(rev 09) (prog-if 00 [VGA controller])
     Subsystem: Lenovo Device [17aa:3978]
  InstallationDate: Installed on 2015-10-20 (6 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Alpha amd64 (20150924)
  MachineType: LENOVO 20266
  Package: xorg 1:7.7+7ubuntu4
  PackageArchitecture: amd64
  ProcEnviron:
   TERM=screen
   PATH=(custom, no user)
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-16-generic.efi.signed 
root=UUID=a2970568-5fac-4c99-bb

[Touch-packages] [Bug 1511343] Re: Xorg crash

2015-10-29 Thread aldebx
*** This bug is a duplicate of bug 1509846 ***
https://bugs.launchpad.net/bugs/1509846

** This bug has been marked a duplicate of bug 1509846
   lightdm crashes on window open in Ubuntu 15.10 intel

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1511343

Title:
  Xorg crash

Status in xorg package in Ubuntu:
  Confirmed

Bug description:
  Every time I use LibreOffice and try to resize the window (which
  starts as full screen) Xorg produces a segfault and returns me to the
  login screen. This is easy to reproduce and is not document dependent
  - it happens with a blank document in any of the LibreOffice
  applications.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: xorg 1:7.7+7ubuntu4
  ProcVersionSignature: Ubuntu 4.2.0-16.19-generic 4.2.3
  Uname: Linux 4.2.0-16-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.19.1-0ubuntu4
  Architecture: amd64
  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: Thu Oct 29 12:10:23 2015
  DistUpgraded: 2015-10-23 01:30:00,161 DEBUG enabling apt cron job
  DistroCodename: wily
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 4th Gen Core Processor Integrated Graphics Controller 
[8086:0416] (rev 06) (prog-if 00 [VGA controller])
 Subsystem: Lenovo Device [17aa:3978]
  InstallationDate: Installed on 2014-08-08 (446 days ago)
  InstallationMedia: Ubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140722.2)
  MachineType: LENOVO 20238
  ProcEnviron:
   LANGUAGE=en_GB:en
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-16-generic.efi.signed 
root=UUID=f9669215-9068-4c99-b70f-dd9c19318650 ro quiet splash vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  Title: Xorg crash
  UpgradeStatus: Upgraded to wily on 2015-10-23 (6 days ago)
  dmi.bios.date: 04/18/2014
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 79CN48WW(V3.07)
  dmi.board.asset.tag: No Asset Tag
  dmi.board.name: INVALID
  dmi.board.vendor: LENOVO
  dmi.board.version: 31900058Std
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo G510
  dmi.modalias: 
dmi:bvnLENOVO:bvr79CN48WW(V3.07):bd04/18/2014:svnLENOVO:pn20238:pvrLenovoG510:rvnLENOVO:rnINVALID:rvr31900058Std:cvnLENOVO:ct10:cvrLenovoG510:
  dmi.product.name: 20238
  dmi.product.version: Lenovo G510
  dmi.sys.vendor: LENOVO
  version.compiz: compiz 1:0.9.12.2+15.10.20151015-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.64-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.0.2-1ubuntu4
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.0.2-1ubuntu4
  version.xserver-xorg-core: xserver-xorg-core 2:1.17.2-1ubuntu9
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.2-1ubuntu1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:7.5.0+git20150819-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20150808-0ubuntu4
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.11-1ubuntu3
  xserver.bootTime: Thu Oct 29 12:03:07 2015
  xserver.configfile: default
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id   18258 
   vendor SDC
  xserver.version: 2:1.17.2-1ubuntu9

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1412916] Re: evince: Bad PDF rendering: invalid font scale

2015-10-29 Thread Mathew Hodson
** Changed in: poppler (Ubuntu Trusty)
   Importance: Undecided => Low

** Description changed:

- (SRU info on comment #11)
+ [Impact]
  
- Evince in ubuntu 14.04 (3.10.3-0ubuntu10.1) suffers from this bug:
- https://www.libreoffice.org/bugzilla/show_bug.cgi?id=78042
+ * Many PDFs do not display correctly, including the boarding passes from a
+   major European airline.
  
- The test case which is attached to the upstream bug demonstrates the
- problem with Evince in Ubuntu.
+ * Printing a boarding pass is a common simple task which users expect to
+   work, and therefore should be fixed in the stable release.
  
- Hopefully, the patch attached to the upstream bug report would fix the
- problem in ubuntu.
+ * See upstream bug report for discussion about the mechanism of the fix.
+ 
+ [Test Case]
+ 
+ * Attempt to view the test case in the linked upstream bug using 'evince
+   attachment.pdf'.
+ 
+ * Observe corrupted text displayed.
+ 
+ [Regression Potential]
+ 
+ * Theoretically, other PDFs which currently display correctly could be
+ displayed incorrectly after this change, but is intended to emulate
+ acroread, so this is unlikely.
+ 
+ * Patch has been reviewed and committed upstream, so should be safe.

** Tags added: trusty

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

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

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to poppler in Ubuntu.
https://bugs.launchpad.net/bugs/1412916

Title:
  evince: Bad PDF rendering: invalid font scale

Status in Poppler:
  Fix Released
Status in poppler package in Ubuntu:
  Fix Released
Status in poppler source package in Trusty:
  Fix Committed

Bug description:
  [Impact]

  * Many PDFs do not display correctly, including the boarding passes from a
major European airline.

  * Printing a boarding pass is a common simple task which users expect to
work, and therefore should be fixed in the stable release.

  * See upstream bug report for discussion about the mechanism of the
  fix.

  [Test Case]

  * Attempt to view the test case in the linked upstream bug using 'evince
attachment.pdf'.

  * Observe corrupted text displayed.

  [Regression Potential]

  * Theoretically, other PDFs which currently display correctly could be
  displayed incorrectly after this change, but is intended to emulate
  acroread, so this is unlikely.

  * Patch has been reviewed and committed upstream, so should be safe.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1489816] Re: gstreamer/rhythmbox submits invalid Disc IDs to MusicBrainz (Trusty Tahr)

2015-10-29 Thread Mathew Hodson
** Bug watch added: GNOME Bug Tracker #708991
   https://bugzilla.gnome.org/show_bug.cgi?id=708991

** Also affects: gst-plugins-base via
   https://bugzilla.gnome.org/show_bug.cgi?id=708991
   Importance: Unknown
   Status: Unknown

** Changed in: gst-plugins-base1.0 (Ubuntu)
   Importance: Undecided => Medium

** Changed in: gst-plugins-base1.0 (Ubuntu Trusty)
   Importance: Undecided => Medium

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to gst-plugins-base1.0 in
Ubuntu.
https://bugs.launchpad.net/bugs/1489816

Title:
  gstreamer/rhythmbox submits invalid Disc IDs to MusicBrainz (Trusty
  Tahr)

Status in gst-plugins-base:
  Unknown
Status in gst-plugins-base1.0 package in Ubuntu:
  Fix Released
Status in gst-plugins-base1.0 source package in Trusty:
  Fix Committed

Bug description:
  Gstreamer calculates an ID for Audio CDs and optionally submits it to 
MusicBrainz.
  This enables programs to find the corresponding metadata for a CD on 
MusicBrainz.

  Gstreamer < 1.3.1 doesn't do this correctly for CDs with data tracks,
  leading to invalid Disc IDs being submitted to the MusicBrainz
  database.

  This is reported upstream in https://bugzilla.gnome.org/show_bug.cgi?id=708991
  and fixed in gstreamer 1.3.1. The corresponding patch is supplied as an 
attachment here.
  Trusty Tahr is using 1.2.x and there is no new release on that branch.
  Trusty Tahr is still supported until 2019. It would be really nice if that 
can be fixed.

  The bug surfaces as a problem in Rhythmbox because starting with 2.97
  this uses gstreamer for MusicBrainz Disc ID handling.

To manage notifications about this bug go to:
https://bugs.launchpad.net/gst-plugins-base/+bug/1489816/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1420573] Re: [enhancement] Missing client function for surface resizing

2015-10-29 Thread Daniel van Vugt
Moved to bug 1511608.

** Changed in: xorg-server (Ubuntu)
   Status: Confirmed => Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to mir in Ubuntu.
https://bugs.launchpad.net/bugs/1420573

Title:
  [enhancement] Missing client function for surface resizing

Status in Mir:
  Fix Released
Status in mir package in Ubuntu:
  Fix Released
Status in xorg-server package in Ubuntu:
  Invalid

Bug description:
  Missing client API for client-initiated interactive resizing (eg: drag
  on the client-drawn resize handles)

  Actually there are two types of client initiated resizing we need to
  support:

  (a) Client specifies new width and height (e.g. video player loaded new file 
or System Settings switched panel).
  (b) Edge resizing for client-drawn decorations (which is closely related to 
bug 1420334).

  (a) Would be something like:
     mir_surface_resize(surface, width, height);

  (b) Could be something like:
     mir_surface_move_resize(surface, delta_top, delta_bottom, delta_left, 
delta_right);
  which would solve bug 1420334 also, as you can then say:

  void mir_surface_move_by(MirSurface *s, int dx, int dy)
  {
  mir_surface_move_resize(s, dy, dy, dx, dx);
  }

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1509846] Re: lightdm crashes on window open in Ubuntu 15.10 intel

2015-10-29 Thread aldebx
@rubo77,  after identifying the problem to be likely with the Intel
graphic driver, I've been testing Kernel 4.2.5-040205-generic
#201510270124 SMP Tue Oct 27 01:25:49 UTC 2015 x86_64 for the past 6
hours, and it seems not to trigger any crash despite using 2D/3D graphic
acceleration in Unity/Compiz and other applications.

Kernel versions can be downloaded from 
http://kernel.ubuntu.com/~kernel-ppa/mainline/
Please join me in testing if this bug has been fixed upstream in kernel version 
4.2.5-040205-generic and up.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1509846

Title:
  lightdm crashes on window open in Ubuntu 15.10 intel

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  Symptom: xorg crashes on windows creation

  How to reproduce: No 100% reproducibility, however intensively using
  2D/3D acceleration triggers the bug (e.g. by opening several new
  windows and/or menus in a Unity desktop environment)

  Affected hardware: Intel HD Graphics 4400/5000 etc
  Affected software: 
  - kernel 4.2.0-16-generic #19-Ubuntu SMP Thu Oct 8 15:35:06 UTC 2015 x86_64
  - Ubuntu 15.10 with Unity (because of compiz 2D/3D acceleration)
  - any other software using direct rendering (e.g. VLC)

  Workaround: 
  - Disable window animations in Compiz reduces the frequency of the crashes.
  Use compizconfig-settings-manager for this tweak (sudo apt-get install 
compizconfig-settings-manager)

  Solution:
  - upgrade kernel (which includes newer Intel graphic drivers)
  Kernel 4.2.5-040205-generic #201510270124 SMP Tue Oct 27 01:25:49 UTC 2015 
seems not to trigger this issue, more testing ahead.  

  
  [original description below]

  I get crashes, when I open a new window in an already started
  application. It happens irregularely, but I can force the crash if I
  open several new message windows in thunderbird. But it also happens
  in other applilcations, for example a new terminal window.

  This is the output during the crash in /var/log/Xorg.0.log
  [   253.500] (EE)
  [   253.500] (EE) Backtrace:
  [   253.500] (EE) 0: /usr/bin/X (xorg_backtrace+0x4e) [0x55f09075b62e]
  [   253.500] (EE) 1: /usr/bin/X (0x55f0905a7000+0x1b8999) [0x55f09075f999]
  [   253.500] (EE) 2: /lib/x86_64-linux-gnu/libc.so.6 (0x7f44130a8000+0x352f0) 
[0x7f44130dd2f0]
  [   253.500] (EE) 3: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x24f18) [0x7f440f4a3f18]
  [   253.500] (EE) 4: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x26157) [0x7f440f4a5157]
  [   253.500] (EE) 5: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x2b4b1) [0x7f440f4aa4b1]
  [   253.500] (EE) 6: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x804e4) [0x7f440f4ff4e4]
  [   253.501] (EE) 7: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x80e2c) [0x7f440f4ffe2c]
  [   253.501] (EE) 8: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x82e1a) [0x7f440f501e1a]
  [   253.501] (EE) 9: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x4197c) [0x7f440f4c097c]
  [   253.501] (EE) 10: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x59906) [0x7f440f4d8906]
  [   253.501] (EE) 11: /usr/bin/X (_CallCallbacks+0x34) [0x55f090604654]
  [   253.501] (EE) 12: /usr/bin/X (WriteToClient+0x244) [0x55f09075f274]
  [   253.501] (EE) 13: /usr/bin/X (WriteEventsToClient+0x1e2) [0x55f09060a502]
  [   253.501] (EE) 14: /usr/bin/X (0x55f0905a7000+0xf495a) [0x55f09069b95a]
  [   253.501] (EE) 15: /usr/bin/X (0x55f0905a7000+0xf5ef5) [0x55f09069cef5]
  [   253.501] (EE) 16: /usr/bin/X (0x55f0905a7000+0x5818f) [0x55f0905ff18f]
  [   253.501] (EE) 17: /usr/bin/X (0x55f0905a7000+0x5c34b) [0x55f09060334b]
  [   253.501] (EE) 18: /lib/x86_64-linux-gnu/libc.so.6 
(__libc_start_main+0xf0) [0x7f44130c8a40]
  [   253.501] (EE) 19: /usr/bin/X (_start+0x29) [0x55f0905ed6c9]
  [   253.501] (EE)
  [   253.501] (EE) Segmentation fault at address 0x0
  [   253.501] (EE)
  Fatal server error:
  [   253.501] (EE) Caught signal 11 (Segmentation fault). Server aborting
  [   253.501] (EE)
  [   253.501] (EE)
  Please consult the The X.Org Foundation support
   at http://wiki.x.org
   for help.
  [   253.501] (EE) Please also check the log file at "/var/log/Xorg.0.log" for 
additional information.
  [   253.502] (EE)
  [   253.502] (II) AIGLX: Suspending AIGLX clients for VT switch
  [   253.588] (EE) Server terminated with error (1). Closing log file.
  ---
  .tmp.unity.support.test.0:

  ApportVersion: 2.19.1-0ubuntu3
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  DistUpgraded: Fresh install
  DistroCodename: wily
  DistroRelease: Ubuntu 15.10
  DistroVariant: ubuntu
  

[Touch-packages] [Bug 1509846] Re: lightdm crashes on window open in Ubuntu 15.10 intel

2015-10-29 Thread aldebx
** Description changed:

- On Ubuntu 15.10 I get crashes, when I open a new window in an already
- started application. It happens irregularely, but I can force the crash
- if I open several new message windows in thunderbird. But it also
- happens in other applilcations, for example a new terminal window.
+ Symptom: xorg crashes on windows creation
+ 
+ How to reproduce: No 100% reproducibility, however intensively using
+ 2D/3D acceleration triggers the bug (e.g. by opening several new windows
+ and/or menus in a Unity desktop environment)
+ 
+ Affected hardware: Intel HD Graphics 4400/5000 etc
+ Affected software: 
+ - kernel 4.2.0-16-generic #19-Ubuntu SMP Thu Oct 8 15:35:06 UTC 2015 x86_64
+ - Ubuntu 15.10 with Unity (because of compiz 2D/3D acceleration)
+ - any other software using direct rendering (e.g. VLC)
+ 
+ Workaround: 
+ - Disable window animations in Compiz reduces the frequency of the crashes.
+ Use compizconfig-settings-manager for this tweak (sudo apt-get install 
compizconfig-settings-manager)
+ 
+ Solution:
+ - upgrade kernel (which includes newer Intel graphic drivers)
+ Kernel 4.2.5-040205-generic #201510270124 SMP Tue Oct 27 01:25:49 UTC 2015 
seems not to trigger this issue, more testing ahead.  
+ 
+ 
+ [original description below]
+ 
+ I get crashes, when I open a new window in an already started
+ application. It happens irregularely, but I can force the crash if I
+ open several new message windows in thunderbird. But it also happens in
+ other applilcations, for example a new terminal window.
  
  This is the output during the crash in /var/log/Xorg.0.log
  [   253.500] (EE)
  [   253.500] (EE) Backtrace:
  [   253.500] (EE) 0: /usr/bin/X (xorg_backtrace+0x4e) [0x55f09075b62e]
  [   253.500] (EE) 1: /usr/bin/X (0x55f0905a7000+0x1b8999) [0x55f09075f999]
  [   253.500] (EE) 2: /lib/x86_64-linux-gnu/libc.so.6 (0x7f44130a8000+0x352f0) 
[0x7f44130dd2f0]
  [   253.500] (EE) 3: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x24f18) [0x7f440f4a3f18]
  [   253.500] (EE) 4: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x26157) [0x7f440f4a5157]
  [   253.500] (EE) 5: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x2b4b1) [0x7f440f4aa4b1]
  [   253.500] (EE) 6: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x804e4) [0x7f440f4ff4e4]
  [   253.501] (EE) 7: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x80e2c) [0x7f440f4ffe2c]
  [   253.501] (EE) 8: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x82e1a) [0x7f440f501e1a]
  [   253.501] (EE) 9: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x4197c) [0x7f440f4c097c]
  [   253.501] (EE) 10: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f440f47f000+0x59906) [0x7f440f4d8906]
  [   253.501] (EE) 11: /usr/bin/X (_CallCallbacks+0x34) [0x55f090604654]
  [   253.501] (EE) 12: /usr/bin/X (WriteToClient+0x244) [0x55f09075f274]
  [   253.501] (EE) 13: /usr/bin/X (WriteEventsToClient+0x1e2) [0x55f09060a502]
  [   253.501] (EE) 14: /usr/bin/X (0x55f0905a7000+0xf495a) [0x55f09069b95a]
  [   253.501] (EE) 15: /usr/bin/X (0x55f0905a7000+0xf5ef5) [0x55f09069cef5]
  [   253.501] (EE) 16: /usr/bin/X (0x55f0905a7000+0x5818f) [0x55f0905ff18f]
  [   253.501] (EE) 17: /usr/bin/X (0x55f0905a7000+0x5c34b) [0x55f09060334b]
  [   253.501] (EE) 18: /lib/x86_64-linux-gnu/libc.so.6 
(__libc_start_main+0xf0) [0x7f44130c8a40]
  [   253.501] (EE) 19: /usr/bin/X (_start+0x29) [0x55f0905ed6c9]
  [   253.501] (EE)
  [   253.501] (EE) Segmentation fault at address 0x0
  [   253.501] (EE)
  Fatal server error:
  [   253.501] (EE) Caught signal 11 (Segmentation fault). Server aborting
  [   253.501] (EE)
  [   253.501] (EE)
  Please consult the The X.Org Foundation support
-  at http://wiki.x.org 
-  for help.
+  at http://wiki.x.org
+  for help.
  [   253.501] (EE) Please also check the log file at "/var/log/Xorg.0.log" for 
additional information.
  [   253.502] (EE)
  [   253.502] (II) AIGLX: Suspending AIGLX clients for VT switch
  [   253.588] (EE) Server terminated with error (1). Closing log file.
- --- 
+ ---
  .tmp.unity.support.test.0:
-  
+ 
  ApportVersion: 2.19.1-0ubuntu3
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  DistUpgraded: Fresh install
  DistroCodename: wily
  DistroRelease: Ubuntu 15.10
  DistroVariant: ubuntu
  DkmsStatus:
-  virtualbox, 5.0.4, 4.2.0-11-generic, x86_64: installed
-  virtualbox, 5.0.4, 4.2.0-16-generic, x86_64: installed
+  virtualbox, 5.0.4, 4.2.0-11-generic, x86_64: installed
+  virtualbox, 5.0.4, 4.2.0-16-generic, x86_64: installed
  ExtraDebuggingInterest: Yes
  GraphicsCard:
-  Intel Corporation Haswell-ULT Integrated Graphics Controller [8086:0a16] 
(rev 09) (prog-if 00 [VGA controller])
-Subsystem: Lenovo Device [17aa:3978]

[Touch-packages] [Bug 1510382] Re: Window contents become slightly blurry after moving/resizing the window

2015-10-29 Thread Daniel van Vugt
** Tags added: xmir

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity8 in Ubuntu.
https://bugs.launchpad.net/bugs/1510382

Title:
  Window contents become slightly blurry after moving/resizing the
  window

Status in QtMir:
  New
Status in qtmir package in Ubuntu:
  New
Status in unity8 package in Ubuntu:
  New

Bug description:
  Using Unity8 on wily desktop, window contents become slightly blurry
  after moving/resizing the window.

  I first noticed this in Xmir. But now see you can reproduce it just by
  opening System Settings and moving/resizing the window.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1510969] Re: Windows cannot be resized near screen edges

2015-10-29 Thread Daniel van Vugt
Sounds like we're just missing Alt+middlebutton resize support. Although
I would argue that's not very important. What makes this bug High
severity?

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity8 in Ubuntu.
https://bugs.launchpad.net/bugs/1510969

Title:
  Windows cannot be resized near screen edges

Status in canonical-pocket-desktop:
  New
Status in unity8 package in Ubuntu:
  In Progress

Bug description:
  when in pocket pc mode windows with borders near the edges of the
  display cannot be resized without accessing the launcher or spread.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-pocket-desktop/+bug/1510969/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1422137] Re: Display quits periodically

2015-10-29 Thread mash
I have this problem as sell.  X quits for now apparent reason and dumps
me to the login screen (killing whatever was running).

ubuntu 15.10 on a Dell XPS 13 (9343)


Linux mash-XPS-13-9343 3.19.0-28-generic #30-Ubuntu SMP Mon Aug 31 15:52:51 UTC 
2015 x86_64 x86_64 x86_64 GNU/Linux

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1422137

Title:
  Display quits periodically

Status in xorg package in Ubuntu:
  Expired

Bug description:
  Display quits for about a second and the issue constantly repeats at 
irregular periods of time.
  Xubuntu 14.10 (fresh install, settings - default)

  ProblemType: Bug
  DistroRelease: Ubuntu 14.10
  Package: xorg 1:7.7+7ubuntu2
  ProcVersionSignature: Ubuntu 3.16.0-30.40-generic 3.16.7-ckt3
  Uname: Linux 3.16.0-30-generic i686
  ApportVersion: 2.14.7-0ubuntu8.1
  Architecture: i386
  CurrentDesktop: XFCE
  Date: Sun Feb 15 17:41:27 2015
  InstallationDate: Installed on 2015-02-14 (0 days ago)
  InstallationMedia: Xubuntu 14.10 "Utopic Unicorn" - Release i386 (20141022.1)
  SourcePackage: xorg
  Symptom: display
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1511538] Re: 1/2 screen on external monitor

2015-10-29 Thread Daniel van Vugt
** Also affects: mir
   Importance: Undecided
   Status: New

** Tags added: multimonitor

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to mir in Ubuntu.
https://bugs.launchpad.net/bugs/1511538

Title:
  1/2 screen on external monitor

Status in canonical-pocket-desktop:
  New
Status in Mir:
  New
Status in mir package in Ubuntu:
  Confirmed
Status in qtmir package in Ubuntu:
  Confirmed

Bug description:
  using N7 latest PD image

  connect bt mouse and keyboard
  connected to monitor
  opened several apps (clock, msg, phone, browser, twitter, u-s-s, terminal, 
camera, gallery, calculator, pathwind) - did quite a bit of window moving, max, 
min, close, relaunch

  after a while, disconnected n7 from monitor, then reconnected
  only 1/2 the screen on the monitor was used
  disconnected, reconnected, still only 1/2 the screen used, possible low mem ?

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-pocket-desktop/+bug/1511538/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1502623] Re: package util-linux 2.20.1-5.1ubuntu20.4 failed to install/upgrade: подпроцесс новый сценарий pre-installation возвратил код ошибки 255

2015-10-29 Thread Phillip Susi
Try apt-get download inserv then dpkg -i
insserv_1.14.0-5ubuntu3_amd64.deb, and finally apt-get upgrade.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to util-linux in Ubuntu.
https://bugs.launchpad.net/bugs/1502623

Title:
  package util-linux 2.20.1-5.1ubuntu20.4 failed to install/upgrade:
  подпроцесс новый сценарий pre-installation возвратил код ошибки 255

Status in util-linux package in Ubuntu:
  Incomplete

Bug description:
  it's a result of  "apt-get upgrade" command.
  tail of console output:

  Распаковывается mount (2.20.1-5.1ubuntu20.7) на замену (2.20.1-5.1ubuntu20.4) 
…
  Обрабатываются триггеры для man-db (2.6.7.1-1ubuntu1) …
  Настраивается пакет mount (2.20.1-5.1ubuntu20.7) …
  (Чтение базы данных … на данный момент установлено 901128 файлов и каталогов.)
  Подготовка к распаковке …/util-linux_2.20.1-5.1ubuntu20.7_amd64.deb …
  Can't exec "insserv": Нет такого файла или каталога at /usr/sbin/update-rc.d 
line 391.
  update-rc.d: error: insserv rejected the script header
  dpkg: ошибка при обработке архива 
/var/cache/apt/archives/util-linux_2.20.1-5.1ubuntu20.7_amd64.deb (--unpack):
   подпроцесс новый сценарий pre-installation возвратил код ошибки 255
  Can't exec "insserv": Нет такого файла или каталога at /usr/sbin/update-rc.d 
line 391.
  update-rc.d: error: insserv rejected the script header
  dpkg: ошибка при очистке:
   подпроцесс установлен сценарий post-installation возвратил код ошибки 255
  При обработке следующих пакетов произошли ошибки:
   /var/cache/apt/archives/util-linux_2.20.1-5.1ubuntu20.7_amd64.deb
  E: Sub-process /usr/bin/dpkg returned an error code (1)

  ProblemType: Package
  DistroRelease: Ubuntu 14.04
  Package: util-linux 2.20.1-5.1ubuntu20.4
  ProcVersionSignature: Ubuntu 3.13.0-65.105-generic 3.13.11-ckt26
  Uname: Linux 3.13.0-65-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.15
  Architecture: amd64
  Date: Sun Oct  4 22:43:46 2015
  ErrorMessage: подпроцесс новый сценарий pre-installation возвратил код ошибки 
255
  InstallationDate: Installed on 2013-11-26 (677 days ago)
  InstallationMedia: Ubuntu 13.04 "Raring Ringtail" - Release amd64 (20130424)
  RelatedPackageVersions:
   dpkg 1.17.5ubuntu5.4
   apt  1.0.1ubuntu2.7
  SourcePackage: util-linux
  Title: package util-linux 2.20.1-5.1ubuntu20.4 failed to install/upgrade: 
подпроцесс новый сценарий pre-installation возвратил код ошибки 255
  UpgradeStatus: Upgraded to trusty on 2014-05-18 (504 days ago)

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1511095] Re: unity-system-compositor crash, no interaction on windowed mode

2015-10-29 Thread Daniel van Vugt
** Also affects: mir
   Importance: Undecided
   Status: New

** Branch linked: lp:~afrantzis/mir/maybe-fix-1511095-for-0.17

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity-system-compositor in
Ubuntu.
https://bugs.launchpad.net/bugs/1511095

Title:
  unity-system-compositor crash, no interaction on windowed mode

Status in canonical-pocket-desktop:
  New
Status in Mir:
  New
Status in mir package in Ubuntu:
  New
Status in qtmir package in Ubuntu:
  New
Status in unity-system-compositor package in Ubuntu:
  New
Status in unity8 package in Ubuntu:
  New

Bug description:
  I am seeing this occur with Nexus7 (i haven't tested with nexus4 enough to 
say)
  but I regularly see N7 reboot with me having interacted with it

  I will have usually connected the BT mouse and have maybe u-s-s open as well 
as dash (i think i've even seen it do so after just being rebooted with me not 
touching it before the next reboot).
  the screen will be on or off from being idel, no interaction per se and the 
device will suddenly display the "spinner" screen which is actually ubuntu 
dot-dot-dots

  I have seen it enough to confirm there are no crash files
  generated/associated with it

  lastly, i have seen this mostly while i have added silo21 (unity8
  improvements) on top of the latest pd image.

  attached is a syslog

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-pocket-desktop/+bug/1511095/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1511583] [NEW] [desktop] No audio

2015-10-29 Thread Michael Terry
Public bug reported:

On my xenial desktop, no audio seems to play in webbrowser-app (but it
does in Firefox or Chromium).

Try https://www.youtube.com/watch?v=dQw4w9WgXcQ for example.

** Affects: webbrowser-app (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
https://bugs.launchpad.net/bugs/1511583

Title:
  [desktop] No audio

Status in webbrowser-app package in Ubuntu:
  New

Bug description:
  On my xenial desktop, no audio seems to play in webbrowser-app (but it
  does in Firefox or Chromium).

  Try https://www.youtube.com/watch?v=dQw4w9WgXcQ for example.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1511512] Re: Xorg crashes when opening new windows with Intel video card

2015-10-29 Thread Christopher M. Penalver
Phil Boutros, thank you for reporting this and helping make Ubuntu
better.

As per http://www.dell.com/support/home/us/en/19/product-
support/product/optiplex-790/drivers/advanced an update to your
computer's buggy and outdated BIOS is available (A18). If you update to
this following https://help.ubuntu.com/community/BIOSUpdate does it
address the issue?

If it doesn't, could you please both specify what happened, and provide the 
output of the following terminal command:
sudo dmidecode -s bios-version && sudo dmidecode -s bios-release-date

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

Please note your current BIOS is already in the Bug Description, so
posting this on the old BIOS would not be helpful.

Also, you don't have to create a new bug report.

Once the BIOS is updated, if the problem is still reproducible, and the
information above is provided, then please mark this report Status
Confirmed. Otherwise, please mark this as Invalid.

Thank you for your understanding.

** Description changed:

- See bug # 1509846
- 
- Someone asks to open new bug, and since this also affects me, I'm hoping
- the debug info will help.
+ Xorg crashes when opening new windows.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: xorg 1:7.7+7ubuntu4
  ProcVersionSignature: Ubuntu 4.2.0-16.19-generic 4.2.3
  Uname: Linux 4.2.0-16-generic x86_64
  .tmp.unity.support.test.0:
-  
+ 
  ApportVersion: 2.19.1-0ubuntu4
  Architecture: amd64
  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: Thu Oct 29 12:48:02 2015
  DistUpgraded: 2015-10-27 10:56:17,630 DEBUG enabling apt cron job
  DistroCodename: wily
  DistroVariant: ubuntu
  DkmsStatus: vboxhost, 5.0.8, 4.2.0-16-generic, x86_64: installed
  ExtraDebuggingInterest: Yes
  GraphicsCard:
-  Intel Corporation 2nd Generation Core Processor Family Integrated Graphics 
Controller [8086:0102] (rev 09) (prog-if 00 [VGA controller])
-Subsystem: Dell Device [1028:04ad]
+  Intel Corporation 2nd Generation Core Processor Family Integrated Graphics 
Controller [8086:0102] (rev 09) (prog-if 00 [VGA controller])
+    Subsystem: Dell Device [1028:04ad]
  MachineType: Dell Inc. OptiPlex 790
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-16-generic 
root=UUID=43f2ccf7-0ceb-4a9d-8fcb-d0564749c2a6 ro quiet splash vt.handoff=7
  SourcePackage: xorg
  UpgradeStatus: Upgraded to wily on 2015-10-27 (2 days ago)
  dmi.bios.date: 12/30/2011
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A11
  dmi.board.name: 0HY9JP
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 6
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA11:bd12/30/2011:svnDellInc.:pnOptiPlex790:pvr01:rvnDellInc.:rn0HY9JP:rvrA00:cvnDellInc.:ct6:cvr:
  dmi.product.name: OptiPlex 790
  dmi.product.version: 01
  dmi.sys.vendor: Dell Inc.
  version.compiz: compiz 1:0.9.12.2+15.10.20151015-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.64-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.0.2-1ubuntu4
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.0.2-1ubuntu4
  version.xserver-xorg-core: xserver-xorg-core 2:1.17.2-1ubuntu9
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.2-1ubuntu1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:7.5.0+git20150819-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20150808-0ubuntu4
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.11-1ubuntu3
  xserver.bootTime: Thu Oct 29 12:46:25 2015
  xserver.configfile: default
  xserver.errors:
-  
+ 
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
-  
+ 
  xserver.version: 2:1.17.2-1ubuntu9

** Tags added: bios-outdated-a18

** Changed in: xorg (Ubuntu)
   Importance: Undecided => Low

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

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1511512

Title:
  Xorg crashes when opening new windows with Intel video card

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  Xorg crashes when opening new windows.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: xorg 1:7.7+7ubuntu4
  ProcVersionSignature: Ubuntu 4.2.0-16.19-generic 4.2.3
  Uname: Linux 4.2.0-16-generic x86_64
  .tmp.unity.support.test.0:

  ApportVersion: 2.19.1-0ubuntu4
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnre

[Touch-packages] [Bug 1507346] Re: Back light off after sleep mode

2015-10-29 Thread Christopher M. Penalver
wooglin280, 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.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1507346

Title:
  Back light off after sleep mode

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  Hi all, 
  I would like to report that the back light of the display doesn't come back 
on after the computer has been in sleep or display off mode.   It initially 
came back on to allow me to unlock the account / log back in, then it turned 
off and stayed like that.  The windows are displaying correctly, so using the 
desk lamp as light source I could log out and back in again, to no avail.  
Re-start and all is happy, but power save again, and darkness surrounds you. 

  My laptop is a Dell Latitude E6540 with the standard Intel 4600 graphics. 
  Please let me know what other details you may require

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: xorg 1:7.7+7ubuntu4
  ProcVersionSignature: Ubuntu 4.2.0-11.13-generic 4.2.1
  Uname: Linux 4.2.0-11-generic x86_64
  ApportVersion: 2.18.1-0ubuntu1
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Sun Oct 18 19:16:14 2015
  InstallationDate: Installed on 2015-10-11 (7 days ago)
  InstallationMedia: Xubuntu 15.10 "Wily Werewolf" - Alpha amd64 (20150924)
  SourcePackage: xorg
  Symptom: display
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1510970] Re: Intel driver crashes on Ubuntu 15.10

2015-10-29 Thread Christopher M. Penalver
** Tags added: bios-outdated-f.15

** Tags removed: bios-outdated-f.15
** Tags added: latest-bios-f.15

** Package changed: xorg (Ubuntu) => xserver-xorg-video-intel (Ubuntu)

** Changed in: xserver-xorg-video-intel (Ubuntu)
   Importance: Low => Medium

** Changed in: xserver-xorg-video-intel (Ubuntu)
   Status: Incomplete => New

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1510970

Title:
  Intel driver crashes on Ubuntu 15.10

Status in xserver-xorg-video-intel package in Ubuntu:
  New

Bug description:
  The Xserver crashes randomly after upgrading to Ubuntu 15.10. Before
  the update everything was stable.

  The problem occured mostly while using Thunderbird but also once while
  using Firefox.

  The Xserver crashes and I'm logged out. It takes about 10 seconds
  until gdm fires up again and I'm able to login again.

  The last part of /var/log/Xorg.0.log says:
  [ 19778.602] (II) intel(0): resizing framebuffer to 3000x1920
  [ 19778.617] (II) intel(0): switch to mode 1920x1080@60.0 on HDMI2 using pipe 
1, position (0, 0), rotation left, reflection none
  [ 19778.623] (II) intel(0): switch to mode 1920x1080@60.0 on HDMI1 using pipe 
0, position (1080, 406), rotation normal, reflection none
  [ 19798.610] (II) intel(0): switch to mode 1920x1080@60.0 on HDMI1 using pipe 
0, position (1080, 502), rotation normal, reflection none
  [ 20012.432] (EE) 
  [ 20012.432] (EE) Backtrace:
  [ 20012.433] (EE) 0: /usr/bin/X (xorg_backtrace+0x4e) [0x55cab7c8f62e]
  [ 20012.433] (EE) 1: /usr/bin/X (0x55cab7adb000+0x1b8999) [0x55cab7c93999]
  [ 20012.433] (EE) 2: /lib/x86_64-linux-gnu/libc.so.6 (0x7fe7c651d000+0x352f0) 
[0x7fe7c65522f0]
  [ 20012.433] (EE) 3: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7fe7c28f4000+0x24f18) [0x7fe7c2918f18]
  [ 20012.433] (EE) 4: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7fe7c28f4000+0x26157) [0x7fe7c291a157]
  [ 20012.433] (EE) 5: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7fe7c28f4000+0x2b4b1) [0x7fe7c291f4b1]
  [ 20012.433] (EE) 6: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7fe7c28f4000+0x804e4) [0x7fe7c29744e4]
  [ 20012.433] (EE) 7: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7fe7c28f4000+0x80e2c) [0x7fe7c2974e2c]
  [ 20012.433] (EE) 8: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7fe7c28f4000+0x82e1a) [0x7fe7c2976e1a]
  [ 20012.433] (EE) 9: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7fe7c28f4000+0x4197c) [0x7fe7c293597c]
  [ 20012.433] (EE) 10: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7fe7c28f4000+0x59906) [0x7fe7c294d906]
  [ 20012.433] (EE) 11: /usr/bin/X (_CallCallbacks+0x34) [0x55cab7b38654]
  [ 20012.433] (EE) 12: /usr/bin/X (WriteToClient+0x244) [0x55cab7c93274]
  [ 20012.433] (EE) 13: /usr/bin/X (WriteEventsToClient+0x1e2) [0x55cab7b3e502]
  [ 20012.433] (EE) 14: /usr/bin/X (0x55cab7adb000+0xf495a) [0x55cab7bcf95a]
  [ 20012.433] (EE) 15: /usr/bin/X (0x55cab7adb000+0xf5ef5) [0x55cab7bd0ef5]
  [ 20012.433] (EE) 16: /usr/bin/X (0x55cab7adb000+0x5818f) [0x55cab7b3318f]
  [ 20012.433] (EE) 17: /usr/bin/X (0x55cab7adb000+0x5c34b) [0x55cab7b3734b]
  [ 20012.433] (EE) 18: /lib/x86_64-linux-gnu/libc.so.6 
(__libc_start_main+0xf0) [0x7fe7c653da40]
  [ 20012.433] (EE) 19: /usr/bin/X (_start+0x29) [0x55cab7b216c9]
  [ 20012.433] (EE) 
  [ 20012.433] (EE) Segmentation fault at address 0x0
  [ 20012.433] (EE) 
  Fatal server error:
  [ 20012.433] (EE) Caught signal 11 (Segmentation fault). Server aborting
  [ 20012.433] (EE) 
  [ 20012.433] (EE) 
  Please consult the The X.Org Foundation support 
   at http://wiki.x.org
   for help. 
  [ 20012.433] (EE) Please also check the log file at "/var/log/Xorg.0.log" for 
additional information.
  [ 20012.433] (EE) 
  [ 20012.433] (II) AIGLX: Suspending AIGLX clients for VT switch
  [ 20012.456] (EE) Server terminated with error (1). Closing log file.

  These parts of dmesg might be interesting:
  [1.661760] input: Logitech USB Keyboard as 
/devices/pci:00/:00:1a.0/usb3/3-1/3-1.6/3-1.6:1.1/0003:046D:C31C.0003/input/input8
  [1.714657] hid-generic 0003:046D:C31C.0003: input,hidraw2: USB HID v1.10 
Device [Logitech USB Keyboard] on usb-:00:1a.0-1.6/input1
  [2.530993] [drm:intel_set_pch_fifo_underrun_reporting [i915]] *ERROR* 
uncleared pch fifo underrun on pch transcoder A
  [2.531006] [drm:intel_pch_fifo_underrun_irq_handler [i915]] *ERROR* PCH 
transcoder A FIFO underrun
  [2.531018] [drm:intel_set_pch_fifo_underrun_reporting [i915]] *ERROR* 
uncleared pch fifo underrun on pch transcoder B
  [2.531026] [drm:intel_pch_fifo_underrun_irq_handler [i915]] *ERROR* PCH 
transcoder B FIFO underrun
  [2.561370] EXT4-fs (sda6): mounted filesystem with ordered data mode. 
Opts: (null)
  [2.586624] clocksource: Switched to clocksource tsc
  [2.652818] systemd[1]: Failed to insert module 'kdbus': Function not 
implemented
  [2.658814] sy

[Touch-packages] [Bug 1511566] Re: Unity won't start

2015-10-29 Thread Marius Gripsgard 
** Package changed: xorg (Ubuntu) => unity (Ubuntu)

** Summary changed:

- Unity won't start
+ Unity won't start on login

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1511566

Title:
  Unity won't start on login

Status in unity package in Ubuntu:
  New

Bug description:
  Running Ubuntu Xenial Xerus.

  Unity won't start. 
  What happens is, when I try to login it just throws me back to the login 
screen after a few seconds.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: xorg 1:7.7+7ubuntu4
  ProcVersionSignature: Ubuntu 4.2.0-16.19-generic 4.2.3
  Uname: Linux 4.2.0-16-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  .proc.driver.nvidia.registry: Binary: ""
  .proc.driver.nvidia.version:
   NVRM version: NVIDIA UNIX x86_64 Kernel Module  358.09  Wed Oct  7 19:59:00 
PDT 2015
   GCC version:  gcc version 5.2.1 20151010 (Ubuntu 5.2.1-22ubuntu2)
  ApportVersion: 2.19.2-0ubuntu1
  Architecture: amd64
  BootLog:
   
  Date: Fri Oct 30 00:43:20 2015
  DistUpgraded: Fresh install
  DistroCodename: xenial
  DistroVariant: ubuntu
  DkmsStatus:
   nvidia, 358.09, 4.2.0-16-generic, x86_64: installed
   vboxhost, 5.0.2, 4.2.0-16-generic, x86_64: installed
  GraphicsCard:
   NVIDIA Corporation GM204M [GeForce GTX 980M] [10de:1617] (rev a1) (prog-if 
00 [VGA controller])
 Subsystem: CLEVO/KAPOK Computer Device [1558:7501]
  InstallationDate: Installed on 2015-09-03 (56 days ago)
  InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: Notebook P750ZM-G
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-16-generic 
root=UUID=68cf3293-90df-47f7-a2fa-bfd2bcb6bafd ro quiet splash vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  Title: Xorg crash
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 03/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.03.02
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: P750ZM-G
  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.02:bd03/31/2015:svnNotebook:pnP750ZM-G:pvrNotApplicable:rvnNotebook:rnP750ZM-G:rvrNotApplicable:cvnNotebook:ct9:cvrN/A:
  dmi.product.name: P750ZM-G
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook
  version.compiz: compiz 1:0.9.12.2+15.10.20151015-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.65-3
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.0.2-1ubuntu4
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.0.2-1ubuntu4
  version.nvidia-graphics-drivers: nvidia-graphics-drivers-* N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.17.2-1ubuntu10
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.2-1ubuntu1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:7.5.0+git20150819-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20151019-1~exp1ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.11-1ubuntu3
  xserver.bootTime: Fri Oct 30 00:38:32 2015
  xserver.configfile: default
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   
  xserver.version: 2:1.17.2-1ubuntu10

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1511568] [NEW] nvidia mcp51 internal sound card not detected

2015-10-29 Thread orangepeel
Public bug reported:

ubuntu 14 not detecting sound card - i know the hardware works from
previous os.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: alsa-base 1.0.25+dfsg-0ubuntu4
ProcVersionSignature: Ubuntu 3.19.0-25.26~14.04.1-generic 3.19.8-ckt2
Uname: Linux 3.19.0-25-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.11
Architecture: amd64
AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
CurrentDesktop: Unity
Date: Thu Oct 29 19:55:29 2015
InstallationDate: Installed on 2015-10-29 (0 days ago)
InstallationMedia: Ubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64 (20150805)
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=en_US
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: alsa-driver
Symptom: audio
Title: PCI/internal sound card not detected
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 12/04/2008
dmi.bios.vendor: Dell Inc.
dmi.bios.version: 2.1.9
dmi.board.name: 0YP696
dmi.board.vendor: Dell Inc.
dmi.board.version: A02
dmi.chassis.type: 3
dmi.chassis.vendor: Dell Inc.
dmi.modalias: 
dmi:bvnDellInc.:bvr2.1.9:bd12/04/2008:svnDellInc.:pnOptiPlex740Enhanced:pvr:rvnDellInc.:rn0YP696:rvrA02:cvnDellInc.:ct3:cvr:
dmi.product.name: OptiPlex 740 Enhanced
dmi.sys.vendor: Dell Inc.

** Affects: alsa-driver (Ubuntu)
 Importance: Undecided
 Status: New


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

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to alsa-driver in Ubuntu.
https://bugs.launchpad.net/bugs/1511568

Title:
  nvidia mcp51 internal sound card not detected

Status in alsa-driver package in Ubuntu:
  New

Bug description:
  ubuntu 14 not detecting sound card - i know the hardware works from
  previous os.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: alsa-base 1.0.25+dfsg-0ubuntu4
  ProcVersionSignature: Ubuntu 3.19.0-25.26~14.04.1-generic 3.19.8-ckt2
  Uname: Linux 3.19.0-25-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.11
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  CurrentDesktop: Unity
  Date: Thu Oct 29 19:55:29 2015
  InstallationDate: Installed on 2015-10-29 (0 days ago)
  InstallationMedia: Ubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64 (20150805)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_US
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: alsa-driver
  Symptom: audio
  Title: PCI/internal sound card not detected
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 12/04/2008
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 2.1.9
  dmi.board.name: 0YP696
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A02
  dmi.chassis.type: 3
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvr2.1.9:bd12/04/2008:svnDellInc.:pnOptiPlex740Enhanced:pvr:rvnDellInc.:rn0YP696:rvrA02:cvnDellInc.:ct3:cvr:
  dmi.product.name: OptiPlex 740 Enhanced
  dmi.sys.vendor: Dell Inc.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1511566] [NEW] Unity won't start

2015-10-29 Thread Marius Gripsgard 
Public bug reported:

Running Ubuntu Xenial Xerus.

Unity won't start. 
What happens is, when I try to login it just throws me back to the login screen 
after a few seconds.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: xorg 1:7.7+7ubuntu4
ProcVersionSignature: Ubuntu 4.2.0-16.19-generic 4.2.3
Uname: Linux 4.2.0-16-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
.proc.driver.nvidia.registry: Binary: ""
.proc.driver.nvidia.version:
 NVRM version: NVIDIA UNIX x86_64 Kernel Module  358.09  Wed Oct  7 19:59:00 
PDT 2015
 GCC version:  gcc version 5.2.1 20151010 (Ubuntu 5.2.1-22ubuntu2)
ApportVersion: 2.19.2-0ubuntu1
Architecture: amd64
BootLog:
 
Date: Fri Oct 30 00:43:20 2015
DistUpgraded: Fresh install
DistroCodename: xenial
DistroVariant: ubuntu
DkmsStatus:
 nvidia, 358.09, 4.2.0-16-generic, x86_64: installed
 vboxhost, 5.0.2, 4.2.0-16-generic, x86_64: installed
GraphicsCard:
 NVIDIA Corporation GM204M [GeForce GTX 980M] [10de:1617] (rev a1) (prog-if 00 
[VGA controller])
   Subsystem: CLEVO/KAPOK Computer Device [1558:7501]
InstallationDate: Installed on 2015-09-03 (56 days ago)
InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
MachineType: Notebook P750ZM-G
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-16-generic 
root=UUID=68cf3293-90df-47f7-a2fa-bfd2bcb6bafd ro quiet splash vt.handoff=7
SourcePackage: xorg
Symptom: display
Title: Xorg crash
UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 03/31/2015
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 1.03.02
dmi.board.asset.tag: Tag 12345
dmi.board.name: P750ZM-G
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.02:bd03/31/2015:svnNotebook:pnP750ZM-G:pvrNotApplicable:rvnNotebook:rnP750ZM-G:rvrNotApplicable:cvnNotebook:ct9:cvrN/A:
dmi.product.name: P750ZM-G
dmi.product.version: Not Applicable
dmi.sys.vendor: Notebook
version.compiz: compiz 1:0.9.12.2+15.10.20151015-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.65-3
version.libgl1-mesa-dri: libgl1-mesa-dri 11.0.2-1ubuntu4
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 11.0.2-1ubuntu4
version.nvidia-graphics-drivers: nvidia-graphics-drivers-* N/A
version.xserver-xorg-core: xserver-xorg-core 2:1.17.2-1ubuntu10
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.2-1ubuntu1
version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:7.5.0+git20150819-0ubuntu1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20151019-1~exp1ubuntu1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.11-1ubuntu3
xserver.bootTime: Fri Oct 30 00:38:32 2015
xserver.configfile: default
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs:
 
xserver.version: 2:1.17.2-1ubuntu10

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


** Tags: amd64 apport-bug crash possible-manual-nvidia-install ubuntu xenial

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1511566

Title:
  Unity won't start

Status in xorg package in Ubuntu:
  New

Bug description:
  Running Ubuntu Xenial Xerus.

  Unity won't start. 
  What happens is, when I try to login it just throws me back to the login 
screen after a few seconds.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: xorg 1:7.7+7ubuntu4
  ProcVersionSignature: Ubuntu 4.2.0-16.19-generic 4.2.3
  Uname: Linux 4.2.0-16-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  .proc.driver.nvidia.registry: Binary: ""
  .proc.driver.nvidia.version:
   NVRM version: NVIDIA UNIX x86_64 Kernel Module  358.09  Wed Oct  7 19:59:00 
PDT 2015
   GCC version:  gcc version 5.2.1 20151010 (Ubuntu 5.2.1-22ubuntu2)
  ApportVersion: 2.19.2-0ubuntu1
  Architecture: amd64
  BootLog:
   
  Date: Fri Oct 30 00:43:20 2015
  DistUpgraded: Fresh install
  DistroCodename: xenial
  DistroVariant: ubuntu
  DkmsStatus:
   nvidia, 358.09, 4.2.0-16-generic, x86_64: installed
   vboxhost, 5.0.2, 4.2.0-16-generic, x86_64: installed
  GraphicsCard:
   NVIDIA Corporation GM204M [GeForce GTX 980M] [10de:1617] (rev a1) (prog-if 
00 [VGA controller])
 Subsystem: CLEVO/KAPOK Computer Device [1558:7501]
  InstallationDate: Installed on 2015-09-03 (56 days ago)
  InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: Notebook P750ZM-G
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-16-generic 
root=UUID=68cf3293-90df-47f7-a2fa-bfd2bcb6bafd ro quiet splash vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  Title: Xorg crash
  UdevLog: Error: [Errno 2] No such file or directory:

[Touch-packages] [Bug 1511567] [NEW] Unity won't start

2015-10-29 Thread Marius Gripsgard 
Public bug reported:

Running Ubuntu Xenial Xerus.

Unity won't start. 
What happens is, when I try to login it just throws me back to the login screen 
after a few seconds.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: xorg 1:7.7+7ubuntu4
ProcVersionSignature: Ubuntu 4.2.0-16.19-generic 4.2.3
Uname: Linux 4.2.0-16-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
.proc.driver.nvidia.registry: Binary: ""
.proc.driver.nvidia.version:
 NVRM version: NVIDIA UNIX x86_64 Kernel Module  358.09  Wed Oct  7 19:59:00 
PDT 2015
 GCC version:  gcc version 5.2.1 20151010 (Ubuntu 5.2.1-22ubuntu2)
ApportVersion: 2.19.2-0ubuntu1
Architecture: amd64
BootLog:
 
Date: Fri Oct 30 00:43:20 2015
DistUpgraded: Fresh install
DistroCodename: xenial
DistroVariant: ubuntu
DkmsStatus:
 nvidia, 358.09, 4.2.0-16-generic, x86_64: installed
 vboxhost, 5.0.2, 4.2.0-16-generic, x86_64: installed
GraphicsCard:
 NVIDIA Corporation GM204M [GeForce GTX 980M] [10de:1617] (rev a1) (prog-if 00 
[VGA controller])
   Subsystem: CLEVO/KAPOK Computer Device [1558:7501]
InstallationDate: Installed on 2015-09-03 (56 days ago)
InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
MachineType: Notebook P750ZM-G
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-16-generic 
root=UUID=68cf3293-90df-47f7-a2fa-bfd2bcb6bafd ro quiet splash vt.handoff=7
SourcePackage: xorg
Symptom: display
Title: Xorg crash
UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 03/31/2015
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 1.03.02
dmi.board.asset.tag: Tag 12345
dmi.board.name: P750ZM-G
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.02:bd03/31/2015:svnNotebook:pnP750ZM-G:pvrNotApplicable:rvnNotebook:rnP750ZM-G:rvrNotApplicable:cvnNotebook:ct9:cvrN/A:
dmi.product.name: P750ZM-G
dmi.product.version: Not Applicable
dmi.sys.vendor: Notebook
version.compiz: compiz 1:0.9.12.2+15.10.20151015-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.65-3
version.libgl1-mesa-dri: libgl1-mesa-dri 11.0.2-1ubuntu4
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 11.0.2-1ubuntu4
version.nvidia-graphics-drivers: nvidia-graphics-drivers-* N/A
version.xserver-xorg-core: xserver-xorg-core 2:1.17.2-1ubuntu10
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.2-1ubuntu1
version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:7.5.0+git20150819-0ubuntu1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20151019-1~exp1ubuntu1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.11-1ubuntu3
xserver.bootTime: Fri Oct 30 00:38:32 2015
xserver.configfile: default
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs:
 
xserver.version: 2:1.17.2-1ubuntu10

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


** Tags: amd64 apport-bug crash possible-manual-nvidia-install ubuntu xenial

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1511567

Title:
  Unity won't start

Status in xorg package in Ubuntu:
  New

Bug description:
  Running Ubuntu Xenial Xerus.

  Unity won't start. 
  What happens is, when I try to login it just throws me back to the login 
screen after a few seconds.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: xorg 1:7.7+7ubuntu4
  ProcVersionSignature: Ubuntu 4.2.0-16.19-generic 4.2.3
  Uname: Linux 4.2.0-16-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  .proc.driver.nvidia.registry: Binary: ""
  .proc.driver.nvidia.version:
   NVRM version: NVIDIA UNIX x86_64 Kernel Module  358.09  Wed Oct  7 19:59:00 
PDT 2015
   GCC version:  gcc version 5.2.1 20151010 (Ubuntu 5.2.1-22ubuntu2)
  ApportVersion: 2.19.2-0ubuntu1
  Architecture: amd64
  BootLog:
   
  Date: Fri Oct 30 00:43:20 2015
  DistUpgraded: Fresh install
  DistroCodename: xenial
  DistroVariant: ubuntu
  DkmsStatus:
   nvidia, 358.09, 4.2.0-16-generic, x86_64: installed
   vboxhost, 5.0.2, 4.2.0-16-generic, x86_64: installed
  GraphicsCard:
   NVIDIA Corporation GM204M [GeForce GTX 980M] [10de:1617] (rev a1) (prog-if 
00 [VGA controller])
 Subsystem: CLEVO/KAPOK Computer Device [1558:7501]
  InstallationDate: Installed on 2015-09-03 (56 days ago)
  InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: Notebook P750ZM-G
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-16-generic 
root=UUID=68cf3293-90df-47f7-a2fa-bfd2bcb6bafd ro quiet splash vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  Title: Xorg crash
  UdevLog: Error: [Errno 2] No such file or directory:

[Touch-packages] [Bug 1511567] Re: Unity won't start

2015-10-29 Thread Marius Gripsgard 
Btw, it did boot into fxce.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1511567

Title:
  Unity won't start

Status in xorg package in Ubuntu:
  New

Bug description:
  Running Ubuntu Xenial Xerus.

  Unity won't start. 
  What happens is, when I try to login it just throws me back to the login 
screen after a few seconds.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: xorg 1:7.7+7ubuntu4
  ProcVersionSignature: Ubuntu 4.2.0-16.19-generic 4.2.3
  Uname: Linux 4.2.0-16-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  .proc.driver.nvidia.registry: Binary: ""
  .proc.driver.nvidia.version:
   NVRM version: NVIDIA UNIX x86_64 Kernel Module  358.09  Wed Oct  7 19:59:00 
PDT 2015
   GCC version:  gcc version 5.2.1 20151010 (Ubuntu 5.2.1-22ubuntu2)
  ApportVersion: 2.19.2-0ubuntu1
  Architecture: amd64
  BootLog:
   
  Date: Fri Oct 30 00:43:20 2015
  DistUpgraded: Fresh install
  DistroCodename: xenial
  DistroVariant: ubuntu
  DkmsStatus:
   nvidia, 358.09, 4.2.0-16-generic, x86_64: installed
   vboxhost, 5.0.2, 4.2.0-16-generic, x86_64: installed
  GraphicsCard:
   NVIDIA Corporation GM204M [GeForce GTX 980M] [10de:1617] (rev a1) (prog-if 
00 [VGA controller])
 Subsystem: CLEVO/KAPOK Computer Device [1558:7501]
  InstallationDate: Installed on 2015-09-03 (56 days ago)
  InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: Notebook P750ZM-G
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-16-generic 
root=UUID=68cf3293-90df-47f7-a2fa-bfd2bcb6bafd ro quiet splash vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  Title: Xorg crash
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 03/31/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.03.02
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: P750ZM-G
  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.02:bd03/31/2015:svnNotebook:pnP750ZM-G:pvrNotApplicable:rvnNotebook:rnP750ZM-G:rvrNotApplicable:cvnNotebook:ct9:cvrN/A:
  dmi.product.name: P750ZM-G
  dmi.product.version: Not Applicable
  dmi.sys.vendor: Notebook
  version.compiz: compiz 1:0.9.12.2+15.10.20151015-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.65-3
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.0.2-1ubuntu4
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.0.2-1ubuntu4
  version.nvidia-graphics-drivers: nvidia-graphics-drivers-* N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.17.2-1ubuntu10
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.2-1ubuntu1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:7.5.0+git20150819-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20151019-1~exp1ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.11-1ubuntu3
  xserver.bootTime: Fri Oct 30 00:38:32 2015
  xserver.configfile: default
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   
  xserver.version: 2:1.17.2-1ubuntu10

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1511562] [NEW] /usr/bin/history-daemon:11:QList:QtVersit::VersitUtils::changeCodec:QtVersit::VersitUtils::newlineList:QtVersit::LineReader::LineReader:QtVersit::QVersitReaderPriv

2015-10-29 Thread errors.ubuntu.com bug bridge
Public bug reported:

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

** Affects: history-service (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: vivid

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to history-service in Ubuntu.
https://bugs.launchpad.net/bugs/1511562

Title:
  /usr/bin/history-
  
daemon:11:QList:QtVersit::VersitUtils::changeCodec:QtVersit::VersitUtils::newlineList:QtVersit::LineReader::LineReader:QtVersit::QVersitReaderPrivate::read

Status in history-service package in Ubuntu:
  New

Bug description:
  The Ubuntu Error Tracker has been receiving reports about a problem
  regarding history-service.  This problem was most recently seen with
  version 0.1+15.04.20151020.1-0ubuntu1, the problem page at
  https://errors.ubuntu.com/problem/e1410acaf588015e46d6996df7c335c85c17227e
  contains more details.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1511564] [NEW] /usr/bin/history-daemon:11:~QByteArray:QByteArrayMatcher::~QByteArrayMatcher:node_destruct:QList:~QList

2015-10-29 Thread errors.ubuntu.com bug bridge
Public bug reported:

The Ubuntu Error Tracker has been receiving reports about a problem
regarding history-service.  This problem was most recently seen with
version 0.1+15.04.20151020.1-0ubuntu1, the problem page at
https://errors.ubuntu.com/problem/93eb04a6c7e89856982679f5383a4f38d3171862
contains more details.

** Affects: history-service (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: vivid

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to history-service in Ubuntu.
https://bugs.launchpad.net/bugs/1511564

Title:
  /usr/bin/history-
  
daemon:11:~QByteArray:QByteArrayMatcher::~QByteArrayMatcher:node_destruct:QList:~QList

Status in history-service package in Ubuntu:
  New

Bug description:
  The Ubuntu Error Tracker has been receiving reports about a problem
  regarding history-service.  This problem was most recently seen with
  version 0.1+15.04.20151020.1-0ubuntu1, the problem page at
  https://errors.ubuntu.com/problem/93eb04a6c7e89856982679f5383a4f38d3171862
  contains more details.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1505858] Re: Segmentation fault in JPXStream::readTilePartData(JPXStream.cc:2142)

2015-10-29 Thread Bug Watch Updater
Launchpad has imported 7 comments from the remote bug at
https://bugs.freedesktop.org/show_bug.cgi?id=92450.

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


On 2015-10-13T20:56:39+00:00 Saintlinu wrote:

Created attachment 118861
Use of this file could lead to crash the products using poppler library

Hello,

I've found some vulnerabilities in pdf viewers using famous library
named poppler such as evince, xpdf, okular and so on.

This is my short report and I used latest version of poppler (poppler-0.37.0).
Plus I've attached some findings.

Thanks
-Alex

in details:

alex@vm64:$ LD_LIBRARY_PATH=/usr/local/lib gdb --args ./evince 
~/hack/project/fuzzer/testcases/pdf/JPXDecode/fuzz_id_27683_OliviaOil_24.pdf.tc_bf1_pos_3460_size_1
GNU gdb (Ubuntu 7.10-1ubuntu2) 7.10
Copyright (C) 2015 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later 
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
.
Find the GDB manual and other documentation resources online at:
.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from ./evince...done.
gdb$ r
Starting program: 
/home/alex/hack/project/evince/evince-3.18.0/shell/.libs/evince 
/home/alex/hack/project/fuzzer/testcases/pdf/JPXDecode/fuzz_id_27683_OliviaOil_24.pdf.tc_bf1_pos_3460_size_1
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
[New Thread 0x7fffece5e700 (LWP 17556)]
[New Thread 0x7fffec65d700 (LWP 17557)]
[New Thread 0x7fffebe5c700 (LWP 17558)]
[New Thread 0x7fffeb038700 (LWP 17563)]
[New Thread 0x7fffe9a4e700 (LWP 17564)]
[New Thread 0x7fffda2ab700 (LWP 17565)]

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0x7fffe9a4e700 (LWP 17564)]
---[regs]
  RAX: 0x  RBX: 0x  RBP: 0x7FFFD005DA40  
RSP: 0x7FFFE9A4CF50  o d I t s z A p c 
  RDI: 0x7FFFD0042BA0  RSI: 0x  RDX: 0x0018  
RCX: 0x0001  RIP: 0x7FFFE8A04C49
  R8 : 0x  R9 : 0x0006  R10: 0x00A8  
R11: 0x7FFFD005DAB0  R12: 0x7FFFD0042850
  R13: 0x7FFFD005A0E0  R14: 0x7FFFD005DAB0  R15: 0x1923
  CS: 0033  DS:   ES:   FS:   GS:   SS: 002B
[0x002B:0x7FFFE9A4CF50]---[stack]
0x7FFFE9A4CFA0 : 01 00 00 00 FF 7F 00 00 - 01 00 00 00 FF 7F 00 00 

0x7FFFE9A4CF90 : 00 00 00 00 03 00 00 00 - 01 00 00 00 FF 7F 00 00 

0x7FFFE9A4CF80 : 50 A1 05 D0 FF 7F 00 00 - 90 BA 06 D0 FF 7F 00 00 
P...
0x7FFFE9A4CF70 : B4 CF A4 E9 FF 7F 00 00 - 03 00 00 00 00 00 00 00 

0x7FFFE9A4CF60 : 50 28 04 D0 FF 7F 00 00 - 80 C2 05 D0 FF 7F 00 00 
P(..
0x7FFFE9A4CF50 : 40 2D 04 D0 FF 7F 00 00 - 00 00 00 00 00 00 00 00 
@-..
---[code]
=> 0x7fffe8a04c49 :  movrbp,QWORD PTR [rax+0x10]
   0x7fffe8a04c4d :  lear11,[rbp+rbx*1+0x0]
   0x7fffe8a04c52 :  movr9d,DWORD PTR [r11+0x14]
   0x7fffe8a04c56 :  test   r9d,r9d
   0x7fffe8a04c59 :  je 0x7fffe8a04ca3 
   0x7fffe8a04c5b :  movr8d,DWORD PTR [r11+0x10]
   0x7fffe8a04c5f :  xoreax,eax
   0x7fffe8a04c61 :  xoredi,edi
-
0x7fffe8a04c49 in JPXStream::readTilePartData 
(this=this@entry=0x7fffd0042d40, tileIdx=, tilePartLen=0x1923, 
tilePartToEOC=tilePartToEOC@entry=0x0) at JPXStream.cc:2142
2142if (!bits) {

gdb$ bt
#0  0x7fffe8a04c49 in JPXStream::readTilePartData 
(this=this@entry=0x7fffd0042d40, tileIdx=, tilePartLen=0x1923, 
tilePartToEOC=tilePartToEOC@entry=0x0) at JPXStream.cc:2142
#1  0x7fffe8a05f89 in JPXStream::readTilePart 
(this=this@entry=0x7fffd0042d40) at JPXStream.cc:2100
#2  0x7fffe8a06f17 in JPXStream::readCodestream 
(this=this@entry=0x7fffd0042d40, len=) at JPXStream.cc:1488
#3  0x7fffe8a08df1 in JPXStream::readBoxes (thi

[Touch-packages] [Bug 1486138] Re: Skittish behaviour enabling flight mode when a hotspot is enabled

2015-10-29 Thread Launchpad Bug Tracker
This bug was fixed in the package indicator-network -
0.5.5+16.04.20151027-0ubuntu1

---
indicator-network (0.5.5+16.04.20151027-0ubuntu1) xenial; urgency=medium

  [ CI Train Bot ]
  * Resync trunk.

  [ Pete Woods ]
  * Rework hotspot management to make it more robust (LP: #1486138)

 -- Pete Woods   Tue, 27 Oct 2015 12:32:55
+

** Changed in: indicator-network (Ubuntu)
   Status: New => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to indicator-network in
Ubuntu.
https://bugs.launchpad.net/bugs/1486138

Title:
  Skittish behaviour enabling flight mode when a hotspot is enabled

Status in Canonical System Image:
  Confirmed
Status in indicator-network package in Ubuntu:
  Fix Released

Bug description:
  STEPS:
  1. Open system settings
  2. Tap on hotspot
  3. Enable a hotspot
  4. In network-indicator tap on flight mode

  EXPECTED:
  A nice smooth transition that disables all networking

  ACTUAL:
  The hotspot is closed, the normal wifi is enabled once a connection is made 
the system then shuts down the wireless connections.

  BLOCKING ISSUE:
  As discussed with pete-woods on irc, we will pass this release as everything 
works but plan on blocking the next release if the indicator doesn't run 
smoothly.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1496862] Re: Short noise bursts randomly heard in the headphones

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

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

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to pulseaudio in Ubuntu.
https://bugs.launchpad.net/bugs/1496862

Title:
  Short noise bursts randomly heard in the headphones

Status in pulseaudio package in Ubuntu:
  Confirmed

Bug description:
  Sometimes, while on headphones, short and non pleasant bursts of
  noise, of around 1-2 s, can be heard on the headphones. These bursts
  appear randomly, usually some of them at the login screen and Unity
  loading, and when activating something in Unity (often launching a new
  program). Sometimes instead of the burst a shorter but still non
  proper click is heard.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: pulseaudio 1:6.0-0ubuntu6
  Uname: Linux 4.1.4-040104-generic x86_64
  ApportVersion: 2.17.2-0ubuntu1.4
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  brtdra 1370 F pulseaudio
   /dev/snd/controlC1:  brtdra 1370 F pulseaudio
  CurrentDesktop: Unity
  Date: Thu Sep 17 21:41:58 2015
  ExecutablePath: /usr/bin/pulseaudio
  InstallationDate: Installed on 2015-08-22 (25 days ago)
  InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  ProcEnviron:
   LANGUAGE=en_HK:en
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_HK.UTF-8
   SHELL=/bin/bash
  SourcePackage: pulseaudio
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 06/19/2015
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N10ET36W (1.15 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20CMCTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0K11826 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.modalias: 
dmi:bvnLENOVO:bvrN10ET36W(1.15):bd06/19/2015:svnLENOVO:pn20CMCTO1WW:pvrThinkPadX250:rvnLENOVO:rn20CMCTO1WW:rvrSDK0K11826WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.name: 20CMCTO1WW
  dmi.product.version: ThinkPad X250
  dmi.sys.vendor: LENOVO

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1511357] Re: CPU hogging when external screen connected

2015-10-29 Thread Alberto Aguirre
*** This bug is a duplicate of bug 1499039 ***
https://bugs.launchpad.net/bugs/1499039

I meant lp:1499039 above.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity-system-compositor in
Ubuntu.
https://bugs.launchpad.net/bugs/1511357

Title:
  CPU hogging when external screen connected

Status in Mir:
  New
Status in unity-system-compositor package in Ubuntu:
  Confirmed

Bug description:
  CPU usage of u-s-c goes to around 40% when an external screen is
  connected, as long as the display is on.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: unity-system-compositor 0.2.0+15.04.20151008.1-0ubuntu1 [origin: 
LP-PPA-ci-train-ppa-service-stable-phone-overlay]
  Uname: Linux 3.4.0-5-flo armv7l
  ApportVersion: 2.17.2-0ubuntu1.3touch1
  Architecture: armhf
  Date: Thu Oct 29 12:40:04 2015
  GraphicsCard:
   
  InstallationDate: Installed on 2015-10-29 (0 days ago)
  InstallationMedia: Ubuntu 15.04 - armhf (20151029-020304)
  SourcePackage: unity-system-compositor
  UpgradeStatus: No upgrade log present (probably fresh install)
  version.libdrm: libdrm2 2.4.60-2
  version.lightdm: lightdm 1.14.2-0ubuntu1.1
  version.mesa: libegl1-mesa-dev N/A

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1511357] Re: CPU hogging when external screen connected

2015-10-29 Thread Alberto Aguirre
*** This bug is a duplicate of bug 1499039 ***
https://bugs.launchpad.net/bugs/1499039

Yep, duplicate of lp:499039, fixing lp:499039, USC cpu consumption (as
reported by top) goes down to normal when an external display is
connected.

** This bug has been marked a duplicate of bug 1499039
   compositing never stops when external monitor is connected

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity-system-compositor in
Ubuntu.
https://bugs.launchpad.net/bugs/1511357

Title:
  CPU hogging when external screen connected

Status in Mir:
  New
Status in unity-system-compositor package in Ubuntu:
  Confirmed

Bug description:
  CPU usage of u-s-c goes to around 40% when an external screen is
  connected, as long as the display is on.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: unity-system-compositor 0.2.0+15.04.20151008.1-0ubuntu1 [origin: 
LP-PPA-ci-train-ppa-service-stable-phone-overlay]
  Uname: Linux 3.4.0-5-flo armv7l
  ApportVersion: 2.17.2-0ubuntu1.3touch1
  Architecture: armhf
  Date: Thu Oct 29 12:40:04 2015
  GraphicsCard:
   
  InstallationDate: Installed on 2015-10-29 (0 days ago)
  InstallationMedia: Ubuntu 15.04 - armhf (20151029-020304)
  SourcePackage: unity-system-compositor
  UpgradeStatus: No upgrade log present (probably fresh install)
  version.libdrm: libdrm2 2.4.60-2
  version.lightdm: lightdm 1.14.2-0ubuntu1.1
  version.mesa: libegl1-mesa-dev N/A

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1499039] Re: compositing never stops when external monitor is connected

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

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

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to mir in Ubuntu.
https://bugs.launchpad.net/bugs/1499039

Title:
  compositing never stops when external monitor is connected

Status in Mir:
  In Progress
Status in mir package in Ubuntu:
  Confirmed

Bug description:
  Start the following with no external display:

  sudo mir_demo_server --arw-file --display-config=sidebyside --window-manager 
system-compositor --hwc-report log
  mir_demo_server --host-socket /tmp/mir_socket -f /tmp/nested_mir 
--display-config=sidebyside

  After hotplugging an external display, the compositor loop never stops
  compositing as evidenced by the root server hwc logs.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1511538] Re: 1/2 screen on external monitor

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

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

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to mir in Ubuntu.
https://bugs.launchpad.net/bugs/1511538

Title:
  1/2 screen on external monitor

Status in canonical-pocket-desktop:
  New
Status in mir package in Ubuntu:
  Confirmed
Status in qtmir package in Ubuntu:
  Confirmed

Bug description:
  using N7 latest PD image

  connect bt mouse and keyboard
  connected to monitor
  opened several apps (clock, msg, phone, browser, twitter, u-s-s, terminal, 
camera, gallery, calculator, pathwind) - did quite a bit of window moving, max, 
min, close, relaunch

  after a while, disconnected n7 from monitor, then reconnected
  only 1/2 the screen on the monitor was used
  disconnected, reconnected, still only 1/2 the screen used, possible low mem ?

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-pocket-desktop/+bug/1511538/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1511538] Re: 1/2 screen on external monitor

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

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

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to mir in Ubuntu.
https://bugs.launchpad.net/bugs/1511538

Title:
  1/2 screen on external monitor

Status in canonical-pocket-desktop:
  New
Status in mir package in Ubuntu:
  Confirmed
Status in qtmir package in Ubuntu:
  Confirmed

Bug description:
  using N7 latest PD image

  connect bt mouse and keyboard
  connected to monitor
  opened several apps (clock, msg, phone, browser, twitter, u-s-s, terminal, 
camera, gallery, calculator, pathwind) - did quite a bit of window moving, max, 
min, close, relaunch

  after a while, disconnected n7 from monitor, then reconnected
  only 1/2 the screen on the monitor was used
  disconnected, reconnected, still only 1/2 the screen used, possible low mem ?

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-pocket-desktop/+bug/1511538/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1511538] Re: 1/2 screen on external monitor

2015-10-29 Thread Andrea Bernabei
I can confirm, we had the same issue today when we tested it, I was
about to file this

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to mir in Ubuntu.
https://bugs.launchpad.net/bugs/1511538

Title:
  1/2 screen on external monitor

Status in canonical-pocket-desktop:
  New
Status in mir package in Ubuntu:
  Confirmed
Status in qtmir package in Ubuntu:
  Confirmed

Bug description:
  using N7 latest PD image

  connect bt mouse and keyboard
  connected to monitor
  opened several apps (clock, msg, phone, browser, twitter, u-s-s, terminal, 
camera, gallery, calculator, pathwind) - did quite a bit of window moving, max, 
min, close, relaunch

  after a while, disconnected n7 from monitor, then reconnected
  only 1/2 the screen on the monitor was used
  disconnected, reconnected, still only 1/2 the screen used, possible low mem ?

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-pocket-desktop/+bug/1511538/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1484027] Re: systemd-tmpfiles-clean warns about duplicate /var/log line

2015-10-29 Thread Launchpad Bug Tracker
This bug was fixed in the package rsyslog - 8.12.0-1ubuntu3

---
rsyslog (8.12.0-1ubuntu3) xenial; urgency=medium

  * debian/rsyslog.logcheck.ignore.server: Suppress warning about duplicate
tmpfiles.d line for /var/log, from our debian/00rsyslog.conf. Thanks to
sune-molgaard! (LP: #1484027).

 -- Martin Pitt   Thu, 29 Oct 2015 21:42:12
+0100

** Changed in: rsyslog (Ubuntu)
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to rsyslog in Ubuntu.
https://bugs.launchpad.net/bugs/1484027

Title:
  systemd-tmpfiles-clean warns about duplicate /var/log line

Status in rsyslog package in Ubuntu:
  Fix Released

Bug description:
  Triggered by the two /var/log entries that were reported in
  https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1434295, I get
  daily log messages from systemd-tmpfiles-clean saying:

  Aug 10 15:04:13 seraph systemd[1]: Starting Cleanup of Temporary 
Directories...
  Aug 10 15:04:13 seraph systemd-tmpfiles[5897]: 
[/usr/lib/tmpfiles.d/var.conf:14] Duplicate line for path "/var/log", ignoring.
  Aug 10 15:04:13 seraph systemd[1]: Started Cleanup of Temporary Directories.

  I don't know much about systemd, so I have no ideas for how to fix it,
  sorry.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1401138] Re: Gallery doesn't crop images

2015-10-29 Thread Bernard Banko
Changed to released as it works now.

** Changed in: gallery-app (Ubuntu)
   Status: New => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to gallery-app in Ubuntu.
https://bugs.launchpad.net/bugs/1401138

Title:
  Gallery doesn't crop images

Status in gallery-app package in Ubuntu:
  Fix Released

Bug description:
  Test case.
  - Take a picture with camera-app.
  - Open Gallery app.
  - Tap on the picture.
  - Open menu to crop image.
  - Move controls to crop image (e.g. half width).
  - Tap on "crop" to crop.

  Expected result.
  - Image must be cropped.

  Actual result.
  - Image is not cropped.

  current build number: 173
  device name: krillin
  channel: ubuntu-touch/ubuntu-rtm/14.09-proposed

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1499039] Re: compositing never stops when external monitor is connected

2015-10-29 Thread Launchpad Bug Tracker
** Branch linked: lp:~albaguirre/mir/fix-1499039

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to mir in Ubuntu.
https://bugs.launchpad.net/bugs/1499039

Title:
  compositing never stops when external monitor is connected

Status in Mir:
  In Progress
Status in mir package in Ubuntu:
  New

Bug description:
  Start the following with no external display:

  sudo mir_demo_server --arw-file --display-config=sidebyside --window-manager 
system-compositor --hwc-report log
  mir_demo_server --host-socket /tmp/mir_socket -f /tmp/nested_mir 
--display-config=sidebyside

  After hotplugging an external display, the compositor loop never stops
  compositing as evidenced by the root server hwc logs.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1511544] Re: package initscripts 2.88dsf-59.2ubuntu2 failed to install/upgrade: podproces zainstalowany skrypt post-installation zwrócił kod błędu 1

2015-10-29 Thread Steve Langasek
The full error in the upgrade log is:

Konfigurowanie pakietu initscripts (2.88dsf-59.2ubuntu2) ...
insserv: Script notes-enable-ptrace is broken: missing end of LSB comment.
insserv: exiting now!
update-rc.d: error: insserv rejected the script header
dpkg: błąd przetwarzania pakietu initscripts (--configure):
 podproces zainstalowany skrypt post-installation zwrócił kod błędu 1

You have a broken, locally-installed init script that does not have a
proper LSB init script header as required by insserv.  You will need to
fix this locally, then resume your upgrade.

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

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to sysvinit in Ubuntu.
https://bugs.launchpad.net/bugs/1511544

Title:
  package initscripts 2.88dsf-59.2ubuntu2 failed to install/upgrade:
  podproces zainstalowany skrypt post-installation zwrócił kod błędu 1

Status in sysvinit package in Ubuntu:
  Invalid

Bug description:
  this bug was after update to 15.10

  Description:  Ubuntu Xenial Xerus (development branch)
  Release:  16.04

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: initscripts 2.88dsf-59.2ubuntu2
  ProcVersionSignature: Ubuntu 3.19.0-28.30-generic 3.19.8-ckt5
  Uname: Linux 3.19.0-28-generic x86_64
  ApportVersion: 2.17.2-0ubuntu1.3
  Architecture: amd64
  Date: Thu Oct 29 22:31:26 2015
  DuplicateSignature: package:initscripts:2.88dsf-59.2ubuntu2:podproces 
zainstalowany skrypt post-installation zwrócił kod błędu 1
  ErrorMessage: podproces zainstalowany skrypt post-installation zwrócił kod 
błędu 1
  InstallationDate: Installed on 2015-08-22 (68 days ago)
  InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  RelatedPackageVersions:
   dpkg 1.17.25ubuntu1
   apt  1.0.10.2ubuntu1
  SourcePackage: sysvinit
  Title: package initscripts 2.88dsf-59.2ubuntu2 failed to install/upgrade: 
podproces zainstalowany skrypt post-installation zwrócił kod błędu 1
  UpgradeStatus: Upgraded to xenial on 2015-10-29 (0 days ago)

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1511548] [NEW] share to address book

2015-10-29 Thread Bernard Banko
Public bug reported:

It is hard to add a photo to a contact in address book, especially on big 
galleries where I have to scroll for minutes to find the picture I want.
Therefore, Gallery app should be able to share a photo and set it as contact 
photo (desirably with crop option).

** Affects: gallery-app (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to gallery-app in Ubuntu.
https://bugs.launchpad.net/bugs/1511548

Title:
  share to address book

Status in gallery-app package in Ubuntu:
  New

Bug description:
  It is hard to add a photo to a contact in address book, especially on big 
galleries where I have to scroll for minutes to find the picture I want.
  Therefore, Gallery app should be able to share a photo and set it as contact 
photo (desirably with crop option).

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1505328] Re: Cups SSL is vulernable to POODLE

2015-10-29 Thread Bryan Quigley
Made it into a more proper ppa for 14.04 -
https://launchpad.net/~bryanquigley/+archive/ubuntu/ppa

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to cups in Ubuntu.
https://bugs.launchpad.net/bugs/1505328

Title:
  Cups SSL is vulernable to POODLE

Status in cups package in Ubuntu:
  New

Bug description:
  On 12.04 and 14.04 if you enable cups ssl you are vulnerable to
  poodle, and there does not appear to be any way to mitigate it in Cups
  config.

  Ubuntu 14.04 - 
https://www.ssllabs.com/ssltest/analyze.html?d=190.35.213.162.lcy-02.canonistack.canonical.com&hideResults=on
  Ubuntu 12.04 - 
https://www.ssllabs.com/ssltest/analyze.html?d=191.35.213.162.lcy-02.canonistack.canonical.com&hideResults=on

  Fixed in wily - 
https://www.ssllabs.com/ssltest/analyze.html?d=192.35.213.162.lcy-02.canonistack.canonical.com&hideResults=on
  Upstream fix - https://www.cups.org/str.php?L4476

  Should we disable ssvl3 in the 12.04/14.04 cups by default and
  backport the option to turn it back on?

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1510360] Re: maximize, close, launch goes full screen with no buttons

2015-10-29 Thread Michael Zanetti
@kevin, yes, the minimized apps not being restored when activated from
the spread is known and is fixed in

https://code.launchpad.net/~lukas-
kde/unity8/activateWindows/+merge/275706

This one didn't make it into the silo yet tho.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity8 in Ubuntu.
https://bugs.launchpad.net/bugs/1510360

Title:
  maximize, close, launch goes full screen with no buttons

Status in canonical-pocket-desktop:
  New
Status in unity8 package in Ubuntu:
  In Progress

Bug description:
  so i was testing for bug 1504269
  on nexus4
  last update: 2015-10-26 14:09:21
  version version: 54
  version ubuntu: 20151026
  version device: 20150911
  version custom: 20150929-2-vivid

  i had the mouse & keyboard connected, no external monitor
  i had dash & system settings open
  i maximized dash, then reset to windowed mode with same button
  i maximized u-s-s, then i accidentally hit "quit" button
  i relaunched u-s-s
  expected: to either launch back in window mode as maximized with buttons
  actual: launched in full screen, but as in phone mode - with no buttons

  noticed that subsequent launch of phone app (while in this state)
  first appeared as a full screen phone mode - but after blanking and
  using switcher, phone app went to windowed mode as expected, but u-s-s
  persisted in the state of phone mode full screen no buttons. launched
  a few other apps, all were in windowed mode.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-pocket-desktop/+bug/1510360/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1511542] [NEW] [2.26 Regression] binutils assertion fail ../../bfd/elfnn-aarch64.c:4631

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

seen with 2.25.51.20151028 on aarch64-linux-gnu, GCC used is 20151028
from the gcc-5-branch.  The test case also crashes with ld.gold.

$ (cd tst; sh doit.sh)
ld: BFD (GNU Binutils for Ubuntu) 2.25.51.20151028 assertion fail 
../../bfd/elfnn-aarch64.c:4631
Segmentation fault (core dumped)

test case at
http://people.canonical.com/~doko/tmp/tst-binutils-20151028.tar.xz

Program received signal SIGSEGV, Segmentation fault.
0x007fb7ed9524 in tpoff_base (info=0x550460 ) at 
../../bfd/elfnn-aarch64.c:4633
4633  bfd_vma base = align_power ((bfd_vma) TCB_SIZE,
(gdb) bt
#0  0x007fb7ed9524 in tpoff_base (info=0x550460 ) at 
../../bfd/elfnn-aarch64.c:4633
#1  0x007fb7edcd80 in elf64_aarch64_relocate_section (output_bfd=0x56b440, 
info=0x550460 , input_bfd=0xffb29b0, input_section=0xffc3d98, 
contents=0x1f18c2a0 "\341\003", relocs=0xffdfef0, local_syms=0x1ed7b780, 
local_sections=0x1fd54230) at ../../bfd/elfnn-aarch64.c:6203
#2  0x007fb7f19240 in elf_link_input_bfd (flinfo=0x7fd640, 
input_bfd=0xffb29b0) at ../../bfd/elflink.c:10166
#3  0x007fb7f1bb58 in bfd_elf_final_link (abfd=0x56b440, info=0x550460 
) at ../../bfd/elflink.c:11359
#4  0x00427378 in ldwrite () at ../../ld/ldwrite.c:581
#5  0x00423eac in main (argc=274, argv=0x7fd8c8) at 
../../ld/ldmain.c:430

** Affects: binutils
 Importance: Unknown
 Status: Unknown

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

** Affects: unity (Ubuntu)
 Importance: High
 Assignee: Marco Trevisan (Treviño) (3v1n0)
 Status: Confirmed


** Tags: ftbfs

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

** Bug watch added: Sourceware.org Bugzilla #19188
   http://sourceware.org/bugzilla/show_bug.cgi?id=19188

** Also affects: binutils via
   http://sourceware.org/bugzilla/show_bug.cgi?id=19188
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to binutils in Ubuntu.
https://bugs.launchpad.net/bugs/1511542

Title:
   [2.26 Regression] binutils assertion fail ../../bfd/elfnn-
  aarch64.c:4631

Status in binutils:
  Unknown
Status in binutils package in Ubuntu:
  Confirmed
Status in unity package in Ubuntu:
  Confirmed

Bug description:
  seen with 2.25.51.20151028 on aarch64-linux-gnu, GCC used is 20151028
  from the gcc-5-branch.  The test case also crashes with ld.gold.

  $ (cd tst; sh doit.sh)
  ld: BFD (GNU Binutils for Ubuntu) 2.25.51.20151028 assertion fail 
../../bfd/elfnn-aarch64.c:4631
  Segmentation fault (core dumped)

  test case at
  http://people.canonical.com/~doko/tmp/tst-binutils-20151028.tar.xz

  Program received signal SIGSEGV, Segmentation fault.
  0x007fb7ed9524 in tpoff_base (info=0x550460 ) at 
../../bfd/elfnn-aarch64.c:4633
  4633  bfd_vma base = align_power ((bfd_vma) TCB_SIZE,
  (gdb) bt
  #0  0x007fb7ed9524 in tpoff_base (info=0x550460 ) at 
../../bfd/elfnn-aarch64.c:4633
  #1  0x007fb7edcd80 in elf64_aarch64_relocate_section 
(output_bfd=0x56b440, info=0x550460 , input_bfd=0xffb29b0, 
input_section=0xffc3d98, 
  contents=0x1f18c2a0 "\341\003", relocs=0xffdfef0, local_syms=0x1ed7b780, 
local_sections=0x1fd54230) at ../../bfd/elfnn-aarch64.c:6203
  #2  0x007fb7f19240 in elf_link_input_bfd (flinfo=0x7fd640, 
input_bfd=0xffb29b0) at ../../bfd/elflink.c:10166
  #3  0x007fb7f1bb58 in bfd_elf_final_link (abfd=0x56b440, info=0x550460 
) at ../../bfd/elflink.c:11359
  #4  0x00427378 in ldwrite () at ../../ld/ldwrite.c:581
  #5  0x00423eac in main (argc=274, argv=0x7fd8c8) at 
../../ld/ldmain.c:430

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1511544] [NEW] package initscripts 2.88dsf-59.2ubuntu2 failed to install/upgrade: podproces zainstalowany skrypt post-installation zwrócił kod błędu 1

2015-10-29 Thread mariuszj
Public bug reported:

this bug was after update to 15.10

Description:Ubuntu Xenial Xerus (development branch)
Release:16.04

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: initscripts 2.88dsf-59.2ubuntu2
ProcVersionSignature: Ubuntu 3.19.0-28.30-generic 3.19.8-ckt5
Uname: Linux 3.19.0-28-generic x86_64
ApportVersion: 2.17.2-0ubuntu1.3
Architecture: amd64
Date: Thu Oct 29 22:31:26 2015
DuplicateSignature: package:initscripts:2.88dsf-59.2ubuntu2:podproces 
zainstalowany skrypt post-installation zwrócił kod błędu 1
ErrorMessage: podproces zainstalowany skrypt post-installation zwrócił kod 
błędu 1
InstallationDate: Installed on 2015-08-22 (68 days ago)
InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
RelatedPackageVersions:
 dpkg 1.17.25ubuntu1
 apt  1.0.10.2ubuntu1
SourcePackage: sysvinit
Title: package initscripts 2.88dsf-59.2ubuntu2 failed to install/upgrade: 
podproces zainstalowany skrypt post-installation zwrócił kod błędu 1
UpgradeStatus: Upgraded to xenial on 2015-10-29 (0 days ago)

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


** Tags: amd64 apport-package need-duplicate-check third-party-packages xenial

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to sysvinit in Ubuntu.
https://bugs.launchpad.net/bugs/1511544

Title:
  package initscripts 2.88dsf-59.2ubuntu2 failed to install/upgrade:
  podproces zainstalowany skrypt post-installation zwrócił kod błędu 1

Status in sysvinit package in Ubuntu:
  New

Bug description:
  this bug was after update to 15.10

  Description:  Ubuntu Xenial Xerus (development branch)
  Release:  16.04

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: initscripts 2.88dsf-59.2ubuntu2
  ProcVersionSignature: Ubuntu 3.19.0-28.30-generic 3.19.8-ckt5
  Uname: Linux 3.19.0-28-generic x86_64
  ApportVersion: 2.17.2-0ubuntu1.3
  Architecture: amd64
  Date: Thu Oct 29 22:31:26 2015
  DuplicateSignature: package:initscripts:2.88dsf-59.2ubuntu2:podproces 
zainstalowany skrypt post-installation zwrócił kod błędu 1
  ErrorMessage: podproces zainstalowany skrypt post-installation zwrócił kod 
błędu 1
  InstallationDate: Installed on 2015-08-22 (68 days ago)
  InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  RelatedPackageVersions:
   dpkg 1.17.25ubuntu1
   apt  1.0.10.2ubuntu1
  SourcePackage: sysvinit
  Title: package initscripts 2.88dsf-59.2ubuntu2 failed to install/upgrade: 
podproces zainstalowany skrypt post-installation zwrócił kod błędu 1
  UpgradeStatus: Upgraded to xenial on 2015-10-29 (0 days ago)

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1511542] Re: [2.26 Regression] binutils assertion fail ../../bfd/elfnn-aarch64.c:4631

2015-10-29 Thread Matthias Klose
please work around it by not building the tests on arm64.


** Changed in: unity (Ubuntu)
   Importance: Undecided => High

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

** Changed in: unity (Ubuntu)
 Assignee: (unassigned) => Marco Trevisan (Treviño) (3v1n0)

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to binutils in Ubuntu.
https://bugs.launchpad.net/bugs/1511542

Title:
   [2.26 Regression] binutils assertion fail ../../bfd/elfnn-
  aarch64.c:4631

Status in binutils:
  Unknown
Status in binutils package in Ubuntu:
  Confirmed
Status in unity package in Ubuntu:
  Confirmed

Bug description:
  seen with 2.25.51.20151028 on aarch64-linux-gnu, GCC used is 20151028
  from the gcc-5-branch.  The test case also crashes with ld.gold.

  $ (cd tst; sh doit.sh)
  ld: BFD (GNU Binutils for Ubuntu) 2.25.51.20151028 assertion fail 
../../bfd/elfnn-aarch64.c:4631
  Segmentation fault (core dumped)

  test case at
  http://people.canonical.com/~doko/tmp/tst-binutils-20151028.tar.xz

  Program received signal SIGSEGV, Segmentation fault.
  0x007fb7ed9524 in tpoff_base (info=0x550460 ) at 
../../bfd/elfnn-aarch64.c:4633
  4633  bfd_vma base = align_power ((bfd_vma) TCB_SIZE,
  (gdb) bt
  #0  0x007fb7ed9524 in tpoff_base (info=0x550460 ) at 
../../bfd/elfnn-aarch64.c:4633
  #1  0x007fb7edcd80 in elf64_aarch64_relocate_section 
(output_bfd=0x56b440, info=0x550460 , input_bfd=0xffb29b0, 
input_section=0xffc3d98, 
  contents=0x1f18c2a0 "\341\003", relocs=0xffdfef0, local_syms=0x1ed7b780, 
local_sections=0x1fd54230) at ../../bfd/elfnn-aarch64.c:6203
  #2  0x007fb7f19240 in elf_link_input_bfd (flinfo=0x7fd640, 
input_bfd=0xffb29b0) at ../../bfd/elflink.c:10166
  #3  0x007fb7f1bb58 in bfd_elf_final_link (abfd=0x56b440, info=0x550460 
) at ../../bfd/elflink.c:11359
  #4  0x00427378 in ldwrite () at ../../ld/ldwrite.c:581
  #5  0x00423eac in main (argc=274, argv=0x7fd8c8) at 
../../ld/ldmain.c:430

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1511538] [NEW] 1/2 screen on external monitor

2015-10-29 Thread kevin gunn
Public bug reported:

using N7 latest PD image

connect bt mouse and keyboard
connected to monitor
opened several apps (clock, msg, phone, browser, twitter, u-s-s, terminal, 
camera, gallery, calculator, pathwind) - did quite a bit of window moving, max, 
min, close, relaunch

after a while, disconnected n7 from monitor, then reconnected
only 1/2 the screen on the monitor was used
disconnected, reconnected, still only 1/2 the screen used, possible low mem ?

** Affects: canonical-pocket-desktop
 Importance: High
 Assignee: kevin gunn (kgunn72)
 Status: New

** Affects: mir (Ubuntu)
 Importance: High
 Status: New

** Affects: qtmir (Ubuntu)
 Importance: High
 Status: New

** Attachment added: "monitor_fun.JPG"
   
https://bugs.launchpad.net/bugs/1511538/+attachment/4508772/+files/monitor_fun.JPG

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

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

** Changed in: canonical-pocket-desktop
 Assignee: (unassigned) => kevin gunn (kgunn72)

** Changed in: canonical-pocket-desktop
   Importance: Undecided => High

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

** Changed in: qtmir (Ubuntu)
   Importance: Undecided => High

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to mir in Ubuntu.
https://bugs.launchpad.net/bugs/1511538

Title:
  1/2 screen on external monitor

Status in canonical-pocket-desktop:
  New
Status in mir package in Ubuntu:
  New
Status in qtmir package in Ubuntu:
  New

Bug description:
  using N7 latest PD image

  connect bt mouse and keyboard
  connected to monitor
  opened several apps (clock, msg, phone, browser, twitter, u-s-s, terminal, 
camera, gallery, calculator, pathwind) - did quite a bit of window moving, max, 
min, close, relaunch

  after a while, disconnected n7 from monitor, then reconnected
  only 1/2 the screen on the monitor was used
  disconnected, reconnected, still only 1/2 the screen used, possible low mem ?

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-pocket-desktop/+bug/1511538/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1498445] Re: Panel for Ubuntu One account does not autoscroll the fields into view

2015-10-29 Thread Rodney Dawes
** No longer affects: ubuntu-system-settings-online-accounts

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to ubuntuone-credentials in
Ubuntu.
https://bugs.launchpad.net/bugs/1498445

Title:
  Panel for Ubuntu One account does not autoscroll the fields into view

Status in ubuntuone-credentials package in Ubuntu:
  Confirmed

Bug description:
  Reproduce:
  Add U1 account

  What happens:
  the two-factor auth field  gets completely hidden by the keyboard

  What should happen:
  The fields should be scrolled into view

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1484027] Re: systemd-tmpfiles-clean warns about duplicate /var/log line

2015-10-29 Thread Martin Pitt
As rsyslog ships the tmpfile snippet it should also ship that logcheck
rule IMHO. I added it to rsyslog's existing logcheck rule, thanks for
this!

** Package changed: systemd (Ubuntu) => rsyslog (Ubuntu)

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

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

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to rsyslog in Ubuntu.
https://bugs.launchpad.net/bugs/1484027

Title:
  systemd-tmpfiles-clean warns about duplicate /var/log line

Status in rsyslog package in Ubuntu:
  Fix Committed

Bug description:
  Triggered by the two /var/log entries that were reported in
  https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1434295, I get
  daily log messages from systemd-tmpfiles-clean saying:

  Aug 10 15:04:13 seraph systemd[1]: Starting Cleanup of Temporary 
Directories...
  Aug 10 15:04:13 seraph systemd-tmpfiles[5897]: 
[/usr/lib/tmpfiles.d/var.conf:14] Duplicate line for path "/var/log", ignoring.
  Aug 10 15:04:13 seraph systemd[1]: Started Cleanup of Temporary Directories.

  I don't know much about systemd, so I have no ideas for how to fix it,
  sorry.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1503693] Re: Dim timeout gsetting key not set anymore

2015-10-29 Thread Lars Uebernickel
We've changed the way the changed signal is dispatched due to Qt bug
32859 (tracked as bug #1460970 here), which leads to these signals not
being emitted at all anymore when changing a setting from qml.

I've attached a branch that explicitely emits those signals in that
case.

** Branch linked: lp:~larsu/gsettings-qt/lp1503693

** Changed in: gsettings-qt (Ubuntu)
   Status: New => In Progress

** Changed in: gsettings-qt (Ubuntu)
   Importance: Undecided => High

** Changed in: gsettings-qt (Ubuntu)
 Assignee: (unassigned) => Lars Uebernickel (larsu)

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to gsettings-qt in Ubuntu.
https://bugs.launchpad.net/bugs/1503693

Title:
  Dim timeout gsetting key not set anymore

Status in Canonical System Image:
  Confirmed
Status in gsettings-qt package in Ubuntu:
  In Progress
Status in ubuntu-system-settings package in Ubuntu:
  Incomplete

Bug description:
  The dim-timeout gsettings key is not set anymore when the activity-
  timeout key changes, so a default value of 45sec is used for dim-
  timeout regardless of the activity timeout selected by the user in the
  batter plugin.

  The logic to set the dim timeout value is there in
  battery/SleepValues.xml in the GSettings onChanged handler, but it
  seems that the onChanged handler is not called when the activity-
  timeout value changes.

  Not sure if this is a problem in the way ubuntu-system-settings uses
  the GSettings QML item, or if the item implementation itself is broken
  somehow.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1510360] Re: maximize, close, launch goes full screen with no buttons

2015-10-29 Thread kevin gunn
OK, with the latest silo 21 i've played with it enough to be convinced
the "disappearing buttons" & apps launching into phone mode is fixed.

However, i still see "disappearing app", which i have now determined is
actually minimized apps show up in the spread - but do not reinstate
themselves onto the screen if selected from the spread. the same
applications (still minimized) do reinstate themselves onto the screen
if selected from the launcher.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity8 in Ubuntu.
https://bugs.launchpad.net/bugs/1510360

Title:
  maximize, close, launch goes full screen with no buttons

Status in canonical-pocket-desktop:
  New
Status in unity8 package in Ubuntu:
  In Progress

Bug description:
  so i was testing for bug 1504269
  on nexus4
  last update: 2015-10-26 14:09:21
  version version: 54
  version ubuntu: 20151026
  version device: 20150911
  version custom: 20150929-2-vivid

  i had the mouse & keyboard connected, no external monitor
  i had dash & system settings open
  i maximized dash, then reset to windowed mode with same button
  i maximized u-s-s, then i accidentally hit "quit" button
  i relaunched u-s-s
  expected: to either launch back in window mode as maximized with buttons
  actual: launched in full screen, but as in phone mode - with no buttons

  noticed that subsequent launch of phone app (while in this state)
  first appeared as a full screen phone mode - but after blanking and
  using switcher, phone app went to windowed mode as expected, but u-s-s
  persisted in the state of phone mode full screen no buttons. launched
  a few other apps, all were in windowed mode.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-pocket-desktop/+bug/1510360/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1510710] Re: When unlock phone, password keyboard disappears

2015-10-29 Thread Michał Sawicz
Any chance you could enable error reporting in Settings app, clear
/var/crash/* and ~/.cache/upstart/*, try your steps again and see what
shows up in the two directories?

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

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to ubuntu-keyboard in Ubuntu.
https://bugs.launchpad.net/bugs/1510710

Title:
  When unlock phone, password keyboard disappears

Status in Canonical System Image:
  Confirmed
Status in ubuntu-keyboard package in Ubuntu:
  New
Status in unity8 package in Ubuntu:
  New

Bug description:
  Ubuntu phone 15.04 (r24) [mako]

  This was first noticed during r23, still present on r24.

  Bug: Phone is suddenly slow on password entry to unlock phone.

  Expected behavior: 
  (1) Unlock phone: I tap on/off button to unlock phone, swipe right-to-left, 
enter password on keyboard, hit enter, unlock phone  Cannot complete password 
to unlock phone without keyboard disappearing, requires extra tap on screen to 
bring keyboard back and continue password

  Actual behavior:
  (1) Unlock phone: I tap on/off button to unlock phone, swipe right-to-left, 
enter password on keyboard, keyboard disappears before password complete, must 
tap screen once more to view keyboard again and finish password to unlock phone

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1509858] Re: Ubuntu 15.10 won't boot unless external USB drive is connected

2015-10-29 Thread Felix Oxley
noauto has fixed it. Thank you.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to util-linux in Ubuntu.
https://bugs.launchpad.net/bugs/1509858

Title:
  Ubuntu 15.10 won't boot unless external USB drive is connected

Status in util-linux package in Ubuntu:
  Invalid

Bug description:
  Hi,

  I have a working installation of Ubuntu Gnome 15.10 x64.

  I have an external USB drive (MyBook) that is connected all the time.
  The system has been working correctly for a week, and *probably* booting 
correctly even when the external drive was turned off. (I can't say 100% 
whether I have booted it with the drive off before today).

  
  In order to allow this drive to be accessed and mounted/unmounted by all 
users of the system I have added it to /etc/fstab.

  /dev/sdc1   /media/MyBook   ext4
  rw,user,nosuid,nodev,relatime,data=ordered,uhelper=udisks2

  molly@molly:~$ ls -l /media
  total 12
  drwxr-x---+ 2 root  root  4096 Oct 18 11:30 charlotte
  drwxr-x---+ 2 root  root  4096 Oct 25 18:26 molly
  drwx--  8 molly molly 4096 Oct 25 18:44 MyBook

  However, now if I turn the drive off and reboot the system Ubuntu doesn't 
start correctly.
  I get the Ubuntu logo with the 'spinner' and then after a couple of minutes 
the emergency mode screen.

  It is very hard to get any useful information about the cause of the boot 
failure once you reach this point.
  The journalctl -xb command gives a vast amount of information without making 
it clear what the problem is.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: mount 2.26.2-6ubuntu3
  ProcVersionSignature: Ubuntu 4.2.0-16.19-generic 4.2.3
  Uname: Linux 4.2.0-16-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.19.1-0ubuntu3
  Architecture: amd64
  CurrentDesktop: GNOME
  Date: Sun Oct 25 19:24:14 2015
  InstallationDate: Installed on 2015-10-16 (8 days ago)
  InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20151016)
  SourcePackage: util-linux
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1511074] Re: camera is missing auto focus options OFF

2015-10-29 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Importance: Undecided => Wishlist

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

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

** Also affects: camera-app (Ubuntu)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to camera-app in Ubuntu.
https://bugs.launchpad.net/bugs/1511074

Title:
  camera is missing auto focus options OFF

Status in Canonical System Image:
  Confirmed
Status in camera-app package in Ubuntu:
  New

Bug description:
  camera is missing auto focus options ON/OFF

  i really need to turn OFF auto focus. i can't record the screen
  without turning OFF the auto focus, but there is no settings...

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1510710] Re: When unlock phone, password keyboard disappears

2015-10-29 Thread Pat McGowan
** Also affects: unity8 (Ubuntu)
   Importance: Undecided
   Status: New

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

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity8 in Ubuntu.
https://bugs.launchpad.net/bugs/1510710

Title:
  When unlock phone, password keyboard disappears

Status in Canonical System Image:
  Confirmed
Status in unity8 package in Ubuntu:
  New

Bug description:
  Ubuntu phone 15.04 (r24) [mako]

  This was first noticed during r23, still present on r24.

  Bug: Phone is suddenly slow on password entry to unlock phone.

  Expected behavior: 
  (1) Unlock phone: I tap on/off button to unlock phone, swipe right-to-left, 
enter password on keyboard, hit enter, unlock phone  Cannot complete password 
to unlock phone without keyboard disappearing, requires extra tap on screen to 
bring keyboard back and continue password

  Actual behavior:
  (1) Unlock phone: I tap on/off button to unlock phone, swipe right-to-left, 
enter password on keyboard, keyboard disappears before password complete, must 
tap screen once more to view keyboard again and finish password to unlock phone

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1434576] Re: Quick scroll in contacts sometimes doesn't scroll the content

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

** Changed in: address-book-app (Ubuntu)
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to address-book-app in
Ubuntu.
https://bugs.launchpad.net/bugs/1434576

Title:
  Quick scroll in contacts sometimes doesn't scroll the content

Status in address-book-app package in Ubuntu:
  Confirmed

Bug description:
  Mako running rtm 214

  Open contacts
  scroll up to reveal the quick scroll letter set
  tap on a letter
  sometimes the list scrolls to the letter and sometimes it does not move
  It seems to do this when the contents are still moving when the tap is done 
but its not 100%

  see attached video

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1509858] Re: Ubuntu 15.10 won't boot unless external USB drive is connected

2015-10-29 Thread Martin Pitt
You want/need to set the "noauto" option in fstab; otherwise you say
"this must be mounted for the system to boot", and that's what it times
out on. Also, please  do not set "uhelper=udisks2" in fstab, that's
quite wrong. If you use udisks to mount the external USB then you don't
need the fstab entry in the first place.

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

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to util-linux in Ubuntu.
https://bugs.launchpad.net/bugs/1509858

Title:
  Ubuntu 15.10 won't boot unless external USB drive is connected

Status in util-linux package in Ubuntu:
  Invalid

Bug description:
  Hi,

  I have a working installation of Ubuntu Gnome 15.10 x64.

  I have an external USB drive (MyBook) that is connected all the time.
  The system has been working correctly for a week, and *probably* booting 
correctly even when the external drive was turned off. (I can't say 100% 
whether I have booted it with the drive off before today).

  
  In order to allow this drive to be accessed and mounted/unmounted by all 
users of the system I have added it to /etc/fstab.

  /dev/sdc1   /media/MyBook   ext4
  rw,user,nosuid,nodev,relatime,data=ordered,uhelper=udisks2

  molly@molly:~$ ls -l /media
  total 12
  drwxr-x---+ 2 root  root  4096 Oct 18 11:30 charlotte
  drwxr-x---+ 2 root  root  4096 Oct 25 18:26 molly
  drwx--  8 molly molly 4096 Oct 25 18:44 MyBook

  However, now if I turn the drive off and reboot the system Ubuntu doesn't 
start correctly.
  I get the Ubuntu logo with the 'spinner' and then after a couple of minutes 
the emergency mode screen.

  It is very hard to get any useful information about the cause of the boot 
failure once you reach this point.
  The journalctl -xb command gives a vast amount of information without making 
it clear what the problem is.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: mount 2.26.2-6ubuntu3
  ProcVersionSignature: Ubuntu 4.2.0-16.19-generic 4.2.3
  Uname: Linux 4.2.0-16-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.19.1-0ubuntu3
  Architecture: amd64
  CurrentDesktop: GNOME
  Date: Sun Oct 25 19:24:14 2015
  InstallationDate: Installed on 2015-10-16 (8 days ago)
  InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20151016)
  SourcePackage: util-linux
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1488063] Re: scrolling resets after first use

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

** Changed in: address-book-app (Ubuntu)
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to address-book-app in
Ubuntu.
https://bugs.launchpad.net/bugs/1488063

Title:
  scrolling resets after first use

Status in address-book-app package in Ubuntu:
  Confirmed

Bug description:
  Steps to reproduce:

  * Close address-book-app if opened
  * Open address-book app
  * when it shows up, flick down the list

  => once the flick is finished, it will jump up to the beginning again,
  forcing the user to start again.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1488063] Re: scrolling resets after first use

2015-10-29 Thread Pat McGowan
similar to bug #1434576
seems there is a race on initialization

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to address-book-app in
Ubuntu.
https://bugs.launchpad.net/bugs/1488063

Title:
  scrolling resets after first use

Status in address-book-app package in Ubuntu:
  Confirmed

Bug description:
  Steps to reproduce:

  * Close address-book-app if opened
  * Open address-book app
  * when it shows up, flick down the list

  => once the flick is finished, it will jump up to the beginning again,
  forcing the user to start again.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1488063] Re: scrolling resets after first use

2015-10-29 Thread Pat McGowan
** Changed in: address-book-app (Ubuntu)
 Assignee: (unassigned) => Renato Araujo Oliveira Filho (renatofilho)

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to address-book-app in
Ubuntu.
https://bugs.launchpad.net/bugs/1488063

Title:
  scrolling resets after first use

Status in address-book-app package in Ubuntu:
  Confirmed

Bug description:
  Steps to reproduce:

  * Close address-book-app if opened
  * Open address-book app
  * when it shows up, flick down the list

  => once the flick is finished, it will jump up to the beginning again,
  forcing the user to start again.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1508766] Re: /etc/machine-id not created if missing

2015-10-29 Thread Martin Pitt
> I'm surprised the root filesystem is read-only at the point where
systemd starts. Isn't it remounted rw by the initramfs? (It is in
Debian.)

No, it shouldn't; Usually grub passes the "ro" option in which case
initramfs should leave it as readonly (see /usr/share/initramfs-
tools/init). rw mounting happens in systemd-remount-fs.service.

Sorry for the misunderstanding/false information: Indeed /etc/machine-id
must at least exist (empty is okay) in order to regenerate it -- then
systemd will create a new one in a temporary  location in /run, bind-
mount /etc/machine-id to it, and systemd-machine-id-commit.service will
then write it to /etc/machine-id once the fs becomes read-write. So the
message in the description as well as machine-id(5) ("Optionally, for
stateless systems, it is generated during runtime at boot if it is found
to be empty.") are quite correct.

So this is pretty much "wontfix" on the downstream side. There's
probably a way to combine the above so that writing an entirely absent
/etc/machine-id after the root fs becomes rw, but that should then
happen upstream.

** Changed in: systemd (Ubuntu)
   Importance: Undecided => Low

** Changed in: systemd (Ubuntu)
   Status: New => Won't Fix

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to systemd in Ubuntu.
https://bugs.launchpad.net/bugs/1508766

Title:
  /etc/machine-id not created if missing

Status in systemd package in Ubuntu:
  Won't Fix

Bug description:
  If /etc/machine-id is missing at boot, systemd does not create it.

  I came across lp:1387090 in which Martin Pitt mentions that it should
  be created if missing, but is unsure why this doesn't work.

  I'm likewise unsure why it doesn't work, but this bit from dmesg makes
  me think it *might* be because systemd is trying to do so while the
  rootfs is still mounted read-only, before it gets remounted read-
  write:

  [   19.240451] systemd[1]: System cannot boot: Missing /etc/machine-id and 
/etc is mounted read-only.
  [   19.240464] systemd[1]: Booting up is supported only when:
  [   19.240466] systemd[1]: 1) /etc/machine-id exists and is populated.
  [   19.240467] systemd[1]: 2) /etc/machine-id exists and is empty.
  [   19.240468] systemd[1]: 3) /etc/machine-id is missing and /etc is writable.

  A missing /etc/machine-id file has broad consequences for the boot
  process. As one example, the Journal Service doesn't get started.

  This problem appears to have greater impact now that on Wily (desktop)
  /var/lib/dbus/machine-id is a symlink to /etc/machine-id. Previously
  the system dbus instance would generate the machine-id with dbus-
  uidgen if the file was missing, but on Wily desktop it wont.

  Note that on Wily server /var/lib/dbus/machine-id is a regular file,
  is not a symlink to /etc/machine-id. I filed lp:1508697 about this
  separate issue as it seems strange for this to be different between
  Wily desktop and server.

  Thanks!

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: systemd 225-1ubuntu9
  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: Wed Oct 21 19:57:58 2015
  JournalErrors:
   No journal files were found.
   -- No entries --
  MachineType: System76, Inc. Gazelle Professional
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-16-generic 
root=UUID=424ed0f3-306d-4302-b58c-6b1e7adb7c74 ro quiet splash vt.handoff=7
  SourcePackage: systemd
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 05/16/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 4.6.5
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: Gazelle Professional
  dmi.board.vendor: System76, Inc.
  dmi.board.version: gazp7
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 9
  dmi.chassis.vendor: No Enclosure
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr4.6.5:bd05/16/2012:svnSystem76,Inc.:pnGazelleProfessional:pvrgazp7:rvnSystem76,Inc.:rnGazelleProfessional:rvrgazp7:cvnNoEnclosure:ct9:cvrN/A:
  dmi.product.name: Gazelle Professional
  dmi.product.version: gazp7
  dmi.sys.vendor: System76, Inc.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1510201] Re: AdaptativeLayout take longer to show a page

2015-10-29 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to ubuntu-ui-toolkit in
Ubuntu.
https://bugs.launchpad.net/bugs/1510201

Title:
  AdaptativeLayout take longer to show a page

Status in Canonical System Image:
  Confirmed
Status in ubuntu-ui-toolkit package in Ubuntu:
  New

Bug description:
  Device: krillin
  Image: Ubuntu 15.04 (r153)

  
  I created a small/simple example with Pages using the new AdaptativeLayout.

  On this example the second page takes about 2.6 secs to show the page.
  While it only took 1.3 secs (Still a long time) when using PageStack.

  
  OBS:  You can easily change the example to use PageStack just changing the 
commented lines.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1511476] Re: Unstable unity session

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

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

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1511476

Title:
  Unstable unity session

Status in xorg package in Ubuntu:
  Confirmed

Bug description:
  Hi,

  My unity session crash randomly, when I am working on my computer, or
  when nothing is done in my computer.

  This occurs repeatedly since I have installed ubuntu 15.10.

  This does not happen on my laptop. The main difference I noticed
  between my computer and my laptop is that my laptop has an NVidia
  Graphic card and my computer has an intel Core™ i5-2320 as CPU/GPU. So
  it has no Graphic Card.

  Here you will find my syslog file content, during the crash :

  Oct 29 18:23:10 choupchoup org.a11y.atspi.Registry[1438]: XIO:  fatal IO 
error 11 (Resource temporarily unavailable) on X server ":0"
  Oct 29 18:23:10 choupchoup org.a11y.atspi.Registry[1438]: after 5183 requests 
(5183 known processed) with 0 events remaining.
  Oct 29 18:23:10 choupchoup org.freedesktop.Notifications[1349]: 
(notify-osd:2595): Gdk-WARNING **: notify-osd: Fatal IO error 11 (Ressource 
temporairement non disponible) on X server :0.
  Oct 29 18:23:10 choupchoup gnome-session[1565]: 
(polkit-gnome-authentication-agent-1:1747): Gdk-WARNING **: 
polkit-gnome-authentication-agent-1: Fatal IO error 11 (Ressource 
temporairement non disponible) on X server :0.
  Oct 29 18:23:10 choupchoup gnome-session[1565]: (nm-applet:1754): Gdk-WARNING 
**: nm-applet: Fatal IO error 11 (Ressource temporairement non disponible) on X 
server :0.
  Oct 29 18:23:10 choupchoup gnome-session[1565]: (update-notifier:2058): 
Gdk-WARNING **: update-notifier: Fatal IO error 11 (Ressource temporairement 
non disponible) on X server :0.
  Oct 29 18:23:10 choupchoup gnome-session[1565]: (telepathy-indicator:1933): 
Gdk-WARNING **: telepathy-indicator: Fatal IO error 11 (Ressource 
temporairement non disponible) on X server :0.
  Oct 29 18:23:10 choupchoup gnome-session[1565]: 
(unity-fallback-mount-helper:1751): Gdk-WARNING **: 
unity-fallback-mount-helper: Fatal IO error 11 (Ressource temporairement non 
disponible) on X server :0.
  Oct 29 18:23:10 choupchoup gnome-session[1565]: (nautilus:1748): Gdk-WARNING 
**: nautilus: Fatal IO error 11 (Ressource temporairement non disponible) on X 
server :0.
  Oct 29 18:23:10 choupchoup org.ayatana.bamf[1349]: (bamfdaemon:1407): 
Gdk-WARNING **: bamfdaemon: Fatal IO error 11 (Ressource temporairement non 
disponible) on X server :0.
  Oct 29 18:23:10 choupchoup acpid: client 815[0:0] has disconnected
  Oct 29 18:23:10 choupchoup acpid: client connected from 3456[0:0]
  Oct 29 18:23:10 choupchoup acpid: 1 client rule loaded
  Oct 29 18:23:10 choupchoup org.freedesktop.Notifications[1349]: loading icon 
'notification-nm-no-connection' caused error: 'L'icône « 
notification-nm-no-connection » n'est pas présente dans le thème 
ubuntu-mono-dark'loading icon 'notification-nm-device-wired' caused error: 
'L'icône « notification-nm-device-wired » n'est pas présente dans le thème 
ubuntu-mono-dark'
  Oct 29 18:23:10 choupchoup gnome-session[1565]: (deja-dup-monitor:2092): 
GVFS-RemoteVolumeMonitor-WARNING **: Owner of volume monitor 
org.gtk.Private.UDisks2VolumeMonitor disconnected from the bus; removing 
drives/volumes/mounts
  Oct 29 18:23:10 choupchoup gnome-session[1565]: (deja-dup-monitor:2092): 
GVFS-RemoteVolumeMonitor-WARNING **: Owner of volume monitor 
org.gtk.Private.GPhoto2VolumeMonitor disconnected from the bus; removing 
drives/volumes/mounts
  Oct 29 18:23:10 choupchoup gnome-session[1565]: (deja-dup-monitor:2092): 
GVFS-RemoteVolumeMonitor-WARNING **: Owner of volume monitor 
org.gtk.Private.MTPVolumeMonitor disconnected from the bus; removing 
drives/volumes/mounts
  Oct 29 18:23:10 choupchoup gnome-session[1565]: (deja-dup-monitor:2092): 
GVFS-RemoteVolumeMonitor-WARNING **: Owner of volume monitor 
org.gtk.Private.AfcVolumeMonitor disconnected from the bus; removing 
drives/volumes/mounts
  Oct 29 18:23:10 choupchoup gnome-session[1565]: gnome-session[1565]: 
GLib-GIO-WARNING: Error releasing name org.gnome.SessionManager: The connection 
is closed
  Oct 29 18:23:10 choupchoup gnome-session[1565]: GLib-GIO-WARNING: Error 
releasing name org.gnome.SessionManager: The connection is closed
  Oct 29 18:23:10 choupchoup org.gnome.zeitgeist.Engine[1349]: 
(zeitgeist-daemon:1902): GLib-GIO-WARNING **: Error releasing name 
org.gnome.zeitgeist.Engine: The connection is closed
  Oct 29 18:23:10 choupchoup org.gnome.zeitgeist.Engine[1349]: 
#033[31m[17:23:10.094000 WARNING]#033[0m zeitgeist-daemon.vala:449: The 
connection is closed
  Oct 29 18:23:10 choupchoup org.gnome.zeitgeist.SimpleIndexer[1349]: 
(zeitgeist-fts:1911): GLib-GIO-WARNING **: Error releasing name 
org.gnome.zeitgeist.SimpleIndexer: The

[Touch-packages] [Bug 1511512] Re: Xorg crashes when opening new windows with Intel video card

2015-10-29 Thread Phil Boutros
I have disabled animation in compiz as per the other bug's report for
now.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1511512

Title:
  Xorg crashes when opening new windows with Intel video card

Status in xorg package in Ubuntu:
  New

Bug description:
  See bug # 1509846

  Someone asks to open new bug, and since this also affects me, I'm
  hoping the debug info will help.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: xorg 1:7.7+7ubuntu4
  ProcVersionSignature: Ubuntu 4.2.0-16.19-generic 4.2.3
  Uname: Linux 4.2.0-16-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.19.1-0ubuntu4
  Architecture: amd64
  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: Thu Oct 29 12:48:02 2015
  DistUpgraded: 2015-10-27 10:56:17,630 DEBUG enabling apt cron job
  DistroCodename: wily
  DistroVariant: ubuntu
  DkmsStatus: vboxhost, 5.0.8, 4.2.0-16-generic, x86_64: installed
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 2nd Generation Core Processor Family Integrated Graphics 
Controller [8086:0102] (rev 09) (prog-if 00 [VGA controller])
 Subsystem: Dell Device [1028:04ad]
  MachineType: Dell Inc. OptiPlex 790
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-16-generic 
root=UUID=43f2ccf7-0ceb-4a9d-8fcb-d0564749c2a6 ro quiet splash vt.handoff=7
  SourcePackage: xorg
  UpgradeStatus: Upgraded to wily on 2015-10-27 (2 days ago)
  dmi.bios.date: 12/30/2011
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A11
  dmi.board.name: 0HY9JP
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 6
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA11:bd12/30/2011:svnDellInc.:pnOptiPlex790:pvr01:rvnDellInc.:rn0HY9JP:rvrA00:cvnDellInc.:ct6:cvr:
  dmi.product.name: OptiPlex 790
  dmi.product.version: 01
  dmi.sys.vendor: Dell Inc.
  version.compiz: compiz 1:0.9.12.2+15.10.20151015-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.64-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.0.2-1ubuntu4
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.0.2-1ubuntu4
  version.xserver-xorg-core: xserver-xorg-core 2:1.17.2-1ubuntu9
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.2-1ubuntu1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:7.5.0+git20150819-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20150808-0ubuntu4
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.11-1ubuntu3
  xserver.bootTime: Thu Oct 29 12:46:25 2015
  xserver.configfile: default
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   
  xserver.version: 2:1.17.2-1ubuntu9

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1511512] [NEW] Xorg crashes when opening new windows with Intel video card

2015-10-29 Thread Phil Boutros
Public bug reported:

See bug # 1509846

Someone asks to open new bug, and since this also affects me, I'm hoping
the debug info will help.

ProblemType: Bug
DistroRelease: Ubuntu 15.10
Package: xorg 1:7.7+7ubuntu4
ProcVersionSignature: Ubuntu 4.2.0-16.19-generic 4.2.3
Uname: Linux 4.2.0-16-generic x86_64
.tmp.unity.support.test.0:
 
ApportVersion: 2.19.1-0ubuntu4
Architecture: amd64
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: Thu Oct 29 12:48:02 2015
DistUpgraded: 2015-10-27 10:56:17,630 DEBUG enabling apt cron job
DistroCodename: wily
DistroVariant: ubuntu
DkmsStatus: vboxhost, 5.0.8, 4.2.0-16-generic, x86_64: installed
ExtraDebuggingInterest: Yes
GraphicsCard:
 Intel Corporation 2nd Generation Core Processor Family Integrated Graphics 
Controller [8086:0102] (rev 09) (prog-if 00 [VGA controller])
   Subsystem: Dell Device [1028:04ad]
MachineType: Dell Inc. OptiPlex 790
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-16-generic 
root=UUID=43f2ccf7-0ceb-4a9d-8fcb-d0564749c2a6 ro quiet splash vt.handoff=7
SourcePackage: xorg
UpgradeStatus: Upgraded to wily on 2015-10-27 (2 days ago)
dmi.bios.date: 12/30/2011
dmi.bios.vendor: Dell Inc.
dmi.bios.version: A11
dmi.board.name: 0HY9JP
dmi.board.vendor: Dell Inc.
dmi.board.version: A00
dmi.chassis.type: 6
dmi.chassis.vendor: Dell Inc.
dmi.modalias: 
dmi:bvnDellInc.:bvrA11:bd12/30/2011:svnDellInc.:pnOptiPlex790:pvr01:rvnDellInc.:rn0HY9JP:rvrA00:cvnDellInc.:ct6:cvr:
dmi.product.name: OptiPlex 790
dmi.product.version: 01
dmi.sys.vendor: Dell Inc.
version.compiz: compiz 1:0.9.12.2+15.10.20151015-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.64-1
version.libgl1-mesa-dri: libgl1-mesa-dri 11.0.2-1ubuntu4
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 11.0.2-1ubuntu4
version.xserver-xorg-core: xserver-xorg-core 2:1.17.2-1ubuntu9
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.2-1ubuntu1
version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:7.5.0+git20150819-0ubuntu1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20150808-0ubuntu4
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.11-1ubuntu3
xserver.bootTime: Thu Oct 29 12:46:25 2015
xserver.configfile: default
xserver.errors:
 
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs:
 
xserver.version: 2:1.17.2-1ubuntu9

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


** Tags: amd64 apport-bug compiz-0.9 ubuntu wily

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1511512

Title:
  Xorg crashes when opening new windows with Intel video card

Status in xorg package in Ubuntu:
  New

Bug description:
  See bug # 1509846

  Someone asks to open new bug, and since this also affects me, I'm
  hoping the debug info will help.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: xorg 1:7.7+7ubuntu4
  ProcVersionSignature: Ubuntu 4.2.0-16.19-generic 4.2.3
  Uname: Linux 4.2.0-16-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.19.1-0ubuntu4
  Architecture: amd64
  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: Thu Oct 29 12:48:02 2015
  DistUpgraded: 2015-10-27 10:56:17,630 DEBUG enabling apt cron job
  DistroCodename: wily
  DistroVariant: ubuntu
  DkmsStatus: vboxhost, 5.0.8, 4.2.0-16-generic, x86_64: installed
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 2nd Generation Core Processor Family Integrated Graphics 
Controller [8086:0102] (rev 09) (prog-if 00 [VGA controller])
 Subsystem: Dell Device [1028:04ad]
  MachineType: Dell Inc. OptiPlex 790
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-16-generic 
root=UUID=43f2ccf7-0ceb-4a9d-8fcb-d0564749c2a6 ro quiet splash vt.handoff=7
  SourcePackage: xorg
  UpgradeStatus: Upgraded to wily on 2015-10-27 (2 days ago)
  dmi.bios.date: 12/30/2011
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A11
  dmi.board.name: 0HY9JP
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 6
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA11:bd12/30/2011:svnDellInc.:pnOptiPlex790:pvr01:rvnDellInc.:rn0HY9JP:rvrA00:cvnDellInc.:ct6:cvr:
  dmi.product.name: OptiPlex 790
  dmi.product.version: 01
  dmi.sys.vendor: Dell Inc.
  version.compiz: compiz 1:0.9.12.2+15.10.20151015-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.64-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.0.2-1ubuntu4
  version.li

[Touch-packages] [Bug 1507346] Re: Back light off after sleep mode

2015-10-29 Thread wooglin280
FYI... This started happening after upgrading to 15.04 from 15.10 via
the Software Updater.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1507346

Title:
  Back light off after sleep mode

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  Hi all, 
  I would like to report that the back light of the display doesn't come back 
on after the computer has been in sleep or display off mode.   It initially 
came back on to allow me to unlock the account / log back in, then it turned 
off and stayed like that.  The windows are displaying correctly, so using the 
desk lamp as light source I could log out and back in again, to no avail.  
Re-start and all is happy, but power save again, and darkness surrounds you. 

  My laptop is a Dell Latitude E6540 with the standard Intel 4600 graphics. 
  Please let me know what other details you may require

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: xorg 1:7.7+7ubuntu4
  ProcVersionSignature: Ubuntu 4.2.0-11.13-generic 4.2.1
  Uname: Linux 4.2.0-11-generic x86_64
  ApportVersion: 2.18.1-0ubuntu1
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Sun Oct 18 19:16:14 2015
  InstallationDate: Installed on 2015-10-11 (7 days ago)
  InstallationMedia: Xubuntu 15.10 "Wily Werewolf" - Alpha amd64 (20150924)
  SourcePackage: xorg
  Symptom: display
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1511101] Re: [drm:intel_pipe_config_compare [i915]] *ERROR* mismatch in ips_enabled (expected 1, found 0) appears repeatedly during boot; Ubuntu boots normally to GNOME3 afterwar

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

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

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to libdrm in Ubuntu.
https://bugs.launchpad.net/bugs/1511101

Title:
  [drm:intel_pipe_config_compare [i915]] *ERROR* mismatch in ips_enabled
  (expected 1, found 0) appears repeatedly during boot; Ubuntu boots
  normally to GNOME3 afterwards

Status in libdrm package in Ubuntu:
  Confirmed

Bug description:
  The problem began after upgrading to Ubuntu 15.10 from Ubuntu 15.04
  using the GUI Software Updater packaged with the previous version of
  GNOME3. I haven't encountered any observable problems beyond this
  message, and GNOME3 seems to work normally despite the error messages.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: libdrm-intel1 2.4.64-1
  ProcVersionSignature: Ubuntu 4.2.0-16.19-generic 4.2.3
  Uname: Linux 4.2.0-16-generic x86_64
  ApportVersion: 2.19.1-0ubuntu4
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: None
  CurrentDesktop: GNOME
  Date: Wed Oct 28 16:12:33 2015
  DistUpgraded: 2015-10-23 21:50:00,570 DEBUG enabling apt cron job
  DistroCodename: wily
  DistroVariant: ubuntu
  GraphicsCard:
   Intel Corporation Haswell-ULT Integrated Graphics Controller [8086:0a16] 
(rev 09) (prog-if 00 [VGA controller])
     Subsystem: Dell Device [1028:05e9]
  InstallationDate: Installed on 2015-09-10 (47 days ago)
  InstallationMedia: Ubuntu-GNOME 15.04 "Vivid Vervet" - Release amd64 
(20150422)
  MachineType: Dell Inc. Inspiron 5537
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-16-generic.efi.signed 
root=UUID=2ee05cb3-c1a0-4141-8f42-b976956ff8c0 ro quiet splash vt.handoff=7
  SourcePackage: libdrm
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  UpgradeStatus: Upgraded to wily on 2015-10-24 (4 days ago)
  dmi.bios.date: 04/30/2014
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A08
  dmi.board.name: 0845MX
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 8
  dmi.chassis.vendor: Dell Inc.
  dmi.chassis.version: A08
  dmi.modalias: 
dmi:bvnDellInc.:bvrA08:bd04/30/2014:svnDellInc.:pnInspiron5537:pvrA08:rvnDellInc.:rn0845MX:rvrA00:cvnDellInc.:ct8:cvrA08:
  dmi.product.name: Inspiron 5537
  dmi.product.version: A08
  dmi.sys.vendor: Dell Inc.
  version.compiz: compiz N/A
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.64-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.0.2-1ubuntu4
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.0.2-1ubuntu4
  version.xserver-xorg-core: xserver-xorg-core 2:1.17.2-1ubuntu9
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.2-1ubuntu1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:7.5.0+git20150819-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20150808-0ubuntu4
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.11-1ubuntu3
  xserver.bootTime: Wed Oct 28 15:46:39 2015
  xserver.configfile: default
  xserver.errors:

  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id 991
   vendor LGD
  xserver.version: 2:1.17.2-1ubuntu9

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1511507] [NEW] Not showing match with colour switch

2015-10-29 Thread Alexandr
Public bug reported:

Steps to reproduce.

Command
$ grep '\WPort\W' /tmp/test.string.txt 

shows nothing (blank line) in terminal.

At the same time:
$ grep '\WPort\W' /tmp/test.string.txt | hexdump -C
  67 50 6f 72 74 20 3d 20  50 6f 72 74 0d 0a|gPort = Port..|
000e

And:
$ grep --colour=never '\WPort\W' /tmp/test.string.txt 
gPort = Port

Info about file:
$ hexdump -C /tmp/test.string.txt
  67 50 6f 72 74 20 3d 20  50 6f 72 74 0d 0a|gPort = Port..|
000e

File is in attachment.

Expected result is to show match with colour highlight.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: grep 2.16-1
ProcVersionSignature: Ubuntu 3.13.0-66.108-generic 3.13.11-ckt27
Uname: Linux 3.13.0-66-generic i686
ApportVersion: 2.14.1-0ubuntu3.18
Architecture: i386
CurrentDesktop: Unity
Date: Thu Oct 29 18:36:08 2015
InstallationDate: Installed on 2010-09-24 (1861 days ago)
InstallationMedia: Ubuntu-Netbook 10.04 "Lucid Lynx" - Release i386 (20100429.4)
SourcePackage: grep
UpgradeStatus: Upgraded to trusty on 2014-10-03 (391 days ago)

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


** Tags: apport-bug i386 trusty

** Attachment added: "test.string.txt"
   
https://bugs.launchpad.net/bugs/1511507/+attachment/4508691/+files/test.string.txt

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to grep in Ubuntu.
https://bugs.launchpad.net/bugs/1511507

Title:
  Not showing match with colour switch

Status in grep package in Ubuntu:
  New

Bug description:
  Steps to reproduce.

  Command
  $ grep '\WPort\W' /tmp/test.string.txt 

  shows nothing (blank line) in terminal.

  At the same time:
  $ grep '\WPort\W' /tmp/test.string.txt | hexdump -C
    67 50 6f 72 74 20 3d 20  50 6f 72 74 0d 0a|gPort = Port..|
  000e

  And:
  $ grep --colour=never '\WPort\W' /tmp/test.string.txt 
  gPort = Port

  Info about file:
  $ hexdump -C /tmp/test.string.txt
    67 50 6f 72 74 20 3d 20  50 6f 72 74 0d 0a|gPort = Port..|
  000e

  File is in attachment.

  Expected result is to show match with colour highlight.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: grep 2.16-1
  ProcVersionSignature: Ubuntu 3.13.0-66.108-generic 3.13.11-ckt27
  Uname: Linux 3.13.0-66-generic i686
  ApportVersion: 2.14.1-0ubuntu3.18
  Architecture: i386
  CurrentDesktop: Unity
  Date: Thu Oct 29 18:36:08 2015
  InstallationDate: Installed on 2010-09-24 (1861 days ago)
  InstallationMedia: Ubuntu-Netbook 10.04 "Lucid Lynx" - Release i386 
(20100429.4)
  SourcePackage: grep
  UpgradeStatus: Upgraded to trusty on 2014-10-03 (391 days ago)

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1510163] Re: Poodle TLS1.0 issue in Trusty (and Precise)

2015-10-29 Thread Bryan Quigley
** Information type changed from Public to Public Security

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to gnutls26 in Ubuntu.
https://bugs.launchpad.net/bugs/1510163

Title:
  Poodle TLS1.0 issue in Trusty (and Precise)

Status in gnutls26 package in Ubuntu:
  New

Bug description:
  This issue is present in Trusty and Precise with the stock main gnutls
  - https://community.qualys.com/blogs/securitylabs/2014/12/08/poodle-
  bites-tls

  If I switch cups to use gnutls28-dev on 14.04 the issue appears to go
  away according to ssllabs.   My test case is cups with SSL on.

  [1] http://pastebin.ubuntu.com/12970857/

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1507346] Re: Back light off after sleep mode

2015-10-29 Thread wooglin280
This seems like the same problem I am having. If I allow the display to
go to sleep, I cannot get it to come back on. I can change to terminal
with Ctrl+Alt+F1 and  restart lightdm or just reboot. In the meantime,
until this bug is resolved, I have disabled turning the display off to
save power.

The display does still go to sleep at the login screen, however, it will
come back on from there.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1507346

Title:
  Back light off after sleep mode

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  Hi all, 
  I would like to report that the back light of the display doesn't come back 
on after the computer has been in sleep or display off mode.   It initially 
came back on to allow me to unlock the account / log back in, then it turned 
off and stayed like that.  The windows are displaying correctly, so using the 
desk lamp as light source I could log out and back in again, to no avail.  
Re-start and all is happy, but power save again, and darkness surrounds you. 

  My laptop is a Dell Latitude E6540 with the standard Intel 4600 graphics. 
  Please let me know what other details you may require

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: xorg 1:7.7+7ubuntu4
  ProcVersionSignature: Ubuntu 4.2.0-11.13-generic 4.2.1
  Uname: Linux 4.2.0-11-generic x86_64
  ApportVersion: 2.18.1-0ubuntu1
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Sun Oct 18 19:16:14 2015
  InstallationDate: Installed on 2015-10-11 (7 days ago)
  InstallationMedia: Xubuntu 15.10 "Wily Werewolf" - Alpha amd64 (20150924)
  SourcePackage: xorg
  Symptom: display
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1510048] Re: package lightdm 1.14.2-0ubuntu1.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

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

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

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to lightdm in Ubuntu.
https://bugs.launchpad.net/bugs/1510048

Title:
  package lightdm 1.14.2-0ubuntu1.1 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

Status in lightdm package in Ubuntu:
  Confirmed

Bug description:
  I dont know anything

  ProblemType: Package
  DistroRelease: Ubuntu 15.04
  Package: lightdm 1.14.2-0ubuntu1.1
  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: Sun Oct 25 19:04:12 2015
  DuplicateSignature: package:lightdm:1.14.2-0ubuntu1.1:subprocess installed 
post-installation script returned error exit status 1
  ErrorMessage: subprocess installed post-installation script returned error 
exit status 1
  InstallationDate: Installed on 2015-06-20 (127 days ago)
  InstallationMedia: Ubuntu 14.10 "Utopic Unicorn" - Release amd64 (20141022.1)
  LightdmConfig:
   [SeatDefaults]
   autologin-guest=false
   autologin-user=ashwin
   autologin-user-timeout=0
   autologin-session=lightdm-autologin
  RelatedPackageVersions:
   dpkg 1.17.25ubuntu1
   apt  1.0.9.7ubuntu4.2
  SourcePackage: lightdm
  Title: package lightdm 1.14.2-0ubuntu1.1 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
  UpgradeStatus: Upgraded to vivid on 2015-07-02 (115 days ago)

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1511476] Re: Unstable unity session

2015-10-29 Thread JazZ
It seems that the problem does not occur with ubuntu gnome edition.

Thank in advance.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1511476

Title:
  Unstable unity session

Status in xorg package in Ubuntu:
  New

Bug description:
  Hi,

  My unity session crash randomly, when I am working on my computer, or
  when nothing is done in my computer.

  This occurs repeatedly since I have installed ubuntu 15.10.

  This does not happen on my laptop. The main difference I noticed
  between my computer and my laptop is that my laptop has an NVidia
  Graphic card and my computer has an intel Core™ i5-2320 as CPU/GPU. So
  it has no Graphic Card.

  Here you will find my syslog file content, during the crash :

  Oct 29 18:23:10 choupchoup org.a11y.atspi.Registry[1438]: XIO:  fatal IO 
error 11 (Resource temporarily unavailable) on X server ":0"
  Oct 29 18:23:10 choupchoup org.a11y.atspi.Registry[1438]: after 5183 requests 
(5183 known processed) with 0 events remaining.
  Oct 29 18:23:10 choupchoup org.freedesktop.Notifications[1349]: 
(notify-osd:2595): Gdk-WARNING **: notify-osd: Fatal IO error 11 (Ressource 
temporairement non disponible) on X server :0.
  Oct 29 18:23:10 choupchoup gnome-session[1565]: 
(polkit-gnome-authentication-agent-1:1747): Gdk-WARNING **: 
polkit-gnome-authentication-agent-1: Fatal IO error 11 (Ressource 
temporairement non disponible) on X server :0.
  Oct 29 18:23:10 choupchoup gnome-session[1565]: (nm-applet:1754): Gdk-WARNING 
**: nm-applet: Fatal IO error 11 (Ressource temporairement non disponible) on X 
server :0.
  Oct 29 18:23:10 choupchoup gnome-session[1565]: (update-notifier:2058): 
Gdk-WARNING **: update-notifier: Fatal IO error 11 (Ressource temporairement 
non disponible) on X server :0.
  Oct 29 18:23:10 choupchoup gnome-session[1565]: (telepathy-indicator:1933): 
Gdk-WARNING **: telepathy-indicator: Fatal IO error 11 (Ressource 
temporairement non disponible) on X server :0.
  Oct 29 18:23:10 choupchoup gnome-session[1565]: 
(unity-fallback-mount-helper:1751): Gdk-WARNING **: 
unity-fallback-mount-helper: Fatal IO error 11 (Ressource temporairement non 
disponible) on X server :0.
  Oct 29 18:23:10 choupchoup gnome-session[1565]: (nautilus:1748): Gdk-WARNING 
**: nautilus: Fatal IO error 11 (Ressource temporairement non disponible) on X 
server :0.
  Oct 29 18:23:10 choupchoup org.ayatana.bamf[1349]: (bamfdaemon:1407): 
Gdk-WARNING **: bamfdaemon: Fatal IO error 11 (Ressource temporairement non 
disponible) on X server :0.
  Oct 29 18:23:10 choupchoup acpid: client 815[0:0] has disconnected
  Oct 29 18:23:10 choupchoup acpid: client connected from 3456[0:0]
  Oct 29 18:23:10 choupchoup acpid: 1 client rule loaded
  Oct 29 18:23:10 choupchoup org.freedesktop.Notifications[1349]: loading icon 
'notification-nm-no-connection' caused error: 'L'icône « 
notification-nm-no-connection » n'est pas présente dans le thème 
ubuntu-mono-dark'loading icon 'notification-nm-device-wired' caused error: 
'L'icône « notification-nm-device-wired » n'est pas présente dans le thème 
ubuntu-mono-dark'
  Oct 29 18:23:10 choupchoup gnome-session[1565]: (deja-dup-monitor:2092): 
GVFS-RemoteVolumeMonitor-WARNING **: Owner of volume monitor 
org.gtk.Private.UDisks2VolumeMonitor disconnected from the bus; removing 
drives/volumes/mounts
  Oct 29 18:23:10 choupchoup gnome-session[1565]: (deja-dup-monitor:2092): 
GVFS-RemoteVolumeMonitor-WARNING **: Owner of volume monitor 
org.gtk.Private.GPhoto2VolumeMonitor disconnected from the bus; removing 
drives/volumes/mounts
  Oct 29 18:23:10 choupchoup gnome-session[1565]: (deja-dup-monitor:2092): 
GVFS-RemoteVolumeMonitor-WARNING **: Owner of volume monitor 
org.gtk.Private.MTPVolumeMonitor disconnected from the bus; removing 
drives/volumes/mounts
  Oct 29 18:23:10 choupchoup gnome-session[1565]: (deja-dup-monitor:2092): 
GVFS-RemoteVolumeMonitor-WARNING **: Owner of volume monitor 
org.gtk.Private.AfcVolumeMonitor disconnected from the bus; removing 
drives/volumes/mounts
  Oct 29 18:23:10 choupchoup gnome-session[1565]: gnome-session[1565]: 
GLib-GIO-WARNING: Error releasing name org.gnome.SessionManager: The connection 
is closed
  Oct 29 18:23:10 choupchoup gnome-session[1565]: GLib-GIO-WARNING: Error 
releasing name org.gnome.SessionManager: The connection is closed
  Oct 29 18:23:10 choupchoup org.gnome.zeitgeist.Engine[1349]: 
(zeitgeist-daemon:1902): GLib-GIO-WARNING **: Error releasing name 
org.gnome.zeitgeist.Engine: The connection is closed
  Oct 29 18:23:10 choupchoup org.gnome.zeitgeist.Engine[1349]: 
#033[31m[17:23:10.094000 WARNING]#033[0m zeitgeist-daemon.vala:449: The 
connection is closed
  Oct 29 18:23:10 choupchoup org.gnome.zeitgeist.SimpleIndexer[1349]: 
(zeitgeist-fts:1911): GLib-GIO-WARNING **: Error releasing name 
org.gnome.zeitgeist.SimpleIndexer: The connection is closed
  Oct 29 18:23:10 choupchoup 

[Touch-packages] [Bug 1508766] Re: /etc/machine-id not created if missing

2015-10-29 Thread Jason Gerard DeRose
Simon,

Also,  I just tested with an empty /etc/machine-id file... in this case,
systemd does correctly create a write a random machine-id.

Which kinda makes me wonder if systemd is erroneously concluding the
rootfs is mounted read-write when the /etc/machine-id file is missing
altogether.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to systemd in Ubuntu.
https://bugs.launchpad.net/bugs/1508766

Title:
  /etc/machine-id not created if missing

Status in systemd package in Ubuntu:
  New

Bug description:
  If /etc/machine-id is missing at boot, systemd does not create it.

  I came across lp:1387090 in which Martin Pitt mentions that it should
  be created if missing, but is unsure why this doesn't work.

  I'm likewise unsure why it doesn't work, but this bit from dmesg makes
  me think it *might* be because systemd is trying to do so while the
  rootfs is still mounted read-only, before it gets remounted read-
  write:

  [   19.240451] systemd[1]: System cannot boot: Missing /etc/machine-id and 
/etc is mounted read-only.
  [   19.240464] systemd[1]: Booting up is supported only when:
  [   19.240466] systemd[1]: 1) /etc/machine-id exists and is populated.
  [   19.240467] systemd[1]: 2) /etc/machine-id exists and is empty.
  [   19.240468] systemd[1]: 3) /etc/machine-id is missing and /etc is writable.

  A missing /etc/machine-id file has broad consequences for the boot
  process. As one example, the Journal Service doesn't get started.

  This problem appears to have greater impact now that on Wily (desktop)
  /var/lib/dbus/machine-id is a symlink to /etc/machine-id. Previously
  the system dbus instance would generate the machine-id with dbus-
  uidgen if the file was missing, but on Wily desktop it wont.

  Note that on Wily server /var/lib/dbus/machine-id is a regular file,
  is not a symlink to /etc/machine-id. I filed lp:1508697 about this
  separate issue as it seems strange for this to be different between
  Wily desktop and server.

  Thanks!

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: systemd 225-1ubuntu9
  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: Wed Oct 21 19:57:58 2015
  JournalErrors:
   No journal files were found.
   -- No entries --
  MachineType: System76, Inc. Gazelle Professional
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-16-generic 
root=UUID=424ed0f3-306d-4302-b58c-6b1e7adb7c74 ro quiet splash vt.handoff=7
  SourcePackage: systemd
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 05/16/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 4.6.5
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: Gazelle Professional
  dmi.board.vendor: System76, Inc.
  dmi.board.version: gazp7
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 9
  dmi.chassis.vendor: No Enclosure
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr4.6.5:bd05/16/2012:svnSystem76,Inc.:pnGazelleProfessional:pvrgazp7:rvnSystem76,Inc.:rnGazelleProfessional:rvrgazp7:cvnNoEnclosure:ct9:cvrN/A:
  dmi.product.name: Gazelle Professional
  dmi.product.version: gazp7
  dmi.sys.vendor: System76, Inc.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1510250] Re: screen comes on without interaction

2015-10-29 Thread kevin gunn
I've witnessed this so often on the N7, i'm confident in saying - no running 
apps (just dash), b/c i often have just flashed the device, become distracted 
with other work, and left it sitting - and notice it light up.
It always autodims in ~1min, i suspect the inactivity timer.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity-system-compositor in
Ubuntu.
https://bugs.launchpad.net/bugs/1510250

Title:
  screen comes on without interaction

Status in Canonical System Image:
  Confirmed
Status in powerd:
  New
Status in unity-system-compositor package in Ubuntu:
  Confirmed

Bug description:
  Pat and I just discussing.
  Pat has seen this on MX4, I've seen this very consistently on Nexus7.
  I would say the Nexus7 screen would turn on by itself every couple of hours 
or so.

  MX4 running rc-proposed r145, phone was plugged in and charging

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1499039] Re: compositing never stops when external monitor is connected

2015-10-29 Thread Alberto Aguirre
The issue is the following,

taking just one active surface only visible in display A not display B

- compositor A consumes surface ready buffer. The buffer queue associated with 
the surface now has put that ready buffer into a "current compositor buffer" - 
i.e. it's the buffer that the compositor will use if there's another 
compositing pass and no other ready buffers are available.
-- compositor A asks if there are any more ready buffers. 
--- BufferQueue returns 0 ready buffers.

a. compositor B runs, figures out there are no visible surfaces for its area so 
doesn't consume anything from the buffer queue.
b. compositor B asks buffer queue if there are more ready buffers
c. buffer queue says 1 buffer is available - because it didn't consume the 
ready buffer as it wasn't visible on it.
d. repeat a-c indefinitely until surface actually is visible in display B

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to mir in Ubuntu.
https://bugs.launchpad.net/bugs/1499039

Title:
  compositing never stops when external monitor is connected

Status in Mir:
  In Progress
Status in mir package in Ubuntu:
  New

Bug description:
  Start the following with no external display:

  sudo mir_demo_server --arw-file --display-config=sidebyside --window-manager 
system-compositor --hwc-report log
  mir_demo_server --host-socket /tmp/mir_socket -f /tmp/nested_mir 
--display-config=sidebyside

  After hotplugging an external display, the compositor loop never stops
  compositing as evidenced by the root server hwc logs.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1511439] Re: webbrowser-app apparmor policy fails to load on desktop

2015-10-29 Thread John Johansen
I can confirm, I am seeing this as well in testing

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
https://bugs.launchpad.net/bugs/1511439

Title:
  webbrowser-app apparmor policy fails to load on desktop

Status in webbrowser-app package in Ubuntu:
  New

Bug description:
  $ sudo apparmor_parser -r /etc/apparmor.d/usr.bin.webbrowser-app
  AppArmor parser error for /etc/apparmor.d/usr.bin.webbrowser-app in 
/etc/apparmor.d/usr.bin.webbrowser-app at line 26: Could not open 
'/usr/share/apparmor/hardware/graphics.d'
  $
  $ sudo aa-status|grep webbrowser
  $

  This was tested on xenial but affects wily too if it is shipping the
  policy.

  The problem is that apparmor-easyprof-ubuntu normally ships these 
directories, but it is not installed by default on the desktop image. I suggest 
shipping these empty directories via the webbrowser-app's packaging:
  - /usr/share/apparmor/hardware/audio.d
  - /usr/share/apparmor/hardware/graphics.d
  - /usr/share/apparmor/hardware/video.d

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1511495] Re: lxc 1.0.7-0ubuntu0.9 has buggy apparmor profiles

2015-10-29 Thread JuanJo Ciarlante
** Changed in: lxc (Ubuntu)
   Status: New => Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to lxc in Ubuntu.
https://bugs.launchpad.net/bugs/1511495

Title:
  lxc 1.0.7-0ubuntu0.9 has buggy apparmor profiles

Status in lxc package in Ubuntu:
  Invalid

Bug description:
  lxc packages:
   *** 1.0.7-0ubuntu0.9 0
  500 http://archive.ubuntu.com//ubuntu/ trusty-updates/main amd64 
Packages

  lxc apparmor profiles loading fails with:
  root@host:~# apparmor_parser -r /etc/apparmor.d/lxc/lxc-default-with-mounting 
  Found reference to variable PROC, but is never declared
  root@host:~# echo $?
  1
  root@host:~# aa-enforce /etc/apparmor.d/lxc/lxc-default-with-mounting 
  [...]
  raise apparmor.AppArmorException(cmd_info[1])
  apparmor.common.AppArmorException: 'Found reference to variable PROC, but is 
never declared\n'

  FYI adding '#include '  fixes it.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1511343] Re: Xorg crash

2015-10-29 Thread SlavikZ
It looks like this bug: https://bugs.launchpad.net/ubuntu/+source
/xserver-xorg-video-intel/+bug/1501468

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1511343

Title:
  Xorg crash

Status in xorg package in Ubuntu:
  Confirmed

Bug description:
  Every time I use LibreOffice and try to resize the window (which
  starts as full screen) Xorg produces a segfault and returns me to the
  login screen. This is easy to reproduce and is not document dependent
  - it happens with a blank document in any of the LibreOffice
  applications.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: xorg 1:7.7+7ubuntu4
  ProcVersionSignature: Ubuntu 4.2.0-16.19-generic 4.2.3
  Uname: Linux 4.2.0-16-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.19.1-0ubuntu4
  Architecture: amd64
  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: Thu Oct 29 12:10:23 2015
  DistUpgraded: 2015-10-23 01:30:00,161 DEBUG enabling apt cron job
  DistroCodename: wily
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 4th Gen Core Processor Integrated Graphics Controller 
[8086:0416] (rev 06) (prog-if 00 [VGA controller])
 Subsystem: Lenovo Device [17aa:3978]
  InstallationDate: Installed on 2014-08-08 (446 days ago)
  InstallationMedia: Ubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140722.2)
  MachineType: LENOVO 20238
  ProcEnviron:
   LANGUAGE=en_GB:en
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-16-generic.efi.signed 
root=UUID=f9669215-9068-4c99-b70f-dd9c19318650 ro quiet splash vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  Title: Xorg crash
  UpgradeStatus: Upgraded to wily on 2015-10-23 (6 days ago)
  dmi.bios.date: 04/18/2014
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 79CN48WW(V3.07)
  dmi.board.asset.tag: No Asset Tag
  dmi.board.name: INVALID
  dmi.board.vendor: LENOVO
  dmi.board.version: 31900058Std
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo G510
  dmi.modalias: 
dmi:bvnLENOVO:bvr79CN48WW(V3.07):bd04/18/2014:svnLENOVO:pn20238:pvrLenovoG510:rvnLENOVO:rnINVALID:rvr31900058Std:cvnLENOVO:ct10:cvrLenovoG510:
  dmi.product.name: 20238
  dmi.product.version: Lenovo G510
  dmi.sys.vendor: LENOVO
  version.compiz: compiz 1:0.9.12.2+15.10.20151015-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.64-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.0.2-1ubuntu4
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.0.2-1ubuntu4
  version.xserver-xorg-core: xserver-xorg-core 2:1.17.2-1ubuntu9
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.2-1ubuntu1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:7.5.0+git20150819-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20150808-0ubuntu4
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.11-1ubuntu3
  xserver.bootTime: Thu Oct 29 12:03:07 2015
  xserver.configfile: default
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id   18258 
   vendor SDC
  xserver.version: 2:1.17.2-1ubuntu9

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1511495] [NEW] lxc 1.0.7-0ubuntu0.9 has buggy apparmor profiles

2015-10-29 Thread JuanJo Ciarlante
Public bug reported:

lxc packages:
 *** 1.0.7-0ubuntu0.9 0
500 http://archive.ubuntu.com//ubuntu/ trusty-updates/main amd64 
Packages

lxc apparmor profiles loading fails with:
root@host:~# apparmor_parser -r /etc/apparmor.d/lxc/lxc-default-with-mounting 
Found reference to variable PROC, but is never declared
root@host:~# echo $?
1
root@host:~# aa-enforce /etc/apparmor.d/lxc/lxc-default-with-mounting 
[...]
raise apparmor.AppArmorException(cmd_info[1])
apparmor.common.AppArmorException: 'Found reference to variable PROC, but is 
never declared\n'

FYI adding '#include '  fixes it.

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


** Tags: canonical-bootstack

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to lxc in Ubuntu.
https://bugs.launchpad.net/bugs/1511495

Title:
  lxc 1.0.7-0ubuntu0.9 has buggy apparmor profiles

Status in lxc package in Ubuntu:
  New

Bug description:
  lxc packages:
   *** 1.0.7-0ubuntu0.9 0
  500 http://archive.ubuntu.com//ubuntu/ trusty-updates/main amd64 
Packages

  lxc apparmor profiles loading fails with:
  root@host:~# apparmor_parser -r /etc/apparmor.d/lxc/lxc-default-with-mounting 
  Found reference to variable PROC, but is never declared
  root@host:~# echo $?
  1
  root@host:~# aa-enforce /etc/apparmor.d/lxc/lxc-default-with-mounting 
  [...]
  raise apparmor.AppArmorException(cmd_info[1])
  apparmor.common.AppArmorException: 'Found reference to variable PROC, but is 
never declared\n'

  FYI adding '#include '  fixes it.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1511496] [NEW] Synaptics touchpad pastes when clicked in the top-right corner

2015-10-29 Thread Ethan Trewhitt
Public bug reported:

When I tap the Synaptics touchpad of my laptop, the contents of the
clipboard are pasted. It's exactly as if I typed "Ctrl-V" in the current
window. I see no way in the touchpad settings to disable this behavior,
so it seems like a bug.

Action taken: tap the touchpad in the top right of the touchpad
Expected result: the mouse is clicked at the current location
Erroneous result: the clipboard is pasted into the current application

This is a brand new Dell Latitude E7450 running Xubuntu Trusty
(Description: Ubuntu 14.04.3 LTS, Release: 14.04).

Here is the output of apt-cache:

xserver-xorg-input-synaptics:
  Installed: 1.7.4-0ubuntu1
  Candidate: 1.7.4-0ubuntu1
  Version table:
 *** 1.7.4-0ubuntu1 0
500 http://mirror.us.leaseweb.net/ubuntu/ trusty/main amd64 Packages
100 /var/lib/dpkg/status

Note that this seems to be the exact same bug as was reported in
#1264713, but that bug is permanently closed and I was asked to create a
new issue.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: xorg 1:7.7+1ubuntu8.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.18
Architecture: amd64
Date: Thu Oct 29 14:32:22 2015
InstallationDate: Installed on 2015-10-16 (13 days ago)
InstallationMedia: Xubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 (20140723)
ProcEnviron:
 LANGUAGE=en_US
 TERM=xterm
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: xorg
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug trusty

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1511496

Title:
  Synaptics touchpad pastes when clicked in the top-right corner

Status in xorg package in Ubuntu:
  New

Bug description:
  When I tap the Synaptics touchpad of my laptop, the contents of the
  clipboard are pasted. It's exactly as if I typed "Ctrl-V" in the
  current window. I see no way in the touchpad settings to disable this
  behavior, so it seems like a bug.

  Action taken: tap the touchpad in the top right of the touchpad
  Expected result: the mouse is clicked at the current location
  Erroneous result: the clipboard is pasted into the current application

  This is a brand new Dell Latitude E7450 running Xubuntu Trusty
  (Description: Ubuntu 14.04.3 LTS, Release: 14.04).

  Here is the output of apt-cache:

  xserver-xorg-input-synaptics:
Installed: 1.7.4-0ubuntu1
Candidate: 1.7.4-0ubuntu1
Version table:
   *** 1.7.4-0ubuntu1 0
  500 http://mirror.us.leaseweb.net/ubuntu/ trusty/main amd64 Packages
  100 /var/lib/dpkg/status

  Note that this seems to be the exact same bug as was reported in
  #1264713, but that bug is permanently closed and I was asked to create
  a new issue.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.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.18
  Architecture: amd64
  Date: Thu Oct 29 14:32:22 2015
  InstallationDate: Installed on 2015-10-16 (13 days ago)
  InstallationMedia: Xubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140723)
  ProcEnviron:
   LANGUAGE=en_US
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: xorg
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1511477] Re: Search field is cleared after open the contact view

2015-10-29 Thread Renato Araujo Oliveira Filho
** Summary changed:

- Search field get cleared after open the contact view
+ Search field is cleared after open the contact view

** Branch linked: lp:~renatofilho/address-book-app/fix-1511477

** Changed in: address-book-app (Ubuntu)
   Status: New => In Progress

** Changed in: address-book-app (Ubuntu)
 Assignee: (unassigned) => Renato Araujo Oliveira Filho (renatofilho)

** Changed in: address-book-app (Ubuntu)
   Importance: Undecided => Medium

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to address-book-app in
Ubuntu.
https://bugs.launchpad.net/bugs/1511477

Title:
  Search field is cleared after open the contact view

Status in Ubuntu UX:
  New
Status in address-book-app package in Ubuntu:
  In Progress

Bug description:
  How to reproduce:
  

  1- Open Contacts app
  2 - Click on search button
  3 - Type a text to serch
  4 - Click in a contact from the list
  5 - After the contact view page appears click on back button

  Expected behavior
  ===
  The search still active with the previous text

  Current behavior
  ===
  The search was cancelled and the list is back to normal state

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1508766] Re: /etc/machine-id not created if missing

2015-10-29 Thread Jason Gerard DeRose
Simon,

I've never really dug into initramfs-tools enough to know for sure, but
my guess has always been that the rootfs got remounted based on what's
in /etc/fstab, which as far as I know is handled by systemd. But perhaps
the initramfs remounts the rootfs read-write, and then it is remounted a
3rd time based on what's in /etc/fstab? (Which could technically be
read-only if the ro option was specific in fstab).

As far as our imaging system... yes, we have a golden image tarball
which we unpack after we create and mount the needed partitions. But I
already had work-arounds in our imaging system before I filed these
bugs, needed because we started shipping Ubuntu 15.10 the day it was
released :)

Thanks!

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to systemd in Ubuntu.
https://bugs.launchpad.net/bugs/1508766

Title:
  /etc/machine-id not created if missing

Status in systemd package in Ubuntu:
  New

Bug description:
  If /etc/machine-id is missing at boot, systemd does not create it.

  I came across lp:1387090 in which Martin Pitt mentions that it should
  be created if missing, but is unsure why this doesn't work.

  I'm likewise unsure why it doesn't work, but this bit from dmesg makes
  me think it *might* be because systemd is trying to do so while the
  rootfs is still mounted read-only, before it gets remounted read-
  write:

  [   19.240451] systemd[1]: System cannot boot: Missing /etc/machine-id and 
/etc is mounted read-only.
  [   19.240464] systemd[1]: Booting up is supported only when:
  [   19.240466] systemd[1]: 1) /etc/machine-id exists and is populated.
  [   19.240467] systemd[1]: 2) /etc/machine-id exists and is empty.
  [   19.240468] systemd[1]: 3) /etc/machine-id is missing and /etc is writable.

  A missing /etc/machine-id file has broad consequences for the boot
  process. As one example, the Journal Service doesn't get started.

  This problem appears to have greater impact now that on Wily (desktop)
  /var/lib/dbus/machine-id is a symlink to /etc/machine-id. Previously
  the system dbus instance would generate the machine-id with dbus-
  uidgen if the file was missing, but on Wily desktop it wont.

  Note that on Wily server /var/lib/dbus/machine-id is a regular file,
  is not a symlink to /etc/machine-id. I filed lp:1508697 about this
  separate issue as it seems strange for this to be different between
  Wily desktop and server.

  Thanks!

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: systemd 225-1ubuntu9
  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: Wed Oct 21 19:57:58 2015
  JournalErrors:
   No journal files were found.
   -- No entries --
  MachineType: System76, Inc. Gazelle Professional
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-16-generic 
root=UUID=424ed0f3-306d-4302-b58c-6b1e7adb7c74 ro quiet splash vt.handoff=7
  SourcePackage: systemd
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 05/16/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 4.6.5
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: Gazelle Professional
  dmi.board.vendor: System76, Inc.
  dmi.board.version: gazp7
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 9
  dmi.chassis.vendor: No Enclosure
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr4.6.5:bd05/16/2012:svnSystem76,Inc.:pnGazelleProfessional:pvrgazp7:rvnSystem76,Inc.:rnGazelleProfessional:rvrgazp7:cvnNoEnclosure:ct9:cvrN/A:
  dmi.product.name: Gazelle Professional
  dmi.product.version: gazp7
  dmi.sys.vendor: System76, Inc.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1499039] Re: compositing never stops when external monitor is connected

2015-10-29 Thread Alberto Aguirre
Happens with mesa too with a side-by-side display config.


** Summary changed:

- [android] compositing never stops when external monitor is connected
+ compositing never stops when external monitor is connected

** Tags removed: android

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to mir in Ubuntu.
https://bugs.launchpad.net/bugs/1499039

Title:
  compositing never stops when external monitor is connected

Status in Mir:
  In Progress
Status in mir package in Ubuntu:
  New

Bug description:
  Start the following with no external display:

  sudo mir_demo_server --arw-file --display-config=sidebyside --window-manager 
system-compositor --hwc-report log
  mir_demo_server --host-socket /tmp/mir_socket -f /tmp/nested_mir 
--display-config=sidebyside

  After hotplugging an external display, the compositor loop never stops
  compositing as evidenced by the root server hwc logs.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1499070] Re: telepathy-gabble crashed with signal 5 in g_object_unref()

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

** Attachment removed: "CoreDump.gz"
   
https://bugs.launchpad.net/ubuntu/+source/telepathy-gabble/+bug/1499070/+attachment/4472641/+files/CoreDump.gz

** Information type changed from Private Security to Public

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to telepathy-gabble in
Ubuntu.
https://bugs.launchpad.net/bugs/1499070

Title:
  telepathy-gabble crashed with signal 5 in g_object_unref()

Status in telepathy-gabble package in Ubuntu:
  New

Bug description:
  Stack flash player

  ProblemType: Crash
  DistroRelease: Ubuntu 15.10
  Package: telepathy-gabble 0.18.3-1
  ProcVersionSignature: Ubuntu 4.2.0-10.12-generic 4.2.0
  Uname: Linux 4.2.0-10-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.18.1-0ubuntu1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Wed Sep 23 23:37:02 2015
  ExecutablePath: /usr/lib/telepathy/telepathy-gabble
  InstallationDate: Installed on 2015-09-17 (6 days ago)
  InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  ProcCmdline: /usr/lib/telepathy/telepathy-gabble
  Signal: 5
  SourcePackage: telepathy-gabble
  StacktraceTop:
   ?? ()
   g_object_unref () from /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
   ?? ()
   g_object_unref () from /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
   g_signal_emit_valist () from /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
  Title: telepathy-gabble crashed with signal 5 in g_object_unref()
  UpgradeStatus: Upgraded to wily on 2015-09-20 (3 days ago)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1505858] Re: Segmentation fault in JPXStream::readTilePartData(JPXStream.cc:2142)

2015-10-29 Thread Marc Deslauriers
** Bug watch added: freedesktop.org Bugzilla #92450
   https://bugs.freedesktop.org/show_bug.cgi?id=92450

** Also affects: poppler via
   https://bugs.freedesktop.org/show_bug.cgi?id=92450
   Importance: Unknown
   Status: Unknown

** Information type changed from Private Security to Public Security

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

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to poppler in Ubuntu.
https://bugs.launchpad.net/bugs/1505858

Title:
  Segmentation fault in JPXStream::readTilePartData(JPXStream.cc:2142)

Status in Poppler:
  Unknown
Status in poppler package in Ubuntu:
  Confirmed

Bug description:
  Hello,

  I've found some vulnerabilities in pdf viewers using famous library
  named poppler such as evince, xpdf, okular and so on.

  This is my short report and I used latest version of poppler (poppler-0.37.0).
  Plus I've attached a finding as comment below

  To be honest, I already posted this bug on popplers' and developer answered 
the question (https://bugs.freedesktop.org/show_bug.cgi?id=92450#c1).
  As far as I can tell, all of these software what I tested such as evince, 
xpdf okular on Ubuntu system have same problem.
  So I'd like to post this issue in here.

  in details:

  alex@vm64 $ uname -a
  Linux vm64 4.2.0-16-generic #19-Ubuntu SMP Thu Oct 8 15:35:06 UTC 2015 x86_64 
x86_64 x86_64 GNU/Linux

  alex@vm64 $ cat /etc/lsb-release
  DISTRIB_ID=Ubuntu
  DISTRIB_RELEASE=15.10
  DISTRIB_CODENAME=wily
  DISTRIB_DESCRIPTION="Ubuntu Wily Werewolf (development branch)"

  okular:
    Installed: 4:15.08.1-0ubuntu1
    Candidate: 4:15.08.1-0ubuntu1
    Version table:
   *** 4:15.08.1-0ubuntu1 0
  500 http://kr.archive.ubuntu.com/ubuntu/ wily/universe amd64 Packages
  100 /var/lib/dpkg/status

  xpdf:
    Installed: 3.03-17ubuntu2
    Candidate: 3.03-17ubuntu2
    Version table:
   *** 3.03-17ubuntu2 0
  500 http://kr.archive.ubuntu.com/ubuntu/ wily/universe amd64 Packages
  100 /var/lib/dpkg/status

  evince:
    Installed: 3.16.1-0ubuntu1
    Candidate: 3.16.1-0ubuntu1
    Version table:
   *** 3.16.1-0ubuntu1 0
  500 http://kr.archive.ubuntu.com/ubuntu/ wily/main amd64 Packages
  100 /var/lib/dpkg/status

  libpoppler-dev:
    Installed: 0.33.0-0ubuntu3
    Candidate: 0.33.0-0ubuntu3
    Version table:
   *** 0.33.0-0ubuntu3 0
  500 http://kr.archive.ubuntu.com/ubuntu/ wily/main amd64 Packages
  100 /var/lib/dpkg/status

  + I used latest version of poppler too.

  Application: Okular (okular), signal: Segmentation fault
  Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
  pthread_cond_wait@@GLIBC_2.3.2 () at 
../sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185
  [Current thread is 1 (Thread 0x7f640ae42840 (LWP 6180))]

  Thread 4 (Thread 0x7f63f36f1700 (LWP 6184)):
  #0  0x7f6407db6743 in select () at ../sysdeps/unix/syscall-template.S:81
  #1  0x7f64087ed51f in ?? () from /usr/lib/x86_64-linux-gnu/libQtCore.so.4
  #2  0x7f6408702d1c in ?? () from /usr/lib/x86_64-linux-gnu/libQtCore.so.4
  #3  0x7f640537c6aa in start_thread (arg=0x7f63f36f1700) at 
pthread_create.c:333
  #4  0x7f6407dbfeed in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:109

  Thread 3 (Thread 0x7f63f253c700 (LWP 6200)):
  [KCrash Handler]
  #6  0x7f63f25f5619 in JPXStream::readTilePartData(unsigned int, unsigned 
int, bool) () from /usr/lib/x86_64-linux-gnu/libpoppler.so.52
  #7  0x7f63f25f6b73 in JPXStream::readTilePart() () from 
/usr/lib/x86_64-linux-gnu/libpoppler.so.52
  #8  0x7f63f25f7a77 in JPXStream::readCodestream(unsigned int) () from 
/usr/lib/x86_64-linux-gnu/libpoppler.so.52
  #9  0x7f63f25f9c95 in JPXStream::readBoxes() () from 
/usr/lib/x86_64-linux-gnu/libpoppler.so.52
  #10 0x7f63f25fa0d6 in JPXStream::reset() () from 
/usr/lib/x86_64-linux-gnu/libpoppler.so.52
  #11 0x7f63f25edbf9 in SplashOutputDev::drawImage(GfxState*, Object*, 
Stream*, int, int, GfxImageColorMap*, bool, int*, bool) () from 
/usr/lib/x86_64-linux-gnu/libpoppler.so.52
  #12 0x7f63f26419ca in Gfx::doImage(Object*, Stream*, bool) () from 
/usr/lib/x86_64-linux-gnu/libpoppler.so.52
  #13 0x7f63f2642ce8 in Gfx::opXObject(Object*, int) () from 
/usr/lib/x86_64-linux-gnu/libpoppler.so.52
  #14 0x7f63f263cffe in Gfx::go(bool) () from 
/usr/lib/x86_64-linux-gnu/libpoppler.so.52
  #15 0x7f63f263d4a0 in Gfx::display(Object*, bool) () from 
/usr/lib/x86_64-linux-gnu/libpoppler.so.52
  #16 0x7f63f2683255 in Page::displaySlice(OutputDev*, double, double, int, 
bool, bool, int, int, int, int, bool, bool (*)(void*), void*, bool (*)(Annot*, 
void*), void*, bool) () from /usr/lib/x86_64-linux-gnu/libpoppler.so.52
  #17 0x7f63f29dadc6 in Poppler::Page::renderToImage(double, double, int, 
int, int, int, Poppler::Page::Rotation) const () from 
/usr/lib/x86_64-linux-gnu/lib

[Touch-packages] [Bug 1506229] Re: package python3.4 3.4.3-1ubuntu1~14.04.3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

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

** Information type changed from Private Security to Public

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to python3.4 in Ubuntu.
https://bugs.launchpad.net/bugs/1506229

Title:
  package python3.4 3.4.3-1ubuntu1~14.04.3 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

Status in python3.4 package in Ubuntu:
  New

Bug description:
  It is not working.

  ProblemType: Package
  DistroRelease: Ubuntu 14.04
  Package: python3.4 3.4.3-1ubuntu1~14.04.3
  ProcVersionSignature: Ubuntu 3.19.0-30.33~14.04.1-generic 3.19.8-ckt6
  Uname: Linux 3.19.0-30-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.16
  Architecture: amd64
  Date: Wed Oct 14 16:37:02 2015
  DuplicateSignature: package:python3.4:3.4.3-1ubuntu1~14.04.3:subprocess 
installed post-installation script returned error exit status 1
  ErrorMessage: subprocess installed post-installation script returned error 
exit status 1
  InstallationDate: Installed on 2015-09-30 (14 days ago)
  InstallationMedia: Ubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64 (20150805)
  RelatedPackageVersions:
   dpkg 1.17.5ubuntu5.4
   apt  1.0.1ubuntu2.10
  SourcePackage: python3.4
  Title: package python3.4 3.4.3-1ubuntu1~14.04.3 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1509689] Re: the system running low graphics mode

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

** Information type changed from Private Security to Public

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1509689

Title:
  the system running low graphics mode

Status in xorg package in Ubuntu:
  New

Bug description:
  I installed ubuntu 4.14 with xfce, but the message "the system running
  low graphics mode" appears and now I can not get into the Graphical
  Ubuntu mode.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  ProcVersionSignature: Ubuntu 3.16.0-51.69~14.04.1-generic 3.16.7-ckt17
  Uname: Linux 3.16.0-51-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.14.1-0ubuntu3.16
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: None
  CurrentDesktop: XFCE
  Date: Sat Oct 24 15:35:57 2015
  DistUpgraded: Fresh install
  DistroCodename: trusty
  DistroVariant: ubuntu
  DkmsStatus: nvidia-304, 304.128, 3.16.0-51-generic, x86_64: installed
  GraphicsCard:
   Intel Corporation 2nd Generation Core Processor Family Integrated Graphics 
Controller [8086:0116] (rev 09) (prog-if 00 [VGA controller])
 Subsystem: Lenovo Device [17aa:3977]
  InstallationDate: Installed on 2015-03-13 (224 days ago)
  InstallationMedia: Ubuntu 14.04.2 LTS "Trusty Tahr" - Release amd64 
(20150218.1)
  MachineType: LENOVO 20149
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.16.0-51-generic 
root=UUID=45388c46-5638-4327-bdaf-25ee64a3f3ea ro quiet splash vt.handoff=7
  SourcePackage: xorg
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 12/19/2012
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 5ECN95WW(V9.00)
  dmi.board.asset.tag: No Asset Tag
  dmi.board.name: INVALID
  dmi.board.vendor: LENOVO
  dmi.board.version: 3194WIN8 STD SGL
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo G480
  dmi.modalias: 
dmi:bvnLENOVO:bvr5ECN95WW(V9.00):bd12/19/2012:svnLENOVO:pn20149:pvrLenovoG480:rvnLENOVO:rnINVALID:rvr3194WIN8STDSGL:cvnLENOVO:ct10:cvrLenovoG480:
  dmi.product.name: 20149
  dmi.product.version: Lenovo G480
  dmi.sys.vendor: LENOVO
  version.compiz: compiz 1:0.9.11.3+14.04.20150313-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.65+git20151019.3045523d-0ubuntu0ricotz~trusty
  version.libgl1-mesa-dri: libgl1-mesa-dri 
11.0.2+git20151008+11.0.b1230e3e-0ubuntu0ricotz~trusty
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 
11.0.2+git20151008+11.0.b1230e3e-0ubuntu0ricotz~trusty
  version.xserver-xorg-core: xserver-xorg-core 2:1.15.1-0ubuntu2.7
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.8.2-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20151015.6861391f-0ubuntu0sarvatt~trusty
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A
  xserver.bootTime: Sat Oct 24 15:28:08 2015
  xserver.configfile: default
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id   17740 
   vendor SEC
  xserver.version: 2:1.15.1-0ubuntu2.7

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1508873] Re: Music app not detecting SD card content after Phone Update:OTA-7

2015-10-29 Thread Alejandro J. Cura
** Changed in: mediascanner2 (Ubuntu)
   Importance: Undecided => High

** Changed in: mediascanner2 (Ubuntu)
 Assignee: (unassigned) => James Henstridge (jamesh)

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to mediascanner2 in Ubuntu.
https://bugs.launchpad.net/bugs/1508873

Title:
  Music app not detecting SD card content after Phone Update:OTA-7

Status in Canonical System Image:
  Confirmed
Status in Ubuntu Music App:
  New
Status in mediascanner2 package in Ubuntu:
  New

Bug description:
  After the most recent update my SD card content is no longer detected
  by the Music app, able to browse the media fine using File Manager app
  as previously. I verified the problem is related to the app by
  installing PhoenixPlayer app which detects the content fine. Currently
  using the BQ Aquaris 4.5 handset

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1510998] Re: Xorg crashes with segfault on 15.10

2015-10-29 Thread Johan Tol
I have exactly the same problem since upgrading to 15.10. For me
reproducable in LibreOffice 5.0.3.2 Calc by a right mouse click followed
by selecting "Format Cells...".

Xorg.0.log.old:
[   674.409] (EE) Backtrace:
[   674.409] (EE) 0: /usr/bin/X (xorg_backtrace+0x4e) [0x55d163d7262e]
[   674.409] (EE) 1: /usr/bin/X (0x55d163bbe000+0x1b8999) [0x55d163d76999]
[   674.409] (EE) 2: /lib/x86_64-linux-gnu/libc.so.6 (0x7f82b6c33000+0x352f0) 
[0x7f82b6c682f0]
[   674.409] (EE) 3: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f82b300a000+0x24f18) [0x7f82b302ef18]
[   674.409] (EE) 4: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f82b300a000+0x26157) [0x7f82b3030157]
[   674.409] (EE) 5: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f82b300a000+0x2b4b1) [0x7f82b30354b1]
[   674.409] (EE) 6: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f82b300a000+0x804e4) [0x7f82b308a4e4]
[   674.409] (EE) 7: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f82b300a000+0x80e2c) [0x7f82b308ae2c]
[   674.409] (EE) 8: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f82b300a000+0x82e1a) [0x7f82b308ce1a]
[   674.409] (EE) 9: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f82b300a000+0x4197c) [0x7f82b304b97c]
[   674.409] (EE) 10: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f82b300a000+0x59906) [0x7f82b3063906]
[   674.409] (EE) 11: /usr/bin/X (_CallCallbacks+0x34) [0x55d163c1b654]
[   674.409] (EE) 12: /usr/bin/X (WriteToClient+0x244) [0x55d163d76274]
[   674.409] (EE) 13: /usr/bin/X (WriteEventsToClient+0x1e2) [0x55d163c21502]
[   674.409] (EE) 14: /usr/bin/X (0x55d163bbe000+0xf495a) [0x55d163cb295a]
[   674.409] (EE) 15: /usr/bin/X (0x55d163bbe000+0xf5ef5) [0x55d163cb3ef5]
[   674.409] (EE) 16: /usr/bin/X (0x55d163bbe000+0x5818f) [0x55d163c1618f]
[   674.409] (EE) 17: /usr/bin/X (0x55d163bbe000+0x5c34b) [0x55d163c1a34b]
[   674.409] (EE) 18: /lib/x86_64-linux-gnu/libc.so.6 (__libc_start_main+0xf0) 
[0x7f82b6c53a40]
[   674.409] (EE) 19: /usr/bin/X (_start+0x29) [0x55d163c046c9]
[   674.409] (EE)
[   674.409] (EE) Segmentation fault at address 0x0
[   674.409] (EE)
Fatal server error:
[   674.409] (EE) Caught signal 11 (Segmentation fault). Server aborting

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1510998

Title:
  Xorg crashes with segfault on 15.10

Status in xorg package in Ubuntu:
  New

Bug description:
  I updated my system from 15.04 to 15.10 yesterday. Since then the X
  server has already crashed 5 times, which renders the system close to
  unusable for me.

  The corresponding messages in Xorg.0.log.old are:
  [ 12125.023] (EE)
  [ 12125.023] (EE) Backtrace:
  [ 12125.023] (EE) 0: /usr/bin/X (xorg_backtrace+0x4e) [0x55953d82762e]
  [ 12125.023] (EE) 1: /usr/bin/X (0x55953d673000+0x1b8999) [0x55953d82b999]
  [ 12125.023] (EE) 2: /lib/x86_64-linux-gnu/libc.so.6 (0x7f7c10e7b000+0x352f0) 
[0x7f7c10eb02f0]
  [ 12125.023] (EE) 3: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f7c0d252000+0x24edc) [0x7f7c0d276edc]
  [ 12125.023] (EE) 4: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f7c0d252000+0x26157) [0x7f7c0d278157]
  [ 12125.023] (EE) 5: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f7c0d252000+0x4a1e8) [0x7f7c0d29c1e8]
  [ 12125.023] (EE) 6: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f7c0d252000+0x4a7ec) [0x7f7c0d29c7ec]
  [ 12125.023] (EE) 7: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f7c0d252000+0x59103) [0x7f7c0d2ab103]
  [ 12125.023] (EE) 8: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f7c0d252000+0x593aa) [0x7f7c0d2ab3aa]
  [ 12125.023] (EE) 9: /usr/bin/X (0x55953d673000+0x13fb73) [0x55953d7b2b73]
  [ 12125.023] (EE) 10: /usr/bin/X (0x55953d673000+0x54ce3) [0x55953d6c7ce3]
  [ 12125.023] (EE) 11: /usr/bin/X (0x55953d673000+0x5818f) [0x55953d6cb18f]
  [ 12125.023] (EE) 12: /usr/bin/X (0x55953d673000+0x5c34b) [0x55953d6cf34b]
  [ 12125.023] (EE) 13: /lib/x86_64-linux-gnu/libc.so.6 
(__libc_start_main+0xf0) [0x7f7c10e9ba40]
  [ 12125.023] (EE) 14: /usr/bin/X (_start+0x29) [0x55953d6b96c9]
  [ 12125.023] (EE)
  [ 12125.023] (EE) Segmentation fault at address 0x7f7e141995e0
  [ 12125.023] (EE)
  Fatal server error:
  [ 12125.023] (EE) Caught signal 11 (Segmentation fault). Server aborting

  I have attached the syslog file. The relevant messages for the three crashes 
from today can be found  at:
  Oct 28 15:56:36
  Oct 28 12:06:58
  Oct 28 09:08:51

  Unfortunately I have no clue how to reproduce the segfault. The last
  crash happened while I was reading some document and I did not push
  any button, moved the mouse or anything...

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: xserver-xorg 1:7.7+7ubuntu4
  ProcVersionSignature: Ubuntu 4.2.0-16.19-generic 4.2.3
  Uname: Linux 4.2.0-16-generic x86_64
  ApportVersion: 2.19.1-0ubuntu4
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRu

[Touch-packages] [Bug 1511478] Re: Contact avatar is blurry when set for the first time

2015-10-29 Thread Renato Araujo Oliveira Filho
** Branch linked: lp:~renatofilho/address-book-app/fix-1511478

** Changed in: address-book-app (Ubuntu)
   Importance: Undecided => High

** Changed in: address-book-app (Ubuntu)
   Status: New => In Progress

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to address-book-app in
Ubuntu.
https://bugs.launchpad.net/bugs/1511478

Title:
  Contact avatar is blurry when set for the first time

Status in address-book-app package in Ubuntu:
  In Progress

Bug description:
  How to reproduce:
  
  1- Open Contacts app
  2 - Swipe from the bottom to create a new contact
  3 - Click on "+" icon to chose a new picture for the contact 
  4 - Select a new picture

  Expected behavior
  ===
  The selected picture appears on the avatar field

  Current behavior
  ===
  The selected picture appears on the avatar field but the resolution looks 
wrong

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1508873] Re: Music app not detecting SD card content after Phone Update:OTA-7

2015-10-29 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Importance: Undecided => High

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

** Changed in: canonical-devices-system-image
 Assignee: Pat McGowan (pat-mcgowan) => Alejandro J. Cura (alecu)

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to mediascanner2 in Ubuntu.
https://bugs.launchpad.net/bugs/1508873

Title:
  Music app not detecting SD card content after Phone Update:OTA-7

Status in Canonical System Image:
  Confirmed
Status in Ubuntu Music App:
  New
Status in mediascanner2 package in Ubuntu:
  New

Bug description:
  After the most recent update my SD card content is no longer detected
  by the Music app, able to browse the media fine using File Manager app
  as previously. I verified the problem is related to the app by
  installing PhoenixPlayer app which detects the content fine. Currently
  using the BQ Aquaris 4.5 handset

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1509902] Re: Empty entries in app-permissions section of privacy settings

2015-10-29 Thread Marc Deslauriers
** Package changed: ubuntu-system-settings (Ubuntu) => location-service
(Ubuntu)

** Information type changed from Private Security to Public Security

** Information type changed from Public Security to Public

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to location-service in
Ubuntu.
https://bugs.launchpad.net/bugs/1509902

Title:
  Empty entries in app-permissions section of privacy settings

Status in location-service package in Ubuntu:
  New

Bug description:
  Hello

  I noticed that there are empty entries in app permissions section of
  the privacy settings. The on/ off toggle is there but the entry itself
  is empty. It does not seem to negatively affect the operation  of the
  phone but it is confusing to the user. Please see the attached
  screenshot.

  I am using the latest stable release on the Meizu MX4 15.04 r6

  Not sure if the presence of this is a security issue too.

  Best

  Thomas

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1510048] Re: package lightdm 1.14.2-0ubuntu1.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

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

** Information type changed from Private Security to Public

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to lightdm in Ubuntu.
https://bugs.launchpad.net/bugs/1510048

Title:
  package lightdm 1.14.2-0ubuntu1.1 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

Status in lightdm package in Ubuntu:
  New

Bug description:
  I dont know anything

  ProblemType: Package
  DistroRelease: Ubuntu 15.04
  Package: lightdm 1.14.2-0ubuntu1.1
  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: Sun Oct 25 19:04:12 2015
  DuplicateSignature: package:lightdm:1.14.2-0ubuntu1.1:subprocess installed 
post-installation script returned error exit status 1
  ErrorMessage: subprocess installed post-installation script returned error 
exit status 1
  InstallationDate: Installed on 2015-06-20 (127 days ago)
  InstallationMedia: Ubuntu 14.10 "Utopic Unicorn" - Release amd64 (20141022.1)
  LightdmConfig:
   [SeatDefaults]
   autologin-guest=false
   autologin-user=ashwin
   autologin-user-timeout=0
   autologin-session=lightdm-autologin
  RelatedPackageVersions:
   dpkg 1.17.25ubuntu1
   apt  1.0.9.7ubuntu4.2
  SourcePackage: lightdm
  Title: package lightdm 1.14.2-0ubuntu1.1 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
  UpgradeStatus: Upgraded to vivid on 2015-07-02 (115 days ago)

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


  1   2   3   >