[Desktop-packages] [Bug 956618]

2015-02-01 Thread Mkmelin+mozilla
Comment on attachment 8556897
Patch v1

Review of attachment 8556897:
-

::: mailnews/addrbook/src/nsAbAutoCompleteSearch.js
@@ +128,5 @@
 * Gets the score of the (full) address, given the search input. We want
 * results that match the beginning of a word in the result to score 
 better
 * than a result that matches only in the middle of the word.
 *
 +   * @param aCard - The card whose score is being decided

lowercase t?

@@ +139,5 @@
 +
 +// We will firstly check if the search term provided by the user
 +// is the nick name for the card or at least in the beginning of it.
 +let nick = aCard.getProperty(NickName, );
 +nick = nick.toLocaleLowerCase();

you can just put .toLocaleLowerCase() after getPropery above

@@ +140,5 @@
 +// We will firstly check if the search term provided by the user
 +// is the nick name for the card or at least in the beginning of it.
 +let nick = aCard.getProperty(NickName, );
 +nick = nick.toLocaleLowerCase();
 +aSearchString = aSearchString.toLocaleLowerCase();

remove the duplication of this below.

@@ +143,5 @@
 +nick = nick.toLocaleLowerCase();
 +aSearchString = aSearchString.toLocaleLowerCase();
 +let nickIndex = nick.indexOf(aSearchString);
 +if (nick == aSearchString || nickIndex == 0)
 +  return BEST;

You don't need the nick == aSearchString
But, this doesn't quite do what this bug requests. What is requested is that 
nick should act as a super-best match. so the score should be 1 better than 
if it matched in display name - as is they would be equal (BEST + 1)

Please also adjust the test for this. There should be one test where the
nick is the beginning of another persons name.

::: mailnews/addrbook/test/unit/test_nsAbAutoCompleteSearch6.js
@@ +139,5 @@
  card.setProperty(PopularityIndex, element.popularityIndex);
  card.firstName = element.firstName;
  card.lastName = element.lastName;
 +if (element.NickName)
 +  card.setProperty(NickName, element.NickName);

You don't need the if I think. All the other props are also just set to
undefined if not set. Also, please lowerCamelCase NickName

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

Title:
  Nickname not over-riding names in email address

Status in Mozilla Thunderbird Mail and News:
  Confirmed
Status in thunderbird package in Ubuntu:
  New

Bug description:
  From what I have read in the support forum the nickname should take
  priority in the search for an email address in the to: field. It does
  not appear to work any more.

  Example:

  One friend's address is Markm...@.com. The other is
  Jamesjames.m...@.com. Both are in my address book with Mark
  entered as the nickname of m...@.com  and James as nickname for
  james.m...@.com.

  If I type james in the To: field I get james.mark as a first entry in
  the list of available addresses.

  If I type mark I get the same address again, when I would prefer the
  first optional address to be m...@.com

  Reason it is needed:
  I am trying to avoid sending emails meant for m...@.com to James.mark 
because I do not notice in time that I have defaulted to the first entry in the 
list of available addresses.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: thunderbird 10.0.2+build1-0ubuntu0.11.10.1
  ProcVersionSignature: Ubuntu 3.0.0-16.29-generic-pae 3.0.20
  Uname: Linux 3.0.0-16-generic-pae i686
  ApportVersion: 1.23-0ubuntu4
  Architecture: i386
  BuildID: 20120216123548
  Date: Fri Mar 16 00:31:06 2012
  InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release i386 (20111012)
  SourcePackage: thunderbird
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Desktop-packages] [Bug 956618] Re: Nickname not over-riding names in email address

2015-02-01 Thread Bug Watch Updater
** Changed in: thunderbird
   Importance: High = Medium

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

Title:
  Nickname not over-riding names in email address

Status in Mozilla Thunderbird Mail and News:
  Confirmed
Status in thunderbird package in Ubuntu:
  New

Bug description:
  From what I have read in the support forum the nickname should take
  priority in the search for an email address in the to: field. It does
  not appear to work any more.

  Example:

  One friend's address is Markm...@.com. The other is
  Jamesjames.m...@.com. Both are in my address book with Mark
  entered as the nickname of m...@.com  and James as nickname for
  james.m...@.com.

  If I type james in the To: field I get james.mark as a first entry in
  the list of available addresses.

  If I type mark I get the same address again, when I would prefer the
  first optional address to be m...@.com

  Reason it is needed:
  I am trying to avoid sending emails meant for m...@.com to James.mark 
because I do not notice in time that I have defaulted to the first entry in the 
list of available addresses.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: thunderbird 10.0.2+build1-0ubuntu0.11.10.1
  ProcVersionSignature: Ubuntu 3.0.0-16.29-generic-pae 3.0.20
  Uname: Linux 3.0.0-16-generic-pae i686
  ApportVersion: 1.23-0ubuntu4
  Architecture: i386
  BuildID: 20120216123548
  Date: Fri Mar 16 00:31:06 2012
  InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release i386 (20111012)
  SourcePackage: thunderbird
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Desktop-packages] [Bug 956618]

2015-02-01 Thread Syshagarwal
Created attachment 8557496
Patch v2

Made the suggested changes.

Thanks.

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

Title:
  Nickname not over-riding names in email address

Status in Mozilla Thunderbird Mail and News:
  Confirmed
Status in thunderbird package in Ubuntu:
  New

Bug description:
  From what I have read in the support forum the nickname should take
  priority in the search for an email address in the to: field. It does
  not appear to work any more.

  Example:

  One friend's address is Markm...@.com. The other is
  Jamesjames.m...@.com. Both are in my address book with Mark
  entered as the nickname of m...@.com  and James as nickname for
  james.m...@.com.

  If I type james in the To: field I get james.mark as a first entry in
  the list of available addresses.

  If I type mark I get the same address again, when I would prefer the
  first optional address to be m...@.com

  Reason it is needed:
  I am trying to avoid sending emails meant for m...@.com to James.mark 
because I do not notice in time that I have defaulted to the first entry in the 
list of available addresses.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: thunderbird 10.0.2+build1-0ubuntu0.11.10.1
  ProcVersionSignature: Ubuntu 3.0.0-16.29-generic-pae 3.0.20
  Uname: Linux 3.0.0-16-generic-pae i686
  ApportVersion: 1.23-0ubuntu4
  Architecture: i386
  BuildID: 20120216123548
  Date: Fri Mar 16 00:31:06 2012
  InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release i386 (20111012)
  SourcePackage: thunderbird
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Desktop-packages] [Bug 956618]

2015-02-01 Thread Bugzilla2007
Comment on attachment 8557496
Patch v2

Review of attachment 8557496:
-

Thanks a lot Suyash for your quick response to my request to pick this
up - I am really getting tired of referencing and explaining this bug
(and workaround) in other bugs where users have been facing problems due
to this major flaw which practically disables the entire nickname
functionality for a range of scenarios.

I'll set feedback+ because we're on the right track here; but the devil
- as always - in the detail (i.e. this patch as-is won't work yet as
expected)...

::: mailnews/addrbook/src/nsAbAutoCompleteSearch.js
@@ +141,5 @@
 +// is the nick name for the card or at least in the beginning of it.
 +let nick = aCard.getProperty(NickName, ).toLocaleLowerCase();
 +aSearchString = aSearchString.toLocaleLowerCase();
 +if (nick.indexOf(aSearchString) == 0)
 +  return BEST + 1;

