[Desktop-packages] [Bug 1992854] [NEW] Update wpebackend-fdo to 1.6.1

2022-10-13 Thread Adrian Perez de Castro
Public bug reported:

Impact
--

This is a minor bugfix release of the 1.6.x series:

  https://wpewebkit.org/release/wpebackend-fdo-1.6.1.html

The version currently in 20.04 LTS is 1.6.0, which accidentally shipped with
a bug that made the symbols wpe_fdo_get_{major,minor,micro}_version hidden.

These were supposed to be public (which is fixed in 1.6.1) and can be used
by other components to check the installed version at runtime.

In particular WebKitGTK depends on wpebackend-fdo, and we expect future
security updates may use these functions. The WebKitGTK team has committed
to making it possible for 20.04 to get updates until April 2023, and this
update makes those possible. Users of WebKit-based browsers should be able
to browse the Web with an up-to-date WebKitGTK stack that receives security
updates :)


Test Plan
-

The following C program can be used to check that the bug is present before
the wpebackend-fdo update, and that the issue was fixed afterwards:

  /*
   * $CC -o wpefdoversion wpefdoversion.c $(pkg-config --cflags --libs 
wpebackend-fdo-1.0)
   *
   * This will:
   *   - Fail to link with wpebackend-fdo 1.6.0
   *   - Succeed with version 1.6.1
   */

  #include 
  #include 

  int main(int argc, char *argv[]) {
printf("wpebackend-fdo runtime version: %d.%d.%d\n",
   wpe_fdo_get_major_version(), wpe_fdo_get_minor_version(), 
wpe_fdo_get_micro_version());
return 0;
  }

Browsers which use WebKitGTK for rendering web content running in a Wayland 
session
use wpebackend-fdo. Loading e.g. 
https://people.igalia.com/aperez/poster-circle.html
in Epiphany (package epiphany-browser) should work the same before and after 
the update.


What Could Go Wrong
---

Given the little amount of changes between versions 1.6.0 and 1.6.1, the 
possibility
of breakage is minimal to none. Diff:

  https://github.com/Igalia/WPEBackend-fdo/compare/1.6.0...1.6.1

If there were unexpected build failures for the package, an alternative would 
be to
continue shipping version 1.6.0 with commit 
1dda80de5372e56cdc6f818a3fca493f7cc1f9d6
applied, which would solve the issue with the 
wpe_fdo_get_{major,minor,micro}_version
symbols without including the rest of the changes from 1.6.1:

  https://github.com/Igalia/WPEBackend-
fdo/commit/1dda80de5372e56cdc6f818a3fca493f7cc1f9d6

Finally, given that default installs of Ubuntu desktop do not include a 
WebKitGTK
based browser, users are likely to have another web browser available if things 
were
to go wrong.

** Affects: wpebackend-fdo (Ubuntu)
 Importance: Undecided
 Status: New

** Attachment added: "Test program C source"
   
https://bugs.launchpad.net/bugs/1992854/+attachment/5623985/+files/wpefdoversion.c

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

Title:
  Update wpebackend-fdo to 1.6.1

Status in wpebackend-fdo package in Ubuntu:
  New

Bug description:
  Impact
  --

  This is a minor bugfix release of the 1.6.x series:

https://wpewebkit.org/release/wpebackend-fdo-1.6.1.html

  The version currently in 20.04 LTS is 1.6.0, which accidentally shipped with
  a bug that made the symbols wpe_fdo_get_{major,minor,micro}_version hidden.

  These were supposed to be public (which is fixed in 1.6.1) and can be used
  by other components to check the installed version at runtime.

  In particular WebKitGTK depends on wpebackend-fdo, and we expect future
  security updates may use these functions. The WebKitGTK team has committed
  to making it possible for 20.04 to get updates until April 2023, and this
  update makes those possible. Users of WebKit-based browsers should be able
  to browse the Web with an up-to-date WebKitGTK stack that receives security
  updates :)

  
  Test Plan
  -

  The following C program can be used to check that the bug is present before
  the wpebackend-fdo update, and that the issue was fixed afterwards:

/*
 * $CC -o wpefdoversion wpefdoversion.c $(pkg-config --cflags --libs 
wpebackend-fdo-1.0)
 *
 * This will:
 *   - Fail to link with wpebackend-fdo 1.6.0
 *   - Succeed with version 1.6.1
 */

#include 
#include 

int main(int argc, char *argv[]) {
  printf("wpebackend-fdo runtime version: %d.%d.%d\n",
 wpe_fdo_get_major_version(), wpe_fdo_get_minor_version(), 
wpe_fdo_get_micro_version());
  return 0;
}

  Browsers which use WebKitGTK for rendering web content running in a Wayland 
session
  use wpebackend-fdo. Loading e.g. 
https://people.igalia.com/aperez/poster-circle.html
  in Epiphany (package epiphany-browser) should work the same before and after 
the update.

  
  What Could Go Wrong
  ---

  Given the little amount of changes between versions 1.6.0 and 1.6.1, the 
possibility
  of breakage is minimal to none. Diff:


[Desktop-packages] [Bug 1966418]

