[Touch-packages] [Bug 1606555] Re: unity-greeter or any other greeter can not change keyboard layout

2016-08-14 Thread Klean
** Also affects: lightdm
   Importance: Undecided
   Status: New

** No longer affects: lightdm

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

Title:
  unity-greeter or any other greeter can not change keyboard layout

Status in lightdm package in Ubuntu:
  Confirmed

Bug description:
  After boot, from login screen , I can not change layout from keyboard
  by shortcut (ctrl+shift, alt+shift, Caps lock or any other I choose in
  keyboard settings)

  When locking screen by ctrl-alt-L, when I try to press shortcut keys
  lock screen disappears for a second showing my desktop, and appears
  again. Layout not changed also.

  Using mouse to switch layout via icon working good.

  I tried to change greeter (unity-greeter, lightdm-gtk-greeter) whith
  no effect.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: lightdm 1.18.2-0ubuntu1
  ProcVersionSignature: Ubuntu 4.4.0-31.50-generic 4.4.13
  Uname: Linux 4.4.0-31-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Tue Jul 26 16:05:37 2016
  InstallationDate: Installed on 2016-06-30 (25 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  SourcePackage: lightdm
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lightdm/+bug/1606555/+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 1433590] Re: apparmor dbus denial for org.freedesktop.Accounts and make Other vibrations work

2016-08-14 Thread Zsombor Egri
@zhang woh!!! It works!!! Thanks for that! We can finally
proceed on UITK and System Settings app side then.

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

Title:
  apparmor dbus denial for org.freedesktop.Accounts and make Other
  vibrations work

Status in Canonical System Image:
  In Progress
Status in apparmor-easyprof-ubuntu package in Ubuntu:
  Fix Released
Status in ubuntu-system-settings package in Ubuntu:
  Confirmed
Status in ubuntu-ui-toolkit package in Ubuntu:
  Confirmed
Status in usensord package in Ubuntu:
  In Progress

Bug description:
  This affects vivid and (somewhat recently?) 14.09.

  At some point, apps started to request access to
  org.freedesktop.Accounts for something, but I'm not sure what. It has
  been conjectured in this bug that it is due to vibration settings.
  Filing against ubuntu-system-settings for now, but please feel free to
  move to the correct package.

  This happens with webapps:
  Apr  7 08:42:17 ubuntu-phablet dbus[797]: apparmor="DENIED" 
operation="dbus_method_call"  bus="system" path="/org/freedesktop/Accounts" 
interface="org.freedesktop.DBus.Introspectable" member="Introspect" mask="send" 
name="org.freedesktop.Accounts" pid=2632 
profile="com.ubuntu.developer.webapps.webapp-facebook_webapp-facebook_1.0.26" 
peer_pid=1596 peer_profile="unconfined"
  Apr  7 08:42:17 ubuntu-phablet dbus[797]: apparmor="DENIED" 
operation="dbus_method_call"  bus="system" path="/org/freedesktop/Accounts" 
interface="org.freedesktop.Accounts" member="FindUserById" mask="send" 
name="org.freedesktop.Accounts" pid=2632 
profile="com.ubuntu.developer.webapps.webapp-facebook_webapp-facebook_1.0.26" 
peer_pid=1596 peer_profile="unconfined"

  and QML apps:
  Apr  7 08:43:40 ubuntu-phablet dbus[797]: apparmor="DENIED" 
operation="dbus_method_call"  bus="system" path="/org/freedesktop/Accounts" 
interface="org.freedesktop.DBus.Introspectable" member="Introspect" mask="send" 
name="org.freedesktop.Accounts" pid=3377 
profile="com.ubuntu.calculator_calculator_1.3.339" peer_pid=1596 
peer_profile="unconfined"
  Apr  7 08:43:40 ubuntu-phablet dbus[797]: apparmor="DENIED" 
operation="dbus_method_call"  bus="system" path="/org/freedesktop/Accounts" 
interface="org.freedesktop.Accounts" member="FindUserById" mask="send" 
name="org.freedesktop.Accounts" pid=3377 
profile="com.ubuntu.calculator_calculator_1.3.339" peer_pid=1596 
peer_profile="unconfined"

  The following rules allow the requested access:
dbus (send)
 bus=system
 path="/org/freedesktop/Accounts"
 interface="org.freedesktop.DBus.{Introspectable,Properties}"
 member=Introspect
 peer=(name=org.freedesktop.Accounts,label=unconfined),
dbus (send)
 bus=system
 path="/org/freedesktop/Accounts"
 interface="org.freedesktop.Accounts"
 member=FindUserById
 peer=(name=org.freedesktop.Accounts,label=unconfined),
dbus (send)
 bus=system
 path="/org/freedesktop/Accounts/User[0-9]*"
 interface="org.freedesktop.DBus.Properties"
 member=Get
 peer=(name=org.freedesktop.Accounts,label=unconfined),

  However, the above is too lenient and constitutes a privacy leak for
  apps. FindUserById could be used by a malicious app to enumerate
  usernames on multiuser systems and because we can't mediate method
  data with apparmor, the Get() method can be used to obtain any
  information provided by this interface.

  The following can be used to see what can be leaked to a malicious app:
  gdbus introspect --system -d org.freedesktop.Accounts -o 
/org/freedesktop/Accounts/User`id -u phablet`

  This can be solved in a couple of ways:
  1. add whatever information the app is trying to access to a new helper 
service that only exposes things that the app needs. This could be a single 
standalone service, perhaps something from ubuntu-system-settings, that could 
expose any number of things-- the current locale, if the locale changed, if the 
grid units changed, the vibration settings, etc. Since this service wouldn't 
have any sensitive information, you could use standard dbus 
properties/Get()/etc 
  2. add a new dbus API to an existing service such that apparmor rules can 
then be used to allow by method (eg, GetVibration() or something)

  I won't dictate the implementation except to mention that '1' seems
  like something generally useful and I believe that it was something
  the ubuntu-system-settings devs were already looking at for detecting
  locale changes without rebooting.


  Original description
  starting an app in vivid (image 135 on arale currently)

  produces a bunch of dbus denials in syslog ... (there is also a
  /dev/tty one but i think this is just because soemthing tries to write
  an error to console ... so transient)

  

[Touch-packages] [Bug 1544477] Re: No sound notification for new SMS (Ubuntu Touch)

2016-08-14 Thread Anupam
@Devid The issue reappeared and I tried everything you suggested. Here are the 
observations/outputs:
- Sound icon doesn't change while receiving an SMS
- I tried step 4 of your original suggestion (adjust volume after typing a 
number in dialer-app). While typing numbers dialer-app produced dialpad-tone as 
usual. But pressing volume buttons after that only changed the "speaker volume" 
which was already high.
- I seldom use apps which use audio.
- Output of 'pactl list sink-inputs' are attached herewith.

** Attachment added: "Output of 'pactl list sink-inputs' in two scenarios"
   
https://bugs.launchpad.net/ubuntu/+source/media-hub/+bug/1544477/+attachment/4721052/+files/output

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

Title:
  No sound notification for new SMS (Ubuntu Touch)

Status in Canonical System Image:
  Confirmed
Status in media-hub package in Ubuntu:
  Invalid
Status in pulseaudio package in Ubuntu:
  Incomplete

Bug description:
  I noticed for last 2-3 days there is no sound notification for a new
  SMS, but there's a blinking green LED notification. Also in the
  indicator menu the envelope icon turns green and the new SMS is listed
  as usual. Things are working alright for Telegram, Gmail etc.
  (sound+LED+indicator menu).

  Device: bq Aquaris E5 HD, Ubuntu 15.04 (OTA-9)

  UPDATE: Screenshots get silent too.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1544477/+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 1544477] Re: No sound notification for new SMS (Ubuntu Touch)

2016-08-14 Thread Anupam
@Devid also please have look at comment #69 by Vincas, it looks
interesting.

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

Title:
  No sound notification for new SMS (Ubuntu Touch)

Status in Canonical System Image:
  Confirmed
Status in media-hub package in Ubuntu:
  Invalid
Status in pulseaudio package in Ubuntu:
  Incomplete

Bug description:
  I noticed for last 2-3 days there is no sound notification for a new
  SMS, but there's a blinking green LED notification. Also in the
  indicator menu the envelope icon turns green and the new SMS is listed
  as usual. Things are working alright for Telegram, Gmail etc.
  (sound+LED+indicator menu).

  Device: bq Aquaris E5 HD, Ubuntu 15.04 (OTA-9)

  UPDATE: Screenshots get silent too.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1544477/+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 1575516] Re: Mir is just a black screen and mouse cursor on Nvidia GTX 900

2016-08-14 Thread Daniel van Vugt
Tried some more recent kernels... and the problems got worse: bug
1613158

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

Title:
  Mir is just a black screen and mouse cursor on Nvidia GTX 900

Status in Canonical System Image:
  New
Status in Mir:
  New
Status in mesa package in Ubuntu:
  Invalid
Status in mir package in Ubuntu:
  Confirmed

Bug description:
  Nvidia (using nouveau not binary drivers): Mir servers freeze on
  start-up for 30 seconds, and then you get just a black screen and
  mouse cursor (which at least moves).

  Using lp:mir r3480 ...

  [2016-04-27 15:20:19.369559] mirserver: Selected driver: mir:mesa-kms 
(version 0.22.0)
  nvc0_screen_create:762 - Error allocating PGRAPH context for M2MF: -22
  [2016-04-27 15:20:51.934145] mirserver: Using hardware cursor
  [2016-04-27 15:20:51.937691] mirserver: Initial display configuration:
  [2016-04-27 15:20:51.937703] mirserver:   0.36: unused DVI-I
  [2016-04-27 15:20:51.937713] mirserver:   0.39: DVI-D 24.0" 520x320mm
  [2016-04-27 15:20:51.937722] mirserver: Current mode 1920x1200 59.95Hz
  [2016-04-27 15:20:51.937731] mirserver: Preferred mode 1920x1200 
59.95Hz
  [2016-04-27 15:20:51.937740] mirserver: Logical position +0+0
  [2016-04-27 15:20:51.937781] mirserver:   0.41: unused HDMI-A
  [2016-04-27 15:20:51.937799] mirserver:   0.43: unused DisplayPort
  [2016-04-27 15:20:51.937972] mircommon: Loading modules from: 
bin/../lib/server-modules/
  [2016-04-27 15:20:51.938015] mircommon: Loading module: 
bin/../lib/server-modules/graphics-android.so.9
  [2016-04-27 15:20:51.938107]  mircommon: Failed to load module: 
bin/../lib/server-modules/graphics-android.so.9 (error was:libhardware.so.2: 
cannot open shared object file: No such file or directory)
  [2016-04-27 15:20:51.938119] mircommon: Loading module: 
bin/../lib/server-modules/graphics-mesa-kms.so.9
  [2016-04-27 15:20:51.938142] mircommon: Loading module: 
bin/../lib/server-modules/server-mesa-x11.so.9
  [2016-04-27 15:20:51.938536] mircommon: Loading module: 
bin/../lib/server-modules/input-evdev.so.5
  [2016-04-27 15:20:51.955316] mirserver: Selected input driver: 
mir:evdev-input (version: 0.22.0)
  [2016-04-27 15:20:51.955500] mirserver: Mir version 0.22.0
  [2016-04-27 15:20:51.962627] GLRenderer: EGL vendor: Mesa Project
  [2016-04-27 15:20:51.962645] GLRenderer: EGL version: 1.4 (DRI2)
  [2016-04-27 15:20:51.962651] GLRenderer: EGL client APIs: OpenGL OpenGL_ES 
OpenGL_ES2 OpenGL_ES3
  [2016-04-27 15:20:51.962657] GLRenderer: EGL extensions: EGL_EXT_buffer_age 
EGL_EXT_image_dma_buf_import EGL_KHR_create_context 
EGL_KHR_get_all_proc_addresses EGL_KHR_gl_renderbuffer_image 
EGL_KHR_gl_texture_2D_image EGL_KHR_gl_texture_cubemap_image EGL_KHR_image 
EGL_KHR_image_base EGL_KHR_image_pixmap EGL_KHR_surfaceless_context 
EGL_MESA_configless_context EGL_MESA_image_dma_buf_export
  [2016-04-27 15:20:51.962670] GLRenderer: GL vendor: VMware, Inc.
  [2016-04-27 15:20:51.962679] GLRenderer: GL renderer: Gallium 0.4 on llvmpipe 
(LLVM 3.8, 256 bits)
  [2016-04-27 15:20:51.962688] GLRenderer: GL version: OpenGL ES 3.0 Mesa 11.2.0
  [2016-04-27 15:20:51.962697] GLRenderer: GLSL version: OpenGL ES GLSL ES 3.00

  lspci:
  01:00.0 VGA compatible controller: NVIDIA Corporation GM204 [GeForce GTX 970] 
(rev a1)

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1575516/+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 1297144] Re: [Lenovo ThinkPad X230] Invisible cursor after resume from suspend

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

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

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

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

Status in xorg package in Ubuntu:
  Expired

Bug description:
  I am using the daily build of Xubuntu 14.04 x64 on a Lenovo Thinkpad
  x230. If I wake up the computer after it spending some time in the
  suspend state, the cursor will be invisible.  The courser still works
  (I can click on stuff and hover the invisible cursor over stuff), but
  the little arrow is not visible.  This bug showed up a few days ago
  after an update.  Putting the computer back in suspend state and
  immediately waking it back up resolves the issue until the next time
  the computer is put in suspend state for an extended period of time.

  It is possible that this bug has something to do with Whisker Menu.
  Sometimes when the courser is invisible it will still show up over
  Whisker Menu.  Most of the time it is invisible there too.

  Description: Ubuntu Trusty Tahr (development branch)
  Release: 14.04
  xfdesktop version 4.11.4, running on Xfce 4.10

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1297144/+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 1613056] Re: unity8.log spammed: Failed to get current playback position: org.freedesktop.DBus.Error.UnknownMethod: Method "Get" with signature "ss" on interface "org.freedesktop

2016-08-14 Thread Daniel van Vugt
** Summary changed:

- unity8.log spammed with Failed to get current playback position messages
+ unity8.log spammed: Failed to get current playback position: 
org.freedesktop.DBus.Error.UnknownMethod: Method "Get" with signature "ss" on 
interface "org.freedesktop.DBus.Properties" doesn't exist

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

Title:
  unity8.log spammed: Failed to get current playback position:
  org.freedesktop.DBus.Error.UnknownMethod: Method "Get" with signature
  "ss" on interface "org.freedesktop.DBus.Properties" doesn't exist

Status in unity8 package in Ubuntu:
  New

Bug description:
  BQ E5, OTA-12.

  I've noticed that my ~/.cache/upstart/unity8.log contains lot's of
  these messages, filled every second (file is around 6 Megs at time of
  writing):

  [2016-35-10:11:35:07.388] Failed to get current playback position:
  org.freedesktop.DBus.Error.UnknownMethod: Method "Get" with signature
  "ss" on interface "org.freedesktop.DBus.Properties" doesn't exist

  [2016-35-10:11:35:08.388] Failed to get current playback position:
  org.freedesktop.DBus.Error.UnknownMethod: Method "Get" with signature
  "ss" on interface "org.freedesktop.DBus.Properties" doesn't exist

  [2016-35-10:11:35:09.388] Failed to get current playback position:
  org.freedesktop.DBus.Error.UnknownMethod: Method "Get" with signature
  "ss" on interface "org.freedesktop.DBus.Properties" doesn't exist

  I do not know what produces these, or since when it has started. These
  lines starts from beginning of log file, I cannot trace that event /
  app that started it.

  I've just rebooted, and these messages have stopped.

  There was no other app, except terminal where I was debugging,
  launched, no musig playing, etc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity8/+bug/1613056/+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 1603898] Re: DNS resolution fails when using VPN and routing all traffic over it

2016-08-14 Thread Stéphane Graber
So I just ran into the exact same problem with my personal VPN when I do
have both IPv4 and IPv6 configured to route all traffic over the VPN.

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

Title:
  DNS resolution fails when using VPN and routing all traffic over it

Status in network-manager package in Ubuntu:
  New
Status in network-manager source package in Xenial:
  New

Bug description:
  When using our company VPN, the Network Manager configured dnsmasq
  ends up in a weird state where its unable to answer queries because
  it's (incorrectly) sending them to 127.0.0.1:53 where nothing is
  listening.

  | root@ornery:~# nmcli con show 'Canonical UK - All Traffic' | grep -i dns
  | ipv4.dns:
  | ipv4.dns-search:
  | ipv4.dns-options:   (default)
  | ipv4.ignore-auto-dns:   no
  | ipv6.dns:
  | ipv6.dns-search:
  | ipv6.dns-options:   (default)
  | ipv6.ignore-auto-dns:   no
  | IP4.DNS[1]: 10.172.192.1
  | root@ornery:~# ps auxfw | grep [4]035
  | nobody4035  0.0  0.0  52872  1620 ?SJun29   6:39  \_ 
/usr/sbin/dnsmasq --no-resolv --keep-in-foreground --no-hosts --bind-interfaces 
--pid-file=/var/run/NetworkManager/dnsmasq.pid --listen-address=127.0.1.1 
--cache-size=0 --proxy-dnssec 
--enable-dbus=org.freedesktop.NetworkManager.dnsmasq 
--conf-dir=/etc/NetworkManager/dnsmasq.d
  | root@ornery:~# 

  Querying the DNS server provided by the VPN connection works; querying
  dnsmasq doesn't:

  | root@ornery:~# dig +short @10.172.192.1 www.openbsd.org
  | 129.128.5.194
  | root@ornery:~# dig @127.0.1.1 www.openbsd.org
  | 
  | ; <<>> DiG 9.10.3-P4-Ubuntu <<>> @127.0.1.1 www.openbsd.org
  | ; (1 server found)
  | ;; global options: +cmd
  | ;; Got answer:
  | ;; ->>HEADER<<- opcode: QUERY, status: REFUSED, id: 6996
  | ;; flags: qr rd ra ad; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0
  | 
  | ;; QUESTION SECTION:
  | ;www.openbsd.org.   IN  A
  | 
  | ;; Query time: 0 msec
  | ;; SERVER: 127.0.1.1#53(127.0.1.1)
  | ;; WHEN: Mon Jul 18 10:25:48 CEST 2016
  | ;; MSG SIZE  rcvd: 33
  | 
  | root@ornery:~# 

  While running 'dig @127.0.1.1 www.openbsd.org':

  | root@ornery:~# tcpdump -i lo port 53 -v -n
  | tcpdump: listening on lo, link-type EN10MB (Ethernet), capture size 262144 
bytes
  | 10:26:04.728905 IP (tos 0x0, ttl 64, id 56577, offset 0, flags [none], 
proto UDP (17), length 72)
  | 127.0.0.1.54917 > 127.0.1.1.53: 32273+ [1au] A? www.openbsd.org. (44)
  | 10:26:04.729001 IP (tos 0x0, ttl 64, id 49204, offset 0, flags [DF], proto 
UDP (17), length 61)
  | 127.0.1.1.53 > 127.0.0.1.54917: 32273 Refused$ 0/0/0 (33)

  | root@ornery:~# netstat -anp | grep 127.0.[01].1:53
  | tcp0  0 127.0.1.1:530.0.0.0:*   LISTEN  
4035/dnsmasq
  | udp0  0 127.0.1.1:530.0.0.0:*   
4035/dnsmasq
  | root@ornery:~# 

  You can see below a) that dnsmasq thinks it is configured to use a DNS
  server provided by the VPN, and/but that b) it tries to answer a non
  local query like www.openbsd.org locally.

  | root@ornery:~# kill -USR1 4035; tail /var/log/syslog | grep dnsmasq
  | Jul 18 09:29:22 ornery dnsmasq[4035]: time 1468830562
  | Jul 18 09:29:22 ornery dnsmasq[4035]: cache size 0, 0/0 cache insertions 
re-used unexpired cache entries.
  | Jul 18 09:29:22 ornery dnsmasq[4035]: queries forwarded 1880976, queries 
answered locally 375041
  | Jul 18 09:29:22 ornery dnsmasq[4035]: queries for authoritative zones 0
  | Jul 18 09:29:22 ornery dnsmasq[4035]: server 10.172.192.1#53: queries sent 
792, retried or failed 0
  | root@ornery:~# dig +short @127.0.1.1 www.openbsd.org
  | root@ornery:~# kill -USR1 4035; tail /var/log/syslog | grep dnsmasq
  | Jul 18 09:29:22 ornery dnsmasq[4035]: queries for authoritative zones 0
  | Jul 18 09:29:22 ornery dnsmasq[4035]: server 10.172.192.1#53: queries sent 