(In reply to Magnus Melin from comment #86)
 You don't need the nick == aSearchString
 nick should act as a super-best match. so the score should be 1 better
 than if it matched in display name - as is they would be equal (= we need 
 BEST + 1)

True, but still not sufficient for ensuring absolute top ranking for *full* 
nickname matches over *partial* nickname matches, e.g.:
Card1: Nickname=foo (nick==searchphrase; nickIndex==0)
Card2: Nickname=foobar (nick!=searchphrase; nickIndex==0)
Searchphrase: foo

Autocomplete result (wrong):
Card2 (partial nick match)
Card1 (full nick match)

To make the nickname design work reliably, full nickname match must
obviously supersede partial nickname match, so we would need to adjust
the scoring accordingly:

if (nick == aSearchString)
  return BEST+2;
if (nickIndex == 0)
  return BEST+1;

However, I'm not convinced yet if making initial nickname matches rank
higher than anything else will really work out well, e.g.:

Card1: Display Name=Tom popularityIndex=10
Card2: Nickname=TomFoo popularityIndex=5
Card3: Nickname=TomBar popularityIndex=4
Searchphrase: Tom

Autocomplete result:
Card2 (partial nickname match, pi=5)
Card3 (partial nickname match, pi=4)
Card1 (full display name match, pi=10)

So I'm not sure if all results with partial matches on nickname should
rank higher than full match on display name; should they? (I think not).
Worse, PLEASE let's be aware that any forced top scorings that are not
based on frecency will further undermine even the current rudimentary
frequency implemtation of popularityIndex:

Card1: Display Name=Tom popularityIndex=1000
Card2: Nickname=TomFoo popularityIndex=5
Card3: Nickname=TomBar popularityIndex=4
Card4: Nickname=Tim popularityIndex=6
Card5: Nickname=TD popularityIndex=7
Searchphrase: T

Autocomplete result:
(all partial nickname matches top-listed, ordered by popularity:)
Card5
Card4
Card2
Card3
(then, potentially far down the list:)
Card1 (initial Display name match; popularityIndex=1000(!))

So in this case, even for partial nickname matches from single-
character(!) search phrase, ALL partial nickname matches will be
toplisted (although they are not popular at all, and the partial match
on their nicknames is entirely insignificant!), whereas highly popular
Card1 with an inital match on Display name will rank lower than all the
insignificant matches.

Undermining frecency-based sorting more is imo a slippery approach
because we'll never find a one-for-all algorithm to predict which
address the user actually wants, but frecency (linked up with the
actual user input) will certainly be one of our best bets. I think.
These things are actually pretty complex...

Please correct me if I'm wrong, but I conclude that it'll be safer if we
just fix the main usecase of this bug, which is FULL nickname matches;
let the rest be handled by our existing algorithm. So I suspect that
this should be sufficient:

if (nick == aSearchString)
  return BEST+1;

Also, since full nickname matches (per inherent design) must really
always be toplisted without exception (regardless of any other sorting
algorithms we might think of), I wonder if we should leave some room in
the score for pushing other matches into the best+ range:

if (nick == aSearchString)
  return BEST+100;

Further technical reviews might want to test and improve performance
against large ABs.

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

Title:
  Nickname not over-riding names in email address

Status in Mozilla Thunderbird Mail and News:
  Confirmed
Status in thunderbird package in Ubuntu:
  New

Bug description:
  From what I have read in the support forum the nickname should take
  priority in the search for an email address in the to: field. It does
  not appear to work any more.

  Example:

  One friend's address is Markm...@.com. The other is
  Jamesjames.m...@.com. Both are in my address book with Mark
  entered 

[Desktop-packages] [Bug 1416826] Re: package system-config-printer-common 1.5.1+20141010-0ubuntu2.1 failed to install/upgrade: cannot copy extracted data for './usr/share/system-config-printer/firewal

2015-02-01 Thread Apport retracing service
** Tags removed: need-duplicate-check

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to system-config-printer in Ubuntu.
https://bugs.launchpad.net/bugs/1416826

Title:
  package system-config-printer-common 1.5.1+20141010-0ubuntu2.1 failed
  to install/upgrade: cannot copy extracted data for './usr/share
  /system-config-printer/firewallsettings.py' to '/usr/share/system-
  config-printer/firewallsettings.py.dpkg-new': unexpected end of file
  or stream

Status in system-config-printer package in Ubuntu:
  New

Bug description:
  I tried to install an epson printer package. After the installation an
  actualisation started and while this actualisation the error message
  appeared.

  ProblemType: Package
  DistroRelease: Ubuntu 14.10
  Package: system-config-printer-common 1.5.1+20141010-0ubuntu2.1
  ProcVersionSignature: Ubuntu 3.16.0-28.38-generic 3.16.7-ckt1
  Uname: Linux 3.16.0-28-generic i686
  ApportVersion: 2.14.7-0ubuntu8.1
  Architecture: i386
  CupsErrorLog:
   
  Date: Sun Feb  1 11:58:37 2015
  DuplicateSignature: 
package:system-config-printer-common:1.5.1+20141010-0ubuntu2.1:cannot copy 
extracted data for './usr/share/system-config-printer/firewallsettings.py' to 
'/usr/share/system-config-printer/firewallsettings.py.dpkg-new': unexpected end 
of file or stream
  ErrorMessage: cannot copy extracted data for 
'./usr/share/system-config-printer/firewallsettings.py' to 
'/usr/share/system-config-printer/firewallsettings.py.dpkg-new': unexpected end 
of file or stream
  InstallationDate: Installed on 2014-12-07 (55 days ago)
  InstallationMedia: Xubuntu 14.10 Utopic Unicorn - Release i386 (20141022.1)
  Lpstat: Error: command ['lpstat', '-v'] failed with exit code 1: lpstat: No 
destinations added.
  Lsusb:
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
   Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
   Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
  MachineType: Sony Corporation PCG-FR415S(DE)
  PackageArchitecture: all
  Papersize: a4
  PccardctlIdent:
   Socket 0:
 no product info available
   Socket 1:
 no product info available
  PccardctlStatus:
   Socket 0:
 no card
   Socket 1:
 no card
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.16.0-28-generic 
root=UUID=8f86b02d-7ef1-448f-ac8a-4e39f9a4fdff ro quiet splash vt.handoff=7
  SourcePackage: system-config-printer
  Title: package system-config-printer-common 1.5.1+20141010-0ubuntu2.1 failed 
to install/upgrade: cannot copy extracted data for 
'./usr/share/system-config-printer/firewallsettings.py' to 
'/usr/share/system-config-printer/firewallsettings.py.dpkg-new': unexpected end 
of file or stream
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 11/25/2003
  dmi.bios.vendor: Phoenix Technologies LTD
  dmi.bios.version: R0109K7
  dmi.board.name: Q-Project
  dmi.board.vendor: Sony Corporation
  dmi.board.version: 01
  dmi.chassis.asset.tag: 9N1M000F
  dmi.chassis.type: 10
  dmi.chassis.vendor: Sony Corporation
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnPhoenixTechnologiesLTD:bvrR0109K7:bd11/25/2003:svnSonyCorporation:pnPCG-FR415S(DE):pvr01:rvnSonyCorporation:rnQ-Project:rvr01:cvnSonyCorporation:ct10:cvrN/A:
  dmi.product.name: PCG-FR415S(DE)
  dmi.product.version: 01
  dmi.sys.vendor: Sony Corporation

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/system-config-printer/+bug/1416826/+subscriptions

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


[Desktop-packages] [Bug 1259004] Re: LibreOffice Writer hangs when deleting text in attached test case

2015-02-01 Thread Christopher M. Penalver
Anthony, it would help immensely if you filed a new report following
https://wiki.ubuntu.com/LibreOfficeBugWrangling .

** Changed in: libreoffice (Ubuntu)
   Status: Confirmed = Incomplete

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

Title:
  LibreOffice Writer hangs when deleting text in attached test case

Status in libreoffice package in Ubuntu:
  Incomplete

Bug description:
  Deleting a few lines of text from the attached test case document
  causes LibreOffice 4.0.2-0ubuntu1 to hang.

  This minimal test case document was reduced by hand from a full,
  working document that also experienced the same hang.  The text in
  question contains endnotes, columns, and headings, most or all of
  which had to be present to reproduce the bug.

  Thread backtraces, with debugging symbols, are included in the
  attached oobug.txt file.

  Steps to reproduce are also included in the attached screen shot
  animation.

  Steps to reproduce:
  1. Open test case 6.odt in LibreOffice Writer
  2. Select the three lines of text in the right column
  3. Press the Backspace or Delete key to erase the text
  4. The text is not erased, and all open instances of LibreOffice hang


  Ubuntu release:
   raring

  Package version:
  libreoffice-base:
Installed: 1:4.0.2-0ubuntu1
Candidate: 1:4.0.2-0ubuntu1
Version table:
   *** 1:4.0.2-0ubuntu1 0
  500 http://archive.ubuntu.com/ubuntu/ raring/main amd64 Packages
  100 /var/lib/dpkg/status

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

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


[Desktop-packages] [Bug 1416835] [NEW] HDMI output not visible in audio settings

2015-02-01 Thread Theodor van Nahl
Public bug reported:

I am running a Ubuntu 14.10 running 14.10.0: all of the package. My
Laptop has an i5 4200U Intel CPU inkl. the served graphics card.

What happens:
After I plug in a HDMI device with audio (e.g. TV) the hdmi output is not 
visible in the audio settings. I need to use pavucontrol to change the output. 
After changing the output to hdmi it is visible in the normal audio settings, 
too.

What should happen:
After plugging a HDMI device with audio in (or maybe every time), the hdmi 
output is visible in the ubuntu audio settings so I can change without the need 
of something else.

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


** Tags: audio hdmi

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ubuntu-settings in Ubuntu.
https://bugs.launchpad.net/bugs/1416835

Title:
  HDMI output not visible in audio settings

Status in ubuntu-settings package in Ubuntu:
  New

Bug description:
  I am running a Ubuntu 14.10 running 14.10.0: all of the package. My
  Laptop has an i5 4200U Intel CPU inkl. the served graphics card.

  What happens:
  After I plug in a HDMI device with audio (e.g. TV) the hdmi output is not 
visible in the audio settings. I need to use pavucontrol to change the output. 
After changing the output to hdmi it is visible in the normal audio settings, 
too.

  What should happen:
  After plugging a HDMI device with audio in (or maybe every time), the hdmi 
output is visible in the ubuntu audio settings so I can change without the need 
of something else.

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

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


[Desktop-packages] [Bug 1416769] Re: [xorg-edgers] xserver-xorg-video-intel no login screen

2015-02-01 Thread modolo
** Also affects: xserver-xorg-video-intel
   Importance: Undecided
   Status: New

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

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xserver-xorg-video-intel in Ubuntu.
https://bugs.launchpad.net/bugs/1416769

Title:
  [xorg-edgers] xserver-xorg-video-intel no login screen

Status in X.org xf86-video-intel:
  New
Status in xserver-xorg-video-intel package in Ubuntu:
  New

Bug description:
  After the latest updates (xserver-xorg-video-intel: amd64 (2.99.917 +
  git20150127.4bbd1023-0ubuntu0sarvatt ~ utopic)
  xserver-xorg-video-intel: amd64 (2.99.917 +
  git20150128.2e7ae760-0ubuntu0sarvatt ~ utopic)) a strange behavior started
  to happen.

  After the lock screen, the display dims, the mouse cursor appears and you
  can no longer unlock the screen. I noticed that changing to a new terminal
  with CTRL + ALT + F1 and then (no need to authenticate) returning with ALT
  + F7 you can again unlock the screen.

  Reverted to version 2: 2.99.914-1 ~ exp1ubuntu4.2 the
  xserver-xorg-video-intel package and everything normalized, for now I'm
  keeping this package on hold until the problem is resolved.

  This behavior was repeated on three different machines, the machine that
  more use is a samsung laptop.

  Modolo @ nibiru: ~ 'uname -a
  Linux nibiru 3.18.5-031805-generic # 201501292218 SMP Fri Jan 30 03:19:17
  UTC 2015 x86_64 x86_64 x86_64 GNU / Linux

  P.S.: I try the last version xserver-xorg-video-intel -
  2:2.99.917+git20150129.58fe4089-0ubuntu0sarvatt~utopic but the problem
  persists.

   affects bzr
   affects ubuntu

  Thanks,

  Marcelo Módolo

To manage notifications about this bug go to:
https://bugs.launchpad.net/xserver-xorg-video-intel/+bug/1416769/+subscriptions

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


[Desktop-packages] [Bug 1416794] Re: Can't mount exFAT on Ubuntu 14.10

2015-02-01 Thread unrud
** Description changed:

  I've installed the packages exfat-fuse and exfat-utils but I can't mount 
exFAT filesystems through udisks2.
  $ udisksctl mount --block-device /dev/sdb1
  Object /org/freedesktop/UDisks2/block_devices/sdb1 is not a mountable 
filesystem.
  
  Mounting with
  $ sudo mount /dev/sdb1 ...
  works fine.
  
- I've also tried to restart the computer.
  It works fine on Ubuntu 14.04.

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

Title:
  Can't mount exFAT on Ubuntu 14.10

Status in udisks2 package in Ubuntu:
  New

Bug description:
  I've installed the packages exfat-fuse and exfat-utils but I can't mount 
exFAT filesystems through udisks2.
  $ udisksctl mount --block-device /dev/sdb1
  Object /org/freedesktop/UDisks2/block_devices/sdb1 is not a mountable 
filesystem.

  Mounting with
  $ sudo mount /dev/sdb1 ...
  works fine.

  It works fine on Ubuntu 14.04.

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

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


[Desktop-packages] [Bug 1338030] Re: https support missing in lynx-cur 2.8.9dev1-1

2015-02-01 Thread Andreas Metzler
You could also simply pull 2.8.9dev4-1 from debian/experimental, the
newer upstream has dropped the direct gcrypt dependency.

cu Andreas

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to lynx-cur in Ubuntu.
https://bugs.launchpad.net/bugs/1338030

Title:
  https support missing in lynx-cur 2.8.9dev1-1

Status in lynx-cur package in Ubuntu:
  New

Bug description:
  As we've switched from libgnutls-dev to libgnutls28-dev, it seems we
  now need to add libgcrypt20-dev to our build-deps explicitly since no
  version of libgcrypt is pulled in by libgnutls28-dev anymore. Result
  is a lynx that's doesn't understand https as ./configure can't find
  all it needs for https support.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lynx-cur/+bug/1338030/+subscriptions

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


[Desktop-packages] [Bug 1040873] Re: [N56VZ, Realtek ALC663, Black Headphone Out, Right] No sound at all: Subwoofer not working

2015-02-01 Thread meomic
2.1 profile is also not available under 14.10

i believe these patches didnt made its way into ubuntu 14.10:
http://cgit.freedesktop.org/pulseaudio/pulseaudio/commit/?id=3f140f9022ef0b59b3684edd25e2202a65989669
http://cgit.freedesktop.org/pulseaudio/pulseaudio/commit/?id=65be25dd0faa566a74101d5a0f50d5a825b6f1e7

if you want to try(it is not guaranteed that it will change anything) -
then you need to build pulseaudio yourself - as there is no ppa(too bad)

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

Title:
  [N56VZ, Realtek ALC663, Black Headphone Out, Right] No sound at all:
  Subwoofer not working

Status in alsa-driver package in Ubuntu:
  Triaged

Bug description:
  Hi,

  this bug is a fork of https://bugs.launchpad.net/ubuntu/+source/alsa-
  driver/+bug/871808 because #871808 stands for a different hardware
  with a different solution, so people may get confused.

  Here is a summary (see post #48 to #54 of #871808):
  The subwoofer of Asus N56VZ laptop doesn't work out of the box.

  #sudo hda-jack-sense-test -a :
  *** Without subwoofer:
  Pin 0x1e (Black SPDIF Out): present = No
  *** With subwoofer:
  Pin 0x1e (Black SPDIF Out): present = Yes

  http://www.alsa-
  project.org/db/?f=2778e7f430aa95ae219d0b2bc3cb5e46abd0a33a

  -- There are two ways of making it work:

  #1
  a. Add to rc.local :
  echo 0x1e 0x99130112  /sys/class/sound/hwC0D0/user_pin_configs
  echo 1  /sys/class/sound/hwC0D0/reconfig
  b. Add options snd-hda-intel model=asus-mode4 in 
/etc/modprobe.d/alsa-base.conf
  c. Reboot
  d. Set the mode to Analog Stereo Output and then to Analog Surround 5.1 
output in the sound settings panel. You have to do this each time you reboot!!!

  #2
  a. Add to rc.local :
  echo 0x16 0x99130111  /sys/class/sound/hwC0D0/user_pin_configs
  echo 0x1e 0x99130112  /sys/class/sound/hwC0D0/user_pin_configs
  echo 1  /sys/class/sound/hwC0D0/reconfig
  b. Reboot
  c. Set the mode to Analog Stereo Output and then to Analog Surround 5.1 
output in the sound settings panel. You have to do this each time you reboot!!!

  Both give the same results and fix the bug.

  -- Can you make it work out of the box?

  There is still two other bugs on this laptop :
  - crackling audio when playing with sound volume: see 
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1040867
  - When I put the omputer in sleep mode, there is no way to get sound working 
on resume: should I open a new bug to investigate this?

  Regards
  Sam

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: alsa-base 1.0.25+dfsg-0ubuntu1
  ProcVersionSignature: Ubuntu 3.2.0-29.46-generic 3.2.24
  Uname: Linux 3.2.0-29-generic x86_64
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
  AplayDevices:
    List of PLAYBACK Hardware Devices 
   card 0: PCH [HDA Intel PCH], device 0: ALC663 Analog [ALC663 Analog]
     Subdevices: 1/1
     Subdevice #0: subdevice #0
  ApportVersion: 2.0.1-0ubuntu12
  Architecture: amd64
  ArecordDevices:
    List of CAPTURE Hardware Devices 
   card 0: PCH [HDA Intel PCH], device 0: ALC663 Analog [ALC663 Analog]
     Subdevices: 1/1
     Subdevice #0: subdevice #0
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  sam1898 F pulseaudio
  Card0.Amixer.info:
   Card hw:0 'PCH'/'HDA Intel PCH at 0xf7a1 irq 47'
     Mixer name : 'Realtek ALC663'
     Components : 'HDA:10ec0663,10431477,0012'
     Controls  : 23
     Simple ctrls  : 13
  CheckboxSubmission: 54021779511d0213081a2b1707bf951c
  CheckboxSystem: 4c773cd91921f9618cc2f1893bc1a87a
  Date: Thu Aug 23 22:38:00 2012
  InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: alsa-driver
  Symptom: audio
  Symptom_AlsaPlaybackTest: ALSA playback test through plughw:PCH failed
  Symptom_Card: Built-in Audio - HDA Intel PCH
  Symptom_DevicesInUse:
   1898  sam   F pulseaudio
   PID ACCESS COMMAND
  Symptom_Jack: Black Headphone Out, Right
  Symptom_Type: No sound at all
  Title: [N56VZ, Realtek ALC663, Black Headphone Out, Right] No sound at all
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 05/11/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N56VZ.204
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N56VZ
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN56VZ.204:bd05/11/2012:svnASUSTeKCOMPUTERINC.:pnN56VZ:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN56VZ:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: 

[Desktop-packages] [Bug 1416826] [NEW] package system-config-printer-common 1.5.1+20141010-0ubuntu2.1 failed to install/upgrade: cannot copy extracted data for './usr/share/system-config-printer/firew

2015-02-01 Thread Martin Heß
Public bug reported:

I tried to install an epson printer package. After the installation an
actualisation started and while this actualisation the error message
appeared.

ProblemType: Package
DistroRelease: Ubuntu 14.10
Package: system-config-printer-common 1.5.1+20141010-0ubuntu2.1
ProcVersionSignature: Ubuntu 3.16.0-28.38-generic 3.16.7-ckt1
Uname: Linux 3.16.0-28-generic i686
ApportVersion: 2.14.7-0ubuntu8.1
Architecture: i386
CupsErrorLog:
 
Date: Sun Feb  1 11:58:37 2015
DuplicateSignature: 
package:system-config-printer-common:1.5.1+20141010-0ubuntu2.1:cannot copy 
extracted data for './usr/share/system-config-printer/firewallsettings.py' to 
'/usr/share/system-config-printer/firewallsettings.py.dpkg-new': unexpected end 
of file or stream
ErrorMessage: cannot copy extracted data for 
'./usr/share/system-config-printer/firewallsettings.py' to 
'/usr/share/system-config-printer/firewallsettings.py.dpkg-new': unexpected end 
of file or stream
InstallationDate: Installed on 2014-12-07 (55 days ago)
InstallationMedia: Xubuntu 14.10 Utopic Unicorn - Release i386 (20141022.1)
Lpstat: Error: command ['lpstat', '-v'] failed with exit code 1: lpstat: No 
destinations added.
Lsusb:
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
 Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
 Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
MachineType: Sony Corporation PCG-FR415S(DE)
PackageArchitecture: all
Papersize: a4
PccardctlIdent:
 Socket 0:
   no product info available
 Socket 1:
   no product info available
PccardctlStatus:
 Socket 0:
   no card
 Socket 1:
   no card
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.16.0-28-generic 
root=UUID=8f86b02d-7ef1-448f-ac8a-4e39f9a4fdff ro quiet splash vt.handoff=7
SourcePackage: system-config-printer
Title: package system-config-printer-common 1.5.1+20141010-0ubuntu2.1 failed to 
install/upgrade: cannot copy extracted data for 
'./usr/share/system-config-printer/firewallsettings.py' to 
'/usr/share/system-config-printer/firewallsettings.py.dpkg-new': unexpected end 
of file or stream
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 11/25/2003
dmi.bios.vendor: Phoenix Technologies LTD
dmi.bios.version: R0109K7
dmi.board.name: Q-Project
dmi.board.vendor: Sony Corporation
dmi.board.version: 01
dmi.chassis.asset.tag: 9N1M000F
dmi.chassis.type: 10
dmi.chassis.vendor: Sony Corporation
dmi.chassis.version: N/A
dmi.modalias: 
dmi:bvnPhoenixTechnologiesLTD:bvrR0109K7:bd11/25/2003:svnSonyCorporation:pnPCG-FR415S(DE):pvr01:rvnSonyCorporation:rnQ-Project:rvr01:cvnSonyCorporation:ct10:cvrN/A:
dmi.product.name: PCG-FR415S(DE)
dmi.product.version: 01
dmi.sys.vendor: Sony Corporation

** Affects: system-config-printer (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 need-duplicate-check utopic

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to system-config-printer in Ubuntu.
https://bugs.launchpad.net/bugs/1416826

Title:
  package system-config-printer-common 1.5.1+20141010-0ubuntu2.1 failed
  to install/upgrade: cannot copy extracted data for './usr/share
  /system-config-printer/firewallsettings.py' to '/usr/share/system-
  config-printer/firewallsettings.py.dpkg-new': unexpected end of file
  or stream

Status in system-config-printer package in Ubuntu:
  New

Bug description:
  I tried to install an epson printer package. After the installation an
  actualisation started and while this actualisation the error message
  appeared.

  ProblemType: Package
  DistroRelease: Ubuntu 14.10
  Package: system-config-printer-common 1.5.1+20141010-0ubuntu2.1
  ProcVersionSignature: Ubuntu 3.16.0-28.38-generic 3.16.7-ckt1
  Uname: Linux 3.16.0-28-generic i686
  ApportVersion: 2.14.7-0ubuntu8.1
  Architecture: i386
  CupsErrorLog:
   
  Date: Sun Feb  1 11:58:37 2015
  DuplicateSignature: 
package:system-config-printer-common:1.5.1+20141010-0ubuntu2.1:cannot copy 
extracted data for './usr/share/system-config-printer/firewallsettings.py' to 
'/usr/share/system-config-printer/firewallsettings.py.dpkg-new': unexpected end 
of file or stream
  ErrorMessage: cannot copy extracted data for 
'./usr/share/system-config-printer/firewallsettings.py' to 
'/usr/share/system-config-printer/firewallsettings.py.dpkg-new': unexpected end 
of file or stream
  InstallationDate: Installed on 2014-12-07 (55 days ago)
  InstallationMedia: Xubuntu 14.10 Utopic Unicorn - Release i386 (20141022.1)
  Lpstat: Error: command ['lpstat', '-v'] failed with exit code 1: lpstat: No 
destinations added.
  Lsusb:
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
   Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
   Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
  MachineType: Sony Corporation PCG-FR415S(DE)
  PackageArchitecture: all
  Papersize: a4
  PccardctlIdent:
   Socket 0:
 no product 

[Desktop-packages] [Bug 1166305] Re: [Audigy2 - E-mu 1010 PCIe [MAEM8986], playback] No sound at all

2015-02-01 Thread Bengt Nilsson
It seems my problem was caused by a hardware problem.
After changing my motherboard due to defective ethernet and SPDIF ports, the 
EMU1212 PCIe started working normally.
I changed from an AMD combo (Athlon A2) to an Intel combo (i3).
If there really is a problem with the AMD platform in this context, I cannot 
say.

From my point of view, this bug can be removed.

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

Title:
  [Audigy2 - E-mu 1010 PCIe [MAEM8986], playback] No sound at all

Status in alsa-driver package in Ubuntu:
  New

Bug description:
  This Creative Labs EMU1212m PCIe is a brand new (March-2013) purchase, a 
EMU1010 PCIe card + a 0202 DAC/ADC daughter board.
  I have tested an older EMU1010 PCI card with the same 0202 DAC/ADC card 
indivvidual  and got sound immidiately. Alsamixer was correctly preconfigured, 
I did not have to change anything. I have tested the 1010 PCIe + 0202 combo 
under WIndows to test for any hardware problems, no problem there.
  In alsamixer, I have routed DSP 0 - 31 to 0202DAC without having any output 
from any DSP selected.
  The EMU1212PCIe has apparently been reported to work, so this may be some new 
firmware revision(?) that is different from previous.

  In the system listing proivided you may see that the the EMU1010 PCI is 
physically present in the slot.
  However, the interconnecting flat cable from the 0202DAC/ADC is presently 
connected to the EMU1010 PCIe card.

  Finally, it is important to mention that Capture works on both cards. It is 
only 0202 DAC playback that fails for the EMU1212 PCIe.
  I have not tested SPDIF output. 

  Good Luck.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: alsa-base 1.0.25+dfsg-0ubuntu1.1
  ProcVersionSignature: Ubuntu 3.2.0-39.41-lowlatency 3.2.39
  Uname: Linux 3.2.0-39-lowlatency x86_64
  NonfreeKernelModules: fglrx
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
  ApportVersion: 2.0.1-0ubuntu17.1
  Architecture: amd64
  Card0.Amixer.info:
   Card hw:0 'SB'/'HDA ATI SB at 0xfe024000 irq 16'
 Mixer name : 'Realtek ALC892'
 Components : 'HDA:10ec0892,1458a102,00100302'
 Controls  : 46
 Simple ctrls  : 21
  Card1.Amixer.info:
   Card hw:1 'EMU1010'/'E-mu 1010 [MAEM8810] (rev.3, serial:0x40011102) at 
0xbf00, irq 20'
 Mixer name : 'SB Audigy'
 Components : ''
 Controls  : 239
 Simple ctrls  : 80
  Card2.Amixer.info:
   Card hw:2 'HDMI'/'HDA ATI HDMI at 0xfdefc000 irq 19'
 Mixer name : 'ATI RS690/780 HDMI'
 Components : 'HDA:1002791a,00791a00,0010'
 Controls  : 4
 Simple ctrls  : 1
  Card2.Amixer.values:
   Simple mixer control 'IEC958',0
 Capabilities: pswitch pswitch-joined penum
 Playback channels: Mono
 Mono: Playback [on]
  Card3.Amixer.info:
   Card hw:3 'EMU10101'/'E-mu 1010 PCIe [MAEM8986] (rev.0, serial:0x40071102) 
at 0x9f00, irq 17'
 Mixer name : 'SB Audigy'
 Components : ''
 Controls  : 239
 Simple ctrls  : 80
  Date: Mon Apr  8 18:31:22 2013
  InstallationMedia: Ubuntu-Studio 12.04 Precise Pangolin - Release amd64 
(20120425)
  MarkForUpload: True
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=sv:en
   TERM=xterm
   PATH=(custom, no user)
   LANG=sv_SE.UTF-8
   SHELL=/bin/bash
  SourcePackage: alsa-driver
  Symptom: audio
  Symptom_AlsaPlaybackTest: ALSA playback test through plughw:EMU10101 failed
  Symptom_Card: SB0400 Audigy2 Value - E-mu 1010 PCIe [MAEM8986]
  Symptom_Type: No sound at all
  Title: [Audigy2 - E-mu 1010 PCIe [MAEM8986], playback] No sound at all
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/30/2010
  dmi.bios.vendor: Award Software International, Inc.
  dmi.bios.version: F5
  dmi.board.name: GA-880GMA-UD2H
  dmi.board.vendor: Gigabyte Technology Co., Ltd.
  dmi.board.version: x.x
  dmi.chassis.type: 3
  dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
  dmi.modalias: 
dmi:bvnAwardSoftwareInternational,Inc.:bvrF5:bd09/30/2010:svnGigabyteTechnologyCo.,Ltd.:pnGA-880GMA-UD2H:pvr:rvnGigabyteTechnologyCo.,Ltd.:rnGA-880GMA-UD2H:rvrx.x:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvr:
  dmi.product.name: GA-880GMA-UD2H
  dmi.sys.vendor: Gigabyte Technology Co., Ltd.

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

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


[Desktop-packages] [Bug 1416769] [NEW] [xorg-edgers] xserver-xorg-video-intel no login screen

2015-02-01 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

After the latest updates (xserver-xorg-video-intel: amd64 (2.99.917 +
git20150127.4bbd1023-0ubuntu0sarvatt ~ utopic)
xserver-xorg-video-intel: amd64 (2.99.917 +
git20150128.2e7ae760-0ubuntu0sarvatt ~ utopic)) a strange behavior started
to happen.

After the lock screen, the display dims, the mouse cursor appears and you
can no longer unlock the screen. I noticed that changing to a new terminal
with CTRL + ALT + F1 and then (no need to authenticate) returning with ALT
+ F7 you can again unlock the screen.

Reverted to version 2: 2.99.914-1 ~ exp1ubuntu4.2 the
xserver-xorg-video-intel package and everything normalized, for now I'm
keeping this package on hold until the problem is resolved.

This behavior was repeated on three different machines, the machine that
more use is a samsung laptop.

Modolo @ nibiru: ~ 'uname -a
Linux nibiru 3.18.5-031805-generic # 201501292218 SMP Fri Jan 30 03:19:17
UTC 2015 x86_64 x86_64 x86_64 GNU / Linux

P.S.: I try the last version xserver-xorg-video-intel -
2:2.99.917+git20150129.58fe4089-0ubuntu0sarvatt~utopic but the problem
persists.

 affects bzr
 affects ubuntu

Thanks,

Marcelo Módolo

** Affects: xserver-xorg-video-intel
 Importance: Undecided
 Status: New

** Affects: xserver-xorg-video-intel (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: bot-comment
-- 
[xorg-edgers] xserver-xorg-video-intel no login screen
https://bugs.launchpad.net/bugs/1416769
You received this bug notification because you are a member of Desktop 
Packages, which is subscribed to xserver-xorg-video-intel in Ubuntu.

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


[Desktop-packages] [Bug 1314367] Re: Flickering with Ubuntu 14.04 and nvidia card reappeared

2015-02-01 Thread Miguel Barrio Orsikowsky
Compiz workaround also works for me: force full screen redraws (buffer swap) on 
repaint [x]
Ubuntu 14.04.1 fully updated
nVidia driver versión 346.35 (from xorg edgers PPA)
nVidia GeForce GTX 570

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

Title:
  Flickering with Ubuntu 14.04 and nvidia card reappeared

Status in xorg package in Ubuntu:
  Confirmed

Bug description:
  As requested in Bug #1310633 I'm opening a new bug.

  With a previous version of Ubuntu I already had this flickering. With
  additional options for the kernel module I was able to fix the
  flickering.

  options nvidia NVreg_RegistryDwords=PerfLevelSrc=0x
  NVreg_Mobile=3 NVreg_ModifyDeviceFiles=0

  With version 14.04 and the nvidia-331 (331.38-0ubuntu7) driver the
  flickering reappeared although the line is still present in
  options.conf.

  Using modprobe --resolve-alias nvidia I found the correct driver
  module name which in my case is nvidia_331. Changing the module name
  in options.conf to nvidia_331 X doesn't start anymore. Removing the
  NVreg_ModifyDeviceFiles option X is starting again, but does not solve
  the issue.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8
  ProcVersionSignature: Ubuntu 3.13.0-24.46-generic 3.13.9
  Uname: Linux 3.13.0-24-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  331.38  Wed Jan  8 19:32:30 
PST 2014
   GCC version:  gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1)
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.14.1-0ubuntu3
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: None
  CurrentDesktop: Unity
  Date: Tue Apr 29 21:09:41 2014
  DistUpgraded: 2014-04-17 23:47:50,572 DEBUG enabling apt cron job
  DistroCodename: trusty
  DistroVariant: ubuntu
  DkmsStatus:
   bbswitch, 0.7, 3.13.0-24-generic, x86_64: installed
   nvidia-331, 331.38, 3.13.0-24-generic, x86_64: installed
   vboxhost, 4.3.10, 3.13.0-24-generic, x86_64: installed
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   NVIDIA Corporation GT215GLM [Quadro FX 1800M] [10de:0cbc] (rev a2) (prog-if 
00 [VGA controller])
 Subsystem: Hewlett-Packard Company Device [103c:1521]
  InstallationDate: Installed on 2012-11-17 (528 days ago)
  InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Release amd64 (20121017.5)
  MachineType: Hewlett-Packard HP EliteBook 8540w
  PccardctlStatus:
   Socket 0:
 3.3V
16-bit
PC Card
 Subdevice 0 (function 0) bound to driver pata_pcmcia
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-24-generic 
root=UUID=c6af930a-63f1-4015-9c42-bdde793e3e5a ro quiet splash
  SourcePackage: xorg
  UpgradeStatus: Upgraded to trusty on 2014-04-17 (11 days ago)
  dmi.bios.date: 09/13/2013
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: 68CVD Ver. F.24
  dmi.board.name: 1521
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: KBC Version 32.35
  dmi.chassis.type: 10
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvr68CVDVer.F.24:bd09/13/2013:svnHewlett-Packard:pnHPEliteBook8540w:pvr:rvnHewlett-Packard:rn1521:rvrKBCVersion32.35:cvnHewlett-Packard:ct10:cvr:
  dmi.product.name: HP EliteBook 8540w
  dmi.sys.vendor: Hewlett-Packard
  version.compiz: compiz 1:0.9.11+14.04.20140409-0ubuntu1
  version.ia32-libs: ia32-libs 20090808ubuntu36
  version.libdrm2: libdrm2 2.4.52-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 10.1.0-4ubuntu5
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 10.1.0-4ubuntu5
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.15.1-0ubuntu2
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.8.2-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.3.0-1ubuntu3
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.910-0ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.10-1ubuntu2
  xserver.bootTime: Tue Apr 29 21:06:04 2014
  xserver.configfile: default
  xserver.errors: open /dev/fb0: No such file or directory
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   
  xserver.version: 2:1.15.1-0ubuntu2

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

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


[Desktop-packages] [Bug 1338030] Re: https support missing in lynx-cur 2.8.9dev1-1

2015-02-01 Thread Sander van Malssen
This was in fact already fixed in 2.8.9dev1-2.

** Changed in: lynx-cur (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to lynx-cur in Ubuntu.
https://bugs.launchpad.net/bugs/1338030

Title:
  https support missing in lynx-cur 2.8.9dev1-1

Status in lynx-cur package in Ubuntu:
  Fix Released

Bug description:
  As we've switched from libgnutls-dev to libgnutls28-dev, it seems we
  now need to add libgcrypt20-dev to our build-deps explicitly since no
  version of libgcrypt is pulled in by libgnutls28-dev anymore. Result
  is a lynx that's doesn't understand https as ./configure can't find
  all it needs for https support.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lynx-cur/+bug/1338030/+subscriptions

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


[Desktop-packages] [Bug 1416833] Re: NetworkManager crashed with signal 5 in ASSERT_VALID_PATH_COMPONENT()

2015-02-01 Thread Apport retracing service
*** This bug is a duplicate of bug 1416635 ***
https://bugs.launchpad.net/bugs/1416635

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 #1416635, 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/1416833/+attachment/4309776/+files/CoreDump.gz

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/1416833/+attachment/4309778/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.launchpad.net/bugs/1416833/+attachment/4309786/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/1416833/+attachment/4309787/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/1416833/+attachment/4309788/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/1416833/+attachment/4309790/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/1416833/+attachment/4309791/+files/ThreadStacktrace.txt

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

** Information type changed from Private to Public

** Tags removed: need-i386-retrace

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

Title:
  NetworkManager crashed with signal 5 in ASSERT_VALID_PATH_COMPONENT()

Status in network-manager package in Ubuntu:
  New

Bug description:
  i386 vivid 
  kernel - 3.18.0-11

  ProblemType: Crash
  DistroRelease: Ubuntu 15.04
  Package: network-manager 0.9.10.0-4ubuntu4
  ProcVersionSignature: Ubuntu 3.18.0-11.12-generic 3.18.3
  Uname: Linux 3.18.0-11-generic i686
  NonfreeKernelModules: wl
  ApportVersion: 2.15.1-0ubuntu4
  Architecture: i386
  CrashCounter: 1
  Date: Sun Feb  1 18:03:35 2015
  ExecutablePath: /usr/sbin/NetworkManager
  IfupdownConfig:
   # interfaces(5) file used by ifup(8) and ifdown(8)
   auto lo
   iface lo inet loopback
  InstallationDate: Installed on 2014-12-15 (48 days ago)
  InstallationMedia: Ubuntu 15.04 Vivid Vervet - Alpha i386 (20141214)
  IpRoute:
   default via 192.168.24.1 dev eth0 
   192.168.24.0/24 dev eth0  proto kernel  scope link  src 192.168.24.24
  NetworkManager.state:
   [main]
   NetworkingEnabled=true
   WirelessEnabled=false
   WWANEnabled=true
   WimaxEnabled=true
  ProcCmdline: NetworkManager
  ProcEnviron:
   TERM=linux
   PATH=(custom, no user)
   LANG=ru_RU.UTF-8
  Signal: 5
  SourcePackage: network-manager
  StacktraceTop:
   ASSERT_VALID_PATH_COMPONENT ()
   nm_utils_ip6_property_path ()
   ?? ()
   ?? ()
   g_cclosure_marshal_VOID__OBJECT () from 
/usr/lib/i386-linux-gnu/libgobject-2.0.so.0
  Title: NetworkManager crashed with signal 5 in ASSERT_VALID_PATH_COMPONENT()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups:
   
  mtime.conffile..etc.NetworkManager.NetworkManager.conf: 
2014-12-17T21:47:23.164341
  nmcli-con: Error: command ['nmcli', '-f', 'all', 'con'] failed with exit code 
9: Error: nmcli (0.9.10.0) and NetworkManager (unknown) versions don't match. 
Force execution using --nocheck, but the results are unpredictable.
  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/1416833/+subscriptions

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


[Desktop-packages] [Bug 1379499] Re: mouse pointer converted into half thumbnail

2015-02-01 Thread bapoumba
Same here, lubuntu 14.10.
00:02.0 VGA compatible controller: Intel Corporation Mobile 945GM/GMS, 
943/940GML Express Integrated Graphics Controller (rev 03)

Happens mostly click and dragging images by accident on web pages
(Firefox).

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

Title:
  mouse pointer converted into half thumbnail

Status in Unity:
  Won't Fix
Status in eog package in Ubuntu:
  Confirmed

Bug description:
  Hallo
  TESTCASE:
  open an image with image viewer or gimp, left click to drag, release and the 
bug appear
  Actually I cannot find a way to make it return to the original state except 
restart.
  Interesting to note that if I record with the screencaster the bug is not 
showed in the movie even if it was existing during the record.
  See attached movies.
  Best regards

  ProblemType: Bug
  DistroRelease: Ubuntu 14.10
  Package: unity 7.3.1+14.10.20140915-0ubuntu2
  ProcVersionSignature: Ubuntu 3.16.0-21.28-generic 3.16.4
  Uname: Linux 3.16.0-21-generic x86_64
  .tmp.unity.support.test.0:

  ApportVersion: 2.14.7-0ubuntu5
  Architecture: amd64
  BootLog:
   * Starting userspace bootsplash utility[ OK ]
   Loading the saved-state of the serial devices...
   /dev/ttyS0 at 0x03f8 (irq = 4) is a 16550A
    * Setting up X socket directories...   
  [ OK ]
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Thu Oct  9 21:55:46 2014
  DistUpgraded: Fresh install
  DistroCodename: utopic
  DistroVariant: ubuntu
  EcryptfsInUse: Yes
  GraphicsCard:
   Intel Corporation Core Processor Integrated Graphics Controller [8086:0042] 
(rev 12) (prog-if 00 [VGA controller])
     Subsystem: Gigabyte Technology Co., Ltd Device [1458:d000]
  MachineType: Gigabyte Technology Co., Ltd. H55M-S2H
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.16.0-21-generic 
root=UUID=cc32d8a8-ff79-4de8-a08c-5900afa16b6c ro splash quiet nomdmonddf 
nomdmonisw nomdmonddf nomdmonisw nomdmonddf nomdmonisw nomdmonddf nomdmonisw 
nomdmonddf nomdmonisw nomdmonddf nomdmonisw nomdmonddf nomdmonisw vt.handoff=7
  SourcePackage: unity
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 08/20/2010
  dmi.bios.vendor: Award Software International, Inc.
  dmi.bios.version: F7
  dmi.board.name: H55M-S2H
  dmi.board.vendor: Gigabyte Technology Co., Ltd.
  dmi.board.version: x.x
  dmi.chassis.type: 3
  dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
  dmi.modalias: 
dmi:bvnAwardSoftwareInternational,Inc.:bvrF7:bd08/20/2010:svnGigabyteTechnologyCo.,Ltd.:pnH55M-S2H:pvr:rvnGigabyteTechnologyCo.,Ltd.:rnH55M-S2H:rvrx.x:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvr:
  dmi.product.name: H55M-S2H
  dmi.sys.vendor: Gigabyte Technology Co., Ltd.
  version.compiz: compiz 1:0.9.12+14.10.20140918-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.56-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 10.3.0-0ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 10.3.0-0ubuntu3
  version.xserver-xorg-core: xserver-xorg-core 2:1.16.0-1ubuntu1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.0-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.4.0-2ubuntu2
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.914-1~exp1ubuntu4
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.11-1ubuntu2
  xserver.bootTime: Thu Oct  9 21:50:10 2014
  xserver.configfile: default
  xserver.devices:
   inputPower Button KEYBOARD, id 6
   inputPower Button KEYBOARD, id 7
   input  USB Keyboard   KEYBOARD, id 8
   input  USB Keyboard   KEYBOARD, id 9
   inputPIXART USB OPTICAL MOUSE MOUSE, id 10
  xserver.errors:

  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id   19222
   vendor HSD
  xserver.version: 2:1.16.0-1ubuntu1

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

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


[Desktop-packages] [Bug 1026548] Re: popping sound at 10s intervals when on battery power

2015-02-01 Thread Zdenko Janov
I have same problem - but I have NO SOUND if my HP ProBook 4510s is on
the batteries. This was fix problem, THANK YOU Reiner ;-)

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

Title:
  popping sound at 10s intervals when on battery power

Status in alsa-driver package in Ubuntu:
  Confirmed

Bug description:
  This appears to be an old bug in kernel module snd_hda_intel (see 
/usr/share/doc/alsa-base/driver/powersave.txt and 
http://forums.opensuse.org/english/get-technical-help-here/hardware/388736-strange-pop-click-sound-speakers-every-time.html).
 Strangely however, I only observed this after upgrading to Precise AND 
installation of a new battery in my T61p Thinkpad. In any case, turning off 
Intel audio power saving works around the problem:
  In /usr/lib/pm-utils/power.d/intel-audio-powersave
  change the line
  INTEL_AUDIO_POWERSAVE=${INTEL_AUDIO_POWERSAVE:-true}
  to
  INTEL_AUDIO_POWERSAVE=false

  I am only filing this bug report since finding the workaround for
  specifically Precise (and other recent Ubuntu distros) required a bit
  of time (to put 2 and 2 together). Hope others won't have to spend the
  time now.

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

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


[Desktop-packages] [Bug 1393206] Re: SD/mmc card with exFAT fs not automatically mounted since upgrade to utopic

2015-02-01 Thread unrud
I've created a bug report against udisks2 (before I found this bug report):
https://bugs.launchpad.net/ubuntu/+source/udisks2/+bug/1416794

You wrote that the problem is that gvfs ignores the drive. But maybe you
can try to mount in manually with udisks2 and check if we are
encountering the same problem.

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

Title:
  SD/mmc card with exFAT fs not automatically mounted since upgrade to
  utopic

Status in lightdm package in Ubuntu:
  Confirmed

Bug description:
  Inserting a memory card formatted with exFAT in my built-in memory
  reader doesn't automatically mount the partition since I upgraded to
  utopic (from trusty). Before this it mounted the partition without any
  problems. I have installed exfat-fuse and exfat-utils as before.

  udisks2 detects the partition correctly but gvfs ignores it:
  17:00:48.133: Added /org/freedesktop/UDisks2/drives/SU64G_0xa21a0d95
org.freedesktop.UDisks2.Drive:
  CanPowerOff:false
  Configuration:  {}
  ConnectionBus:  sdio
  Ejectable:  false
  Id: SU64G-0xa21a0d95
  Media:  flash_sd
  MediaAvailable: true
  MediaChangeDetected:true
  MediaCompatibility: flash_sd
  MediaRemovable: true
  Model:  SU64G
  Optical:false
  OpticalBlank:   false
  OpticalNumAudioTracks:  0
  OpticalNumDataTracks:   0
  OpticalNumSessions: 0
  OpticalNumTracks:   0
  Removable:  true
  Revision:   
  RotationRate:   0
  Seat:   seat0
  Serial: 0xa21a0d95
  SiblingId:  
  Size:   63864569856
  SortKey:01hotplug/1416153648130773
  TimeDetected:   1416153648130773
  TimeMediaDetected:  1416153648130773
  Vendor: 
  WWN:
  17:00:48.134: Added /org/freedesktop/UDisks2/block_devices/mmcblk0
org.freedesktop.UDisks2.Block:
  Configuration:  []
  CryptoBackingDevice:'/'
  Device: /dev/mmcblk0
  DeviceNumber:   45824
  Drive:  
'/org/freedesktop/UDisks2/drives/SU64G_0xa21a0d95'
  HintAuto:   true
  HintIconName:   
  HintIgnore: false
  HintName:   
  HintPartitionable:  true
  HintSymbolicIconName:   
  HintSystem: false
  Id: 
  IdLabel:
  IdType: 
  IdUUID: 
  IdUsage:
  IdVersion:  
  MDRaid: '/'
  MDRaidMember:   '/'
  PreferredDevice:/dev/mmcblk0
  ReadOnly:   false
  Size:   63864569856
  Symlinks:   /dev/disk/by-id/mmc-SU64G_0xa21a0d95
org.freedesktop.UDisks2.PartitionTable:
  Type:   dos
  17:00:48.183: Added /org/freedesktop/UDisks2/block_devices/mmcblk0p1
org.freedesktop.UDisks2.Block:
  Configuration:  []
  CryptoBackingDevice:'/'
  Device: /dev/mmcblk0p1
  DeviceNumber:   45825
  Drive:  
'/org/freedesktop/UDisks2/drives/SU64G_0xa21a0d95'
  HintAuto:   true
  HintIconName:   
  HintIgnore: false
  HintName:   
  HintPartitionable:  true
  HintSymbolicIconName:   
  HintSystem: false
  Id: 
  IdLabel:
  IdType: 
  IdUUID: 
  IdUsage:
  IdVersion:  
  MDRaid: '/'
  MDRaidMember:   '/'
  PreferredDevice:/dev/mmcblk0p1
  ReadOnly:   false
  Size:   63863521280
  Symlinks:   /dev/disk/by-id/mmc-SU64G_0xa21a0d95-part1
org.freedesktop.UDisks2.Partition:
  Flags:  0
  IsContained:false
  IsContainer:false
  Name:   
  Number: 1
  Offset: 1048576
  Size:   63863521280
  Table:  '/org/freedesktop/UDisks2/block_devices/mmcblk0'
  Type:   
  UUID:   

  
  Drive connected:'SU64G'
   

[Desktop-packages] [Bug 1059872] Re: Error formatting disk using disk utility

2015-02-01 Thread Timo Jyrinki
The latest usb-creator 0.2.56.3 in 14.04 LTS should work better
(https://launchpad.net/ubuntu/+source/usb-creator/0.2.56.3),
workarounding at least part of the util-linux problem which probably
will not see a complete backport of the new feature needed in 14.04 LTS.

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

Title:
  Error formatting disk using disk utility

Status in udisks2 package in Ubuntu:
  Invalid
Status in util-linux package in Ubuntu:
  Fix Released
Status in udisks2 source package in Trusty:
  Invalid
Status in util-linux source package in Trusty:
  Won't Fix
Status in util-linux package in Debian:
  Fix Released

Bug description:
  Formatting a SD card using the disk utility fails with an error
  message

  Error formatting disk - Error synchronizing after initial wipe: Timed
  out waiting for object (udisks-error-quark, 0)

  Steps to repro:
  Launch the disk utility
  Plug a SD card into the computer
  Select the SD card and click on the gears icon at the top right of the 
application
  From the drop down menu, select Format Disk
  maintain the default setting and select Format
  Acknowledge warnings
  After format process has been going for a while, the error message shown 
above pops up

  Workaround: 
  After selecting the SD card, instead of clicking the gear icon to format, 
click the partition in the Volumes section.
  Delete the partition (minus icon)
  Create a new partition

  -

  The underlying problem is that the wipefs tool from util-linux does
  not work any more.

  === TEST CASE ===
  $ sudo modprobe scsi_debug dev_size_mb=200
  # this creates a new /dev/sdX, usually /dev/sdb; check dmesg!

  # now create a partition table
  $ cat EOF | sudo sfdisk /dev/sdb
  # partition table of /dev/sdb
  unit: sectors

  /dev/sdb1 : start=   32, size=   409568, Id=83
  /dev/sdb2 : start=0, size=0, Id= 0
  /dev/sdb3 : start=0, size=0, Id= 0
  /dev/sdb4 : start=0, size=0, Id= 0
  EOF

  # now create an ext4 file system:
  $ sudo mkfs.ext4 /dev/sdb1

  # check contents:
  $ sudo blkid -p /dev/sdb /dev/sdb1
  /dev/sdb: PTTYPE=dos
  /dev/sdb1: UUID=4bd1c542-a61f-43c4-a7e5-cc50e66e6b5a VERSION=1.0 
TYPE=ext4 USAGE=filesystem PART_ENTRY_SCHEME=dos PART_ENTRY_TYPE=0x83 
PART_ENTRY_NUMBER=1 PART_ENTRY_OFFSET=32 PART_ENTRY_SIZE=409568 
PART_ENTRY_DISK=8:16

  # wipe:
  $ sudo wipefs -a /dev/sdb

  # now check contents again
  $ sudo blkid -p /dev/sdb /dev/sdb1

  # in the broken case, you will still see a dos partition table and
  the ext4 partition; in the working case, /dev/sdb won't show anything
  and /dev/sdb1 does not exist any more

  ProblemType: Bug
  DistroRelease: Ubuntu 12.10
  Package: udisks 1.0.4-6
  ProcVersionSignature: Ubuntu 3.5.0-15.23-generic 3.5.4
  Uname: Linux 3.5.0-15-generic x86_64
  ApportVersion: 2.6.1-0ubuntu1
  Architecture: amd64
  CustomUdevRuleFiles: 51-android.rules 51-android.rules~
  Date: Mon Oct  1 15:07:46 2012
  InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Alpha amd64 (20120720.1)
  MachineType: FOXCONN NT-A2400NT-A3500
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.5.0-15-generic 
root=UUID=fcc445e4-9662-47cc-855d-ca17ad1c2a87 ro quiet splash vt.handoff=7
  SourcePackage: udisks
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 03/29/2011
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 4.6.4
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: NT-A2400NT-A3500
  dmi.board.vendor: FOXCONN
  dmi.board.version: FAB 1.0
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 4
  dmi.chassis.vendor: FOXCONN
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr4.6.4:bd03/29/2011:svnFOXCONN:pnNT-A2400NT-A3500:pvrFAB1.0:rvnFOXCONN:rnNT-A2400NT-A3500:rvrFAB1.0:cvnFOXCONN:ct4:cvrToBeFilledByO.E.M.:
  dmi.product.name: NT-A2400NT-A3500
  dmi.product.version: FAB 1.0
  dmi.sys.vendor: FOXCONN

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

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


[Desktop-packages] [Bug 1059872] Re: Error formatting disk using disk utility

2015-02-01 Thread Timo Jyrinki
To be noted that from my previous tests I managed to erase a USB stick
with any condition with the 0.2.56.3 (no partition table, partition
table but no partitions, with partitions) although with an occasional
need for retry.

It might be that a bug in 14.10 bug could be a different bug with
similar symptoms.

** Changed in: util-linux (Ubuntu Trusty)
   Status: Triaged = Won't Fix

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

Title:
  Error formatting disk using disk utility

Status in udisks2 package in Ubuntu:
  Invalid
Status in util-linux package in Ubuntu:
  Fix Released
Status in udisks2 source package in Trusty:
  Invalid
Status in util-linux source package in Trusty:
  Won't Fix
Status in util-linux package in Debian:
  Fix Released

Bug description:
  Formatting a SD card using the disk utility fails with an error
  message

  Error formatting disk - Error synchronizing after initial wipe: Timed
  out waiting for object (udisks-error-quark, 0)

  Steps to repro:
  Launch the disk utility
  Plug a SD card into the computer
  Select the SD card and click on the gears icon at the top right of the 
application
  From the drop down menu, select Format Disk
  maintain the default setting and select Format
  Acknowledge warnings
  After format process has been going for a while, the error message shown 
above pops up

  Workaround: 
  After selecting the SD card, instead of clicking the gear icon to format, 
click the partition in the Volumes section.
  Delete the partition (minus icon)
  Create a new partition

  -

  The underlying problem is that the wipefs tool from util-linux does
  not work any more.

  === TEST CASE ===
  $ sudo modprobe scsi_debug dev_size_mb=200
  # this creates a new /dev/sdX, usually /dev/sdb; check dmesg!

  # now create a partition table
  $ cat EOF | sudo sfdisk /dev/sdb
  # partition table of /dev/sdb
  unit: sectors

  /dev/sdb1 : start=   32, size=   409568, Id=83
  /dev/sdb2 : start=0, size=0, Id= 0
  /dev/sdb3 : start=0, size=0, Id= 0
  /dev/sdb4 : start=0, size=0, Id= 0
  EOF

  # now create an ext4 file system:
  $ sudo mkfs.ext4 /dev/sdb1

  # check contents:
  $ sudo blkid -p /dev/sdb /dev/sdb1
  /dev/sdb: PTTYPE=dos
  /dev/sdb1: UUID=4bd1c542-a61f-43c4-a7e5-cc50e66e6b5a VERSION=1.0 
TYPE=ext4 USAGE=filesystem PART_ENTRY_SCHEME=dos PART_ENTRY_TYPE=0x83 
PART_ENTRY_NUMBER=1 PART_ENTRY_OFFSET=32 PART_ENTRY_SIZE=409568 
PART_ENTRY_DISK=8:16

  # wipe:
  $ sudo wipefs -a /dev/sdb

  # now check contents again
  $ sudo blkid -p /dev/sdb /dev/sdb1

  # in the broken case, you will still see a dos partition table and
  the ext4 partition; in the working case, /dev/sdb won't show anything
  and /dev/sdb1 does not exist any more

  ProblemType: Bug
  DistroRelease: Ubuntu 12.10
  Package: udisks 1.0.4-6
  ProcVersionSignature: Ubuntu 3.5.0-15.23-generic 3.5.4
  Uname: Linux 3.5.0-15-generic x86_64
  ApportVersion: 2.6.1-0ubuntu1
  Architecture: amd64
  CustomUdevRuleFiles: 51-android.rules 51-android.rules~
  Date: Mon Oct  1 15:07:46 2012
  InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Alpha amd64 (20120720.1)
  MachineType: FOXCONN NT-A2400NT-A3500
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.5.0-15-generic 
root=UUID=fcc445e4-9662-47cc-855d-ca17ad1c2a87 ro quiet splash vt.handoff=7
  SourcePackage: udisks
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 03/29/2011
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 4.6.4
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: NT-A2400NT-A3500
  dmi.board.vendor: FOXCONN
  dmi.board.version: FAB 1.0
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 4
  dmi.chassis.vendor: FOXCONN
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr4.6.4:bd03/29/2011:svnFOXCONN:pnNT-A2400NT-A3500:pvrFAB1.0:rvnFOXCONN:rnNT-A2400NT-A3500:rvrFAB1.0:cvnFOXCONN:ct4:cvrToBeFilledByO.E.M.:
  dmi.product.name: NT-A2400NT-A3500
  dmi.product.version: FAB 1.0
  dmi.sys.vendor: FOXCONN

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

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


[Desktop-packages] [Bug 1059872] Re: Error formatting disk using disk utility

2015-02-01 Thread Amr Ibrahim
Does that mean that disk-utility will still not be able to erase disks
in Trusty?

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

Title:
  Error formatting disk using disk utility

Status in udisks2 package in Ubuntu:
  Invalid
Status in util-linux package in Ubuntu:
  Fix Released
Status in udisks2 source package in Trusty:
  Invalid
Status in util-linux source package in Trusty:
  Won't Fix
Status in util-linux package in Debian:
  Fix Released

Bug description:
  Formatting a SD card using the disk utility fails with an error
  message

  Error formatting disk - Error synchronizing after initial wipe: Timed
  out waiting for object (udisks-error-quark, 0)

  Steps to repro:
  Launch the disk utility
  Plug a SD card into the computer
  Select the SD card and click on the gears icon at the top right of the 
application
  From the drop down menu, select Format Disk
  maintain the default setting and select Format
  Acknowledge warnings
  After format process has been going for a while, the error message shown 
above pops up

  Workaround: 
  After selecting the SD card, instead of clicking the gear icon to format, 
click the partition in the Volumes section.
  Delete the partition (minus icon)
  Create a new partition

  -

  The underlying problem is that the wipefs tool from util-linux does
  not work any more.

  === TEST CASE ===
  $ sudo modprobe scsi_debug dev_size_mb=200
  # this creates a new /dev/sdX, usually /dev/sdb; check dmesg!

  # now create a partition table
  $ cat EOF | sudo sfdisk /dev/sdb
  # partition table of /dev/sdb
  unit: sectors

  /dev/sdb1 : start=   32, size=   409568, Id=83
  /dev/sdb2 : start=0, size=0, Id= 0
  /dev/sdb3 : start=0, size=0, Id= 0
  /dev/sdb4 : start=0, size=0, Id= 0
  EOF

  # now create an ext4 file system:
  $ sudo mkfs.ext4 /dev/sdb1

  # check contents:
  $ sudo blkid -p /dev/sdb /dev/sdb1
  /dev/sdb: PTTYPE=dos
  /dev/sdb1: UUID=4bd1c542-a61f-43c4-a7e5-cc50e66e6b5a VERSION=1.0 
TYPE=ext4 USAGE=filesystem PART_ENTRY_SCHEME=dos PART_ENTRY_TYPE=0x83 
PART_ENTRY_NUMBER=1 PART_ENTRY_OFFSET=32 PART_ENTRY_SIZE=409568 
PART_ENTRY_DISK=8:16

  # wipe:
  $ sudo wipefs -a /dev/sdb

  # now check contents again
  $ sudo blkid -p /dev/sdb /dev/sdb1

  # in the broken case, you will still see a dos partition table and
  the ext4 partition; in the working case, /dev/sdb won't show anything
  and /dev/sdb1 does not exist any more

  ProblemType: Bug
  DistroRelease: Ubuntu 12.10
  Package: udisks 1.0.4-6
  ProcVersionSignature: Ubuntu 3.5.0-15.23-generic 3.5.4
  Uname: Linux 3.5.0-15-generic x86_64
  ApportVersion: 2.6.1-0ubuntu1
  Architecture: amd64
  CustomUdevRuleFiles: 51-android.rules 51-android.rules~
  Date: Mon Oct  1 15:07:46 2012
  InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Alpha amd64 (20120720.1)
  MachineType: FOXCONN NT-A2400NT-A3500
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.5.0-15-generic 
root=UUID=fcc445e4-9662-47cc-855d-ca17ad1c2a87 ro quiet splash vt.handoff=7
  SourcePackage: udisks
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 03/29/2011
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 4.6.4
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: NT-A2400NT-A3500
  dmi.board.vendor: FOXCONN
  dmi.board.version: FAB 1.0
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 4
  dmi.chassis.vendor: FOXCONN
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr4.6.4:bd03/29/2011:svnFOXCONN:pnNT-A2400NT-A3500:pvrFAB1.0:rvnFOXCONN:rnNT-A2400NT-A3500:rvrFAB1.0:cvnFOXCONN:ct4:cvrToBeFilledByO.E.M.:
  dmi.product.name: NT-A2400NT-A3500
  dmi.product.version: FAB 1.0
  dmi.sys.vendor: FOXCONN

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

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


[Desktop-packages] [Bug 1414930] Re: Buttons of Synaptics trackpad doesn't work

2015-02-01 Thread Martin Pitt
systemd 219 is planned in about two weeks which will contain this.

** Changed in: systemd (Ubuntu)
   Importance: Undecided = Medium

** Changed in: systemd (Ubuntu)
   Status: New = Fix Committed

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

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xserver-xorg-input-synaptics in Ubuntu.
https://bugs.launchpad.net/bugs/1414930

Title:
  Buttons of Synaptics trackpad doesn't work

Status in HWE Next Project:
  Confirmed
Status in The Linux Kernel:
  In Progress
Status in libinput package in Ubuntu:
  New
Status in linux package in Ubuntu:
  Incomplete
Status in systemd package in Ubuntu:
  Fix Committed
Status in xserver-xorg-input-synaptics package in Ubuntu:
  New
Status in libinput source package in Trusty:
  New
Status in linux source package in Trusty:
  New
Status in systemd source package in Trusty:
  New
Status in xserver-xorg-input-synaptics source package in Trusty:
  New
Status in libinput source package in Utopic:
  New
Status in linux source package in Utopic:
  New
Status in systemd source package in Utopic:
  New
Status in xserver-xorg-input-synaptics source package in Utopic:
  New

Bug description:
  Lenovo X1 3rd Carbon (201411-16196)

  Steps to reproduce the bug:
  1, Log in to system
  2, Click left/right/middle buttons of the touchpad

  Actual result:
  No response after clicking the buttons

  Expected results:
  Buttons work as expected behavirour

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: linux-image-3.13.0-45-generic 3.13.0-45.74 [modified: 
boot/vmlinuz-3.13.0-45-generic]
  ProcVersionSignature: Ubuntu 3.13.0-45.74-generic 3.13.11-ckt13
  Uname: Linux 3.13.0-45-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.6
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  u  1598 F pulseaudio
   /dev/snd/controlC0:  u  1598 F pulseaudio
  CurrentDesktop: Unity
  Date: Tue Jan 27 02:48:23 2015
  HibernationDevice: RESUME=UUID=c553e9ba-b74b-43ad-8cf2-496531261e0f
  InstallationDate: Installed on 2015-01-27 (0 days ago)
  InstallationMedia: Ubuntu 14.04.1 LTS Trusty Tahr - Release amd64 (20150126)
  MachineType: LENOVO 20BTZ09ZUS
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-45-generic 
root=UUID=1d34e685-c98b-41f3-b649-87770517b194 ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-3.13.0-45-generic N/A
   linux-backports-modules-3.13.0-45-generic  N/A
   linux-firmware 1.127.11
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 10/27/2014
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N14ET24W (1.02 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20BTZ09ZUS
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0E50510 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.modalias: 
dmi:bvnLENOVO:bvrN14ET24W(1.02):bd10/27/2014:svnLENOVO:pn20BTZ09ZUS:pvrThinkPadX1Carbon3rd:rvnLENOVO:rn20BTZ09ZUS:rvrSDK0E50510WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.name: 20BTZ09ZUS
  dmi.product.version: ThinkPad X1 Carbon 3rd
  dmi.sys.vendor: LENOVO

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

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


[Desktop-packages] [Bug 1040873] Re: [N56VZ, Realtek ALC663, Black Headphone Out, Right] No sound at all: Subwoofer not working

2015-02-01 Thread Raymond
http://lists.freedesktop.org/archives/pulseaudio-
discuss/2015-January/023042.html

you need a low pass filter for the subwoofet

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

Title:
  [N56VZ, Realtek ALC663, Black Headphone Out, Right] No sound at all:
  Subwoofer not working

Status in alsa-driver package in Ubuntu:
  Triaged

Bug description:
  Hi,

  this bug is a fork of https://bugs.launchpad.net/ubuntu/+source/alsa-
  driver/+bug/871808 because #871808 stands for a different hardware
  with a different solution, so people may get confused.

  Here is a summary (see post #48 to #54 of #871808):
  The subwoofer of Asus N56VZ laptop doesn't work out of the box.

  #sudo hda-jack-sense-test -a :
  *** Without subwoofer:
  Pin 0x1e (Black SPDIF Out): present = No
  *** With subwoofer:
  Pin 0x1e (Black SPDIF Out): present = Yes

  http://www.alsa-
  project.org/db/?f=2778e7f430aa95ae219d0b2bc3cb5e46abd0a33a

  -- There are two ways of making it work:

  #1
  a. Add to rc.local :
  echo 0x1e 0x99130112  /sys/class/sound/hwC0D0/user_pin_configs
  echo 1  /sys/class/sound/hwC0D0/reconfig
  b. Add options snd-hda-intel model=asus-mode4 in 
/etc/modprobe.d/alsa-base.conf
  c. Reboot
  d. Set the mode to Analog Stereo Output and then to Analog Surround 5.1 
output in the sound settings panel. You have to do this each time you reboot!!!

  #2
  a. Add to rc.local :
  echo 0x16 0x99130111  /sys/class/sound/hwC0D0/user_pin_configs
  echo 0x1e 0x99130112  /sys/class/sound/hwC0D0/user_pin_configs
  echo 1  /sys/class/sound/hwC0D0/reconfig
  b. Reboot
  c. Set the mode to Analog Stereo Output and then to Analog Surround 5.1 
output in the sound settings panel. You have to do this each time you reboot!!!

  Both give the same results and fix the bug.

  -- Can you make it work out of the box?

  There is still two other bugs on this laptop :
  - crackling audio when playing with sound volume: see 
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1040867
  - When I put the omputer in sleep mode, there is no way to get sound working 
on resume: should I open a new bug to investigate this?

  Regards
  Sam

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: alsa-base 1.0.25+dfsg-0ubuntu1
  ProcVersionSignature: Ubuntu 3.2.0-29.46-generic 3.2.24
  Uname: Linux 3.2.0-29-generic x86_64
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
  AplayDevices:
    List of PLAYBACK Hardware Devices 
   card 0: PCH [HDA Intel PCH], device 0: ALC663 Analog [ALC663 Analog]
     Subdevices: 1/1
     Subdevice #0: subdevice #0
  ApportVersion: 2.0.1-0ubuntu12
  Architecture: amd64
  ArecordDevices:
    List of CAPTURE Hardware Devices 
   card 0: PCH [HDA Intel PCH], device 0: ALC663 Analog [ALC663 Analog]
     Subdevices: 1/1
     Subdevice #0: subdevice #0
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  sam1898 F pulseaudio
  Card0.Amixer.info:
   Card hw:0 'PCH'/'HDA Intel PCH at 0xf7a1 irq 47'
     Mixer name : 'Realtek ALC663'
     Components : 'HDA:10ec0663,10431477,0012'
     Controls  : 23
     Simple ctrls  : 13
  CheckboxSubmission: 54021779511d0213081a2b1707bf951c
  CheckboxSystem: 4c773cd91921f9618cc2f1893bc1a87a
  Date: Thu Aug 23 22:38:00 2012
  InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: alsa-driver
  Symptom: audio
  Symptom_AlsaPlaybackTest: ALSA playback test through plughw:PCH failed
  Symptom_Card: Built-in Audio - HDA Intel PCH
  Symptom_DevicesInUse:
   1898  sam   F pulseaudio
   PID ACCESS COMMAND
  Symptom_Jack: Black Headphone Out, Right
  Symptom_Type: No sound at all
  Title: [N56VZ, Realtek ALC663, Black Headphone Out, Right] No sound at all
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 05/11/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N56VZ.204
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N56VZ
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN56VZ.204:bd05/11/2012:svnASUSTeKCOMPUTERINC.:pnN56VZ:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN56VZ:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: N56VZ
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.
  modified.conffile..etc.modprobe.d.alsa.base.conf: [modified]
  mtime.conffile..etc.modprobe.d.alsa.base.conf: 2012-08-23T22:27:03.314416

To manage notifications about this bug go to:

[Desktop-packages] [Bug 1403149] Re: Unable to mount OSX Yosemite causing excessive (~25%) CPU usage and moderate desktop sluggishness

2015-02-01 Thread Ross Lagerwall
Oh, btw it's an afp not smb share you're using.

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

Title:
  Unable to mount OSX Yosemite causing excessive (~25%) CPU usage and
  moderate desktop sluggishness

Status in gvfs package in Ubuntu:
  New

Bug description:
  1) lsb_release -rd
  Description:  Ubuntu 14.04.1 LTS
  Release:  14.04

  2) apt-cache policy gvfs
  gvfs:
Installed: 1.20.1-1ubuntu1
Candidate: 1.20.1-1ubuntu1
Version table:
   *** 1.20.1-1ubuntu1 0
  500 http://us.archive.ubuntu.com/ubuntu/ trusty/main amd64 Packages
  100 /var/lib/dpkg/status

  3) What is expected to happen is when one mounts a samba shared folder
  from OSX Yosemite, the connection is unmountable, and doesn't cause
  excessive (~25%) CPU usage.

  4) What happens instead is the mount is unmountable, and is consuming
  (~25%) CPU as per the attached screenshot. This causes moderate
  desktop sluggishness. Tried restarting OSX, no change.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: gvfs 1.20.1-1ubuntu1
  ProcVersionSignature: Ubuntu 3.16.0-28.37~14.04.1-generic 3.16.7-ckt1
  Uname: Linux 3.16.0-28-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.6
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Tue Dec 16 11:28:39 2014
  InstallationDate: Installed on 2014-06-21 (177 days ago)
  InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Release amd64 (20140417)
  SourcePackage: gvfs
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Desktop-packages] [Bug 1403149] Re: Unable to mount OSX Yosemite causing excessive (~25%) CPU usage and moderate desktop sluggishness

2015-02-01 Thread Ross Lagerwall
The Ubuntu gvfs maintainers should cherry-pick
e9c320e49cace543450b961af32ea7ffeb8d512f and
2e3eee275a97abf4d6055c06683f04c7d8f3f7ca from upstream.

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

Title:
  Unable to mount OSX Yosemite causing excessive (~25%) CPU usage and
  moderate desktop sluggishness

Status in gvfs package in Ubuntu:
  New

Bug description:
  1) lsb_release -rd
  Description:  Ubuntu 14.04.1 LTS
  Release:  14.04

  2) apt-cache policy gvfs
  gvfs:
