[Bug 1646096] Re: Folder Sharing failed 'net usershare' returned error 255

2017-02-08 Thread corrado venturini
This problem disappeared after the fix for the Bug #1639962

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

Title:
  Folder Sharing failed 'net usershare' returned error 255

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

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


[Bug 1648037] Re: Ubuntu 16.10: systemd-resolved does not resolve some domains

2017-02-08 Thread Launchpad Bug Tracker
[Expired for systemd (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  Ubuntu 16.10: systemd-resolved does not resolve some domains

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

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


[Bug 1663108] [NEW] /lib/systemd/systemd-journald:6:readlinkat:readlinkat:readlinkat_malloc:readlink_malloc:get_process_link_contents

2017-02-08 Thread errors.ubuntu.com bug bridge
Public bug reported:

The Ubuntu Error Tracker has been receiving reports about a problem regarding 
systemd.  This problem was most recently seen with package version 
229-4ubuntu16, the problem page at 
https://errors.ubuntu.com/problem/fd0be22aec94f1f30dece8f992c4abcb1acf53d4 
contains more details, including versions of packages affected, stacktrace or 
traceback, and individual crash reports.
If you do not have access to the Ubuntu Error Tracker you can request it at 
http://forms.canonical.com/reports/.

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


** Tags: wily xenial

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

Title:
  /lib/systemd/systemd-
  
journald:6:readlinkat:readlinkat:readlinkat_malloc:readlink_malloc:get_process_link_contents

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

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


[Bug 1663060] Re: Add a title field to snap metadata

2017-02-08 Thread Robert Ancell
** Also affects: snappy
   Importance: Undecided
   Status: New

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

Title:
  Add a title field to snap metadata

To manage notifications about this bug go to:
https://bugs.launchpad.net/developer-portal/+bug/1663060/+subscriptions

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


[Bug 1661590] Re: GNOME Software only supports running one application from a snap

2017-02-08 Thread Robert Ancell
I opened bug 1663103 about not being able to determine which slots each
app uses.

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

Title:
  GNOME Software only supports running one application from a snap

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

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


[Bug 1581713] Re: Ubuntu Software always asks for an Ubuntu Single Sign-On account when installing or removing a snap package

2017-02-08 Thread Robert Ancell
Here's what I wrote mailing list post I linked to, it gives an example
of why this feature is required:

There are a number of cases where it makes sense to be able to remove a
snap without logging in:
- You may be offline and so can't do an Ubuntu One login at this time.
- You don't have an Ubuntu One account but you want to remove something.
- The snap came pre-installed, and you want to remove it. You have no need
to log in and install more snaps (at that time).
- You are a different user to the one who installed it.

The reason gnome-software triggers the login is the following happens:
1. g-s finds the snap using GET /v2/snaps on snapd.
2. The user clicks "Remove"
3. g-s requests removal using POST /v2/snaps/[name]
4. snapd returns the error "login-required"
5. g-s prompts the user for email address / password
6. g-s asks the system D-Bus service snapd-login-service to login with the
email address / password
7. snapd-login-service checks with Polkit that the user is allowed to do
this
8. Polkit triggers a password prompt to check the user is there
9. snapd-login-service calls POST /v2/login on snapd
10. snapd returns a macaroon
11. snapd-login-service returns the macaroon to g-s
12. g-s repeats POST /v2/snaps/[name] using the macaroon

The question is - does it make sense to make a new request to snapd that
gets an authorization macaroon without logging into Ubuntu One? i.e.
something like this:
1. g-s finds the snap using GET /v2/snaps on snapd.
2. The user clicks "Remove"
3. g-s requests removal using POST /v2/snaps/[name]
4. snapd returns the error "login-required"
5. g-s asks the system D-Bus service snapd-login-service to authorize
6. snapd-login-service checks with Polkit that the user is allowed to do
this
7. Polkit triggers a password prompt to check the user is there
8. snapd-login-service calls POST /v2/authorize on snapd
9. snapd returns a macaroon
10. snapd-login-service returns the macaroon to g-s
11. g-s repeats POST /v2/snaps/[name] using the macaroon

If we do this at what point do we prompt a user to do an Ubuntu One login?
Do we have two error messages "auth-required" and "login-required"? Or is
login an optional thing that we let the user decide if they want to do it?

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

Title:
  Ubuntu Software always asks for an Ubuntu Single Sign-On account when
  installing or removing a snap package

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

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


[Bug 1555567] Re: [snaps] License information from the store not available

2017-02-08 Thread Robert Ancell
Mailing list discussion about using SPDX license tags:
https://lists.ubuntu.com/archives/snapcraft/2017-January/002774.html

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

Title:
  [snaps] License information from the store not available

To manage notifications about this bug go to:
https://bugs.launchpad.net/snapd-glib/+bug/167/+subscriptions

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


[Bug 1581713] Re: Ubuntu Software always asks for an Ubuntu Single Sign-On account when installing or removing a snap package

2017-02-08 Thread Robert Ancell
I did an attempt to resolve this by trying to get snapd to generate a
Macaroon without store access. But as I understand it getting a Macaroon
requires a round trip to the store.

So I think the solution to this is to either allow snapd to generate
local Macaroons or use some other type of authentication token for local
access.

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

Title:
  Ubuntu Software always asks for an Ubuntu Single Sign-On account when
  installing or removing a snap package

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

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


[Bug 1663097] [NEW] Show featured snaps

2017-02-08 Thread Robert Ancell
Public bug reported:

snapd added a new feature with store sections. This can be used to get
the featured snaps that should be promoted.

$ nc -C -U /run/snapd.socket
GET /v2/find?section=featured HTTP/1.1
Host:

HTTP/1.1 200 OK
Content-Type: application/json
Date: Thu, 09 Feb 2017 02:55:26 GMT
Transfer-Encoding: chunked

121e
{"type":"sync","status-code":200,"status":"OK","result":[{"channel":"stable","confinement":"strict","description":"Docker
 for snappy.\r\n\r\nThis snap allows you to use the full capabilities of docker 
on snappy.\r\n\r\nIn order to use 'docker build', 'docker save' and 'docker 
load', you need to place your dockerfile within $HOME/apps/docker/1.6.xxx/. All 
files that you want docker to access to must be within this path.\r\n\r\nYou 
may also use the 'docker-privilege' command to allow you to use 'docker run 
--privileged'. Because docker is unencumbered on snappy, it is recommended that 
you follow the Docker project's recommendations for using docker 
securely.","developer":"docker-inc","download-size":25858048,"icon":"https://myapps.developer.ubuntu.com/site_media/appmedia/2015/04/docker.svg.png","id":"sLCsFAO8PKM5Z0fAKNszUOX0YASjQfeZ","name":"docker","private":false,"resource":"/v2/snaps/docker","revision":"56","status":"available","summary":"The
 docker app deployment mechanism","type":
 
"app","version":"1.11.2-9"},{"channel":"stable","confinement":"strict","description":"LXD
 is a container manager for system containers.\r\n\r\nIt offers a REST API to 
remotely manage containers over the network, using an image based workflow and 
with support for live migration.\r\n\r\nImages are available for all Ubuntu 
releases and architectures as well as for a wide number of other Linux 
distributions.\r\n\r\nLXD containers are lightweight, secure by default and a 
great alternative to virtual 
machines.","developer":"canonical","download-size":12435456,"icon":"https://myapps.developer.ubuntu.com/site_media/appmedia/2016/08/containers.png","id":"J60k4JY0HppjwOjW8dZdYc8obXKxujRu","name":"lxd","private":false,"resource":"/v2/snaps/lxd","revision":"976","screenshots":[{"url":"https://myapps.developer.ubuntu.com/site_media/appmedia/2017/01/lxd.png"}],"status":"available","summary":"LXD
 - the container 
lightervisor","type":"app","version":"2.8"},{"channel":"stable","confinement":"strict"
 ,"description":"MongoDB is a high-performance, open source, 
schema-free\ndocument-oriented data store that's easy to deploy, manage\nand 
use. It's network accessible, written in C++ and offers\nthe following 
features:\n\n   * Collection oriented storage - easy storage of object-style 
data\n   * Full index support, including on inner objects\n   * Query 
profiling\n   * Replication and fail-over support\n   * Efficient storage of 
binary data including large objects (e.g. videos)\n   * Auto-sharding for 
cloud-level scalability\n\nHigh performance, scalability, and reasonable depth 
of functionality\nare the goals for the 
project.\n","developer":"niemeyer","download-size":73240576,"icon":"","id":"6UvOOGyo579tOzv5OIfs10hgVoB1bh4G","name":"mongo32","private":false,"resource":"/v2/snaps/mongo32","revision":"2","status":"available","summary":"MongoDB
 document-oriented 
database","type":"app","version":"3.2.7"},{"channel":"stable","confinement":"strict","description":"Slack-like
 online chat se
 rver for your office, group or family.   Up and running in seconds. Supports 
file sharing, video conference, geolocation, and much more.   Web and mobile 
client.   MIT licensed Open Source project.   List of features at  
https://rocket.chat/ ,  MIT licensed source code at 
https://github.com/RocketChat/Rocket.Chat , 24 x 7 community support and demo 
server at 
https://demo.rocket.chat/","developer":"rocketchat","download-size":153300992,"icon":"https://myapps.developer.ubuntu.com/site_media/appmedia/2016/08/1024x1024-circle.png","id":"wdBUbiEuMNHmAHLBCXQXOcXaOCvbWS1e","name":"rocketchat-server","private":false,"resource":"/v2/snaps/rocketchat-server","revision":"487","screenshots":[{"url":"https://myapps.developer.ubuntu.com/site_media/appmedia/2016/08/Screen_Shot_2016-02-22_at_21.44.26.png"},{"url":"https://myapps.developer.ubuntu.com/site_media/appmedia/2016/08/Screen_Shot_2016-02-22_at_21.45.00.png"},{"url":"https://myapps.developer.ubuntu.com/site_media/appmedia/2016/08/Screen_Sho
 
t_2016-02-22_at_21.45.35.png"},{"url":"https://myapps.developer.ubuntu.com/site_media/appmedia/2016/08/Screen_Shot_2016-02-22_at_21.47.10.png"},{"url":"https://myapps.developer.ubuntu.com/site_media/appmedia/2016/08/Screen_Shot_2016-02-22_at_21.48.31.png"},{"url":"https://myapps.developer.ubuntu.com/site_media/appmedia/2016/08/Screen_Shot_2016-03-09_at_20.15.01.png"},{"url":"https://myapps.developer.ubuntu.com/site_media/appmedia/2016/08/Screen_Shot_2016-03-18_at_18.00.07.png"}],"status":"available","summary":"Group
 chat server for 100s,  installed in 
seconds.","type":"app","version":"0.51.0"}],"sources":["store"],"suggested-

[Bug 1404683] Re: page title appears both in title bar and below it

2017-02-08 Thread Jeremy Bicha
Adam, I believe this is fixed in epiphany 3.24 which according to the
3.23.1 NEWS entry always shows the address bar except in web app mode.

When I tested in web app mode, the titlebar shows the page title. The
address bar area shows the unediatable address. Just above the address
is whatever name you gave the webapp when you created it.

epiphany 3.23.5 should be available in Ubuntu 17.04 Alpha for testing in
about an hour or so.

** Changed in: epiphany-browser (Ubuntu)
   Importance: Undecided => Low

** Changed in: epiphany-browser (Ubuntu Xenial)
   Importance: Undecided => Low

** Changed in: epiphany-browser (Ubuntu Yakkety)
   Importance: Undecided => Low

** Changed in: epiphany-browser (Ubuntu Xenial)
   Status: New => Triaged

** Changed in: epiphany-browser (Ubuntu Yakkety)
   Status: New => Triaged

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

Title:
  page title appears both in title bar and below it

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

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


[Bug 1404683] Re: page title appears both in title bar and below it

2017-02-08 Thread Jeremy Bicha
** Also affects: epiphany-browser (Ubuntu Xenial)
   Importance: Undecided
   Status: New

** Also affects: epiphany-browser (Ubuntu Yakkety)
   Importance: Undecided
   Status: New

** Changed in: epiphany-browser (Ubuntu)
   Status: New => Fix Released

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

Title:
  page title appears both in title bar and below it

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

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


[Bug 1663060] [NEW] Add a title field to snap metadata

2017-02-08 Thread Robert Ancell
Public bug reported:

There are currently three naming fields in the snap metadata:
name: a codename for the snap (can't contain spaces)
summary: a one-line description of the snap
description: A multi-line description of the snap

For example for the Ubuntu calculator app we have:
name: ubuntu-calculator-app
summary: Ubuntu Calculator app
description: The calculator app for all Ubuntu devices.

What is missing is the 'title' field from the store - this is more
appropriate to use in a graphical system to display this. For example,
this should be "Calculator" for ubuntu-calculator-app.

I think the following needs to be done:
1. A title field needs to be specified in the .snap metadata.
2. snapd needs to return this field for local snaps from the metadata, and 
return the store field for searches.
3. The store should take the title field from the metadata when uploading and 
automatically set it in the store.
4. Snapcraft needs to have updated documentation / prompt the user to enter 
this field.
5. snapd-glib needs support for this field.
6. GNOME Software should use this field where appropriate.

** Affects: developer-portal
 Importance: Undecided
 Status: New

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

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

** Affects: snapd (Ubuntu)
 Importance: Medium
 Status: Triaged

** Affects: snapd-glib (Ubuntu)
 Importance: Undecided
 Status: New

** Also affects: gnome-software (Ubuntu)
   Importance: Undecided
   Status: New

** Description changed:

  There are currently three naming fields in the snap metadata:
  name: a codename for the snap (can't contain spaces)
  summary: a one-line description of the snap
  description: A multi-line description of the snap
  
  For example for the Ubuntu calculator app we have:
  name: ubuntu-calculator-app
  summary: Ubuntu Calculator app
  description: The calculator app for all Ubuntu devices.
  
  What is missing is the 'title' field from the store - this is more
  appropriate to use in a graphical system to display this. For example,
  this should be "Calculator" for ubuntu-calculator-app.
  
  I think the following needs to be done:
  1. A title field needs to be specified in the .snap metadata.
  2. snapd needs to return this field for local snaps from the metadata, and 
return the store field for searches.
  3. The store should take the title field from the metadata when uploading and 
automatically set it in the store.
  4. Snapcraft needs to have updated documentation / prompt the user to enter 
this field.
+ 5. snapd-glib needs support for this field.
+ 6. GNOME Software should use this field where appropriate.

** Also affects: snapd-glib (Ubuntu)
   Importance: Undecided
   Status: New

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

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

Title:
  Add a title field to snap metadata

To manage notifications about this bug go to:
https://bugs.launchpad.net/developer-portal/+bug/1663060/+subscriptions

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


[Bug 1663060] Re: Add a title field to snap metadata

2017-02-08 Thread Robert Ancell
Currently gnome-software is using sumary or name instead of this field.

** Also affects: developer-portal
   Importance: Undecided
   Status: New

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

Title:
  Add a title field to snap metadata

To manage notifications about this bug go to:
https://bugs.launchpad.net/developer-portal/+bug/1663060/+subscriptions

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


[Bug 1663031] [NEW] cannot resolve www.facebook.com

2017-02-08 Thread Ralf Hildebrandt
Public bug reported:

$ systemd-resolve www.facebook.com 
www.facebook.com: resolve call failed: 'star-mini.c10r.facebook.com' does not 
have any RR of the requested type

But using dig:

$ dig @8.8.8.8 www.facebook.com

; <<>> DiG 9.10.3-P4-Ubuntu <<>> @8.8.8.8 www.facebook.com
; (1 server found)
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 20609
;; flags: qr rd ra; QUERY: 1, ANSWER: 2, AUTHORITY: 0, ADDITIONAL: 1

;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 512
;; QUESTION SECTION:
;www.facebook.com.  IN  A

;; ANSWER SECTION:
www.facebook.com.   734 IN  CNAME   star-mini.c10r.facebook.com.
star-mini.c10r.facebook.com. 46 IN  A   31.13.93.36

;; Query time: 33 msec
;; SERVER: 8.8.8.8#53(8.8.8.8)
;; WHEN: Wed Feb 08 22:17:05 CET 2017
;; MSG SIZE  rcvd: 90

$ systemd-resolve --status
Global
 DNS Servers: 127.0.0.1
  DNS Domain: fritz.box
  DNSSEC NTA: 10.in-addr.arpa
  16.172.in-addr.arpa
  168.192.in-addr.arpa
  17.172.in-addr.arpa
  18.172.in-addr.arpa
  19.172.in-addr.arpa
  20.172.in-addr.arpa
  21.172.in-addr.arpa
  22.172.in-addr.arpa
  23.172.in-addr.arpa
  24.172.in-addr.arpa
  25.172.in-addr.arpa
  26.172.in-addr.arpa
  27.172.in-addr.arpa
  28.172.in-addr.arpa
  29.172.in-addr.arpa
  30.172.in-addr.arpa
  31.172.in-addr.arpa
  corp
  d.f.ip6.arpa
  home
  internal
  intranet
  lan
  local
  private
  test

Link 6 (wwp0s20u7i8)
  Current Scopes: none
   LLMNR setting: yes
MulticastDNS setting: no
  DNSSEC setting: allow-downgrade
DNSSEC supported: yes

Link 4 (wlan0)
  Current Scopes: LLMNR/IPv4 LLMNR/IPv6
   LLMNR setting: yes
MulticastDNS setting: no
  DNSSEC setting: allow-downgrade
DNSSEC supported: yes

Link 2 (eth0)
  Current Scopes: none
   LLMNR setting: yes
MulticastDNS setting: no
  DNSSEC setting: allow-downgrade
DNSSEC supported: yes

I'm currently connected via wlan0.

ProblemType: Bug
DistroRelease: Ubuntu 17.04
Package: systemd 232-8
ProcVersionSignature: Ubuntu 4.9.0-15.16-generic 4.9.5
Uname: Linux 4.9.0-15-generic x86_64
NonfreeKernelModules: zfs zunicode zavl zcommon znvpair
ApportVersion: 2.20.4-0ubuntu2
Architecture: amd64
CurrentDesktop: Unity
Date: Wed Feb  8 22:14:17 2017
InstallationDate: Installed on 2014-02-07 (1097 days ago)
InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Release amd64 (20131016.1)
MachineType: Dell Inc. Latitude E7240
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.9.0-15-generic.efi.signed 
root=UUID=052bd6e1-db02-4bca-9f9c-d5600c0237e1 ro quiet splash vt.handoff=7
SourcePackage: systemd
UpgradeStatus: Upgraded to zesty on 2017-02-08 (0 days ago)
dmi.bios.date: 02/18/2014
dmi.bios.vendor: Dell Inc.
dmi.bios.version: A08
dmi.board.asset.tag: humbaba
dmi.board.name: 0531FD
dmi.board.vendor: Dell Inc.
dmi.board.version: A00
dmi.chassis.asset.tag: humbaba
dmi.chassis.type: 9
dmi.chassis.vendor: Dell Inc.
dmi.modalias: 
dmi:bvnDellInc.:bvrA08:bd02/18/2014:svnDellInc.:pnLatitudeE7240:pvr01:rvnDellInc.:rn0531FD:rvrA00:cvnDellInc.:ct9:cvr:
dmi.product.name: Latitude E7240
dmi.product.version: 01
dmi.sys.vendor: Dell Inc.

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


** Tags: amd64 apport-bug zesty

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

Title:
  cannot resolve www.facebook.com

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

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


[Bug 1663011] [NEW] package libpam-systemd:i386 231-9ubuntu3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 128

2017-02-08 Thread Giorgio Ruggieri
Public bug reported:

No LSB modules are available.
Distributor ID: Ubuntu
Description:Ubuntu 16.10
Release:16.10
Codename:   yakkety

ProblemType: Package
DistroRelease: Ubuntu 16.10
Package: libpam-systemd:i386 231-9ubuntu3
ProcVersionSignature: Ubuntu 4.8.0-37.39-generic 4.8.16
Uname: Linux 4.8.0-37-generic i686
ApportVersion: 2.20.3-0ubuntu8.2
Architecture: i386
Date: Wed Feb  8 20:35:44 2017
ErrorMessage: subprocess installed post-installation script returned error exit 
status 128
RelatedPackageVersions:
 dpkg 1.18.10ubuntu1
 apt  1.3.4
SourcePackage: systemd
Title: package libpam-systemd:i386 231-9ubuntu3 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 128
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: apport-package i386 package-from-proposed yakkety

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

Title:
  package libpam-systemd:i386 231-9ubuntu3 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 128

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

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


[Bug 1647485] Re: NVMe symlinks broken by devices with spaces in model or serial strings

2017-02-08 Thread Launchpad Bug Tracker
This bug was fixed in the package systemd - 204-5ubuntu20.24

---
systemd (204-5ubuntu20.24) trusty; urgency=medium

  [ Thomas Voß ]
  * Do not create /run/nologin, and thus make sure deputy systemd does not
prevent system logins. LP: #1660573.

systemd (204-5ubuntu20.23) trusty; urgency=medium

  * d/p/0001-libudev-util-change-util_replace_whitespace-to-retur.patch,
d/p/0002-udev-event-add-replace_whitespace-param-to-udev_even.patch,
d/p/0003-udev-rules-perform-whitespace-replacement-for-symlin.patch:
Cherry-pick upstream fixes from Dan Streetman  to
fix by-id symlinks for devices whose IDs contain whitespace.
LP: #1647485.

 -- Dimitri John Ledkov   Thu, 02 Feb 2017 10:29:19
+

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

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

Title:
  NVMe symlinks broken by devices with spaces in model or serial strings

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas-images/+bug/1647485/+subscriptions

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

[Bug 1660573] Re: "system is booting up" while trying to log in after installing snapd on ubuntu 14.04

2017-02-08 Thread Launchpad Bug Tracker
This bug was fixed in the package systemd - 204-5ubuntu20.24

---
systemd (204-5ubuntu20.24) trusty; urgency=medium

  [ Thomas Voß ]
  * Do not create /run/nologin, and thus make sure deputy systemd does not
prevent system logins. LP: #1660573.

systemd (204-5ubuntu20.23) trusty; urgency=medium

  * d/p/0001-libudev-util-change-util_replace_whitespace-to-retur.patch,
d/p/0002-udev-event-add-replace_whitespace-param-to-udev_even.patch,
d/p/0003-udev-rules-perform-whitespace-replacement-for-symlin.patch:
Cherry-pick upstream fixes from Dan Streetman  to
fix by-id symlinks for devices whose IDs contain whitespace.
LP: #1647485.

 -- Dimitri John Ledkov   Thu, 02 Feb 2017 10:29:19
+

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

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

Title:
  "system is booting up" while trying to log in after installing snapd
  on ubuntu 14.04

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

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

[Bug 1662874] Re: gnome-calendar crashed with SIGSEGV in gcal_manager_refresh()

2017-02-08 Thread Apport retracing service
*** This bug is a duplicate of bug 1561957 ***
https://bugs.launchpad.net/bugs/1561957

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

** Attachment removed: "CoreDump.gz"
   
https://bugs.launchpad.net/bugs/1662874/+attachment/4815334/+files/CoreDump.gz

** Attachment removed: "Disassembly.txt"
   
https://bugs.launchpad.net/bugs/1662874/+attachment/4815336/+files/Disassembly.txt

** Attachment removed: "ProcMaps.txt"
   
https://bugs.launchpad.net/bugs/1662874/+attachment/4815338/+files/ProcMaps.txt

** Attachment removed: "ProcStatus.txt"
   
https://bugs.launchpad.net/bugs/1662874/+attachment/4815339/+files/ProcStatus.txt

** Attachment removed: "Registers.txt"
   
https://bugs.launchpad.net/bugs/1662874/+attachment/4815340/+files/Registers.txt

** Attachment removed: "Stacktrace.txt"
   
https://bugs.launchpad.net/bugs/1662874/+attachment/4815341/+files/Stacktrace.txt

** Attachment removed: "ThreadStacktrace.txt"
   
https://bugs.launchpad.net/bugs/1662874/+attachment/4815342/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of private bug 1561957

** Information type changed from Private to Public

** Tags removed: need-amd64-retrace

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

Title:
  gnome-calendar crashed with SIGSEGV in gcal_manager_refresh()

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

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


[Bug 1662845] Re: No sound in Epiphany

2017-02-08 Thread Jeremy Bicha
This bug report is being closed due to your last comment. For future
reference you can manage the status of your own bugs by clicking on the
current status in the yellow line and then choosing a new status in the
revealed drop down box. You can learn more about bug statuses at
https://wiki.ubuntu.com/Bugs/Status. Thank you again for taking the time
to report this bug and helping to make Ubuntu better. Please submit any
future bugs you may find.

** Changed in: epiphany-browser (Ubuntu)
   Status: New => Invalid

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

Title:
  No sound in Epiphany

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

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


[Bug 1662845] Re: No sound in Epiphany

2017-02-08 Thread Cristian Mos
Sorry, it just got solved today, the sound is back. It can be deleted.

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

Title:
  No sound in Epiphany

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

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


[Bug 1662749] Re: GNOME Software has entry in Startup Applications

2017-02-08 Thread Jeremy Bicha
** Description changed:

  [Impact]
  GNOME Software shows in the startup applications list and can be disabled. 
This is a feature that should not be easily disabled by the user.
  
  [Test Case]
  1. Open Startup Applications
  
  Expected result:
  GNOME Software is not shown
  
  Observed result:
  GNOME Software is shown and can be disabled.
  
  [Regression Potential]
  Low - this just hides this entry.
+ 
+ If a user had disabled the gnome-software service from automatically starting 
in the background, it will now be more difficult to re-enable it.
+ rm ~/.config/autostart/gnome-software-service.desktop
+ 
+ The gnome-software service is a bit heavy (LP: #1592678) so some users
+ do disable it. The downside is that by disabling it, the Software app
+ takes much longer to start.

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

Title:
  GNOME Software has entry in Startup Applications

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

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


[Bug 1657909] Re: SSH service should be hidden from Startup Applications too

2017-02-08 Thread Jeremy Bicha
As discussed today in #ubuntu-desktop, the current behavior is
intentional. There is no other easy graphical way to tell gnome-keyring
not to act as ssh agent, which is a common use case.

https://irclogs.ubuntu.com/2017/02/08/%23ubuntu-desktop.html

** Changed in: gnome-keyring (Ubuntu Yakkety)
   Status: Incomplete => Invalid

** Changed in: gnome-keyring (Ubuntu Xenial)
   Status: Incomplete => Invalid

** Changed in: gnome-keyring (Ubuntu Trusty)
   Status: Incomplete => Invalid

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

Title:
  SSH service should be hidden from Startup Applications too

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

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


[Bug 1662845] [NEW] No sound in Epiphany

2017-02-08 Thread Cristian Mos
Public bug reported:

I am running elementary OS Loki with Epiphany 3.18.10. I have no sound
in Epiphany for videos. The sound works in Firefox for the same video.
Also, Epiphany doesn't appear in System Settings > Sound > Applications
while playing the video. It is a problem since the last Epiphany
automatic update (beginning of February).

** Affects: epiphany-browser (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  No sound in Epiphany

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

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


[Bug 1662836] [NEW] repeatedly turning BT off and off crashes gnome

2017-02-08 Thread Carlo
Public bug reported:

A bit of background (not sure if important): in our setup RFKill is
driving a GPIO to enable / disable the BT transceiver. This is a slow
operation and it could take ~500ms for the RFKill subsystem to complete
the operation.

In the Bluetooth configuration panel if I click on the Bluetooth on/off
toggle switch 5+ times in a row repeatedly, gnome (or BT configuration
panel) crashes.

This is what I have in the journal:
```
gnome-settings-[886]: g_simple_async_result_take_error: assertion 
'G_IS_SIMPLE_ASYNC_RESULT (simple)' failed
gnome-settings-[886]: g_simple_async_result_complete_in_idle: assertion 
'G_IS_SIMPLE_ASYNC_RESULT (simple)' failed
gnome-settings-[886]: g_simple_async_result_take_error: assertion 
'G_IS_SIMPLE_ASYNC_RESULT (simple)' failed
gnome-settings-[886]: g_simple_async_result_complete_in_idle: assertion 
'G_IS_SIMPLE_ASYNC_RESULT (simple)' failed
gnome-settings-[886]: g_simple_async_result_take_error: assertion 
'G_IS_SIMPLE_ASYNC_RESULT (simple)' failed
gnome-settings-[886]: g_simple_async_result_complete_in_idle: assertion 
'G_IS_SIMPLE_ASYNC_RESULT (simple)' failed
kernel: BT_RADIO going: on
kernel: BCM_BT: going ON
gnome-settings-[886]: g_simple_async_result_take_error: assertion 
'G_IS_SIMPLE_ASYNC_RESULT (simple)' failed
gnome-settings-[886]: g_simple_async_result_complete_in_idle: assertion 
'G_IS_SIMPLE_ASYNC_RESULT (simple)' failed
gnome-settings-[886]: Failed to set RFKill: Stream has outstanding operation
gnome-settings-daemon.desktop[886]: **
gnome-settings-daemon.desktop[886]: 
rfkill-plugin:ERROR:rfkill-glib.c:168:write_change_all_timeout_cb: assertion 
failed: (rfkill->priv->event)
```

Coredump:
```
Core was generated by `/usr/lib/gnome-settings-daemon/gnome-settings-daemon'.
Program terminated with signal SIGABRT, Aborted.
#0  __libc_do_syscall () at 
../ports/sysdeps/unix/sysv/linux/arm/libc-do-syscall.S:44
44  ../ports/sysdeps/unix/sysv/linux/arm/libc-do-syscall.S: No such file or 
directory.
(gdb) bt
#0  __libc_do_syscall () at 
../ports/sysdeps/unix/sysv/linux/arm/libc-do-syscall.S:44
#1  0xf687bee6 in __GI_raise (sig=sig@entry=6) at 
../nptl/sysdeps/unix/sysv/linux/raise.c:56
#2  0xf687cbee in __GI_abort () at abort.c:89
#3  0xf69bc7ea in g_assertion_message () from 
/lib/arm-linux-gnueabihf/libglib-2.0.so.0
#4  0xf69bc888 in g_assertion_message_expr () from 
/lib/arm-linux-gnueabihf/libglib-2.0.so.0
#5  0xf285d562 in write_change_all_timeout_cb (rfkill=0x643430, 
rfkill@entry=0x4b3f70) at rfkill-glib.c:168
#6  0xf285dc68 in cc_rfkill_glib_send_change_all_event (rfkill=0x4b3f70, 
rfkill_type=2, enable=0, cancellable=0xf285e0b8, callback=0xf285c709 
,
user_data=0x492b90) at rfkill-glib.c:242
#7  0xf285cf78 in engine_set_bluetooth_airplane_mode (enable=, 
manager=0x492b90) at gsd-rfkill-manager.c:345
#8  handle_set_property (connection=, sender=, 
object_path=, interface_name=,
property_name=0xf490f528 "BluetoothAirplaneMode", value=0xf4919460, 
error=0xffc75dac, user_data=0x492b90) at gsd-rfkill-manager.c:395
#9  0xf6b162ea in ?? () from /lib/arm-linux-gnueabihf/libgio-2.0.so.0
```

At least for `assertion 'G_IS_SIMPLE_ASYNC_RESULT (simple)' failed` what
I think it's happening here is that
`cc_rfkill_glib_send_change_all_event()` is rapidly called and several
request for the asynchronous writing are queued on several
`GSimpleAsyncResult` objects. When the first writing is done in
`write_change_all_done_cb()` the latest `rfkill->priv->simple` object is
freed. All the subsequent `write_change_all_done_cb()` callbacks find a
NULL `rfkill->priv->simple`.

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

** Description changed:

  A bit of background (not sure if important): in our setup RFKill is
  driving a GPIO to enable / disable the BT transceiver. This is a slow
  operation and it could take ~500ms for the RFKill subsystem to complete
  the operation.
  
  In the Bluetooth configuration panel if I click on the Bluetooth on/off
  toggle switch 5+ times in a row repeatedly, gnome (or BT configuration
  panel) crashes.
  
  This is what I have in the journal:
  ```
  gnome-settings-[886]: g_simple_async_result_take_error: assertion 
'G_IS_SIMPLE_ASYNC_RESULT (simple)' failed
  gnome-settings-[886]: g_simple_async_result_complete_in_idle: assertion 
'G_IS_SIMPLE_ASYNC_RESULT (simple)' failed
  gnome-settings-[886]: g_simple_async_result_take_error: assertion 
'G_IS_SIMPLE_ASYNC_RESULT (simple)' failed
  gnome-settings-[886]: g_simple_async_result_complete_in_idle: assertion 
'G_IS_SIMPLE_ASYNC_RESULT (simple)' failed
  gnome-settings-[886]: g_simple_async_result_take_error: assertion 
'G_IS_SIMPLE_ASYNC_RESULT (simple)' failed
  gnome-settings-[886]: g_simple_async_result_complete_in_idle: assertion 
'G_IS_SIMPLE_ASYNC_RESULT (simple)' failed
  kernel: BT_RADIO going: on
  kernel: BCM_BT: going ON
  gnome-settings-[886]: g_simple_async_result_take_error: assertion 
'G_IS_SIMPLE_ASYNC_RESULT (si

[Bug 1085706] Re: pam_ecryptfs: seteuid error

2017-02-08 Thread Alexey
This bug is still affected me in Debian Sid (currently 9.0).
I affected with i3lock.

Sometimes, if wait about 3-4minutes, i3lock allow me to reenter
passphrase, but sometimes I have to reboot my laptop...

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

Title:
  pam_ecryptfs: seteuid error

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

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


[Bug 1497545] Re: archive manager changes file manager default settings to show hidden files

2017-02-08 Thread Dominik
I don't see this as fixed in Ubuntu 16.04 as of today, I was
experiencing this for the last few days. Opening a Save dialog in
Firefox and pressing Ctrl-H fixed the issue. I don't much see what this
has to do with file-roller; it's more an issue with with system
open/save dialog window.

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

Title:
  archive manager changes file manager default settings to show hidden
  files

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

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


[Bug 1645065] Re: gnome-software (Ubuntu Software) crashed after system update on Xenial

2017-02-08 Thread Yuan-Chen Cheng
I try it today on a dell machine that's just fresh install from dell
recovery, I can't reproduce it.

it's xenial running gnome-software 3.20.1+git20161013.0.d77d6cf-
0ubuntu2~xenial1.

not sure if it's because the updated gonpme-software fix it.

Taihsiang: mind test the new version ?

** Changed in: oem-priority
 Assignee: (unassigned) => Taihsiang Ho (taihsiangho)

** Changed in: oem-priority
   Status: New => Incomplete

** Changed in: oem-priority
   Importance: Critical => High

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

Title:
  gnome-software (Ubuntu Software) crashed after system update on Xenial

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

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