792, retried or failed 0
  | Jul 18 09:29:37 ornery dnsmasq[4035]: time 1468830577
  | Jul 18 09:29:37 ornery dnsmasq[4035]: cache size 0, 0/0 cache insertions 
re-used unexpired cache entries.
  | Jul 18 09:29:37 ornery dnsmasq[4035]: queries forwarded 1880976, queries 
answered locally 375042
  | Jul 18 09:29:37 ornery dnsmasq[4035]: queries for authoritative zones 0
  | Jul 18 09:29:37 ornery dnsmasq[4035]: server 10.172.192.1#53: queries sent 
792, retried or failed 0
  | root@ornery:~# 

  This is on Ubuntu 16.04, with the following packages:

  | james@ornery:~$ COLUMNS=200 dpkg -l dnsmasq-base network-manager 
network-manager-openvpn | grep ^ii
  | ii  dnsmasq-base 2.75-1ubuntu0.16.04.1  
 amd64   Small caching DNS proxy and DHCP/TFTP server
  | ii  network-manager  

[Touch-packages] [Bug 1470655] Re: Update to PackageKit 1.0

2016-08-14 Thread Jeremy Bicha
now in yakkety:

https://launchpad.net/ubuntu/+source/packagekit/1.1.1-1ubuntu1

** Changed in: packagekit (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 click in Ubuntu.
https://bugs.launchpad.net/bugs/1470655

Title:
  Update to PackageKit 1.0

Status in click package in Ubuntu:
  Fix Released
Status in packagekit package in Ubuntu:
  Fix Released

Bug description:
  Update to 1.0

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/click/+bug/1470655/+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 1605189] Re: Authentication is required for suspending the system

2016-08-14 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

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

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

Title:
  Authentication is required for suspending the system

Status in systemd package in Ubuntu:
  Confirmed

Bug description:
  Automatic suspend from the xfce power manager does not work, as a
  window opens and asks for my password. Well, if it wants to suspend
  the system after a given timeout, I cannot enter my password as I'm
  not in front of my system then. Once I'm able to enter my password it
  is too late to run the suspend action.

  The window asking for my password prints:

  Password: 

  Details

  Action: org.freedesktop.login1.suspend
  Vendor: The systemd project

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: systemd 229-4ubuntu7
  ProcVersionSignature: Ubuntu 4.4.0-31.50-generic 4.4.13
  Uname: Linux 4.4.0-31-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Thu Jul 21 13:13:12 2016
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2014-08-17 (703 days ago)
  InstallationMedia: Ubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140722.2)
  MachineType: LENOVO 4236ML1
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.4.0-31-generic 
root=/dev/mapper/ubuntu--vg-root ro intel_pstate=enable
  SourcePackage: systemd
  SystemdDelta:
   [EXTENDED]   /lib/systemd/system/systemd-timesyncd.service → 
/lib/systemd/system/systemd-timesyncd.service.d/disable-with-time-daemon.conf
   [EXTENDED]   /lib/systemd/system/rc-local.service → 
/lib/systemd/system/rc-local.service.d/debian.conf
   
   2 overridden configuration files found.
  UpgradeStatus: Upgraded to xenial on 2016-05-28 (53 days ago)
  dmi.bios.date: 07/05/2013
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 83ET76WW (1.46 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 4236ML1
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnLENOVO:bvr83ET76WW(1.46):bd07/05/2013:svnLENOVO:pn4236ML1:pvrThinkPadT420:rvnLENOVO:rn4236ML1:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
  dmi.product.name: 4236ML1
  dmi.product.version: ThinkPad T420
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1605189/+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 1609119] Re: login session timeouts but unable to reactivate with keyboard or mouse input

2016-08-14 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/1609119

Title:
  login session timeouts but unable to reactivate with keyboard or mouse
  input

Status in lightdm package in Ubuntu:
  Confirmed

Bug description:
  I recently upgraded my Ubuntu to the latest version:

  Description:  Ubuntu 16.04.1 LTS
  Release:  16.04

  
  When I log in and then let the screen be turned off by inactivity (currently 
set for 5 minutes WITHOUT screenlock) I am unable to resume the session, that 
is typing on the keyboard or moving the 
  mouse does not return my login to an active session.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lightdm/+bug/1609119/+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 1613112] Re: package account-plugin-facebook (not installed) failed to install/upgrade: trying to overwrite '/etc/signon-ui/webkit-options.d/www.facebook.com.conf', which is also

2016-08-14 Thread Apport retracing service
** Tags removed: need-duplicate-check

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

Title:
  package account-plugin-facebook (not installed) failed to
  install/upgrade: trying to overwrite '/etc/signon-ui/webkit-
  options.d/www.facebook.com.conf', which is also in package kaccounts-
  providers 4:15.12.3-0ubuntu1

Status in account-plugins package in Ubuntu:
  New

Bug description:
  Just a package conflict

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: account-plugin-facebook (not installed)
  Uname: Linux 4.7.0-rc7-00092-g47ef4ad x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  Date: Sun Aug  7 20:38:28 2016
  DuplicateSignature:
   package:account-plugin-facebook:(not installed)
   Unpacking account-plugin-facebook (0.12+16.04.20160126-0ubuntu1) ...
   dpkg: error processing archive 
/var/cache/apt/archives/account-plugin-facebook_0.12+16.04.20160126-0ubuntu1_all.deb
 (--unpack):
trying to overwrite 
'/etc/signon-ui/webkit-options.d/www.facebook.com.conf', which is also in 
package kaccounts-providers 4:15.12.3-0ubuntu1
  ErrorMessage: trying to overwrite 
'/etc/signon-ui/webkit-options.d/www.facebook.com.conf', which is also in 
package kaccounts-providers 4:15.12.3-0ubuntu1
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1.1
   apt  1.2.12~ubuntu16.04.1
  SourcePackage: account-plugins
  Title: package account-plugin-facebook (not installed) failed to 
install/upgrade: trying to overwrite 
'/etc/signon-ui/webkit-options.d/www.facebook.com.conf', which is also in 
package kaccounts-providers 4:15.12.3-0ubuntu1
  UpgradeStatus: No upgrade log present (probably fresh install)
  mtime.conffile..etc.signon-ui.webkit-options.d.www.facebook.com.conf: 
2015-04-21T13:11:27

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/account-plugins/+bug/1613112/+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 1613113] Re: package account-plugin-google (not installed) failed to install/upgrade: trying to overwrite '/usr/share/accounts/providers/google.provider', which is also in packag

2016-08-14 Thread Apport retracing service
** Tags removed: need-duplicate-check

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

Title:
  package account-plugin-google (not installed) failed to
  install/upgrade: trying to overwrite
  '/usr/share/accounts/providers/google.provider', which is also in
  package kaccounts-providers 4:15.12.3-0ubuntu1

Status in account-plugins package in Ubuntu:
  New

Bug description:
  Package conflict between gnome and kde providers

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: account-plugin-google (not installed)
  Uname: Linux 4.7.0-rc7-00092-g47ef4ad x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  Date: Sun Aug  7 20:38:29 2016
  DuplicateSignature:
   package:account-plugin-google:(not installed)
   Unpacking account-plugin-facebook (0.12+16.04.20160126-0ubuntu1) ...
   dpkg: error processing archive 
/var/cache/apt/archives/account-plugin-facebook_0.12+16.04.20160126-0ubuntu1_all.deb
 (--unpack):
trying to overwrite 
'/etc/signon-ui/webkit-options.d/www.facebook.com.conf', which is also in 
package kaccounts-providers 4:15.12.3-0ubuntu1
  ErrorMessage: trying to overwrite 
'/usr/share/accounts/providers/google.provider', which is also in package 
kaccounts-providers 4:15.12.3-0ubuntu1
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1.1
   apt  1.2.12~ubuntu16.04.1
  SourcePackage: account-plugins
  Title: package account-plugin-google (not installed) failed to 
install/upgrade: trying to overwrite 
'/usr/share/accounts/providers/google.provider', which is also in package 
kaccounts-providers 4:15.12.3-0ubuntu1
  UpgradeStatus: No upgrade log present (probably fresh install)
  mtime.conffile..etc.signon-ui.webkit-options.d.accounts.google.com.conf: 
2015-04-21T13:11:27

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/account-plugins/+bug/1613113/+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 1613115] [NEW] Gnome not responding to cursor after suspend

2016-08-14 Thread Biatu
Public bug reported:

I have been experiencing this problem on my laptop with a touchpad, not
yet verified on my desktop PC. Upon suspend/restore, the cursor
works...I can move around, but gnome will not register the clicks. At
times some windows will, but the panel/launcher will not. Alt-Tabbing to
different windows will enable that window to respond to clicks, but not
while inactive. Pressing the 'Super ' or 'win' key will allow the
launcher/panel to respond, but then no other windows.

Only a reboot will fix the problem.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: xorg 1:7.7+13ubuntu3
ProcVersionSignature: Ubuntu 4.4.0-34.53-generic 4.4.15
Uname: Linux 4.4.0-34-generic x86_64
.tmp.unity_support_test.0:
 
ApportVersion: 2.20.1-0ubuntu2.1
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: Sun Aug 14 16:20:06 2016
DistUpgraded: Fresh install
DistroCodename: xenial
DistroVariant: ubuntu
DkmsStatus:
 vboxhost, 5.0.26, 4.4.0-31-generic, x86_64: installed
 vboxhost, 5.0.26, 4.4.0-32-generic, x86_64: installed
 vboxhost, 5.0.26, 4.4.0-34-generic, x86_64: installed
ExtraDebuggingInterest: Yes
GraphicsCard:
 Intel Corporation 2nd Generation Core Processor Family Integrated Graphics 
Controller [8086:0126] (rev 09) (prog-if 00 [VGA controller])
   Subsystem: Fujitsu Limited. 2nd Generation Core Processor Family Integrated 
Graphics Controller [10cf:15f5]
InstallationDate: Installed on 2016-06-14 (61 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1)
MachineType: FUJITSU LIFEBOOK T901
ProcEnviron:
 LANGUAGE=en_US
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-34-generic 
root=UUID=270675e2-6b43-4607-95e4-a9036be2e5b4 ro quiet splash vt.handoff=7
SourcePackage: xorg
Symptom: display
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 06/19/2012
dmi.bios.vendor: FUJITSU // Phoenix Technologies Ltd.
dmi.bios.version: Version 1.16
dmi.board.name: FJNB228
dmi.board.vendor: FUJITSU
dmi.chassis.type: 10
dmi.chassis.vendor: AOL433E312BB2002
dmi.modalias: 
dmi:bvnFUJITSU//PhoenixTechnologiesLtd.:bvrVersion1.16:bd06/19/2012:svnFUJITSU:pnLIFEBOOKT901:pvr:rvnFUJITSU:rnFJNB228:rvr:cvnAOL433E312BB2002:ct10:cvr:
dmi.product.name: LIFEBOOK T901
dmi.sys.vendor: FUJITSU
version.compiz: compiz 1:0.9.12.2+16.04.20160714-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.67-1ubuntu0.16.04.1
version.libgl1-mesa-dri: libgl1-mesa-dri 11.2.0-1ubuntu2.1
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 11.2.0-1ubuntu2.1
version.xserver-xorg-core: xserver-xorg-core 2:1.18.3-1ubuntu2.3
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.10.1-1ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.7.0-1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20160325-1ubuntu1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.12-1build2
xserver.bootTime: Sun Aug 14 16:01:23 2016
xserver.configfile: default
xserver.errors:
 Wacom ISDv4 EC Pen stylus: Invalid type 'cursor' for this device.
 Wacom ISDv4 EC Pen stylus: Invalid type 'touch' for this device.
 Wacom ISDv4 EC Pen stylus: Invalid type 'pad' for this device.
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs:
 product id2600 
 vendor BOE
xserver.version: 2:1.18.3-1ubuntu2.3

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


** Tags: amd64 apport-bug compiz-0.9 third-party-packages 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/1613115

Title:
  Gnome not responding to cursor after suspend

Status in xorg package in Ubuntu:
  New

Bug description:
  I have been experiencing this problem on my laptop with a touchpad,
  not yet verified on my desktop PC. Upon suspend/restore, the cursor
  works...I can move around, but gnome will not register the clicks. At
  times some windows will, but the panel/launcher will not. Alt-Tabbing
  to different windows will enable that window to respond to clicks, but
  not while inactive. Pressing the 'Super ' or 'win' key will allow the
  launcher/panel to respond, but then no other windows.

  Only a reboot will fix the problem.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: xorg 1:7.7+13ubuntu3
  ProcVersionSignature: Ubuntu 4.4.0-34.53-generic 4.4.15
  Uname: Linux 4.4.0-34-generic x86_64
  .tmp.unity_support_test.0:
   
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CompizPlugins: No value set for 

[Touch-packages] [Bug 1613112] [NEW] package account-plugin-facebook (not installed) failed to install/upgrade: trying to overwrite '/etc/signon-ui/webkit-options.d/www.facebook.com.conf', which is al

2016-08-14 Thread Dan Dart
Public bug reported:

Just a package conflict

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: account-plugin-facebook (not installed)
Uname: Linux 4.7.0-rc7-00092-g47ef4ad x86_64
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
Date: Sun Aug  7 20:38:28 2016
DuplicateSignature:
 package:account-plugin-facebook:(not installed)
 Unpacking account-plugin-facebook (0.12+16.04.20160126-0ubuntu1) ...
 dpkg: error processing archive 
/var/cache/apt/archives/account-plugin-facebook_0.12+16.04.20160126-0ubuntu1_all.deb
 (--unpack):
  trying to overwrite '/etc/signon-ui/webkit-options.d/www.facebook.com.conf', 
which is also in package kaccounts-providers 4:15.12.3-0ubuntu1
ErrorMessage: trying to overwrite 
'/etc/signon-ui/webkit-options.d/www.facebook.com.conf', which is also in 
package kaccounts-providers 4:15.12.3-0ubuntu1
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.1
 apt  1.2.12~ubuntu16.04.1
SourcePackage: account-plugins
Title: package account-plugin-facebook (not installed) failed to 
install/upgrade: trying to overwrite 
'/etc/signon-ui/webkit-options.d/www.facebook.com.conf', which is also in 
package kaccounts-providers 4:15.12.3-0ubuntu1
UpgradeStatus: No upgrade log present (probably fresh install)
mtime.conffile..etc.signon-ui.webkit-options.d.www.facebook.com.conf: 
2015-04-21T13:11:27

** Affects: account-plugins (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package package-conflict xenial

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

Title:
  package account-plugin-facebook (not installed) failed to
  install/upgrade: trying to overwrite '/etc/signon-ui/webkit-
  options.d/www.facebook.com.conf', which is also in package kaccounts-
  providers 4:15.12.3-0ubuntu1

Status in account-plugins package in Ubuntu:
  New

Bug description:
  Just a package conflict

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: account-plugin-facebook (not installed)
  Uname: Linux 4.7.0-rc7-00092-g47ef4ad x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  Date: Sun Aug  7 20:38:28 2016
  DuplicateSignature:
   package:account-plugin-facebook:(not installed)
   Unpacking account-plugin-facebook (0.12+16.04.20160126-0ubuntu1) ...
   dpkg: error processing archive 
/var/cache/apt/archives/account-plugin-facebook_0.12+16.04.20160126-0ubuntu1_all.deb
 (--unpack):
trying to overwrite 
'/etc/signon-ui/webkit-options.d/www.facebook.com.conf', which is also in 
package kaccounts-providers 4:15.12.3-0ubuntu1
  ErrorMessage: trying to overwrite 
'/etc/signon-ui/webkit-options.d/www.facebook.com.conf', which is also in 
package kaccounts-providers 4:15.12.3-0ubuntu1
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1.1
   apt  1.2.12~ubuntu16.04.1
  SourcePackage: account-plugins
  Title: package account-plugin-facebook (not installed) failed to 
install/upgrade: trying to overwrite 
'/etc/signon-ui/webkit-options.d/www.facebook.com.conf', which is also in 
package kaccounts-providers 4:15.12.3-0ubuntu1
  UpgradeStatus: No upgrade log present (probably fresh install)
  mtime.conffile..etc.signon-ui.webkit-options.d.www.facebook.com.conf: 
2015-04-21T13:11:27

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/account-plugins/+bug/1613112/+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 1613113] [NEW] package account-plugin-google (not installed) failed to install/upgrade: trying to overwrite '/usr/share/accounts/providers/google.provider', which is also in pack

2016-08-14 Thread Dan Dart
Public bug reported:

Package conflict between gnome and kde providers

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: account-plugin-google (not installed)
Uname: Linux 4.7.0-rc7-00092-g47ef4ad x86_64
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
Date: Sun Aug  7 20:38:29 2016
DuplicateSignature:
 package:account-plugin-google:(not installed)
 Unpacking account-plugin-facebook (0.12+16.04.20160126-0ubuntu1) ...
 dpkg: error processing archive 
/var/cache/apt/archives/account-plugin-facebook_0.12+16.04.20160126-0ubuntu1_all.deb
 (--unpack):
  trying to overwrite '/etc/signon-ui/webkit-options.d/www.facebook.com.conf', 
which is also in package kaccounts-providers 4:15.12.3-0ubuntu1
ErrorMessage: trying to overwrite 
'/usr/share/accounts/providers/google.provider', which is also in package 
kaccounts-providers 4:15.12.3-0ubuntu1
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.1
 apt  1.2.12~ubuntu16.04.1
SourcePackage: account-plugins
Title: package account-plugin-google (not installed) failed to install/upgrade: 
trying to overwrite '/usr/share/accounts/providers/google.provider', which is 
also in package kaccounts-providers 4:15.12.3-0ubuntu1
UpgradeStatus: No upgrade log present (probably fresh install)
mtime.conffile..etc.signon-ui.webkit-options.d.accounts.google.com.conf: 
2015-04-21T13:11:27

** Affects: account-plugins (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package package-conflict xenial

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

Title:
  package account-plugin-google (not installed) failed to
  install/upgrade: trying to overwrite
  '/usr/share/accounts/providers/google.provider', which is also in
  package kaccounts-providers 4:15.12.3-0ubuntu1

Status in account-plugins package in Ubuntu:
  New

Bug description:
  Package conflict between gnome and kde providers

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: account-plugin-google (not installed)
  Uname: Linux 4.7.0-rc7-00092-g47ef4ad x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  Date: Sun Aug  7 20:38:29 2016
  DuplicateSignature:
   package:account-plugin-google:(not installed)
   Unpacking account-plugin-facebook (0.12+16.04.20160126-0ubuntu1) ...
   dpkg: error processing archive 
/var/cache/apt/archives/account-plugin-facebook_0.12+16.04.20160126-0ubuntu1_all.deb
 (--unpack):
trying to overwrite 
'/etc/signon-ui/webkit-options.d/www.facebook.com.conf', which is also in 
package kaccounts-providers 4:15.12.3-0ubuntu1
  ErrorMessage: trying to overwrite 
'/usr/share/accounts/providers/google.provider', which is also in package 
kaccounts-providers 4:15.12.3-0ubuntu1
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1.1
   apt  1.2.12~ubuntu16.04.1
  SourcePackage: account-plugins
  Title: package account-plugin-google (not installed) failed to 
install/upgrade: trying to overwrite 
'/usr/share/accounts/providers/google.provider', which is also in package 
kaccounts-providers 4:15.12.3-0ubuntu1
  UpgradeStatus: No upgrade log present (probably fresh install)
  mtime.conffile..etc.signon-ui.webkit-options.d.accounts.google.com.conf: 
2015-04-21T13:11:27

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/account-plugins/+bug/1613113/+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 1452004] Re: Pulseaudio network stream gets recurrung short interruptions

2016-08-14 Thread Dirk Seidel
I'm now on 16.04 and the problem still persists. It even got worse, as
now, the short dropout happens exactly every 2 minutes.

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

Title:
  Pulseaudio network stream gets recurrung short interruptions

Status in network-manager package in Ubuntu:
  Confirmed

Bug description:
  I use pulseaudio to stream music over wifi to a Rasberry Pi 2 at 192kb. 
Exactly every 5 minutes there is a short dropout in the stream. This is always 
followed by the following warning in plamashell:
  networkmanager-qt: void 
NetworkManager::AccessPointPrivate::propertiesChanged(const QVariantMap&) 
Unhandled property "LastSeen"
  which comes from the corresponding function in accesspoint.cpp. See (line 
211):
  