Installed: 1.20.1-1ubuntu1
Candidate: 1.20.1-1ubuntu1
Version table:
   *** 1.20.1-1ubuntu1 0
  500 http://us.archive.ubuntu.com/ubuntu/ trusty/main amd64 Packages
  100 /var/lib/dpkg/status

  3) What is expected to happen is when one mounts a samba shared folder
  from OSX Yosemite, the connection is unmountable, and doesn't cause
  excessive (~25%) CPU usage.

  4) What happens instead is the mount is unmountable, and is consuming
  (~25%) CPU as per the attached screenshot. This causes moderate
  desktop sluggishness. Tried restarting OSX, no change.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: gvfs 1.20.1-1ubuntu1
  ProcVersionSignature: Ubuntu 3.16.0-28.37~14.04.1-generic 3.16.7-ckt1
  Uname: Linux 3.16.0-28-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.6
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Tue Dec 16 11:28:39 2014
  InstallationDate: Installed on 2014-06-21 (177 days ago)
  InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Release amd64 (20140417)
  SourcePackage: gvfs
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Desktop-packages] [Bug 1408107] Re: Can't remove huge files from samba share on first attempt - Input/output error

2015-02-01 Thread Ross Lagerwall
Please run the following in a terminal:
pkill gvfs; GVFS_DEBUG=all GVFS_SMB_DEBUG=10 `find /usr/lib* -name 'gvfsd'`  
~/log.txt

Then mount the smb share, reproduce the problem, and then upload log.txt
in your home directory so we can see a log of what is happening.

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

Title:
  Can't remove huge files from samba share on first attempt -
  Input/output error

Status in gvfs package in Ubuntu:
  New

Bug description:
  I'm using Ubuntu 14.04. I'm trying to delete huge (10-20 gigs) files
  from a samba share but it always fails for the first try:

  
username@hostname:/run/user/1000/gvfs/smb-share:server=192.168.1.1,share=download$
 rm -r Testdir/
  rm: cannot remove ‘Testdir/13gigs-Testfile.mkv’: Input/output error
  
username@hostname:/run/user/1000/gvfs/smb-share:server=192.168.1.1,share=download$
 rm -r Testdir/
  
username@hostname:/run/user/1000/gvfs/smb-share:server=192.168.1.1,share=download$
 rm -r Testdir/
  rm: cannot remove ‘Testdir/’: No such file or directory
  
username@hostname:/run/user/1000/gvfs/smb-share:server=192.168.1.1,share=download$
 

  The same thing is happening if I use Nautilus. This is bugging me a lot 
because I'm always having a hard time deleting stuff.
  My quess is that the deletion process times out too early so it doesn't have 
enough time to delete such big files.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: gvfs 1.20.1-1ubuntu1
  ProcVersionSignature: Ubuntu 3.13.0-43.72-generic 3.13.11.11
  Uname: Linux 3.13.0-43-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.14.1-0ubuntu3.6
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Tue Jan  6 22:22:30 2015
  InstallationDate: Installed on 2013-10-30 (433 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release amd64 
(20131016.1)
  SourcePackage: gvfs
  UpgradeStatus: Upgraded to trusty on 2014-05-04 (247 days ago)

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

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


[Desktop-packages] [Bug 1416876] [NEW] nvidia-331-updates-uvm 331.113-0ubuntu0.0.4: nvidia-331-updates-uvm kernel module failed to build

2015-02-01 Thread reykev
Public bug reported:

I was just updating as usual:   


[sudo] password for kevin: 
Reading package lists... Done
Building dependency tree   
Reading state information... Done
Calculating upgrade... Done
The following NEW packages will be installed:
  linux-headers-3.13.0-45 linux-headers-3.13.0-45-generic
  linux-image-3.13.0-45-generic linux-image-extra-3.13.0-45-generic
The following packages will be upgraded:
  linux-generic linux-headers-generic linux-image-generic linux-libc-dev
4 upgraded, 4 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B/62.3 MB of archives.
After this operation, 271 MB of additional disk space will be used.
Do you want to continue? [Y/n] y
Selecting previously unselected package linux-image-3.13.0-45-generic.
(Reading database ... 296282 files and directories currently installed.)
Preparing to unpack .../linux-image-3.13.0-45-generic_3.13.0-45.74_amd64.deb ...
Done.
Unpacking linux-image-3.13.0-45-generic (3.13.0-45.74) ...
Selecting previously unselected package linux-image-extra-3.13.0-45-generic.
Preparing to unpack 
.../linux-image-extra-3.13.0-45-generic_3.13.0-45.74_amd64.deb ...
Unpacking linux-image-extra-3.13.0-45-generic (3.13.0-45.74) ...
Preparing to unpack .../linux-generic_3.13.0.45.52_amd64.deb ...
Unpacking linux-generic (3.13.0.45.52) over (3.13.0.44.51) ...
Preparing to unpack .../linux-image-generic_3.13.0.45.52_amd64.deb ...
Unpacking linux-image-generic (3.13.0.45.52) over (3.13.0.44.51) ...
Selecting previously unselected package linux-headers-3.13.0-45.
Preparing to unpack .../linux-headers-3.13.0-45_3.13.0-45.74_all.deb ...
Unpacking linux-headers-3.13.0-45 (3.13.0-45.74) ...
Selecting previously unselected package linux-headers-3.13.0-45-generic.
Preparing to unpack .../linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb 
...
Unpacking linux-headers-3.13.0-45-generic (3.13.0-45.74) ...
Preparing to unpack .../linux-headers-generic_3.13.0.45.52_amd64.deb ...
Unpacking linux-headers-generic (3.13.0.45.52) over (3.13.0.44.51) ...
Preparing to unpack .../linux-libc-dev_3.13.0-45.74_amd64.deb ...
Unpacking linux-libc-dev:amd64 (3.13.0-45.74) over (3.13.0-44.73) ...
Setting up linux-image-3.13.0-45-generic (3.13.0-45.74) ...
Running depmod.
update-initramfs: deferring update (hook will be called later)
Examining /etc/kernel/postinst.d.
run-parts: executing /etc/kernel/postinst.d/apt-auto-removal 3.13.0-45-generic 
/boot/vmlinuz-3.13.0-45-generic
run-parts: executing /etc/kernel/postinst.d/dkms 3.13.0-45-generic 
/boot/vmlinuz-3.13.0-45-generic
Error! Bad return status for module build on kernel: 3.13.0-45-generic (x86_64)
Consult /var/lib/dkms/nvidia-331-updates-uvm/331.113/build/make.log for more 
information.
Error! Bad return status for module build on kernel: 3.13.0-45-generic (x86_64)
Consult /var/lib/dkms/nvidia-331-updates/331.113/build/make.log for more 
information.
run-parts: executing /etc/kernel/postinst.d/initramfs-tools 3.13.0-45-generic 
/boot/vmlinuz-3.13.0-45-generic
update-initramfs: Generating /boot/initrd.img-3.13.0-45-generic
run-parts: executing /etc/kernel/postinst.d/pm-utils 3.13.0-45-generic 
/boot/vmlinuz-3.13.0-45-generic
run-parts: executing /etc/kernel/postinst.d/update-notifier 3.13.0-45-generic 
/boot/vmlinuz-3.13.0-45-generic
run-parts: executing /etc/kernel/postinst.d/zz-update-grub 3.13.0-45-generic 
/boot/vmlinuz-3.13.0-45-generic
Generating grub configuration file ...
Warning: Setting GRUB_TIMEOUT to a non-zero value when GRUB_HIDDEN_TIMEOUT is 
set is no longer supported.
Found linux image: /boot/vmlinuz-3.13.0-45-generic
Found initrd image: /boot/initrd.img-3.13.0-45-generic
Found linux image: /boot/vmlinuz-3.13.0-44-generic
Found initrd image: /boot/initrd.img-3.13.0-44-generic
Found memtest86+ image: /boot/memtest86+.elf
Found memtest86+ image: /boot/memtest86+.bin
  No volume groups found
done
Setting up linux-image-extra-3.13.0-45-generic (3.13.0-45.74) ...
run-parts: executing /etc/kernel/postinst.d/apt-auto-removal 3.13.0-45-generic 
/boot/vmlinuz-3.13.0-45-generic
run-parts: executing /etc/kernel/postinst.d/dkms 3.13.0-45-generic 
/boot/vmlinuz-3.13.0-45-generic
Error! Bad return status for module build on kernel: 3.13.0-45-generic (x86_64)
Consult /var/lib/dkms/nvidia-331-updates/331.113/build/make.log for more 
information.
run-parts: executing /etc/kernel/postinst.d/initramfs-tools 3.13.0-45-generic 
/boot/vmlinuz-3.13.0-45-generic
update-initramfs: Generating /boot/initrd.img-3.13.0-45-generic
run-parts: executing /etc/kernel/postinst.d/pm-utils 3.13.0-45-generic 
/boot/vmlinuz-3.13.0-45-generic
run-parts: executing /etc/kernel/postinst.d/update-notifier 3.13.0-45-generic 
/boot/vmlinuz-3.13.0-45-generic
run-parts: executing /etc/kernel/postinst.d/zz-update-grub 3.13.0-45-generic 

[Desktop-packages] [Bug 1403149] Re: Unable to mount OSX Yosemite causing excessive (~25%) CPU usage and moderate desktop sluggishness

2015-02-01 Thread Sebastien Bacher
Thanks Ross, the corresponding commit are on
https://git.gnome.org/browse/gvfs/commit/?id=e9c320e49cace543450b961af32ea7ffeb8d512f

https://git.gnome.org/browse/gvfs/commit/?id=2e3eee275a97abf4d6055c06683f04c7d8f3f7ca
(or rather 
https://git.gnome.org/browse/gvfs/commit/?id=a4016460538ea8be22aa0d8289922b389a93ef78
 it looks like?)


** Changed in: gvfs (Ubuntu)
   Status: New = Fix Committed

** Bug watch added: GNOME Bug Tracker #734194
   https://bugzilla.gnome.org/show_bug.cgi?id=734194

** Also affects: gvfs via
   https://bugzilla.gnome.org/show_bug.cgi?id=734194
   Importance: Unknown
   Status: Unknown

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

Title:
  Unable to mount OSX Yosemite causing excessive (~25%) CPU usage and
  moderate desktop sluggishness

Status in GVFS:
  Unknown
Status in gvfs package in Ubuntu:
  Fix Committed

Bug description:
  1) lsb_release -rd
  Description:  Ubuntu 14.04.1 LTS
  Release:  14.04

  2) apt-cache policy gvfs
  gvfs:
Installed: 1.20.1-1ubuntu1
Candidate: 1.20.1-1ubuntu1
Version table:
   *** 1.20.1-1ubuntu1 0
  500 http://us.archive.ubuntu.com/ubuntu/ trusty/main amd64 Packages
  100 /var/lib/dpkg/status

  3) What is expected to happen is when one mounts a samba shared folder
  from OSX Yosemite, the connection is unmountable, and doesn't cause
  excessive (~25%) CPU usage.

  4) What happens instead is the mount is unmountable, and is consuming
  (~25%) CPU as per the attached screenshot. This causes moderate
  desktop sluggishness. Tried restarting OSX, no change.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: gvfs 1.20.1-1ubuntu1
  ProcVersionSignature: Ubuntu 3.16.0-28.37~14.04.1-generic 3.16.7-ckt1
  Uname: Linux 3.16.0-28-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.6
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Tue Dec 16 11:28:39 2014
  InstallationDate: Installed on 2014-06-21 (177 days ago)
  InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Release amd64 (20140417)
  SourcePackage: gvfs
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Desktop-packages] [Bug 1405607] Re: emacs freezes after Auto-saving done on large text file

2015-02-01 Thread themusicgod1
I'm not 100% sure but after looking at the stack trace I figured I'd try
to disable cursor blink mode (which had been on).  I haven't had this
crash since.  Could be a coincidence ...but generally happened about
once an hour and it hasn't happened in awhile.

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

Title:
  emacs freezes after Auto-saving done on large text file

Status in emacs24 package in Ubuntu:
  Confirmed

Bug description:
  Seems like if I'm editing a particularly large text file (130Mb) and
  I'm typing while it auto-saves, emacs enters a non-responsive state
  (the zenity emacs is not responding - you may choose to wait a
  short while for it to continue or force the application to quit
  entirely window. comes up).  Not 100% consistently, but pretty
  consistently.

  emacs24:
Installed: 24.4+1-4ubuntu1
Candidate: 24.4+1-4ubuntu1
Version table:
   *** 24.4+1-4ubuntu1 0
  500 http://ca.archive.ubuntu.com/ubuntu/ vivid/main amd64 Packages
  100 /var/lib/dpkg/status
  libx11-6:
Installed: 2:1.6.2-2ubuntu2
Candidate: 2:1.6.2-2ubuntu2
Version table:
   *** 2:1.6.2-2ubuntu2 0
  500 http://ca.archive.ubuntu.com/ubuntu/ vivid/main amd64 Packages
  100 /var/lib/dpkg/status
  libglib2.0-0:
Installed: 2.43.2-1ubuntu1
Candidate: 2.43.2-1ubuntu1
Version table:
   *** 2.43.2-1ubuntu1 0
  500 http://ca.archive.ubuntu.com/ubuntu/ vivid/main amd64 Packages
  100 /var/lib/dpkg/status
  libglib2.0-0-dbg:
Installed: 2.43.2-1ubuntu1
Candidate: 2.43.2-1ubuntu1
Version table:
   *** 2.43.2-1ubuntu1 0
  500 http://ca.archive.ubuntu.com/ubuntu/ vivid/main amd64 Packages
  100 /var/lib/dpkg/status
  libc6:
Installed: 2.19-13ubuntu3
Candidate: 2.19-13ubuntu3
Version table:
   *** 2.19-13ubuntu3 0
  500 http://ca.archive.ubuntu.com/ubuntu/ vivid/main amd64 Packages
  100 /var/lib/dpkg/status

  Ubuntu: 15.04

  Linux Hedy 3.16.0-28-generic #38-Ubuntu SMP Fri Dec 12 17:37:40 UTC
  2014 x86_64 x86_64 x86_64 GNU/Linux

  [Switching to thread 1 (Thread 0x7f41a5fffa80 (LWP 3119))]
  #0  0x7f419f3d045d in poll () at ../sysdeps/unix/syscall-template.S:81
  81in ../sysdeps/unix/syscall-template.S
  (gdb) bt
  #0  0x7f419f3d045d in poll () at ../sysdeps/unix/syscall-template.S:81
  #1  0x7f419be5bb72 in ?? () from /usr/lib/x86_64-linux-gnu/libxcb.so.1
  #2  0x7f419be5d64f in xcb_wait_for_event ()
 from /usr/lib/x86_64-linux-gnu/libxcb.so.1
  #3  0x7f41a2b0f3a8 in _XReadEvents ()
 from /usr/lib/x86_64-linux-gnu/libX11.so.6
  #4  0x7f41a2af7889 in XIfEvent ()
 from /usr/lib/x86_64-linux-gnu/libX11.so.6
  #5  0x7f41a2b3e6e7 in ?? () from /usr/lib/x86_64-linux-gnu/libX11.so.6
  #6  0x7f41a2b3f317 in ?? () from /usr/lib/x86_64-linux-gnu/libX11.so.6
  #7  0x7f41a2b3f5f1 in _XimRead ()
 from /usr/lib/x86_64-linux-gnu/libX11.so.6
  #8  0x7f41a2b2e1a6 in ?? () from /usr/lib/x86_64-linux-gnu/libX11.so.6
  #9  0x7f41a2b1c0ad in XSetICValues ()
 from /usr/lib/x86_64-linux-gnu/libX11.so.6
  #10 0x004cf585 in ?? ()
  #11 0x004be352 in ?? ()
  #12 0x00459c22 in ?? ()
  #13 0x004bccdc in ?? ()
  #14 0x0041de46 in ?? ()
  #15 0x0041f11b in ?? ()
  #16 0x0042147d in ?? ()
  ---Type return to continue, or q return to quit---
  #17 0x0045296c in ?? ()
  #18 0x004f5243 in ?? ()
  #19 0x004f615f in ?? ()
  #20 0x004f7ed0 in ?? ()
  #21 0x0055aaa7 in ?? ()
  #22 0x004ea3ee in ?? ()
  #23 0x0055a98b in ?? ()
  #24 0x004ee9f7 in ?? ()
  #25 0x004eed10 in ?? ()
  #26 0x00418509 in ?? ()
  #27 0x7f419f301ec5 in __libc_start_main (main=0x417ab0, argc=1, 
  argv=0x793b7878, init=optimized out, fini=optimized out, 
  rtld_fini=optimized out, stack_end=0x793b7868) at libc-start.c:287
  #28 0x00418fbe in ?? ()
  (gdb) thread 2
  [Switching to thread 2 (Thread 0x7f418f9bd700 (LWP 3175))]
  #0  0x7f419f3d045d in poll () at ../sysdeps/unix/syscall-template.S:81
  81in ../sysdeps/unix/syscall-template.S
  (gdb) bt
  #0  0x7f419f3d045d in poll () at ../sysdeps/unix/syscall-template.S:81
  #1  0x7f41a327814c in g_main_context_poll (priority=2147483647, n_fds=1, 
  fds=0x7f41840010c0, timeout=-1, context=0x21da5d0)
  at /build/buildd/glib2.0-2.43.2/./glib/gmain.c:4103
  #2  g_main_context_iterate (context=context@entry=0x21da5d0, 
  block=block@entry=1, dispatch=dispatch@entry=1, self=optimized out)
  at /build/buildd/glib2.0-2.43.2/./glib/gmain.c:3803
  #3  0x7f41a327825c in g_main_context_iteration (context=0x21da5d0, 
  may_block=1) at /build/buildd/glib2.0-2.43.2/./glib/gmain.c:3869
  #4  0x7f418f9c527d in ?? ()
 from 

