[Desktop-packages] [Bug 2059847] Re: Input lag or freezes on Nvidia desktops with X11 after logging "MetaSyncRing: Sync object is not ready -- were events handled properly?"

2024-04-12 Thread JK
Just want to add that the bug also affects GnuCash and basically makes
it unusable. The updated mutter from the PPA fixed it.

Ubuntu 22.04, Xorg and NVidia 535.171.04.

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

Title:
  Input lag or freezes on Nvidia desktops with X11 after logging
  "MetaSyncRing: Sync object is not ready -- were events handled
  properly?"

Status in Mutter:
  Fix Released
Status in mutter package in Ubuntu:
  Fix Committed
Status in mutter source package in Jammy:
  In Progress
Status in mutter source package in Mantic:
  In Progress
Status in mutter source package in Noble:
  Fix Committed

Bug description:
  [ Impact ]

  Input or the entire screen may freeze at times on systems using the
  Nvidia Xorg driver with GNOME.

  [ Test Plan ]

  0. Set up a desktop with Nvidia driver 545 or 550.
  1. Log into Ubuntu, ensuring it's a Xorg session.
  2. Open a Terminal, resize it vigorously, and type several lines of text.
  3. Run: journalctl -b0 | grep MetaSyncRing
  4. Verify the above command does NOT show "MetaSyncRing" messages such as:

  Window manager warning: MetaSyncRing: Sync object is not ready -- were events 
handled properly?
  Window manager warning: MetaSyncRing: Sync object is not ready -- were events 
handled properly?
  Window manager warning: MetaSyncRing: Sync object is not ready -- were events 
handled properly?
  Window manager warning: MetaSyncRing: Too many reboots -- disabling

  [ Where problems could occur ]

  Anywhere in Nvidia (proprietary driver) Xorg sessions since the code
  being modified is only used with that driver.

  [ Original Description ]

  There is a noticeable delay in input while using the native terminal.
  I belive it was caused by a recent software update, as this issue is
  relatively new.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: ubiquity (not installed)
  ProcVersionSignature: Ubuntu 6.5.0-26.26~22.04.1-generic 6.5.13
  Uname: Linux 6.5.0-26-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia wl
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Sat Mar 30 19:57:13 2024
  InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed 
maybe-ubiquity quiet splash ---
  InstallationDate: Installed on 2024-03-30 (0 days ago)
  InstallationMedia: Ubuntu 22.04.4 LTS "Jammy Jellyfish" - Release amd64 
(20240220)
  SourcePackage: ubiquity
  Symptom: installation
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/mutter/+bug/2059847/+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 1993019] Re: UnboundLocalError: local variable 'version' referenced before assignment

2022-11-05 Thread JK
I've just experienced the same issue, but with the ubuntu driver tool
GUI (on Ubuntu 22.04).

I tried to change the NVIDIA drivers from 515 to 520-open. After asking
for my password I got a pop-up with a big grey "X" and an "OK" button,
but no text. Not helpful at all. Then I took a look at the installed
"*nvidia*" packages with dpkg and noticed that all 515 packages had been
removed but no 520 packages had been installed. When executing "ubuntu-
drivers autoinstall" I got the same Python exception as above.

After that, I installed the 520 drivers with

"apt install nvidia-driver-520-open"

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

Title:
  UnboundLocalError: local variable 'version' referenced before
  assignment

Status in ubuntu-drivers-common package in Ubuntu:
  Confirmed

Bug description:
  Hello, we received a drive-by complaint about the ubuntu-drivers
  autoinstall tool:

  < Fhazal> hye i have problem with ubuntu 22.04 nvidia auto install command
  < Fhazal> this error appear when i try to auto install recommended driver
  < Fhazal> https://pastebin.com/ydZVFT24

  The contents of the pastebin:

  Traceback (most recent call last):
File "/usr/bin/ubuntu-drivers", line 513, in 
  greet()
File "/usr/lib/python3/dist-packages/click/core.py", line 1128, in __call__
  return self.main(*args, **kwargs)
File "/usr/lib/python3/dist-packages/click/core.py", line 1053, in main
  rv = self.invoke(ctx)
File "/usr/lib/python3/dist-packages/click/core.py", line 1659, in invoke
  return _process_result(sub_ctx.command.invoke(sub_ctx))
File "/usr/lib/python3/dist-packages/click/core.py", line 1395, in invoke
  return ctx.invoke(self.callback, **ctx.params)
File "/usr/lib/python3/dist-packages/click/core.py", line 754, in invoke
  return __callback(*args, **kwargs)
File "/usr/lib/python3/dist-packages/click/decorators.py", line 84, in 
new_func
  return ctx.invoke(f, obj, *args, **kwargs)
File "/usr/lib/python3/dist-packages/click/core.py", line 754, in invoke
  return __callback(*args, **kwargs)