http://api.kde.org/frameworks-api/frameworks5-apidocs/networkmanager-qt/html/accesspoint_8cpp_source.html

  I am running on Vivid with kubuntu-ppa-ubuntu-backports-vivid.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: network-manager 0.9.10.0-4ubuntu15.1
  ProcVersionSignature: Ubuntu 3.19.0-16.16-generic 3.19.3
  Uname: Linux 3.19.0-16-generic x86_64
  ApportVersion: 2.17.2-0ubuntu1
  Architecture: amd64
  CurrentDesktop: KDE
  Date: Tue May  5 20:56:09 2015
  EcryptfsInUse: Yes
  IfupdownConfig:
   # interfaces(5) file used by ifup(8) and ifdown(8)
   auto lo
   iface lo inet loopback
  InstallationDate: Installed on 2015-01-20 (105 days ago)
  InstallationMedia: Kubuntu 14.10 "Utopic Unicorn" - Release amd64 (20141022.1)
  IpRoute:
   default via 10.1.1.1 dev wlan0  proto static  metric 1024 
   10.1.1.0/24 dev wlan0  proto kernel  scope link  src 10.1.1.2 
   169.254.0.0/16 dev wlan0  scope link  metric 1000
  NetworkManager.state:
   [main]
   NetworkingEnabled=true
   WirelessEnabled=true
   WWANEnabled=true
   WimaxEnabled=true
  SourcePackage: network-manager
  UpgradeStatus: Upgraded to vivid on 2015-04-23 (11 days ago)
  mtime.conffile..etc.NetworkManager.NetworkManager.conf: 
2015-01-22T14:45:53.513596
  nmcli-dev:
   DEVICE  TYPE  STATEDBUS-PATH  
CONNECTION  CON-UUID  CON-PATH  
 
   wlan0   wifi  connected/org/freedesktop/NetworkManager/Devices/2  
moni3ecf8bc2-98cd-4298-a963-d77d9d1aca22  
/org/freedesktop/NetworkManager/ActiveConnection/1 
   eth0ethernet  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/ubuntu/+source/network-manager/+bug/1452004/+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 1613100] Re: Autologin for guest account fails

2016-08-14 Thread Gunnar Hjalmarsson
Thanks for your report. However, it seems to be a support request. Next
time, please ask for help at e.g. .

Anyway... It's mentioned here:

https://wiki.ubuntu.com/LightDM#Setting_an_Automatic_Login

This is a oneliner to set the desired configuration:

sudo sh -c 'printf "[Seat:*]\nautologin-guest=true\n"
>/etc/lightdm/lightdm.conf.d/50-autologin-guest.conf'

HTH

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

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

Title:
  Autologin for guest account fails

Status in lightdm package in Ubuntu:
  Invalid

Bug description:
  I researched and read extensively yet cannot find much information or
  similar reports about lightdm failing to autologin the guest account.

  lightdm version is 1.18.2

  I am using the lightdm-gtk-greeter and have removed the unity greeter
  as it did not allow the gtk-greeter to function.

  The guest session uses a template defined in /etc/guest-session/skel,
  which is a symbolic link to user "patron-template" using home
  directory patronTemplate.

  Any other pertinent information can be found in the logs attached.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: lightdm 1.18.2-0ubuntu1 [modified: 
usr/lib/lightdm/guest-session-auto.sh usr/share/lightdm/guest-session/setup.sh]
  ProcVersionSignature: Ubuntu 4.4.0-21.37-generic 4.4.6
  Uname: Linux 4.4.0-21-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CurrentDesktop: X-Cinnamon
  Date: Sun Aug 14 13:18:06 2016
  InstallationDate: Installed on 2016-07-04 (41 days ago)
  InstallationMedia: Linux Mint 18 "Sarah" - Release amd64 20160628
  SourcePackage: lightdm
  UpgradeStatus: No upgrade log present (probably fresh install)
  mtime.conffile..etc.lightdm.users.conf: 2016-08-13T23:04:10.579551

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lightdm/+bug/1613100/+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 1243642] Re: .Xmodmap not automatically loaded on start

2016-08-14 Thread le hollandais volant
Hello,

Not sure if this is relevant, but my .Xmodmap is loaded (using "xmodmap
/home/$USER/.Xmodmap" in .xsessionrc) *only* when I’m logging into a TTY
shell (non graphical shell).

When I login to Mate/Unity, something, somewhere appears to be reversing
the Xmodmap instructions.

A work around would be to graphically add a startup command, delayed by
~5 seconds, but still this would not be loaded when awaking from
suspend/hibernate.

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

Title:
  .Xmodmap not automatically loaded on start

Status in xorg package in Ubuntu:
  Confirmed

Bug description:
  I'm using a ~/.Xmodmap file to define two keycode mappings.

  13.10 doesn't seem to automatically load this file any more.
  13.04 did. (same file, same laptop)

  manual execution of "xmodmap ~/.Xmodmap" works on 13.10!
  That means I'm e.g. able to use this key in a terminal or in geany.

  I discovered, that by switching the keyboard layouts using "gnome-
  control-center region layouts" the mappings of the "xmodmap
  ~/.Xmodmap" will be lost again. Then another manual execution of
  "xmodmap ~/.Xmodmap" has to be executed and it works again.

  Perhaps the ~/.Xmodmap is loaded and lost by the the gnome-control-
  center () later.

  Sorry, I can't figure out which packet this bug has to be asigned to.
  By using apport-bug "xorg" was choosen, but it could be "xorg-server"
  or "gnome-control-center", also.

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: xorg 1:7.7+1ubuntu6
  ProcVersionSignature: Ubuntu 3.11.0-12.19-generic 3.11.3
  Uname: Linux 3.11.0-12-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.12.5-0ubuntu2
  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
  Date: Wed Oct 23 12:05:11 2013
  DistUpgraded: Fresh install
  DistroCodename: saucy
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller 
[8086:2a42] (rev 09) (prog-if 00 [VGA controller])
 Subsystem: Acer Incorporated [ALI] Device [1025:013c]
 Subsystem: Acer Incorporated [ALI] Device [1025:013c]
  InstallationDate: Installed on 2013-10-18 (4 days ago)
  InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Release amd64 
(20131016.1)
  MachineType: Acer Extensa 5630
  MarkForUpload: True
  PccardctlIdent:
   Socket 0:
 no product info available
  PccardctlStatus:
   Socket 0:
 no card
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.11.0-12-generic 
root=/dev/mapper/vg01-root ro quiet splash vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 08/11/2009
  dmi.bios.vendor: Phoenix Technologies LTD
  dmi.bios.version: V1.34
  dmi.board.name: Homa
  dmi.board.vendor: Acer
  dmi.board.version: Rev
  dmi.chassis.type: 10
  dmi.chassis.vendor: Acer
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnPhoenixTechnologiesLTD:bvrV1.34:bd08/11/2009:svnAcer:pnExtensa5630:pvr0100:rvnAcer:rnHoma:rvrRev:cvnAcer:ct10:cvrN/A:
  dmi.product.name: Extensa 5630
  dmi.product.version: 0100
  dmi.sys.vendor: Acer
  version.compiz: compiz 1:0.9.10+13.10.20131011-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.46-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 9.2.1-1ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 9.2.1-1ubuntu3
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.3-3ubuntu2
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu10
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.904-0ubuntu2
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.9-2ubuntu1
  xserver.bootTime: Wed Oct 23 11:15:16 2013
  xserver.configfile: default
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id5459 
   vendor CMO
  xserver.version: 2:1.14.3-3ubuntu2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1243642/+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 1610200] Re: [needs-packaging] Strange behaviour when trying to empty Trash in Nautilus, and it fails

2016-08-14 Thread Adolfo Jayme
** Tags removed: needs-packaging
** Tags added: upgrade-software-version

** Summary changed:

- [needs-packaging] Strange behaviour when trying to empty Trash in Nautilus, 
and it fails
+ Strange behaviour when trying to empty Trash in Nautilus, and it fails

** Changed in: gtk+3.0 (Ubuntu)
   Importance: Wishlist => Low

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

Title:
  Strange behaviour when trying to empty Trash in Nautilus, and it fails

Status in GTK+:
  Fix Released
Status in Ubuntu GNOME:
  Triaged
Status in gtk+3.0 package in Ubuntu:
  Triaged

Bug description:
  Ever since Nautilus had that little thing in the top bar indicating
  how long it would take to copy or delete something, Nautilus has
  always behaved strangely, normally showing "Preparing" for the
  entirety of the time and then magically disappearing when it is done
  and flashing the icon several times. But the most strange thing of all
  just happened, and is still affecting me.

  I moved a very large folder with many sub-folders and file into Trash, 
Nautilus reports the following for the properties of the folder "203,334 items, 
totalling 1.7 GB". So once I had done this I clicked the button to "Empty" the 
Trash, normally with large items such as this one and the new Nautilus system 
of indication it takes a while and doesn't appear to do much. But this time it 
right out failed, it just won't let me delete the folder, though when I copied 
other things into the Trash as well as this folder it deleted them, just left 
this folder seemingly.
  And then this happened, the indicator became a separate window, and when I 
closed it, so did Nautilus. But this is what it looked like:

  Nautilus_Strange_Deleting_Window.png
  Nautilus_Strange_Deleting_Window_In_AO.png

  This is the strangest thing so far that has happened with this, and
  yes, when clicking the close, minimize, and maximize buttons on this
  new "window", they did do what they do on any window.

  This really is bizarre for it to become a separate window. I looked in
  my syslog and these were the Nautilus logs for that time period:

  Aug  5 11:40:05  org.gnome.Nautilus[3525]: Initializing 
nautilus-dropbox 2015.10.28
  Aug  5 11:40:05  org.gnome.Nautilus[3525]: (nautilus:12634): 
Gtk-WARNING **: Theme parsing error: :1:0: Failed to import: The 
resource at '/org/gnome/libgd/tagged-entry/default.css' does not exist
  Aug  5 11:47:24  org.gnome.Nautilus[3525]: (nautilus:12634): 
Gtk-CRITICAL **: gtk_window_realize: assertion '!_gtk_widget_get_realized 
(widget)' failed
  Aug  5 11:50:07  org.gnome.Nautilus[3525]: (nautilus:12634): 
Gdk-WARNING **: nautilus: Fatal IO error 11 (Resource temporarily unavailable) 
on X server :1.
  Aug  5 11:51:16  org.gnome.Nautilus[3525]: Initializing 
nautilus-dropbox 2015.10.28
  Aug  5 11:51:20  org.gnome.Nautilus[3525]: (nautilus:13023): 
Gtk-WARNING **: Theme parsing error: :1:0: Failed to import: The 
resource at '/org/gnome/libgd/tagged-entry/default.css' does not exist

  And I still haven't been able to delete the folder.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: nautilus 1:3.20.1-3ubuntu1~xenial1 [origin: 
LP-PPA-gnome3-team-gnome3-staging]
  ProcVersionSignature: Ubuntu 4.4.0-31.50-generic 4.4.13
  Uname: Linux 4.4.0-31-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CurrentDesktop: GNOME
  Date: Fri Aug  5 12:02:49 2016
  InstallationDate: Installed on 2016-05-15 (81 days ago)
  InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Release amd64 
(20151021)
  SourcePackage: nautilus
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/gtk/+bug/1610200/+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 1613100] [NEW] Autologin for guest account fails

2016-08-14 Thread Thom Mayor
Public bug reported:

I researched and read extensively yet cannot find much information or
similar reports about lightdm failing to autologin the guest account.

lightdm version is 1.18.2

I am using the lightdm-gtk-greeter and have removed the unity greeter as
it did not allow the gtk-greeter to function.

The guest session uses a template defined in /etc/guest-session/skel,
which is a symbolic link to user "patron-template" using home directory
patronTemplate.

Any other pertinent information can be found in the logs attached.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: lightdm 1.18.2-0ubuntu1 [modified: 
usr/lib/lightdm/guest-session-auto.sh usr/share/lightdm/guest-session/setup.sh]
ProcVersionSignature: Ubuntu 4.4.0-21.37-generic 4.4.6
Uname: Linux 4.4.0-21-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
CurrentDesktop: X-Cinnamon
Date: Sun Aug 14 13:18:06 2016
InstallationDate: Installed on 2016-07-04 (41 days ago)
InstallationMedia: Linux Mint 18 "Sarah" - Release amd64 20160628
SourcePackage: lightdm
UpgradeStatus: No upgrade log present (probably fresh install)
mtime.conffile..etc.lightdm.users.conf: 2016-08-13T23:04:10.579551

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


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

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

Title:
  Autologin for guest account fails

Status in lightdm package in Ubuntu:
  New

Bug description:
  I researched and read extensively yet cannot find much information or
  similar reports about lightdm failing to autologin the guest account.

  lightdm version is 1.18.2

  I am using the lightdm-gtk-greeter and have removed the unity greeter
  as it did not allow the gtk-greeter to function.

  The guest session uses a template defined in /etc/guest-session/skel,
  which is a symbolic link to user "patron-template" using home
  directory patronTemplate.

  Any other pertinent information can be found in the logs attached.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: lightdm 1.18.2-0ubuntu1 [modified: 
usr/lib/lightdm/guest-session-auto.sh usr/share/lightdm/guest-session/setup.sh]
  ProcVersionSignature: Ubuntu 4.4.0-21.37-generic 4.4.6
  Uname: Linux 4.4.0-21-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CurrentDesktop: X-Cinnamon
  Date: Sun Aug 14 13:18:06 2016
  InstallationDate: Installed on 2016-07-04 (41 days ago)
  InstallationMedia: Linux Mint 18 "Sarah" - Release amd64 20160628
  SourcePackage: lightdm
  UpgradeStatus: No upgrade log present (probably fresh install)
  mtime.conffile..etc.lightdm.users.conf: 2016-08-13T23:04:10.579551

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lightdm/+bug/1613100/+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 1613100] Re: Autologin for guest account fails

2016-08-14 Thread Thom Mayor
library # apt-get update
Ign:1 http://packages.linuxmint.com sarah InRelease
Hit:2 http://packages.linuxmint.com sarah Release  
Hit:3 http://archive.canonical.com/ubuntu xenial InRelease 
Hit:4 http://archive.ubuntu.com/ubuntu xenial InRelease  
Get:5 http://security.ubuntu.com/ubuntu xenial-security InRelease [94.5 kB]
Get:6 http://archive.ubuntu.com/ubuntu xenial-updates InRelease [95.7 kB]  
Hit:8 http://archive.ubuntu.com/ubuntu xenial-backports InRelease  
Fetched 190 kB in 1s (142 kB/s)
Reading package lists... Done

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

Title:
  Autologin for guest account fails

Status in lightdm package in Ubuntu:
  New

Bug description:
  I researched and read extensively yet cannot find much information or
  similar reports about lightdm failing to autologin the guest account.

  lightdm version is 1.18.2

  I am using the lightdm-gtk-greeter and have removed the unity greeter
  as it did not allow the gtk-greeter to function.

  The guest session uses a template defined in /etc/guest-session/skel,
  which is a symbolic link to user "patron-template" using home
  directory patronTemplate.

  Any other pertinent information can be found in the logs attached.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: lightdm 1.18.2-0ubuntu1 [modified: 
usr/lib/lightdm/guest-session-auto.sh usr/share/lightdm/guest-session/setup.sh]
  ProcVersionSignature: Ubuntu 4.4.0-21.37-generic 4.4.6
  Uname: Linux 4.4.0-21-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CurrentDesktop: X-Cinnamon
  Date: Sun Aug 14 13:18:06 2016
  InstallationDate: Installed on 2016-07-04 (41 days ago)
  InstallationMedia: Linux Mint 18 "Sarah" - Release amd64 20160628
  SourcePackage: lightdm
  UpgradeStatus: No upgrade log present (probably fresh install)
  mtime.conffile..etc.lightdm.users.conf: 2016-08-13T23:04:10.579551

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lightdm/+bug/1613100/+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 1577494] Re: application dies with 'VMware: vmw_ioctl_command error Invalid argument.'

2016-08-14 Thread Lindsay
I'm seeing the same error when trying to open a contact in the Evolution
groupware suite. The full error is:

openjdk version "1.8.0_91"
OpenJDK Runtime Environment (build 1.8.0_91-8u91-b14-3ubuntu1~16.04.1-b14)
OpenJDK 64-Bit Server VM (build 25.91-b14, mixed mode)
VMware: vmw_ioctl_command error Invalid argument.
Aborted

Looks like a Java error from this perspective. I don't exactly know
where to report this, here, VMware or OpenJDK.

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

Title:
  application dies with 'VMware: vmw_ioctl_command error Invalid
  argument.'

Status in ROS:
  New
Status in Stellarium:
  New
Status in blender package in Ubuntu:
  Confirmed
Status in mesa package in Ubuntu:
  New

Bug description:
  running stellarium in ubuntu 16.04 in a VMWare 12.1.1 virtual machine.
  thanks.

  


  jstokes@ubuntu1604:~$ stellarium

  ** (stellarium:1768): WARNING **: Couldn't connect to accessibility bus: 
Failed to connect to socket /tmp/dbus-6Rt5CAvHFy: Connection refused
   ---
  [ This is Stellarium 0.14.3 - http://www.stellarium.org ]
  [ Copyright (C) 2000-2016 Fabien Chereau et al. ]
   ---
  Writing log file to: "/home/jstokes/.stellarium/log.txt"
  File search paths:
0 .  "/home/jstokes/.stellarium"
1 .  "/usr/share/stellarium"
  Config file is:  "/home/jstokes/.stellarium/config.ini"
  Detected: OpenGL "3.0"
  Driver version string: "3.0 Mesa 11.2.0"
  GL vendor is "VMware, Inc."
  GL renderer is "Gallium 0.4 on SVGA3D; build: RELEASE;  LLVM;"
  GL Shading Language version is "1.30"
  MESA Version Number detected:  11.2
  Mesa version is fine, we should not see a graphics problem.
  GLSL Version Number detected:  1.3
  GLSL version is fine, we should not see a graphics problem.
  Cache directory is:  "/home/jstokes/.cache/stellarium/stellarium"
  Sky language is  "en_US"
  Application language is  "en_US"
  Loading Solar System data ...
  Loading star data ...
  "Loading \"/usr/share/stellarium/stars/default/stars_0_0v0_5.cat\": 0_0v0_2; 
4963"
  "Loading \"/usr/share/stellarium/stars/default/stars_1_0v0_5.cat\": 1_0v0_2; 
21598"
  "Loading \"/usr/share/stellarium/stars/default/stars_2_0v0_5.cat\": 2_0v0_2; 
150090"
  "Loading \"/usr/share/stellarium/stars/default/stars_3_1v0_3.cat\": 3_1v0_3; 
428466"
  Finished loading star catalogue data, max_geodesic_level:  3
  navigation/preset_sky_time is a double - treating as jday: "2451514.25001"
  Reloading DSO data...
  Loaded 10756 DSO records
  Loading DSO name data ...
  Loaded 221 / 297 DSO name records successfully
  Loading star names from 
"/usr/share/stellarium/skycultures/western/star_names.fab"
  Loaded 339 / 339 common star names
  Loading star names from "/usr/share/stellarium/stars/default/name.fab"
  Loaded 4506 / 4506 scientific star names
  Loading variable stars from 
"/usr/share/stellarium/stars/default/gcvs_hip_part.dat"
  Loaded 6916 / 6916 variable stars
  Loading cross-index data from 
"/usr/share/stellarium/stars/default/cross-index.dat"
  Loaded 108279 / 108279 cross-index data records
  Loaded 88 / 88 constellation records successfully for culture "western"
  Loaded 85 / 85 constellation art records successfully for culture "western"
  Loaded 88 / 88 constellation names
  Loading constellation boundary data ... 
  Loaded 782 constellation boundary segments
  Initializing basic GL shaders... 
  Creating GUI ...
  Loaded plugin "Exoplanets"
  Exoplanets: version of the format of the catalog: 1
  Exoplanets: loading catalog file: 
"/home/jstokes/.stellarium/modules/Exoplanets/exoplanets.json"
  Loaded plugin "FOV"
  Loaded plugin "MeteorShowers"
  MeteorShowersMgr: Loading catalog file: 
"/home/jstokes/.stellarium/modules/MeteorShowers/showers.json"
  Loaded plugin "Novae"
  Novae: version of the catalog: 1
  Novae: loading catalog file: 
"/home/jstokes/.stellarium/modules/Novae/novae.json"
  Loaded plugin "Oculars"
  Ocular plugin - press Command-O to toggle eyepiece view mode. Press ALT-o for 
configuration.
  Oculars::validateIniFile ocular.ini exists at:  
"/home/jstokes/.stellarium/modules/Oculars/ocular.ini" . Checking version...
  Oculars::validateIniFile found existing ini file version  3
  Loaded plugin "Satellites"
  Satellites: loading catalog file: 
"/home/jstokes/.stellarium/modules/Satellites/satellites.json"
  Satellite has invalid orbit: "FLOCK 1B-27" "40422"
  Satellite has invalid orbit: "FLOCK 1B-22" "40428"
  Satellite has invalid orbit: "FLOCK 1B-10" "40429"
  Satellite has invalid orbit: "FLOCK 1B-5" "40453"
  Satellite has invalid orbit: "FLOCK 1B-6" "40454"
  Satellite has invalid orbit: "FLOCK 1B-12" "40460"
  Loaded plugin "SolarSystemEditor"
  

[Touch-packages] [Bug 1612171] Re: A forward incoming call icon should display in the indicator

2016-08-14 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

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

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

Title:
  A forward incoming call icon should display in the indicator

Status in Canonical System Image:
  Confirmed
Status in Ubuntu UX:
  New
Status in indicator-network package in Ubuntu:
  Confirmed

Bug description:
  phablet@ubuntu-phablet:~$ system-image-cli -i
  current build number: 6
  device name: midori
  channel: ubuntu-touch/testing/meizu.en
  last update: 2016-07-11 17:45:37
  version version: 6
  version ubuntu: 20160711.1
  version device: 
db94297461b6cae736ebcd2c903354eb85580af03760c481a1b9c4c0eee79c5f
  version custom: 20160707-982-6-3

  Testing steps:
  1.Go to dialer -> setting
  2.Select a SIM card -> Call forwarding
  3.Select Forward every incoming calls.
  4.Input the number will forward incoming calls.
  5.Dial out with SIM card #1.
  6.Dial in SIM card #1 from another phone.

  Expected results:
  A forward incoming call icon should display in the indicator.

  Actual result:
  No icon display in indicator when the incoming call is forwarded.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1612171/+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 1536353] Re: [regression] Printer drivers install is broken as lsb package is not available anymore