[Desktop-packages] [Bug 1403149] Re: Unable to mount OSX Yosemite causing excessive (~25%) CPU usage and moderate desktop sluggishness

2015-02-01 Thread Christopher M. Penalver
** Description changed:

  1) lsb_release -rd
  Description:  Ubuntu 14.04.1 LTS
  Release:  14.04
  
  2) apt-cache policy gvfs
  gvfs:
-   Installed: 1.20.1-1ubuntu1
-   Candidate: 1.20.1-1ubuntu1
-   Version table:
-  *** 1.20.1-1ubuntu1 0
- 500 http://us.archive.ubuntu.com/ubuntu/ trusty/main amd64 Packages
- 100 /var/lib/dpkg/status
+   Installed: 1.20.1-1ubuntu1
+   Candidate: 1.20.1-1ubuntu1
+   Version table:
+  *** 1.20.1-1ubuntu1 0
+ 500 http://us.archive.ubuntu.com/ubuntu/ trusty/main amd64 Packages
+ 100 /var/lib/dpkg/status
  
- 3) What is expected to happen is when one mounts a samba shared folder
- from OSX Yosemite, the connection is unmountable, and doesn't cause
- excessive (~25%) CPU usage.
+ 3) What is expected to happen is when one mounts a shared folder from
+ OSX Yosemite, the connection is unmountable, and doesn't cause excessive
+ (~25%) CPU usage.
  
  4) What happens instead is the mount is unmountable, and is consuming
  (~25%) CPU as per the attached screenshot. This causes moderate desktop
  sluggishness. Tried restarting OSX, no change.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: gvfs 1.20.1-1ubuntu1
  ProcVersionSignature: Ubuntu 3.16.0-28.37~14.04.1-generic 3.16.7-ckt1
  Uname: Linux 3.16.0-28-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.6
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Tue Dec 16 11:28:39 2014
  InstallationDate: Installed on 2014-06-21 (177 days ago)
  InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Release amd64 (20140417)
  SourcePackage: gvfs
  UpgradeStatus: No upgrade log present (probably fresh install)

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

Title:
  Unable to mount OSX Yosemite causing excessive (~25%) CPU usage and
  moderate desktop sluggishness

Status in GVFS:
  Unknown
Status in gvfs package in Ubuntu:
  Fix Committed

Bug description:
  1) lsb_release -rd
  Description:  Ubuntu 14.04.1 LTS
  Release:  14.04

  2) apt-cache policy gvfs
  gvfs:
    Installed: 1.20.1-1ubuntu1
    Candidate: 1.20.1-1ubuntu1
    Version table:
   *** 1.20.1-1ubuntu1 0
  500 http://us.archive.ubuntu.com/ubuntu/ trusty/main amd64 Packages
  100 /var/lib/dpkg/status

  3) What is expected to happen is when one mounts a shared folder from
  OSX Yosemite, the connection is unmountable, and doesn't cause
  excessive (~25%) CPU usage.

  4) What happens instead is the mount is unmountable, and is consuming
  (~25%) CPU as per the attached screenshot. This causes moderate
  desktop sluggishness. Tried restarting OSX, no change.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: gvfs 1.20.1-1ubuntu1
  ProcVersionSignature: Ubuntu 3.16.0-28.37~14.04.1-generic 3.16.7-ckt1
  Uname: Linux 3.16.0-28-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.6
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Tue Dec 16 11:28:39 2014
  InstallationDate: Installed on 2014-06-21 (177 days ago)
  InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Release amd64 (20140417)
  SourcePackage: gvfs
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Desktop-packages] [Bug 1395547] Re: xfsettingsd and xfce4-volumed using a lot of CPU after screen lock / unlock

2015-02-01 Thread Thaddaeus Tintenfisch
** Also affects: xserver-xorg-video-ati (Ubuntu)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xserver-xorg-video-ati in Ubuntu.
https://bugs.launchpad.net/bugs/1395547

Title:
  xfsettingsd and xfce4-volumed using a lot of CPU after screen lock /
  unlock

Status in xfce4-settings package in Ubuntu:
  Confirmed
Status in xfce4-volumed package in Ubuntu:
  Confirmed
Status in xserver-xorg-video-ati package in Ubuntu:
  New

Bug description:
  Just upgraded to Xubuntu 14.10, had issues with fglrx (see
  http://askubuntu.com/questions/552795/xubuntu-14-10-upgrade-issues-
  with-fglrx), went back to radeon drivers. Now it looks to be OK,
  however after locking the screen using xflock4 and unlocking, I get
  these three processes using a lot of CPU (this is on 4-core Phenom II
  X4 N950):

PID USER  PR  NIVIRTRESSHR S  %CPU %MEM TIME+ COMMAND   

 
   1572 root  20   0  262892  56672  26480 R  89.7  1.4   6:48.70 Xorg  

 
   5025 usr   20   0  312116  11336   4632 R  36.9  0.3   0:17.42 
xfce4-volumed   
   
   5036 usr   20   0  327328  10556   5760 S  31.5  0.3   0:13.38 
xfsettingsd  

  Additional information:

  - Killing and restarting xfsettingsd and xfce4-volumed resolves the issue 
until next sleep cycle
  - When running only xfce4-volumed, but not xfsettingsd, the issue does not 
appear
  - This can be reproduced always. ATI Radeon Mobility HD 5650 video card
  - The CPU usage does not seem to go down after a while
  - If I got it correctly, it looks like some other processes are also going to 
high CPU usage after killing xfce4-volumed. I think I saw xfce4-xkb-plugin 
going to 95% CPU usage
  - The issue happens before unlock, i.e. locking then pressing a key to get a 
login dialog, then switching to vty1 and doing a top yields the above

  Not sure what else I should check / post that can be useful for
  troubleshooting, let me know.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.10
  Package: xfce4-settings 4.11.3-0ubuntu2
  ProcVersionSignature: Ubuntu 3.13.0-24.47-generic 3.13.9
  Uname: Linux 3.13.0-24-generic x86_64
  ApportVersion: 2.14.7-0ubuntu8
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Sun Nov 23 18:34:02 2014
  InstallationDate: Installed on 2014-04-24 (213 days ago)
  InstallationMedia: Xubuntu 14.04 LTS Trusty Tahr - Release amd64 
(20140416.2)
  SourcePackage: xfce4-settings
  UpgradeStatus: Upgraded to utopic on 2014-11-22 (0 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xfce4-settings/+bug/1395547/+subscriptions

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


[Desktop-packages] [Bug 133133]

2015-02-01 Thread Rulatir
New discovery: uninstalling nautilus solves the problem.

Here's my prophecy: the patch that will finally fix this bug will
consist of deletions only.

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

Title:
  Open containing folder is only working if nautilus is present

Status in The Mozilla Firefox Browser:
  Confirmed
Status in firefox package in Ubuntu:
  Triaged

Bug description:
  Binary package hint: firefox

  Tools-Downloads- (Right click)-Open containing folder

  Result: Nothing happens (not even an error).
  Expected: An error, a dialog asking to choose a file manager or just 
konqueror showing the folder.

  Fix: add the following line to prefs.js
  user_pref(network.protocol-handler.app.file, konqueror);

  ProblemType: Bug
  Architecture: i386
  Date: Fri Aug 17 12:54:22 2007
  DistroRelease: Ubuntu 7.04
  Package: firefox 2.0.0.5+1-0ubuntu1
  PackageArchitecture: i386
  SourcePackage: firefox
  Uname: Linux localhost 2.6.20-12-generic #2 SMP Wed Mar 21 20:55:46 UTC 2007 
i686 GNU/Linux

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

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


[Desktop-packages] [Bug 1207812] Re: [FFe] Update libimobiledevice to support iOS 7, fix Trust Prompt Looping

2015-02-01 Thread cement_head
Using 12.04.4 LTS AMD64, iOS 7 on iPhone 4S.  Of course, I have the
Trust/Don't Trust issue.

Have libimobile 1.1.4 installed - need some help explaining how to
install libimobile 1.1.6 and all of it's dependecies.

Thanks

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

Title:
  [FFe] Update libimobiledevice to support iOS 7, fix Trust Prompt
  Looping

Status in The Linux Mint Distribution:
  Fix Committed
Status in libimobiledevice package in Ubuntu:
  Fix Released
Status in libimobiledevice package in Debian:
  Fix Released

Bug description:
  The latest libimobiledevice release 1.1.5 is a year old and does not
  support iOS7 devices. Most iOS devices have been updated to iOS7 by
  now, so currently the library is broken in functionality for most
  users. The git snapshot has been tested to work, but there seems to be
  no new upstream release being prepared for the time being.

  The new git snapshot includes several fixes, including the security
  fix that was previously patched on top of 1.1.5 in Ubuntu.

  Packaging branch merge request attached to this bug report.

  --- Original report ---

  The iPhone reporting Trust the currently connected computer? Trust/Don't 
Trust.
  This then happens in a continous loop when clicking Trust.

  ---
  ApportVersion: 2.9.2-0ubuntu8.3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  nrawlins   2068 F pulseaudio
  DistroRelease: Ubuntu 13.04
  HibernationDevice: RESUME=UUID=f089ceb3-a892-4f99-92d3-a61c99bb2feb
  InstallationDate: Installed on 2013-08-15 (3 days ago)
  InstallationMedia: Ubuntu 13.04 Raring Ringtail - Release amd64 (20130424)
  MachineType: Sony Corporation VGN-SR29XN_S
  MarkForUpload: True
  Package: linux 3.8.0.27.45
  PackageArchitecture: amd64
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.8.0-27-generic 
root=UUID=7656e9f3-5437-4e10-a467-62d52144f471 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.8.0-27.40-generic 3.8.13.4
  RelatedPackageVersions:
   linux-restricted-modules-3.8.0-27-generic N/A
   linux-backports-modules-3.8.0-27-generic  N/A
   linux-firmware1.106
  Tags:  raring
  Uname: Linux 3.8.0-27-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 08/28/2009
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: R1130Y1
  dmi.board.asset.tag: N/A
  dmi.board.name: VAIO
  dmi.board.vendor: Sony Corporation
  dmi.board.version: N/A
  dmi.chassis.asset.tag: N/A
  dmi.chassis.type: 10
  dmi.chassis.vendor: Sony Corporation
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrR1130Y1:bd08/28/2009:svnSonyCorporation:pnVGN-SR29XN_S:pvrC6017UKK:rvnSonyCorporation:rnVAIO:rvrN/A:cvnSonyCorporation:ct10:cvrN/A:
  dmi.product.name: VGN-SR29XN_S
  dmi.product.version: C6017UKK
  dmi.sys.vendor: Sony Corporation

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

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


[Desktop-packages] [Bug 397574]

2015-02-01 Thread Mkmelin+mozilla
*** Bug 1128148 has been marked as a duplicate of this bug. ***

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

Title:
  Encoding problems after switching the layout

Status in Mozilla Thunderbird Mail and News:
  Confirmed
Status in thunderbird package in Ubuntu:
  Confirmed

Bug description:
  Binary package hint: thunderbird

  steps to reproduce:
  - View - Layout - Classic View
  - View - Layout - enable Message Pane
  - select a message in which you can see special characters (e.g. ö,ä,ü...)
  - switch the layout, e.g. View - Layout - Wide View

  now you can see, that the special characters are displayed wrong (e.g.
  ö instead of ö)

  If you select another mail and select this mail again, the characters
  are displayed without problems!

  I think there is a problem with the encoding after switching the
  layout

  Regards
  scamp

  ProblemType: Bug
  Architecture: amd64
  DistroRelease: Ubuntu 9.04
  Package: mozilla-thunderbird 2.0.0.21+nobinonly-0ubuntu1.9.04.1
  PackageArchitecture: all
  ProcEnviron:
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: thunderbird
  Uname: Linux 2.6.28-11-generic x86_64

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

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


[Desktop-packages] [Bug 1416693] Re: evince should depend on adwaita-icon-theme-full or gnome-icon-theme-symbolic

2015-02-01 Thread Sebastien Bacher
** Changed in: evince (Ubuntu)
 Assignee: (unassigned) = Iain Lane (laney)

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

Title:
  evince should depend on adwaita-icon-theme-full or gnome-icon-theme-
  symbolic

Status in evince package in Ubuntu:
  New

Bug description:
  I'm using evince 3.14.1-0ubuntu2 and this report is a regression of
  https://bugs.launchpad.net/ubuntu/+source/lxde-icon-theme/+bug/1246448
  . evince is again missing some icons and showing a red x as
  placeholder for them. On my tests the only difference seems to be now
  that the needed icons are not only in gnome-icon-theme-symbolic but
  also in adwaita-icon-theme-full.

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

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


[Desktop-packages] [Bug 1399953] Re: Google contacts authentication problem with U-O-A (Trusty, Vivid - Unity7)

2015-02-01 Thread josh at highjinx dot net
I deleted my default keyring and all accounts in UOA. After a restart, I
re-created the online accounts and a new default keyring. The Google
Contacts worked the first time I opened Evolution; however, it failed
again after subsequent restarts/reopening.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evolution-data-server in Ubuntu.
https://bugs.launchpad.net/bugs/1399953

Title:
  Google contacts authentication problem with U-O-A (Trusty,Vivid -
  Unity7)

Status in account-plugins package in Ubuntu:
  Confirmed
Status in evolution-data-server package in Ubuntu:
  Confirmed

Bug description:
  I simply can not access Google-Contacts with Ubuntu Online Accounts.
  After I enabled EDS contacts, If I open evolution  click on the
  address-book list, it shows following error:

  
GDBus.Error:org.gtk.GDBus.UnmappedGError.Quark._e_2dclient_2derror_2dquark.Code5:
  Authentication required.

  I tried to revoke access for UOA from google accounts,  re-authorize
  it. But it did not help. However google-calendar integration is
  working fine. And if log into gnome-shell  add my Google account in
  Gnome-Online-Accounts(G-O-A), contacts works as well. The problem only
  appearing for google-contacts in UOA. And I couldn't find anything
  significant in syslog.

  I have multiple google accounts enabled in UOA.

  Here is some more information:

  khurshid@mypc:~$ ag-tool list-enabled 11
  --
  Type   Service Name
     
  IM google-im
  contacts  google-contacts
  documents  google-drive

  khurshid@mypc:~$ account-console show 11 | grep Cred
  
--
  CredentialsId: 14 (class 'int')

  khurshid@mypc:~$ strings ~/.cache/signon-ui/cookies/14.jar
  
---
  GALX=IZLpIn1Fakc; secure; domain=accounts.google.com; path=/
  GAPS=1:9VjmZnLpxD0TzDbRqMElmGKRyLMg:qrKFg6yRv_4g6hT; secure; HttpOnly; 
expires=Tue, 29-Nov-2016 13:35:15 GMT; domain=accounts.google.com; path=/
  
NID=67=goKtbf0sx5dy_HuXXCG5EEfPfrTKyL_7iIDBf5aNjaA843PF1lAu3pbDjY5jvH5s-FcY81k_a-0gQpI7RymkAq_apdelo_lpkPrnVW_q7N6h8_a59sN3iNKhGJ5G_dsgYf56FT;
 HttpOnly; expires=Mon, 01-Jun-2015 13:35:15 GMT; domain=.google.com; path=/
  
SID=DQAAAPEAAACXK66HAgH7SV83LSOjKN_ZQPiR7qCeL7Yk9p98HlYTGNET_CH2lTTWvj2jPhQasPf78TcT0cc_lRNO7wU-TuXQl2JPj28PJXaxxbX1NZBYrt-qdhtTwrRk2qiewRN1QPH2AuYtaJTsbX5PNsy-o-uxiFGCTD5u0QTYOTdGvCu1UD9lZs5fUdtLbq;
 expires=Tue, 29-Nov-2016 13:35:15 GMT; domain=.google.com; path=/
  
LSID=lso|s.IN:DQAAAPAAAMxO_ttZTWoynoEsoHEt_zDEgk7pXkbqdQ9bnogq4HcnCNOAM8nxRsnqBWLmTF5AkgWc0XY-qjU_SI_K9JX_pBpaIAtq0o1hBZD0sbQB_Lw81Twwqewnj4J68K3aS0OcVnEm_S0G_MBtzbV-T26lcxwHGheh8mhtUpIDdUnvpjdFbQTe-fLwd4UsTku7s;
 secure; HttpOnly; expires=Tue, 29-Nov-2016 13:35:15 GMT; 
domain=accounts.google.com; path=/
  cHSID=AYLDuiTZv-sSOmfy; HttpOnly; expires=Tue, 29-Nov-2016 13:35:15 GMT; 
domain=.google.com; path=/
  kSSID=AqfiEDXUGfWBBl9; secure; HttpOnly; expires=Tue, 29-Nov-2016 13:35:15 
GMT; domain=.google.com; path=/
  lAPISID=Q0uvxSM2ZHgNs8L4/AR76LUN_S_xqCq2; expires=Tue, 29-Nov-2016 13:35:15 
GMT; domain=.google.com; path=/
  uSAPISID=bcf2oH6xaV8r1-/AIol-KZlQU551Z0uT; secure; expires=Tue, 29-Nov-2016 
13:35:15 GMT; domain=.google.com; path=/
  ACCOUNT_CHOOSER=AFx_qI6UxIzXMxLi2j9QUAAymv8WTOJR; secure; HttpOnly; 
expires=Tue, 29-Nov-2016 13:35:15 GMT; domain=accounts.google.com; path=/
  
NID=67=I2DxXlt4TwixPqUzJOOKAUifcVobnGLasEaA31uwxPwfORegpkxpdcdUK-upq-8V2ZB5FDFGJEb3K4T5rZVyI7cBN2ZpGZwLQrwBLggtz1KBJTK_eA;
 HttpOnly; expires=Mon, 01-Jun-2015 13:35:18 GMT; domain=.google.co.in; path=/
  
SID=DQAAAPCXK66HAgH7SV83MLSOjKN_ZQPiR7qCeL7Yk9p98HYTGNET_CH2lTTWvj2jPhQasPf78TcT0cc_lRNOGRjTjTmV2maEhHLzTqJFQ-TMDyKueBLR_-4fcC2gUW-0lALMCuGaaTY0DX7wU-TuXQl2JPj28PJXaxxbX1NZBYrt-qdhtTwrRk2qieuSYguA2bKAdnvxtmKfD9ElQoSc;
 expires=Tue, 29-Nov-2016 13:35:18 GMT; domain=.google.co.in; path=/
  eHSID=Au4nSmb8XraQ99XrQ; HttpOnly; expires=Tue, 29-Nov-2016 13:35:18 GMT; 
domain=.google.co.in; path=/
  mSSID=ACnCCS4X8GYIqpMrF; secure; HttpOnly; expires=Tue, 29-Nov-2016 13:35:18 
GMT; domain=.google.co.in; path=/
  nAPISID=Q0uvxSM2ZHgNs4/AR76LUN_S_XVxqCq2; expires=Tue, 29-Nov-2016 13:35:18 
GMT; domain=.google.co.in; path=/
  wSAPISID=bcf2oH6YWx8r1-/AIol-KZlQU551Z0uT; secure; expires=Tue, 29-Nov-2016 
13:35:18 GMT; domain=.google.co.in; path=/
  LSOSID=DQAAAPnyGDiPN1Xi8giBFN-FOwwjVkTtCvqAaxuOg4mLjKW1k_NqKdZh; secure; 
HttpOnly; expires=Tue, 29-Nov-2016 13:35:19 GMT; domain=accounts.google.com; 
path=/o

  version:
  
  libaccount-plugin-google: 0.11+14.04.20140409.1-0ubuntu1
  evolution-data-server: 

[Desktop-packages] [Bug 1403149] Re: Unable to mount OSX Yosemite causing excessive (~25%) CPU usage and moderate desktop sluggishness

2015-02-01 Thread Bug Watch Updater
** Changed in: gvfs
   Status: Unknown = Fix Released

** Changed in: gvfs
   Importance: Unknown = High

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

Title:
  Unable to mount OSX Yosemite causing excessive (~25%) CPU usage and
  moderate desktop sluggishness

Status in GVFS:
  Fix Released
Status in gvfs package in Ubuntu:
  Fix Committed

Bug description:
  1) lsb_release -rd
  Description:  Ubuntu 14.04.1 LTS
  Release:  14.04

  2) apt-cache policy gvfs
  gvfs:
    Installed: 1.20.1-1ubuntu1
    Candidate: 1.20.1-1ubuntu1
    Version table:
   *** 1.20.1-1ubuntu1 0
  500 http://us.archive.ubuntu.com/ubuntu/ trusty/main amd64 Packages
  100 /var/lib/dpkg/status

  3) What is expected to happen is when one mounts a shared folder from
  OSX Yosemite, the connection is unmountable, and doesn't cause
  excessive (~25%) CPU usage.

  4) What happens instead is the mount is unmountable, and is consuming
  (~25%) CPU as per the attached screenshot. This causes moderate
  desktop sluggishness. Tried restarting OSX, no change.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: gvfs 1.20.1-1ubuntu1
  ProcVersionSignature: Ubuntu 3.16.0-28.37~14.04.1-generic 3.16.7-ckt1
  Uname: Linux 3.16.0-28-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.6
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Tue Dec 16 11:28:39 2014
  InstallationDate: Installed on 2014-06-21 (177 days ago)
  InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Release amd64 (20140417)
  SourcePackage: gvfs
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Desktop-packages] [Bug 1275164] Re: inkscape crashed with SIGSEGV in sp_ctrlpoint_set_color()

2015-02-01 Thread Kris
The only thing I could think if is a NULL check on line 143 for item-canvas.
But if this would be the case, is not there a more important underlying issue?

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

Title:
  inkscape crashed with SIGSEGV in sp_ctrlpoint_set_color()

Status in Inkscape: A Vector Drawing Tool:
  Incomplete
Status in inkscape package in Ubuntu:
  New

Bug description:
  it happens sometimes right after the clean empty devs  save 
  Remove a horizontal guide line

  ProblemType: Crash
  DistroRelease: Ubuntu 14.04
  Package: inkscape 0.48.4-3ubuntu2
  ProcVersionSignature: Ubuntu 3.13.0-6.23-generic 3.13.0
  Uname: Linux 3.13.0-6-generic x86_64
  ApportVersion: 2.13.2-0ubuntu2
  Architecture: amd64
  CurrentDesktop: KDE
  Date: Sat Feb  1 01:42:37 2014
  ExecutablePath: /usr/bin/inkscape
  InstallationDate: Installed on 2013-12-12 (50 days ago)
  InstallationMedia: Kubuntu 13.10 Saucy Salamander - Release amd64 
(20131016.1)
  ProcCmdline: /usr/bin/inkscape
  ProcEnviron:
   LANGUAGE=de:en
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SegvAnalysis:
   Segfault happened at: 0x74cb51 
_Z22sp_ctrlpoint_set_colorP11SPCtrlPointj+33:   cmp(%rdx),%rax
   PC (0x0074cb51) ok
   source (%rdx) (0x) not located in a known VMA region 
(needed readable region)!
   destination %rax ok
  SegvReason: reading unknown VMA
  Signal: 11
  SourcePackage: inkscape
  StacktraceTop:
   sp_ctrlpoint_set_color(SPCtrlPoint*, unsigned int) ()
   sp_guideline_set_color(SPGuideLine*, unsigned int) ()
   sp_dt_guide_event(SPCanvasItem*, _GdkEvent*, void*) ()
   sp_marshal_BOOLEAN__POINTER ()
   g_closure_invoke () from /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
  Title: inkscape crashed with SIGSEGV in sp_ctrlpoint_set_color()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom debian-tor dip lpadmin plugdev sambashare sudo

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

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


[Desktop-packages] [Bug 1405607] Re: emacs freezes after Auto-saving done on large text file

2015-02-01 Thread themusicgod1
seems to take longer to reproduce but was able to reproduce in blink-
cursor-mode off

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

Title:
  emacs freezes after Auto-saving done on large text file

Status in emacs24 package in Ubuntu:
  Confirmed

Bug description:
  Seems like if I'm editing a particularly large text file (130Mb) and
  I'm typing while it auto-saves, emacs enters a non-responsive state
  (the zenity emacs is not responding - you may choose to wait a
  short while for it to continue or force the application to quit
  entirely window. comes up).  Not 100% consistently, but pretty
  consistently.

  emacs24:
Installed: 24.4+1-4ubuntu1
Candidate: 24.4+1-4ubuntu1
Version table:
   *** 24.4+1-4ubuntu1 0
  500 http://ca.archive.ubuntu.com/ubuntu/ vivid/main amd64 Packages
  100 /var/lib/dpkg/status
  libx11-6:
Installed: 2:1.6.2-2ubuntu2
Candidate: 2:1.6.2-2ubuntu2
Version table:
   *** 2:1.6.2-2ubuntu2 0
  500 http://ca.archive.ubuntu.com/ubuntu/ vivid/main amd64 Packages
  100 /var/lib/dpkg/status
  libglib2.0-0:
Installed: 2.43.2-1ubuntu1
Candidate: 2.43.2-1ubuntu1
Version table:
   *** 2.43.2-1ubuntu1 0
  500 http://ca.archive.ubuntu.com/ubuntu/ vivid/main amd64 Packages
  100 /var/lib/dpkg/status
  libglib2.0-0-dbg:
Installed: 2.43.2-1ubuntu1
Candidate: 2.43.2-1ubuntu1
Version table:
   *** 2.43.2-1ubuntu1 0
  500 http://ca.archive.ubuntu.com/ubuntu/ vivid/main amd64 Packages
  100 /var/lib/dpkg/status
  libc6:
Installed: 2.19-13ubuntu3
Candidate: 2.19-13ubuntu3
Version table:
   *** 2.19-13ubuntu3 0
  500 http://ca.archive.ubuntu.com/ubuntu/ vivid/main amd64 Packages
  100 /var/lib/dpkg/status

  Ubuntu: 15.04

  Linux Hedy 3.16.0-28-generic #38-Ubuntu SMP Fri Dec 12 17:37:40 UTC
  2014 x86_64 x86_64 x86_64 GNU/Linux

  [Switching to thread 1 (Thread 0x7f41a5fffa80 (LWP 3119))]
  #0  0x7f419f3d045d in poll () at ../sysdeps/unix/syscall-template.S:81
  81in ../sysdeps/unix/syscall-template.S
  (gdb) bt
  #0  0x7f419f3d045d in poll () at ../sysdeps/unix/syscall-template.S:81
  #1  0x7f419be5bb72 in ?? () from /usr/lib/x86_64-linux-gnu/libxcb.so.1
  #2  0x7f419be5d64f in xcb_wait_for_event ()
 from /usr/lib/x86_64-linux-gnu/libxcb.so.1
  #3  0x7f41a2b0f3a8 in _XReadEvents ()
 from /usr/lib/x86_64-linux-gnu/libX11.so.6
  #4  0x7f41a2af7889 in XIfEvent ()
 from /usr/lib/x86_64-linux-gnu/libX11.so.6
  #5  0x7f41a2b3e6e7 in ?? () from /usr/lib/x86_64-linux-gnu/libX11.so.6
  #6  0x7f41a2b3f317 in ?? () from /usr/lib/x86_64-linux-gnu/libX11.so.6
  #7  0x7f41a2b3f5f1 in _XimRead ()
 from /usr/lib/x86_64-linux-gnu/libX11.so.6
  #8  0x7f41a2b2e1a6 in ?? () from /usr/lib/x86_64-linux-gnu/libX11.so.6
  #9  0x7f41a2b1c0ad in XSetICValues ()
 from /usr/lib/x86_64-linux-gnu/libX11.so.6
  #10 0x004cf585 in ?? ()
  #11 0x004be352 in ?? ()
  #12 0x00459c22 in ?? ()
  #13 0x004bccdc in ?? ()
  #14 0x0041de46 in ?? ()
  #15 0x0041f11b in ?? ()
  #16 0x0042147d in ?? ()
  ---Type return to continue, or q return to quit---
  #17 0x0045296c in ?? ()
  #18 0x004f5243 in ?? ()
  #19 0x004f615f in ?? ()
  #20 0x004f7ed0 in ?? ()
  #21 0x0055aaa7 in ?? ()
  #22 0x004ea3ee in ?? ()
  #23 0x0055a98b in ?? ()
  #24 0x004ee9f7 in ?? ()
  #25 0x004eed10 in ?? ()
  #26 0x00418509 in ?? ()
  #27 0x7f419f301ec5 in __libc_start_main (main=0x417ab0, argc=1, 
  argv=0x793b7878, init=optimized out, fini=optimized out, 
  rtld_fini=optimized out, stack_end=0x793b7868) at libc-start.c:287
  #28 0x00418fbe in ?? ()
  (gdb) thread 2
  [Switching to thread 2 (Thread 0x7f418f9bd700 (LWP 3175))]
  #0  0x7f419f3d045d in poll () at ../sysdeps/unix/syscall-template.S:81
  81in ../sysdeps/unix/syscall-template.S
  (gdb) bt
  #0  0x7f419f3d045d in poll () at ../sysdeps/unix/syscall-template.S:81
  #1  0x7f41a327814c in g_main_context_poll (priority=2147483647, n_fds=1, 
  fds=0x7f41840010c0, timeout=-1, context=0x21da5d0)
  at /build/buildd/glib2.0-2.43.2/./glib/gmain.c:4103
  #2  g_main_context_iterate (context=context@entry=0x21da5d0, 
  block=block@entry=1, dispatch=dispatch@entry=1, self=optimized out)
  at /build/buildd/glib2.0-2.43.2/./glib/gmain.c:3803
  #3  0x7f41a327825c in g_main_context_iteration (context=0x21da5d0, 
  may_block=1) at /build/buildd/glib2.0-2.43.2/./glib/gmain.c:3869
  #4  0x7f418f9c527d in ?? ()
 from /usr/lib/x86_64-linux-gnu/gio/modules/libdconfsettings.so
  #5  0x7f41a329eb95 in g_thread_proxy (data=0x2275450)
  at /build/buildd/glib2.0-2.43.2/./glib/gthread.c:764
  #6  

[Desktop-packages] [Bug 1268257] Re: nvidia-331-updates 331.38-0ubuntu3: nvidia-331-updates kernel module failed to build, with only error: objdump: '... .tmp_nv.o': No such file

2015-02-01 Thread Eduardo de Britto Castro
I'm using a GeForce 8400M GS on a HP Pavilion dv6700 laptop.
Solved changing from version 331.113 to 304.125.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to nvidia-graphics-drivers-331 in Ubuntu.
https://bugs.launchpad.net/bugs/1268257

Title:
  nvidia-331-updates 331.38-0ubuntu3: nvidia-331-updates kernel module
  failed to build, with only error: objdump: '... .tmp_nv.o': No such
  file

Status in nvidia-graphics-drivers-331 package in Ubuntu:
  Triaged
Status in nvidia-graphics-drivers-331-updates package in Ubuntu:
  Triaged