File "/usr/bin/ubuntu-drivers", line 432, in autoinstall
  command_install(config)
File "/usr/bin/ubuntu-drivers", line 187, in command_install
  UbuntuDrivers.detect.nvidia_desktop_pre_installation_hook(to_install)
File "/usr/lib/python3/dist-packages/UbuntuDrivers/detect.py", line 839, in 
nvidia_desktop_pre_installation_hook
  with_nvidia_kms = version >= 470
  UnboundLocalError: local variable 'version' referenced before assignment

  
  Skimming the version on my system it sure feels plausible:

  def nvidia_desktop_pre_installation_hook(to_install):
  '''Applies changes that need to happen before installing the NVIDIA 
drivers'''
  with_nvidia_kms = False

  # Enable KMS if nvidia >= 470
  for package_name in to_install:
  if package_name.startswith('nvidia-driver-'):
  try:
  version = int(package_name.split('-')[-1])
  except ValueError:
  pass
  finally:
  with_nvidia_kms = version >= 470

  if with_nvidia_kms:
  set_nvidia_kms(1)


  If there was an exception splitting, indexing, or converting to an
  int, that 'version' variable may not have a value.

  Thanks

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-drivers-common/+bug/1993019/+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 1990869] [NEW] gnucash: segmentation fault when generating reports

2022-09-26 Thread JK
Public bug reported:

Whenever I try to generate a report in GnuCash it fails with a
segmentation fault. It doesn't matter which report I generate or which
accounts / files I am using.

About two weeks ago, everything was working fine. GnuCash package
version: 1:4.8-1build2

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

** Package changed: glib2.0 (Ubuntu) => gnucash (Ubuntu)

** Description changed:

  Whenever I try to generate a report in GnuCash it fails with a
  segmentation fault. It doesn't matter which report I generate or which
  accounts / files I am using.
  
- About two weeks ago, everything was working fine. Package version:
- 1:4.8-1build2
+ About two weeks ago, everything was working fine. GnuCash package
+ version: 1:4.8-1build2

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

Title:
  gnucash: segmentation fault when generating reports

Status in gnucash package in Ubuntu:
  New

Bug description:
  Whenever I try to generate a report in GnuCash it fails with a
  segmentation fault. It doesn't matter which report I generate or which
  accounts / files I am using.

  About two weeks ago, everything was working fine. GnuCash package
  version: 1:4.8-1build2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnucash/+bug/1990869/+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 1646839] [NEW] Login screen doesn't respect the draw-user-backgrounds setting

2016-12-02 Thread JK
Public bug reported:

I don't want my wallpaper to be shown on the login and lock screens. So
I used dconf-editor to change the "draw-user-backgrounds" setting to
"false".

What I expected to happen:
- The login screen as well as the lock screen would respect the setting 
(neither would show my wallpaper).

What actually happened:
- The lock screen respects the setting as desired (it no longer shows my 
wallpaper).
- The login screen does NOT respect the setting (it continues to show my 
wallpaper).

Now I'm not asking to introduce a new feature or setting, it's already
there. All I'm asking is that the login screen be consistent with the
lock screen and respect the "draw-user-backgrounds" setting.

ProblemType: Bug
DistroRelease: Ubuntu 16.10
Package: unity-greeter 16.10.2.2
ProcVersionSignature: Ubuntu 4.8.0-28.30-generic 4.8.6
Uname: Linux 4.8.0-28-generic x86_64
ApportVersion: 2.20.3-0ubuntu8
Architecture: amd64
CurrentDesktop: Unity
Date: Fri Dec  2 18:23:53 2016
EcryptfsInUse: Yes
InstallationDate: Installed on 2016-11-23 (8 days ago)
InstallationMedia: Ubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.2)
ProcEnviron:
 LANGUAGE=en_IN:en
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_IN
 SHELL=/bin/bash
SourcePackage: unity-greeter
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: unity-greeter (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug yakkety

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

Title:
  Login screen doesn't respect the draw-user-backgrounds setting

Status in unity-greeter package in Ubuntu:
  New

Bug description:
  I don't want my wallpaper to be shown on the login and lock screens.
  So I used dconf-editor to change the "draw-user-backgrounds" setting
  to "false".

  What I expected to happen:
  - The login screen as well as the lock screen would respect the setting 
(neither would show my wallpaper).

  What actually happened:
  - The lock screen respects the setting as desired (it no longer shows my 
wallpaper).
  - The login screen does NOT respect the setting (it continues to show my 
wallpaper).

  Now I'm not asking to introduce a new feature or setting, it's already
  there. All I'm asking is that the login screen be consistent with the
  lock screen and respect the "draw-user-backgrounds" setting.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.10
  Package: unity-greeter 16.10.2.2
  ProcVersionSignature: Ubuntu 4.8.0-28.30-generic 4.8.6
  Uname: Linux 4.8.0-28-generic x86_64
  ApportVersion: 2.20.3-0ubuntu8
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Fri Dec  2 18:23:53 2016
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2016-11-23 (8 days ago)
  InstallationMedia: Ubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.2)
  ProcEnviron:
   LANGUAGE=en_IN:en
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_IN
   SHELL=/bin/bash
  SourcePackage: unity-greeter
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-greeter/+bug/1646839/+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 1646736] [NEW] Multimedia keys not working

2016-12-02 Thread JK
Public bug reported:

Multimedia keys (Play/Pause, Stop, Previous, Next) are not working for
Banshee in Ubuntu 16.10. It works fine in 15.04 on the same hardware.

- Banshee version 2.9.0+really2.6.2-7ubuntu2
- Ubuntu version 16.10 (fresh install, not upgrade)
- The multimedia keys work fine for Rhythmbox and Quod Libet
- Banshee's Multimedia Keys extension is enabled in the Preferences

ProblemType: Bug
DistroRelease: Ubuntu 16.10
Package: banshee 2.9.0+really2.6.2-7ubuntu2
ProcVersionSignature: Ubuntu 4.8.0-28.30-generic 4.8.6
Uname: Linux 4.8.0-28-generic x86_64
ApportVersion: 2.20.3-0ubuntu8
Architecture: amd64
CurrentDesktop: Unity
Date: Fri Dec  2 13:48:19 2016
EcryptfsInUse: Yes
InstallationDate: Installed on 2016-11-23 (8 days ago)
InstallationMedia: Ubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.2)
ProcEnviron:
 LANGUAGE=en_IN:en
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_IN
 SHELL=/bin/bash
SourcePackage: banshee
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug yakkety

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

Title:
  Multimedia keys not working

Status in banshee package in Ubuntu:
  New

Bug description:
  Multimedia keys (Play/Pause, Stop, Previous, Next) are not working for
  Banshee in Ubuntu 16.10. It works fine in 15.04 on the same hardware.

  - Banshee version 2.9.0+really2.6.2-7ubuntu2
  - Ubuntu version 16.10 (fresh install, not upgrade)
  - The multimedia keys work fine for Rhythmbox and Quod Libet
  - Banshee's Multimedia Keys extension is enabled in the Preferences

  ProblemType: Bug
  DistroRelease: Ubuntu 16.10
  Package: banshee 2.9.0+really2.6.2-7ubuntu2
  ProcVersionSignature: Ubuntu 4.8.0-28.30-generic 4.8.6
  Uname: Linux 4.8.0-28-generic x86_64
  ApportVersion: 2.20.3-0ubuntu8
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Fri Dec  2 13:48:19 2016
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2016-11-23 (8 days ago)
  InstallationMedia: Ubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.2)
  ProcEnviron:
   LANGUAGE=en_IN:en
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_IN
   SHELL=/bin/bash
  SourcePackage: banshee
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/banshee/+bug/1646736/+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 792085] Re: Automatic remount of safely removed usb 3.0 drive

2016-08-26 Thread JK
Definitely not Nautilus related. The same occurs if you run “Disks”
utility, select a USB 3 disk and then “Power off” from the menu near the
top-right corner. To securely remove a USB 3 disk I unmount it first
then run “Disks” utility, select it and then press “Standby Now” from
the same menu. No problems so far. Could this be a temporary solution
until this is fixed?

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

Title:
  Automatic remount of safely removed usb 3.0 drive

Status in Nautilus:
  New
Status in thunar:
  Unknown
Status in nautilus package in Ubuntu:
  Confirmed
Status in thunar package in Ubuntu:
  Confirmed
Status in udev package in Ubuntu:
  Confirmed
Status in Fedora:
  Unknown

Bug description:
  Binary package hint: nautilus

  When I choose "Safely remove drive" context menu entry for an external
  USB drive within a nautilus window or directly clicking on the desktop
  icon, after about 10 seconds the drive is automatically remounted and
  a Nautilus window showing the root folder opens.

  I have noticed that similar already happened with a very old Ubuntu
  version - Bug #110589 and as that is so long time ago I thought it is
  better to open a new bug. Reason of the problem might even be
  completely different.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: nautilus 1:2.32.2.1-0ubuntu13
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic-pae 2.6.38.2
  Uname: Linux 2.6.38-8-generic-pae i686
  Architecture: i386
  Date: Thu Jun  2 23:40:08 2011
  InstallationMedia: Ubuntu 11.04 "Natty Narwhal" - Release i386 (20110427.1)
  ProcEnviron:
   LANGUAGE=en_US:en
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: nautilus
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/nautilus/+bug/792085/+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 296867]

2015-04-15 Thread Jk Abrams
What is the status of this project? Is it dead?

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

Title:
  empathy needs to support OTR encryption

Status in Chat app, and Telepathy user interface:
  Confirmed
Status in One Hundred Papercuts:
  Invalid
Status in Telepathy framework - library:
  Confirmed
Status in empathy package in Ubuntu:
  Triaged
Status in libtelepathy package in Ubuntu:
  Confirmed
Status in empathy package in Fedora:
  Won't Fix

Bug description:
  Binary package hint: empathy

  Hello, 
  I just tried empathy (the Intrepid version) and it looked very solid and 
stable. There were a few minor things that could be improved (e.g. 
automatically resizing the contact list), but that is not the topic here.
  The reason why I won't switch to empathy from pidgin is the missing OTR 
support (http://www.cypherpunks.ca/otr/ ). This is a really important feature 
because no one should read your messages.
  There were others with the same idea (links at the bottom).
  Would be so great if it could support that important encryption standard.
  Thanks for helping out!

  Links:
  https://bugs.launchpad.net/ubuntu/+source/empathy/+bug/253452/comments/2
  http://lists.cypherpunks.ca/pipermail/otr-users/2008-September/001479.html
  http://bugs.freedesktop.org/show_bug.cgi?id=16891

To manage notifications about this bug go to:
https://bugs.launchpad.net/empathy/+bug/296867/+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 1310718] Re: package gdm 3.10.0.1-0ubuntu3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2014-08-21 Thread JK
I can confirm this bug. It actually broke my dist-upgrade from 12.04 to
14.04. I fixed it manually by deleting the broken script and removing
gdm.

I tried to reinstall gdm today but the package is still broken, i. e.
the post-install script is broken. Executing it manually with

   bash -x /var/lib/dpkg/info/gdm.postinst

results in:


   
+ set -e
+ . /usr/share/debconf/confmodule
++ '[' '!' '' ']'
++ PERL_DL_NONLAZY=1
++ export PERL_DL_NONLAZY
++ '[' '' ']'
++ exec /usr/share/debconf/frontend /var/lib/dpkg/info/gdm.postinst
Use of uninitialized value $action in string eq at /usr/share/debconf/frontend 
line 27.

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

Title:
  package gdm 3.10.0.1-0ubuntu3 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 1

Status in “gdm” package in Ubuntu:
  Confirmed

Bug description:
  rebooted after upgrade and error came up

  ProblemType: Package
  DistroRelease: Ubuntu 14.04
  Package: gdm 3.10.0.1-0ubuntu3
  ProcVersionSignature: Ubuntu 3.13.0-24.46-generic 3.13.9
  Uname: Linux 3.13.0-24-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3
  Architecture: amd64
  Date: Sun Apr 20 21:44:25 2014
  DuplicateSignature: package:gdm:3.10.0.1-0ubuntu3:subprocess installed 
post-installation script returned error exit status 1
  ErrorMessage: subprocess installed post-installation script returned error 
exit status 1
  SourcePackage: gdm
  Title: package gdm 3.10.0.1-0ubuntu3 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
  UpgradeStatus: No upgrade log present (probably fresh install)
  mtime.conffile..etc.gdm.custom.conf: 2014-02-12T03:33:43.904158

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

2014-08-21 Thread JK
I've just encountered the same bug when trying to install lxdm:

bash -x /var/lib/dpkg/info/lxdm.postinst

+ set -e
+ . /usr/share/debconf/confmodule
++ '[' '!' '' ']'
++ PERL_DL_NONLAZY=1
++ export PERL_DL_NONLAZY
++ '[' '' ']'
++ exec /usr/share/debconf/frontend /var/lib/dpkg/info/lxdm.postinst
Use of uninitialized value $action in string eq at /usr/share/debconf/frontend 
line 27.

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

Title:
  package gdm 3.10.0.1-0ubuntu3 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 1

Status in “gdm” package in Ubuntu:
  Confirmed

Bug description:
  rebooted after upgrade and error came up

  ProblemType: Package
  DistroRelease: Ubuntu 14.04
  Package: gdm 3.10.0.1-0ubuntu3
  ProcVersionSignature: Ubuntu 3.13.0-24.46-generic 3.13.9
  Uname: Linux 3.13.0-24-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3
  Architecture: amd64
  Date: Sun Apr 20 21:44:25 2014
  DuplicateSignature: package:gdm:3.10.0.1-0ubuntu3:subprocess installed 
post-installation script returned error exit status 1
  ErrorMessage: subprocess installed post-installation script returned error 
exit status 1
  SourcePackage: gdm
  Title: package gdm 3.10.0.1-0ubuntu3 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
  UpgradeStatus: No upgrade log present (probably fresh install)
  mtime.conffile..etc.gdm.custom.conf: 2014-02-12T03:33:43.904158

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gdm/+bug/1310718/+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 1327506] [NEW] nvidia-331-updates 331.38-0ubuntu7: nvidia-331-updates kernel module failed to build

2014-06-07 Thread JK
Public bug reported:

The problem occurs after each kernel upgrade (on next reboot).

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: nvidia-331-updates 331.38-0ubuntu7
ProcVersionSignature: Ubuntu 3.13.0-29.53-generic 3.13.11.2
Uname: Linux 3.13.0-29-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.14.1-0ubuntu3.2
Architecture: amd64
DKMSKernelVersion: 3.13.0-29-generic
Date: Fri Jun  6 10:13:18 2014
InstallationDate: Installed on 2010-04-16 (1512 days ago)
InstallationMedia: Ubuntu 10.04 Lucid Lynx - Beta amd64 (20100406.1)
PackageVersion: 331.38-0ubuntu7
SourcePackage: nvidia-graphics-drivers-331-updates
Title: nvidia-331-updates 331.38-0ubuntu7: nvidia-331-updates kernel module 
failed to build
UpgradeStatus: Upgraded to trusty on 2014-05-11 (26 days ago)

** Affects: nvidia-graphics-drivers-331-updates (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package trusty

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

Title:
  nvidia-331-updates 331.38-0ubuntu7: nvidia-331-updates kernel module
  failed to build

Status in “nvidia-graphics-drivers-331-updates” package in Ubuntu:
  New

Bug description:
  The problem occurs after each kernel upgrade (on next reboot).

  ProblemType: Package
  DistroRelease: Ubuntu 14.04
  Package: nvidia-331-updates 331.38-0ubuntu7
  ProcVersionSignature: Ubuntu 3.13.0-29.53-generic 3.13.11.2
  Uname: Linux 3.13.0-29-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.14.1-0ubuntu3.2
  Architecture: amd64
  DKMSKernelVersion: 3.13.0-29-generic
  Date: Fri Jun  6 10:13:18 2014
  InstallationDate: Installed on 2010-04-16 (1512 days ago)
  InstallationMedia: Ubuntu 10.04 Lucid Lynx - Beta amd64 (20100406.1)
  PackageVersion: 331.38-0ubuntu7
  SourcePackage: nvidia-graphics-drivers-331-updates
  Title: nvidia-331-updates 331.38-0ubuntu7: nvidia-331-updates kernel module 
failed to build
  UpgradeStatus: Upgraded to trusty on 2014-05-11 (26 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-331-updates/+bug/1327506/+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 1160569]

2014-03-22 Thread Jk Abrams
(In reply to Ginn Chen from comment #53)
 YF, my understanding is this bug will not cause a crash like Bug 986735.
 
 The GLib-CRITICAL warning is printed when Firefox starts.
 It may cause a crash at startup on some systems. (although I don't think it
 really happens)
 But it should not cause a crash when you open 2 tabs.
 
 See comment 34, comment 35, comment 36.

I jumped to premature conclusions, I have no evidence this is this bug what's 
causing my FF28 to crash. I just saw the same error message in FF as in 
Thunderbird and they seem to crash in a similar fashion and comment 3 was 
consistent with my experience.
See comment 27, Karl Tomlinson seems to know what he is talking about. My glib 
is not built with G_DISABLE_CHECKS and so according to Karl, should be a no-op, 
a 'do nothing'-instruction. I've never seen a crash on an empty startup.
Sorry for spreading confusion.
Firefox does have some major problem on Linux, just guess this bug is not the 
root cause.
Perhaps bug 920200 as suggested by comment 36, tho the last word over there is 
'it shouldn't really happen'.

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

Title:
  [regression] GLib-CRITICAL **: g_slice_set_config: assertion
  `sys_page_size == 0' failed

Status in The Mozilla Firefox Browser:
  Confirmed
Status in “apport” package in Ubuntu:
  Confirmed
Status in “firefox” package in Ubuntu:
  Triaged
Status in “thunderbird” package in Ubuntu:
  Triaged

Bug description:
  Have a look at the screen-shot for more details.

  ProblemType: Bug
  DistroRelease: Ubuntu 13.04
  Package: firefox 19.0.2+build1-0ubuntu1
  ProcVersionSignature: Ubuntu 3.8.0-14.24-generic 3.8.4
  Uname: Linux 3.8.0-14-generic x86_64
  AddonCompatCheckDisabled: False
  ApportVersion: 2.9.2-0ubuntu4
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  BuildID: 20130308124351
  CRDA: Error: command ['iw', 'reg', 'get'] failed with exit code 1: nl80211 
not found.
  Channel: Unavailable
  Date: Tue Mar 26 21:48:57 2013
  ForcedLayersAccel: False
  IfupdownConfig:
   # interfaces(5) file used by ifup(8) and ifdown(8)
   auto lo
   iface lo inet loopback
  InstallationDate: Installed on 2013-03-26 (0 days ago)
  InstallationMedia: Ubuntu 13.04 Raring Ringtail - Alpha amd64+mac (20130326)
  IpRoute:
   default via 10.0.1.1 dev eth0  proto static
   10.0.1.0/24 dev eth0  proto kernel  scope link  src 10.0.1.16  metric 1
   169.254.0.0/16 dev eth0  scope link  metric 1000
  IwConfig:
   eth0  no wireless extensions.

   lono wireless extensions.
  MarkForUpload: True
  Plugins:
   Windows Media Player Plug-in 10 (compatible; Videos) - 
/usr/lib/mozilla/plugins/libtotem-gmp-plugin.so (totem-mozilla)
   VLC Multimedia Plugin (compatible Videos 3.6.3) - 
/usr/lib/mozilla/plugins/libtotem-cone-plugin.so (totem-mozilla)
   DivX® Web Player - /usr/lib/mozilla/plugins/libtotem-mully-plugin.so 
(totem-mozilla)
   QuickTime Plug-in 7.6.6 - 
/usr/lib/mozilla/plugins/libtotem-narrowspace-plugin.so (totem-mozilla)
   iTunes Application Detector - 
/usr/lib/mozilla/plugins/librhythmbox-itms-detection-plugin.so 
(rhythmbox-mozilla)
  PrefSources: prefs.js
  Profiles: Profile0 (Default) - LastVersion=19.0.2/20130308124351
  RelatedPackageVersions:
   totem-mozilla 3.6.3-0ubuntu4
   rhythmbox-mozilla 2.98-0ubuntu3
  RfKill:

  RunningIncompatibleAddons: False
  SourcePackage: firefox
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 12/01/2006
  dmi.bios.vendor: innotek GmbH
  dmi.bios.version: VirtualBox
  dmi.board.name: VirtualBox
  dmi.board.vendor: Oracle Corporation
  dmi.board.version: 1.2
  dmi.chassis.type: 1
  dmi.chassis.vendor: Oracle Corporation
  dmi.modalias: 
dmi:bvninnotekGmbH:bvrVirtualBox:bd12/01/2006:svninnotekGmbH:pnVirtualBox:pvr1.2:rvnOracleCorporation:rnVirtualBox:rvr1.2:cvnOracleCorporation:ct1:cvr:
  dmi.product.name: VirtualBox
  dmi.product.version: 1.2
  dmi.sys.vendor: innotek GmbH

To manage notifications about this bug go to:
https://bugs.launchpad.net/firefox/+bug/1160569/+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 1245188] Re: Unable to set the physical keyboard LED to show an alternative layout

2014-03-07 Thread jk
** 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 gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/1245188

Title:
  Unable to set the physical keyboard LED to show an alternative layout

Status in GNOME Control Center:
  Won't Fix
Status in One Hundred Papercuts:
  Won't Fix
Status in Ubuntu GNOME:
  Invalid
Status in “gnome-control-center” package in Ubuntu:
  Won't Fix
Status in “unity-control-center” package in Ubuntu:
  Confirmed

Bug description:
  **
   HOW TO REPRODUCE
  **

  - Go to system configuration / keyboard, or system configuration /
  text input.

  
   EXPECTED BEHAVIOUR
  

  - To be able to set the physical keyboard LED to show an alternative
  layout: Caps Lock, Num Lock or Scroll Lock.

  
   REAL BEHAVIOUR
  

  - Not to be able to configure the LED behaviour.
  - The problem with this is many people tend to look at the keyboard while 
typing, and it's somehow exhausting for them having to look at the keyboard 
indicator in the screen every time they want to check in which keyboard layout 
they at in that moment.

  *
   WORK-AROUND
  *

  - Unknown.

  **
   RELEVANT DETAILS
  **

  - Affects Ubuntu 13.10.
  - Doesn't affect Ubuntu versions prior to 13.10 (see screen-shot).
  - For other layout switching problems introduced in Ubuntu 13.10, you can see 
bug #1218322.

  ***
   TECHNICAL DETAILS
  ***

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: gnome-control-center 1:3.6.3-0ubuntu45
  ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
  Uname: Linux 3.11.0-13-generic i686
  NonfreeKernelModules: nvidia
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: i386
  Date: Sun Oct 27 17:11:41 2013
  InstallationDate: Installed on 2013-10-20 (7 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MarkForUpload: True
  SourcePackage: gnome-control-center
  UpgradeStatus: No upgrade log present (probably fresh install)
  usr_lib_gnome-control-center:
   activity-log-manager  0.9.7-0ubuntu4
   deja-dup  27.3.1-0ubuntu1
   gnome-control-center-datetime 13.10.0+13.10.20131016.2-0ubuntu1
   gnome-control-center-signon   0.1.7~+13.10.20130724.1-0ubuntu1
   gnome-control-center-unity1.3+13.10.20131004-0ubuntu1

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-control-center/+bug/1245188/+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 283666] Re: [upstream] impress slideshow does not show cropped .eps images

2013-11-18 Thread JK
It not only does not show EPS, it doesn't show them in an exported PDF
either. Which means having slides with EPS (which one has a lot of one
has a lot of PDF documents that should go into slides and converted
them) draws Impress completely useless, since there is no way to turn
this into a working presentation. You have to go all the way back to OO
3 to get things done.

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

Title:
  [upstream] impress slideshow does not show cropped .eps images

Status in LibreOffice Productivity Suite:
  Confirmed
Status in The OpenOffice.org Suite:
  Unknown
Status in “libreoffice” package in Ubuntu:
  Triaged
Status in “openoffice.org” package in Ubuntu:
  Won't Fix

Bug description:
  Binary package hint: openoffice.org

  1) lsb_release -rd
  Description:  Ubuntu 11.04
  Release:  11.04

  2) apt-cache policy libreoffice-impress
  libreoffice-impress:
Installed: 1:3.3.2-1ubuntu5
Candidate: 1:3.3.2-1ubuntu5
Version table:
   *** 1:3.3.2-1ubuntu5 0
  500 http://us.archive.ubuntu.com/ubuntu/ natty-proposed/main i386 
Packages
  100 /var/lib/dpkg/status
   1:3.3.2-1ubuntu4 0
  500 http://us.archive.ubuntu.com/ubuntu/ natty/main i386 Packages

  3) What is expected to happen in LibreOffice Impress via the Terminal:

  cd ~/Desktop  wget
  
https://bugs.launchpad.net/ubuntu/+source/openoffice.org/+bug/283666/+attachment/403321/+files/croptest.odp
   loimpress -nologo croptest.odp

  press F5, the cropped .eps graph viewable in edit mode is viewed in
  Slide Show successfully.

  4) What happens instead is it shows a blank slide in Slide Show.

  WORKAROUND: click the graph - Format - Default Format and notice the
  graph is viewable in Slide Show.

  WORKAROUND Crop the file in an alternate image manipulation program,
  then insert the file.

  Original Reporter Comments:
  When an .eps image is cropped in OOo Impress, this appears to work in the 
editing view, but in the slideshow the image either disappears completely or 
shows a tiny part from the top left corner (whose size appears to be unrelated 
to the cropping parameters).  Uncropping the image causes it to reappear.

  This bug does not affect cropping of .jpg, .bmp, .png, .gif or .svg
  images.

  Present in amd64 Hardy, amd64 Intrepid and amd64 Jaunty.

To manage notifications about this bug go to:
https://bugs.launchpad.net/df-libreoffice/+bug/283666/+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 1160569]

2013-10-29 Thread Jk Abrams
(In reply to bhavana bajaj [:bajaj] from comment #33)
 (In reply to Henrik Skupin (:whimboo) from comment #32)
  Is there anything we could do here to get this fixed for at least Firefox 26
  or 27?
 
 Would not track for a release given how old the bug is as we will not block
 a release on this. Although, a low risk uplift can be nominated once a patch
 is found.

This makes Firefox 24 on Debian Sid essentially useless because it
crashes all the time, is there anything that can be done in the meantime
to work around this bug? Any known workaround?

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

Title:
  [regression] GLib-CRITICAL **: g_slice_set_config: assertion
  `sys_page_size == 0' failed

Status in The Mozilla Firefox Browser:
  Confirmed
Status in “apport” package in Ubuntu:
  Confirmed
Status in “firefox” package in Ubuntu:
  Triaged
Status in “thunderbird” package in Ubuntu:
  Triaged

Bug description:
  Have a look at the screen-shot for more details.

  ProblemType: Bug
  DistroRelease: Ubuntu 13.04
  Package: firefox 19.0.2+build1-0ubuntu1
  ProcVersionSignature: Ubuntu 3.8.0-14.24-generic 3.8.4
  Uname: Linux 3.8.0-14-generic x86_64
  AddonCompatCheckDisabled: False
  ApportVersion: 2.9.2-0ubuntu4
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  BuildID: 20130308124351
  CRDA: Error: command ['iw', 'reg', 'get'] failed with exit code 1: nl80211 
not found.
  Channel: Unavailable
  Date: Tue Mar 26 21:48:57 2013
  ForcedLayersAccel: False
  IfupdownConfig:
   # interfaces(5) file used by ifup(8) and ifdown(8)
   auto lo
   iface lo inet loopback
  InstallationDate: Installed on 2013-03-26 (0 days ago)
  InstallationMedia: Ubuntu 13.04 Raring Ringtail - Alpha amd64+mac (20130326)
  IpRoute:
   default via 10.0.1.1 dev eth0  proto static
   10.0.1.0/24 dev eth0  proto kernel  scope link  src 10.0.1.16  metric 1
   169.254.0.0/16 dev eth0  scope link  metric 1000
  IwConfig:
   eth0  no wireless extensions.

   lono wireless extensions.
  MarkForUpload: True
  Plugins:
   Windows Media Player Plug-in 10 (compatible; Videos) - 
/usr/lib/mozilla/plugins/libtotem-gmp-plugin.so (totem-mozilla)
   VLC Multimedia Plugin (compatible Videos 3.6.3) - 
/usr/lib/mozilla/plugins/libtotem-cone-plugin.so (totem-mozilla)
   DivX® Web Player - /usr/lib/mozilla/plugins/libtotem-mully-plugin.so 
(totem-mozilla)
   QuickTime Plug-in 7.6.6 - 
/usr/lib/mozilla/plugins/libtotem-narrowspace-plugin.so (totem-mozilla)
   iTunes Application Detector - 
/usr/lib/mozilla/plugins/librhythmbox-itms-detection-plugin.so 
(rhythmbox-mozilla)
  PrefSources: prefs.js
  Profiles: Profile0 (Default) - LastVersion=19.0.2/20130308124351
  RelatedPackageVersions:
   totem-mozilla 3.6.3-0ubuntu4
   rhythmbox-mozilla 2.98-0ubuntu3
  RfKill:

  RunningIncompatibleAddons: False
  SourcePackage: firefox
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 12/01/2006
  dmi.bios.vendor: innotek GmbH
  dmi.bios.version: VirtualBox
  dmi.board.name: VirtualBox
  dmi.board.vendor: Oracle Corporation
  dmi.board.version: 1.2
  dmi.chassis.type: 1
  dmi.chassis.vendor: Oracle Corporation
  dmi.modalias: 
dmi:bvninnotekGmbH:bvrVirtualBox:bd12/01/2006:svninnotekGmbH:pnVirtualBox:pvr1.2:rvnOracleCorporation:rnVirtualBox:rvr1.2:cvnOracleCorporation:ct1:cvr:
  dmi.product.name: VirtualBox
  dmi.product.version: 1.2
  dmi.sys.vendor: innotek GmbH

To manage notifications about this bug go to:
https://bugs.launchpad.net/firefox/+bug/1160569/+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 304306]

2011-12-05 Thread Jk Abrams
Created attachment 578707
Firefox 8.0.1 autoscroll, Artch Linux KDE 4.7.3

Does this represent progress or regression?

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

Title:
  Firefox auto scroll icon is not transparent

Status in The Mozilla Firefox Browser:
  Confirmed
Status in GTK Version 2:
  Unknown
Status in “firefox” package in Ubuntu:
  Triaged
Status in “firefox-3.0” package in Ubuntu:
  Triaged
Status in “firefox-3.5” package in Ubuntu:
  Triaged

Bug description:
  Binary package hint: firefox-3.0

  With autoscroll enabled (Edit - Preferences - Advanced - General),
  firefox displays a non-transparent (jagged) autoscroll icon when you
  middle click to scroll. This only occurs on the linux firefox, i.e.
  works perfectly on Windows  Mac with a smooth, antialiased autoscroll
  icon. It has been reported upstream
  (https://bugzilla.mozilla.org/show_bug.cgi?id=429698) but there has
  been no comment there as of now. The problem is that the current icon
  displayed is ugly, and is a letdown compared to firefox on Windows and
  Mac.

  Release: Ubuntu 8.10
  Firefox version: 3.0.4

To manage notifications about this bug go to:
https://bugs.launchpad.net/firefox/+bug/304306/+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 304306]

2011-12-05 Thread Jk Abrams
Still here in Firefox 8.0.1 in KDE (Arch Linux), it got worse in a recent 
upgrade, 8 or 7, I dont remember. Does this represent someones attempt at 
fixing this bug? The rounded-corner rectangle in the background is actually 
semi-transparent, however the round jagged image is well, still jagged.
See attatchment.

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

Title:
  Firefox auto scroll icon is not transparent

Status in The Mozilla Firefox Browser:
  Confirmed
Status in GTK Version 2:
  Unknown
Status in “firefox” package in Ubuntu:
  Triaged
Status in “firefox-3.0” package in Ubuntu:
  Triaged
Status in “firefox-3.5” package in Ubuntu:
  Triaged

Bug description:
  Binary package hint: firefox-3.0

  With autoscroll enabled (Edit - Preferences - Advanced - General),
  firefox displays a non-transparent (jagged) autoscroll icon when you
  middle click to scroll. This only occurs on the linux firefox, i.e.
  works perfectly on Windows  Mac with a smooth, antialiased autoscroll
  icon. It has been reported upstream
  (https://bugzilla.mozilla.org/show_bug.cgi?id=429698) but there has
  been no comment there as of now. The problem is that the current icon
  displayed is ugly, and is a letdown compared to firefox on Windows and
  Mac.

  Release: Ubuntu 8.10
  Firefox version: 3.0.4

To manage notifications about this bug go to:
https://bugs.launchpad.net/firefox/+bug/304306/+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