2016-08-14 Thread copersonus
HP P10006 printer will not print.  updates lock me out of my computer
and force me to reinstall.  why are you releasing updates that do not
have printer utilities

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

Title:
  [regression] Printer drivers install is broken as lsb package is not
  available anymore

Status in lsb:
  New
Status in cups-filters package in Ubuntu:
  Fix Released
Status in epson-inkjet-printer-escpr package in Ubuntu:
  Fix Released
Status in lsb package in Ubuntu:
  Fix Released
Status in cups-filters source package in Xenial:
  Fix Released
Status in epson-inkjet-printer-escpr source package in Xenial:
  Fix Released
Status in lsb source package in Xenial:
  Fix Released

Bug description:
  [SRU justification]
  Previous releases were compatible with third-party printer drivers provided 
in LSB package format (and also as .deb packages depending on the lsb package). 
 As of 16.04, because the LSB specifies ABIs for various libraries that are no 
longer supported in Ubuntu as obsolete, the packages for the lsb modules have 
been dropped in both Debian and Ubuntu.  This includes dropping of lsb-core, 
which is the component which provides the LSB-mandated ELF loader path - 
without which no lsb executable will work.

  This SRU will restore the bare minimum of LSB compatibility necessary
  to support known third-party LSB printer driver packages on Ubuntu
  16.04.

  [Regression potential]
  The reintroduced 'lsb' binary package is known to not fully satisfy the 
requirements for a complete LSB-compliant system.  This is a regression vs. 
Ubuntu 14.04; so anyone using LSB packages on Ubuntu 14.04 who upgrades to 
Ubuntu 16.04 may have the upgrade succeed without any warning from the package 
manager.

  As there are very few lsb packages in use in the wild, this is
  considered an acceptable regression, especially as this will land
  before the first 16.04 point release.

  [Test case]
  1. Download the epsion 201106w printer driver package from 
http://download.ebz.epson.net/dsc/op/stable/debian/dists/lsb3.2/main/binary-amd64/epson-inkjet-printer-201106w_1.0.1-1lsb3.2_amd64.deb
  2. Install the package and confirm that its dependencies are not satisfiable.
  3. Enable xenial-proposed.
  4. Install the package again and confirm that the dependencies are satisfied.
  5. Verify that 
/opt/epson-inkjet-printer-201106w/cups/lib/filter/epson_inkjet_printer_filter 
can be run without errors about missing lsb ld.so or missing libraries.

  Starting with Xenial, lsb compatibility packages were dropped (besides
  lsb-release and lsb-base):

  lsb (9.20150826) unstable; urgency=low

    * Drop all the LSB compatibility packages besides lsb-release and lsb-base
  - Drop packages-availability checking in lsb-release
  - Truncate README.Debian to a minimum
  - Document this in lsb-base.NEWS.Debian
    * Change the versioning number to avoid any ambiguity; use joeyh's
  version.date, with version being Debian next stable's

   -- Didier Raboud   Wed, 26 Aug 2015 12:00:00 +0200

  The problem is that downloadable printer drivers (like the ones from
  Openprinting, but also from other available providers) that are
  suggested when installing a printer on Ubuntu depends on lsb, which is
  not available anymore:

  epson-inkjet-printer-201106w:
   Dépend: lsb (>=3.2) but it is not installable

  This triggers a regression where it is not possible to setup a printer
  this way (downloading a driver where no local driver is available)
  anymore.

  I see two possible solutions:

  - Add a proper replaces field to one of the remaining lsb-* packages,
  to hopefully fix missing lsb package (maybe it would be useful to also
  replace other compability packages that are not built anymore).

  - Re-introduce LSB compatibility packages, but that might be an
  overkill.

To manage notifications about this bug go to:
https://bugs.launchpad.net/lsb/+bug/1536353/+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 1613078] Re: package console-setup 1.108ubuntu15.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 10

2016-08-14 Thread Apport retracing service
** Tags removed: need-duplicate-check

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

Title:
  package console-setup 1.108ubuntu15.2 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 10

Status in console-setup package in Ubuntu:
  New

Bug description:
  
  _
  ...

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: console-setup 1.108ubuntu15.2
  ProcVersionSignature: Ubuntu 4.4.0-35.54-generic 4.4.16
  Uname: Linux 4.4.0-35-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  Date: Sun Aug 14 17:10:19 2016
  ErrorMessage: subprocess installed post-installation script returned error 
exit status 10
  InstallationDate: Installed on 2015-12-01 (257 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  PackageArchitecture: all
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1.1
   apt  1.2.12~ubuntu16.04.1
  SourcePackage: console-setup
  Title: package console-setup 1.108ubuntu15.2 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 10
  UpgradeStatus: Upgraded to xenial on 2016-08-14 (0 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/console-setup/+bug/1613078/+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 1613078] [NEW] package console-setup 1.108ubuntu15.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 10

2016-08-14 Thread karm
Public bug reported:


_
...

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: console-setup 1.108ubuntu15.2
ProcVersionSignature: Ubuntu 4.4.0-35.54-generic 4.4.16
Uname: Linux 4.4.0-35-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
Date: Sun Aug 14 17:10:19 2016
ErrorMessage: subprocess installed post-installation script returned error exit 
status 10
InstallationDate: Installed on 2015-12-01 (257 days ago)
InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
PackageArchitecture: all
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.1
 apt  1.2.12~ubuntu16.04.1
SourcePackage: console-setup
Title: package console-setup 1.108ubuntu15.2 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 10
UpgradeStatus: Upgraded to xenial on 2016-08-14 (0 days ago)

** Affects: console-setup (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package need-duplicate-check xenial

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

Title:
  package console-setup 1.108ubuntu15.2 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 10

Status in console-setup package in Ubuntu:
  New

Bug description:
  
  _
  ...

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: console-setup 1.108ubuntu15.2
  ProcVersionSignature: Ubuntu 4.4.0-35.54-generic 4.4.16
  Uname: Linux 4.4.0-35-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  Date: Sun Aug 14 17:10:19 2016
  ErrorMessage: subprocess installed post-installation script returned error 
exit status 10
  InstallationDate: Installed on 2015-12-01 (257 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  PackageArchitecture: all
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1.1
   apt  1.2.12~ubuntu16.04.1
  SourcePackage: console-setup
  Title: package console-setup 1.108ubuntu15.2 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 10
  UpgradeStatus: Upgraded to xenial on 2016-08-14 (0 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/console-setup/+bug/1613078/+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 1613073] Re: package initramfs-tools 0.122ubuntu8.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2016-08-14 Thread Battant
My defoct kernel version is 4-4-0-35

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

Title:
  package initramfs-tools 0.122ubuntu8.1 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

Status in initramfs-tools package in Ubuntu:
  New

Bug description:
  Hello

  
  Here is my configuration :

  lsb_release -rd
  Description:  Ubuntu 16.04.1 LTS
  Release:  16.04

  uname -r
  4.2.0-42-generic

   apt-cache policy linux-image-extra-4.4.0-35-generic
  linux-image-extra-4.4.0-35-generic:
Installed: 4.4.0-35.54
Candidate: 4.4.0-35.54
Version table:
   *** 4.4.0-35.54 500
  500 http://archive.ubuntu.csg.uzh.ch/ubuntu xenial-proposed/main 
amd64 Packages
  100 /var/lib/dpkg/status


  When I try to upgrame from ubuntu 15.10 to ubuntu 16.04 LTS I have som
  problem sutch as unable to install the new kernel.

  Question :
  Ave you this problem when you upgrade from ubuntu 15.10 to ubuntu 16.04 Lts 
64 bit ?

  My sytem os nnow instabale.

  Could you help me please to fix this issue ?

  
  Thanks for your support

  
  Best regards

  Battant

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: initramfs-tools 0.122ubuntu8.1
  ProcVersionSignature: Ubuntu 4.2.0-42.49-generic 4.2.8-ckt12
  Uname: Linux 4.2.0-42-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  Date: Sun Aug 14 15:49:54 2016
  ErrorMessage: subprocess installed post-installation script returned error 
exit status 1
  InstallationDate: Installed on 2016-04-12 (123 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  PackageArchitecture: all
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1.1
   apt  1.2.12~ubuntu16.04.1
  SourcePackage: initramfs-tools
  Title: package initramfs-tools 0.122ubuntu8.1 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
  UpgradeStatus: No upgrade log present (probably fresh install)
  mtime.conffile..etc.initramfs-tools.initramfs.conf: 2016-02-21T22:22:01

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/1613073/+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 1613073] Re: package initramfs-tools 0.122ubuntu8.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2016-08-14 Thread Battant
I have also a problem with k-2-0-35

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

Title:
  package initramfs-tools 0.122ubuntu8.1 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

Status in initramfs-tools package in Ubuntu:
  New

Bug description:
  Hello

  
  Here is my configuration :

  lsb_release -rd
  Description:  Ubuntu 16.04.1 LTS
  Release:  16.04

  uname -r
  4.2.0-42-generic

   apt-cache policy linux-image-extra-4.4.0-35-generic
  linux-image-extra-4.4.0-35-generic:
Installed: 4.4.0-35.54
Candidate: 4.4.0-35.54
Version table:
   *** 4.4.0-35.54 500
  500 http://archive.ubuntu.csg.uzh.ch/ubuntu xenial-proposed/main 
amd64 Packages
  100 /var/lib/dpkg/status


  When I try to upgrame from ubuntu 15.10 to ubuntu 16.04 LTS I have som
  problem sutch as unable to install the new kernel.

  Question :
  Ave you this problem when you upgrade from ubuntu 15.10 to ubuntu 16.04 Lts 
64 bit ?

  My sytem os nnow instabale.

  Could you help me please to fix this issue ?

  
  Thanks for your support

  
  Best regards

  Battant

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: initramfs-tools 0.122ubuntu8.1
  ProcVersionSignature: Ubuntu 4.2.0-42.49-generic 4.2.8-ckt12
  Uname: Linux 4.2.0-42-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  Date: Sun Aug 14 15:49:54 2016
  ErrorMessage: subprocess installed post-installation script returned error 
exit status 1
  InstallationDate: Installed on 2016-04-12 (123 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  PackageArchitecture: all
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1.1
   apt  1.2.12~ubuntu16.04.1
  SourcePackage: initramfs-tools
  Title: package initramfs-tools 0.122ubuntu8.1 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
  UpgradeStatus: No upgrade log present (probably fresh install)
  mtime.conffile..etc.initramfs-tools.initramfs.conf: 2016-02-21T22:22:01

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/1613073/+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 1613073] Re: package initramfs-tools 0.122ubuntu8.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2016-08-14 Thread Apport retracing service
** Tags removed: need-duplicate-check

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

Title:
  package initramfs-tools 0.122ubuntu8.1 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

Status in initramfs-tools package in Ubuntu:
  New

Bug description:
  Hello

  
  Here is my configuration :

  lsb_release -rd
  Description:  Ubuntu 16.04.1 LTS
  Release:  16.04

  uname -r
  4.2.0-42-generic

   apt-cache policy linux-image-extra-4.4.0-35-generic
  linux-image-extra-4.4.0-35-generic:
Installed: 4.4.0-35.54
Candidate: 4.4.0-35.54
Version table:
   *** 4.4.0-35.54 500
  500 http://archive.ubuntu.csg.uzh.ch/ubuntu xenial-proposed/main 
amd64 Packages
  100 /var/lib/dpkg/status


  When I try to upgrame from ubuntu 15.10 to ubuntu 16.04 LTS I have som
  problem sutch as unable to install the new kernel.

  Question :
  Ave you this problem when you upgrade from ubuntu 15.10 to ubuntu 16.04 Lts 
64 bit ?

  My sytem os nnow instabale.

  Could you help me please to fix this issue ?

  
  Thanks for your support

  
  Best regards

  Battant

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: initramfs-tools 0.122ubuntu8.1
  ProcVersionSignature: Ubuntu 4.2.0-42.49-generic 4.2.8-ckt12
  Uname: Linux 4.2.0-42-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  Date: Sun Aug 14 15:49:54 2016
  ErrorMessage: subprocess installed post-installation script returned error 
exit status 1
  InstallationDate: Installed on 2016-04-12 (123 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  PackageArchitecture: all
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1.1
   apt  1.2.12~ubuntu16.04.1
  SourcePackage: initramfs-tools
  Title: package initramfs-tools 0.122ubuntu8.1 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
  UpgradeStatus: No upgrade log present (probably fresh install)
  mtime.conffile..etc.initramfs-tools.initramfs.conf: 2016-02-21T22:22:01

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/1613073/+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 1613073] [NEW] package initramfs-tools 0.122ubuntu8.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2016-08-14 Thread Battant
Public bug reported:

Hello


Here is my configuration :

lsb_release -rd
Description:Ubuntu 16.04.1 LTS
Release:16.04

uname -r
4.2.0-42-generic

 apt-cache policy linux-image-extra-4.4.0-35-generic
linux-image-extra-4.4.0-35-generic:
  Installed: 4.4.0-35.54
  Candidate: 4.4.0-35.54
  Version table:
 *** 4.4.0-35.54 500
500 http://archive.ubuntu.csg.uzh.ch/ubuntu xenial-proposed/main amd64 
Packages
100 /var/lib/dpkg/status


When I try to upgrame from ubuntu 15.10 to ubuntu 16.04 LTS I have som
problem sutch as unable to install the new kernel.

Question :
Ave you this problem when you upgrade from ubuntu 15.10 to ubuntu 16.04 Lts 64 
bit ?

My sytem os nnow instabale.

Could you help me please to fix this issue ?


Thanks for your support


Best regards

Battant

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: initramfs-tools 0.122ubuntu8.1
ProcVersionSignature: Ubuntu 4.2.0-42.49-generic 4.2.8-ckt12
Uname: Linux 4.2.0-42-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
Date: Sun Aug 14 15:49:54 2016
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationDate: Installed on 2016-04-12 (123 days ago)
InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
PackageArchitecture: all
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.1
 apt  1.2.12~ubuntu16.04.1
SourcePackage: initramfs-tools
Title: package initramfs-tools 0.122ubuntu8.1 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)
mtime.conffile..etc.initramfs-tools.initramfs.conf: 2016-02-21T22:22:01

** Affects: initramfs-tools (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package xenial

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

Title:
  package initramfs-tools 0.122ubuntu8.1 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

Status in initramfs-tools package in Ubuntu:
  New

Bug description:
  Hello

  
  Here is my configuration :

  lsb_release -rd
  Description:  Ubuntu 16.04.1 LTS
  Release:  16.04

  uname -r
  4.2.0-42-generic

   apt-cache policy linux-image-extra-4.4.0-35-generic
  linux-image-extra-4.4.0-35-generic:
Installed: 4.4.0-35.54
Candidate: 4.4.0-35.54
Version table:
   *** 4.4.0-35.54 500
  500 http://archive.ubuntu.csg.uzh.ch/ubuntu xenial-proposed/main 
amd64 Packages
  100 /var/lib/dpkg/status


  When I try to upgrame from ubuntu 15.10 to ubuntu 16.04 LTS I have som
  problem sutch as unable to install the new kernel.

  Question :
  Ave you this problem when you upgrade from ubuntu 15.10 to ubuntu 16.04 Lts 
64 bit ?

  My sytem os nnow instabale.

  Could you help me please to fix this issue ?

  
  Thanks for your support

  
  Best regards

  Battant

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: initramfs-tools 0.122ubuntu8.1
  ProcVersionSignature: Ubuntu 4.2.0-42.49-generic 4.2.8-ckt12
  Uname: Linux 4.2.0-42-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  Date: Sun Aug 14 15:49:54 2016
  ErrorMessage: subprocess installed post-installation script returned error 
exit status 1
  InstallationDate: Installed on 2016-04-12 (123 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  PackageArchitecture: all
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1.1
   apt  1.2.12~ubuntu16.04.1
  SourcePackage: initramfs-tools
  Title: package initramfs-tools 0.122ubuntu8.1 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
  UpgradeStatus: No upgrade log present (probably fresh install)
  mtime.conffile..etc.initramfs-tools.initramfs.conf: 2016-02-21T22:22:01

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/1613073/+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 1577051] Re: aa-logprof fails with unknown mode "reweive"

2016-08-14 Thread Christian Boltz
This bugreport is getting quite long ;-) and starts to get confusing.

I just opened https://bugs.launchpad.net/apparmor/+bug/1613061 as
reminder that logparser.py needs to switch based on the event details
instead of the operation= keyword.

The crashes reported in this bug are (hot)fixed in all supported
releases (see the exact commits in the comments above), therefore I'm
closing this bug.

** Changed in: apparmor
Milestone: None => 2.11

** Changed in: apparmor
   Status: Confirmed => Fix Committed

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

Title:
  aa-logprof fails with unknown mode "reweive"

Status in AppArmor:
  Fix Committed
Status in apparmor package in Ubuntu:
  Fix Released
Status in apparmor source package in Xenial:
  Fix Committed

Bug description:
  [Impact]

  AppArmor policy developers cannot use aa-logprof without it exiting
  with a traceback on certain denial messages.

  [Test Case]

  $ echo 'Apr 30 21:53:05 nova kernel: [24668.960760] audit: \
  type=1400 audit(1462045985.636:2154): apparmor="DENIED" \
  operation="file_perm" profile="foo" pid=12529 comm="java" \
  laddr=:::127.0.0.1 lport=8080 faddr=:::127.0.0.1 fport=52308 \
  family="inet6" sock_type="stream" ^Cotocol=6 requested_mask="receive"  \
  denied_mask="receive"' > /tmp/log
  $ mkdir -p /tmp/profiles && printf "profile foo {\n}" > /tmp/profiles/foo
  $ aa-logprof -f /tmp/log -d /tmp/profiles

  Expected output of the last command is:

  Reading log entries from /tmp/log.
  Updating AppArmor profiles in /tmp/profiles.

  [Regression Potential]

  There is little potential for regression. This "hotfix" could result
  in some slight confusion because the problematic denial messages will
  simply be ignored but it allows aa-logprof to do its intended job
  without unexpectedly exiting.

  [Original Report]

  Ubuntu 16.04.

  Profiling apache tomcat.

  1) aa-genprof on the catalina.sh script that is used to start and stop tomcat.
  2) Start and stop tomcat.
  3) Scan and save the profile.
  4) aa-complain on the tomcat profile
  5) Start tomcat again and this time also send a http request to tomcat.
  6) Run aa-logprof which fails with this message

  Reading log entries from /var/log/syslog.
  Updating AppArmor profiles in /etc/apparmor.d.
  Traceback (most recent call last):
    File "/usr/lib/python3/dist-packages/apparmor/logparser.py", line 402, in 
read_log
  self.add_event_to_tree(event)
    File "/usr/lib/python3/dist-packages/apparmor/logparser.py", line 206, in 
add_event_to_tree
  e = self.parse_event_for_tree(e)
    File "/usr/lib/python3/dist-packages/apparmor/logparser.py", line 303, in 
parse_event_for_tree
  raise AppArmorException(_('Log contains unknown mode %s') % rmask)
  apparmor.common.AppArmorException: 'Log contains unknown mode reweive'

  During handling of the above exception, another exception occurred:

  Traceback (most recent call last):
    File "/usr/sbin/aa-logprof", line 50, in 
  apparmor.do_logprof_pass(logmark)
    File "/usr/lib/python3/dist-packages/apparmor/aa.py", line 2189, in 