2022-03-30 Thread Adrian Perez
(In reply to Jeremy Bicha from comment #4)
> The first 2 did not work for me but the 3rd did.
> 
> iris
> 
> $ MESA_LOADER_DRIVER_OVERRIDE=iris yelp
> EGLDisplay Initialization failed: EGL_NOT_INITIALIZED
> Cannot create EGL context: invalid display (last error: EGL_SUCCESS)
> Unsupported modifier, resource creation failed.
> XXX: resource creation failed
> 
> zink
> 
> $ MESA_LOADER_DRIVER_OVERRIDE=zink yelp
> MESA-INTEL: warning: Performance support disabled, consider sysctl
> dev.i915.perf_stream_paranoid=0
> 
> MESA-INTEL: warning: Performance support disabled, consider sysctl
> dev.i915.perf_stream_paranoid=0
> 
> EGLDisplay Initialization failed: EGL_NOT_INITIALIZED
> Cannot create EGL context: invalid display (last error: EGL_SUCCESS)

Zink will use internally lower-level parts from the Iris driver to access
the hardware, so at least this indicates that the issue is *below* the
OpenGL/GLES implementation. Could be EGL or hardware access, I suppose.

> i965
> 
> $ MESA_LOADER_DRIVER_OVERRIDE=i965 yelp
> libEGL warning: MESA-LOADER: failed to open i965: /usr/lib/dri/i965_dri.so:
> cannot open shared object file: No such file or directory (search paths
> /usr/lib/x86_64-linux-gnu/dri:\$${ORIGIN}/dri:/usr/lib/dri, suffix _dri)
> 
> WaylandCompositor requires eglBindWaylandDisplayWL,
> eglUnbindWaylandDisplayWL and eglQueryWaylandBuffer.
> Nested Wayland compositor could not initialize EGL
> libEGL warning: MESA-LOADER: failed to open i965: /usr/lib/dri/i965_dri.so:
> cannot open shared object file: No such file or directory (search paths
> /usr/lib/x86_64-linux-gnu/dri:\$${ORIGIN}/dri:/usr/lib/dri, suffix _dri)

When a driver that was set explicitly like this fails to load, Mesa falls
back to using software rendering. This means you ended up here using the
swrast/llvmpipe driver, most likely (you can load “webkit://gpu” in the
Minibrowser or Epiphany to check this). This means that WebKit is most
likely using the GLX/EGL/OpenGL/GLES APIs correctly and the issue lies
somewhere in the Intel driver.

But the version of Mesa I am using here is the same as you and it works.
My suspicion is that one of the following is happening:

 * Patches applied by Debian/Ubuntu on top of Mesa are breaking the Intel
   driver. Here I am using Arch Linux, which does not apply any patches.
 * The Intel driver is being miscompiled somehow by the compiler toolchain
   shipped by Ubuntu. In case it helps, here Arch stable has GCC 11.2.0 as
   the default system compiler, so that's what gets used to build packages.
 * The bug could be related to your particular GPU model (and the
   corresponding code inside Mesa for it).

I hope this helps :)

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

Title:
  [jammy regression] Evolution does not display message content anymore

Status in Mesa:
  Unknown
Status in Webkit:
  Confirmed
Status in epiphany-browser package in Ubuntu:
  Invalid
Status in evolution package in Ubuntu:
  Invalid
Status in gnome-control-center package in Ubuntu:
  Invalid
Status in liferea package in Ubuntu:
  Invalid
Status in mesa package in Ubuntu:
  Confirmed
Status in webkit2gtk package in Ubuntu:
  Confirmed

Bug description:
  Impact
  --
  All webkit using apps for affected users display a blank screen.

  Original Bug Report
  ---
  Evolution has suddenly stopped displaying message contents on the last 24h. 
Starting it up from the command line shows this output:

  ```
  EGLDisplay Initialization failed: EGL_NOT_INITIALIZED
  Cannot create EGL context: invalid display (last error: EGL_SUCCESS)
  ```

  I don't know if it's related, but googling around shows some webkitgtk
  hits on this error.

  The email contents are however clickable. They're just not rendered to
  screen (see attached file).

  Deleting the evolution folders from `~/.config`, `~/.cache` and
  `~/.local/share` does not help.

  Email accounts are all google, configured through gnome online
  accounts.

  Workaround #1
  -
  You can run the app from the command line with
  WEBKIT_DISABLE_COMPOSITING_MODE=1 evolution
  (Replace evolution with the name of the webkit app you are trying to use)

  Workaround #2
  -
  Log out.
  Select your name on the login screen.
  Click the gear button and choose Ubuntu on Xorg.
  Enter your password to finish logging in.

  
  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: evolution 3.44.0-1
  ProcVersionSignature: Ubuntu 5.15.0-23.23-generic 5.15.27
  Uname: Linux 5.15.0-23-generic x86_64
  ApportVersion: 2.20.11-0ubuntu79
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: sway
  Date: Fri Mar 25 10:55:49 2022
  SourcePackage: evolution
  UpgradeStatus: Upgraded to jammy on 2022-03-01 (24 days ago)

To manage notifications about this bug go to:

[Desktop-packages] [Bug 1326954]

2018-06-12 Thread Adrian Perez
Created attachment 129120
Output of "lsusb -v -d 1199:9041" on Fujitsu S936

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

Title:
  Sierra Wireless EM7305 (Fujitsu Lifebook S904) does not work after
  suspend/hibernate

Status in ModemManager:
  Unknown
Status in libmbim package in Ubuntu:
  Confirmed
Status in modemmanager package in Ubuntu:
  Invalid

Bug description:
  Ubuntu 14.04, x86_64, ModemManager-1.0.0-2ubuntu1

  Card: Sierra Wireless EM7305 (PCI Express M.2 form factor)

  Expected: Sierra plugin is used
  Happens: Generic plugin is used instead

  After cold start the card seems to work almost fine, but does not come
  back after suspend or hibernate. At least after hibernate MM may go
  into a tight loop consuming 100% CPU.

  MM debug log output (full log attached):

   [1401992536.121631] [mm-plugin-manager.c:576] build_plugins_list(): 