Bug description:
  **WARNING:** This bug has been widely reported and has *many*
  automatic subscribers. Please be considerate.

  **If you need help:** try searching and asking on
  http://discourse.ubuntu.com or http://ubuntuforums.org or contacting a
  nearby user group (see http://loco.ubuntu.com or search for LUG in
  your area). Link back to this bug for clarity.

  **If you want to unsubscribe:** see
  https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-
  drivers-331-updates/+bug/1268257/+subscribe. You can also change your
  settings so you don't get comments but do get notified when the bug is
  solved - see https://askubuntu.com/questions/576523 for details.

  **If you want to comment:** Please consider if you have something
  meaningful to contribute to the 2500+ people who will get an email.

  **If you are an Ubuntu developer:** thanks for looking into this! :D

  

  Nvidia kernel module failed to build on kernel 3.13.0-2
  Yesterday when the new kernel was pushed, the dkms process failed.

  ProblemType: Package
  DistroRelease: Ubuntu 14.04
  Package: nvidia-331-updates 331.20-0ubuntu9
  ProcVersionSignature: Ubuntu 3.12.0-7.15-generic 3.12.4
  Uname: Linux 3.12.0-7-generic x86_64
  ApportVersion: 2.13.1-0ubuntu1
  Architecture: amd64
  DKMSKernelVersion: 3.13.0-2-generic
  Date: Sun Jan 12 01:28:35 2014
  InstallationDate: Installed on 2013-11-03 (69 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release amd64 
(20131016.1)
  PackageVersion: 331.20-0ubuntu9
  SourcePackage: nvidia-graphics-drivers-331-updates
  Title: nvidia-331-updates 331.20-0ubuntu9: nvidia-331-updates kernel module 
failed to build
  UpgradeStatus: Upgraded to trusty on 2013-12-29 (13 days ago)

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

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


[Desktop-packages] [Bug 1362848] Re: ubuntu 14.04 after install nvidia binary driver 331.89 black screen and freeze

2015-02-01 Thread Andrew Frolikov
The same problem is here. After an update (approx. 26-27 Jan) to
3.13.0-43 (45 now) there is no way to reboot in nvidia - mode. Tried
different drivers version (331 to 346) and their 'updates' variations.
With any nvidia drivers installed i'm getting black screen instead of
ligthdm invitation.

OS: Ubuntu 14.04.1 64bit
Laptop: Acer Aspire V5-573G, GeForce GT 750M
Desktop: Unity
Kernel: linux-headers-3.13.0-45
CPU: Intel® Core™ i7-3630QM CPU @ 2.40GHz × 8

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to nvidia-graphics-drivers-331 in Ubuntu.
https://bugs.launchpad.net/bugs/1362848

Title:
  ubuntu 14.04 after install nvidia binary driver  331.89  black screen
  and freeze

Status in nvidia-graphics-drivers-331 package in Ubuntu:
  Confirmed

Bug description:
  I'm using Ubuntu 14.04 64bit, after install nvidia binary driver
  331.89 from Additional Drivers application then reboot, it shows black
  screen, no login window, I even can't use ctrl+alt+F2 to switch to
  text mode, then I reboot and go to recovery mode, use 'prime-select
  intel' to switch to intel GPU and reboot, everything is fine, but as
  soon as I switch to nvidia GPU, still same issue.

  OS: Ubuntu 14.04 64bit
  Laptop: HP ENVY 15t Nvidia GeForce GT 740M + Intel HD 4600
  Desktop: Unity
  Kernel: 3.13.0
  CPU: Intel® Core™ i7-4700MQ

  Thanks!

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

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


[Desktop-packages] [Bug 166371] Re: Illustrator CS SVG won't load: namespace URIs in entities

2015-02-01 Thread Bug Watch Updater
** Changed in: inkscape (Debian)
   Status: Confirmed = Fix Released

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

Title:
  Illustrator CS SVG won't load: namespace URIs in entities

Status in Inkscape: A Vector Drawing Tool:
  Fix Released
Status in inkscape package in Ubuntu:
  Fix Released
Status in inkscape package in Debian:
  Fix Released

Bug description:
  Opening an SVG exported from Illustrator CS on Windows
  XP crashes Inkscape on Windows XP with the message:

  inkscape.exe:2296: Warning **: SVGView: error loading
  document

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

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


[Desktop-packages] [Bug 1416651] Re: New major upstream stable Inkscape release (0.91) available

2015-02-01 Thread Mantas Kriaučiūnas
Alex Valavanis, I've noticed, that Inscape from Debian experimental already 
depends on libcdr-dev, see
http://anonscm.debian.org/cgit/collab-maint/inkscape.git/tree/debian?h=experimental

I think you should simply copy packaging code from Debian experimental
to lp:~inkscape.dev/inkscape/debian-packaging-stable

Thanks,
Mantas

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

Title:
  New major upstream stable Inkscape release (0.91) available

Status in inkscape package in Ubuntu:
  New
Status in inkscape package in Debian:
  New

Bug description:
  Inkscape community proudly announces the 0.91 release of Inkscape! Please 
update Ubuntu 15.04 packages to the latest stable Inkscape version.
  Packages for Uuntu 14.x, 12.04 and 15.04 are available at 
ppa:inkscape.dev/stable - see
  https://launchpad.net/~inkscape.dev/+archive/ubuntu/stable

  This release marks the culmination of a multi-year effort to switch to a new 
internal graphics rendering engine, Cairo. This brings performance enhancements 
and more accurate rendering of drawings.
  A new Trace Pixel Art feature enables creation of vector art from bitmaps, 
sprites, and icons. A new Symbols Library provides reusable graphics elements - 
you can even read in Visio symbol libraries. New Snapping options and improved 
Snap preferences make it easier to quickly place items in the alignments you 
need. The tools for arranging objects offer several new ways to position the 
elements of a drawing. Tons of other little improvements have been made across 
all the other tools as well.
  Several new file formats are supported, including FXG, SIF and HTML5 export; 
and VSD and CDR import. EMF/WMF are now readable and writable for all 
platforms. And XCF, PDF, EPS, and PS+LaTeX support are improved.
  Inkscape has a rich Extension ecosystem, which is well known for bringing 
clever, cool, and innovative new ideas. Over a dozen new extensions are added 
in this release, including an Isometric Grid Generator, a Bitmap Cropper, a 
Text Extractor and a Text Merger, an HSL Adjuster, a Font Replacer, a Voronoï 
Diagram Creator, and more.
  The above barely scratches the surface of all the new stuff included in this 
release. For the full story, including examples and screenshots, please see our 
detailed Release Notes:
  http://wiki.inkscape.org/wiki/index.php/Release_notes/0.91

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

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


[Desktop-packages] [Bug 1416891] [NEW] Update to 1.20.3

2015-02-01 Thread Robert Ancell
Public bug reported:

Ubuntu 14.04 LTS currently contains 1.20.1. There have been stable
updates since then.

The maintainer has requested we update:
https://lists.ubuntu.com/archives/ubuntu-devel/2015-February/038668.html

** Affects: gvfs (Ubuntu)
 Importance: Medium
 Status: Fix Released

** Affects: gvfs (Ubuntu Trusty)
 Importance: Undecided
 Status: Confirmed


** Tags: upgrade-software-version

** Also affects: gvfs (Ubuntu Trusty)
   Importance: Undecided
   Status: New

** Changed in: gvfs (Ubuntu)
   Status: New = Fix Released

** Changed in: gvfs (Ubuntu)
   Importance: Undecided = Medium

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

Title:
  Update to 1.20.3

Status in gvfs package in Ubuntu:
  Fix Released
Status in gvfs source package in Trusty:
  Confirmed

Bug description:
  Ubuntu 14.04 LTS currently contains 1.20.1. There have been stable
  updates since then.

  The maintainer has requested we update:
  https://lists.ubuntu.com/archives/ubuntu-devel/2015-February/038668.html

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

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


[Desktop-packages] [Bug 1199787] Re: gvfsd-sftp assert failure: ERROR:gvfsdaemon.c:149:g_vfs_daemon_finalize: assertion failed: (daemon-jobs == NULL)

2015-02-01 Thread Robert Ancell
** Information type changed from Private to Public

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

Title:
  gvfsd-sftp assert failure:
  ERROR:gvfsdaemon.c:149:g_vfs_daemon_finalize: assertion failed:
  (daemon-jobs == NULL)

Status in gvfs package in Ubuntu:
  Confirmed

Bug description:
  I think this happened after the sftp-connected device was unavailable
  anymore (switching networks). Or maybe after a timeout?

  ProblemType: Crash
  DistroRelease: Ubuntu 13.10
  Package: gvfs-backends 1.17.2-0ubuntu2
  ProcVersionSignature: Ubuntu 3.10.0-2.10-generic 3.10.0
  Uname: Linux 3.10.0-2-generic x86_64
  NonfreeKernelModules: nvidia wl
  ApportVersion: 2.10.2-0ubuntu3
  Architecture: amd64
  AssertionMessage: ERROR:gvfsdaemon.c:149:g_vfs_daemon_finalize: assertion 
failed: (daemon-jobs == NULL)
  Date: Tue Jul  9 18:57:14 2013
  ExecutablePath: /usr/lib/gvfs/gvfsd-sftp
  MarkForUpload: True
  ProcCmdline: /usr/lib/gvfs/gvfsd-sftp --spawner :1.4 /org/gtk/gvfs/exec_spaw/4
  Signal: 6
  SourcePackage: gvfs
  StacktraceTop:
   _g_log_abort () at /build/buildd/glib2.0-2.37.3/./glib/gmessages.c:255
   g_assertion_message (domain=domain@entry=0x0, file=file@entry=0x7fbf9e9e0856 
gvfsdaemon.c, line=line@entry=149, func=func@entry=0x7fbf9e9e0a00 
g_vfs_daemon_finalize, message=optimized out) at 
/build/buildd/glib2.0-2.37.3/./glib/gtestutils.c:2075
   g_assertion_message_expr (domain=0x0, file=0x7fbf9e9e0856 gvfsdaemon.c, 
line=149, func=0x7fbf9e9e0a00 g_vfs_daemon_finalize, expr=optimized out) at 
/build/buildd/glib2.0-2.37.3/./glib/gtestutils.c:2086
   ?? () from /usr/lib/x86_64-linux-gnu/gvfs/libgvfsdaemon.so
   g_object_unref (_object=0x1e85300) at 
/build/buildd/glib2.0-2.37.3/./gobject/gobject.c:3194
  Title: gvfsd-sftp assert failure: 
ERROR:gvfsdaemon.c:149:g_vfs_daemon_finalize: assertion failed: (daemon-jobs 
== NULL)
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm autopilot cdrom dip lpadmin plugdev sambashare sbuild sudo

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

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


[Desktop-packages] [Bug 1304911] Re: gvfsd-trash crashed with SIGABRT in g_thread_abort()

2015-02-01 Thread Robert Ancell
** Information type changed from Private to Public

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

Title:
  gvfsd-trash crashed with SIGABRT in g_thread_abort()

Status in gvfs package in Ubuntu:
  New

Bug description:
  I had just installed the latest trusty updates via aptitude in gnome-
  terminal when I hit bug 1304864.  While trying to get out of that
  exposé view, I hit Super+T to open the trash window.  Apparently, it
  wouldn't open but rather crash instead.

  ProblemType: Crash
  DistroRelease: Ubuntu 14.04
  Package: gvfs-daemons 1.19.90-1ubuntu1
  ProcVersionSignature: Ubuntu 3.13.0-23.45-generic 3.13.8
  Uname: Linux 3.13.0-23-generic i686
  ApportVersion: 2.14.1-0ubuntu1
  Architecture: i386
  CurrentDesktop: Unity
  Date: Tue Apr  8 16:18:49 2014
  EcryptfsInUse: Yes
  ExecutablePath: /usr/lib/gvfs/gvfsd-trash
  ExecutableTimestamp: 1393584049
  ProcCmdline: /usr/lib/gvfs/gvfsd-trash --spawner :1.6 
/org/gtk/gvfs/exec_spaw/1
  ProcCwd: /
  Signal: 6
  SourcePackage: gvfs
  StacktraceTop:
   raise () from /lib/i386-linux-gnu/libc.so.6
   abort () from /lib/i386-linux-gnu/libc.so.6
   ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
   g_mutex_lock () from /lib/i386-linux-gnu/libglib-2.0.so.0
   ?? () from /usr/lib/i386-linux-gnu/libgio-2.0.so.0
  Title: gvfsd-trash crashed with SIGABRT in raise()
  UpgradeStatus: Upgraded to trusty on 2014-03-19 (19 days ago)
  UserGroups: adm admin audio cdrom davfs2 debian-tor dialout dip fax fuse 
libvirtd lightdm lpadmin netdev plugdev sambashare src video

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

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


[Desktop-packages] [Bug 1306142] Re: gvfsd-afc crashed with SIGABRT in g_assertion_message()

2015-02-01 Thread Robert Ancell
** Information type changed from Private to Public

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

Title:
  gvfsd-afc crashed with SIGABRT in g_assertion_message()

Status in gvfs package in Ubuntu:
  Confirmed

Bug description:
  Re mount iPhone this bug message

  ProblemType: Crash
  DistroRelease: Ubuntu 14.04
  Package: gvfs-backends 1.20.0-1ubuntu1
  ProcVersionSignature: Ubuntu 3.13.0-19.40-generic 3.13.6
  Uname: Linux 3.13.0-19-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.14.1-0ubuntu1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Thu Apr 10 19:56:42 2014
  ExecutablePath: /usr/lib/gvfs/gvfsd-afc
  InstallationDate: Installed on 2014-03-29 (12 days ago)
  InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Beta amd64 (20140326)
  ProcCmdline: /usr/lib/gvfs/gvfsd-afc --spawner :1.5 /org/gtk/gvfs/exec_spaw/1
  Signal: 6
  SourcePackage: gvfs
  StacktraceTop:
   g_assertion_message () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
   g_assertion_message_expr () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
   ?? () from /usr/lib/x86_64-linux-gnu/gvfs/libgvfsdaemon.so
   g_object_unref () from /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
   ?? ()
  Title: gvfsd-afc crashed with SIGABRT in g_assertion_message()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo

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

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


[Desktop-packages] [Bug 1292838] Re: gvfsd-smb crashed with SIGSEGV in smbc_getFunctionStat()

2015-02-01 Thread Robert Ancell
** Information type changed from Private to Public

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

Title:
  gvfsd-smb crashed with SIGSEGV in smbc_getFunctionStat()

Status in gvfs package in Ubuntu:
  New

Bug description:
  I was browsing shared folders on windows pc in same network, i
  rebooted windows pc while  Files was still open. After that Files
  wasn't able to recconnect or unmount shared directory.

  ProblemType: Crash
  DistroRelease: Ubuntu 14.04
  Package: gvfs-backends 1.19.90-1ubuntu1
  ProcVersionSignature: Ubuntu 3.13.0-17.37-generic 3.13.6
  Uname: Linux 3.13.0-17-generic i686
  ApportVersion: 2.13.3-0ubuntu1
  Architecture: i386
  CurrentDesktop: Unity
  Date: Sat Mar 15 13:47:07 2014
  ExecutablePath: /usr/lib/gvfs/gvfsd-smb
  InstallationDate: Installed on 2014-03-10 (4 days ago)
  InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Alpha i386 (20140310)
  ProcCmdline: /usr/lib/gvfs/gvfsd-smb --spawner :1.5 /org/gtk/gvfs/exec_spaw/14
  SegvAnalysis:
   Segfault happened at: 0xb76f7ab4 smbc_getFunctionStat+4:   mov
0x30(%eax),%eax
   PC (0xb76f7ab4) ok
   source 0x30(%eax) (0x0030) not located in a known VMA region (needed 
readable region)!
   destination %eax ok
   Stack memory exhausted (SP below stack segment)
  SegvReason: reading NULL VMA
  Signal: 11
  SourcePackage: gvfs
  StacktraceTop:
   smbc_getFunctionStat () from /usr/lib/i386-linux-gnu/libsmbclient.so.0
   ?? ()
   ?? () from /usr/lib/i386-linux-gnu/gvfs/libgvfsdaemon.so
   g_vfs_job_run () from /usr/lib/i386-linux-gnu/gvfs/libgvfsdaemon.so
   ?? () from /usr/lib/i386-linux-gnu/gvfs/libgvfsdaemon.so
  Title: gvfsd-smb crashed with SIGSEGV in smbc_getFunctionStat()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo

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

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


[Desktop-packages] [Bug 757551] Re: upowerd leaks memory with Logitech universal receiver

2015-02-01 Thread Krzysztof Dryja
Guys, how to implement the fix on Ubuntu 14.04.1 LTS without upgrading
Ubuntu to the latest version?

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

Title:
  upowerd leaks memory with Logitech universal receiver

Status in upower package in Ubuntu:
  Fix Released
Status in upower source package in Vivid:
  Fix Released

Bug description:
  Binary package hint: upower

  I currently have 36 days of uptime on my laptop (using suspend a lot)
  and over time, I've noticed that the upowerd process got to the top of
  the list in terms of memory usage by claiming 1GB+. I can manage with
  this situation since I have 6GB of physical memory, but I'm sure that
  people with less in their laptops will not be so fortunate.

  ProblemType: Bug
  DistroRelease: Ubuntu 10.10
  Package: upower 0.9.5-4
  ProcVersionSignature: Ubuntu 2.6.35-27.48-generic 2.6.35.11
  Uname: Linux 2.6.35-27-generic x86_64
  Architecture: amd64
  Date: Mon Apr 11 09:47:23 2011
  EcryptfsInUse: Yes
  ExecutablePath: /usr/lib/upower/upowerd
  InstallationMedia: Ubuntu 10.04.1 LTS Lucid Lynx - Release amd64 
(20100816.1)
  ProcEnviron:
   
  SourcePackage: upower

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

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


[Desktop-packages] [Bug 1416891] Re: Update to 1.20.3

2015-02-01 Thread Robert Ancell
I inspected the changes and they seem appropriate for an SRU.

I've run the updated package on trusty and it seems to work.

Uploaded to trusty-proposed.

** Description changed:

- Ubuntu 14.04 LTS currently contains 1.20.1. There have been stable
- updates since then.
+ [Impact]
+ Ubuntu 14.04 LTS currently contains 1.20.1. There have been stable updates 
since then. The maintainer has requested we update [1].
  
- The maintainer has requested we update:
- https://lists.ubuntu.com/archives/ubuntu-devel/2015-February/038668.html
+ [Test Case]
+ Update to 1.20.3. Still should keep working as before.
+ 
+ [Regression Potential]
+ Some risk of other bugs being created by changes. Code inspection shows 
changes are relatively simple.
+ 
+ [1] https://lists.ubuntu.com/archives/ubuntu-
+ devel/2015-February/038668.html

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

Title:
  Update to 1.20.3

Status in gvfs package in Ubuntu:
  Fix Released
Status in gvfs source package in Trusty:
  Confirmed

Bug description:
  [Impact]
  Ubuntu 14.04 LTS currently contains 1.20.1. There have been stable updates 
since then. The maintainer has requested we update [1].

  [Test Case]
  Update to 1.20.3. Still should keep working as before.

  [Regression Potential]
  Some risk of other bugs being created by changes. Code inspection shows 
changes are relatively simple.

  [1] https://lists.ubuntu.com/archives/ubuntu-
  devel/2015-February/038668.html

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

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


[Desktop-packages] [Bug 775702] Re: Some menu icons missing in Inkscape since upgrade to 11.04

2015-02-01 Thread Majid Kamali
** Changed in: inkscape (Ubuntu)
   Status: Triaged = Confirmed

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

Title:
  Some menu icons missing in Inkscape since upgrade to 11.04

Status in Inkscape: A Vector Drawing Tool:
  Invalid
Status in DBus Menu:
  Confirmed
Status in inkscape package in Ubuntu:
  Confirmed
Status in libdbusmenu package in Ubuntu:
  Confirmed

Bug description:
  Binary package hint: inkscape

  Since upgrading to Natty, some (but not all) of the little icons that
  appear next to menu items in Inkscape appear as no-entry symbols as in
  the attached screenshot.

  The same thing has happened for two computers in my home, one
  installed from a downloaded iso image, the other upgraded from
  maverick.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: inkscape 0.48.1-2ubuntu2
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic i686
  Architecture: i386
  Date: Mon May  2 16:36:18 2011
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
  ProcEnviron:
   LANGUAGE=en_GB:en
   PATH=(custom, user)
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  SourcePackage: inkscape
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Desktop-packages] [Bug 1403149] Re: Unable to mount OSX Yosemite causing excessive (~25%) CPU usage and moderate desktop sluggishness

2015-02-01 Thread Christopher M. Penalver
Spoke too soon regarding Utopic. I walked away from my computer for
about 2 hours, and noticed in System Monitor gvfsd-afp at CPU 25%,
Memory 3.4 MB. Perhaps the issue affects Utopic more gradually than in
Trusty?!

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

** Tags added: utopic

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

Title:
  Unable to mount OSX Yosemite causing excessive (~25%) CPU usage and
  moderate desktop sluggishness

Status in GVFS:
  Fix Released
Status in gvfs package in Ubuntu:
  Fix Committed

Bug description:
  1) lsb_release -rd
  Description:  Ubuntu 14.04.1 LTS
  Release:  14.04

  2) apt-cache policy gvfs
  gvfs:
    Installed: 1.20.1-1ubuntu1
    Candidate: 1.20.1-1ubuntu1
    Version table:
   *** 1.20.1-1ubuntu1 0
  500 http://us.archive.ubuntu.com/ubuntu/ trusty/main amd64 Packages
  100 /var/lib/dpkg/status

  3) What is expected to happen is when one mounts a shared folder from
  OSX Yosemite, the connection is unmountable, and doesn't cause
  excessive (~25%) CPU usage.

  4) What happens instead is the mount is unmountable, and is consuming
  (~25%) CPU as per the attached screenshot. This causes moderate
  desktop sluggishness. Tried restarting OSX, no change.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: gvfs 1.20.1-1ubuntu1
  ProcVersionSignature: Ubuntu 3.16.0-28.37~14.04.1-generic 3.16.7-ckt1
  Uname: Linux 3.16.0-28-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.6
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Tue Dec 16 11:28:39 2014
  InstallationDate: Installed on 2014-06-21 (177 days ago)
  InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Release amd64 (20140417)
  SourcePackage: gvfs
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Desktop-packages] [Bug 1403149] Re: Unable to mount OSX Yosemite causing excessive (~25%) CPU usage and moderate desktop sluggishness

2015-02-01 Thread Ross Lagerwall
Nah, neither of them have the required patches (which made only made it
into 1.20.3). It's an idle timeout issue, so it depends one the activity
on the share.

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

Title:
  Unable to mount OSX Yosemite causing excessive (~25%) CPU usage and
  moderate desktop sluggishness

Status in GVFS:
  Fix Released
Status in gvfs package in Ubuntu:
  Fix Committed

Bug description:
  1) lsb_release -rd
  Description:  Ubuntu 14.04.1 LTS
  Release:  14.04

  2) apt-cache policy gvfs
  gvfs:
    Installed: 1.20.1-1ubuntu1
    Candidate: 1.20.1-1ubuntu1
    Version table:
   *** 1.20.1-1ubuntu1 0
  500 http://us.archive.ubuntu.com/ubuntu/ trusty/main amd64 Packages
  100 /var/lib/dpkg/status

  3) What is expected to happen is when one mounts a shared folder from
  OSX Yosemite, the connection is unmountable, and doesn't cause
  excessive (~25%) CPU usage.

  4) What happens instead is the mount is unmountable, and is consuming
  (~25%) CPU as per the attached screenshot. This causes moderate
  desktop sluggishness. Tried restarting OSX, no change.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: gvfs 1.20.1-1ubuntu1
  ProcVersionSignature: Ubuntu 3.16.0-28.37~14.04.1-generic 3.16.7-ckt1
  Uname: Linux 3.16.0-28-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.6
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Tue Dec 16 11:28:39 2014
  InstallationDate: Installed on 2014-06-21 (177 days ago)
  InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Release amd64 (20140417)
  SourcePackage: gvfs
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Desktop-packages] [Bug 1416651] Re: New major upstream stable Inkscape release (0.91) available

2015-02-01 Thread Mantas Kriaučiūnas
Alex Valavanis, why you compiled Inkscape in ppa:inkscape.dev/stable without 
libcdr ? I've just installed from 
https://launchpad.net/~inkscape.dev/+archive/ubuntu/stable and noticed, that 
Inkscape 0.91 doesn't open CorelDraw files until python-uniconvertor is 
installed.
Please fix packaging code at lp:~inkscape.dev/inkscape/debian-packaging-stable 
to add libcdr-dev build-deps according to bug  #1104198 
(https://launchpad.net/inkscape/+bug/1104198)
Ubuntu 14.04 has libcdr 0.0.15 , newer libcdr 0.1 is uploaded to Ubuntu 14.10 
and 15.04.
If you need newer libcdr you can simply upload newer libcdr version to Ubuntu 
14.04 or even Ubuntu 12.04 section at 
https://launchpad.net/~inkscape.dev/+archive/ubuntu/stable PPA

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

Title:
  New major upstream stable Inkscape release (0.91) available

Status in inkscape package in Ubuntu:
  New
Status in inkscape package in Debian:
  New

Bug description:
  Inkscape community proudly announces the 0.91 release of Inkscape! Please 
update Ubuntu 15.04 packages to the latest stable Inkscape version.
  Packages for Uuntu 14.x, 12.04 and 15.04 are available at 
ppa:inkscape.dev/stable - see
  https://launchpad.net/~inkscape.dev/+archive/ubuntu/stable

  This release marks the culmination of a multi-year effort to switch to a new 
internal graphics rendering engine, Cairo. This brings performance enhancements 
and more accurate rendering of drawings.
  A new Trace Pixel Art feature enables creation of vector art from bitmaps, 
sprites, and icons. A new Symbols Library provides reusable graphics elements - 
you can even read in Visio symbol libraries. New Snapping options and improved 
Snap preferences make it easier to quickly place items in the alignments you 
need. The tools for arranging objects offer several new ways to position the 
elements of a drawing. Tons of other little improvements have been made across 
all the other tools as well.
  Several new file formats are supported, including FXG, SIF and HTML5 export; 
and VSD and CDR import. EMF/WMF are now readable and writable for all 
platforms. And XCF, PDF, EPS, and PS+LaTeX support are improved.
  Inkscape has a rich Extension ecosystem, which is well known for bringing 
clever, cool, and innovative new ideas. Over a dozen new extensions are added 
in this release, including an Isometric Grid Generator, a Bitmap Cropper, a 
Text Extractor and a Text Merger, an HSL Adjuster, a Font Replacer, a Voronoï 
Diagram Creator, and more.
  The above barely scratches the surface of all the new stuff included in this 
release. For the full story, including examples and screenshots, please see our 
detailed Release Notes:
  http://wiki.inkscape.org/wiki/index.php/Release_notes/0.91

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

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


[Desktop-packages] [Bug 1416776] Re: [PPA] LibreOffice 4.4.0-rc3 (Vivid) depends on libcmis-0.5-5 (unavailable in Ubuntu)

2015-02-01 Thread Rico Tzschichholz
** Changed in: libreoffice (Ubuntu)
   Status: New = Invalid

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

Title:
  [PPA] LibreOffice 4.4.0-rc3 (Vivid) depends on libcmis-0.5-5
  (unavailable in Ubuntu)

Status in libreoffice package in Ubuntu:
  Invalid

Bug description:
  The package libreoffice-core in ppa:libreoffice/ppa and
  ppa:libreoffice/libreoffice-4-4 depend on libcmis-0.5-5, which is not
  available in Ubuntu (although it is available on Debian experimental;
  manually installing the package from there works). This is only the
  case for the Vivid series, and not Trusty/Utopic.

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

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


[Desktop-packages] [Bug 1403149] Re: Unable to mount OSX Yosemite causing excessive (~25%) CPU usage and moderate desktop sluggishness

2015-02-01 Thread Ross Lagerwall
Oh, yeah somehow I messed up the commit id but you got the right one.

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

Title:
  Unable to mount OSX Yosemite causing excessive (~25%) CPU usage and
  moderate desktop sluggishness

Status in GVFS:
  Fix Released
Status in gvfs package in Ubuntu:
  Fix Released

Bug description:
  1) lsb_release -rd
  Description:  Ubuntu 14.04.1 LTS
  Release:  14.04

  2) apt-cache policy gvfs
  gvfs:
    Installed: 1.20.1-1ubuntu1
    Candidate: 1.20.1-1ubuntu1
    Version table:
   *** 1.20.1-1ubuntu1 0
  500 http://us.archive.ubuntu.com/ubuntu/ trusty/main amd64 Packages
  100 /var/lib/dpkg/status

  3) What is expected to happen is when one mounts a shared folder from
  OSX Yosemite, the connection is unmountable, and doesn't cause
  excessive (~25%) CPU usage.

  4) What happens instead is the mount is unmountable, and is consuming
  (~25%) CPU as per the attached screenshot. This causes moderate
  desktop sluggishness. Tried restarting OSX, no change.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: gvfs 1.20.1-1ubuntu1
  ProcVersionSignature: Ubuntu 3.16.0-28.37~14.04.1-generic 3.16.7-ckt1
  Uname: Linux 3.16.0-28-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.6
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Tue Dec 16 11:28:39 2014
  InstallationDate: Installed on 2014-06-21 (177 days ago)
  InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Release amd64 (20140417)
  SourcePackage: gvfs
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Desktop-packages] [Bug 1379446] Re: gnome-control-center.real crashed with SIGSEGV in gtk_lock_button_set_permission()

2015-02-01 Thread Robert Ancell
** Changed in: deja-dup (Ubuntu Utopic)
   Status: Confirmed = Triaged

** Changed in: deja-dup (Ubuntu Utopic)
   Importance: Undecided = High

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to deja-dup in Ubuntu.
https://bugs.launchpad.net/bugs/1379446

Title:
  gnome-control-center.real crashed with SIGSEGV in
  gtk_lock_button_set_permission()

Status in Ubuntu GNOME:
  Fix Released
Status in deja-dup package in Ubuntu:
  Fix Released
Status in deja-dup source package in Utopic:
  Triaged

Bug description:
  [Impact]
  When starting deja-dup through the gnome-control-center it crashes. This is 
caused by an ABI break in libgnome-control-center. Which is an Ubuntu-ism, 
upstream dropped quite a while back.

  [Test case]
  Click Backups in gnome-control-center

  [Regression potential]
  Low, this is just a simple rebuild to pick up the new ABI in 
libgnome-control-center. It will cause the libunity-control-center plugin to 
also be rebuilt but there were no changes there, so that should be fine.

  === Original Report 

  g-c-c 3.14 crashes when loading the Backup panel
  (This also affects 3.12 in utopic)

  ProblemType: CrashDistroRelease: Ubuntu 14.10
  Package: gnome-control-center 1:3.14.0-1ubuntu1~utopic1 [origin: 
LP-PPA-gnome3-team-gnome3-staging]
  ProcVersionSignature: Ubuntu 3.16.0-21.28-generic 3.16.4
  Uname: Linux 3.16.0-21-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.14.7-0ubuntu5
  Architecture: amd64
  CrashCounter: 1
  CurrentDesktop: GNOME
  Date: Thu Oct  9 19:30:35 2014
  ExecutablePath: /usr/bin/gnome-control-center.real
  InstallationDate: Installed on 2014-09-19 (20 days ago)
  InstallationMedia: Ubuntu-GNOME 14.10 Utopic Unicorn - Alpha amd64 
(20140917)
  ProcCmdline: /usr/bin/gnome-control-center.real --overview
  SegvAnalysis:
   Segfault happened at: 0x7faac2be3743 gtk_lock_button_set_permission+99:
cmp%rax,(%rdx)
   PC (0x7faac2be3743) ok
   source %rax ok
   destination (%rdx) (0x6a65643a706c6568) not located in a known VMA region 
(needed writable region)!
  SegvReason: writing unknown VMASignal: 11SourcePackage: gnome-control-center
  StacktraceTop:
   gtk_lock_button_set_permission () from 
/usr/lib/x86_64-linux-gnu/libgtk-3.so.0
   ?? ()
   ffi_call_unix64 () from /usr/lib/x86_64-linux-gnu/libffi.so.6
   ffi_call () from /usr/lib/x86_64-linux-gnu/libffi.so.6
   g_cclosure_marshal_generic () from 
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
  Title: gnome-control-center.real crashed with SIGSEGV in 
gtk_lock_button_set_permission()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip libvirtd lpadmin plugdev sambashare sudo
  usr_lib_gnome-control-center: deja-dup 32.0-0ubuntu1

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

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


[Desktop-packages] [Bug 410288] Re: Nautilus does not handle FTP timeouts well

2015-02-01 Thread Ross Lagerwall
It would be good to get these commits from gvfs 1.20.3 to fix this:
https://git.gnome.org/browse/gvfs/commit/?id=562906889bde44f4ef9e7a34343f7c9339941ecb
https://git.gnome.org/browse/gvfs/commit/?id=8c58ceb7d5f07fd007e21dae1557f35be92a56b6
https://git.gnome.org/browse/gvfs/commit/?id=7b1d51379bd1b28de9426aebc0832bc959760cf6

(or just update to 1.20.3 :-) )

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

Title:
  Nautilus does not handle FTP timeouts well

Status in GVFS:
  Fix Released
Status in Nautilus:
  New
Status in gvfs package in Ubuntu:
  Fix Committed

Bug description:
  Binary package hint: gvfs

  I connected to a FTP server via gvfs in Nautilus. After some time the
  FTP connection is closed automatically, as I observed with wireshark
  (421 No transfer timeout (300 seconds): closing control connection).

  After that, everytime I open a folder on the FTP server I get only an
  unexpected end of stream error. To access the FTP server again I
  have to disconnect and then connect again. Nautilus does not seem to
  know that the connection closed.

  A better behaviour IMHO would be to try and reconnect to the FTP
  server.

  ProblemType: Bug
  Architecture: i386
  Date: Fri Aug  7 15:16:05 2009
  DistroRelease: Ubuntu 9.10
  ExecutablePath: /usr/bin/nautilus
  LiveMediaBuild: Ubuntu 9.10 Karmic Koala - Alpha i386 (20090722.2)
  Package: nautilus 1:2.27.4-0ubuntu4
  ProcEnviron:
   PATH=(custom, no user)
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcVersionSignature: Ubuntu 2.6.31-5.24-generic
  SourcePackage: nautilus
  Uname: Linux 2.6.31-5-generic i686

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

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


[Desktop-packages] [Bug 1246683] Re: Middle button does not work for scrolling

2015-02-01 Thread Rafael Nonato
I'm also using `xserver-xorg-input-evdev` from the
[ppa](https://launchpad.net/~bjornt/+archive/ubuntu/evdev)

One of the problems with this package is that it doesn't turn the
trackpad off while you're typing, resulting in lots of accidental
clicks.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xserver-xorg-input-evdev in Ubuntu.
https://bugs.launchpad.net/bugs/1246683

Title:
  Middle button does not work for scrolling

Status in xserver-xorg-input-evdev package in Ubuntu:
  Incomplete

Bug description:
  With my Lenovo T440s laptop the Trackpad/Trackpoint laptop scrolling
  does not work when pressing middle button + moving the Trackpoint.
  evdev seems to be set correctly ( http://paste.ubuntuusers.de/416732/
  ). Middle button itself works fine for middle clicks just no
  scrolling.

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
  Uname: Linux 3.12.0-031200rc7-generic x86_64
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: amd64
  Date: Thu Oct 31 12:36:14 2013
  InstallationDate: Installed on 2013-10-17 (13 days ago)
  InstallationMedia: Xubuntu 13.10 Saucy Salamander - Release amd64 (20131016)
  MarkForUpload: True
  SourcePackage: xserver-xorg-input-evdev
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-evdev/+bug/1246683/+subscriptions

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


[Desktop-packages] [Bug 60448] Re: .xsession-errors file grows out of control saturates disk space

2015-02-01 Thread Johnny Ljunggren
I also stumbled across this thread as well when my .xsession-errors file
filled up my harddrive completely, twice...

Just like to shed some extra light on this.

First of all, I'm running a CentOS installation atm, and am also bitten.
So this is not a distribution or desktop specific error.

There are several posts telling people to delete the file, or have it
automatically be rotated. However, that will not work unless you also
log out, as there are many processes keeping the file open for future
error messages and the OS will not free the space until all processes
that hold the file have closed it. This might explain some posts saying
that the disk space keeps getting eaten up even after deleting the file.

As we will probably never be able to trust all programmers to handle error 
output in a suitable manner, we need a common solution that would also handle 
misbehaving programs. As someone else mentioned, syslog/messages already 
handles this with 
 last message repeated X times
Every program writing to syslog do that through a common API. 'someone' with 
influence need to come up with a similar solution and force every program to 
use that for user/desktop error reports as well. That is the only long term 
solution.

Anyway, here are the possible solutions as of now:
1. Log out and in periodically to prevent the file to grow too large. (As I 
seldom do that, and the systems I run never do, that is not a suitable solution 
for me)
2. Have messages normally going to .xsession-errors go to /dev/null instead. 
This can be done by altering /etc/X11/xinit/Xsession (at least on my system). 
Of course, this removes the possibility of ever discovering there is a problem, 
but at least I can keep my hard drive to myself
3. Wait for someone to make a proper API and have all programs use that for 
error output

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

Title:
  .xsession-errors file grows out of control  saturates disk space

Status in gdm package in Ubuntu:
  Triaged
Status in kdebase package in Ubuntu:
  Confirmed
Status in xinit source package in Dapper:
  Won't Fix

Bug description:
  Hi,

  I'm running Kubuntu Dapper, freshly dist-upgraded, on a Compaq
  Presario V2610CA laptop, with no particular esoteric configuration.

  In the past 2 weeks, my disk space has been saturated **TWICE**, i.e.
  up to 100% occ. on a 60 GB disk with 40 GB previously free, as
  reported by the df -h command (in fact app. 10 MB was still
  available, just enough to be able to boot/login!).  The cause of these
  events is what seems an ever-growing .xsession-errors file in one user
  directory. i.e. /home/user.  After a quick search on Google, I've
  found 2 similar reports (one concerning Dapper, the other OpenSuse):

  http://www.nabble.com/X-error-log-t1364627.html

  http://lists.opensuse.org/opensuse/2005-10/msg00044.html

  
  However, I didn't find anything related to this problem on Launchpad...

  It 's quite possible that something is going wrong with my system and
  is filling the .xsession-errors file with various reports.  I did not
  have the chance to pinpoint what's going wrong since my only concern
  was to prevent my system from completely crashing.  That's why I
  deleted the file without trying to look at its content (my system was
  saturated to a point that I could not receive one simple e-mail, Kmail
  complaining about the lack of disk space...).  The only thing I know
  is that since 2 weeks, I use more frequently Skype and I have created
  a second user account for my wife to be able to manger her e-mails
  with Kmail and browse the Web with Konqueror a little bit.  Nothing so
  complex or heavy...

  Anyway, this report is not about what's going wrong with my system,
  but instead about the fact that an error-log file, like .xsession-
  errors, that is supposed to be useful to track problems, should not be
  the cause of a major critical problem like the lack of disk space!  I
  don't know what would be a satifying solution, but in my case I've set
  up a script to erase this file in root and all users directory at each
  hour, by putting an executable file with this content in
  /etc/cron.hourly:

  rm /home/*/.xsession-errors*
  rm /root/.xsession-errors*

  Thanks for your attention.

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

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


[Desktop-packages] [Bug 1416894] [NEW] Remmina keeps crashing when using TeamViewer

2015-02-01 Thread Lonnie Lee Best
Public bug reported:

These stupid crash report offer no way to copy and paste the details of a crash 
report so I'm providing this screen-shot:
http://neartalk.com/ss/2015-02-01_020_1861x1054.png

I actually use Remmina to do a lot of important work. Lately I've had to
RDP into Windows desktops that have TeamViewer running in them, in order
to collaborate with others.

Every 5 to 10 minutes the session is crashing. TeamViewer might be
causing these disconnects, but it shouldn't; Remmina should be resilient
enough to stay connect no matter what TeamViewer is doing.

After I lose connection, I'm able to connect right back and pick up
where I left off. TeamViewer itself is not crashing. Remmina is just
crashing and I have to reconnect.

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

** Attachment added: _usr_bin_remmina.1000.crash
   
https://bugs.launchpad.net/bugs/1416894/+attachment/4309970/+files/_usr_bin_remmina.1000.crash

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

Title:
  Remmina keeps crashing when using TeamViewer

Status in remmina package in Ubuntu:
  New

Bug description:
  These stupid crash report offer no way to copy and paste the details of a 
crash report so I'm providing this screen-shot:
  http://neartalk.com/ss/2015-02-01_020_1861x1054.png

  I actually use Remmina to do a lot of important work. Lately I've had
  to RDP into Windows desktops that have TeamViewer running in them, in
  order to collaborate with others.

  Every 5 to 10 minutes the session is crashing. TeamViewer might be
  causing these disconnects, but it shouldn't; Remmina should be
  resilient enough to stay connect no matter what TeamViewer is doing.

  After I lose connection, I'm able to connect right back and pick up
  where I left off. TeamViewer itself is not crashing. Remmina is just
  crashing and I have to reconnect.

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

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


[Desktop-packages] [Bug 577956] Re: Missing retry button for network connections

2015-02-01 Thread Bug Watch Updater
** Changed in: nautilus
   Status: New = Incomplete

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

Title:
  Missing retry button for network connections

Status in Nautilus:
  Incomplete
Status in nautilus package in Ubuntu:
  Triaged

Bug description:
  Binary package hint: nautilus

  Steps to reproduce:

  1. Connect to slow/limited FTP
  2. Copy large amount of files to FTP
  3. During step 2 switch LAN cable off (or simple - turn off internet).

  Nautilus will report about 'Connection time out error for file
  FILE.EXT.  There will be only 3 buttons: Cancel, Skip All, Skip. Where
  is Repeat button? I want also upload FILE.EXT, but there is only
  option to skip this file or cancel operation...

  Nautilus version: 1:2.30.0-0ubuntu4
  Operating system: Ubuntu 10.04 LTS 0.04

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

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


[Desktop-packages] [Bug 1373808] Re: [UX301LAA, Realtek ALC282, Black Headphone Out, Left] Microphone in headset not detected

2015-02-01 Thread Claes
** Summary changed:

- [UX301LAA, Realtek ALC282, Black Headphone Out, Left] Microphone problem
+ [UX301LAA, Realtek ALC282, Black Headphone Out, Left] Microphone in headset 
not detected

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

Title:
  [UX301LAA, Realtek ALC282, Black Headphone Out, Left] Microphone in
  headset not detected

Status in alsa-driver package in Ubuntu:
  New

Bug description:
  I asked my question on askubuntu.com, and it was suggested that my
  problem was a bug, so reporting here.

  According to the specs
  
(http://www.asus.com/us/Notebooks_Ultrabooks/ASUS_ZENBOOK_UX301LA/specifications/),
  my laptop has a Microphone-in/Headphone-out jack.

  I also have two different headsets, both of which works just fine as a
  headset when used with my phone.

  However, Ubuntu doesn't appear to recognize the headset as having a
  microphone.

  Under Sound and the Output tab, the only item listed changes from
  Speakers Built-in Audio to Headphones Built-in Audio when
  connected.

  The input tab shows no reaction at all to the headset being connected.
  It lists Microphone Build-in Audio and Analog input Built-in
  Audio. Both the input options clearly take audio from the computers
  built in microphone, rather the headsets. Tapping the laptop gives
  large spikes on the Input level indicator, while tapping the
  microphone on the headset gives little to no response.

  What can I do to get the headset recognized?

  $ lspci -k | grep -A2 Audio
  00:03.0 Audio device: Intel Corporation Haswell-ULT HD Audio Controller (rev 
09)
  Subsystem: Intel Corporation Device 2010
  Kernel driver in use: snd_hda_intel
  --
  00:1b.0 Audio device: Intel Corporation Lynx Point-LP HD Audio Controller 
(rev 04)
  Subsystem: ASUSTeK Computer Inc. Device 13bd
  Kernel driver in use: snd_hda_intel

  $ lsb_release -rd
  Description:  Ubuntu 14.04.1 LTS
  Release:  14.04

  $ apt-cache policy alsa-base
  alsa-base:
Installed: 1.0.25+dfsg-0ubuntu4
Candidate: 1.0.25+dfsg-0ubuntu4
Version table:
   *** 1.0.25+dfsg-0ubuntu4 0
  500 http://se.archive.ubuntu.com/ubuntu/ trusty/main amd64 Packages
  100 /var/lib/dpkg/status

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: alsa-base 1.0.25+dfsg-0ubuntu4
  ProcVersionSignature: Ubuntu 3.13.0-36.63-generic 3.13.11.6
  Uname: Linux 3.13.0-36-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.4
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  letharion   2923 F pulseaudio
   /dev/snd/pcmC1D0c:   letharion   2923 F...m pulseaudio
   /dev/snd/pcmC1D0p:   letharion   2923 F...m pulseaudio
   /dev/snd/controlC0:  letharion   2923 F pulseaudio
  CurrentDesktop: Unity
  Date: Thu Sep 25 10:22:36 2014
  PackageArchitecture: all
  SourcePackage: alsa-driver
  Symptom: audio
  Symptom_AlsaPlaybackTest: ALSA playback test through plughw:PCH successful
  Symptom_Card: Built-in Audio - HDA Intel PCH
  Symptom_Jack: Black Headphone Out, Left
  Symptom_PulsePlaybackTest: PulseAudio playback test successful
  Symptom_Type: Only some of outputs are working
  Title: [UX301LAA, Realtek ALC282, Black Headphone Out, Left] Playback problem
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 12/31/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: UX301LAA.206
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: UX301LAA
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrUX301LAA.206:bd12/31/2013:svnASUSTeKCOMPUTERINC.:pnUX301LAA:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnUX301LAA:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: UX301LAA
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.
  mtime.conffile..etc.modprobe.d.alsa.base.conf: 2014-09-24T22:41:16.052566

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

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


[Desktop-packages] [Bug 1357749] Re: Blank DVD reporting 2.0 Kb capacity

2015-02-01 Thread LeStrata
output of udisksctl info -b /dev/sr0
/org/freedesktop/UDisks2/block_devices/sr0:
  org.freedesktop.UDisks2.Block:
Configuration:  []
CryptoBackingDevice:'/'
Device: /dev/sr0
DeviceNumber:   2816
Drive:  
'/org/freedesktop/UDisks2/drives/TSSTcorp_CDDVDW_SH_224BB_R8WS6GBCA012JF'
HintAuto:   true
HintIconName:   
HintIgnore: false
HintName:   
HintPartitionable:  false
HintSymbolicIconName:   
HintSystem: false
Id: by-label-Ubuntu\x2014.04.1\x20LTS\x20i386
IdLabel:Ubuntu 14.04.1 LTS i386
IdType: iso9660
IdUUID: 
IdUsage:filesystem
IdVersion:  
MDRaid: '/'
MDRaidMember:   '/'
PreferredDevice:/dev/sr0
ReadOnly:   true
Size:   1034944512
Symlinks:   /dev/cdrom

/dev/disk/by-id/ata-TSSTcorp_CDDVDW_SH-224BB_R8WS6GBCA012JF

/dev/disk/by-label/Ubuntu\x2014.04.1\x20LTS\x20i386
  org.freedesktop.UDisks2.Filesystem:
MountPoints:/media/thomas/Ubuntu 14.04.1 LTS i386

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

Title:
  Blank DVD reporting 2.0 Kb capacity

Status in udisks2 package in Ubuntu:
  Incomplete

Bug description:
  Using Ubuntu 14.4LTS on AMD 64 HP Pavilion g7 laptop. Tried to burn a
  new 14.04.1-desktop-amd64 .iso image using startup disk creator. Put
  blank DVD in drive and get report that it is already mounted. Two DVD
  icons are showen on task bar at left side of screen. Displaying DVD
  info get report that DVD size is 2.0Kb. Unable to select DVD drive to
  burn image.

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

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


[Desktop-packages] [Bug 1416891] Re: Update to 1.20.3

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

** Changed in: gvfs (Ubuntu Trusty)
   Status: New = Confirmed

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

Title:
  Update to 1.20.3

Status in gvfs package in Ubuntu:
  Fix Released
Status in gvfs source package in Trusty:
  Confirmed

Bug description:
  Ubuntu 14.04 LTS currently contains 1.20.1. There have been stable
  updates since then.

  The maintainer has requested we update:
  https://lists.ubuntu.com/archives/ubuntu-devel/2015-February/038668.html

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

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


[Desktop-packages] [Bug 1416891] Re: Update to 1.20.3

2015-02-01 Thread Robert Ancell
Major changes in 1.20.3
===
* Fix several memory leaks
* afc: Force unmount properly
* afc: Add version detection for newer iOS
* afp: Fix a race that caused hangs
* afp  ftp: Handle idle connections better
* ftp: Fix CHMOD against some servers
* archive: Fix a couple of segfaults on certain archives
* gphoto: Set mtime when copying to a local disk
* Several smaller bugfixes

Major changes in 1.20.2
===
* afc: Fix problems when mount devices with older iOS
* fuse: Fix settings file permissions
* Translation updates

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

Title:
  Update to 1.20.3

Status in gvfs package in Ubuntu:
  Fix Released
Status in gvfs source package in Trusty:
  Confirmed

Bug description:
  Ubuntu 14.04 LTS currently contains 1.20.1. There have been stable
  updates since then.

  The maintainer has requested we update:
  https://lists.ubuntu.com/archives/ubuntu-devel/2015-February/038668.html

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

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


[Desktop-packages] [Bug 1293602] Re: gvfsd-mtp crashed with SIGSEGV in libusb_submit_transfer()

2015-02-01 Thread Robert Ancell
** Information type changed from Private to Public

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

Title:
  gvfsd-mtp crashed with SIGSEGV in libusb_submit_transfer()

Status in gvfs package in Ubuntu:
  Confirmed

Bug description:
  gvfsd-mtp crashed with SIGSEGV in libusb_submit_transfer()

  ProblemType: Crash
  DistroRelease: Ubuntu 14.04
  Package: gvfs-backends 1.19.90-1ubuntu1
  ProcVersionSignature: Ubuntu 3.13.0-17.37-generic 3.13.6
  Uname: Linux 3.13.0-17-generic i686
  ApportVersion: 2.13.3-0ubuntu1
  Architecture: i386
  CrashCounter: 1
  CurrentDesktop: Unity
  Date: Mon Mar 17 15:17:04 2014
  ExecutablePath: /usr/lib/gvfs/gvfsd-mtp
  InstallationDate: Installed on 2014-03-14 (3 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  ProcCmdline: /usr/lib/gvfs/gvfsd-mtp --spawner :1.6 /org/gtk/gvfs/exec_spaw/7
  ProcEnviron:
   XDG_RUNTIME_DIR=set
   SHELL=/bin/bash
   LANGUAGE=en_US:en
   PATH=(custom, no user)
   LANG=en_US.UTF-8
  SegvAnalysis:
   Segfault happened at: 0xb6fec1e8 libusb_submit_transfer+24:mov
0x24(%eax),%eax
   PC (0xb6fec1e8) ok
   source 0x24(%eax) (0x707a0875) not located in a known VMA region (needed 
readable region)!
   destination %eax ok
   Stack memory exhausted (SP below stack segment)
  SegvReason: reading unknown VMA
  Signal: 11
  SourcePackage: gvfs
  StacktraceTop:
   libusb_submit_transfer () from /lib/i386-linux-gnu/libusb-1.0.so.0
   ?? () from /lib/i386-linux-gnu/libusb-1.0.so.0
   ?? () from /usr/lib/i386-linux-gnu/libmtp.so.9
   LIBMTP_Read_Event () from /usr/lib/i386-linux-gnu/libmtp.so.9
   ?? ()
  Title: gvfsd-mtp crashed with SIGSEGV in libusb_submit_transfer()
  UpgradeStatus: Upgraded to trusty on 2014-03-14 (2 days ago)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo

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

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


[Desktop-packages] [Bug 1277775] Re: gvfsd-trash crashed with SIGABRT in g_thread_abort()

2015-02-01 Thread Robert Ancell
** Information type changed from Private to Public

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

Title:
  gvfsd-trash crashed with SIGABRT in g_thread_abort()

Status in gvfs package in Ubuntu:
  Confirmed

Bug description:
  No idea how I triggered this one, but maybe the backtrace will be
  useful.

  ProblemType: Crash
  DistroRelease: Ubuntu 14.04
  Package: gvfs-daemons 1.19.5-0ubuntu1
  ProcVersionSignature: Ubuntu 3.13.0-7.26-generic 3.13.1
  Uname: Linux 3.13.0-7-generic x86_64
  ApportVersion: 2.13.2-0ubuntu2
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Fri Feb  7 18:29:53 2014
  ExecutablePath: /usr/lib/gvfs/gvfsd-trash
  InstallationDate: Installed on 2012-12-09 (425 days ago)
  InstallationMedia: Ubuntu 13.04 Raring Ringtail - Alpha amd64 (20121209)
  ProcCmdline: /usr/lib/gvfs/gvfsd-trash --spawner :1.3 
/org/gtk/gvfs/exec_spaw/0
  ProcEnviron:
   XDG_RUNTIME_DIR=set
   SHELL=/bin/bash
   LANGUAGE=en_CA:en
   PATH=(custom, user)
   LANG=en_CA.UTF-8
  Signal: 6
  SourcePackage: gvfs
  StacktraceTop:
   ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
   g_mutex_lock () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
   ?? () from /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0
   g_main_context_dispatch () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
   ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
  Title: gvfsd-trash crashed with SIGABRT in g_mutex_lock()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dialout dip lpadmin plugdev sambashare sbuild sudo

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

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


[Desktop-packages] [Bug 1378188] Re: [GNOME3 Staging PPA] strange shadow rendered where client-side decorations are used

2015-02-01 Thread Robert Ancell
** Changed in: xserver-xorg-video-intel (Ubuntu)
   Status: Confirmed = Triaged

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

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xserver-xorg-video-intel in Ubuntu.
https://bugs.launchpad.net/bugs/1378188

Title:
  [GNOME3 Staging PPA] strange shadow rendered where client-side
  decorations are used

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

Bug description:
  [Impact]
  The Intel video driver has a bug that can cause to incorrectly draw certain 
trapezoids. This is visible when using client side decorations in GNOME 3 (see 
attached screenshots).

  [Test Case]
  Run GNOME 3 with client side decorations on Intel hardware.
  Observed result:
  Shadow under window is missing corners.
  Expected result:
  Shadow looks correct.

  [Regression potential]
  Low. The fix is from upstream and just changes the logic error in the 
CompositeTrapezoids routine.

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

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


[Desktop-packages] [Bug 1414256] Re: split wayland session into its own package

2015-02-01 Thread Robert Ancell
** Changed in: gnome-session (Ubuntu)
   Status: New = Triaged

** Changed in: gnome-session (Ubuntu)
   Importance: Undecided = Wishlist

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

Title:
  split wayland session into its own package

Status in Ubuntu GNOME:
  New
Status in gnome-session package in Ubuntu:
  Triaged

Bug description:
  Ubuntu GNOME would like to make available an experimental wayland
  session, since that is mostly working now. However we don't want to
  ship it by default like is currently done in Debian, I don't think its
  quite that ready.

  This patch creates a new gnome-session-wayland package, which is
  incidentally is similar to the way its packaged in Fedora

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: gnome-session 3.14.0-2ubuntu2
  ProcVersionSignature: Ubuntu 3.18.0-9.10-generic 3.18.2
  Uname: Linux 3.18.0-9-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.15.1-0ubuntu2
  Architecture: amd64
  CurrentDesktop: GNOME
  Date: Sat Jan 24 13:51:23 2015
  InstallationDate: Installed on 2012-09-23 (853 days ago)
  InstallationMedia: Ubuntu GNOME Remix 12.10 Quantal Quetzal - Alpha 
amd64(20120922)
  PackageArchitecture: all
  SourcePackage: gnome-session
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Desktop-packages] [Bug 1403149] Re: Unable to mount OSX Yosemite causing excessive (~25%) CPU usage and moderate desktop sluggishness

2015-02-01 Thread Christopher M. Penalver
Ross Lagerwall / Sebastien Bacher, thank you for your attention to this
issue.

While I had both SMB and AFP checked in OS X Sharing at the time of
reproduction (with Windows sharing disabled), I've upgraded to Utopic
since then (this mitigated issues encountered with my environment such
as this one, virtualbox crashes, remmina crashes, among other issues)
and so far I cannot reproduce this under any permutation of enabling
SMB, AFP, or Windows sharing for a user account.

apt-cache policy gvfs
gvfs:
  Installed: 1.20.2-1ubuntu3
  Candidate: 1.20.2-1ubuntu3
  Version table:
 *** 1.20.2-1ubuntu3 0
500 http://archive.ubuntu.com/ubuntu/ utopic-proposed/main amd64 
Packages
100 /var/lib/dpkg/status
 1.20.2-1ubuntu2 0
500 http://us.archive.ubuntu.com/ubuntu/ utopic/main amd64 Packages

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

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

Title:
  Unable to mount OSX Yosemite causing excessive (~25%) CPU usage and
  moderate desktop sluggishness

Status in GVFS:
  Fix Released
Status in gvfs package in Ubuntu:
  Fix Released

Bug description:
  1) lsb_release -rd
  Description:  Ubuntu 14.04.1 LTS
  Release:  14.04

  2) apt-cache policy gvfs
  gvfs:
    Installed: 1.20.1-1ubuntu1
    Candidate: 1.20.1-1ubuntu1
    Version table:
   *** 1.20.1-1ubuntu1 0
  500 http://us.archive.ubuntu.com/ubuntu/ trusty/main amd64 Packages
  100 /var/lib/dpkg/status

  3) What is expected to happen is when one mounts a shared folder from
  OSX Yosemite, the connection is unmountable, and doesn't cause
  excessive (~25%) CPU usage.

  4) What happens instead is the mount is unmountable, and is consuming
  (~25%) CPU as per the attached screenshot. This causes moderate
  desktop sluggishness. Tried restarting OSX, no change.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: gvfs 1.20.1-1ubuntu1
  ProcVersionSignature: Ubuntu 3.16.0-28.37~14.04.1-generic 3.16.7-ckt1
  Uname: Linux 3.16.0-28-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.6
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Tue Dec 16 11:28:39 2014
  InstallationDate: Installed on 2014-06-21 (177 days ago)
  InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Release amd64 (20140417)
  SourcePackage: gvfs
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Desktop-packages] [Bug 60448] Re: .xsession-errors file grows out of control saturates disk space

2015-02-01 Thread Manuel López-Ibáñez
Someone already did, and it is called journald: 
http://0pointer.net/blog/projects/journalctl.html
Recent versions of gdm, kdm and dbus already use the journald by default to 
replace .xsession-errors, and thus avoid all these problems. I guess we only 
have to wait for Ubuntu to catch up to Fedora and OpenSuse. (I don't know about 
CentOS, but it unavoidable that journald will be the default there eventually)

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

Title:
  .xsession-errors file grows out of control  saturates disk space

Status in gdm package in Ubuntu:
  Triaged
Status in kdebase package in Ubuntu:
  Confirmed
Status in xinit source package in Dapper:
  Won't Fix

Bug description:
  Hi,

  I'm running Kubuntu Dapper, freshly dist-upgraded, on a Compaq
  Presario V2610CA laptop, with no particular esoteric configuration.

  In the past 2 weeks, my disk space has been saturated **TWICE**, i.e.
  up to 100% occ. on a 60 GB disk with 40 GB previously free, as
  reported by the df -h command (in fact app. 10 MB was still
  available, just enough to be able to boot/login!).  The cause of these
  events is what seems an ever-growing .xsession-errors file in one user
  directory. i.e. /home/user.  After a quick search on Google, I've
  found 2 similar reports (one concerning Dapper, the other OpenSuse):

  http://www.nabble.com/X-error-log-t1364627.html

  http://lists.opensuse.org/opensuse/2005-10/msg00044.html

  
  However, I didn't find anything related to this problem on Launchpad...

  It 's quite possible that something is going wrong with my system and
  is filling the .xsession-errors file with various reports.  I did not
  have the chance to pinpoint what's going wrong since my only concern
  was to prevent my system from completely crashing.  That's why I
  deleted the file without trying to look at its content (my system was
  saturated to a point that I could not receive one simple e-mail, Kmail
  complaining about the lack of disk space...).  The only thing I know
  is that since 2 weeks, I use more frequently Skype and I have created
  a second user account for my wife to be able to manger her e-mails
  with Kmail and browse the Web with Konqueror a little bit.  Nothing so
  complex or heavy...

  Anyway, this report is not about what's going wrong with my system,
  but instead about the fact that an error-log file, like .xsession-
  errors, that is supposed to be useful to track problems, should not be
  the cause of a major critical problem like the lack of disk space!  I
  don't know what would be a satifying solution, but in my case I've set
  up a script to erase this file in root and all users directory at each
  hour, by putting an executable file with this content in
  /etc/cron.hourly:

  rm /home/*/.xsession-errors*
  rm /root/.xsession-errors*

  Thanks for your attention.

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

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


[Desktop-packages] [Bug 1416876] Re: nvidia-331-updates-uvm 331.113-0ubuntu0.0.4: nvidia-331-updates-uvm kernel module failed to build

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

** Changed in: nvidia-graphics-drivers-331-updates (Ubuntu)
   Status: New = Confirmed

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to nvidia-graphics-drivers-331-updates in
Ubuntu.
https://bugs.launchpad.net/bugs/1416876

Title:
  nvidia-331-updates-uvm 331.113-0ubuntu0.0.4: nvidia-331-updates-uvm
  kernel module failed to build

Status in nvidia-graphics-drivers-331-updates package in Ubuntu:
  Confirmed

Bug description:
  I was just updating as usual: 

  
  [sudo] password for kevin: 
  Reading package lists... Done
  Building dependency tree   
  Reading state information... Done
  Calculating upgrade... Done
  The following NEW packages will be installed:
linux-headers-3.13.0-45 linux-headers-3.13.0-45-generic
linux-image-3.13.0-45-generic linux-image-extra-3.13.0-45-generic
  The following packages will be upgraded:
linux-generic linux-headers-generic linux-image-generic linux-libc-dev
  4 upgraded, 4 newly installed, 0 to remove and 0 not upgraded.
  Need to get 0 B/62.3 MB of archives.
  After this operation, 271 MB of additional disk space will be used.
  Do you want to continue? [Y/n] y
  Selecting previously unselected package linux-image-3.13.0-45-generic.
  (Reading database ... 296282 files and directories currently installed.)
  Preparing to unpack .../linux-image-3.13.0-45-generic_3.13.0-45.74_amd64.deb 
...
  Done.
  Unpacking linux-image-3.13.0-45-generic (3.13.0-45.74) ...
  Selecting previously unselected package linux-image-extra-3.13.0-45-generic.
  Preparing to unpack 
.../linux-image-extra-3.13.0-45-generic_3.13.0-45.74_amd64.deb ...
  Unpacking linux-image-extra-3.13.0-45-generic (3.13.0-45.74) ...
  Preparing to unpack .../linux-generic_3.13.0.45.52_amd64.deb ...
  Unpacking linux-generic (3.13.0.45.52) over (3.13.0.44.51) ...
  Preparing to unpack .../linux-image-generic_3.13.0.45.52_amd64.deb ...
  Unpacking linux-image-generic (3.13.0.45.52) over (3.13.0.44.51) ...
  Selecting previously unselected package linux-headers-3.13.0-45.
  Preparing to unpack .../linux-headers-3.13.0-45_3.13.0-45.74_all.deb ...
  Unpacking linux-headers-3.13.0-45 (3.13.0-45.74) ...
  Selecting previously unselected package linux-headers-3.13.0-45-generic.
  Preparing to unpack 
.../linux-headers-3.13.0-45-generic_3.13.0-45.74_amd64.deb ...
  Unpacking linux-headers-3.13.0-45-generic (3.13.0-45.74) ...
  Preparing to unpack .../linux-headers-generic_3.13.0.45.52_amd64.deb ...
  Unpacking linux-headers-generic (3.13.0.45.52) over (3.13.0.44.51) ...
  Preparing to unpack .../linux-libc-dev_3.13.0-45.74_amd64.deb ...
  Unpacking linux-libc-dev:amd64 (3.13.0-45.74) over (3.13.0-44.73) ...
  Setting up linux-image-3.13.0-45-generic (3.13.0-45.74) ...
  Running depmod.
  update-initramfs: deferring update (hook will be called later)
  Examining /etc/kernel/postinst.d.
  run-parts: executing /etc/kernel/postinst.d/apt-auto-removal 
3.13.0-45-generic /boot/vmlinuz-3.13.0-45-generic
  run-parts: executing /etc/kernel/postinst.d/dkms 3.13.0-45-generic 
/boot/vmlinuz-3.13.0-45-generic
  Error! Bad return status for module build on kernel: 3.13.0-45-generic 
(x86_64)
  Consult /var/lib/dkms/nvidia-331-updates-uvm/331.113/build/make.log for more 
information.
  Error! Bad return status for module build on kernel: 3.13.0-45-generic 
(x86_64)
  Consult /var/lib/dkms/nvidia-331-updates/331.113/build/make.log for more 
information.
  run-parts: executing /etc/kernel/postinst.d/initramfs-tools 3.13.0-45-generic 
/boot/vmlinuz-3.13.0-45-generic
  update-initramfs: Generating /boot/initrd.img-3.13.0-45-generic
  run-parts: executing /etc/kernel/postinst.d/pm-utils 3.13.0-45-generic 
/boot/vmlinuz-3.13.0-45-generic
  run-parts: executing /etc/kernel/postinst.d/update-notifier 3.13.0-45-generic 
/boot/vmlinuz-3.13.0-45-generic
  run-parts: executing /etc/kernel/postinst.d/zz-update-grub 3.13.0-45-generic 
/boot/vmlinuz-3.13.0-45-generic
  Generating grub configuration file ...
  Warning: Setting GRUB_TIMEOUT to a non-zero value when GRUB_HIDDEN_TIMEOUT is 
set is no longer supported.
  Found linux image: /boot/vmlinuz-3.13.0-45-generic
  Found initrd image: /boot/initrd.img-3.13.0-45-generic
  Found linux image: /boot/vmlinuz-3.13.0-44-generic
  Found initrd image: /boot/initrd.img-3.13.0-44-generic
  Found memtest86+ image: /boot/memtest86+.elf
  Found memtest86+ image: /boot/memtest86+.bin
No volume groups found
  done
  Setting up linux-image-extra-3.13.0-45-generic (3.13.0-45.74) ...
  run-parts: executing /etc/kernel/postinst.d/apt-auto-removal 
3.13.0-45-generic /boot/vmlinuz-3.13.0-45-generic
  run-parts: executing /etc/kernel/postinst.d/dkms 3.13.0-45-generic 

[Desktop-packages] [Bug 1416891] Re: Update to 1.20.3

2015-02-01 Thread Ross Lagerwall
Thanks for this.

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

Title:
  Update to 1.20.3

Status in gvfs package in Ubuntu:
  Fix Released
Status in gvfs source package in Trusty:
  Confirmed

Bug description:
  [Impact]
  Ubuntu 14.04 LTS currently contains 1.20.1. There have been stable updates 
since then. The maintainer has requested we update [1].

  [Test Case]
  Update to 1.20.3. Still should keep working as before.

  [Regression Potential]
  Some risk of other bugs being created by changes. Code inspection shows 
changes are relatively simple.

  [1] https://lists.ubuntu.com/archives/ubuntu-
  devel/2015-February/038668.html

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

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


[Desktop-packages] [Bug 1364630] Re: init: Error while reading from descriptor: Broken pipe

2015-02-01 Thread Domar
Re #74:
The message also occurs on my freshly installed 14.10.
My system is working fine after this message too.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to nvidia-graphics-drivers-304 in Ubuntu.
https://bugs.launchpad.net/bugs/1364630

Title:
  init: Error while reading from descriptor: Broken pipe

Status in Upstart:
  Confirmed
Status in nvidia-graphics-drivers-304 package in Ubuntu:
  Confirmed

Bug description:
  [   16.934379] init: Error while reading from descriptor: Broken pipe

  ProblemType: Bug
  DistroRelease: Ubuntu 14.10
  Package: init 1.20ubuntu3
  ProcVersionSignature: Ubuntu 3.16.0-11.16-generic 3.16.1
  Uname: Linux 3.16.0-11-generic x86_64
  ApportVersion: 2.14.7-0ubuntu1
  Architecture: amd64
  CurrentDesktop: GNOME
  Date: Tue Sep  2 17:23:15 2014
  InstallationDate: Installed on 2014-04-27 (128 days ago)
  InstallationMedia: Ubuntu-GNOME 14.04 LTS Trusty Tahr - Release amd64 
(20140416.2)
  SourcePackage: init-system-helpers
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Desktop-packages] [Bug 1357749] [NEW] Blank DVD reporting 2.0 Kb capacity

2015-02-01 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

Using Ubuntu 14.4LTS on AMD 64 HP Pavilion g7 laptop. Tried to burn a
new 14.04.1-desktop-amd64 .iso image using startup disk creator. Put
blank DVD in drive and get report that it is already mounted. Two DVD
icons are showen on task bar at left side of screen. Displaying DVD info
get report that DVD size is 2.0Kb. Unable to select DVD drive to burn
image.

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

-- 
Blank DVD reporting 2.0 Kb capacity
https://bugs.launchpad.net/bugs/1357749
You received this bug notification because you are a member of Desktop 
Packages, which is subscribed to udisks2 in Ubuntu.

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


[Desktop-packages] [Bug 1378188] Re: [GNOME3 Staging PPA] strange shadow rendered where client-side decorations are used

2015-02-01 Thread Robert Ancell
** Description changed:

- When using apps where client-side decorations are being used, a strange
- shadow render appears below the window. Screenshots are attached. If
- CSDs are not being used, then shadows are rendered correctly.
+ [Impact]
+ The Intel video driver has a bug that can cause to incorrectly draw certain 
trapezoids. This is visible when using client side decorations in GNOME 3 (see 
attached screenshots).
  
- WORKAROUND: Remove the GNOME3 Staging PPA.
+ [Test Case]
+ Run GNOME 3 with client side decorations on Intel hardware.
+ Observed result:
+ Shadow under window is missing corners.
+ Expected result:
+ Shadow looks correct.
  
- ProblemType: Bug
- DistroRelease: Ubuntu 14.10
- Package: mutter 3.14.0-1ubuntu1~utopic1 [origin: 
LP-PPA-gnome3-team-gnome3-staging]
- ProcVersionSignature: Ubuntu 3.16.0-20.27-generic 3.16.3
- Uname: Linux 3.16.0-20-generic x86_64
- ApportVersion: 2.14.7-0ubuntu3
- Architecture: amd64
- CurrentDesktop: GNOME
- Date: Mon Oct  6 22:50:17 2014
- InstallationDate: Installed on 2014-06-13 (115 days ago)
- InstallationMedia: Ubuntu-GNOME 14.04 LTS Trusty Tahr - Release amd64 
(20140416.2)
- ProcEnviron:
-  TERM=xterm
-  PATH=(custom, no user)
-  XDG_RUNTIME_DIR=set
-  LANG=en_US.UTF-8
-  SHELL=/bin/bash
- SourcePackage: mutter
- UpgradeStatus: Upgraded to utopic on 2014-10-03 (3 days ago)
- ---
- ApportVersion: 2.14.7-0ubuntu8
- Architecture: amd64
- CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
- CompositorRunning: None
- CurrentDesktop: GNOME
- DistUpgraded: 2014-10-03 08:48:19,347 DEBUG enabling apt cron job
- DistroCodename: utopic
- DistroRelease: Ubuntu 14.10
- DistroVariant: ubuntu
- DkmsStatus:
-  vboxhost, 4.3.16, 3.13.0-35-generic, x86_64: installed
-  vboxhost, 4.3.16, 3.16.0-20-generic, x86_64: installed
-  vboxhost, 4.3.16, 3.16.0-21-generic, x86_64: installed
-  vboxhost, 4.3.16, 3.16.0-25-generic, x86_64: installed
- ExtraDebuggingInterest: Yes, if not too technical
- GraphicsCard:
-  Intel Corporation Atom Processor Z36xxx/Z37xxx Series Graphics  Display 
[8086:0f31] (rev 0c) (prog-if 00 [VGA controller])
-    Subsystem: Acer Incorporated [ALI] Device [1025:0845]
- InstallationDate: Installed on 2014-06-13 (171 days ago)
- InstallationMedia: Ubuntu-GNOME 14.04 LTS Trusty Tahr - Release amd64 
(20140416.2)
- MachineType: Acer E1-510P
- Package: xorg 1:7.7+7ubuntu2
- PackageArchitecture: amd64
- ProcEnviron:
-  TERM=xterm
-  PATH=(custom, no user)
-  XDG_RUNTIME_DIR=set
-  LANG=en_US.UTF-8
-  SHELL=/bin/bash
- ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.16.0-25-generic.efi.signed 
root=UUID=87cb643d-4e85-4be4-9864-0e13b0ed0382 ro quiet splash acpi_osi=Linux 
i915.invert_brightness=1 vt.handoff=7
- ProcVersionSignature: Ubuntu 3.16.0-25.33-generic 3.16.7
- Tags: third-party-packages utopic gnome3-ppa ubuntu
- Uname: Linux 3.16.0-25-generic x86_64
- UpgradeStatus: Upgraded to utopic on 2014-10-03 (59 days ago)
- UserGroups: adm cdrom dip libvirtd lpadmin plugdev sambashare sudo vboxusers
- _MarkForUpload: True
- dmi.bios.date: 04/07/2014
- dmi.bios.vendor: Acer
- dmi.bios.version: V2.11
- dmi.board.name: E1-510P
- dmi.board.vendor: Acer
- dmi.board.version: V2.11
- dmi.chassis.type: 10
- dmi.chassis.vendor: Acer
- dmi.chassis.version: Chassis Version
- dmi.modalias: 
dmi:bvnAcer:bvrV2.11:bd04/07/2014:svnAcer:pnE1-510P:pvrV2.11:rvnAcer:rnE1-510P:rvrV2.11:cvnAcer:ct10:cvrChassisVersion:
- dmi.product.name: E1-510P
- dmi.product.version: V2.11
- dmi.sys.vendor: Acer
- version.compiz: compiz N/A
- version.ia32-libs: ia32-libs N/A
- version.libdrm2: libdrm2 2.4.56-1
- version.libgl1-mesa-dri: libgl1-mesa-dri 10.3.0-0ubuntu3
- version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
- version.libgl1-mesa-glx: libgl1-mesa-glx 10.3.0-0ubuntu3
- version.xserver-xorg-core: xserver-xorg-core 2:1.16.0-1ubuntu1
- version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.0-1ubuntu2
- version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.4.0-2ubuntu2
- version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.914-1~exp1ubuntu4.1
- version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.11-1ubuntu2
- xserver.bootTime: Mon Dec  1 22:16:33 2014
- xserver.configfile: default
- xserver.errors:
- 
- xserver.logfile: /var/log/Xorg.0.log
- xserver.outputs:
-  product id4588
-  vendor AUO
- xserver.version: 2:1.16.0-1ubuntu1
+ [Regression potential]
+ Low. The fix is from upstream and just changes the logic error in the 
CompositeTrapezoids routine.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xserver-xorg-video-intel in Ubuntu.
https://bugs.launchpad.net/bugs/1378188

Title:
  [GNOME3 Staging PPA] strange shadow rendered where client-side
  decorations are used

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

Bug description:
  

[Desktop-packages] [Bug 1220426] Re: [nvidia-prime]Freeze while using touchpad

2015-02-01 Thread Deian
Bug confirmed on laptop ASUS U36JC with Nvidia GT218M [GeForce 310M].

Im on Ubuntu 14.10 and the provided debs caused the boot to fail, meaning that 
the system froze during boot.
I had to reinstall the original packages from a chroot environment in order to 
repair the system. Did anyone
experience these issue? 

I downloaded the xserver-xorg-core sources through apt and applied the patch 
but I am not sure how to build
the ubuntu-style debs.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1220426

Title:
  [nvidia-prime]Freeze while using touchpad

Status in X.Org X server:
  Confirmed
Status in xorg-server package in Ubuntu:
  Triaged

Bug description:
  Using Asus N43SL laptop as an example, with nvidia-prime installed, so
  the dedicated NVIDIA graphics card (GT 540m) is in use, once in a
  while, my screen will freeze when I use my touchpad.

  WORKAROUND: Use USB mouse.

  WORKAROUND: Uninstall nvidia-prime and use integrated graphics.

  WORKAROUND: Do a VT switch via Ctrl+Alt+F1 then Ctrl+Alt+F7.

  In the attached Xorg.0.log, you can see synaptics: ETPS/2 Elantech Touchpad: 
touchpad found each time I did a VT switch and regained control:
  
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1220426/+attachment/3801516/+files/Xorg.0.log

  The following upstream report has a patch that addresses this issue:
  https://bugs.freedesktop.org/show_bug.cgi?id=86288

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-server/+bug/1220426/+subscriptions

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


[Desktop-packages] [Bug 1357749] Re: Blank DVD reporting 2.0 Kb capacity

2015-02-01 Thread Martin Pitt
OK, unduplicating then. As cdrom_id is okay, I'm moving this one level
up so far. When that happens, can you please copypaste the output of
udisksctl info -b /dev/sr0 here? Thanks!

** This bug is no longer a duplicate of bug 1168742
   [udev] Disks are not unmounted when physical eject button is used

** Package changed: systemd (Ubuntu) = udisks2 (Ubuntu)

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

Title:
  Blank DVD reporting 2.0 Kb capacity

Status in udisks2 package in Ubuntu:
  Incomplete

Bug description:
  Using Ubuntu 14.4LTS on AMD 64 HP Pavilion g7 laptop. Tried to burn a
  new 14.04.1-desktop-amd64 .iso image using startup disk creator. Put
  blank DVD in drive and get report that it is already mounted. Two DVD
  icons are showen on task bar at left side of screen. Displaying DVD
  info get report that DVD size is 2.0Kb. Unable to select DVD drive to
  burn image.

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

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


[Desktop-packages] [Bug 606012] Re: Nautilus FTP will clear (0 bytes) files on server

2015-02-01 Thread Bug Watch Updater
** Changed in: gvfs
   Status: New = Fix Released

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

Title:
  Nautilus FTP will clear (0 bytes) files on server

Status in GVFS:
  Fix Released
Status in gvfs package in Ubuntu:
  Triaged

Bug description:
  Binary package hint: nautilus

  When working on a file using gedit and nautilus on a remote ftp
  server, files are sometimes clear out after I'm done editing the file.
  It seems to happen if the connect times out. Usually I find out when I
  browse to a page that I just did a bunch of work on to find that the
  page is now empty. The file that should have my content in it is now 0
  bytes. This is ubuntu 10.04.

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

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


[Desktop-packages] [Bug 1395547] Re: xfsettingsd and xfce4-volumed using a lot of CPU after screen lock / unlock

2015-02-01 Thread icyrock.com
I ran a strace on the xfsettingsd pid, logged out, logged in and I could
see a lot of these repeating:

poll([{fd=3, events=POLLIN|POLLOUT}], 1, 4294967295) = 1 ([{fd=3, 
revents=POLLOUT}])
writev(3, [{\20\0\3\0\3\0\0\0AltL, 12}, {NULL, 0}, {, 0}], 3) = 12
poll([{fd=3, events=POLLIN}], 1, 4294967295) = 1 ([{fd=3, revents=POLLIN}])
recvmsg(3, {msg_name(0)=NULL, 
msg_iov(1)=[{\1\0\213\346\0\0\0\0\232\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0,
 4096}], msg_controllen=0, msg_flags=0}, 0) = 32
recvmsg(3, 0x7fffc492a350, 0)   = -1 EAGAIN (Resource temporarily 
unavailable)
recvmsg(3, 0x7fffc492a350, 0)   = -1 EAGAIN (Resource temporarily 
unavailable)
poll([{fd=3, events=POLLIN|POLLOUT}], 1, 4294967295) = 1 ([{fd=3, 
revents=POLLOUT}])
writev(3, [{\20\0\5\0\n\0\0\0LevelThree\0\0, 20}, {NULL, 0}, {, 0}], 3) = 20
poll([{fd=3, events=POLLIN}], 1, 4294967295) = 1 ([{fd=3, revents=POLLIN}])
recvmsg(3, {msg_name(0)=NULL, 
msg_iov(1)=[{\1\0\214\346\0\0\0\0\233\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0,
 4096}], msg_controllen=0, msg_flags=0}, 0) = 32
recvmsg(3, 0x7fffc492a350, 0)   = -1 EAGAIN (Resource temporarily 
unavailable)
recvmsg(3, 0x7fffc492a350, 0)   = -1 EAGAIN (Resource temporarily 
unavailable)
poll([{fd=3, events=POLLIN|POLLOUT}], 1, 4294967295) = 1 ([{fd=3, 
revents=POLLOUT}])
writev(3, [{\20\0\3\0\4\0\0\0LAlt, 12}, {NULL, 0}, {, 0}], 3) = 12
poll([{fd=3, events=POLLIN}], 1, 4294967295) = 1 ([{fd=3, revents=POLLIN}])
recvmsg(3, {msg_name(0)=NULL, 
msg_iov(1)=[{\1\0\215\346\0\0\0\0\234\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0,
 4096}], msg_controllen=0, msg_flags=0}, 0) = 32
recvmsg(3, 0x7fffc492a350, 0)   = -1 EAGAIN (Resource temporarily 
unavailable)
recvmsg(3, 0x7fffc492a350, 0)   = -1 EAGAIN (Resource temporarily 
unavailable)

The values are different between the calls as you can see (though
usually similar), but they seem to be repeating endlessly, till the
system settles down several minutes down the road, when it all stops.

Not sure if relevant, let me know if I can provide any information that
could help track the issue down.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xserver-xorg-video-ati in Ubuntu.
https://bugs.launchpad.net/bugs/1395547

Title:
  xfsettingsd and xfce4-volumed using a lot of CPU after screen lock /
  unlock

Status in xfce4-settings package in Ubuntu:
  Confirmed
Status in xfce4-volumed package in Ubuntu:
  Confirmed
Status in xserver-xorg-video-ati package in Ubuntu:
  New

Bug description:
  Just upgraded to Xubuntu 14.10, had issues with fglrx (see
  http://askubuntu.com/questions/552795/xubuntu-14-10-upgrade-issues-
  with-fglrx), went back to radeon drivers. Now it looks to be OK,
  however after locking the screen using xflock4 and unlocking, I get
  these three processes using a lot of CPU (this is on 4-core Phenom II
  X4 N950):

PID USER  PR  NIVIRTRESSHR S  %CPU %MEM TIME+ COMMAND   

 
   1572 root  20   0  262892  56672  26480 R  89.7  1.4   6:48.70 Xorg  

 
   5025 usr   20   0  312116  11336   4632 R  36.9  0.3   0:17.42 
xfce4-volumed   
   
   5036 usr   20   0  327328  10556   5760 S  31.5  0.3   0:13.38 
xfsettingsd  

  Additional information:

  - Killing and restarting xfsettingsd and xfce4-volumed resolves the issue 
until next sleep cycle
  - When running only xfce4-volumed, but not xfsettingsd, the issue does not 
appear
  - This can be reproduced always. ATI Radeon Mobility HD 5650 video card
  - The CPU usage does not seem to go down after a while
  - If I got it correctly, it looks like some other processes are also going to 
high CPU usage after killing xfce4-volumed. I think I saw xfce4-xkb-plugin 
going to 95% CPU usage
  - The issue happens before unlock, i.e. locking then pressing a key to get a 
login dialog, then switching to vty1 and doing a top yields the above

  Not sure what else I should check / post that can be useful for
  troubleshooting, let me know.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.10
  Package: xfce4-settings 4.11.3-0ubuntu2
  ProcVersionSignature: Ubuntu 3.13.0-24.47-generic 3.13.9
  Uname: Linux 3.13.0-24-generic x86_64
  ApportVersion: 2.14.7-0ubuntu8
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Sun Nov 23 18:34:02 2014
  InstallationDate: Installed on 2014-04-24 (213 days ago)
  InstallationMedia: Xubuntu 14.04 LTS Trusty Tahr - Release amd64 
(20140416.2)
  SourcePackage: xfce4-settings
  UpgradeStatus: Upgraded to utopic on 2014-11-22 (0 days ago)

To manage notifications about this bug go to:

[Desktop-packages] [Bug 1416875] [NEW] apache-2.4.10 dies in reload

2015-02-01 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

net3# lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:Ubuntu 14.10
Release:14.10
Codename:   utopic

Different than
https://bugs.launchpad.net/ubuntu/+source/apache2/+bug/669005 which has
to do with php5-curl. I deinstalled php5-curl + had no effect.

Using trace8 provides no additional detail.

Unable to get apache to generate a core dump, even after reading many
articles + trying many command line incantations.

Someone tell me how to get a core dump + I'll post the stack trace of
failure.

Thanks.

** Affects: redland-bindings (Ubuntu)
 Importance: Undecided
 Status: New

-- 
apache-2.4.10 dies in reload
https://bugs.launchpad.net/bugs/1416875
You received this bug notification because you are a member of Desktop 
Packages, which is subscribed to redland-bindings in Ubuntu.

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


[Desktop-packages] [Bug 1416875] Re: apache-2.4.10 dies in reload

2015-02-01 Thread Robie Basak
Thank you for taking the time to report this bug and helping to make
Ubuntu better.

Reassinging to redland-bindings as you've identified the problem to be
there. Sorry, I don't have instructions to give you to collect a core
dump for Apache specifically.

** Package changed: apache2 (Ubuntu) = redland-bindings (Ubuntu)

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to redland-bindings in Ubuntu.
https://bugs.launchpad.net/bugs/1416875

Title:
  apache-2.4.10 dies in reload

Status in redland-bindings package in Ubuntu:
  New

Bug description:
  net3# lsb_release -a
  No LSB modules are available.
  Distributor ID:   Ubuntu
  Description:  Ubuntu 14.10
  Release:  14.10
  Codename: utopic

  Different than
  https://bugs.launchpad.net/ubuntu/+source/apache2/+bug/669005 which
  has to do with php5-curl. I deinstalled php5-curl + had no effect.

  Using trace8 provides no additional detail.

  Unable to get apache to generate a core dump, even after reading many
  articles + trying many command line incantations.

  Someone tell me how to get a core dump + I'll post the stack trace of
  failure.

  Thanks.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/redland-bindings/+bug/1416875/+subscriptions

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


[Desktop-packages] [Bug 1416925] [NEW] Internal hard disk partition cannot be mounted manually

2015-02-01 Thread Kevin
Public bug reported:

Error mounting system-managed device /dev/sdb2: Command-line `mount 
/mnt/usb-Hitachi_HDT725032VLA380_000FA200-0:0-part2' exited with non-zero 
exit status 14: The disk contains an unclean file system (0, 0).
Metadata kept in Windows cache, refused to mount.
Failed to mount '/dev/sdb2': Operation not permitted
The NTFS partition is in an unsafe state. Please resume and shutdown
Windows fully (no hibernation or fast restarting), or mount the volume
read-only with the 'ro' mount option.
 (udisks-error-quark, 0)

I am running this drive out of a hard drive enclosure. I have
reinstalled the drive, booted it up and allowed it to load fully. Once
prompted for password,  I shut it down normally. The drive was working
before i installed Ubuntu on a seperate hard drive.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: udisks2 2.1.3-1
ProcVersionSignature: Ubuntu 3.13.0-45.74-generic 3.13.11-ckt13
Uname: Linux 3.13.0-45-generic i686
ApportVersion: 2.14.1-0ubuntu3.6
Architecture: i386
CurrentDesktop: Unity
Date: Sun Feb  1 20:06:00 2015
EcryptfsInUse: Yes
InstallationDate: Installed on 2015-02-01 (0 days ago)
InstallationMedia: Ubuntu 14.04.1 LTS Trusty Tahr - Release i386 (20140722.2)
Lsusb:
 Bus 001 Device 005: ID 152d:2338 JMicron Technology Corp. / JMicron USA 
Technology Corp. JM20337 Hi-Speed USB to SATA  PATA Combo Bridge
 Bus 001 Device 002: ID 03f0:8711 Hewlett-Packard Deskjet 2050 J510
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
 Bus 002 Device 002: ID 0458:0007 KYE Systems Corp. (Mouse Systems) 
 Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
MachineType: HP Pavilion 06 D5468AT-ABA ALONPAV
ProcEnviron:
 LANGUAGE=en_US
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=set
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.13.0-45-generic 
root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=7
SourcePackage: udisks2
Symptom: storage
Title: Internal hard disk partition cannot be mounted manually
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 06/11/2007
dmi.bios.vendor: Phoenix Technologies, LTD
dmi.bios.version: 5.12
dmi.board.name: Nettle2
dmi.board.vendor: ECS
dmi.board.version: 1.0
dmi.chassis.type: 3
dmi.chassis.vendor: Hewlett-Packard
dmi.modalias: 
dmi:bvnPhoenixTechnologies,LTD:bvr5.12:bd06/11/2007:svnHPPavilion06:pnD5468AT-ABAALONPAV:pvr1331211RE101EXPLO0:rvnECS:rnNettle2:rvr1.0:cvnHewlett-Packard:ct3:cvr:
dmi.product.name: D5468AT-ABA ALONPAV
dmi.product.version: 1331211RE101EXPLO0
dmi.sys.vendor: HP Pavilion 06

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


** Tags: apport-bug i386 trusty

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

Title:
  Internal hard disk partition cannot be mounted manually

Status in udisks2 package in Ubuntu:
  New

Bug description:
  Error mounting system-managed device /dev/sdb2: Command-line `mount 
/mnt/usb-Hitachi_HDT725032VLA380_000FA200-0:0-part2' exited with non-zero 
exit status 14: The disk contains an unclean file system (0, 0).
  Metadata kept in Windows cache, refused to mount.
  Failed to mount '/dev/sdb2': Operation not permitted
  The NTFS partition is in an unsafe state. Please resume and shutdown
  Windows fully (no hibernation or fast restarting), or mount the volume
  read-only with the 'ro' mount option.
   (udisks-error-quark, 0)

  I am running this drive out of a hard drive enclosure. I have
  reinstalled the drive, booted it up and allowed it to load fully. Once
  prompted for password,  I shut it down normally. The drive was working
  before i installed Ubuntu on a seperate hard drive.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: udisks2 2.1.3-1
  ProcVersionSignature: Ubuntu 3.13.0-45.74-generic 3.13.11-ckt13
  Uname: Linux 3.13.0-45-generic i686
  ApportVersion: 2.14.1-0ubuntu3.6
  Architecture: i386
  CurrentDesktop: Unity
  Date: Sun Feb  1 20:06:00 2015
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2015-02-01 (0 days ago)
  InstallationMedia: Ubuntu 14.04.1 LTS Trusty Tahr - Release i386 
(20140722.2)
  Lsusb:
   Bus 001 Device 005: ID 152d:2338 JMicron Technology Corp. / JMicron USA 
Technology Corp. JM20337 Hi-Speed USB to SATA  PATA Combo Bridge
   Bus 001 Device 002: ID 03f0:8711 Hewlett-Packard Deskjet 2050 J510
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
   Bus 002 Device 002: ID 0458:0007 KYE Systems Corp. (Mouse Systems) 
   Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
  MachineType: HP Pavilion 06 D5468AT-ABA ALONPAV
  ProcEnviron:
   LANGUAGE=en_US
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.13.0-45-generic 
root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=7
  SourcePackage: udisks2
  Symptom: 

[Desktop-packages] [Bug 1171810] Re: New M5A97 motherboard - no sound nowhere

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

** Changed in: alsa-driver (Ubuntu)
   Status: New = Confirmed

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

Title:
  New  M5A97 motherboard - no sound nowhere

Status in alsa-driver package in Ubuntu:
  Confirmed

Bug description:
  Devices are recognized in Sound list, but there's no sound in no
  output.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.10
  Package: alsa-base 1.0.25+dfsg-0ubuntu3.1
  ProcVersionSignature: Ubuntu 3.5.0-27.46-generic 3.5.7.7
  Uname: Linux 3.5.0-27-generic x86_64
  ApportVersion: 2.6.1-0ubuntu10
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC2:  zon2283 F pulseaudio
   /dev/snd/controlC1:  zon2283 F pulseaudio
   /dev/snd/controlC0:  zon2283 F pulseaudio
   /dev/snd/pcmC0D0c:   zon2283 F...m pulseaudio
  Date: Tue Apr 23 16:43:15 2013
  InstallationDate: Installed on 2013-03-19 (34 days ago)
  InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Release amd64 (20121017.5)
  MarkForUpload: True
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=ru_RU.UTF-8
   SHELL=/bin/bash
  SourcePackage: alsa-driver
  Symptom: audio
  Symptom_AlsaPlaybackTest: ALSA playback test through plughw:SB failed
  Symptom_Card: Встроенное аудио - HDA ATI SB
  Symptom_DevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC2:  zon2283 F pulseaudio
   /dev/snd/controlC1:  zon2283 F pulseaudio
   /dev/snd/controlC0:  zon2283 F pulseaudio
   /dev/snd/pcmC0D0c:   zon2283 F...m pulseaudio
  Symptom_Jack: Green Line Out, Rear
  Symptom_Type: No sound at all
  Title: [To be filled by O.E.M., Realtek ALC887-VD, Green Line Out, Rear] No 
sound at all
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 02/25/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1602
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: M5A97 LE R2.0
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1602:bd02/25/2013:svnTobefilledbyO.E.M.:pnTobefilledbyO.E.M.:pvrTobefilledbyO.E.M.:rvnASUSTeKCOMPUTERINC.:rnM5A97LER2.0:rvrRev1.xx:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.name: To be filled by O.E.M.
  dmi.product.version: To be filled by O.E.M.
  dmi.sys.vendor: To be filled by O.E.M.

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

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


[Desktop-packages] [Bug 1398771] Re: Laptop screen turned off instead of suspending on lid close

2015-02-01 Thread Rocko
I notice that if I unplug the external monitor first and then close the
lid, the laptop *does* suspend.

I tried uncommenting HandleLidSwitch=suspend in /etc/systemd/logind.conf
in case it is a systemd issue, but this didn't make any difference (even
after a reboot), so perhaps this is a bug in systemd.

There also appear to be some new dconf settings that affect the suspend
behaviour:

org.gnome.settings-daemon.plugins.xrandr: this is set to 'follow-lid' in
my setup, which makes xrandr do a 'dock' when the lid is closed (ie to
switch off the internal monitor, which is exactly the description in
this bug). If I set it to 'do-nothing', closing the lid either does
nothing (as expected) or engages the lock screen.

There's also a setting at org.gnome.settings-daemon.plugins.power called
lid-close-suspend-with-external-monitor that describes itself with:

With no external monitors plugged in, closing a laptop's lid
will suspend the machine (as set by the lid-close-battery-action and
lid-close-ac-action keys).  By default, however, closing the lid when
an external monitor is present will not suspend the machine, so that 
one can keep
working on that monitor (e.g. for docking stations or media viewers).  
Set this
key to False to keep the default behavior, or to True to suspend the 
laptop whenever the
lid is closed and regardless of external monitors.

It is set to false by default, and its description matches the behaviour
described in this bug report, so the bug might be that the power
settings GUI (ie where you set the suspend behaviour) does not include
the toggle for this setting.

However, note that suspend still does not work even if you set lid-
close-suspend-with-external-monitor to true, so I guess there is an
additional bug in gnome that prevents the laptop from suspending.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to unity-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1398771

Title:
  Laptop screen turned off instead of suspending on lid close

Status in unity-settings-daemon package in Ubuntu:
  Confirmed

Bug description:
  For some time now my laptop did not suspend on lid close, I noticed
  recently that it actually only happened when I had my external screen
  connected, and what was actually happening is that the internal screen
  got disabled instead of the laptop going to sleep.

  Attached find a --debug log from a close/open cycle.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: unity-settings-daemon 15.04.1+15.04.20141128-0ubuntu1
  Uname: Linux 3.18.0-031800rc4-generic x86_64
  ApportVersion: 2.14.7-0ubuntu10
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Wed Dec  3 11:44:15 2014
  SourcePackage: unity-settings-daemon
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Desktop-packages] [Bug 963061] Re: Doesn't remember ftp password despite promising to do so

2015-02-01 Thread Bug Watch Updater
** Changed in: gvfs
   Status: New = Expired

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

Title:
  Doesn't remember ftp password despite promising to do so

Status in GVFS:
  Expired
Status in gvfs package in Ubuntu:
  Triaged

Bug description:
  Steps to reproduce:
  1. In Nautilus, select Connect to Server
  2. Enter ftp server address, select FTP (with login) as type
  3. Enter credentials,
  4. select Remember this password
  5. Connect.
  6. Disconnect.
  7. Do steps 1.-2. again with the same server.

  What happens:
  The User name and Password fields remain empty. You have to enter your 
credentials again if you want to connect.

  What I expect to happen:
  For the Password field (at the very least) be automatically filled when I 
enter the associated user name. Better yet, remember and suggest (as default) 
both the User name and Password used previously.

  Alternatively, just use ~/.netrc if that's available and has the
  credentials (see Bug #963042).

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: nautilus 1:3.3.92-0ubuntu2
  Uname: Linux 3.3.0-030300rc4-generic x86_64
  ApportVersion: 1.95-0ubuntu1
  Architecture: amd64
  CheckboxSubmission: 09ae689090491ca53449589269e4bfd8
  CheckboxSystem: edda5d4f616ca792bf437989cb597002
  Date: Fri Mar 23 14:51:21 2012
  EcryptfsInUse: Yes
  InstallationMedia: Ubuntu 9.10 Karmic Koala - Release amd64 (20091027)
  SourcePackage: nautilus
  UpgradeStatus: Upgraded to precise on 2011-11-21 (123 days ago)

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

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


[Desktop-packages] [Bug 1241028] Re: Menu not translated

2015-02-01 Thread Luo Lei
Sorry to disturb, but when the po files will be updated?
Bug #1375598 required a po-update. When run debconf-updatepo, an error of 
non-ASCII is prompted.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to activity-log-manager in Ubuntu.
https://bugs.launchpad.net/bugs/1241028

Title:
  Menu not translated

Status in Privacy Manager for Zeitgeist:
  In Progress
Status in Ubuntu Translations:
  New
Status in activity-log-manager package in Ubuntu:
  In Progress

Bug description:
  As you can see on my capture, the time menu is not translated

To manage notifications about this bug go to:
https://bugs.launchpad.net/activity-log-manager/+bug/1241028/+subscriptions

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


[Desktop-packages] [Bug 1408510] Re: wallpaper settings becomes valid only after restart

2015-02-01 Thread Anthony Wong
** Summary changed:

- wallpaper settings becomes valid only after the restart
+ wallpaper settings becomes valid only after  restart

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

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to unity-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/1408510

Title:
  wallpaper settings becomes valid only after  restart

Status in Ubuntu Kylin:
  Confirmed
Status in unity-control-center package in Ubuntu:
  New

Bug description:
  壁纸设置需要重启生效

  1. system settings - appearance  - Change Desktop Backgroud
  2. Failed
  3. Restart
  4. desktop backgroud changed

   Configuration:lenovo
OS: Vivid i386 Daily Build 20150106

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

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


[Desktop-packages] [Bug 1000427] Re: auto-hide lancher does not work

2015-02-01 Thread Launchpad Bug Tracker
[Expired for Unity because there has been no activity for 60 days.]

** Changed in: unity
   Status: Incomplete = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to unity in Ubuntu.
Matching subscriptions: dp-unity
https://bugs.launchpad.net/bugs/1000427

Title:
  auto-hide lancher does not work

Status in Unity:
  Expired
Status in unity package in Ubuntu:
  Expired

Bug description:
  Hello. I am on a fresh install. System Settings - Appearance -
  Behavior - Autohide Launcher: ON does not work. It does not hide the
  launcher (it never does no matter where the cursor is). It just makes
  the launcher's background transparent. My maximized windows do not
  show at their full, the launcher is always above them, hiding their
  left part. I tried this http://askubuntu.com/questions/9865/how-can-i
  -configure-unitys-launcher-auto-hide-behavior/43708#43708 which did
  not work (did not make the launcher hide or auto-hide) but at least it
  made my maximized windows not to go under the laucher but to limit
  themselves until the launcher (so I can see them).

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: xorg 1:7.6+12ubuntu1
  ProcVersionSignature: Ubuntu 3.2.0-24.37-generic-pae 3.2.14
  Uname: Linux 3.2.0-24-generic-pae i686
  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 Kernel Module  295.40  Thu Apr  5 21:28:09 PDT 
2012
   GCC version:  gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5)
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.0.1-0ubuntu7
  Architecture: i386
  CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,vpswitch,snap,mousepoll,resize,place,move,wall,grid,regex,imgpng,session,gnomecompat,animation,fade,unitymtgrabhandles,workarounds,scale,expo,ezoom,unityshell]
  CompositorRunning: compiz
  Date: Wed May 16 23:17:13 2012
  DistUpgraded: Fresh install
  DistroCodename: precise
  DistroVariant: ubuntu
  DkmsStatus: nvidia-current, 295.40, 3.2.0-24-generic-pae, i686: installed
  ExtraDebuggingInterest: Yes, whatever it takes to get this fixed in Ubuntu
  GraphicsCard:
   NVIDIA Corporation GT216 [GeForce GT 220] [10de:0a20] (rev a2) (prog-if 00 
[VGA controller])
 Subsystem: ASUSTeK Computer Inc. Device [1043:830f]
  InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release i386 
(20120423)
  JockeyStatus:
   xorg:nvidia_current - NVIDIA accelerated graphics driver (Proprietary, 
Enabled, In use)
   xorg:nvidia_current_updates - NVIDIA accelerated graphics driver 
(post-release updates) (Proprietary, Disabled, Not in use)
  MachineType: Dell Inc. OptiPlex 380
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.2.0-24-generic-pae 
root=UUID=c2c20b12-f18a-44a7-958d-4c55782e4ad3 ro quiet splash vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  UpgradeStatus: No upgrade log present (probably fresh install)
  XorgConf:
   Section Device
Identifier  Default Device
Option  NoLogoTrue
   EndSection
  dmi.bios.date: 03/11/2010
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A01
  dmi.board.name: 0HN7XN
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 6
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA01:bd03/11/2010:svnDellInc.:pnOptiPlex380:pvr:rvnDellInc.:rn0HN7XN:rvrA00:cvnDellInc.:ct6:cvr:
  dmi.product.name: OptiPlex 380
  dmi.sys.vendor: Dell Inc.
  version.compiz: compiz 1:0.9.7.8-0ubuntu1
  version.libdrm2: libdrm2 2.4.32-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 8.0.2-0ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 8.0.2-0ubuntu3
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.11.4-0ubuntu10.1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.0-0ubuntu1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:6.14.99~git20111219.aacbd629-0ubuntu2
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.17.0-1ubuntu4
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:0.0.16+git20111201+b5534a1-1build2

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

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


[Desktop-packages] [Bug 998591] Re: Launcher icon missing for Wine windows

2015-02-01 Thread Launchpad Bug Tracker
[Expired for unity (Ubuntu) because there has been no activity for 60
days.]

** Changed in: unity (Ubuntu)
   Status: Incomplete = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to unity in Ubuntu.
Matching subscriptions: dp-unity
https://bugs.launchpad.net/bugs/998591

Title:
  Launcher icon missing for Wine windows

Status in Unity:
  Incomplete
Status in Unity 5.0 series:
  Expired
Status in Unity 7.2 series:
  Incomplete
Status in unity package in Ubuntu:
  Expired

Bug description:
  Since upgrading from 11.10 to 12.04, The Wine Application Icon on the
  Unity Launcher does not always appear, I have tried installing wine
  1.5, to not difference, and 1.3, to no avail either.

  It happens quite often so if you need any logs/config files I'll get
  them done for you.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: unity 5.12-0ubuntu1
  ProcVersionSignature: Ubuntu 3.2.0-24.37-generic 3.2.14
  Uname: Linux 3.2.0-24-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.0.1-0ubuntu7
  Architecture: amd64
  CompizPlugins: 
[core,bailer,detection,composite,opengl,decor,gnomecompat,grid,regex,compiztoolbox,vpswitch,place,animation,resize,imgpng,expo,workarounds,unitymtgrabhandles,move,snap,mousepoll,session,ezoom,wall,fade,scale,unityshell]
  Date: Sun May 13 02:10:38 2012
  InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release amd64 (20111012)
  ProcEnviron:
   LANGUAGE=en_GB:en
   PATH=(custom, no user)
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  SourcePackage: unity
  UpgradeStatus: Upgraded to precise on 2012-05-08 (4 days ago)

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

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


[Desktop-packages] [Bug 998356] Re: Can't distinguish between identical commands in HUD

2015-02-01 Thread Launchpad Bug Tracker
[Expired for unity (Ubuntu) because there has been no activity for 60
days.]

** Changed in: unity (Ubuntu)
   Status: Incomplete = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to unity in Ubuntu.
Matching subscriptions: dp-unity
https://bugs.launchpad.net/bugs/998356

Title:
  Can't distinguish between identical commands in HUD

Status in Unity:
  Expired
Status in unity package in Ubuntu:
  Expired

Bug description:
  Having started playing with the HUD,  I've encountered the following
  issue.  I'm using thunderbird, but also have evolution installed on my
  machines.  When I start to type comp in the HUD, I see

  Messages-Compose new message
  Messages-Compose new message

  as well as other choices.  One corresponds to telling thunderbird to
  create a new mail, the other, however, starts evolution to try to send
  mail.  As I'm using thunderbird, I really don't want to start a
  different package to send a message.

  There needs to be some means of dealing with this, without having to
  guess what the difference is.  One possibility is to put the app name
  in parens if there's multiple identical choices.  Another is to prefer
  a running app that provides the command.  Both might make the most
  sense.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: unity 5.12-0ubuntu1
  Uname: Linux 3.3.0-030300rc6-generic x86_64
  ApportVersion: 2.0.1-0ubuntu7
  Architecture: amd64
  CompizPlugins: 
[core,bailer,detection,composite,opengl,compiztoolbox,decor,imgpng,vpswitch,unitymtgrabhandles,mousepoll,place,resize,move,grid,gnomecompat,regex,snap,wall,session,animation,fade,workarounds,scale,expo,ezoom,unityshell]
  Date: Sat May 12 03:57:27 2012
  InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release amd64 (20100429)
  ProcEnviron:
   TERM=xterm
   PATH=(custom, user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: unity
  UpgradeStatus: Upgraded to precise on 2012-05-01 (11 days ago)

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

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


[Desktop-packages] [Bug 1010898] Re: unity transparency seems to use CPU

2015-02-01 Thread Launchpad Bug Tracker
[Expired for unity (Ubuntu) because there has been no activity for 60
days.]

** Changed in: unity (Ubuntu)
   Status: Incomplete = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to unity in Ubuntu.
Matching subscriptions: dp-unity
https://bugs.launchpad.net/bugs/1010898

Title:
  unity transparency seems to use CPU

Status in Unity:
  Expired
Status in unity package in Ubuntu:
  Expired

Bug description:
  When I play a video or open an opengl game and then open the dash or
  press the Super-Key until the Dash-Help appears, then the CPU usage is
  utilized heavily while the HUD shows up, when I expected no increased
  CPU usage after the transitition (which is sluggish by the way),
  because no additional operations on the CPU need to be done after the
  dash help is opened. The only thing I can think of is transparency
  which needs to be calculated, because the video is playing always
  needs to be updated, but this shouldn't increase CPU usage, because it
  _should_ take place on the GPU for being a purely graphical operation
  which my graphics can do easily (blur inclusive).

  The CPU utilization is lower if you switch from blur to no blur, so
  this fortifies my assumption that the actual graphical transparency
  calculation takes place on the CPU or that some ping pong effect moves
  buffers from GPU to CPU and back, slowing things down, i don't know
  after all.

  Playing a video increases compiz CPU utilization from ~5 to ~20 and
  and Xorg cpu utilization from ~5 to ~28

  Also the FPS of video games decreases when the dash is activated, with
  blur even more.

  Last but not least, when I playback a video and activate the dash or
  the dash help the video shortly interrupts for about ~200ms.


  For comparison:
  The single-parameter transparency of the compiz-plugin Opacity, Brightness 
and Saturation does not affect CPU usage at all, at least not visibly.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: unity 5.12-0ubuntu1.1
  ProcVersionSignature: Ubuntu 3.2.0-24.39-generic 3.2.16
  Uname: Linux 3.2.0-24-generic x86_64
  NonfreeKernelModules: nvidia
  .proc.driver.nvidia.gpus.0: Error: [Errno 21] Ist ein Verzeichnis: 
'/proc/driver/nvidia/gpus/0'
  .proc.driver.nvidia.registry: Binary: 
  .proc.driver.nvidia.version:
   NVRM version: NVIDIA UNIX x86_64 Kernel Module  295.49  Mon Apr 30 23:46:33 
PDT 2012
   GCC version:  gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5)
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.0.1-0ubuntu8
  Architecture: amd64
  CompizPlugins: 
[core,composite,opengl,decor,gnomecompat,place,move,snap,mousepoll,resize,compiztoolbox,imgpng,vpswitch,session,grid,regex,wall,unitymtgrabhandles,animation,expo,ezoom,workarounds,fade,scale,unityshell]
  CompositorRunning: compiz
  Date: Sat Jun  9 16:02:48 2012
  DistUpgraded: Fresh install
  DistroCodename: precise
  DistroVariant: ubuntu
  DkmsStatus:
   nvidia-current, 295.40, 3.2.0-24-generic, x86_64: installed
   nvidia-current-updates, 295.49, 3.2.0-24-generic, x86_64: installed
  GraphicsCard:
   NVIDIA Corporation G98M [GeForce G 105M] [10de:06ec] (rev a1) (prog-if 00 
[VGA controller])
 Subsystem: Acer Incorporated [ALI] Device [1025:0205]
  InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
  JockeyStatus:
   xorg:nvidia_current - Beschleunigter Grafiktreiber von NVIDIA (Proprietär, 
Deaktiviert, Nicht benutzt)
   xorg:nvidia_current_updates - NVIDIAs beschleunigte Grafiktreiber 
(Nachträgliche Aktualisierungen) (Proprietär, Aktiviert, In Benutzung)
  MachineType: Acer Aspire 5738
  ProcEnviron:
   LANGUAGE=de_CH:de
   PATH=(custom, user)
   LANG=de_CH.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.2.0-24-generic 
root=UUID=954648ee-fb9c-484d-bda9-6e49dc0e779a ro quiet splash vt.handoff=7
  SourcePackage: unity
  UpgradeStatus: No upgrade log present (probably fresh install)
  XorgConf:
   Section Device
Identifier  Default Device
Option  NoLogoTrue
   EndSection
  dmi.bios.date: 02/20/2009
  dmi.bios.vendor: Phoenix Technologies LTD
  dmi.bios.version: V1.03
  dmi.board.name: JV50
  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.03:bd02/20/2009:svnAcer:pnAspire5738:pvr0100:rvnAcer:rnJV50:rvrRev:cvnAcer:ct10:cvrN/A:
  dmi.product.name: Aspire 5738
  dmi.product.version: 0100
  dmi.sys.vendor: Acer
  version.compiz: compiz 1:0.9.7.8-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.32-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 8.0.2-0ubuntu3.1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 8.0.2-0ubuntu3.1
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  version.xserver-xorg-core: 

[Desktop-packages] [Bug 998356] Re: Can't distinguish between identical commands in HUD

2015-02-01 Thread Launchpad Bug Tracker
[Expired for Unity because there has been no activity for 60 days.]

** Changed in: unity
   Status: Incomplete = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to unity in Ubuntu.
Matching subscriptions: dp-unity
https://bugs.launchpad.net/bugs/998356

Title:
  Can't distinguish between identical commands in HUD

Status in Unity:
  Expired
Status in unity package in Ubuntu:
  Expired

Bug description:
  Having started playing with the HUD,  I've encountered the following
  issue.  I'm using thunderbird, but also have evolution installed on my
  machines.  When I start to type comp in the HUD, I see

  Messages-Compose new message
  Messages-Compose new message

  as well as other choices.  One corresponds to telling thunderbird to
  create a new mail, the other, however, starts evolution to try to send
  mail.  As I'm using thunderbird, I really don't want to start a
  different package to send a message.

  There needs to be some means of dealing with this, without having to
  guess what the difference is.  One possibility is to put the app name
  in parens if there's multiple identical choices.  Another is to prefer
  a running app that provides the command.  Both might make the most
  sense.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: unity 5.12-0ubuntu1
  Uname: Linux 3.3.0-030300rc6-generic x86_64
  ApportVersion: 2.0.1-0ubuntu7
  Architecture: amd64
  CompizPlugins: 
[core,bailer,detection,composite,opengl,compiztoolbox,decor,imgpng,vpswitch,unitymtgrabhandles,mousepoll,place,resize,move,grid,gnomecompat,regex,snap,wall,session,animation,fade,workarounds,scale,expo,ezoom,unityshell]
  Date: Sat May 12 03:57:27 2012
  InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release amd64 (20100429)
  ProcEnviron:
   TERM=xterm
   PATH=(custom, user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: unity
  UpgradeStatus: Upgraded to precise on 2012-05-01 (11 days ago)

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

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


[Desktop-packages] [Bug 1030542] Re: Evince doesn't appear on Launcher or Alt+Tab

2015-02-01 Thread Launchpad Bug Tracker
[Expired for Unity because there has been no activity for 60 days.]

** Changed in: unity
   Status: Incomplete = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to unity in Ubuntu.
Matching subscriptions: dp-unity
https://bugs.launchpad.net/bugs/1030542

Title:
  Evince doesn't appear on Launcher or Alt+Tab

Status in Unity:
  Expired
Status in unity package in Ubuntu:
  Expired

Bug description:
  Evince doesn't appear on Launcher or Alt+Tab (see screenshot).

  Unity version: 5.12-0ubuntu1.1

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: evince 3.4.0-0ubuntu1.1
  ProcVersionSignature: Ubuntu 3.2.0-27.43-generic 3.2.21
  Uname: Linux 3.2.0-27-generic x86_64
  ApportVersion: 2.0.1-0ubuntu11
  Architecture: amd64
  Date: Sun Jul 29 17:04:03 2012
  ExecutablePath: /usr/lib/evince/evinced
  InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
  KernLog:
   
  ProcEnviron:
   SHELL=/bin/bash
   PATH=(custom, no user)
   LANGUAGE=en_GB:en
   LANG=en_GB.UTF-8
  SourcePackage: evince
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Desktop-packages] [Bug 1330180] Re: Akonadi/MySQL 5.6 conflict

2015-02-01 Thread rdbert
Can this be backported to Precise? I am having similar problem on
Precise.

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

Title:
  Akonadi/MySQL 5.6 conflict

Status in akonadi package in Ubuntu:
  Fix Released
Status in akonadi source package in Trusty:
  Fix Released

Bug description:
  After a fresh Kubuntu 14.04 install a conflict between mysql-
  server-5.6 and akonadi-backend-mysql exists.

  The dependencies for akonadi are 
  $ apt-cache depends akonadi-backend-mysql 
  akonadi-backend-mysql
   |Depends: mysql-server-core-5.5
Depends: mariadb-server-core-5.5
   |Depends: mysql-client-core-5.5
Depends: mariadb-client-core-5.5
Depends: libqt4-sql-mysql
Recommends: akonadi-server
Breaks: akonadi-server
Breaks: akonadi-server:i386
Replaces: akonadi-server
Replaces: akonadi-server:i386


  and an attempt to upgrade install mysql-server-5.6 will result in 
  $ sudo apt-get install mysql-server-5.6
  [sudo] password for simon: 
  Reading package lists... Done
  Building dependency tree   
  Reading state information... Done
  Some packages could not be installed. This may mean that you have
  requested an impossible situation or if you are using the unstable
  distribution that some required packages have not yet been created
  or been moved out of Incoming.
  The following information may help to resolve the situation:

  The following packages have unmet dependencies.
   mysql-server-5.6 : Depends: mysql-client-5.6 (= 5.6.17-0ubuntu0.14.04.1) 
but it is not going to be installed
  Depends: mysql-server-core-5.6 (= 
5.6.17-0ubuntu0.14.04.1) but it is not going to be installed
  E: Unable to correct problems, you have held broken packages.

  
  Installation of mysql-client-5.6 will result in 
  $ sudo apt-get install mysql-client-5.6 mysql-client-core-5.6
  Reading package lists... Done
  Building dependency tree   
  Reading state information... Done
  The following package was automatically installed and is no longer required:  

   
gstreamer0.10-qapt kde-artwork-active ksplash-theme-active 
libdeclarative-multimedia libmariadbclient18 libnepomukdatamodel0 
libqtmultimediakit1 libqtwebkit-qmlwebkitplugin mariadb-common 
plasma-active-data 
plasma-active-metadatamodels plasma-active-mobilecomponents 
plasma-active-settings plasma-active-webbrowser plasma-widgets-active 
share-like-connect share-like-connect-data startactive-data 
 
  Use 'apt-get autoremove' to remove it.

   
  The following extra packages will be installed:   

   
gstreamer0.10-qapt ksysguardd libdbd-mysql-perl libdbi-perl libkephal4abi1 
libksgrd4 libksignalplotter4 libplasma-geolocation-interface4 
libplasmaclock4abi4 libprocesscore4abi1 libqt4-declarative-gestures 
  
libtaskmanager4abi5 libterm-readkey-perl libweather-ion6 mysql-common-5.6 
python3-apport usb-creator-common   
 
  Suggested packages:   

   
libmldbm-perl libnet-daemon-perl libplrpc-perl libsql-statement-perl 
python3-launchpadlib
  
  The following packages will be REMOVED

   
akonadi-backend-mysql akonadi-server akregator apport-kde apturl-kde 
kaddressbook kde-config-pimactivity kde-config-telepathy-accounts kde-telepathy 
kde-telepathy-auth-handler kde-telepathy-contact-list 
kde-telepathy-declarative kde-telepathy-desktop-applets 
kde-telepathy-filetransfer-handler kde-telepathy-integration-module 
kde-telepathy-minimal kde-telepathy-send-file kde-telepathy-text-ui 
kde-workspace  
kde-workspace-bin kdepim-kresources kdepim-runtime kmail knotes kontact 
korganizer ksysguard kubuntu-desktop libcalendarsupport4 libeventviews4 

[Desktop-packages] [Bug 1416927] Re: Built-in display no longer working [GTX765M] [Alienware 15]

2015-02-01 Thread Braud
Just adding the gpu-manager log !

** Attachment added: /var/log/gpu-manager.log
   
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-331/+bug/1416927/+attachment/4310090/+files/gpu-manager.log

** Description changed:

  Hello everyone,
  
- Since this friday I have an annoying bug on my Alienware m15 (GTX765M) 
connected to an external display :
+ Since this friday I have an annoying bug on my Alienware m15 (GTX765M) 
connected to an external display running Ubuntu 14.04.01LTS 
(kernel3.13.0-45-generic) :
  - Upon boot, the grub splash screen and the ubuntu splash screen are 
correctly displayed on the built-in display.
  - When reaching login, the built-in display turns black and no way to wake it 
up.
  - Tested on unity, xmonad, nvidia-331.38 (That I kept for other bugs) and 
nvidia-346 (from xorg-edgers).
  
  The weird thing is that scrot takes a picture of the full display :
  http://i.imgur.com/43Dj5Aw.jpg
  While it looks like this from my desk :
  http://imgur.com/0i3Cm3Y
  
  I tried many times to force it through xrandr :
  xrandr --output eDP1 --auto --output DP-0 --auto --right-of eDP1
  I also looked into xorg.conf, nothing special there.
  
  In nvidia-settings, I only see the external screen but xscreen0 is
  correctly detected as being 3840x1200...
  
  I checked in dmesg, I didn't see anything fishy (attached for good measure). 
However, I recently crashed my desktop by trying to display stuff on the built 
in display and I have this error :
  [ 2073.710370] gpu-manager[5299]: segfault at c0 ip 7f0545367d1d sp 
7fff2610da10 error 4 in libc-2.19.so[7f054531e000+1bb000]
  
  Any ideas ?
  
  lspci | grep VGA
  00:02.0 VGA compatible controller: Intel Corporation 4th Gen Core Processor 
Integrated Graphics Controller (rev 06)
  01:00.0 VGA compatible controller: NVIDIA Corporation GK106M [GeForce GTX 
765M] (rev a1)
  xrandr -q
  Screen 0: minimum 8 x 8, current 3840 x 1200, maximum 16384 x 16384
  DP-0 connected primary 1920x1200+1920+0 (normal left inverted right x axis y 
axis) 519mm x 324mm
-1920x1200  60.0*+
-1680x1050  60.0  
-1600x1200  60.0  
-1280x1024  60.0  
-1280x960   60.0  
-1024x768   60.0  
-800x60060.3  
-640x48059.9  
+    1920x1200  60.0*+
+    1680x1050  60.0
+    1600x1200  60.0
+    1280x1024  60.0
+    1280x960   60.0
+    1024x768   60.0
+    800x60060.3
+    640x48059.9
  HDMI-0 disconnected (normal left inverted right x axis y axis)
  HDMI-1 disconnected (normal left inverted right x axis y axis)
  DP-1 disconnected (normal left inverted right x axis y axis)
  DP-2 disconnected (normal left inverted right x axis y axis)
  eDP1 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 309mm 
x 174mm
-1920x1080  60.0*+   59.9  
-1680x1050  60.0 59.9  
-1600x1024  60.2  
-1400x1050  60.0  
-1280x1024  60.0  
-1440x900   59.9  
-1280x960   60.0  
-1360x768   59.8 60.0  
-1152x864   60.0  
-1024x768   60.0  
-800x60060.3 56.2  
-640x48059.9  
+    1920x1080  60.0*+   59.9
+    1680x1050  60.0 59.9
+    1600x1024  60.2
+    1400x1050  60.0
+    1280x1024  60.0
+    1440x900   59.9
+    1280x960   60.0
+    1360x768   59.8 60.0
+    1152x864   60.0
+    1024x768   60.0
+    800x60060.3 56.2
+    640x48059.9
  HDMI1 disconnected (normal left inverted right x axis y axis)
  VGA1 disconnected (normal left inverted right x axis y axis)
  VIRTUAL1 disconnected (normal left inverted right x axis y axis)
-   1680x1050 (0x2c9)  146.2MHz
- h: width  1680 start 1784 end 1960 total 2240 skew0 clock   
65.3KHz
- v: height 1050 start 1053 end 1059 total 1089   clock   60.0Hz
-   1280x1024 (0x2cb)  108.0MHz
- h: width  1280 start 1328 end 1440 total 1688 skew0 clock   
64.0KHz
- v: height 1024 start 1025 end 1028 total 1066   clock   60.0Hz
-   1280x960 (0x2cc)  108.0MHz
- h: width  1280 start 1376 end 1488 total 1800 skew0 clock   
60.0KHz
- v: height  960 start  961 end  964 total 1000   clock   60.0Hz
-   1024x768 (0x2cd)   65.0MHz
- h: width  1024 start 1048 end 1184 total 1344 skew0 clock   
48.4KHz
- v: height  768 start  771 end  777 total  806   clock   60.0Hz
-   800x600 (0x2ce)   40.0MHz
- h: width   800 start  840 end  968 total 1056 skew0 clock   
37.9KHz
- v: height  600 start  601 end  605 total  628   clock   60.3Hz
-   640x480 (0x2cf)   25.2MHz
- h: width   640 start  656 end  752 total  800 skew0 clock   
31.5KHz
- v: height  480 start  490 end  492 total  525   clock   59.9Hz
+   1680x1050 (0x2c9)  146.2MHz
+ h: width  1680 start 1784 end 1960 total 2240 skew0 clock 

[Desktop-packages] [Bug 1416927] [NEW] Built-in display no longer working [GTX765M] [Alienware 15]

2015-02-01 Thread Braud
Public bug reported:

Hello everyone,

Since this friday I have an annoying bug on my Alienware m15 (GTX765M) 
connected to an external display running Ubuntu 14.04.01LTS 
(kernel3.13.0-45-generic) :
- Upon boot, the grub splash screen and the ubuntu splash screen are correctly 
displayed on the built-in display.
- When reaching login, the built-in display turns black and no way to wake it 
up.
- Tested on unity, xmonad, nvidia-331.38 (That I kept for other bugs) and 
nvidia-346 (from xorg-edgers).
- If I switch back to tty (ctrl-alt-f1) it works perfectly on the built-in 
display.

The weird thing is that scrot takes a picture of the full display :
http://i.imgur.com/43Dj5Aw.jpg
While it looks like this from my desk :
http://imgur.com/0i3Cm3Y

I tried many times to force it through xrandr :
xrandr --output eDP1 --auto --output DP-0 --auto --right-of eDP1
I also looked into xorg.conf, nothing special there.

In nvidia-settings, I only see the external screen but xscreen0 is
correctly detected as being 3840x1200...

I checked in dmesg, I didn't see anything fishy (attached for good measure). 
However, I recently crashed my desktop by trying to display stuff on the built 
in display and I have this error :
[ 2073.710370] gpu-manager[5299]: segfault at c0 ip 7f0545367d1d sp 
7fff2610da10 error 4 in libc-2.19.so[7f054531e000+1bb000]

Any ideas ?

lspci | grep VGA
00:02.0 VGA compatible controller: Intel Corporation 4th Gen Core Processor 
Integrated Graphics Controller (rev 06)
01:00.0 VGA compatible controller: NVIDIA Corporation GK106M [GeForce GTX 765M] 
(rev a1)
xrandr -q
Screen 0: minimum 8 x 8, current 3840 x 1200, maximum 16384 x 16384
DP-0 connected primary 1920x1200+1920+0 (normal left inverted right x axis y 
axis) 519mm x 324mm
   1920x1200  60.0*+
   1680x1050  60.0
   1600x1200  60.0
   1280x1024  60.0
   1280x960   60.0
   1024x768   60.0
   800x60060.3
   640x48059.9
HDMI-0 disconnected (normal left inverted right x axis y axis)
HDMI-1 disconnected (normal left inverted right x axis y axis)
DP-1 disconnected (normal left inverted right x axis y axis)
DP-2 disconnected (normal left inverted right x axis y axis)
eDP1 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 309mm x 
174mm
   1920x1080  60.0*+   59.9
   1680x1050  60.0 59.9
   1600x1024  60.2
   1400x1050  60.0
   1280x1024  60.0
   1440x900   59.9
   1280x960   60.0
   1360x768   59.8 60.0
   1152x864   60.0
   1024x768   60.0
   800x60060.3 56.2
   640x48059.9
HDMI1 disconnected (normal left inverted right x axis y axis)
VGA1 disconnected (normal left inverted right x axis y axis)
VIRTUAL1 disconnected (normal left inverted right x axis y axis)
  1680x1050 (0x2c9)  146.2MHz
h: width  1680 start 1784 end 1960 total 2240 skew0 clock   65.3KHz
v: height 1050 start 1053 end 1059 total 1089   clock   60.0Hz
  1280x1024 (0x2cb)  108.0MHz
h: width  1280 start 1328 end 1440 total 1688 skew0 clock   64.0KHz
v: height 1024 start 1025 end 1028 total 1066   clock   60.0Hz
  1280x960 (0x2cc)  108.0MHz
h: width  1280 start 1376 end 1488 total 1800 skew0 clock   60.0KHz
v: height  960 start  961 end  964 total 1000   clock   60.0Hz
  1024x768 (0x2cd)   65.0MHz
h: width  1024 start 1048 end 1184 total 1344 skew0 clock   48.4KHz
v: height  768 start  771 end  777 total  806   clock   60.0Hz
  800x600 (0x2ce)   40.0MHz
h: width   800 start  840 end  968 total 1056 skew0 clock   37.9KHz
v: height  600 start  601 end  605 total  628   clock   60.3Hz
  640x480 (0x2cf)   25.2MHz
h: width   640 start  656 end  752 total  800 skew0 clock   31.5KHz
v: height  480 start  490 end  492 total  525   clock   59.9Hz

Thanks,
Braud

** Affects: nvidia-graphics-drivers-331 (Ubuntu)
 Importance: Undecided
 Status: New

** Attachment added: Output of dmesg, containing a nice segfault.
   https://bugs.launchpad.net/bugs/1416927/+attachment/4310089/+files/dmesg.log

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to nvidia-graphics-drivers-331 in Ubuntu.
https://bugs.launchpad.net/bugs/1416927

Title:
  Built-in display no longer working [GTX765M] [Alienware 15]

Status in nvidia-graphics-drivers-331 package in Ubuntu:
  New

Bug description:
  Hello everyone,

  Since this friday I have an annoying bug on my Alienware m15 (GTX765M) 
connected to an external display running Ubuntu 14.04.01LTS 
(kernel3.13.0-45-generic) :
  - Upon boot, the grub splash screen and the ubuntu splash screen are 
correctly displayed on the built-in display.
  - When reaching login, the built-in display turns black and no way to wake it 
up.
  - Tested on unity, xmonad, nvidia-331.38 (That I kept for other bugs) and 
nvidia-346 

  1   2   >