do_logprof_pass
  log = log_reader.read_log(logmark)
    File "/usr/lib/python3/dist-packages/apparmor/logparser.py", line 407, in 
read_log
  raise AppArmorBug(ex_msg)  # py3-only: from None
  apparmor.common.AppArmorBug: Log contains unknown mode reweive

  This error was caused by the log line:
  Apr 30 21:53:05 nova kernel: [24668.960760] audit: type=1400 
audit(1462045985.636:2154): apparmor="ALLOWED" operation="file_perm" 
profile="/usr/local/apache-tomcat-8.0.33/bin/catalina.sh///usr/local/jdk1.8.0_92/bin/java"
 pid=12529 comm="java" laddr=:::127.0.0.1 lport=8080 faddr=:::127.0.0.1 
fport=52308 family="inet6" sock_type="stream" protocol=6 
requested_mask="receive" denied_mask="receive"

  An unexpected error occoured!

  For details, see /tmp/apparmor-bugreport-wj6gamog.txt
  Please consider reporting a bug at https://bugs.launchpad.net/apparmor/
  and attach this file.

To manage notifications about this bug go to:
https://bugs.launchpad.net/apparmor/+bug/1577051/+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 1582374] Re: Log contains unknown mode senw

2016-08-14 Thread Christian Boltz
This bugreport is getting quite long ;-) and starts to get confusing.

I just opened https://bugs.launchpad.net/apparmor/+bug/1613061 as
reminder that logparser.py needs to switch based on the event details
instead of the operation= keyword.

The crashes reported in this bug are (hot)fixed in all supported
releases (see the exact commits in the comments above), therefore I'm
closing this bug.

** Changed in: apparmor
   Status: New => Fix Released

** Changed in: apparmor
Milestone: None => 2.11

** Changed in: apparmor
   Status: Fix Released => Fix Committed

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

Title:
  Log contains unknown mode senw

Status in AppArmor:
  Fix Committed
Status in apparmor package in Ubuntu:
  Fix Released
Status in apparmor source package in Xenial:
  Fix Committed

Bug description:
  [Impact]

  AppArmor policy developers cannot use aa-logprof without it exiting
  with a traceback on certain denial messages.

  [Test Case]

  $ echo 'type=AVC msg=audit(1463403689.381:267599): apparmor="ALLOWED" \
  operation="file_perm" profile="foo" pid=13215 comm="apache2" \
  laddr=:::192.168.1.100 lport=80 faddr=:::192.168.1.100 fport=45658 \
  family="inet6" sock_type="stream" protocol=6 requested_mask="send" \
  denied_mask="send"' > /tmp/log
  $ mkdir -p /tmp/profiles && printf "profile foo {\n}" > /tmp/profiles/foo
  $ aa-logprof -f /tmp/log -d /tmp/profiles

  Expected output of the last command is:

  Reading log entries from /tmp/log.
  Updating AppArmor profiles in /tmp/profiles.

  [Regression Potential]

  There is little potential for regression. This "hotfix" could result
  in some slight confusion because the problematic denial messages will
  simply be ignored but it allows aa-logprof to do its intended job
  without unexpectedly exiting.

  [Original Report]

  Ref #1243932.  Same title but appears to be different cause.

  Ubuntu 16.04.  Error thrown on 'sudo aa-logprof'

  Python 3.5.1+: /usr/bin/python3
  Mon May 16 20:13:30 2016

  A problem occurred in a Python script.  Here is the sequence of
  function calls leading up to the error, in the order they occurred.

   /usr/sbin/aa-logprof in ()
     42
     43 if profiledir:
     44 apparmor.profile_dir = apparmor.get_full_path(profiledir)
     45 if not os.path.isdir(apparmor.profile_dir):
     46 raise apparmor.AppArmorException("%s is not a 
directory."%profiledir)
     47
     48 apparmor.loadincludes()
     49
     50 apparmor.do_logprof_pass(logmark)
     51
  apparmor = 
  apparmor.do_logprof_pass = 
  logmark = ''

   /usr/lib/python3/dist-packages/apparmor/aa.py in do_logprof_pass(logmark='', 
passno=0, pid={13215: [['unknown_hat', 13215, '/usr/sbin/apache2', 
'null-www.xx.co.uk', 'PERMITTING', 'null-www.xx.co.uk'], 
['path', 13215, 'null-complain-profile', 'null-complain-profile', 'HINT', 
'PERMITTING', {'::r', 'r'}, '/proc/13215/attr/current', '']], 13697: [['path', 
13697, 'null-complain-profile', 'null-complain-profile', 'HINT', 'PERMITTING', 
{'::a', '::w', 'a', 'w'}, '/proc/13697/attr/current', '']]})
   2184 ##repo_cfg = read_config('repository.conf')
   2185 ##if not repo_cfg['repository'].get('enabled', False) or 
repo_cfg['repository]['enabled'] not in ['yes', 'no']:
   2186 ##UI_ask_to_enable_repo()
   2187
   2188 log_reader = apparmor.logparser.ReadLog(pid, logfile, 
existing_profiles, profile_dir, log)
   2189 log = log_reader.read_log(logmark)
   2190 #read_log(logmark)
   2191
   2192 for root in log:
   2193 handle_children('', '', root)
  global log = [[['path', 13697, 'null-complain-profile', 
'null-complain-profile', 'HINT', 'PERMITTING', {'::a', '::w', 'a', 'w'}, 
'/proc/13697/attr/current', '']], [['unknown_hat', 13215, '/usr/sbin/apache2', 
'null-www.po4management.co.uk', 'PERMITTING', 'null-www.xx.co.uk'], 
['path', 13215, 'null-complain-profile', 'null-complain-profile', 'HINT', 
'PERMITTING', {'::r', 'r'}, '/proc/13215/attr/current', '']]]
  log_reader = 
  log_reader.read_log = >
  logmark = ''

   /usr/lib/python3/dist-packages/apparmor/logparser.py in 
read_log(self=, logmark='')
    402 self.add_event_to_tree(event)
    403 except AppArmorException as e:
    404 ex_msg = ('%(msg)s\n\nThis error was caused by the 
log line:\n%(logline)s' %
    405 {'msg': e.value, 'logline': line})
    406 # when py3 only: Drop the original 
AppArmorException by passing None as the parent exception
    407 raise AppArmorBug(ex_msg)  # py3-only: from None
    408
    409 self.LOG.close()
    410 self.logmark = ''
    411 return self.log
  global AppArmorBug = 
  ex_msg = 'Log contains unknown mode senw\n\nThis error 

[Touch-packages] [Bug 1592514] Re: 3G usb Card - mmcli and network manager broken compatibility

2016-08-14 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: network-manager (Ubuntu)
   Status: New => Confirmed

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

Title:
  3G usb Card - mmcli and network manager broken compatibility

Status in network-manager package in Ubuntu:
  Confirmed

Bug description:
  This bug is specific to "ipv4 only" 3g providers

  Here is syslog

  Jun 14 19:26:12 Latitude-E5440 NetworkManager[758]:   [1465928772.9535] 
device (cdc-wdm1): Activation: starting connection 'XXXx X / XXX XXX XXX' 
(1554021e-ff2e-44f9-8e2d-c16cae73bfe0)
  Jun 14 19:26:12 Latitude-E5440 NetworkManager[758]:   [1465928772.9538] 
audit: op="connection-activate" uuid="1554021e-ff2e-44f9-8e2d-c16cae73bfe0" 
name="XXXx X / XXX XXX XXX" pid=1663 uid=1000 result="success"
  Jun 14 19:26:12 Latitude-E5440 NetworkManager[758]:   [1465928772.9542] 
device (cdc-wdm1): state change: disconnected -> prepare (reason 'none') [30 40 
0]
  Jun 14 19:26:12 Latitude-E5440 ModemManager[675]:   Simple connect 
started...
  Jun 14 19:26:12 Latitude-E5440 ModemManager[675]:   Simple connect 
state (4/8): Wait to get fully enabled
  Jun 14 19:26:12 Latitude-E5440 ModemManager[675]:   Simple connect 
state (5/8): Register
  Jun 14 19:26:12 Latitude-E5440 ModemManager[675]:   Simple connect 
state (6/8): Bearer
  Jun 14 19:26:12 Latitude-E5440 ModemManager[675]:   Simple connect 
state (7/8): Connect
  Jun 14 19:26:12 Latitude-E5440 ModemManager[675]:   Modem 
/org/freedesktop/ModemManager1/Modem/2: state changed (registered -> connecting)
  Jun 14 19:26:15 Latitude-E5440 ModemManager[675]:   error: couldn't get 
current settings: Cannot send message: QMI service 'wds' version '1.2' 
required, got version '1.1'
  Jun 14 19:26:15 Latitude-E5440 ModemManager[675]:   Modem 
/org/freedesktop/ModemManager1/Modem/2: state changed (connecting -> connected)
  Jun 14 19:26:15 Latitude-E5440 ModemManager[675]:   Simple connect 
state (8/8): All done
  Jun 14 19:26:15 Latitude-E5440 NetworkManager[758]:   [1465928775.2418] 
(cdc-wdm1): failed to connect modem: invalid bearer IP configuration
  Jun 14 19:26:15 Latitude-E5440 NetworkManager[758]:   [1465928775.2419] 
device (cdc-wdm1): state change: prepare -> failed (reason 'config-failed') [40 
120 4]
  Jun 14 19:26:15 Latitude-E5440 NetworkManager[758]:   [1465928775.2421] 
policy: disabling autoconnect for connection 'Tunisie Télécom / TUNTEL WEB 
DATA'.
  Jun 14 19:26:15 Latitude-E5440 NetworkManager[758]:   [1465928775.2423] 
device (cdc-wdm1): Activation: failed for connection 'Tunisie Télécom / TUNTEL 
WEB DATA'
  Jun 14 19:26:15 Latitude-E5440 NetworkManager[758]:   [1465928775.2428] 
device (cdc-wdm1): state change: failed -> disconnected (reason 'none') [120 30 
0]
  Jun 14 19:26:15 Latitude-E5440 ModemManager[675]:   Modem 
/org/freedesktop/ModemManager1/Modem/2: state changed (connected -> 
disconnecting)
  Jun 14 19:26:15 Latitude-E5440 ModemManager[675]:   Modem 
/org/freedesktop/ModemManager1/Modem/2: state changed (disconnecting -> 
registered)

  i managed to make it work using this shell script

  #!/bin/bash
  mmcli -m 0 -b $1 --connect
  ifconfig wwp0s29u1u8u3i3 up
  mmcli -m 0 -b $1
  dhclient -d wwp0s29u1u8u3i3 &
  echo "nameserver 8.8.8.8" >> /etc/resolv.conf

  i also disabled ipv6 with gui

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1592514/+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 1592514] Re: 3G usb Card - mmcli and network manager broken compatibility

2016-08-14 Thread Kira Konovalov
Me affected as well!

Won't give you my syslog once it's same as Afril's.

Gobi 1000 (HP UN2400).

Arfil, thanks for your script, works well as opossed to NetworkManager
:)

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

Title:
  3G usb Card - mmcli and network manager broken compatibility

Status in network-manager package in Ubuntu:
  Confirmed

Bug description:
  This bug is specific to "ipv4 only" 3g providers

  Here is syslog

  Jun 14 19:26:12 Latitude-E5440 NetworkManager[758]:   [1465928772.9535] 
device (cdc-wdm1): Activation: starting connection 'XXXx X / XXX XXX XXX' 
(1554021e-ff2e-44f9-8e2d-c16cae73bfe0)
  Jun 14 19:26:12 Latitude-E5440 NetworkManager[758]:   [1465928772.9538] 
audit: op="connection-activate" uuid="1554021e-ff2e-44f9-8e2d-c16cae73bfe0" 
name="XXXx X / XXX XXX XXX" pid=1663 uid=1000 result="success"
  Jun 14 19:26:12 Latitude-E5440 NetworkManager[758]:   [1465928772.9542] 
device (cdc-wdm1): state change: disconnected -> prepare (reason 'none') [30 40 
0]
  Jun 14 19:26:12 Latitude-E5440 ModemManager[675]:   Simple connect 
started...
  Jun 14 19:26:12 Latitude-E5440 ModemManager[675]:   Simple connect 
state (4/8): Wait to get fully enabled
  Jun 14 19:26:12 Latitude-E5440 ModemManager[675]:   Simple connect 
state (5/8): Register
  Jun 14 19:26:12 Latitude-E5440 ModemManager[675]:   Simple connect 
state (6/8): Bearer
  Jun 14 19:26:12 Latitude-E5440 ModemManager[675]:   Simple connect 
state (7/8): Connect
  Jun 14 19:26:12 Latitude-E5440 ModemManager[675]:   Modem 
/org/freedesktop/ModemManager1/Modem/2: state changed (registered -> connecting)
  Jun 14 19:26:15 Latitude-E5440 ModemManager[675]:   error: couldn't get 
current settings: Cannot send message: QMI service 'wds' version '1.2' 
required, got version '1.1'
  Jun 14 19:26:15 Latitude-E5440 ModemManager[675]:   Modem 
/org/freedesktop/ModemManager1/Modem/2: state changed (connecting -> connected)
  Jun 14 19:26:15 Latitude-E5440 ModemManager[675]:   Simple connect 
state (8/8): All done
  Jun 14 19:26:15 Latitude-E5440 NetworkManager[758]:   [1465928775.2418] 
(cdc-wdm1): failed to connect modem: invalid bearer IP configuration
  Jun 14 19:26:15 Latitude-E5440 NetworkManager[758]:   [1465928775.2419] 
device (cdc-wdm1): state change: prepare -> failed (reason 'config-failed') [40 
120 4]
  Jun 14 19:26:15 Latitude-E5440 NetworkManager[758]:   [1465928775.2421] 
policy: disabling autoconnect for connection 'Tunisie Télécom / TUNTEL WEB 
DATA'.
  Jun 14 19:26:15 Latitude-E5440 NetworkManager[758]:   [1465928775.2423] 
device (cdc-wdm1): Activation: failed for connection 'Tunisie Télécom / TUNTEL 
WEB DATA'
  Jun 14 19:26:15 Latitude-E5440 NetworkManager[758]:   [1465928775.2428] 
device (cdc-wdm1): state change: failed -> disconnected (reason 'none') [120 30 
0]
  Jun 14 19:26:15 Latitude-E5440 ModemManager[675]:   Modem 
/org/freedesktop/ModemManager1/Modem/2: state changed (connected -> 
disconnecting)
  Jun 14 19:26:15 Latitude-E5440 ModemManager[675]:   Modem 
/org/freedesktop/ModemManager1/Modem/2: state changed (disconnecting -> 
registered)

  i managed to make it work using this shell script

  #!/bin/bash
  mmcli -m 0 -b $1 --connect
  ifconfig wwp0s29u1u8u3i3 up
  mmcli -m 0 -b $1
  dhclient -d wwp0s29u1u8u3i3 &
  echo "nameserver 8.8.8.8" >> /etc/resolv.conf

  i also disabled ipv6 with gui

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1592514/+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 1612951] Re: /etc/default/keyboard ignored after upgrade to 16.04

2016-08-14 Thread bmaupin
** Summary changed:

- XKBOPTIONS ignored after upgrade to 16.04
+ /etc/default/keyboard ignored after upgrade to 16.04

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

Title:
  /etc/default/keyboard ignored after upgrade to 16.04

Status in console-setup package in Ubuntu:
  New

Bug description:
  I just upgraded Xubuntu 14.04 to 16.04, and I noticed my compose key
  wasn't working in any application in X. I verified my compose key was
  still set up in /etc/default/keyboard:

  XKBOPTIONS="compose:ralt"

  I googled around and ran these two commands:

  sudo dpkg-reconfigure keyboard-configuration
  sudo update-initramfs -u

  But the problem persists. I notice that the compose key works fine in
  the console, but it doesn't work in any X application, including the
  terminal.

  Here's my current workaround:
  echo "setxkbmap -option compose:ralt" >> ~/.xprofile

  It looks like I'm not the only one experiencing this, and it doesn't
  seem limited to Xfce:

  https://ubuntu-mate.community/t/setxkbmap-option-in-etc-default-
  keyboard-not-working/4054

  $ lsb_release -rd
  Description:  Ubuntu 16.04.1 LTS
  Release:  16.04
  $ apt-cache policy keyboard-configuration
  keyboard-configuration:
    Installed: 1.108ubuntu15.2
    Candidate: 1.108ubuntu15.2

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: keyboard-configuration 1.108ubuntu15.2
  ProcVersionSignature: Ubuntu 4.4.0-31.50-generic 4.4.13
  Uname: Linux 4.4.0-31-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Sat Aug 13 09:04:10 2016
  InstallationDate: Installed on 2014-05-08 (827 days ago)
  InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Release amd64 (20140417)
  PackageArchitecture: all
  SourcePackage: console-setup
  UpgradeStatus: Upgraded to xenial on 2016-08-05 (7 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/console-setup/+bug/1612951/+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 1562626] Re: [Notifications/Greeter] notifications and quick settings on lock screen should be separated

2016-08-14 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

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

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

Title:
  [Notifications/Greeter] notifications and quick settings on lock
  screen should be separated

Status in Ubuntu UX:
  New
Status in gsettings-ubuntu-touch-schemas package in Ubuntu:
  Confirmed
Status in ubuntu-system-settings package in Ubuntu:
  Confirmed
Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  Locking and unlocking settings on mobile

  Currently there is the option to enable/disable

  When locked, allow:
  - Launcher
  - Notifications and quick settings

  
  I would like to disable notifications *only*. One way this would work, is to 
still have the quick settings available, but not display the contents of the 
notifications. 

  It would be similar to the telegram-app secret chat notifications,
  which show that a message was received but the contents are not shown.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ux/+bug/1562626/+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 1562626] Re: [Notifications/Greeter] notifications and quick settings on lock screen should be separated

2016-08-14 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: ubuntu-system-settings (Ubuntu)
   Status: New => Confirmed

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

Title:
  [Notifications/Greeter] notifications and quick settings on lock
  screen should be separated

Status in Ubuntu UX:
  New
Status in gsettings-ubuntu-touch-schemas package in Ubuntu:
  Confirmed
Status in ubuntu-system-settings package in Ubuntu:
  Confirmed
Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  Locking and unlocking settings on mobile

  Currently there is the option to enable/disable

  When locked, allow:
  - Launcher
  - Notifications and quick settings

  
  I would like to disable notifications *only*. One way this would work, is to 
still have the quick settings available, but not display the contents of the 
notifications. 

  It would be similar to the telegram-app secret chat notifications,
  which show that a message was received but the contents are not shown.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ux/+bug/1562626/+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 1562626] Re: [Notifications/Greeter] notifications and quick settings on lock screen should be separated

2016-08-14 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: gsettings-ubuntu-touch-schemas (Ubuntu)
   Status: New => Confirmed

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

Title:
  [Notifications/Greeter] notifications and quick settings on lock
  screen should be separated

Status in Ubuntu UX:
  New
Status in gsettings-ubuntu-touch-schemas package in Ubuntu:
  Confirmed
Status in ubuntu-system-settings package in Ubuntu:
  Confirmed
Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  Locking and unlocking settings on mobile

  Currently there is the option to enable/disable

  When locked, allow:
  - Launcher
  - Notifications and quick settings

  
  I would like to disable notifications *only*. One way this would work, is to 
still have the quick settings available, but not display the contents of the 
notifications. 

  It would be similar to the telegram-app secret chat notifications,
  which show that a message was received but the contents are not shown.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ux/+bug/1562626/+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 1507530] Re: VPN service 'pptp' disappeared

2016-08-14 Thread Michael Moukhin
Seems like my installation of 16.04.2 is also affected by this bug:

Aug 12 21:30:43 luv NetworkManager[900]:   [1471026643.0240] audit: 
op="connection-activate" uuid="1419b5fa-a369-4181-8423-5cc543f862e4" name="VPN 
connection 1" pid=1913 uid=1000 result="success"
Aug 12 21:30:43 luv NetworkManager[900]:   [1471026643.0288] 
vpn-connection[0x161d3e0,1419b5fa-a369-4181-8423-5cc543f862e4,"VPN connection 
1",0]: Started the VPN service, PID 4091
Aug 12 21:30:43 luv NetworkManager[900]:   [1471026643.0401] 
vpn-connection[0x161d3e0,1419b5fa-a369-4181-8423-5cc543f862e4,"VPN connection 
1",0]: Saw the service appear; activating connection
Aug 12 21:30:43 luv NetworkManager[900]:   [1471026643.0494] 
vpn-connection[0x161d3e0,1419b5fa-a369-4181-8423-5cc543f862e4,"VPN connection 
1",0]: VPN connection: (ConnectInteractive) reply received
Aug 12 21:30:43 luv NetworkManager[900]: ** Message: ipsec enable flag: (null)
Aug 12 21:30:43 luv NetworkManager[900]: ** Message: Check port 1701
Aug 12 21:30:43 luv NetworkManager[900]: ** Message: xl2tpd started with pid 
4094
Aug 12 21:30:43 luv NetworkManager[900]: xl2tpd[4094]: setsockopt recvref[30]: 
Protocol not available
Aug 12 21:30:43 luv NetworkManager[900]: xl2tpd[4094]: Using l2tp kernel 
support.
Aug 12 21:30:43 luv NetworkManager[900]: xl2tpd[4094]: xl2tpd version 
xl2tpd-1.3.6 started on luv PID:4094
Aug 12 21:30:43 luv NetworkManager[900]: xl2tpd[4094]: Written by Mark Spencer, 
Copyright (C) 1998, Adtran, Inc.
Aug 12 21:30:43 luv NetworkManager[900]: xl2tpd[4094]: Forked by Scott Balmos 
and David Stipp, (C) 2001
Aug 12 21:30:43 luv NetworkManager[900]: xl2tpd[4094]: Inherited by Jeff 
McAdams, (C) 2002
Aug 12 21:30:43 luv NetworkManager[900]: xl2tpd[4094]: Forked again by 
Xelerance (www.xelerance.com) (C) 2006
Aug 12 21:30:43 luv NetworkManager[900]: xl2tpd[4094]: Listening on IP address 
0.0.0.0, port 1701
Aug 12 21:30:43 luv NetworkManager[900]: xl2tpd[4094]: Connecting to host 
213.234.199.250, port 1701
Aug 12 21:30:43 luv NetworkManager[900]:   [1471026643.0619] 
vpn-connection[0x161d3e0,1419b5fa-a369-4181-8423-5cc543f862e4,"VPN connection 
1",0]: VPN plugin: state changed: starting (3)
Aug 12 21:30:43 luv NetworkManager[900]: xl2tpd[4094]: Connection established 
to 213.234.199.250, 1701.  Local: 19472, Remote: 28276 (ref=0/0).
Aug 12 21:30:43 luv NetworkManager[900]: xl2tpd[4094]: Calling on tunnel 19472
Aug 12 21:30:43 luv NetworkManager[900]: xl2tpd[4094]: Call established with 
213.234.199.250, Local: 14314, Remote: 27213, Serial: 1 (ref=0/0)
Aug 12 21:30:43 luv NetworkManager[900]: xl2tpd[4094]: start_pppd: I'm running:
Aug 12 21:30:43 luv NetworkManager[900]: xl2tpd[4094]: "/usr/sbin/pppd"
Aug 12 21:30:43 luv NetworkManager[900]: xl2tpd[4094]: "passive"
Aug 12 21:30:43 luv NetworkManager[900]: xl2tpd[4094]: "nodetach"
Aug 12 21:30:43 luv NetworkManager[900]: xl2tpd[4094]: ":"
Aug 12 21:30:43 luv NetworkManager[900]: xl2tpd[4094]: "file"
Aug 12 21:30:43 luv NetworkManager[900]: xl2tpd[4094]: 
"/var/run/nm-ppp-options.xl2tpd.4091"
Aug 12 21:30:43 luv NetworkManager[900]: xl2tpd[4094]: "plugin"
Aug 12 21:30:43 luv NetworkManager[900]: xl2tpd[4094]: "pppol2tp.so"
Aug 12 21:30:43 luv NetworkManager[900]: xl2tpd[4094]: "pppol2tp"
Aug 12 21:30:43 luv NetworkManager[900]: xl2tpd[4094]: "7"
Aug 12 21:30:43 luv pppd[4095]: Plugin 
/usr/lib/pppd/2.4.7/nm-l2tp-pppd-plugin.so loaded.
Aug 12 21:30:43 luv NetworkManager[900]: ** Message: nm-l2tp-ppp-plugin: 
(plugin_init): initializing
Aug 12 21:30:43 luv pppd[4095]: Plugin pppol2tp.so loaded.
Aug 12 21:30:43 luv pppd[4095]: pppd 2.4.7 started by root, uid 0
Aug 12 21:30:43 luv NetworkManager[900]: ** Message: nm-l2tp-ppp-plugin: 
(nm_phasechange): status 3 / phase 'serial connection'
Aug 12 21:30:43 luv pppd[4095]: Using interface ppp0
Aug 12 21:30:43 luv pppd[4095]: Connect: ppp0 <-->
Aug 12 21:30:43 luv NetworkManager[900]: ** Message: nm-l2tp-ppp-plugin: 
(nm_phasechange): status 5 / phase 'establish'
Aug 12 21:30:43 luv pppd[4095]: Overriding mtu 1500 to 1400
Aug 12 21:30:43 luv NetworkManager[900]: nm_device_get_device_type: assertion 
'NM_IS_DEVICE (self)' failed
Aug 12 21:30:43 luv pppd[4095]: Overriding mru 1500 to mtu value 1400
Aug 12 21:30:43 luv NetworkManager[900]:   [1471026643.0964] manager: 
(ppp0): new Generic device (/org/freedesktop/NetworkManager/Devices/4)
Aug 12 21:30:43 luv NetworkManager[900]:   [1471026643.0993] devices 
added (path: /sys/devices/virtual/net/ppp0, iface: ppp0)
Aug 12 21:30:43 luv NetworkManager[900]:   [1471026643.0994] device added 
(path: /sys/devices/virtual/net/ppp0, iface: ppp0): no ifupdown configuration 
found.
Aug 12 21:30:43 luv pppd[4095]: Overriding mtu 1460 to 1400
Aug 12 21:30:43 luv pppd[4095]: Overriding mru 1460 to mtu value 1400
Aug 12 21:30:43 luv NetworkManager[900]: ** Message: nm-l2tp-ppp-plugin: 
(nm_phasechange): status 6 / phase 'authenticate'
Aug 12 21:30:43 luv NetworkManager[900]: ** Message: nm-l2tp-ppp-plugin: 
(get_credentials): 

[Touch-packages] [Bug 1507530] Re: VPN service 'pptp' disappeared

2016-08-14 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: network-manager (Ubuntu)
   Status: New => Confirmed

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

Title:
  VPN service 'pptp' disappeared

Status in network-manager package in Ubuntu:
  Confirmed

Bug description:
  hello

   my vpn service is not working from the last update .vpn seems to be 
disappeared .
  logs:-
  Oct 19 16:08:43 Xalted-Testing NetworkManager[776]:  Starting VPN 
service 'pptp'...
  Oct 19 16:08:43 Xalted-Testing NetworkManager[776]:  VPN service 'pptp' 
started (org.freedesktop.NetworkManager.pptp), PID 3895
  Oct 19 16:08:43 Xalted-Testing NetworkManager[776]:  VPN service 'pptp' 
appeared; activating connections
  Oct 19 16:08:43 Xalted-Testing NetworkManager[776]:  VPN plugin state 
changed: init (1)
  Oct 19 16:08:43 Xalted-Testing NetworkManager[776]:  VPN plugin state 
changed: starting (3)
  Oct 19 16:08:43 Xalted-Testing NetworkManager[776]:  VPN connection 
'US-VPN' (Connect) reply received.
  Oct 19 16:08:43 Xalted-Testing pppd[3899]: Plugin 
/usr/lib/pppd/2.4.5/nm-pptp-pppd-plugin.so loaded.
  Oct 19 16:08:43 Xalted-Testing pppd[3899]: pppd 2.4.5 started by root, uid 0
  Oct 19 16:08:43 Xalted-Testing pppd[3899]: Using interface ppp0
  Oct 19 16:08:43 Xalted-Testing pppd[3899]: Connect: ppp0 <--> /dev/pts/10
  Oct 19 16:08:43 Xalted-Testing pptp[3902]: nm-pptp-service-3895 
log[main:pptp.c:314]: The synchronous pptp option is NOT activated
  Oct 19 16:08:43 Xalted-Testing NetworkManager[776]:SCPlugin-Ifupdown: 
devices added (path: /sys/devices/virtual/net/ppp0, iface: ppp0)
  Oct 19 16:08:43 Xalted-Testing NetworkManager[776]:SCPlugin-Ifupdown: 
device added (path: /sys/devices/virtual/net/ppp0, iface: ppp0): no ifupdown 
configuration found.
  Oct 19 16:08:43 Xalted-Testing NetworkManager[776]:  
/sys/devices/virtual/net/ppp0: couldn't determine device driver; ignoring...
  Oct 19 16:08:43 Xalted-Testing pptp[3917]: nm-pptp-service-3895 
log[ctrlp_rep:pptp_ctrl.c:251]: Sent control packet type is 1 
'Start-Control-Connection-Request'
  Oct 19 16:08:44 Xalted-Testing pptp[3917]: nm-pptp-service-3895 
log[ctrlp_disp:pptp_ctrl.c:739]: Received Start Control Connection Reply
  Oct 19 16:08:44 Xalted-Testing pptp[3917]: nm-pptp-service-3895 
log[ctrlp_disp:pptp_ctrl.c:773]: Client connection established.
  Oct 19 16:08:44 Xalted-Testing pptp[3917]: nm-pptp-service-3895 
log[ctrlp_rep:pptp_ctrl.c:251]: Sent control packet type is 7 
'Outgoing-Call-Request'
  Oct 19 16:08:45 Xalted-Testing pptp[3917]: nm-pptp-service-3895 
log[ctrlp_disp:pptp_ctrl.c:858]: Received Outgoing Call Reply.
  Oct 19 16:08:45 Xalted-Testing pptp[3917]: nm-pptp-service-3895 
log[ctrlp_disp:pptp_ctrl.c:897]: Outgoing call established (call ID 0, peer's 
call ID 29696).
  Oct 19 16:09:02 Xalted-Testing CRON[3919]: (root) CMD (  [ -x 
/usr/lib/php5/maxlifetime ] && [ -x /usr/lib/php5/sessionclean ] && [ -d 
/var/lib/php5 ] && /usr/lib/php5/sessionclean /var/lib/php5 
$(/usr/lib/php5/maxlifetime))
  Oct 19 16:09:14 Xalted-Testing pppd[3899]: LCP: timeout sending 
Config-Requests
  Oct 19 16:09:14 Xalted-Testing pppd[3899]: Connection terminated.
  Oct 19 16:09:14 Xalted-Testing NetworkManager[776]:  VPN plugin failed: 
1
  Oct 19 16:09:14 Xalted-Testing NetworkManager[776]:SCPlugin-Ifupdown: 
devices removed (path: /sys/devices/virtual/net/ppp0, iface: ppp0)
  Oct 19 16:09:14 Xalted-Testing pptp[3902]: nm-pptp-service-3895 
warn[decaps_hdlc:pptp_gre.c:204]: short read (-1): Input/output error
  Oct 19 16:09:14 Xalted-Testing pptp[3902]: nm-pptp-service-3895 
warn[decaps_hdlc:pptp_gre.c:216]: pppd may have shutdown, see pppd log
  Oct 19 16:09:14 Xalted-Testing pppd[3899]: Modem hangup
  Oct 19 16:09:14 Xalted-Testing pppd[3899]: Exit.
  Oct 19 16:09:14 Xalted-Testing NetworkManager[776]:  VPN plugin failed: 
1
  Oct 19 16:09:14 Xalted-Testing NetworkManager[776]:  VPN plugin state 
changed: stopped (6)
  Oct 19 16:09:14 Xalted-Testing NetworkManager[776]:  VPN plugin state 
change reason: 0
  Oct 19 16:09:14 Xalted-Testing NetworkManager[776]:  Policy set 'Wired 
connection 1' (eth0) as default for IPv4 routing and DNS.
  Oct 19 16:09:14 Xalted-Testing pptp[3917]: nm-pptp-service-3895 
log[callmgr_main:pptp_callmgr.c:234]: Closing connection (unhandled)
  Oct 19 16:09:14 Xalted-Testing pptp[3917]: nm-pptp-service-3895 
log[ctrlp_rep:pptp_ctrl.c:251]: Sent control packet type is 12 
'Call-Clear-Request'
  Oct 19 16:09:14 Xalted-Testing pptp[3917]: nm-pptp-service-3895 
log[call_callback:pptp_callmgr.c:79]: Closing connection (call state)
  Oct 19 16:09:14 Xalted-Testing NetworkManager[776]:  error 
disconnecting VPN: Could not process the request because no VPN connection was 
active.
  Oct 19 16:09:19 Xalted-Testing NetworkManager[776]:  VPN service 'pptp' 

[Touch-packages] [Bug 1544477] Re: No sound notification for new SMS (Ubuntu Touch)

2016-08-14 Thread Vincas Dargis
I have same problem on OTA-12, BQ E5.

Attaching tailed unity8 and syslog.

Note that there are lot's of these lines:

"""
Failed to get current playback position:  
org.freedesktop.DBus.Error.UnknownMethod: Method "Get" with signature "ss" on 
interface "org.freedesktop.DBus.Properties" doesn't exist
"""

...which do disssapear after reboot, and after reboot, sms notification
sound start working again (for some time...).

** Attachment added: "unity8_and_syslog.log"
   
https://bugs.launchpad.net/ubuntu/+source/media-hub/+bug/1544477/+attachment/4720669/+files/unity8_and_syslog.log

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

Title:
  No sound notification for new SMS (Ubuntu Touch)

Status in Canonical System Image:
  Confirmed
Status in media-hub package in Ubuntu:
  Invalid
Status in pulseaudio package in Ubuntu:
  Incomplete

Bug description:
  I noticed for last 2-3 days there is no sound notification for a new
  SMS, but there's a blinking green LED notification. Also in the
  indicator menu the envelope icon turns green and the new SMS is listed
  as usual. Things are working alright for Telegram, Gmail etc.
  (sound+LED+indicator menu).

  Device: bq Aquaris E5 HD, Ubuntu 15.04 (OTA-9)

  UPDATE: Screenshots get silent too.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1544477/+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 1516696] Re: SMS notifications are received only when the phone is unlocked

2016-08-14 Thread Vincas Dargis
Yep, thanks Anupam!

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

Title:
  SMS notifications are received only when the phone is unlocked

Status in Canonical System Image:
  Incomplete
Status in powerd:
  New
Status in Unity System Compositor:
  New
Status in indicator-messages package in Ubuntu:
  Confirmed
Status in ofono package in Ubuntu:
  Confirmed
Status in unity8 package in Ubuntu:
  Incomplete

Bug description:
  WHAT HAPPENED:
  The phone stays quiet while locked but once the power button is pressed 
(unlocked), SMS notification are received with vibration, notification bubble 
and sound alert. The message received shows that it was actually received 10 
minutes ago.
  This happened multiple times already but I think I ignored them and this 
seems to have started after OTA-7 was released.

  
  EXPECTED:
  The phone should have the vibration, notification bubble/indicator and sound 
alert even if the phone is locked.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1516696/+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 1516696] Re: SMS notifications are received only when the phone is unlocked

2016-08-14 Thread Anupam
@Vincas that's probably bug #1544477

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

Title:
  SMS notifications are received only when the phone is unlocked

Status in Canonical System Image:
  Incomplete
Status in powerd:
  New
Status in Unity System Compositor:
  New
Status in indicator-messages package in Ubuntu:
  Confirmed
Status in ofono package in Ubuntu:
  Confirmed
Status in unity8 package in Ubuntu:
  Incomplete

Bug description:
  WHAT HAPPENED:
  The phone stays quiet while locked but once the power button is pressed 
(unlocked), SMS notification are received with vibration, notification bubble 
and sound alert. The message received shows that it was actually received 10 
minutes ago.
  This happened multiple times already but I think I ignored them and this 
seems to have started after OTA-7 was released.

  
  EXPECTED:
  The phone should have the vibration, notification bubble/indicator and sound 
alert even if the phone is locked.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1516696/+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 1613056] [NEW] unity8.log spammed with Failed to get current playback position messages

2016-08-14 Thread Vincas Dargis
Public bug reported:

BQ E5, OTA-12.

I've noticed that my ~/.cache/upstart/unity8.log contains lot's of these
messages, filled every second (file is around 6 Megs at time of
writing):

[2016-35-10:11:35:07.388] Failed to get current playback position:
org.freedesktop.DBus.Error.UnknownMethod: Method "Get" with signature
"ss" on interface "org.freedesktop.DBus.Properties" doesn't exist

[2016-35-10:11:35:08.388] Failed to get current playback position:
org.freedesktop.DBus.Error.UnknownMethod: Method "Get" with signature
"ss" on interface "org.freedesktop.DBus.Properties" doesn't exist

[2016-35-10:11:35:09.388] Failed to get current playback position:
org.freedesktop.DBus.Error.UnknownMethod: Method "Get" with signature
"ss" on interface "org.freedesktop.DBus.Properties" doesn't exist

I do not know what produces these, or since when it has started. These
lines starts from beginning of log file, I cannot trace that event / app
that started it.

I've just rebooted, and these messages have stopped.

There was no other app, except terminal where I was debugging, launched,
no musig playing, etc.

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

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

Title:
  unity8.log spammed with Failed to get current playback position
  messages

Status in unity8 package in Ubuntu:
  New

Bug description:
  BQ E5, OTA-12.

  I've noticed that my ~/.cache/upstart/unity8.log contains lot's of
  these messages, filled every second (file is around 6 Megs at time of
  writing):

  [2016-35-10:11:35:07.388] Failed to get current playback position:
  org.freedesktop.DBus.Error.UnknownMethod: Method "Get" with signature
  "ss" on interface "org.freedesktop.DBus.Properties" doesn't exist

  [2016-35-10:11:35:08.388] Failed to get current playback position:
  org.freedesktop.DBus.Error.UnknownMethod: Method "Get" with signature
  "ss" on interface "org.freedesktop.DBus.Properties" doesn't exist

  [2016-35-10:11:35:09.388] Failed to get current playback position:
  org.freedesktop.DBus.Error.UnknownMethod: Method "Get" with signature
  "ss" on interface "org.freedesktop.DBus.Properties" doesn't exist

  I do not know what produces these, or since when it has started. These
  lines starts from beginning of log file, I cannot trace that event /
  app that started it.

  I've just rebooted, and these messages have stopped.

  There was no other app, except terminal where I was debugging,
  launched, no musig playing, etc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity8/+bug/1613056/+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 1516696] Re: SMS notifications are received only when the phone is unlocked

2016-08-14 Thread Vincas Dargis
I am not sure if it's the same bug, but for me (E5, OTA-12), I do not
get sound notification at all (sometimes I do though), even if device is
unlocked.

I do hear vibrator, see green blinking light, but no sound. I am quite
sure that Sound options are set OK.

I've attached tailed syslog.log and unity8.log.

** Attachment added: "tail.log"
   
https://bugs.launchpad.net/ubuntu/+source/indicator-messages/+bug/1516696/+attachment/4720668/+files/tail.log

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

Title:
  SMS notifications are received only when the phone is unlocked

Status in Canonical System Image:
  Incomplete
Status in powerd:
  New
Status in Unity System Compositor:
  New
Status in indicator-messages package in Ubuntu:
  Confirmed
Status in ofono package in Ubuntu:
  Confirmed
Status in unity8 package in Ubuntu:
  Incomplete

Bug description:
  WHAT HAPPENED:
  The phone stays quiet while locked but once the power button is pressed 
(unlocked), SMS notification are received with vibration, notification bubble 
and sound alert. The message received shows that it was actually received 10 
minutes ago.
  This happened multiple times already but I think I ignored them and this 
seems to have started after OTA-7 was released.

  
  EXPECTED:
  The phone should have the vibration, notification bubble/indicator and sound 
alert even if the phone is locked.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1516696/+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 953875] Re: Encrypted swap no longer mounted at bootup

2016-08-14 Thread Robeen
** Tags added: mate xenial

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

Title:
  Encrypted swap no longer mounted at bootup

Status in eCryptfs:
  Fix Released
Status in systemd:
  Fix Released
Status in ecryptfs-utils package in Ubuntu:
  Fix Released
Status in systemd package in Ubuntu:
  Fix Released
Status in ubiquity package in Ubuntu:
  Fix Released
Status in ecryptfs-utils source package in Trusty:
  Triaged
Status in ubiquity source package in Trusty:
  Triaged
Status in ecryptfs-utils source package in Vivid:
  Fix Released
Status in systemd source package in Vivid:
  Fix Released
Status in ubiquity source package in Vivid:
  Fix Released
Status in systemd package in Debian:
  Fix Released

Bug description:
  SUMMARY
  ===
  During installation with "encrypt my home folder" mode, a broken 