(Plugin Manager) [wwan0] Found '1' plugins to try...
   [1401992536.125236] [mm-plugin-manager.c:580] build_plugins_list(): 
(Plugin Manager) [wwan0]   Will try with plugin 'Generic'
   [1401992536.128923] [mm-plugin.c:700] mm_plugin_supports_port(): 
(Generic) [wwan0] probing deferred until result suggested
   [1401992536.132687] [mm-plugin-manager.c:505] 
plugin_supports_port_ready(): (Plugin Manager) [wwan0] deferring support check 
until result suggested
   [1401992536.142664] [mm-port-probe.c:536] wdm_probe_mbim(): 
(usbmisc/cdc-wdm0) probing MBIM...
   [1401992538.202591] [mm-plugin-manager.c:646] 
min_probing_timeout_cb(): (Plugin Manager) 
[/sys/devices/pci:00/:00:14.0/usb1/1-6] Minimum probing time consumed
  [/dev/cdc-wdm0] Queried max control message size: 4096[/dev/cdc-wdm0] Sent 
message...
  << RAW:
  <<   length = 16
  <<   data   = 01:00:00:00:10:00:00:00:01:00:00:00:00:10:00:00
  [/dev/cdc-wdm0] Sent message (translated)...
  << Header:
  <<   length  = 16
  <<   type= open (0x0001)
  <<   transaction = 1
  << Contents:
  <<   max_control_transfer = 4096
  [/dev/cdc-wdm0] Received message...
  >> RAW:
  >>   length = 16
  >>   data   = 01:00:00:80:10:00:00:00:01:00:00:00:00:00:00:00
   [1401992539.481429] [mm-port-probe.c:300] 
mm_port_probe_set_result_mbim(): (usbmisc/cdc-wdm0) port is MBIM-capable
  [/dev/cdc-wdm0] Sent message...
  << RAW:
  <<   length = 12
  <<   data   = 02:00:00:00:0C:00:00:00:02:00:00:00
  [/dev/cdc-wdm0] Sent message (translated)...
  << Header:
  <<   length  = 12
  <<   type= close (0x0002)
  <<   transaction = 2
  [/dev/cdc-wdm0] Received message...
  >> RAW:
  >>   length = 16
  >>   data   = 02:00:00:80:10:00:00:00:02:00:00:00:00:00:00:00
   [1401992539.545529] [mm-plugin-manager.c:417] 
plugin_supports_port_ready(): (Plugin Manager) (Generic) [cdc-wdm0] found best 
plugin for port
   [1401992539.549361] [mm-plugin-manager.c:334] 
suggest_port_probe_result(): (Plugin Manager) (Generic) [wwan0] deferred task 
completed, got suggested plugin
   [1401992539.553247] [mm-plugin-manager.c:274] 
port_probe_context_finished(): (Plugin Manager) 'cdc-wdm0' port probe finished, 
still 1 running probes in this device (wwan0)
   [1401992539.556995] [mm-plugin.c:700] mm_plugin_supports_port(): 
(Generic) [wwan0] probing deferred until result suggested
   [1401992539.560690] [mm-plugin-manager.c:485] 
plugin_supports_port_ready(): (Plugin Manager) (Generic) [wwan0] task 
completed, got suggested plugin
   [1401992539.564175] [mm-plugin-manager.c:285] 
port_probe_context_finished(): (Plugin Manager) 'wwan0' port probe finished, 
last one in device
   [1401992539.567868] [mm-plugin-manager.c:107] 
find_device_support_context_complete_and_free(): (Plugin Manager) 
[/sys/devices/pci:00/:00:14.0/usb1/1-6] device support check finished 
in '3.677528' seconds
[1401992539.571611] [mm-device.c:486] mm_device_create_modem(): 
Creating modem with plugin 'Generic' and '2' ports
   [1401992539.575477] [generic/mm-plugin-generic.c:73] create_modem(): 
MBIM-powered generic modem found...

  mmcli output:

  /org/freedesktop/ModemManager1/Modem/0 (device id 
'b3a77501ed8da196baa804a4142ff280766f6f98')
-
Hardware |   manufacturer: 'Generic'
 |  model: 'MBIM [1199:9063]'
 |   revision: 'SWI9X15C_01.12'
 |  supported: 'gsm-umts, lte'
 |current: 'gsm-umts, lte'
 |   equipment id: '356906050069168'
-
System   | device: '/sys/devices/pci:00/:00:14.0/usb1/1-6'
 |drivers: 'cdc_mbim'
 | plugin: 'Generic'
 |   primary port: 'cdc-wdm0'
 |  ports: 'cdc-wdm0 (mbim), wwan0 (net)'
-
Numbers  |   own : 'unknown'

[Desktop-packages] [Bug 1326954]

2018-06-12 Thread Adrian Perez
I also have this issue, with a Fujitsu S936 laptop which includes an EM7305.
After adding the udev rules in the post at 0xf8.org (modifying them to fit
use the USB identifier that shows in my laptop, 1199:9041), the “mbim-proxy” 
program seems to hang in some kind of loop, chewing 80% of CPU time according
to “top”. Here are the details of my configuration:

- Arch Linux
- ModemManager 1.6.4
- NetworkManager 1.4.4
- libmbim 1.14.0
- Kernel 4.9.5

I will be posting the output from “lsusb -v -d 1199:9041” as an
attachment.

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

Title:
  Sierra Wireless EM7305 (Fujitsu Lifebook S904) does not work after
  suspend/hibernate

Status in ModemManager:
  Unknown
Status in libmbim package in Ubuntu:
  Confirmed
Status in modemmanager package in Ubuntu:
  Invalid

Bug description:
  Ubuntu 14.04, x86_64, ModemManager-1.0.0-2ubuntu1

  Card: Sierra Wireless EM7305 (PCI Express M.2 form factor)

  Expected: Sierra plugin is used
  Happens: Generic plugin is used instead

  After cold start the card seems to work almost fine, but does not come
  back after suspend or hibernate. At least after hibernate MM may go
  into a tight loop consuming 100% CPU.

  MM debug log output (full log attached):

   [1401992536.121631] [mm-plugin-manager.c:576] build_plugins_list(): 
(Plugin Manager) [wwan0] Found '1' plugins to try...
   [1401992536.125236] [mm-plugin-manager.c:580] build_plugins_list(): 
(Plugin Manager) [wwan0]   Will try with plugin 'Generic'
   [1401992536.128923] [mm-plugin.c:700] mm_plugin_supports_port(): 
(Generic) [wwan0] probing deferred until result suggested
   [1401992536.132687] [mm-plugin-manager.c:505] 
plugin_supports_port_ready(): (Plugin Manager) [wwan0] deferring support check 
until result suggested
   [1401992536.142664] [mm-port-probe.c:536] wdm_probe_mbim(): 
(usbmisc/cdc-wdm0) probing MBIM...
   [1401992538.202591] [mm-plugin-manager.c:646] 
min_probing_timeout_cb(): (Plugin Manager) 
[/sys/devices/pci:00/:00:14.0/usb1/1-6] Minimum probing time consumed
  [/dev/cdc-wdm0] Queried max control message size: 4096[/dev/cdc-wdm0] Sent 
message...
  << RAW:
  <<   length = 16
  <<   data   = 01:00:00:00:10:00:00:00:01:00:00:00:00:10:00:00
  [/dev/cdc-wdm0] Sent message (translated)...
  << Header:
  <<   length  = 16
  <<   type= open (0x0001)
  <<   transaction = 1
  << Contents:
  <<   max_control_transfer = 4096
  [/dev/cdc-wdm0] Received message...
  >> RAW:
  >>   length = 16
  >>   data   = 01:00:00:80:10:00:00:00:01:00:00:00:00:00:00:00
   [1401992539.481429] [mm-port-probe.c:300] 
mm_port_probe_set_result_mbim(): (usbmisc/cdc-wdm0) port is MBIM-capable
  [/dev/cdc-wdm0] Sent message...
  << RAW:
  <<   length = 12
  <<   data   = 02:00:00:00:0C:00:00:00:02:00:00:00
  [/dev/cdc-wdm0] Sent message (translated)...
  << Header:
  <<   length  = 12
  <<   type= close (0x0002)
  <<   transaction = 2
  [/dev/cdc-wdm0] Received message...
  >> RAW:
  >>   length = 16
  >>   data   = 02:00:00:80:10:00:00:00:02:00:00:00:00:00:00:00
   [1401992539.545529] [mm-plugin-manager.c:417] 
plugin_supports_port_ready(): (Plugin Manager) (Generic) [cdc-wdm0] found best 
plugin for port
   [1401992539.549361] [mm-plugin-manager.c:334] 
suggest_port_probe_result(): (Plugin Manager) (Generic) [wwan0] deferred task 
completed, got suggested plugin
   [1401992539.553247] [mm-plugin-manager.c:274] 
port_probe_context_finished(): (Plugin Manager) 'cdc-wdm0' port probe finished, 
still 1 running probes in this device (wwan0)
   [1401992539.556995] [mm-plugin.c:700] mm_plugin_supports_port(): 
(Generic) [wwan0] probing deferred until result suggested
   [1401992539.560690] [mm-plugin-manager.c:485] 
plugin_supports_port_ready(): (Plugin Manager) (Generic) [wwan0] task 
completed, got suggested plugin
   [1401992539.564175] [mm-plugin-manager.c:285] 
port_probe_context_finished(): (Plugin Manager) 'wwan0' port probe finished, 
last one in device
   [1401992539.567868] [mm-plugin-manager.c:107] 
find_device_support_context_complete_and_free(): (Plugin Manager) 
[/sys/devices/pci:00/:00:14.0/usb1/1-6] device support check finished 
in '3.677528' seconds
[1401992539.571611] [mm-device.c:486] mm_device_create_modem(): 
Creating modem with plugin 'Generic' and '2' ports
   [1401992539.575477] [generic/mm-plugin-generic.c:73] create_modem(): 
MBIM-powered generic modem found...

  mmcli output:

  /org/freedesktop/ModemManager1/Modem/0 (device id 
'b3a77501ed8da196baa804a4142ff280766f6f98')
-
Hardware |   manufacturer: 'Generic'
 |  model: 'MBIM [1199:9063]'
 |   revision: 'SWI9X15C_01.12'
 |  supported: 'gsm-umts, lte'
 |

[Desktop-packages] [Bug 1028431] Re: wpa2 pasword keeps on deleting

2013-01-21 Thread Adrian Perez
Thank you for taking the time to report this bug and helping to make
Ubuntu better. Unfortunately we can't start working on it yet, because
your bug report didn't include enough information.

Please include the information requested at
https://wiki.ubuntu.com/DebuggingNetworkManager. If you have trouble, do
not hesitate to ask for more assistance. Thanks in advance.

** Package changed: ubuntu = network-manager (Ubuntu)

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

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

Title:
  wpa2 pasword keeps on deleting

Status in “network-manager” package in Ubuntu:
  Incomplete

Bug description:
  the password field in wireless connection security field keeps on
  erasing by itself. i have used wpa and wpa2.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1028431/+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 1026299] Re: wireless password corrupted?

2013-01-21 Thread Adrian Perez
** Package changed: ubuntu = network-manager (Ubuntu)

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

Title:
  wireless password corrupted?

Status in “network-manager” package in Ubuntu:
  New

Bug description:
  I have been using 12.04 for about a month. I have two primary locations for 
wireless connection, work and home. Both have worked perfectly until Wednesday
  of last week. My work connection is the issue. It works in Windows 7(dual 
boot), but no more in ubuntu. When it ques me for the password to access the 
wireless, I type in the password, but it takes three more 
characters(keystrokes) for the connect button to go from greyed out to black, 
but by then the password is wrong. I have deleted the connection, tried to 
reestablish the connection, re-booted all to no avail. I'm scratch'n my head on 
this one. Any help would be appreciated.

  The connect button also goes from greyed out to black with 5 digits in
  case this is important. The password is 10 digits.

  I have a Toshiba Laptop P205d-s7438

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1026299/+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 1025339] Re: i did not download software for ubuntu software center

2013-01-21 Thread Adrian Perez
** Package changed: ubuntu = software-center (Ubuntu)

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

Title:
  i did not download software for ubuntu software center

Status in “software-center” package in Ubuntu:
  New

Bug description:
  i try to download software from ubuntu software center but on download
  time one error coming tat says Internet connection not found . please
  healp

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: software-center 5.0.6
  ProcVersionSignature: Ubuntu 3.0.0-17.30-generic 3.0.22
  Uname: Linux 3.0.0-17-generic i686
  NonfreeKernelModules: wl
  ApportVersion: 1.23-0ubuntu4
  Architecture: i386
  Date: Mon Jul 16 21:12:03 2012
  InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release i386 (20111012)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_IN:en
   PATH=(custom, no user)
   LANG=en_IN
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: Upgraded to oneiric on 2012-04-27 (80 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/software-center/+bug/1025339/+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 1022648] Re: Ubuntu packaged Firefox 13.0.1 spell check as you type NOT selecting language by default, even though active

2013-01-21 Thread Adrian Perez
** Package changed: ubuntu = firefox (Ubuntu)

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

Title:
  Ubuntu packaged Firefox 13.0.1 spell check as you type NOT selecting
  language by default, even though active

Status in “firefox” package in Ubuntu:
  New

Bug description:
  Please refer to this entire Mozilla thread, especially comments 16 and
  19 for all the detailed information that's already contained there:

  https://bugzilla.mozilla.org/show_bug.cgi?id=770614

  Additionally, I tried to add this as the package where I found the
  bug, but it only produced an error:

  firefox 13.0.1+build1-0ubuntu0.12.04.1

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: evince 3.4.0-0ubuntu1
  ProcVersionSignature: Ubuntu 3.2.0-26.41-generic 3.2.19
  Uname: Linux 3.2.0-26-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.0.1-0ubuntu8
  Architecture: amd64
  Date: Mon Jul  9 12:14:40 2012
  InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release amd64 (20111012)
  KernLog:
   
  ProcEnviron:
   TERM=xterm
   PATH=(custom, user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: evince
  UpgradeStatus: Upgraded to precise on 2012-07-05 (3 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/firefox/+bug/1022648/+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 1020483] Re: My ubuntu 2D and 3D desktop is missing

2013-01-21 Thread Adrian Perez
** Package changed: ubuntu = xorg (Ubuntu)

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

Title:
  My ubuntu 2D and 3D desktop is missing

Status in “xorg” package in Ubuntu:
  New

Bug description:
  My ubuntu desktop is missing its side and upper windows, icons. Its
  fully blank but working in Gnome. My additional drivers showing that
  another version of this  driver is in use. sometimes a hardware reorts
  a bluetooth error. I m unable to work in ubuntu 2D/3D

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: xorg 1:7.6+12ubuntu1
  ProcVersionSignature: Ubuntu 3.2.0-23.36-generic 3.2.14
  Uname: Linux 3.2.0-23-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 2.0.1-0ubuntu5
  Architecture: amd64
  CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,resize,snap,vpswitch,gnomecompat,mousepoll,grid,move,regex,place,imgpng,wall,session,animation,fade,scale,workarounds,expo,ezoom,unityshell]
  CompositorRunning: None
  CurrentDmesg:
   [   30.083716] eth0: no IPv6 routers present
   [  241.184168] mtrr: no MTRR for d000,1000 found
   [  391.042363] mtrr: no MTRR for d000,1000 found
  Date: Tue Jul  3 15:06:58 2012
  DistUpgraded: Fresh install
  DistroCodename: precise
  DistroVariant: ubuntu
  DkmsStatus: fglrx, 8.960, 3.2.0-23-generic, x86_64: installed
  ExtraDebuggingInterest: Yes, whatever it takes to get this fixed in Ubuntu
  GraphicsCard:
   Advanced Micro Devices [AMD] nee ATI Madison [Radeon HD 5000M Series] 
[1002:68c1] (prog-if 00 [VGA controller])
 Subsystem: Dell Device [1028:0456]
  InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
  JockeyStatus:
   xorg:fglrx_updates - ATI/AMD proprietary FGLRX graphics driver (post-release 
updates) (Proprietary, Disabled, Not in use)
   xorg:fglrx - ATI/AMD proprietary FGLRX graphics driver (Proprietary, 
Disabled, In use)
  Lsusb:
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
   Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
   Bus 001 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub
   Bus 002 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub
   Bus 001 Device 004: ID 0c45:641d Microdia 1.3 MPixel Integrated Webcam
  MachineType: Dell Inc. Inspiron N4010
  ProcEnviron:
   LANGUAGE=en_IN:en
   PATH=(custom, no user)
   LANG=en_IN
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.2.0-23-generic 
root=UUID=f5873dcc-a403-4166-9686-76a5baf7af4b ro quiet splash vt.handoff=7
  Renderer: Software
  SourcePackage: xorg
  UnitySupportTest: Error: command ['/usr/lib/nux/unity_support_test', '-p', 
'-f'] failed with exit code 127: /usr/lib/nux/unity_support_test: error while 
loading shared libraries: libGL.so.1: cannot open shared object file: No such 
file or directory
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 03/31/2011
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A13
  dmi.board.name: 0WGN6P
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A13
  dmi.chassis.type: 8
  dmi.chassis.vendor: Dell Inc.
  dmi.chassis.version: A13
  dmi.modalias: 
dmi:bvnDellInc.:bvrA13:bd03/31/2011:svnDellInc.:pnInspironN4010:pvrA13:rvnDellInc.:rn0WGN6P:rvrA13:cvnDellInc.:ct8:cvrA13:
  dmi.product.name: Inspiron N4010
  dmi.product.version: A13
  dmi.sys.vendor: Dell Inc.
  version.compiz: compiz 1:0.9.7.6-0ubuntu1
  version.fglrx-installer: fglrx-installer N/A
  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
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 8.0.2-0ubuntu3
  version.xserver-xorg-core: xserver-xorg-core 2:1.11.4-0ubuntu10
  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/ubuntu/+source/xorg/+bug/1020483/+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 1015715] Re: at every startup I get three or four crush repors

2013-01-21 Thread Adrian Perez
** Package changed: ubuntu = gnome-terminal (Ubuntu)

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

Title:
  at every startup I get three or four crush repors

Status in “gnome-terminal” package in Ubuntu:
  New

Bug description:
  at every startup I get three or four crush reports, but it lets me
  click on OK and lets me continue.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: gnome-terminal 3.4.1.1-0ubuntu1
  ProcVersionSignature: Ubuntu 3.2.0-25.40-generic 3.2.18
  Uname: Linux 3.2.0-25-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.0.1-0ubuntu8
  Architecture: amd64
  Date: Wed Jun 20 10:33:31 2012
  ExecutablePath: /usr/bin/gnome-terminal
  InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release amd64 (20101007)
  ProcEnviron:
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: gnome-terminal
  UpgradeStatus: Upgraded to precise on 2012-04-29 (52 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-terminal/+bug/1015715/+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 1039712] Re: wlan connects only on systemstart and when usb-wlan-adapter is reconnected

2013-01-21 Thread Adrian Perez
** Package changed: ubuntu = network-manager (Ubuntu)

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

Title:
  wlan connects only on systemstart and when usb-wlan-adapter is
  reconnected

Status in “network-manager” package in Ubuntu:
  New

Bug description:
  Using 12.04 and EDIMAX EW-7811UN Wireless USB the wlan-connection on
  systemstart works fine. After reconnect the wlan-usb-adapter the
  reconnect works. If manualy disconnected the reconnect doesn't work.
  The system tries to connect, after a while the system asks the
  network-password.

  I attached the syslog of a working connect and if it fails.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1039712/+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 1027901] Re: o computador está travando

2013-01-21 Thread Adrian Perez
** Package changed: ubuntu = software-center (Ubuntu)

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

Title:
  o computador está travando

Status in “software-center” package in Ubuntu:
  New

Bug description:
  ligo o notebook e quando entro no navegador ou quando estou na área de
  trabalho o harddisc trava e para de funciona travando o sistema em
  geral nem mesmo o mouse funciona trava tudo.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.7
  ProcVersionSignature: Ubuntu 2.6.38-15.64-generic 2.6.38.8
  Uname: Linux 2.6.38-15-generic i686
  Architecture: i386
  Date: Mon Jul 23 08:48:13 2012
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=pt_BR:en
   LANG=pt_BR.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: Upgraded to natty on 2012-07-21 (1 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/software-center/+bug/1027901/+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 977946] Re: Rhythmbox Crashed

2013-01-21 Thread Adrian Perez
** 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/977946

Title:
  Rhythmbox Crashed

Status in “alsa-driver” package in Ubuntu:
  Confirmed

Bug description:
  I was playing songs in Rhythm box and when the playlist completed
  Rhythm box crashed automatically

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: alsa-base 1.0.24+dfsg-0ubuntu2
  ProcVersionSignature: Ubuntu 3.0.0-17.30-generic 3.0.22
  Uname: Linux 3.0.0-17-generic i686
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
  AplayDevices:
    List of PLAYBACK Hardware Devices 
   card 0: PCH [HDA Intel PCH], device 0: ALC662 rev1 Analog [ALC662 rev1 
Analog]
 Subdevices: 1/1
 Subdevice #0: subdevice #0
  ApportVersion: 1.23-0ubuntu4
  Architecture: i386
  ArecordDevices:
    List of CAPTURE Hardware Devices 
   card 0: PCH [HDA Intel PCH], device 0: ALC662 rev1 Analog [ALC662 rev1 
Analog]
 Subdevices: 1/1
 Subdevice #0: subdevice #0
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lalatendu   1695 F pulseaudio
  Card0.Amixer.info:
   Card hw:0 'PCH'/'HDA Intel PCH at 0xfe40 irq 45'
 Mixer name : 'Realtek ALC662 rev1'
 Components : 'HDA:10ec0662,17aa307c,00100101'
 Controls  : 29
 Simple ctrls  : 19
  Date: Tue Apr 10 16:36:25 2012
  InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release i386 (20111012)
  PackageArchitecture: all
  SourcePackage: alsa-driver
  Symptom: audio
  Symptom_AlsaPlaybackTest: ALSA playback test through plughw:PCH successful
  Symptom_Card: Internal Audio - HDA Intel PCH
  Symptom_PulsePlaybackTest: PulseAudio playback test successful
  Symptom_Type: None of the above
  Title: [HDA-Intel - HDA Intel PCH, playback] Playback problem
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 07/18/2011
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 9QKT27AUS
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: To be filled by O.E.M.
  dmi.board.vendor: LENOVO
  dmi.board.version: 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:bvnLENOVO:bvr9QKT27AUS:bd07/18/2011:svnLENOVO:pn1607B9Q:pvrThinkCentreEdge71:rvnLENOVO:rnTobefilledbyO.E.M.:rvrTobefilledbyO.E.M.:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.name: 1607B9Q
  dmi.product.version: ThinkCentre Edge71
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/977946/+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 739868] Re: Rhythmbox Playback problem

2013-01-21 Thread Adrian Perez
Thank you for taking the time to report this bug.

Is this issue still ongoing on updated versions of Ubuntu.
If so, may you please post updated Apport Reports.

** Changed in: alsa-driver (Ubuntu)
   Status: New = Incomplete

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

Title:
  Rhythmbox Playback problem

Status in “alsa-driver” package in Ubuntu:
  Incomplete

Bug description:
  Two issues:
  If I have left my computer on most of the day using it periodically, and come 
back to it and open Rhythmbox, it won't playback any sound. The time bar moves, 
pauses, everything like its playing, but no sound comes out. All the while 
sound is working through other sources like login sounds, or the web, including 
pandora or others. The only way I can get it to work again is to reboot.

  Issue two:
  When it does playback, I get a crackle at the first 3-4 seconds of each song, 
as if its trying to get with the pace.

  It is an older system, but its a pretty new install (fresh 10.10 as of
  last 5 days ago) and everything else is running fine. any feedback
  would be appreciated.

  ProblemType: Bug
  DistroRelease: Ubuntu 10.10
  Package: alsa-base 1.0.23+dfsg-1ubuntu4
  ProcVersionSignature: Ubuntu 2.6.35-22.33-generic 2.6.35.4
  Uname: Linux 2.6.35-22-generic i686
  NonfreeKernelModules: nvidia
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.23.
  AplayDevices:
    List of PLAYBACK Hardware Devices 
   card 0: I82801CAICH3 [Intel 82801CA-ICH3], device 0: Intel ICH [Intel 
82801CA-ICH3]
 Subdevices: 1/1
 Subdevice #0: subdevice #0
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  deviant1299 F pulseaudio
  Card0.Amixer.info:
   Card hw:0 'I82801CAICH3'/'Intel 82801CA-ICH3 with STAC9721,23 at irq 10'
 Mixer name : 'SigmaTel STAC9721,23'
 Components : 'AC97a:83847609'
 Controls  : 31
 Simple ctrls  : 21
  Date: Mon Mar 21 20:54:33 2011
  InstallationMedia: Ubuntu-Netbook 10.10 Maverick Meerkat - Release i386 
(20101007)
  PackageArchitecture: all
  ProcEnviron:
   LANG=en_US.utf8
   SHELL=/bin/bash
  SelectedCard: 0 I82801CAICH3 ICH - Intel 82801CA-ICH3
  SourcePackage: alsa-driver
  Symptom: audio
  Title: [ICH - Intel 82801CA-ICH3] Playback problem
  dmi.bios.date: 03/23/2004
  dmi.bios.vendor: PHOENIX TECHNOLOGIES LTD.
  dmi.bios.version: A13
  dmi.board.name: Inspiron 2650
  dmi.board.vendor: Dell Computer Corporation
  dmi.board.version: None
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 1
  dmi.chassis.vendor: Dell Computer Corporation
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnPHOENIXTECHNOLOGIESLTD.:bvrA13:bd03/23/2004:svnDellComputerCorporation:pnInspiron2650:pvrRevisionA0:rvnDellComputerCorporation:rnInspiron2650:rvrNone:cvnDellComputerCorporation:ct1:cvrN/A:
  dmi.product.name: Inspiron 2650
  dmi.product.version: Revision A0
  dmi.sys.vendor: Dell Computer Corporation

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/739868/+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 1019429] Re: Unable to double-click or drag after a while

2013-01-20 Thread Adrian Perez
** Package changed: ubuntu = nautilus (Ubuntu)

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

Title:
  Unable to double-click or drag after a while

Status in “nautilus” package in Ubuntu:
  New

Bug description:
  Installed Ubuntu 12.04 32-bit on a Dell Inspiron One 2310.  After a
  period of time I am unable to click on any folders. Single or double-
  click doesn't highlight/open folders respecively, and right-clicking
  doesn't bring up the context-sensitive menu that you would expect from
  right-clicking on a folder (you just get the option to create new
  folder, etc. Not rename or delete or anything like that).  Single-
  clicking an icon for an application in the Launcher does work however.

  Applications such as Google Chrome also don't respond to a right-click
  or dragging the scrollbar.  However double-click works if I go into
  System Settings... Mouse and Trackpad and use the test face. I can
  also rubber band around icons and they get highlighted, but if I try
  to move them it just starts drawing another rubber band.

  Problem has been experienced by at least one other user:
  http://ubuntuforums.org/showthread.php?p=12059885#post12059885

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: nautilus 1:3.4.2-0ubuntu3
  ProcVersionSignature: Ubuntu 3.2.0-25.40-generic-pae 3.2.18
  Uname: Linux 3.2.0-25-generic-pae i686
  NonfreeKernelModules: wl
  ApportVersion: 2.0.1-0ubuntu8
  Architecture: i386
  Date: Fri Jun 29 22:13:22 2012
  GsettingsChanges: org.gnome.nautilus.window-state geometry '800x550+65+24'
  InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release i386 
(20120423)
  ProcEnviron:
   LANGUAGE=en_GB:en
   PATH=(custom, no user)
   LANG=en_GB.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/ubuntu/+source/nautilus/+bug/1019429/+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 1098941] Re: GUI drops out when restarting networking services.

2013-01-20 Thread Adrian Perez
** Package changed: ubuntu = network-manager (Ubuntu)

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

Title:
  GUI drops out when restarting networking services.

Status in “network-manager” package in Ubuntu:
  New

Bug description:
  In Ubuntu 12.10 Desktop x64 and the Gnome Desktop version of Ubuntu;
  when you restart the networking via: sudo service networking stop (or
  restart) the GUI for the entire desktop crashes and you are left
  either at the cli or the GUI doesn't completely close but any terminal
  windows left open do not function.

  $ lsb_release -rd
  Description:  Ubuntu 12.10
  Release:  12.10

  What I was expecting to happen was for the networking to restart
  during normal operation of the GUI.

  What happened instead was that the GUI crashed

  I am using an ASUS N56VM laptop

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1098941/+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 1004441] Re: Log-in fails unless logging in as guest first

2013-01-20 Thread Adrian Perez
** Package changed: ubuntu = lightdm (Ubuntu)

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

Title:
  Log-in fails unless logging in as guest first

Status in “lightdm” package in Ubuntu:
  New

Bug description:
  If I Log-In as Guest first, then Log-Out of Guest straight away, then a 
follow-on 
  Log-In to my own Account works normally.

  Otherwise it hangs at the point just before the top bar appears, on the new 
DeskTop being 
  created as a part of  the Log-In process.

  OP-SYS = Ubuntu Studio 12.04. Fully Updated.

  HISTORY

  Been happening ever since 12.04 was installed about a month ago.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lightdm/+bug/1004441/+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 1016033] Re: firefox and thunderbird don't show dropdown menu after upgrading

2013-01-20 Thread Adrian Perez
** Package changed: ubuntu = firefox (Ubuntu)

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

Title:
  firefox and thunderbird don't show dropdown menu after upgrading

Status in “firefox” package in Ubuntu:
  New

Bug description:
  After upgrades reported below, both thunderbird and firefox present
  some problems involving dropdown menu but only when they are run by
  the launcher in desktop sidebar. If I run them by terminal or if I
  create a new icon-launcher for both programs they don't show any
  problem; when I put the brand-new launcher icon on the sidebar it
  opens fully functional programs but after a reboot the bug is there
  again. However the launchers that are away from sidebar opens properly
  working versions of thunderbird and firefox and also terminal command
  does it. I noticed same problem on two different machine running both
  ubuntu 11.04.

  An example of type of problems that I notice is that firefox doesn't
  show suggestions of the awesome bar that normally appear in a dropdown
  menu.

  Upgrades probably involved are:

   thunderbird-globalmenu:i386 (12.0.1+build1-0ubuntu0.11.04.1,
  13.0+build1-0ubuntu0.11.04.1), thunderbird:i386
  (12.0.1+build1-0ubuntu0.11.04.1, 13.0+build1-0ubuntu0.11.04.1),
  firefox-globalmenu:i386 (12.0+build1-0ubuntu0.11.04.1,
  13.0+build1-0ubuntu0.11.04.1), firefox:i386
  (12.0+build1-0ubuntu0.11.04.1, 13.0+build1-0ubuntu0.11.04.1),
  flashplugin-installer:i386 (11.2.202.235ubuntu0.11.04.1,
  11.2.202.236ubuntu0.11.04.1), firefox-gnome-support:i386
  (12.0+build1-0ubuntu0.11.04.1, 13.0+build1-0ubuntu0.11.04.1), firefox-
  locale-en:i386 (12.0+build1-0ubuntu0.11.04.1,
  13.0+build1-0ubuntu0.11.04.1), firefox-locale-it:i386
  (12.0+build1-0ubuntu0.11.04.1, 13.0+build1-0ubuntu0.11.04.1), firefox-
  branding:i386 (12.0+build1-0ubuntu0.11.04.1,
  13.0+build1-0ubuntu0.11.04.1)

  I hope to have reported all information that are necessary and to have made 
myself clear.
  Thank you for your attention.

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