[Desktop-packages] [Bug 2017980] Re: FATAL:credentials.cc(127)] Check failed: . : Permission denied (13)

2023-07-04 Thread Vic
I had the same issue with kernel 5.19.0-1010-nvidia-lowlatency

Using the PPA: 
deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main

the --no-sandbox workaround works

After switching to non Nvidia kernel 5.19.17-051917-the issue has
disappeared

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

Title:
  FATAL:credentials.cc(127)] Check failed: . : Permission denied (13)

Status in linux-meta-nvidia-5.19 package in Ubuntu:
  Confirmed
Status in nvidia-graphics-drivers-510 package in Ubuntu:
  Confirmed
Status in ubuntu-drivers-common package in Ubuntu:
  Confirmed

Bug description:
  With this kernel linux-image-nvidia-5.19 (version 5.19.0.1009.10) I 
experience that google-chrome crashes.
  It shows

  ```shell
  [11849:11849:0428/091628.955956:FATAL:credentials.cc(127)] Check failed: . : 
Permission denied (13)
  Trace/breakpoint trap (core dumped)".
  ```

  To be honest I don't think it has anything to do with google-chrome at all.
  When google-chrome starts it (normally) request the system key-manager 
(KWallet in my case) for access to the users keys before it actually shows 
anything from chrome. Not even that part (the KWallet password box) shows up.

  I can only reproduce this problem with this specific kernel. It should
  be possible to take google-chrome out of the equation by using another
  application that starts by request the desktop key manager for access.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-nvidia-5.19 (not installed)
  ProcVersionSignature: Ubuntu 5.15.0-1023.23-nvidia 5.15.92
  Uname: Linux 5.15.0-1023-nvidia x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu82.4
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: KDE
  Date: Fri Apr 28 11:23:23 2023
  InstallationDate: Installed on 2016-01-08 (2666 days ago)
  InstallationMedia: Kubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  SourcePackage: linux-meta-nvidia-5.19
  UpgradeStatus: Upgraded to jammy on 2022-07-21 (281 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-meta-nvidia-5.19/+bug/2017980/+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-10-15 Thread Vic Lim
I confirmed @westonkelliher 's method and I have changed the python
script with the file name '{usr-directory}/detect.py and it worked.

Thanks @westonkelliher !

# detect.py
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('-')[-2]) #Line 839
except ValueError:
pass
finally:
with_nvidia_kms = version >= 470

if with_nvidia_kms:
set_nvidia_kms(1)

-- 
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 1330232] Re: remmina opens then closes immesiately. Trying to connect win win 8 server. Has been working fine until 3 days ago. same problem on 2 seperate machines

2020-06-21 Thread Vic
Thanks Zachary!  Your comment helped me out - setting client to "High
Color (16 bpp)" worked.

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

Title:
  remmina opens then closes immesiately. Trying to connect win win 8
  server. Has been working fine until 3 days ago. same problem on 2
  seperate machines

Status in remmina package in Ubuntu:
  Invalid

Bug description:
  source package the bug is in : /usr/bin/remmina
  1 : Ubuntu 12.04
  2 : remmina-common 1.0.0-1ubuntu6.3
  3 : I expected to log into a remote desktop environment hosted on a Win8 
Server using RDP
  4 : It opens briefely then closes or freezes. Only when the security setting 
is set to "Negotiate" or "NLA" will I get that far. Using "RDP" or "TLA" I just 
get a window saying "Unable to connect to RDP server"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/remmina/+bug/1330232/+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 1583538] Re: Minecraft (Java on Xmir) crashes with: OpenGL: ~~ERROR~~ RuntimeException: No OpenGL context found in the current thread.

2020-05-28 Thread Vic Ganora
Late to the party, but my case is even weirder. Works when playing
multiplayer on a server, "No OpenGL context found in the current
thread." when creating a new local single player world.

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

Title:
  Minecraft (Java on Xmir) crashes with: OpenGL: ~~ERROR~~
  RuntimeException: No OpenGL context found in the current thread.

Status in Libertine:
  Invalid
Status in xorg-server package in Ubuntu:
  Confirmed

Bug description:
  User reports error when attempting to start applications that use
  OpenGL when using the desktop personality.  See traceback below.

  
  Time: 2016-05-18 21:26
  Description: Initializing game

  java.lang.ExceptionInInitializerError
at bcc.ar(SourceFile:620)
at bcc.an(SourceFile:428)
at bcc.a(SourceFile:377)
at net.minecraft.client.main.Main.main(SourceFile:124)
  Caused by: java.lang.NullPointerException
at 
org.lwjgl.opengl.LinuxDisplay.getAvailableDisplayModes(LinuxDisplay.java:947)
at org.lwjgl.opengl.LinuxDisplay.init(LinuxDisplay.java:738)
at org.lwjgl.opengl.Display.(Display.java:138)
... 4 more

  
  A detailed walkthrough of the error, its code path and all known details is 
as follows:
  
---

  -- Head --
  Stacktrace:
at bcc.ar(SourceFile:620)
at bcc.an(SourceFile:428)

  -- Initialization --
  Details:
  Stacktrace:
at bcc.a(SourceFile:377)
at net.minecraft.client.main.Main.main(SourceFile:124)

  -- System Details --
  Details:
Minecraft Version: 1.9.2
Operating System: Linux (amd64) version 4.4.0-22-generic
Java Version: 1.8.0_91, Oracle Corporation
Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Oracle 
Corporation
Memory: 144126120 bytes (137 MB) / 252248064 bytes (240 MB) up to 
3194421248 bytes (3046 MB)
JVM Flags: 5 total; -Xmx3G -XX:+UseConcMarkSweepGC 
-XX:+CMSIncrementalMode -XX:-UseAdaptiveSizePolicy -Xmn256M
IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
Launched Version: 1.9.2
LWJGL: 2.9.4
OpenGL: ~~ERROR~~ RuntimeException: No OpenGL context found in the 
current thread.
GL Caps: 
Using VBOs: No
Is Modded: Probably not. Jar signature remains and client brand is 
untouched.
Type: Client (map_client.txt)
Resource Packs: 
Current Language: ~~ERROR~~ NullPointerException: null
Profiler Position: N/A (disabled)
CPU: 

To manage notifications about this bug go to:
https://bugs.launchpad.net/libertine/+bug/1583538/+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 1835024] Re: Links triggered within most snap apps open in a separate browser session

2020-04-25 Thread vic
I can confirm that this bug exists on a fresh install of 20.04 as well.

Changing the firefox profile to that of `default-release` for the
firefox session opened via Slack solves the problem but it would be
wonderful if it could work seamlessly out of the box :)

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

Title:
  Links triggered within most snap apps open in a separate browser
  session

Status in snapd:
  Confirmed
Status in xdg-utils package in Ubuntu:
  Confirmed

Bug description:
  Hi,
  I've recently made a clean install of Ubuntu 19.10 (development release) and 
have noticed that whenever I try to open a link from one of the snap apps 
(being it Slack or Skype) the links although opened in the default browser are 
being opened in a separate session of the web browser.

  I am using Firefox and it is installed as a regular deb package
  (default).

  This is wrong and causes issues with history, sessions and settings
  not being shared between these windows. Now I have the default browser
  I use + a separate session for Slack and another one for Skype. Not to
  mention Firefox also acts just like another Slack/Skype window so dash
  displays these as two instances of the same app.

  To reproduce:
  * Install Ubuntu 19.10 (not sure if upgrade from 19.04 would lead to the same 
behaviour).
  * Confirm FFox is installed as a regular deb package.
  * Install I suppose almost any snap app, although I've only reproduced this 
with Slack and Skype and haven't tried to install other apps.

  System monitor also seems to be installed but when trying to open links from 
the about window - translators - individual names, it seems to do nothing.
  On the other hand Gnome calculator which is also installed as a snap package 
opens the link in the about dialog correctly = in my default browser session.

  ```
  :~# which gnome-calculator 
  /snap/bin/gnome-calculator
  ```

  Thank you very much for looking into that.

To manage notifications about this bug go to:
https://bugs.launchpad.net/snapd/+bug/1835024/+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 1821194] Re: [nvidia] Screen frozen after switch to other tty and do login & logout

2019-03-25 Thread Vic Liu
** Description changed:

  To simplify reproduce steps, one only has to:
  1. install (tested so far) Ubuntu Bionic
  2. switch to other tty by pressing Ctrl+Alt+Fn
  3. login and logout
  Then it should try to switch back to GDM (no matter you have logged in GUI or 
not), triggers vt-switch bug and lock up.
  
  Some more findings:
  
  1. So far we know all other newer Ubuntu versions are immune, e.g.
  Ubuntu Cosmic's gdm(version 3.30.1-1ubuntu5).
  
  2. login _and_ logout from another virtual console is required.
  Switching between text console and GUI back and forth before logging out
  doesn't trigger this bug. So this might(?) also involves systemd-logind
  as well;
  
  3. while gdm locked up, kernel and the rest of the system are actually
  still alive. Networking is still available, and even the input devices
  are still functioning well. Only gdm fails to grab the device inputs.
  
  4. when gdm locks up due to either resume from suspend or vt-switch,
  restart gdm (from remote ssh) will bring the system back.
  
  ### Disco
  | |4.15|4.18|4.19|5.0
  |---||||---
  |nouveau| | | |
  |nvidia-390 bionic|Affected|Affected|Affected|Affected
  |nvidia-390 cosmic|Affected|Affected|Affected|Affected
  |nvidia-410|Affected|Affected|Affected|Affected
  Affected: only gdm(vt-1) fails to grab further input. Use `chvt` to switch to 
other vt in a remote shell.
  
   Packages:
  * kernel:
-* 4.15.0-46-generic
-* 4.18.0-16-generic
-* 4.19.0-13-generic
-* 5.0.0-7-generic
+    * 4.15.0-46-generic
+    * 4.18.0-16-generic
+    * 4.19.0-13-generic
+    * 5.0.0-7-generic
  * nvidia-driver:
-* 390.116-0ubuntu0.18.04.1
-* 390.116-0ubuntu0.18.10.1
-* 410.104-0ubuntu1
+    * 390.116-0ubuntu0.18.04.1
+    * 390.116-0ubuntu0.18.10.1
+    * 410.104-0ubuntu1
  * systemd:
-* 240-6ubuntu1
+    * 240-6ubuntu1
  * gdm3:
-* 3.31.4+git20190225-1ubuntu1
+    * 3.31.4+git20190225-1ubuntu1
   Hardware
  * 201811-26623
  
  Summary: in Ubuntu Disco, nouveau driver is immune from this issue in
  all kernel versions tested. In contrary, nVIDIA driver fails every case.
  
-  ### Cosmic
+  ### Cosmic
  | |4.15|4.18|4.19|5.0
  |-||||---
  |nouveau | | | |
  |nvidia-390 bionic|Affected|Affected|Affected|Affected
  |nvidia-390 cosmic|Affected|Affected|Affected|Affected
  |nvidia-410 |Affected|Affected|Affected|Affected
  Affected: only gdm(vt-1) fails to grab further input. Use `chvt` to switch to 
other vt in a remote shell.
   Packages:
  * kernel:
-* 4.15.0-46-generic
-* 4.18.0-16-generic
-* 4.19.0-13-generic
-* 5.0.0-7-generic
+    * 4.15.0-46-generic
+    * 4.18.0-16-generic
+    * 4.19.0-13-generic
+    * 5.0.0-7-generic
  * nvidia-driver:
-* 390.116-0ubuntu0.18.04.1
-* 390.116-0ubuntu0.18.10.1
-* 410.104-0ubuntu1
+    * 390.116-0ubuntu0.18.04.1
+    * 390.116-0ubuntu0.18.10.1
+    * 410.104-0ubuntu1
  * systemd:
-* 239-7ubuntu10
+    * 239-7ubuntu10
  * gdm3:
-* 3.30.1-1ubuntu5
+    * 3.30.1-1ubuntu5
   Hardware
  * 201811-26623
  
  Summary: in Ubuntu Cosmic, same with Disco.
  
  # Bionic
  | |4.15|4.18 |4.19
  |-|||
  |nouveau|Affected[1]| |Affected[1]
  |hwe xorg|Affected[1]| |Affected[1]
  |nvidia-390 bionic+hwe xorg|Affected[1]|Affected[1]|Affected[1]
  |nvidia-390 bionic|Affected[2]|Affected[1]|Affected[1]
  |nvidia-390 cosmic|Affected[1]|Affected[1]|Affected[1]
  |nvidia-410 |Affected[2]|Affected[1]|Affected[3]
  [1]: no vt-switch inside gnome-shell. Press Ctrl+Alt+Fn in gdm instead. Only 
gdm(vt-1) fails to grab further input. Use `chvt` to switch to other vt in a 
remote shell.
  [2]: vt-switch inside gnome-shell causes lockup. Cannot switch to vt in gdm 
(but no system lockup). Only gdm(vt-1) fails to grab further input. Use `chvt` 
to switch to other vt in a remote shell.
  [3]: vt-switch inside gnome-shell causes lockup. Press Ctrl+Alt+Fn in gdm 
instead. Only gdm(vt-1) fails to grab further input. Use `chvt` to switch to 
other vt in a remote shell.
  ## Packages:
  * kernel:
-* 4.15.0-46-generic
-* 4.18.0-16-generic
-* 4.19.0-13-generic
+    * 4.15.0-46-generic
+    * 4.18.0-16-generic
+    * 4.19.0-13-generic
  * nvidia-driver:
-* 390.116-0ubuntu0.18.04.1
-* 390.116-0ubuntu0.18.10.1
-* 410.104-0ubuntu1
+    * 390.116-0ubuntu0.18.04.1
+    * 390.116-0ubuntu0.18.10.1
+    * 410.104-0ubuntu1
  * systemd:
-* 237-3ubuntu10.12
+    * 237-3ubuntu10.12
  * gdm3:
-* 3.28.3-0ubuntu18.04.3
+    * 3.28.3-0ubuntu18.04.3
  ## Hardware
  * 201811-26623
  
  Summary: only 4.18 kernel with nouveau driver is immune from this issue,
  which follows some changes in user land should be necessary to stabilize
  all the (nouveau) cases. But even with that, from previous results of
  Cosmic/Disco, there should still some works to be done in the nvidia
  driver.
+ 
+ OEM-tag: LP: #1804607

-- 
You received this bug notification because you are a 

[Desktop-packages] [Bug 1821194] [NEW] Screen frozen after switch to other tty and do login & logout

2019-03-21 Thread Vic Liu
Public bug reported:

To simplify reproduce steps, one only has to:
1. install (tested so far) Ubuntu Bionic
2. switch to other tty by pressing Ctrl+Alt+Fn
3. login and logout
Then it should try to switch back to GDM (no matter you have logged in GUI or 
not), triggers vt-switch bug and lock up.

Some more findings:

1. So far we know all other newer Ubuntu versions are immune, e.g.
Ubuntu Cosmic's gdm(version 3.30.1-1ubuntu5).

2. login _and_ logout from another virtual console is required.
Switching between text console and GUI back and forth before logging out
doesn't trigger this bug. So this might(?) also involves systemd-logind
as well;

3. while gdm locked up, kernel and the rest of the system are actually
still alive. Networking is still available, and even the input devices
are still functioning well. Only gdm fails to grab the device inputs.

4. when gdm locks up due to either resume from suspend or vt-switch,
restart gdm (from remote ssh) will bring the system back.

### Disco
| |4.15|4.18|4.19|5.0
|---||||---
|nouveau| | | |
|nvidia-390 bionic|Affected|Affected|Affected|Affected
|nvidia-390 cosmic|Affected|Affected|Affected|Affected
|nvidia-410|Affected|Affected|Affected|Affected
Affected: only gdm(vt-1) fails to grab further input. Use `chvt` to switch to 
other vt in a remote shell.

 Packages:
* kernel:
   * 4.15.0-46-generic
   * 4.18.0-16-generic
   * 4.19.0-13-generic
   * 5.0.0-7-generic
* nvidia-driver:
   * 390.116-0ubuntu0.18.04.1
   * 390.116-0ubuntu0.18.10.1
   * 410.104-0ubuntu1
* systemd:
   * 240-6ubuntu1
* gdm3:
   * 3.31.4+git20190225-1ubuntu1
 Hardware
* 201811-26623

Summary: in Ubuntu Disco, nouveau driver is immune from this issue in
all kernel versions tested. In contrary, nVIDIA driver fails every case.

 ### Cosmic
| |4.15|4.18|4.19|5.0
|-||||---
|nouveau | | | |
|nvidia-390 bionic|Affected|Affected|Affected|Affected
|nvidia-390 cosmic|Affected|Affected|Affected|Affected
|nvidia-410 |Affected|Affected|Affected|Affected
Affected: only gdm(vt-1) fails to grab further input. Use `chvt` to switch to 
other vt in a remote shell.
 Packages:
* kernel:
   * 4.15.0-46-generic
   * 4.18.0-16-generic
   * 4.19.0-13-generic
   * 5.0.0-7-generic
* nvidia-driver:
   * 390.116-0ubuntu0.18.04.1
   * 390.116-0ubuntu0.18.10.1
   * 410.104-0ubuntu1
* systemd:
   * 239-7ubuntu10
* gdm3:
   * 3.30.1-1ubuntu5
 Hardware
* 201811-26623

Summary: in Ubuntu Cosmic, same with Disco.

# Bionic
| |4.15|4.18 |4.19
|-|||
|nouveau|Affected[1]| |Affected[1]
|hwe xorg|Affected[1]| |Affected[1]
|nvidia-390 bionic+hwe xorg|Affected[1]|Affected[1]|Affected[1]
|nvidia-390 bionic|Affected[2]|Affected[1]|Affected[1]
|nvidia-390 cosmic|Affected[1]|Affected[1]|Affected[1]
|nvidia-410 |Affected[2]|Affected[1]|Affected[3]
[1]: no vt-switch inside gnome-shell. Press Ctrl+Alt+Fn in gdm instead. Only 
gdm(vt-1) fails to grab further input. Use `chvt` to switch to other vt in a 
remote shell.
[2]: vt-switch inside gnome-shell causes lockup. Cannot switch to vt in gdm 
(but no system lockup). Only gdm(vt-1) fails to grab further input. Use `chvt` 
to switch to other vt in a remote shell.
[3]: vt-switch inside gnome-shell causes lockup. Press Ctrl+Alt+Fn in gdm 
instead. Only gdm(vt-1) fails to grab further input. Use `chvt` to switch to 
other vt in a remote shell.
## Packages:
* kernel:
   * 4.15.0-46-generic
   * 4.18.0-16-generic
   * 4.19.0-13-generic
* nvidia-driver:
   * 390.116-0ubuntu0.18.04.1
   * 390.116-0ubuntu0.18.10.1
   * 410.104-0ubuntu1
* systemd:
   * 237-3ubuntu10.12
* gdm3:
   * 3.28.3-0ubuntu18.04.3
## Hardware
* 201811-26623

Summary: only 4.18 kernel with nouveau driver is immune from this issue,
which follows some changes in user land should be necessary to stabilize
all the (nouveau) cases. But even with that, from previous results of
Cosmic/Disco, there should still some works to be done in the nvidia
driver.

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

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

Title:
  Screen frozen after switch to other tty  and do login & logout

Status in gdm3 package in Ubuntu:
  New

Bug description:
  To simplify reproduce steps, one only has to:
  1. install (tested so far) Ubuntu Bionic
  2. switch to other tty by pressing Ctrl+Alt+Fn
  3. login and logout
  Then it should try to switch back to GDM (no matter you have logged in GUI or 
not), triggers vt-switch bug and lock up.

  Some more findings:

  1. So far we know all other newer Ubuntu versions are immune, e.g.
  Ubuntu Cosmic's gdm(version 3.30.1-1ubuntu5).

  2. login _and_ logout from another virtual console is required.
  Switching between text console and GUI back and forth before logging
  out doesn't trigger this bug. So this might(?) also involves systemd-
  

[Desktop-packages] [Bug 1569970] Re: Nautilus does not start

2017-06-13 Thread Vic
I am running 17.04 for a few month and do not have this problem anymore.
My current version is: nautilus (1:3.20.4-0ubuntu2)

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

Title:
  Nautilus does not start

Status in nautilus package in Ubuntu:
  Confirmed

Bug description:
  when opening nautilus i get the following errors:

  
  lotuspsychje@R00TBOOK:~$ nautilus

  (nautilus:9475): GLib-GIO-CRITICAL **:
  g_dbus_interface_skeleton_unexport: assertion
  'interface_->priv->connections != NULL' failed

  (nautilus:9475): GLib-GIO-CRITICAL **: g_dbus_interface_skeleton_unexport: 
assertion 'interface_->priv->connections != NULL' failed
  Kon de toepassing niet registreren: Tijd is verlopen

  (nautilus:9475): Gtk-CRITICAL **: gtk_icon_theme_get_for_screen:
  assertion 'GDK_IS_SCREEN (screen)' failed

  (nautilus:9475): GLib-GObject-WARNING **: invalid (NULL) pointer
  instance

  (nautilus:9475): GLib-GObject-CRITICAL **: g_signal_connect_object:
  assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed

  
  gksu nautilus opens nautilus, but also with an error:

  
  lotuspsychje@R00TBOOK:~$ gksu nautilus

  (nautilus:10257): GLib-GIO-CRITICAL **:
  g_dbus_interface_skeleton_unexport: assertion
  'interface_->priv->connections != NULL' failed

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: nautilus 1:3.18.4.is.3.14.3-0ubuntu4
  ProcVersionSignature: Ubuntu 4.4.0-18.34-generic 4.4.6
  Uname: Linux 4.4.0-18-generic x86_64
  ApportVersion: 2.20.1-0ubuntu1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Wed Apr 13 17:22:53 2016
  GsettingsChanges:
   b'org.gnome.nautilus.preferences' b'confirm-trash' b'false'
   b'org.gnome.nautilus.preferences' b'click-policy' b"'single'"
   b'org.gnome.nautilus.preferences' b'enable-delete' b'true'
   b'org.gnome.nautilus.window-state' b'geometry' b"'890x550+0+24'"
   b'org.gnome.nautilus.list-view' b'default-column-order' b"['name', 'size', 
'type', 'date_modified', 'date_accessed', 'owner', 'group', 'permissions', 
'mime_type', 'where']"
  InstallationDate: Installed on 2016-04-04 (8 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Beta amd64 (20160323)
  SourcePackage: nautilus
  UpgradeStatus: No upgrade log present (probably fresh install)
  mtime.conffile..etc.xdg.autostart.nautilus.autostart.desktop: 
2016-04-05T06:03:34.591882

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1569970/+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 1581617] Re: upgrade of libnl-genl-3-200 causes networkmanager to not load

2016-05-14 Thread Vic
*** This bug is a duplicate of bug 1511735 ***
https://bugs.launchpad.net/bugs/1511735

I have this problem yesterdey. I doungrade libll(3 pack) end my nm work
fine. Ubuntu 14.04 lts 64

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

Title:
  upgrade of libnl-genl-3-200 causes networkmanager to not load

Status in network-manager package in Ubuntu:
  Confirmed

Bug description:
  This morning, before leaving for work, I saw there was a update
  available for a package in Ubuntu 14.04 (I do NOT have the -proposed
  repositories enabled).  I installed it and shutdown.  When I got to
  work, no internet (network-manager won't load, there's a general
  protection error in dmesg).

  Looking at the apt log /var/cache/apt/history , it looks like libnl-
  genl-3-200 was updated (and that was the *only* package that was
  updated).

  After loading up synaptic, there are other "upgradable" packages, none
  of which got installed (or were listed) when I upgraded libnl-
  genl-3-200:

  gir1.2-netowrkmanager-1.0
  libmm-glib0
  libnm-glib-vpn1
  libnm-glib4
  libnm-util2
  modemmanager
  netowrk-manager

  However, without the internet, I can't get these packages!  Please
  help!

  I *did* have an older version of libnl-genl-3-200 in
  /var/apt/cache/archives (from Jan 29), but installing this and
  restarting networkmanager (or the machine) does not fix the issue.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1581617/+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 1497068] Re: slow file transfer via sftp with gvfs-copy

2015-09-24 Thread seattle vic
I can confirm that nemo sftp is painfully slow.  I hadn't paid attention
to it until recently, but it's transferring at around 30 kb/s.  The same
transfer using filezilla fstp is at least 10 times faster.

Ubuntu 15.04 AMD 64
Nemo 2.2.4
GVFS 1.24.1-1ubuntu1

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

Title:
  slow file transfer via sftp with gvfs-copy

Status in gvfs package in Ubuntu:
  New

Bug description:
  I originally encountered the problem when connecting with Nemo via SSH
  ; file transfer was very slow (~ 5kb/s), while with Filezilla, on the
  same distant machine, I could transfer at 2-3Mb/s.

  Using gvfs-copy sftp:// also resulted in very slow transfer.

  Note that I have been observing this behaviour for a long time, but
  not systematically: the file transfer with nemo has already been fast,
  seldomly.

  
  ___
  Release 14.04

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

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: gvfs 1.20.1-1ubuntu1
  ProcVersionSignature: Ubuntu 3.13.0-34.60-generic 3.13.11.4
  Uname: Linux 3.13.0-34-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.14.1-0ubuntu3.6
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Thu Sep 17 22:05:22 2015
  InstallationDate: Installed on 2014-06-23 (451 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/1497068/+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 1222718] Re: Tabs not displaying titles

2013-10-20 Thread seattle vic
Same here; 13.10, 64 bit, chromium stable.  However, I have the exact
same configuration loaded on two laptops.  The 5 year old laptop (ASUS)
does not show this problem, but the new ASUS with the GTX 770 has this
issue.

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

Title:
  Tabs not displaying titles

Status in Chromium Browser:
  Unknown
Status in AMD fglrx video driver:
  New
Status in “chromium-browser” package in Ubuntu:
  Confirmed

Bug description:
  Hello,

  My problem is that Chrome/Chromium (have both installed) are not displaying 
page titles rendering many pages.
  Actually, because of bug of keybindings in Gnome 3.9 I can't create 
screenshot, but with most pages I have favicon displayed and not any text like 
page title.

  It doesn't matter if GPU rendering is enabled or disabled.

To manage notifications about this bug go to:
https://bugs.launchpad.net/chromium-browser/+bug/1222718/+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 1184597] Re: lexmark e230 can't print correctly in Ubuntu 13.04

2013-06-09 Thread Vic Kumar
Same issue with Lexmark S415 (S410 Series).

If I use a browser and goto the CUPS administration page,
http:[computername]:631/, then I can get the Status to revert back to
just Idle if I reject all jobs, and then accept jobs again.

This must be done after each print job, otherwise subsequent print jobs
will print out garbage.

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

Title:
  lexmark e230 can't print correctly in Ubuntu 13.04

Status in “cups” package in Ubuntu:
  New

Bug description:
  The printer is identified correctly and the pxlmono driver is
  suggested. Getting it to print is the big problem and it's just
  guesswork when it will works and when it will not. Usually it just
  spits out garbage

  When it does that, the first page that comes out has this on it

  PJL ENTER LANGUAGE = PCLXL
     )   HP-PCL XL;1;1; 
Comment  Copyright Artifex Software

  And then it proceeds to empty the tray and every page that comes out
  has a bit of garbage printed at the top. I've tried switching driver
  to ljet4 and some others but none solved my issue. Printer used to
  work in previous versions of Ubuntu.

  ProblemType: Bug
  DistroRelease: Ubuntu 13.04
  Package: cups 1.6.2-1ubuntu5
  ProcVersionSignature: Ubuntu 3.8.0-22.33-generic 3.8.11
  Uname: Linux 3.8.0-22-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.9.2-0ubuntu8
  Architecture: amd64
  Date: Mon May 27 15:35:38 2013
  InstallationDate: Installed on 2012-11-24 (183 days ago)
  InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Release amd64 (20121017.5)
  Lpstat: device for Lexmark-International-Lexmark-E230: 
usb://Lexmark/E230?serial=72289MP
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  Papersize: letter
  PpdFiles: Lexmark-International-Lexmark-E230: Lexmark E230 Foomatic/pxlmono 
(recommended)
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.8.0-22-generic 
root=UUID=650b-595f-4055-9fc0-5672bc780767 ro quiet splash
  SourcePackage: cups
  UpgradeStatus: Upgraded to raring on 2013-04-26 (31 days ago)
  dmi.bios.date: 10/27/2011
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1104
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8P67 LE
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev X.0X
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1104:bd10/27/2011:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnP8P67LE:rvrRevX.0X:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cups/+bug/1184597/+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 946272] Re: Thermal Printer USB CUPS 1.5 UBUNTU 12.04 connection undefined

2013-03-18 Thread Vic
Hi, It's works fine on rpm distro linux. All debian distro has problem
with TSC printers. ( Cannot load libcups or libcups version too old then
1.1.19 )

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

Title:
  Thermal Printer USB CUPS 1.5 UBUNTU 12.04 connection undefined

Status in “cups” package in Ubuntu:
  Fix Released

Bug description:
  Thermal Printer compatible with TSC TDC-245C with USB tested with
  Windows 7 64-bit works fine.

  After I had driver installed I tried test print. Print job stoped without 
printing.
  I followed the test sripts end it show:

  lsusb -v:
  
-
  Bus 002 Device 004: ID 067b:2305 Prolific Technology, Inc. PL2305 Parallel 
Port
  Device Descriptor:
bLength18
bDescriptorType 1
bcdUSB   1.00
bDeviceClass0 (Defined at Interface level)
bDeviceSubClass 0 
bDeviceProtocol 0 
bMaxPacketSize0 8
idVendor   0x067b Prolific Technology, Inc.
idProduct  0x2305 PL2305 Parallel Port
bcdDevice2.02
iManufacturer   1 Prolific Technology Inc.
iProduct2 IEEE-1284 Controller
iSerial 0 
bNumConfigurations  1
Configuration Descriptor:
  bLength 9
  bDescriptorType 2
  wTotalLength   78
  bNumInterfaces  1
  bConfigurationValue 1
  iConfiguration  0 
  bmAttributes 0xa0
(Bus Powered)
Remote Wakeup
  MaxPower  100mA
  Interface Descriptor:
bLength 9
bDescriptorType 4
bInterfaceNumber0
bAlternateSetting   0
bNumEndpoints   1
bInterfaceClass 7 Printer
bInterfaceSubClass  1 Printer
bInterfaceProtocol  1 Unidirectional
iInterface  0 
Endpoint Descriptor:
  bLength 7
  bDescriptorType 5
  bEndpointAddress 0x01  EP 1 OUT
  bmAttributes2
Transfer TypeBulk
Synch Type   None
Usage Type   Data
  wMaxPacketSize 0x0040  1x 64 bytes
  bInterval   0
  Interface Descriptor:
bLength 9
bDescriptorType 4
bInterfaceNumber0
bAlternateSetting   1
bNumEndpoints   2
bInterfaceClass 7 Printer
bInterfaceSubClass  1 Printer
bInterfaceProtocol  2 Bidirectional
iInterface  0 
Endpoint Descriptor:
  bLength 7
  bDescriptorType 5
  bEndpointAddress 0x01  EP 1 OUT
  bmAttributes2
Transfer TypeBulk
Synch Type   None
Usage Type   Data
  wMaxPacketSize 0x0040  1x 64 bytes
  bInterval   0
Endpoint Descriptor:
  bLength 7
  bDescriptorType 5
  bEndpointAddress 0x82  EP 2 IN
  bmAttributes2
Transfer TypeBulk
Synch Type   None
Usage Type   Data
  wMaxPacketSize 0x0040  1x 64 bytes
  bInterval   0
  Interface Descriptor:
bLength 9
bDescriptorType 4
bInterfaceNumber0
bAlternateSetting   2
bNumEndpoints   3
bInterfaceClass   255 Vendor Specific Class
bInterfaceSubClass  0 
bInterfaceProtocol255 
iInterface  0 
Endpoint Descriptor:
  bLength 7
  bDescriptorType 5
  bEndpointAddress 0x01  EP 1 OUT
  bmAttributes2
Transfer TypeBulk
Synch Type   None
Usage Type   Data
  wMaxPacketSize 0x0040  1x 64 bytes
  bInterval   0
Endpoint Descriptor:
  bLength 7
  bDescriptorType 5
  bEndpointAddress 0x82  EP 2 IN
  bmAttributes2
Transfer TypeBulk
Synch Type   None
Usage Type   Data
  wMaxPacketSize 0x0040  1x 64 bytes
  bInterval   0
Endpoint Descriptor:
  bLength 7
  bDescriptorType 5
  bEndpointAddress 0x83  EP 3 IN
  bmAttributes

[Desktop-packages] [Bug 934887]

2012-02-27 Thread Vic-garin
It still showing in latest nightly when I ran a test at
https://panopticlick.eff.org

User Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:13.0)
Gecko/20120226 Firefox/13.0a1


Notice it is showing a1.

Its also showing the date of build?

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

Title:
  Firefox user-agent string is too unique

Status in The Mozilla Firefox Browser:
  Fix Released
Status in “firefox” package in Ubuntu:
  Triaged

Bug description:
  As shown on http://panopticlick.eff.org

  The useragent string Mozilla/5.0 (X11; Ubuntu; Linux x86_64;
  rv:10.0.2) Gecko/20100101 Firefox/10.0.2 is too unique and in
  combination with a fairly unique plugin list this allows browser
  fingerprint tracking, which is bad for privacy.

  I would suggest this change:
  Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:10.0.2) Gecko/20100101 
Firefox/10.0.2
  Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:10.0) Gecko/20100101 Firefox/10.0

  This removes makes the version number less unique. Also the Gecko
  version could be made a bit more generic.

To manage notifications about this bug go to:
https://bugs.launchpad.net/firefox/+bug/934887/+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 877321] Re: package libreoffice-impress 1:3.4.3-3ubuntu2 failed to install/upgrade: ErrorMessage: dependency problems - leaving unconfigured

2011-10-18 Thread Vic Romahn
-- 
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/877321

Title:
  package libreoffice-impress 1:3.4.3-3ubuntu2 failed to
  install/upgrade: ErrorMessage: dependency problems - leaving
  unconfigured

Status in “libreoffice” package in Ubuntu:
  New

Bug description:
  again

  ProblemType: Package
  DistroRelease: Ubuntu 11.10
  Package: libreoffice-impress 1:3.4.3-3ubuntu2
  ProcVersionSignature: Ubuntu 2.6.38-11.50-generic 2.6.38.8
  Uname: Linux 2.6.38-11-generic i686
  ApportVersion: 1.23-0ubuntu3
  Architecture: i386
  Date: Tue Oct 18 01:44:19 2011
  ErrorMessage: ErrorMessage: dependency problems - leaving unconfigured
  InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
  SourcePackage: libreoffice
  Title: package libreoffice-impress 1:3.4.3-3ubuntu2 failed to 
install/upgrade: ErrorMessage: dependency problems - leaving unconfigured
  UpgradeStatus: Upgraded to oneiric on 2011-10-18 (0 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/877321/+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 877321] [NEW] package libreoffice-impress 1:3.4.3-3ubuntu2 failed to install/upgrade: ErrorMessage: dependency problems - leaving unconfigured

2011-10-18 Thread Vic Romahn
Public bug reported:

again

ProblemType: Package
DistroRelease: Ubuntu 11.10
Package: libreoffice-impress 1:3.4.3-3ubuntu2
ProcVersionSignature: Ubuntu 2.6.38-11.50-generic 2.6.38.8
Uname: Linux 2.6.38-11-generic i686
ApportVersion: 1.23-0ubuntu3
Architecture: i386
Date: Tue Oct 18 01:44:19 2011
ErrorMessage: ErrorMessage: dependency problems - leaving unconfigured
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
SourcePackage: libreoffice
Title: package libreoffice-impress 1:3.4.3-3ubuntu2 failed to install/upgrade: 
ErrorMessage: dependency problems - leaving unconfigured
UpgradeStatus: Upgraded to oneiric on 2011-10-18 (0 days ago)

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


** Tags: apport-package i386 oneiric

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

Title:
  package libreoffice-impress 1:3.4.3-3ubuntu2 failed to
  install/upgrade: ErrorMessage: dependency problems - leaving
  unconfigured

Status in “libreoffice” package in Ubuntu:
  New

Bug description:
  again

  ProblemType: Package
  DistroRelease: Ubuntu 11.10
  Package: libreoffice-impress 1:3.4.3-3ubuntu2
  ProcVersionSignature: Ubuntu 2.6.38-11.50-generic 2.6.38.8
  Uname: Linux 2.6.38-11-generic i686
  ApportVersion: 1.23-0ubuntu3
  Architecture: i386
  Date: Tue Oct 18 01:44:19 2011
  ErrorMessage: ErrorMessage: dependency problems - leaving unconfigured
  InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
  SourcePackage: libreoffice
  Title: package libreoffice-impress 1:3.4.3-3ubuntu2 failed to 
install/upgrade: ErrorMessage: dependency problems - leaving unconfigured
  UpgradeStatus: Upgraded to oneiric on 2011-10-18 (0 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/877321/+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 877317] [NEW] package libreoffice-emailmerge 1:3.4.3-3ubuntu2 failed to install/upgrade: ErrorMessage: dependency problems - leaving unconfigured

2011-10-18 Thread Vic Romahn
Public bug reported:

upgrade and install ubuntu 11.10

ProblemType: Package
DistroRelease: Ubuntu 11.10
Package: libreoffice-emailmerge 1:3.4.3-3ubuntu2
ProcVersionSignature: Ubuntu 2.6.38-11.50-generic 2.6.38.8
Uname: Linux 2.6.38-11-generic i686
ApportVersion: 1.23-0ubuntu3
Architecture: i386
Date: Tue Oct 18 01:44:46 2011
ErrorMessage: ErrorMessage: dependency problems - leaving unconfigured
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
PackageArchitecture: all
SourcePackage: libreoffice
Title: package libreoffice-emailmerge 1:3.4.3-3ubuntu2 failed to 
install/upgrade: ErrorMessage: dependency problems - leaving unconfigured
UpgradeStatus: Upgraded to oneiric on 2011-10-18 (0 days ago)

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


** Tags: apport-package i386 oneiric

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

Title:
  package libreoffice-emailmerge 1:3.4.3-3ubuntu2 failed to
  install/upgrade: ErrorMessage: dependency problems - leaving
  unconfigured

Status in “libreoffice” package in Ubuntu:
  New

Bug description:
  upgrade and install ubuntu 11.10

  ProblemType: Package
  DistroRelease: Ubuntu 11.10
  Package: libreoffice-emailmerge 1:3.4.3-3ubuntu2
  ProcVersionSignature: Ubuntu 2.6.38-11.50-generic 2.6.38.8
  Uname: Linux 2.6.38-11-generic i686
  ApportVersion: 1.23-0ubuntu3
  Architecture: i386
  Date: Tue Oct 18 01:44:46 2011
  ErrorMessage: ErrorMessage: dependency problems - leaving unconfigured
  InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
  PackageArchitecture: all
  SourcePackage: libreoffice
  Title: package libreoffice-emailmerge 1:3.4.3-3ubuntu2 failed to 
install/upgrade: ErrorMessage: dependency problems - leaving unconfigured
  UpgradeStatus: Upgraded to oneiric on 2011-10-18 (0 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/877317/+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 877317] Re: package libreoffice-emailmerge 1:3.4.3-3ubuntu2 failed to install/upgrade: ErrorMessage: dependency problems - leaving unconfigured

2011-10-18 Thread Vic Romahn
-- 
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/877317

Title:
  package libreoffice-emailmerge 1:3.4.3-3ubuntu2 failed to
  install/upgrade: ErrorMessage: dependency problems - leaving
  unconfigured

Status in “libreoffice” package in Ubuntu:
  New

Bug description:
  upgrade and install ubuntu 11.10

  ProblemType: Package
  DistroRelease: Ubuntu 11.10
  Package: libreoffice-emailmerge 1:3.4.3-3ubuntu2
  ProcVersionSignature: Ubuntu 2.6.38-11.50-generic 2.6.38.8
  Uname: Linux 2.6.38-11-generic i686
  ApportVersion: 1.23-0ubuntu3
  Architecture: i386
  Date: Tue Oct 18 01:44:46 2011
  ErrorMessage: ErrorMessage: dependency problems - leaving unconfigured
  InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
  PackageArchitecture: all
  SourcePackage: libreoffice
  Title: package libreoffice-emailmerge 1:3.4.3-3ubuntu2 failed to 
install/upgrade: ErrorMessage: dependency problems - leaving unconfigured
  UpgradeStatus: Upgraded to oneiric on 2011-10-18 (0 days ago)

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