/etc/crypttab gets created which defines a non-existing swap device (usually 
"cryptswap1") with a UUID. This will also be put into /etc/fstab. As after 
installation the UUID does not exist, such systems don't have any actual swap.

  UPGRADE FIX
  ===
  An upgrade to Ubuntu 15.04 ("vivid") will detect and comment out these broken 
swap devices from /etc/fstab and /etc/crypttab. If you actually want  to use 
those, do these steps:

   - Find the swap device that was meant to be used in "sudo fdisk -l" (it 
should say "Linux swap" in the last column), remember the device name 
(something like "/dev/sda5")
   - Find the UUID in /etc/crypttab (the long alphanumeric ID after UUID=)
   - Run "sudo mkswap -U 1234... /dev/sda5", replacing "1234" with the above 
UUID, and /dev/sda5 with the device name from step 1.
   - Edit /etc/crypttab to append ",offset=1024" in the fourth (last) column of 
the cryptswap1 line; ensure that there is *no space* between the 
"cipher=aes-cbc-essiv:sha256" and the appended option. If there is a leading 
"#" in the file, remove that too.
   - If there is a leading "#" in /etc/fstab in the line starting with 
/dev/mapper/cryptswap1 line, remove that.
   - Run "sudo update-initramfs -u".

  
  ORIGINAL REPORT
  ===

  Clean install of 12.04 and with encrypted home for my user. Did all
  updates and now the bootup hangs waiting for swap to become available
  and it never seems to ever finish. The 200GB SSD below is my boot
  drive and root filesystem.

  alan@mesh:~$ sudo swapon -a
  [sudo] password for alan:
  swapon: /dev/mapper/cryptswap1: stat failed: No such file or directory

  alan@mesh:~$ grep swap /etc/fstab
  # swap was on /dev/sdg5 during installation
  #UUID=22d3f7f0-f715-4582-81ba-dcbd4cdd1495 noneswapsw 
 0   0
  /dev/mapper/cryptswap1 none swap sw 0 0

  alan@mesh:~$ sudo fdisk -l

  Disk /dev/sda: 115.0 GB, 115033153536 bytes
  255 heads, 63 sectors/track, 13985 cylinders, total 224674128 sectors
  Units = sectors of 1 * 512 = 512 bytes
  Sector size (logical/physical): 512 bytes / 512 bytes
  I/O size (minimum/optimal): 512 bytes / 512 bytes
  Disk identifier: 0x000ba2ed

     Device Boot  Start End  Blocks   Id  System
  /dev/sda1   *2048  206847  1024007  HPFS/NTFS/exFAT
  /dev/sda2  206848   224671743   1122324487  HPFS/NTFS/exFAT

  Disk /dev/sdb: 200.0 GB, 200049647616 bytes
  255 heads, 63 sectors/track, 24321 cylinders, total 390721968 sectors
  Units = sectors of 1 * 512 = 512 bytes
  Sector size (logical/physical): 512 bytes / 512 bytes
  I/O size (minimum/optimal): 512 bytes / 512 bytes
  Disk identifier: 0xf0fa0806

     Device Boot  Start End  Blocks   Id  System
  /dev/sdb12048   349304831   1746513927  HPFS/NTFS/exFAT
  /dev/sdb2   374722558   390721535 79994895  Extended
  /dev/sdb3   *   349304832   37472051112707840   83  Linux
  /dev/sdb5   374722560   390721535 7999488   82  Linux swap / Solaris

  Partition table entries are not in disk order

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: libecryptfs0 96-0ubuntu2
  ProcVersionSignature: Ubuntu 3.2.0-18.29-generic 3.2.9
  Uname: Linux 3.2.0-18-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 1.94.1-0ubuntu2
  Architecture: amd64
  Date: Tue Mar 13 09:56:56 2012
  EcryptfsInUse: Yes
  InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Alpha amd64 
(20120215)
  ProcEnviron:
   LANGUAGE=en_GB:en
   TERM=xterm
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  SourcePackage: ecryptfs-utils
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ecryptfs/+bug/953875/+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 1588459] Re: OTA-11: GPS seems not working

2016-08-14 Thread Vincas Dargis
I am not sure about other 6 people who confirmed this bug, but it looks
like GPS is actually working for me.

One simply has to have app (SensorStatus or uNav) in the foreground for
some time to actually acquire GPS fix. Having Location on for few days
does nothing, if you check Sensors app just for short moments through
that time.

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

Title:
  OTA-11: GPS seems not working

Status in location-service package in Ubuntu:
  Confirmed

Bug description:
  Just updated Aquaris E5 to OTA-11 (using settings app, no flashing),
  and noticed that slider to enable GPS device is missing. I am not sure
  if it was designed so, but GPS does seems like not working. Location
  service is enabled (at least it seems so).

  There are Wireless Wi-Fi and Bluetoof sliders, but no GPS one.

  Location service is enabled, but SensorStatus, HERE app does not seem
  receive GPS info.

  By the way, there is no such thing as "/var/log/ubuntu-location-
  service*" as stated in https://wiki.ubuntu.com/Process/Merges/TestPlan
  /location-service#Forensics

  Attached tar with some logs.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/location-service/+bug/1588459/+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 943162] Re: libgl1-mesa-dev links libGL.so to mesa/libGL.so which conflicts with nvidia's libGL.

2016-08-14 Thread dino99
** Changed in: mesa (Ubuntu)
 Assignee: onecoin (onecoin6016) => (unassigned)

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

Title:
  libgl1-mesa-dev links libGL.so to mesa/libGL.so which conflicts with
  nvidia's libGL.

Status in mesa package in Ubuntu:
  Confirmed

Bug description:
  It seems like libgl1-mesa-dev creates the symbolic link
  /usr/lib/x86_64-linux-gnu/libGL.so, pointing to mesa/libGL.so. This
  conflicts with NVidia's libGL.so and ignores the alternative settings.
  For instance, a call to dlopen will load the mesa library instead of
  the nvidia library. This is in particular a problem when using OpenGL
  in dynamic languages such as Python or Common Lisp since they foreign
  function interfaces use something like dlopen.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: libgl1-mesa-dev 7.11-0ubuntu3
  ProcVersionSignature: Ubuntu 3.0.0-16.28-generic 3.0.17
  Uname: Linux 3.0.0-16-generic x86_64
  NonfreeKernelModules: nvidia
  .proc.driver.nvidia.gpus.0: Error: [Errno 21] Is a directory: 
'/proc/driver/nvidia/gpus/0'
  .proc.driver.nvidia.registry: Binary: ""
  .proc.driver.nvidia.version:
   NVRM version: NVIDIA UNIX x86_64 Kernel Module  280.13  Wed Jul 27 16:53:56 
PDT 2011
   GCC version:  gcc version 4.6.1 (Ubuntu/Linaro 4.6.1-9ubuntu3)
  .tmp.unity.support.test.0:
   
  ApportVersion: 1.23-0ubuntu4
  Architecture: amd64
  CompizPlugins: 
[core,bailer,detection,composite,opengl,decor,compiztoolbox,grid,vpswitch,resize,imgpng,snap,regex,animation,workarounds,mousepoll,expo,place,move,gnomecompat,unitymtgrabhandles,wall,ezoom,session,fade,scale,unityshell]
  CompositorRunning: None
  Date: Wed Feb 29 11:13:06 2012
  DistUpgraded: Fresh install
  DistroCodename: oneiric
  DistroVariant: ubuntu
  DkmsStatus: nvidia-current-updates, 280.13, 3.0.0-16-generic, x86_64: 
installed
  ExtraDebuggingInterest: Yes, whatever it takes to get this fixed in Ubuntu
  GraphicsCard:
   nVidia Corporation G94 [GeForce 9600 GT] [10de:0622] (rev a1) (prog-if 00 
[VGA controller])
 Subsystem: ASUSTeK Computer Inc. Device [1043:827c]
  JockeyStatus:
   xorg:nvidia_173 - NVIDIA accelerated graphics driver (Proprietary, Disabled, 
Not in use)
   xorg:nvidia_173_updates - NVIDIA accelerated graphics driver (post-release 
updates) (Proprietary, Disabled, Not in use)
   xorg:nvidia_current - NVIDIA accelerated graphics driver (Proprietary, 
Disabled, Not in use)
   xorg:nvidia_current_updates - NVIDIA accelerated graphics driver 
(post-release updates) (Proprietary, Enabled, In use)
  MachineType: System manufacturer System Product Name
  ProcEnviron:
   LANGUAGE=en_US:en
   PATH=(custom, user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
   LC_PAPER=de_DE.UTF-8
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.0.0-16-generic 
root=UUID=cc3cd9ea-6f90-44c3-a6e8-67758cff1603 ro splash quiet vt.handoff=7
  SourcePackage: mesa
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 03/27/2009
  dmi.bios.vendor: Phoenix Technologies, LTD
  dmi.bios.version: ASUS M3N78 PRO ACPI BIOS Revision 0801
  dmi.board.name: M3N78 PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: 1.XX
  dmi.chassis.asset.tag: 123456789000
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnPhoenixTechnologies,LTD:bvrASUSM3N78PROACPIBIOSRevision0801:bd03/27/2009:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnM3N78PRO:rvr1.XX:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  version.compiz: compiz 1:0.9.6+bzr20110929-0ubuntu6.1
  version.ia32-libs: ia32-libs 20090808ubuntu26
  version.libdrm2: libdrm2 2.4.26-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 7.11-0ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 7.11-0ubuntu3
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  version.xserver-xorg: xserver-xorg 1:7.6+7ubuntu7.1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.6.0-1ubuntu13
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:6.14.99~git20110811.g93fc084-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.15.901-1ubuntu2.1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:0.0.16+git20110411+8378443-1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/943162/+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 1613053] [NEW] [MIR]libpinyin

2016-08-14 Thread Aron Xu
Public bug reported:

[Availability]

libpinyin is available in Ubuntu (universe).

[Rationale]

As we are in the process of getting Unity8 to main, libpinyin is one of
the required dependencies.

[Security]

There is no security issues every discovered for libpinyin. The library
itself is a conversion engine to compute from input strings to a list of
candidate words, security related topics are often only related to
wrapping functions or higher-level applications.

[Quality assurance]

Upstream is active, and backed by RedHat.

[Dependencies]

All dependencies (Depends/Build-Depends) are in main.

[Standards compliance]

The package conforms to FHS and Debian standards.

[Maintenance]

The package is actively maintained at Debian, and is looked after by the
~pkg-ime team (subscribed to the package).

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

** Description changed:

  [Availability]
  
  libpinyin is available in Ubuntu (universe).
  
  [Rationale]
  
  As we are in the process of getting Unity8 to main, libpinyin is one of
  the required dependencies.
  
  [Security]
  
  There is no security issues every discovered for libpinyin. The library
  itself is a conversion engine to compute from input strings to a list of
  candidate words, security related topics are often only related to
  wrapping functions or higher-level applications.
  
  [Quality assurance]
  
  Upstream is active, and backed by RedHat.
  
  [Dependencies]
  
  All dependencies (Depends/Build-Depends) are in main.
  
  [Standards compliance]
  
  The package conforms to FHS and Debian standards.
  
  [Maintenance]
  
  The package is actively maintained at Debian, and is looked after by the
- Ubuntu desktop team.
+ ~pkg-ime team (subscribed to the package).

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

Title:
  [MIR]libpinyin

Status in libpinyin package in Ubuntu:
  New

Bug description:
  [Availability]

  libpinyin is available in Ubuntu (universe).

  [Rationale]

  As we are in the process of getting Unity8 to main, libpinyin is one
  of the required dependencies.

  [Security]

  There is no security issues every discovered for libpinyin. The
  library itself is a conversion engine to compute from input strings to
  a list of candidate words, security related topics are often only
  related to wrapping functions or higher-level applications.

  [Quality assurance]

  Upstream is active, and backed by RedHat.

  [Dependencies]

  All dependencies (Depends/Build-Depends) are in main.

  [Standards compliance]

  The package conforms to FHS and Debian standards.

  [Maintenance]

  The package is actively maintained at Debian, and is looked after by
  the ~pkg-ime team (subscribed to the package).

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libpinyin/+bug/1613053/+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 1612659] Re: QScreen::nativeOrientation is wrong on the M10

2016-08-14 Thread Santosh
Issue happening on oxide : https://bugs.launchpad.net/oxide/+bug/1601887

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

Title:
  QScreen::nativeOrientation is wrong on the M10

Status in qtubuntu package in Ubuntu:
  New

Bug description:
  This is a follow up bug to issues spotted in Oxide, where we rely on
  QScreen orientation properties to adjust the camera rotation.

  We noticed that apps on the M10 always receive a nativeOrientation
  reply of "portrait" whereas it should be landscape.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qtubuntu/+bug/1612659/+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 953875] Re: Encrypted swap no longer mounted at bootup

2016-08-14 Thread Robeen
Same problem here with Ubuntu 16.04.1 LTS

$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:Ubuntu 16.04.1 LTS
Release:16.04
Codename:   xenial

$ cat /etc/crypttab 
#   
   
sda5_crypt   UUID=84d61165-80eb-46cf-9d48-b0117c7a8a92 none 
   luks,discard
sda6_crypt   UUID=e335f91e-58bb-4a57-8e10-2854ff8358db none 
   luks,swap,discard

$ cat /etc/fstab 
UUID=a370331b-c037-40fa-8d6c-2445960d94e0   /boot   ext4defaults
  0   2
/dev/mapper/sda5_crypt  /   ext4
errors=remount-ro 0   1
/dev/mapper/sda6_crypt  noneswapsw  
  0   0


Config was not changed since 14.04 LTS, and it seems to be fine, but during 
startup I get the same error after updating to 16.04:

systemd[1]: 
dev-disk-by\x2duuid-e335f91e\x2d58bb\x2d4a57\x2d8e10\x2d2854ff8358db.device: 
Job 
dev-disk-by\x2duuid-e335f91e\x2d58bb\x2d4a57\x2d8e10\x2d2854ff8358db.device/start
 timed out.
systemd[1]: Timed out waiting for device 
dev-disk-by\x2duuid-e335f91e\x2d58bb\x2d4a57\x2d8e10\x2d2854ff8358db.device.
systemd[1]: Dependency failed for Cryptography Setup for sda6_crypt.
systemd[1]: Dependency failed for Encrypted Volumes.
systemd[1]: cryptsetup.target: Job cryptsetup.target/start failed with result 
'dependency'.
systemd[1]: Dependency failed for dev-mapper-sda6_crypt.device.
systemd[1]: Dependency failed for /dev/mapper/sda6_crypt.
systemd[1]: Dependency failed for Swap.
systemd[1]: swap.target: Job swap.target/start failed with result 'dependency'.
systemd[1]: dev-mapper-sda6_crypt.swap: Job dev-mapper-sda6_crypt.swap/start 
failed with result 'dependency'.
systemd[1]: dev-mapper-sda6_crypt.device: Job 
dev-mapper-sda6_crypt.device/start failed with result 'dependency'.
systemd[1]: systemd-cryptsetup@sda6_crypt.service: Job 
systemd-cryptsetup@sda6_crypt.service/start failed with result 'dependency'.
systemd[1]: 
dev-disk-by\x2duuid-e335f91e\x2d58bb\x2d4a57\x2d8e10\x2d2854ff8358db.device: 
Job 
dev-disk-by\x2duuid-e335f91e\x2d58bb\x2d4a57\x2d8e10\x2d2854ff8358db.device/start
 failed with result 'timeout'.

I did not tried the workaround yet, but anyway this is quite a big issue in my 
opinion...
It should be fixed soon in the LTS version...

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

Title:
  Encrypted swap no longer mounted at bootup

Status in eCryptfs:
  Fix Released
Status in systemd:
  Fix Released
Status in ecryptfs-utils package in Ubuntu:
  Fix Released
Status in systemd package in Ubuntu:
  Fix Released
Status in ubiquity package in Ubuntu:
  Fix Released
Status in ecryptfs-utils source package in Trusty:
  Triaged
Status in ubiquity source package in Trusty:
  Triaged
Status in ecryptfs-utils source package in Vivid:
  Fix Released
Status in systemd source package in Vivid:
  Fix Released
Status in ubiquity source package in Vivid:
  Fix Released
Status in systemd package in Debian:
  Fix Released

Bug description:
  SUMMARY
  ===
  During installation with "encrypt my home folder" mode, a broken 
/etc/crypttab gets created which defines a non-existing swap device (usually 
"cryptswap1") with a UUID. This will also be put into /etc/fstab. As after 
installation the UUID does not exist, such systems don't have any actual swap.

  UPGRADE FIX
  ===
  An upgrade to Ubuntu 15.04 ("vivid") will detect and comment out these broken 
swap devices from /etc/fstab and /etc/crypttab. If you actually want  to use 
those, do these steps:

   - Find the swap device that was meant to be used in "sudo fdisk -l" (it 
should say "Linux swap" in the last column), remember the device name 
(something like "/dev/sda5")
   - Find the UUID in /etc/crypttab (the long alphanumeric ID after UUID=)
   - Run "sudo mkswap -U 1234... /dev/sda5", replacing "1234" with the above 
UUID, and /dev/sda5 with the device name from step 1.
   - Edit /etc/crypttab to append ",offset=1024" in the fourth (last) column of 
the cryptswap1 line; ensure that there is *no space* between the 
"cipher=aes-cbc-essiv:sha256" and the appended option. If there is a leading 
"#" in the file, remove that too.
   - If there is a leading "#" in /etc/fstab in the line starting with 
/dev/mapper/cryptswap1 line, remove that.
   - Run "sudo update-initramfs -u".

  
  ORIGINAL REPORT
  ===

  Clean install of 12.04 and with encrypted home for my user. Did all
  updates and now the bootup hangs waiting for swap to become available
  and it never seems to ever finish. The 200GB SSD below is my boot
  drive and root filesystem.

  alan@mesh:~$ sudo swapon -a
  [sudo] password for alan:
  swapon: /dev/mapper/cryptswap1: stat failed: No such file or directory

  

[Touch-packages] [Bug 1613050] [NEW] SAMBA Authentication fails with CUPS print job

2016-08-14 Thread James Gauci
Public bug reported:

Print jobs fail to authenticate CUPS print jobs via an Active Directory
joined system using pam_authenticate.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: cups 2.1.3-4
ProcVersionSignature: Ubuntu 4.4.0-34.53-generic 4.4.15
Uname: Linux 4.4.0-34-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
Date: Sun Aug 14 20:56:12 2016
InstallationDate: Installed on 2016-06-24 (51 days ago)
InstallationMedia: Ubuntu-Server 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.3)
Lsusb: Error: command ['lsusb'] failed with exit code 1:
MachineType: VMware, Inc. VMware Virtual Platform
Papersize: a4
PpdFiles:
 PDF: Generic CUPS-PDF Printer
 Test: Ricoh Aficio MP C5502A , Postscript-Ricoh 20160606 (OpenPrinting LSB 3.2)
ProcEnviron:
 LANGUAGE=en_AU:en
 TERM=xterm-256color
 PATH=(custom, no user)
 LANG=en_AU.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.4.0-34-generic 
root=/dev/mapper/hostname--vg-root ro
SourcePackage: cups
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 09/21/2015
dmi.bios.vendor: Phoenix Technologies LTD
dmi.bios.version: 6.00
dmi.board.name: 440BX Desktop Reference Platform
dmi.board.vendor: Intel Corporation
dmi.board.version: None
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 1
dmi.chassis.vendor: No Enclosure
dmi.chassis.version: N/A
dmi.modalias: 
dmi:bvnPhoenixTechnologiesLTD:bvr6.00:bd09/21/2015:svnVMware,Inc.:pnVMwareVirtualPlatform:pvrNone:rvnIntelCorporation:rn440BXDesktopReferencePlatform:rvrNone:cvnNoEnclosure:ct1:cvrN/A:
dmi.product.name: VMware Virtual Platform
dmi.product.version: None
dmi.sys.vendor: VMware, Inc.

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

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


** Tags: amd64 apport-bug xenial

** Description changed:

- Print jobs authenticate CUPS print jobs via an Active Directory joined
- system using pam_authenticate.
+ Print jobs fail to authenticate CUPS print jobs via an Active Directory
+ joined system using pam_authenticate.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: cups 2.1.3-4
  ProcVersionSignature: Ubuntu 4.4.0-34.53-generic 4.4.15
  Uname: Linux 4.4.0-34-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  Date: Sun Aug 14 20:56:12 2016
  InstallationDate: Installed on 2016-06-24 (51 days ago)
  InstallationMedia: Ubuntu-Server 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.3)
  Lsusb: Error: command ['lsusb'] failed with exit code 1:
  MachineType: VMware, Inc. VMware Virtual Platform
  Papersize: a4
  PpdFiles:
-  PDF: Generic CUPS-PDF Printer
-  Test: Ricoh Aficio MP C5502A , Postscript-Ricoh 20160606 (OpenPrinting LSB 
3.2)
+  PDF: Generic CUPS-PDF Printer
+  Test: Ricoh Aficio MP C5502A , Postscript-Ricoh 20160606 (OpenPrinting LSB 
3.2)
  ProcEnviron:
-  LANGUAGE=en_AU:en
-  TERM=xterm-256color
-  PATH=(custom, no user)
-  LANG=en_AU.UTF-8
-  SHELL=/bin/bash
+  LANGUAGE=en_AU:en
+  TERM=xterm-256color
+  PATH=(custom, no user)
+  LANG=en_AU.UTF-8
+  SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.4.0-34-generic 
root=/dev/mapper/hostname--vg-root ro
  SourcePackage: cups
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/21/2015
  dmi.bios.vendor: Phoenix Technologies LTD
  dmi.bios.version: 6.00
  dmi.board.name: 440BX Desktop Reference Platform
  dmi.board.vendor: Intel Corporation
  dmi.board.version: None
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 1
  dmi.chassis.vendor: No Enclosure
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnPhoenixTechnologiesLTD:bvr6.00:bd09/21/2015:svnVMware,Inc.:pnVMwareVirtualPlatform:pvrNone:rvnIntelCorporation:rn440BXDesktopReferencePlatform:rvrNone:cvnNoEnclosure:ct1:cvrN/A:
  dmi.product.name: VMware Virtual Platform
  dmi.product.version: None
  dmi.sys.vendor: VMware, Inc.

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

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

Title:
  SAMBA Authentication fails with CUPS print job

Status in cups package in Ubuntu:
  New
Status in samba package in Ubuntu:
  New

Bug description:
  Print jobs fail to authenticate CUPS print jobs via an Active
  Directory joined system using pam_authenticate.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: cups 2.1.3-4
  ProcVersionSignature: Ubuntu 4.4.0-34.53-generic 4.4.15
  Uname: Linux 4.4.0-34-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  Date: Sun Aug 14 20:56:12 2016
  InstallationDate: Installed on 2016-06-24 (51 days ago)
  InstallationMedia: Ubuntu-Server 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.3)
  Lsusb: Error: command ['lsusb'] failed with exit code 1:
  MachineType: VMware, Inc. VMware Virtual Platform
  Papersize: a4
 

[Touch-packages] [Bug 943162] Re: libgl1-mesa-dev links libGL.so to mesa/libGL.so which conflicts with nvidia's libGL.

2016-08-14 Thread onecoin
** Changed in: mesa (Ubuntu)
 Assignee: (unassigned) => onecoin (onecoin6016)

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

Title:
  libgl1-mesa-dev links libGL.so to mesa/libGL.so which conflicts with
  nvidia's libGL.

Status in mesa package in Ubuntu:
  Confirmed

Bug description:
  It seems like libgl1-mesa-dev creates the symbolic link
  /usr/lib/x86_64-linux-gnu/libGL.so, pointing to mesa/libGL.so. This
  conflicts with NVidia's libGL.so and ignores the alternative settings.
  For instance, a call to dlopen will load the mesa library instead of
  the nvidia library. This is in particular a problem when using OpenGL
  in dynamic languages such as Python or Common Lisp since they foreign
  function interfaces use something like dlopen.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: libgl1-mesa-dev 7.11-0ubuntu3
  ProcVersionSignature: Ubuntu 3.0.0-16.28-generic 3.0.17
  Uname: Linux 3.0.0-16-generic x86_64
  NonfreeKernelModules: nvidia
  .proc.driver.nvidia.gpus.0: Error: [Errno 21] Is a directory: 
'/proc/driver/nvidia/gpus/0'
  .proc.driver.nvidia.registry: Binary: ""
  .proc.driver.nvidia.version:
   NVRM version: NVIDIA UNIX x86_64 Kernel Module  280.13  Wed Jul 27 16:53:56 
PDT 2011
   GCC version:  gcc version 4.6.1 (Ubuntu/Linaro 4.6.1-9ubuntu3)
  .tmp.unity.support.test.0:
   
  ApportVersion: 1.23-0ubuntu4
  Architecture: amd64
  CompizPlugins: 
[core,bailer,detection,composite,opengl,decor,compiztoolbox,grid,vpswitch,resize,imgpng,snap,regex,animation,workarounds,mousepoll,expo,place,move,gnomecompat,unitymtgrabhandles,wall,ezoom,session,fade,scale,unityshell]
  CompositorRunning: None
  Date: Wed Feb 29 11:13:06 2012
  DistUpgraded: Fresh install
  DistroCodename: oneiric
  DistroVariant: ubuntu
  DkmsStatus: nvidia-current-updates, 280.13, 3.0.0-16-generic, x86_64: 
installed
  ExtraDebuggingInterest: Yes, whatever it takes to get this fixed in Ubuntu
  GraphicsCard:
   nVidia Corporation G94 [GeForce 9600 GT] [10de:0622] (rev a1) (prog-if 00 
[VGA controller])
 Subsystem: ASUSTeK Computer Inc. Device [1043:827c]
  JockeyStatus:
   xorg:nvidia_173 - NVIDIA accelerated graphics driver (Proprietary, Disabled, 
Not in use)
   xorg:nvidia_173_updates - NVIDIA accelerated graphics driver (post-release 
updates) (Proprietary, Disabled, Not in use)
   xorg:nvidia_current - NVIDIA accelerated graphics driver (Proprietary, 
Disabled, Not in use)
   xorg:nvidia_current_updates - NVIDIA accelerated graphics driver 
(post-release updates) (Proprietary, Enabled, In use)
  MachineType: System manufacturer System Product Name
  ProcEnviron:
   LANGUAGE=en_US:en
   PATH=(custom, user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
   LC_PAPER=de_DE.UTF-8
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.0.0-16-generic 
root=UUID=cc3cd9ea-6f90-44c3-a6e8-67758cff1603 ro splash quiet vt.handoff=7
  SourcePackage: mesa
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 03/27/2009
  dmi.bios.vendor: Phoenix Technologies, LTD
  dmi.bios.version: ASUS M3N78 PRO ACPI BIOS Revision 0801
  dmi.board.name: M3N78 PRO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: 1.XX
  dmi.chassis.asset.tag: 123456789000
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnPhoenixTechnologies,LTD:bvrASUSM3N78PROACPIBIOSRevision0801:bd03/27/2009:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnM3N78PRO:rvr1.XX:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  version.compiz: compiz 1:0.9.6+bzr20110929-0ubuntu6.1
  version.ia32-libs: ia32-libs 20090808ubuntu26
  version.libdrm2: libdrm2 2.4.26-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 7.11-0ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 7.11-0ubuntu3
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  version.xserver-xorg: xserver-xorg 1:7.6+7ubuntu7.1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.6.0-1ubuntu13
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:6.14.99~git20110811.g93fc084-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.15.901-1ubuntu2.1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:0.0.16+git20110411+8378443-1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/943162/+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 74724] Re: O2Micro Smartcard reader doesn't work, but the driver is available

2016-08-14 Thread Bug Watch Updater
** Changed in: pcsc-lite (Debian)
   Status: New => Fix Released

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

Title:
  O2Micro Smartcard reader doesn't work, but the driver is available

Status in pcsc-lite package in Ubuntu:
  Invalid
Status in pcsc-lite package in Debian:
  Fix Released

Bug description:
  My smartcard reader doesn't work, but the driver seems to be available for 
download on:
  http://www.musclecard.com/sourcedrivers.html

  I have a Dell latitude D600 laptop with a build-in cardreader (O2Micro), i 
need it for filling my online tax form. 
  I'm willing to help to fix this bug and test the problems. It's also 
important for people in belgium that they know that they can fill in they taxes 
online with ubuntu.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pcsc-lite/+bug/74724/+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 1256060] Re: -symbolic icons in indicator-power are gray [$50]

2016-08-14 Thread Cody Garver
** Changed in: wingpanel-indicator-power
   Status: Fix Committed => Fix Released

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

Title:
  -symbolic icons in indicator-power are gray [$50]

Status in Wingpanel Power Indicator:
  Fix Released
Status in indicator-power package in Ubuntu:
  Confirmed

Bug description:
  Not sure if this is a wingpanel issue or an indicator-power issue, but
  the -symbolic battery icons in the menu aren't picking up the text
  color.

  The icon color is working correctly in the panel, so I know it's not
  an issue with the icon.

To manage notifications about this bug go to:
https://bugs.launchpad.net/wingpanel-indicator-power/+bug/1256060/+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 1587093] Re: "Reached target shutdown" message seen, but laptop won't turn off, just hangs and needs the laptop's button.

2016-08-14 Thread Martin Pitt
** Package changed: systemd (Ubuntu) => linux (Ubuntu)

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

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

Title:
  "Reached target shutdown" message seen, but laptop won't turn off,
  just hangs and needs the laptop's button.

Status in linux package in Ubuntu:
  Fix Released

Bug description:
  This is about a fresh Ubuntu 16.04 install on a new laptop (asus
  x540sa). After pressing the shutdown button in the start menu; the
  shutdown procedure starts and in the final splash screen the system
  just hangs. Tried a second time by pressing Esc once the splash screen
  showed up and I saw that it reaches the line "Reached target shutdown"
  and just stops there, no matter how long I leave it there the machine
  won't turn off.

  I also tried a Kubuntu 16.04 fresh install on the same machine and it
  hanged too at the final splash screen where the pulsating logo
  stopped. Then I tried with Esc only to see the exact same line in the
  end.

  The issue seems to affect lately quite many users as shown by the
  google results of the past month / week or so.

  I have also tried shutting down from the console with shutdown -and
  all the parameters after that suggested online- and sudo poweroff but
  unfortunately they didn't do the trick. The exact same situation
  occurred.

  Unmounting the swap as suggested online doesn't work.

  Also rebooting the system is not working either due to the same issue.

  So right now the only way for me to poweroff the machine is to press
  the power button on the keyboard continuously.

  Reproducible: Always

  Steps to Reproduce:
  1.Install OS
  2.Do something, anything or nothing
  3.Try to shutdown or reboot

  Actual Results:
  The computer is not shutting down: "Reached target shutdown" and hangs there.

  Expected Results:
  Powering off the machine.

  For what it's worth, closing the lid won't suspend the system, but
  using the menu buttons for suspension will do it.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1587093/+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 1587093] Re: "Reached target shutdown" message seen, but laptop won't turn off, just hangs and needs the laptop's button.

2016-08-14 Thread Elio
After the last update my asus x540sa notebook seems to shut down and
restart properly. Closing the lid still doesn't suspend the system
though.

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

Title:
  "Reached target shutdown" message seen, but laptop won't turn off,
  just hangs and needs the laptop's button.

Status in systemd package in Ubuntu:
  Confirmed

Bug description:
  This is about a fresh Ubuntu 16.04 install on a new laptop (asus
  x540sa). After pressing the shutdown button in the start menu; the
  shutdown procedure starts and in the final splash screen the system
  just hangs. Tried a second time by pressing Esc once the splash screen
  showed up and I saw that it reaches the line "Reached target shutdown"
  and just stops there, no matter how long I leave it there the machine
  won't turn off.

  I also tried a Kubuntu 16.04 fresh install on the same machine and it
  hanged too at the final splash screen where the pulsating logo
  stopped. Then I tried with Esc only to see the exact same line in the
  end.

  The issue seems to affect lately quite many users as shown by the
  google results of the past month / week or so.

  I have also tried shutting down from the console with shutdown -and
  all the parameters after that suggested online- and sudo poweroff but
  unfortunately they didn't do the trick. The exact same situation
  occurred.

  Unmounting the swap as suggested online doesn't work.

  Also rebooting the system is not working either due to the same issue.

  So right now the only way for me to poweroff the machine is to press
  the power button on the keyboard continuously.

  Reproducible: Always

  Steps to Reproduce:
  1.Install OS
  2.Do something, anything or nothing
  3.Try to shutdown or reboot

  Actual Results:
  The computer is not shutting down: "Reached target shutdown" and hangs there.

  Expected Results:
  Powering off the machine.

  For what it's worth, closing the lid won't suspend the system, but
  using the menu buttons for suspension will do it.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1587093/+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 1594023] Re: Poweroff or reboot hangs. Laptop won't shutdown. 16.04

2016-08-14 Thread Martin Pitt
** Package changed: systemd (Ubuntu) => linux (Ubuntu)

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

Title:
  Poweroff or reboot hangs. Laptop won't shutdown. 16.04

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  This is about a fresh Ubuntu 16.04 install on a new laptop (asus
  x540sa). After pressing the shutdown button in the start menu; the
  shutdown procedure starts and in the final splash screen the system
  just hangs. Tried a second time by pressing Esc once the splash screen
  showed up and I saw that it reaches the line "Reached target shutdown"
  and just stops there, no matter how long I leave it there the machine
  won't turn off.

  I also tried a Kubuntu 16.04 fresh install on the same machine and it
  hanged too at the final splash screen where the pulsating logo
  stopped. Then I tried with Esc only to see the exact same line in the
  end.

  The issue seems to affect lately quite many users as shown by the
  google results of the past month / week or so.

  I have also tried shutting down from the console with shutdown -and
  all the parameters after that suggested online- and sudo poweroff but
  unfortunately they didn't do the trick. The exact same situation
  occurred.

  Unmounting the swap as suggested online doesn't work.

  Also rebooting the system is not working either due to the same issue.

  So right now the only way for me to poweroff the machine is to press
  the power button on the keyboard continuously.

  Reproducible: Always

  Steps to Reproduce:
  1.Install OS
  2.Do something, anything or nothing
  3.Try to shutdown or reboot

  Actual Results:
  The computer is not shutting down: "Reached target shutdown" and hangs there.

  Expected Results:
  Powering off the machine.

  For what it's worth, closing the lid won't suspend the system, but
  using the menu buttons for suspension will do it.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1594023/+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 1613025] Re: Lock screen doesn't allow to switch language

2016-08-14 Thread Eyal Posener
+1, Have the same issue.

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

Title:
  Lock screen doesn't allow to switch language

Status in xorg package in Ubuntu:
  New

Bug description:
  I have English and Hebrew languages on my computer, and to switch between 
them, the key binding is alt+shift.
  When my system is on the lock screen (not the switch account screen, lock 
screen), sometimes I can't switch languages. I'm trying to switch from Hebrew 
to English to type in my password, and when I hit alt+shift, the lock screen 
suddenly disappears, and I see my screen for a second, then my screen goes 
black for a second, and I go back to the lock screen. The language is still on 
Hebrew, and I still can't change it to English.
  To bypass it, I can either change the language using the mouse, or to hit 
"switch account" with the mouse and then I can log back in.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: xorg 1:7.7+13ubuntu3
  ProcVersionSignature: Ubuntu 4.4.0-34.53-generic 4.4.15
  Uname: Linux 4.4.0-34-generic x86_64
  .tmp.unity_support_test.0:
   
  ApportVersion: 2.20.1-0ubuntu2.1
  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: Sun Aug 14 09:34:05 2016
  DistUpgraded: Fresh install
  DistroCodename: xenial
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation Haswell-ULT Integrated Graphics Controller [8086:0a16] 
(rev 09) (prog-if 00 [VGA controller])
 Subsystem: Lenovo ThinkPad X240 [17aa:2214]
  InstallationDate: Installed on 2016-08-03 (10 days ago)
  InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 
(20160719)
  MachineType: LENOVO 20AL008XUS
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.4.0-34-generic 
root=UUID=7d7cb77c-3439-48e1-a0a7-fe5b7504e93e ro quiet splash vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 06/24/2014
  dmi.bios.vendor: LENOVO
  dmi.bios.version: GIET75WW (2.25 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20AL008XUS
  dmi.board.vendor: LENOVO
  dmi.board.version: 0B98401 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnLENOVO:bvrGIET75WW(2.25):bd06/24/2014:svnLENOVO:pn20AL008XUS:pvrThinkPadX240:rvnLENOVO:rn20AL008XUS:rvr0B98401WIN:cvnLENOVO:ct10:cvrNotAvailable:
  dmi.product.name: 20AL008XUS
  dmi.product.version: ThinkPad X240
  dmi.sys.vendor: LENOVO
  version.compiz: compiz 1:0.9.12.2+16.04.20160714-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.67-1ubuntu0.16.04.1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.2.0-1ubuntu2
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.2.0-1ubuntu2
  version.xserver-xorg-core: xserver-xorg-core 2:1.18.3-1ubuntu2.2
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.10.1-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.7.0-1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20160325-1ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.12-1build2
  xserver.bootTime: Sun Aug 14 09:02:51 2016
  xserver.configfile: default
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id 973 
   vendor LGD
  xserver.version: 2:1.18.3-1ubuntu2.2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1613025/+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 1613025] [NEW] Lock screen doesn't allow to switch language

2016-08-14 Thread Shoham Peller
Public bug reported:

I have English and Hebrew languages on my computer, and to switch between them, 
the key binding is alt+shift.
When my system is on the lock screen (not the switch account screen, lock 
screen), sometimes I can't switch languages. I'm trying to switch from Hebrew 
to English to type in my password, and when I hit alt+shift, the lock screen 
suddenly disappears, and I see my screen for a second, then my screen goes 
black for a second, and I go back to the lock screen. The language is still on 
Hebrew, and I still can't change it to English.
To bypass it, I can either change the language using the mouse, or to hit 
"switch account" with the mouse and then I can log back in.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: xorg 1:7.7+13ubuntu3
ProcVersionSignature: Ubuntu 4.4.0-34.53-generic 4.4.15
Uname: Linux 4.4.0-34-generic x86_64
.tmp.unity_support_test.0:
 
ApportVersion: 2.20.1-0ubuntu2.1
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: Sun Aug 14 09:34:05 2016
DistUpgraded: Fresh install
DistroCodename: xenial
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes
GraphicsCard:
 Intel Corporation Haswell-ULT Integrated Graphics Controller [8086:0a16] (rev 
09) (prog-if 00 [VGA controller])
   Subsystem: Lenovo ThinkPad X240 [17aa:2214]
InstallationDate: Installed on 2016-08-03 (10 days ago)
InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 (20160719)
MachineType: LENOVO 20AL008XUS
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.4.0-34-generic 
root=UUID=7d7cb77c-3439-48e1-a0a7-fe5b7504e93e ro quiet splash vt.handoff=7
SourcePackage: xorg
Symptom: display
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 06/24/2014
dmi.bios.vendor: LENOVO
dmi.bios.version: GIET75WW (2.25 )
dmi.board.asset.tag: Not Available
dmi.board.name: 20AL008XUS
dmi.board.vendor: LENOVO
dmi.board.version: 0B98401 WIN
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Not Available
dmi.modalias: 
dmi:bvnLENOVO:bvrGIET75WW(2.25):bd06/24/2014:svnLENOVO:pn20AL008XUS:pvrThinkPadX240:rvnLENOVO:rn20AL008XUS:rvr0B98401WIN:cvnLENOVO:ct10:cvrNotAvailable:
dmi.product.name: 20AL008XUS
dmi.product.version: ThinkPad X240
dmi.sys.vendor: LENOVO
version.compiz: compiz 1:0.9.12.2+16.04.20160714-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.67-1ubuntu0.16.04.1
version.libgl1-mesa-dri: libgl1-mesa-dri 11.2.0-1ubuntu2
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 11.2.0-1ubuntu2
version.xserver-xorg-core: xserver-xorg-core 2:1.18.3-1ubuntu2.2
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.10.1-1ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.7.0-1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20160325-1ubuntu1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.12-1build2
xserver.bootTime: Sun Aug 14 09:02:51 2016
xserver.configfile: default
xserver.errors:
 
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs:
 product id 973 
 vendor LGD
xserver.version: 2:1.18.3-1ubuntu2.2

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


** Tags: amd64 apport-bug compiz-0.9 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/1613025

Title:
  Lock screen doesn't allow to switch language

Status in xorg package in Ubuntu:
  New

Bug description:
  I have English and Hebrew languages on my computer, and to switch between 
them, the key binding is alt+shift.
  When my system is on the lock screen (not the switch account screen, lock 
screen), sometimes I can't switch languages. I'm trying to switch from Hebrew 
to English to type in my password, and when I hit alt+shift, the lock screen 
suddenly disappears, and I see my screen for a second, then my screen goes 
black for a second, and I go back to the lock screen. The language is still on 
Hebrew, and I still can't change it to English.
  To bypass it, I can either change the language using the mouse, or to hit 
"switch account" with the mouse and then I can log back in.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: xorg 1:7.7+13ubuntu3
  ProcVersionSignature: Ubuntu 4.4.0-34.53-generic 4.4.15
  Uname: Linux 4.4.0-34-generic x86_64
  .tmp.unity_support_test.0:
   
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: