[Bug 1372609] Re: Touchpad detected as mouse on Asus ux303ln laptop

2014-12-31 Thread Martin Soto
First of all, thanks to all of you helping with this issue. After
installing Pilot6's 3.16 kernel, my mousepad (UX303LN) is working great,
requiring only a few synclient tweaks to operate exactly as I wish.

Unfortunately, tough, this kernel is suffering from occasional crashes
during suspend. Every know and then (it's like one in five times, but
pretty much random) the machine fails to completely suspend. The screen
goes dark, but the keyboard backlight and the fan remain active, and the
machine won't simple come back from suspend and requires a reboot.

Any tips on how to debug this?

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

Title:
  Touchpad detected as mouse on Asus ux303ln laptop

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

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


[Bug 1372609] Re: Touchpad detected as mouse on Asus ux303ln laptop

2014-12-31 Thread Martin Soto
@Pilot6

$ uname -a
Linux msoto-UX303LN 3.16.0-29-generic #39 SMP Tue Dec 16 13:15:25 MSK 2014 
x86_64 x86_64 x86_64 GNU/Linux

OK, I'll try the stable version and report back. Thanks a lot!

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

Title:
  Touchpad detected as mouse on Asus ux303ln laptop

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

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


[Bug 971018] Re: Auto-hidden Unity Launcher will not reveal when mouse pushed to left side in VirtualBox

2012-04-30 Thread Martin Soto
From what I see, disabling mouse integration in VirtualBox makes the
autoreveal work again. My impresiĆ³n is that VirtualBox stops sending
mouse events to the host system as soon as the mouse cursor hits the
border, and that breaks the preasure effect. With mouse integration
disabled, all mouse events go to the virtual machine anyway, so
autoreveal works.

The downside, at least here, is that you don't see the mouse pointer any
more when mouse integration is disabled, so this is not really a work
around, but may be a clue of where the problem is originating.

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

Title:
  Auto-hidden Unity Launcher will not reveal when mouse pushed to left
  side in VirtualBox

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

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

[Bug 805818] Re: Mouse Erratic Movement not able to control.

2011-09-11 Thread Martin Soto
I'm observing the same problem with Oneiric on a Samsung NC10+ (notice
the plus sign, this is not the old NC10) which, as far as I can tell, is
just the same computer as the N150 (only named differently in certain
countries/markets).  Looking around in the Internet, I see that this
machine uses an Elantech touchpad, which, so far, seems to be poorly
supported under Linux. In particular, the problem seems to be that this
particular touchpad uses a protocol that isn't supported by the current
Linux driver. The driver, however, still manages to recognize it as an
Elantech touchpad, but parses the data packets coming from it using the
older protocol, which results in the pointer behaving erratically (two
finger scrolling is particularly bad) and eventually stopping to move at
all.

This morning I just stumbled into Bug #681904, which apparently fixes
the Elantech touchpads for several Samsung models. For these models,
however, the symptoms are quite different, apparently due to fact that
their touchpads are not being recognized as Elantech at all, which means
they are treated by the driver as regular PS/2 mice. In this case, the
touchpad works correctly, but none of the special touchpad features are
available. I can easily achieve this state here by creating a file
called e.g., /etc/modprobe.d/psmouse.conf containing the line

  options psmouse proto=imps

As soon as I do that (and restart the machine or at least unload and
reload the psmouse driver), the touchpad starts to work (to a certain
extent), but the touchpad tab in the mouse configuration options
disappears, similar to what people in Bug #681904 report.

My guess is that the touchpad in the  N150/NC10+ is actually a version 3
hardware, but is being wrongly recognized by the driver as version 2.
Indeed, I see the following lines in my kern.log file:

  Sep 10 22:56:17 masoftito kernel: [16643.200044] elantech: assuming hardware 
version 2, firmware version 4.2.22
  Sep 10 22:56:17 masoftito kernel: [16643.235574] elantech: Synaptics 
capabilities query result 0x09, 0x14, 0x0b.
  Sep 10 22:56:17 masoftito kernel: [16643.334968] input: ETPS/2 Elantech 
Touchpad as /devices/platform/i8042/serio1/input/input10

The good news, however, is that the recent driver changes referenced
from Bug #681904 actually seem to support the v3 protocol, which
probably means that a fix for the N150/NC10+ is just a matter of getting
the driver to use the right protocol.

I'll add apport-collect info in a few minutes, just in case it helps.

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

Title:
  Mouse Erratic Movement not able to control.

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

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


[Bug 805818] Re: Mouse Erratic Movement not able to control.

2011-09-11 Thread Martin Soto
So, I played around with the driver's source code for a few hours, and
managed to get the touchpad to work. It turns out that my previous guess
was wrong: this device doesn't use the v3 protocol, but v2 with some
small modifications with respect to what is supported by the driver.
Attached is a very crude patch that I made against Seth Forshee's dkms
driver, downloaded from http://people.canonical.com/~sforshee/lp681904
/psmouse-elantech-dkms/v0.2/. The patch is not intended to be integrated
as is, because it will surely break other devices, but it should be
enough to show what I did.

I found two main differences with respect to the currently supported v2
protocol. First, the resolution values currently hardcoded in the driver
don't work for this device, which seems to have a lower resolution.
Adjusting these values after some trial and error fixed most of the
issues. Also, the device sends packets every now and then that have both
coordinates set to 0xff. These packets have to be ignored (or treated
properly, but I cannot guess what their purpose is) in order for the
touchpad to work.

With this patch applied, my touchpad is working flawlessly. In
particular, two-finger scrolling works correctly, which used to be
completely unusable before. There's of course some device detection code
that still has to be written, but that seems to lie beyond my level of
expertise, as I have no experience with kernel programming. Still,
please let me know if can help with testing.

** Patch added: Proof-of-concept patch
   
https://bugs.launchpad.net/ubuntu/+bug/805818/+attachment/2387625/+files/elantech.patch

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

Title:
  Mouse Erratic Movement not able to control.

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

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


[Bug 641928] [NEW] package blcr-dkms 0.8.2-13 failed to install/upgrade: blcr kernel module failed to build

2010-09-18 Thread Martin Soto
*** This bug is a duplicate of bug 555729 ***
https://bugs.launchpad.net/bugs/555729

Public bug reported:

I got this reported after starting my Maverick system today. I ran an
update yesterday, short before shutting down. Let me know if there's
additional information I can dig for.

ProblemType: Package
DistroRelease: Ubuntu 10.10
Package: blcr-dkms 0.8.2-13
ProcVersionSignature: Ubuntu 2.6.35-22.32-generic 2.6.35.4
Uname: Linux 2.6.35-22-generic i686
Architecture: i386
Date: Fri Sep 17 23:25:30 2010
ErrorMessage: blcr kernel module failed to build
PackageArchitecture: all
PackageVersion: 0.8.2-13
SourcePackage: blcr
Title: package blcr-dkms 0.8.2-13 failed to install/upgrade: blcr kernel module 
failed to build

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


** Tags: apport-package i386 maverick ubuntu-unity

-- 
package blcr-dkms 0.8.2-13 failed to install/upgrade: blcr kernel module failed 
to build
https://bugs.launchpad.net/bugs/641928
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 641928] Re: package blcr-dkms 0.8.2-13 failed to install/upgrade: blcr kernel module failed to build

2010-09-18 Thread Martin Soto
*** This bug is a duplicate of bug 555729 ***
https://bugs.launchpad.net/bugs/555729


** Attachment added: DKMSBuildLog.txt
   
https://bugs.launchpad.net/bugs/641928/+attachment/1601700/+files/DKMSBuildLog.txt

** Attachment added: Dependencies.txt
   
https://bugs.launchpad.net/bugs/641928/+attachment/1601701/+files/Dependencies.txt

** Description changed:

  I got this reported after starting my Maverick system today. I ran an
- update yesterday short before shutting down. Let me know if there's
+ update yesterday, short before shutting down. Let me know if there's
  additional information I can dig for.
  
  ProblemType: Package
  DistroRelease: Ubuntu 10.10
  Package: blcr-dkms 0.8.2-13
  ProcVersionSignature: Ubuntu 2.6.35-22.32-generic 2.6.35.4
  Uname: Linux 2.6.35-22-generic i686
  Architecture: i386
  Date: Fri Sep 17 23:25:30 2010
  ErrorMessage: blcr kernel module failed to build
  PackageArchitecture: all
  PackageVersion: 0.8.2-13
  SourcePackage: blcr
  Title: package blcr-dkms 0.8.2-13 failed to install/upgrade: blcr kernel 
module failed to build

-- 
package blcr-dkms 0.8.2-13 failed to install/upgrade: blcr kernel module failed 
to build
https://bugs.launchpad.net/bugs/641928
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 415101] Re: Karmic: emacs22-gtk generated menus do not update (GTK only)

2010-09-08 Thread Martin Soto
I'm a bit confused about the status of this bug. I'm running Maverick
(last updated earlier today) and I'm seeing this bug in emacs
23.1+1-4ubuntu7. Is this a regression or is it simply that the proper
update hasn't reached me as yet?

-- 
Karmic: emacs22-gtk generated menus do not update (GTK only)
https://bugs.launchpad.net/bugs/415101
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 633358] [NEW] Pdfmod fails because of missing dependency

2010-09-08 Thread Martin Soto
Public bug reported:

Binary package hint: pdfmod

Pdfmod from current Maverick fails when opening PDF files. Any attempt
at opening a PDF results in the following exception:

Exception in Gtk# callback delegate
  Note: Applications can use GLib.ExceptionManager.UnhandledException to handle 
the exception.
System.DllNotFoundException: libpoppler-glib.so.4
  at (wrapper managed-to-native) 
Poppler.Document:poppler_document_new_from_file (intptr,intptr,intptr)
  at Poppler.Document.NewFromFile (System.String uri, System.String password) 
[0x0] in filename unknown:0 
  at PdfMod.Pdf.Document.get_PopplerDoc () [0x0] in filename unknown:0 
  at PdfMod.Pdf.Document.GetSurface (PdfMod.Pdf.Page page, Int32 w, Int32 h, 
Int32 min_width) [0x0] in filename unknown:0 
  at PdfMod.Gui.PageCell.Render (Cairo.Context cr, Double width, Double height, 
CellRendererState state) [0x0] in filename unknown:0 
  at PdfMod.Gui.CairoCell.Render (Gdk.Drawable window, Gtk.Widget widget, 
Rectangle background_area, Rectangle cell_area, Rectangle expose_area, 
CellRendererState state) [0x0] in filename unknown:0 
  at Gtk.CellRenderer.Render_cb (IntPtr item, IntPtr window, IntPtr widget, 
Gdk.Rectangle background_area, Gdk.Rectangle cell_area, Gdk.Rectangle 
expose_area, CellRendererState flags) [0x0] in filename unknown:0 
   at GLib.ExceptionManager.RaiseUnhandledException(System.Exception e, Boolean 
is_terminal)
   at Gtk.CellRenderer.Render_cb(IntPtr item, IntPtr window, IntPtr widget, 
Rectangle ByRef background_area, Rectangle ByRef cell_area, Rectangle ByRef 
expose_area, CellRendererState flags)
   at Gtk.Application.gtk_main()
   at Gtk.Application.Run()
   at PdfMod.Gui.Client..ctor(Boolean loadFiles)
   at PdfMod.PdfMod.Main(System.String[] args)
Cairo.Context: called from finalization thread, programmer is missing a call to 
Dispose

From the exception, it seems that pdfmod requires libpoppler-glib.so.4,
which is not referenced in its dependencies. This library is part of
package libpoppler-glib4. Installing that package actually solves the
problem for me and lets pdfmod run correctly.

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: pdfmod 0.8.3-1
ProcVersionSignature: Ubuntu 2.6.35-20.29-generic 2.6.35.4
Uname: Linux 2.6.35-20-generic i686
Architecture: i386
Date: Wed Sep  8 18:34:26 2010
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=en_US:en
 PATH=(custom, user)
 LANG=en_US.utf8
 SHELL=/bin/bash
SourcePackage: pdfmod

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


** Tags: apport-bug i386 maverick ubuntu-unity

-- 
Pdfmod fails because of missing dependency
https://bugs.launchpad.net/bugs/633358
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 633358] Re: Pdfmod fails because of missing dependency

2010-09-08 Thread Martin Soto

** Attachment added: Dependencies.txt
   
https://bugs.launchpad.net/bugs/633358/+attachment/1557557/+files/Dependencies.txt

-- 
Pdfmod fails because of missing dependency
https://bugs.launchpad.net/bugs/633358
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 375919] Re: Laptop keyboard stops working after resuming from suspend

2010-05-25 Thread Martin Soto
Sorry for not having answered before: For a while, I didn't have access
to the affected laptop, and could update it only recently. The problem
disappeared after updating the distribution, so closing this bug is in
order.

-- 
Laptop keyboard stops working after resuming from suspend 
https://bugs.launchpad.net/bugs/375919
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 556602] Re: When playing Last.fm stations, Banshee stops after the second song

2010-04-08 Thread Martin Soto
** Bug watch added: GNOME Bug Tracker #612929
   https://bugzilla.gnome.org/show_bug.cgi?id=612929

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

-- 
When playing Last.fm stations, Banshee stops after the second song
https://bugs.launchpad.net/bugs/556602
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 557277] [NEW] python-docutils overrides rst.el included in Emacs 23 with older version

2010-04-07 Thread Martin Soto
Public bug reported:

Binary package hint: python-docutils

python-docutils contains the file /usr/share/emacs/site-lisp/rst.el,
which implements an Emacs mode for editing ReStructuredText. However,
starting with version 23 of Emacs, this mode is now part of the editor
(file /usr/share/emacs/23.1/lisp/textmodes/rst.elc in package emacs-
common). Unfortunately, the version of rst.el delivered with python-
docutils is much older than the version included with emacs, and
overrides it, which is of course undesirable. python-docutils should
stop including this file, or at least set things up in such a way that
Emacs 23 doesn't load it.

ProblemType: Bug
DistroRelease: Ubuntu 10.04
Package: python-docutils 0.6-3
ProcVersionSignature: Ubuntu 2.6.32-19.28-generic 2.6.32.10+drm33.1
Uname: Linux 2.6.32-19-generic i686
Architecture: i386
Date: Wed Apr  7 14:35:19 2010
EcryptfsInUse: Yes
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=en_ZW:en
 PATH=(custom, user)
 LANG=en_ZW.UTF-8
 SHELL=/bin/bash
SourcePackage: python-docutils

** Affects: python-docutils (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 lucid

-- 
python-docutils overrides rst.el included in Emacs 23 with older version
https://bugs.launchpad.net/bugs/557277
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 557277] Re: python-docutils overrides rst.el included in Emacs 23 with older version

2010-04-07 Thread Martin Soto

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/43345563/Dependencies.txt

-- 
python-docutils overrides rst.el included in Emacs 23 with older version
https://bugs.launchpad.net/bugs/557277
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 557277] Re: python-docutils overrides rst.el included in Emacs 23 with older version

2010-04-07 Thread Martin Soto
Of course, newer is not always better in the general case; in this case,
however, I would claim it is. This is the version of rst.el that is
included with Emacs, which means it has the blessing of the Emacs
developers. For this reason, I would also expect it to have been
actively tested together with Emacs 23, which may or may not be the case
for the older version in python-docutils. Suboptimality isn't my problem
either: I wouldn't mind having two versions of the file in my system, as
long as Emacs picks up the right version, which is not what it's doing
right now.

-- 
python-docutils overrides rst.el included in Emacs 23 with older version
https://bugs.launchpad.net/bugs/557277
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 556602] [NEW] When playing Last.fm stations, Banshee stops after the second song

2010-04-06 Thread Martin Soto
Public bug reported:

Binary package hint: banshee

When playing Last.fm stations in Banshee, Banshee stops playing after
the second song. Notice that you need a Last.fm account to reproduce
this. Steps to reproduce:

1. Select any Last.fm station from the left pane and wait for the list of songs 
to appear.
2. Double-click on the first song.
3. Wait for the first and second songs to play. After the second song has 
finished playing, its title will blink a couple of times and it will be marked 
with an X on the left side of the title. No further song will be played.

During playback, Banshee prints the following messages every now and
then:

[Warn  17:18:40.683] Caught an exception - System.Xml.XmlException: Reference 
to undeclared entity was found. (in `System.Xml')
  at System.Xml.XmlDocument.ReadNodeCore (System.Xml.XmlReader reader) 
[0x0] 
  at System.Xml.XmlDocument.ReadNodeCore (System.Xml.XmlReader reader) 
[0x0] 
  at System.Xml.XmlDocument.ReadNodeCore (System.Xml.XmlReader reader) 
[0x0] 
  at System.Xml.XmlDocument.ReadNodeCore (System.Xml.XmlReader reader) 
[0x0] 
  at System.Xml.XmlDocument.ReadNode (System.Xml.XmlReader reader) [0x0] 
  at System.Xml.XmlDocument.Load (System.Xml.XmlReader xmlReader) [0x0] 
  at System.Xml.XmlDocument.LoadXml (System.String xml) [0x0] 
  at Migo.Syndication.RssParser..ctor (System.String url, System.String xml) 
[0x0] 
[Warn  17:18:40.683] Caught an exception - System.FormatException: Invalid XML 
document. (in `Migo')
  at Migo.Syndication.RssParser..ctor (System.String url, System.String xml) 
[0x0] 
  at Migo.Syndication.FeedUpdateTask.OnDownloadDataReceived (System.Object 
sender, Migo.Net.DownloadStringCompletedEventArgs args) [0x0] 

Also, when the song title is blinking at the end of playback, the
following messages will be printed:

[Error 17:20:20.678] GStreamer resource error: OpenRead
[Error 17:20:21.081] GStreamer resource error: OpenRead
[Error 17:20:21.487] GStreamer resource error: OpenRead
[Error 17:20:21.888] GStreamer resource error: OpenRead
[Error 17:20:22.293] GStreamer resource error: OpenRead

After all of this has happened, you can double-click on the third song
and playback will resume. Interestingly enough, the third song on the
list will be played, but the title of the second song will still be
displayed in the top bar.

Of course, I would expect this version of Banshee to keep playing
without interruption, as previous versions did.

ProblemType: Bug
DistroRelease: Ubuntu 10.04
Package: banshee 1.6.0-1
ProcVersionSignature: Ubuntu 2.6.32-19.28-generic 2.6.32.10+drm33.1
Uname: Linux 2.6.32-19-generic i686
Architecture: i386
Date: Tue Apr  6 17:01:52 2010
EcryptfsInUse: Yes
ProcEnviron:
 LANGUAGE=en_ZW:en
 PATH=(custom, user)
 LANG=en_ZW.UTF-8
 SHELL=/bin/bash
SourcePackage: banshee

** Affects: banshee (Ubuntu)
 Importance: Undecided
 Assignee: Kevin Barresi (kbarresi)
 Status: New


** Tags: apport-bug i386 lucid

-- 
When playing Last.fm stations, Banshee stops after the second song
https://bugs.launchpad.net/bugs/556602
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 556602] Re: When playing Last.fm stations, Banshee stops after the second song

2010-04-06 Thread Martin Soto

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/43253300/Dependencies.txt

-- 
When playing Last.fm stations, Banshee stops after the second song
https://bugs.launchpad.net/bugs/556602
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 530605] Re: gvfs-mount doesn't always work. gvfsd-smb starts using 100% cpu.

2010-03-29 Thread Martin Soto
In my case, the problem persists after the update. I'm attaching a
backtrace. Unfortunately, the symbols are incomplete because the -dbgsym
package for gvfs-backends hasn't been updated to the current version in
Lucid (1.6.0). If nobody beats me to it, I'll upload an updated
backtrace when the debugging symbols become available.

** Attachment added: gdb-gvfsd-smb.txt
   http://launchpadlibrarian.net/42389980/gdb-gvfsd-smb.txt

-- 
gvfs-mount doesn't always work. gvfsd-smb starts using 100% cpu.
https://bugs.launchpad.net/bugs/530605
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 530605] Re: gvfs-mount doesn't always work. gvfsd-smb starts using 100% cpu.

2010-03-26 Thread Martin Soto
I already posted to Bug #532024 with my symptoms. I'm attaching a
backtrace of the running gvfsd-smb process. It seems to hang while
trying to contact gnome-keyring-daemon. I tried to make the backtrace as
complete as possible symbol-wise, but let me know if I can provide more
info. The issue is 100% reproducible here.

** Attachment added: gdb-gvfsd-smb.txt
   http://launchpadlibrarian.net/42079269/gdb-gvfsd-smb.txt

-- 
gvfs-mount doesn't always work. gvfsd-smb starts using 100% cpu.
https://bugs.launchpad.net/bugs/530605
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 530605] Re: gvfs-mount doesn't always work. gvfsd-smb starts using 100% cpu.

2010-03-26 Thread Martin Soto
Here is a backtrace of gnome-keyring-daemon taken while the gvfsd-smb
process was hanging. I don't see anything strange here, though.

** Attachment added: gdb-gnome-keyring-daemon.txt
   http://launchpadlibrarian.net/42079373/gdb-gnome-keyring-daemon.txt

-- 
gvfs-mount doesn't always work. gvfsd-smb starts using 100% cpu.
https://bugs.launchpad.net/bugs/530605
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 532024] Re: gvfsd-smb-brows uses 100% cpu after selecting Places--Network

2010-03-24 Thread Martin Soto
Hi!

The behavior I'm observing here is different for SSH (ssh: and sftp:
URIs) and for SMB. In the SSH case, the gvfs-sftp process hangs when the
password is already in Seahorse. If I go to Seahorse and delete the
password, however, I get a password prompt again and can login. Indeed,
if I ask the system to not store the password, I can keep accessing the
directory by typing the password again every time.

In the SMB case on the other hand, I can delete the passwords from
Seahorse but that doesn't prevent the gvfs-smb process from hanging. I
have tried typing the smb: URI directly or using shortcuts but nothing
seems to help.

-- 
gvfsd-smb-brows uses 100% cpu after selecting Places--Network
https://bugs.launchpad.net/bugs/532024
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 368097] Re: Picard Segmentation fault in Jaunty with python 2.6

2009-10-08 Thread Martin Soto
I'm still experiencing this problem with the package from Karmic beta.
Applying the one-line patch included in upstream ticket 5263
(http://bugs.musicbrainz.org/attachment/ticket/5263/sse2-segfault.patch)
fixed the issue for me, though. Would it possible to apply it to the
Karmic package before release?

** Bug watch added: bugs.musicbrainz.org/attachment/ #5263
   http://bugs.musicbrainz.org/attachment/ticket/5263

-- 
Picard Segmentation fault in Jaunty with python 2.6
https://bugs.launchpad.net/bugs/368097
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 375919] Re: Laptop keyboard stops working after resuming from suspend

2009-05-26 Thread Martin Soto
After further investigation, I noticed that this is related to a number
of setkeycodes commands I added to my /etc/rc.local in order to support
the multimedia keys on a particular external keyboard. Commenting them
out actually fixes the problem. It is worth asking, however, why this
statements cause this problem.

** Description changed:

  After resuming from suspend to RAM, the laptop keyboard (HP Compaq
  nc6220) stops working completely. Since it becomes impossible to enter
  the password, the machine must be restarted. I can reliably reproduce
- this bug with the current kernel in jaunty-proposed (2.6.28-12.43). On
- the other hand, the problem doesn't happen at all when I downgrade to
- the current kernel in Jaunty (2.6.28-11.*).
+ this bug with the current kernel in jaunty-proposed (2.6.28-12.43).
  
  ProblemType: Bug
  Architecture: i386
  CurrentDmesg:
   [   39.385467] [drm:i915_getparam] *ERROR* Unknown parameter 6
   [   39.783141] ADDRCONF(NETDEV_UP): eth1: link is not ready
   [   50.400062] eth2: no IPv6 routers present
   [  136.586874] ieee80211_crypt: registered algorithm 'WEP'
  DistroRelease: Ubuntu 9.04
  Lsusb:
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
   Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
   Bus 003 Device 002: ID 03f0:011d Hewlett-Packard Integrated Bluetooth Module
   Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
   Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
  MachineType: Hewlett-Packard HP Compaq nc6220 (EK257AW#ABD)
  Package: linux-image-2.6.28-12-generic 2.6.28-12.43
  ProcCmdLine: root=UUID=aa272f03-73d7-4acd-975a-ba2432e54531 ro 
resume=UUID=f94b065a-5fa1-44c2-ac7b-76a2fcb75839 quiet splash
  ProcEnviron:
   PATH=(custom, user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcVersionSignature: Ubuntu 2.6.28-12.43-generic
  SourcePackage: linux

-- 
Laptop keyboard stops working after resuming from suspend 
https://bugs.launchpad.net/bugs/375919
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 237156] Re: SETRANS + libavg = SIGSEGV on Hardy

2009-05-16 Thread Martin Soto
Just for the record, the clutter module (package python-clutter,
pyclutter) seems to trigger this as well.

-- 
SETRANS + libavg = SIGSEGV on Hardy
https://bugs.launchpad.net/bugs/237156
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 375919] Re: Laptop keyboard stops working after resuming from suspend

2009-05-13 Thread Martin Soto

** Attachment added: BootDmesg.txt
   http://launchpadlibrarian.net/26667175/BootDmesg.txt

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/26667176/Dependencies.txt

** Attachment added: HalComputerInfo.txt
   http://launchpadlibrarian.net/26667177/HalComputerInfo.txt

** Attachment added: Lspci.txt
   http://launchpadlibrarian.net/26667178/Lspci.txt

** Attachment added: ProcCpuinfo.txt
   http://launchpadlibrarian.net/26667179/ProcCpuinfo.txt

** Attachment added: ProcInterrupts.txt
   http://launchpadlibrarian.net/26667180/ProcInterrupts.txt

** Attachment added: ProcModules.txt
   http://launchpadlibrarian.net/26667181/ProcModules.txt

-- 
Laptop keyboard stops working after resuming from suspend 
https://bugs.launchpad.net/bugs/375919
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 375919] [NEW] Laptop keyboard stops working after resuming from suspend

2009-05-13 Thread Martin Soto
Public bug reported:

After resuming from suspend to RAM, the laptop keyboard (HP Compaq
nc6220) stops working completely. Since it becomes impossible to enter
the password, the machine must be restarted. I can reliably reproduce
this bug with the current kernel in jaunty-proposed (2.6.28-12.43). On
the other hand, the problem doesn't happen at all when I downgrade to
the current kernel in Jaunty (2.6.28-11.*).

ProblemType: Bug
Architecture: i386
CurrentDmesg:
 [   39.385467] [drm:i915_getparam] *ERROR* Unknown parameter 6
 [   39.783141] ADDRCONF(NETDEV_UP): eth1: link is not ready
 [   50.400062] eth2: no IPv6 routers present
 [  136.586874] ieee80211_crypt: registered algorithm 'WEP'
DistroRelease: Ubuntu 9.04
Lsusb:
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
 Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
 Bus 003 Device 002: ID 03f0:011d Hewlett-Packard Integrated Bluetooth Module
 Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
 Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
MachineType: Hewlett-Packard HP Compaq nc6220 (EK257AW#ABD)
Package: linux-image-2.6.28-12-generic 2.6.28-12.43
ProcCmdLine: root=UUID=aa272f03-73d7-4acd-975a-ba2432e54531 ro 
resume=UUID=f94b065a-5fa1-44c2-ac7b-76a2fcb75839 quiet splash
ProcEnviron:
 PATH=(custom, user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.28-12.43-generic
SourcePackage: linux

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


** Tags: apport-bug i386

-- 
Laptop keyboard stops working after resuming from suspend 
https://bugs.launchpad.net/bugs/375919
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 338982] Re: evolution crashed with SIGSEGV during MAPI authentication

2009-04-15 Thread Martin Soto
On Wed, 2009-04-15 at 17:00 +, Harry Kashouli wrote:
 So may we please have the steps that you will take to ensure that this
 bug is fixed, as you are no sure exactly where/what the bug is? I can
 understand your Universe rationale, however what would lead us to
 believe that anyone will be working on this bug, ever, if you do not
 have access to Exchange servers? Or is it the team's expectation and
 belief that this is an upstream bug, and will be fixed anyway when they,
 eventually, fix the bug?

As is the case with any Open Source project, you have no assurance that
a bug will be worked on. If you absolutely need this bug to be fixed
soon, you may consider contacting Novell (Evolution developers), or
paying someone else for investigating and fixing the problem. Otherwise,
Canonical or, in general, the Ubuntu community are in no obligation of
fixing this or any other problem, although they seem to be doing their
best, given the resources available to them.

-- 
evolution crashed with SIGSEGV during MAPI authentication
https://bugs.launchpad.net/bugs/338982
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 249373] Re: gnome-session storing broken since intrepid

2009-04-10 Thread Martin Soto
This is still not working for me, unfortunately. I have the latest
version of gnome-session available from Jaunty
(2.26.0svn20090408-0ubuntu2) and the problem remains: Log Out from the
FUSA applet works properly, whereas Shut Down and Restart don't. My
test case is to leave Firefox running and terminate the session. After
Log Out, Firefox restarts automatically with the same tabs. When any
one of the other two options is used, it complains later about having
been terminated abnormally.

-- 
gnome-session storing broken since intrepid
https://bugs.launchpad.net/bugs/249373
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 249373] Re: gnome-session storing broken since intrepid

2009-04-07 Thread Martin Soto
Just a short comment to confirm what user Christoph reported above:
session shutdown and saving is sort of working when the log out option
is chosen in the menu, but not when the restart or shut down options
are selected.

-- 
gnome-session storing broken since intrepid
https://bugs.launchpad.net/bugs/249373
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 94130] Re: HTTPS over proxy fails

2009-04-07 Thread Martin Soto
Of course this is not a fix, but I just managed to report a bug using
apport-cli and proxychains, so I thought I'd report it here as a
workaround. I configured proxychains to go through the proxy and, after
that, it was just a matter of running

  proxychains apport-cli --crash-
file=/var/crash/_usr_bin_evolution.1000.crash

In order to test if proxychains is being able to reach launchpad at all,
you can do something like

  proxychains wget
https://bugs.launchpad.net/ubuntu/+source/apport/+bug/94130

This should leave a file called 94130 in your current working
directory with the contents of this bug page. If this works, the apport
command above is likely to work as well.

-- 
HTTPS over proxy fails
https://bugs.launchpad.net/bugs/94130
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 249373] Re: gnome session does not restore the previous session

2008-12-29 Thread Martin Soto
  It appears that Gnome cannot be trusted to release a new version without
  major regressions, and Ubuntu needs to rigorously test new versions before
  committing to them.
 
 But they don't. Ubuntu is committed to releasing on a rigid schedule 
 regardless of functionality or regressions, too.

No need to put the blame on time-based releases. They are definitely
preferable to Debian-style releases, which seem to never get ready. The
problem is that, in the absence of guaranteed developer commitment (and
you never have guaranteed developers in Open Source) and good project
planning, it is impossible to make sure that the desired functionality
will be ready for the next release deadline. This is an inherent risk of
time-based releases: if you're unlucky, you may have very few new
features for your next release.

This case was particularly difficult for Ubuntu, I guess, because of the
complex dependencies inside of GNOME. Running 2.24 with the 2.22 session
manager is no trivial matter (as Gentoo's and Debian's efforts show) so
this wouldn't have been possible in the Intrepid time frame. Therefore,
the decision was between including 2.24 with the regression, and staying
with at least a large portion of 2.22. As we all know, 2.24 won.

As I already said elsewhere in this thread, I regret this decision. I
think that, by doing this, Ubuntu sends to wrong message upstream. I'm
really surprised that such a large regression was possible in GNOME
without any discussion whatsoever. In GNOME, a developer needs approval
from three release team members in order to change a single string after
string freeze, but he can cut off half of the functionality of a core
component and nobody says a word. Strange, to say the least.

But this is getting off-topic. This should be discussed in some higher
Ubuntu forum, but I don't know which one is appropriate. If any of you
guys have a better idea of how this can be brought to a higher instance
in an appropriate way, I'll be glad to know.

-- 
gnome session does not restore the previous session
https://bugs.launchpad.net/bugs/249373
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 287062] Re: Screen resolution capplet unnecesarily tries to set virtual resolution

2008-11-06 Thread Martin Soto
This is working for me, thanks a lot to everyone involved! I would have
tested it before, but didn't notice that a package with the fix was
available.

-- 
Screen resolution capplet unnecesarily tries to set virtual resolution
https://bugs.launchpad.net/bugs/287062
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 249373] Re: gnome session does not restore the previous session

2008-11-05 Thread Martin Soto
On Tue, 2008-11-04 at 08:54 +, Sebastien Bacher wrote:
 You can also note that the low priority focus for this bug upstream is
 due to the fact that the feature has never been working really correctly
 on many software and they don't consider that something stable and used
 by the majority of users, 

Well, as the comments here show, some people were relying on this
feature. This should be out of discussion now.

 that might be wrong but should be discussed on
 bugzilla.gnome.org rather than here, intrepid ships now the current
 version which works mostly correctly and the way to go is to get the bug
 fixed now in the intrepid updates or jaunty

With all due respect, I'm really surprised with this answer. Does this
imply that every time an upstream project delivers a new version with
regressions, Ubuntu will ship it just because it is the new upstream
version, no matter what damage it may cause? Does it imply that if
Ubuntu, for whatever reason, ships upstream code with a regression,
Ubuntu users will be directed to complain upstream as their only
resource?

I don't think this reflects Ubuntu's objectives (but please correct me
if I'm wrong.) As far as I can tell, Ubuntu has generally done a very
good job of selecting appropriate versions of upstream software: stable
and functional enough for most people, yet current. And most users now
rely on upgrades not containing serious regressions. So it can be argued
that the Ubuntu Desktop Team made the wrong decision when they let this
software in, because in fact, the problem was very well known to them
(https://lists.ubuntu.com/archives/ubuntu-devel/2008-September/026588.html look 
under Release Status).

Now, my intention here is not to point fingers, but to ask for
reasonable damage control. As a minimum, I would expect this problem to
be acknowledged by the desktop team, and clearly reported in the Release
Notes, so that users can decide if they want to update. Of course, it
would also be good to try to fix gnome-session at least to the point of
not putting user data under risk (see my comment above in this bug
report) but I don't know if anyone can commit any resources to that.

Finally, regarding us complaining upstream, I'm not sure a lot of
disgruntled users commenting in GNOME Bugzilla will be of help. As far
as I can tell, this is not just a bug. What's going on here is that the
desired functionality is simply not implemented, or very immature in the
new gnome-session. So, it cannot be said that it works mostly
correctly, because, in reality, it is able to start a session properly,
but far from being able to stop or restart it properly, which means it
currently does 30 to 50% of the intended functionality. This being the
actual state of affairs, I think we'll be very lucky if this is ready
for Jaunty.

Of course, GNOME should have also reported this clearly in their release
notes. They should also tell us what their policy regarding regressions
is, because they seem to be very picky regarding obscure ABI
regressions, but don't seem to mind large, user-visible regressions that
potentially put user data under risk of destruction. But this is
something we should try to bring to GNOME, and certainly not through
bugzilla.

Sorry for the long rant, but the way this problem has been
systematically understated worries me deeply, and detracts from the high
quality level we are already used to expect from Ubuntu.

-- 
gnome session does not restore the previous session
https://bugs.launchpad.net/bugs/249373
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 276134] Re: [intrepid] no prompt to save open work on shutdown/restart

2008-10-27 Thread Martin Soto
On Mon, 2008-10-27 at 11:34 +, Sebastien Bacher wrote:
 the reason it's not set as a blocker is that questions on session
 closing has never been something working reliably, only gedit is
 blocking the session in the GNOME desktop for example so that's not
 something user have been relying on, that would still something nice to
 get fixed though

That this never worked reliably is simply not true. With the old GNOME
session manager (=2.22), programs supporting the old XSMP protocol
(Firefox, OpenOffice, Gimp, and most programs using the GNOME libraries)
were indeed able to block session shutdown and ask you if you wanted to
save work (you can test it on Hardy). Also, for programs not supporting
XSMP, the session manager would ask you to terminate them by hand before
shutting down. The new GNOME session manager will just kill all running
programs without asking. This is very dangerous and will certainly
affect people who (maybe unconsciously) still rely on the old behavior.

Regarding gedit, it is one of the few programs that can block session
shutdown with the new session manager, and it seems to do this
incorrectly, by the way. With the old session manager, it used to work
well, as far as I remember.

-- 
[intrepid] no prompt to save open work on shutdown/restart
https://bugs.launchpad.net/bugs/276134
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 99508] Re: Window titlebar displayed not right with compiz enabled

2008-10-23 Thread Martin Soto
I can reproduce it with an old Nvidia 5200 and the 173 driver. This card
isn't even supported by the 177. Unfortunately, I don't have access to
that machine right now, but I can provide the exact lspci output later.

-- 
Window titlebar displayed not right with compiz enabled
https://bugs.launchpad.net/bugs/99508
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 287082] Re: Cannot go back to higher resolution after setting virtual resolution

2008-10-22 Thread Martin Soto
Yesterday, after reporting, I noticed that the 2305x1024 virtual
resolution should be enough for setting 1280x1024. Today I tested again
with the same laptop and projector and noticed that xorg.conf looks
different:

SubSection Display
Virtual 2640 768
EndSubSection

I must have copied from the wrong xorg.conf backup. So now it's clear
why the 1280x1024 resolution wasn't offered anymore. I'm attaching the
complete xorg.conf file, just in case that helps.

** Attachment added: xorg.conf with incorrect virtual resolution set
   http://launchpadlibrarian.net/18795012/xorg.conf

-- 
Cannot go back to higher resolution after setting virtual resolution
https://bugs.launchpad.net/bugs/287082
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 276134] Re: [intrepid] no prompt to save open work on shutdown/restart

2008-10-22 Thread Martin Soto
I reported this in GNOME Bugzilla
(http://bugzilla.gnome.org/show_bug.cgi?id=555795) but the report
remains unanswered. Also, the watched Bugzilla bug 553166  seems to be
related, but is not about the same problem.

-- 
[intrepid] no prompt to save open work on shutdown/restart
https://bugs.launchpad.net/bugs/276134
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 287062] [NEW] Screen resolution capplet unnecesarily tries to set virtual resolution

2008-10-21 Thread Martin Soto
Public bug reported:

Binary package hint: gnome-control-center

I have observed the problem when using my laptop (Compaq NC6220) with an
external monitor or projector. It can be reproduced as follows:

1. Start with both screens in mirrored (clone) mode, and with no virtual 
resolution line in xorg.conf.
2. Open the screen resolution capplet.
3. Uncheck the mirror screens box. The screens are still displayed as a 
single one, that is, you still see only one of them even if they aren't in 
mirror mode anymore. This is confusing.
4. Click on the visible screen. This will move it under the other one, which 
should have happened in step 3, anyway.
5. Check the mirror screens box again. The screens come together again. 
Notice that this state should be exactly equivalent to the initial state, 
before opening the box.
6. Press the apply button. A message box appears stating that the virtual 
resolution must be changed, which is obviously not true since we didn't change 
anything. Accepting the dialog actually inserts some bogus Virtual line in 
xorg.conf.

This happened when using the capplet under intrepid beta (gnome-control-
center 2.24.0.1).

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

-- 
Screen resolution capplet unnecesarily tries to set virtual resolution
https://bugs.launchpad.net/bugs/287062
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 287062] Re: Screen resolution capplet unnecesarily tries to set virtual resolution

2008-10-21 Thread Martin Soto
** Summary changed:

- Screen resolution capplet innecesarily tries to set virtual resolution
+ Screen resolution capplet unnecesarily tries to set virtual resolution

-- 
Screen resolution capplet unnecesarily tries to set virtual resolution
https://bugs.launchpad.net/bugs/287062
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 287082] [NEW] Cannot go back to higher resolution after setting virtual resolution

2008-10-21 Thread Martin Soto
Public bug reported:

Binary package hint: gnome-control-center

The following happened to me today while attemping to use my laptop
(compaq nc6220, intel 915 graphics)  with a video projector. I attached
the projector, opened the screen resolution capplet, selected the
projector and turned its output on, and checked the mirror screens
box. The highest common resolution was 1024x768. I pressed apply.

The virtual resolution dialog appeared telling me that the virtual
resolution had to be changed. That was surprising, since, up to this
point, the laptop had been operating at 1280x1024. Since answering no
here wouldn't apply the changes, and I had to do a presentation in a few
minutes, I ended up accepting the change. After logging out and in
again, everything worked as expected.

After the presentation, I disconnected the projector and tried to go
back to my usual 1280x1024, but that resolution simply wasn't offered
anymore, and a reboot didn't help to bring it back. Further inspection
showed that the following lines had been inserted into my xorg.conf:

SubSection Display
Virtual 2304 1024
EndSubSection

First, I wonder how the 2304 was calculated. Second, the capplet
obviously won't offer any resolutions that don't fit into the virtual
resolution. It should offer them, though, and should also offer to
increase the virtual resolution accordingly. My workaround was to delete
the lines from xorg.conf, but a less knowledgable user will be
completely lost in this case.

This bug is probably related to bug #287062, but I decided to report
that separately since it can be triggered in a different way. It is also
clearly not the same as bug #224229.

I was using the capplet under intrepid beta (gnome-control-center
2.24.0.1).

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

-- 
Cannot go back to higher resolution after setting virtual resolution
https://bugs.launchpad.net/bugs/287082
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 276134] Re: [intrepid] no prompt to save open work on shutdown/restart

2008-10-10 Thread Martin Soto
This happens to me as well with Intrepid Beta updated today. I tested
with both an old and a new account with equal results. A simple way to
test is just opening Firefox, visiting some URL and ending the GNOME
session (a log out will do, no need to shut down). If you log in again
and start Firefox it will report that the previous session was
terminated abruptly. Other applications, such as OpenOffice are
similarly affected.

I reported this already in Bug #249373, which is not exactly about this
same issue, but that is apparently related. In that bug report user
Lukas Hejtmanek confirms that he's observing the same behavior.

This bug *should not* be triaged as low priority. It is not only a
serious regression, but *will cause data loss* when a user forgets
saving before ending her session. I would appreciate people to check if
they observe the problem and report here, so that the bug can be at
least set to CONFIRMED.

-- 
[intrepid] no prompt to save open work on shutdown/restart
https://bugs.launchpad.net/bugs/276134
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 249373] Re: gnome session does not start window manager nor restores the previous session

2008-10-08 Thread Martin Soto
pakraticus: As far as I know, GNOME *didn't* switch to a new session
protocol. There are plans to eventually do that, but, for the time
being, the session protocol continues to be XSMP. You may be confused by
the fact that the GNOME 2.24 release notes mention DBus for session
management, but, as far as I understand it, this is just an interface to
control the session manager itself (start the shutdown sequence, for
example).

-- 
gnome session does not start window manager nor restores the previous session
https://bugs.launchpad.net/bugs/249373
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 249373] Re: gnome session does not start window manager nor restores the previous session

2008-10-08 Thread Martin Soto
First, correction: GNOME is indeed switching to a new D-Bus-based
protocol for session management, but the new session manager *should
have legacy support for XSMP*. The latest documentation seem to be
http://live.gnome.org/SessionManagement/GnomeSession and XSMP is
mentioned there prominently. Also on my machine, the session manager is
indeed creating the SESSION_MANAGER environment variable needed by XSMP
clients, and the variable points to a UNIX domain socket as expected.

Some further observation gives me the impression that, in intrepid, the
session is not being saved at all, and that applications aren't being
shut down cleanly. Try, for example, starting firefox, loading a page,
logging out from the GNOME session, logging in again, and starting
firefox again (it won't be restarted automatically, anyway.) Firefox
will then report that the previous session was ended forcefully, and ask
if its state should be restored. I tried with other applications, such
as OpenOffice and Lyx (just open a new document, put some text in it,
and log out from GNOME) and this leads to data loss. So I don't think
this problem should be considered low priority, it isn't just anoying,
it is rather dangerous.

Also, Sebastien, the linked upstream bug doesn't really seem to be
related to this problem. As far as I understand it, it has to do with
the new session manager not being able to restore old session data,
saved by the older session manager.

Can people please check if they can repeat my results with Firefox and
OpenOffice?

-- 
gnome session does not start window manager nor restores the previous session
https://bugs.launchpad.net/bugs/249373
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 215577] Re: [Hardy][Regression] HP/Compaq nc6220: Resume fails after suspend to RAM

2008-09-22 Thread Martin Soto
I just wanted to confirm Jochen's experience: with kernel 2.6.27 from
the PPA, suspend seems to work properly again  (and it's very quick, by
the way!).

Thanks a lot for the fix!

-- 
[Hardy][Regression] HP/Compaq nc6220: Resume fails after suspend to RAM
https://bugs.launchpad.net/bugs/215577
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 215577] Re: [Hardy][Regression] HP/Compaq nc6220: Resume fails after suspend to RAM

2008-04-28 Thread Martin Soto
Some more info:

Applying the patch in http://kernel.ubuntu.com/git?p=ubuntu/ubuntu-
hardy.git;a=commit;h=273f7b551a420580307fa414fe616f0e276a4035 to the
current kernel (linux-image-2.6.24-16) seems to mitigate the problem
quite a bit. This means that fixing bug #188226 will at least contribute
to improve the situation.

With the patched kernel, I achieve a much faster resume, altough I still
have to keep producing events by pressing keys or using the mousepad in
order for the resume operation to complete. The behavior of the system
is also much better after resume, even if some sluggishness is still
observable.

My conclusion, anyway, is that this bug is somehow related to the recent
changes in the kernel scheduler.

-- 
[Hardy][Regression] HP/Compaq nc6220: Resume fails after suspend to RAM
https://bugs.launchpad.net/bugs/215577
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 207796] Re: pulseaudio segfaults when switching streams

2008-04-25 Thread Martin Soto
I'm seeing the same problem under Hardy, and tried to make a backtrace
but some of the symbols are missing and I have no clue of which package
to install to fix them. I'm attaching the current backtrace anyway just
in case someone can tell me how to improve it.

By the way, I had to run gdb as root and attach to the pulseaudio
process running under my user, because gdb fails if I try to run it
directly on pulseaudio:

(gdb) run
Starting program: /usr/bin/pulseaudio 
[Thread debugging using libthread_db enabled]
[New process 10539]
Executing new program: /proc/10539/exe
/proc/10539/exe: Permission denied.


** Attachment added: gdb-pulseaudio.txt
   http://launchpadlibrarian.net/13910455/gdb-pulseaudio.txt

-- 
pulseaudio segfaults when switching streams
https://bugs.launchpad.net/bugs/207796
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 215577] Re: [Hardy][Regression] HP/Compaq nc6220: Resume fails after suspend to RAM

2008-04-24 Thread Martin Soto
@Leann, I'm attaching dmesg output taken right before and immediatly
after doing a suspend. Let me know if there is any other info I can
provide.

** Attachment added: dmesg-before.log
   http://launchpadlibrarian.net/13851269/dmesg-before.log

-- 
[Hardy][Regression] HP/Compaq nc6220: Resume fails after suspend to RAM
https://bugs.launchpad.net/bugs/215577
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 215577] Re: [Hardy][Regression] HP/Compaq nc6220: Resume fails after suspend to RAM

2008-04-24 Thread Martin Soto

** Attachment added: dmesg-after.log
   http://launchpadlibrarian.net/13851270/dmesg-after.log

-- 
[Hardy][Regression] HP/Compaq nc6220: Resume fails after suspend to RAM
https://bugs.launchpad.net/bugs/215577
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 215577] Re: [Hardy][Regression] HP/Compaq nc6220: Resume fails after suspend to RAM

2008-04-16 Thread Martin Soto
I noticed yesterday that I can accelerate the resume process if I keep
pressing keys (e.g., Alt) and sliding my finger on the mouse pad as if I
were using the mouse. If I do that continuosly after pressing the power
button, resume happens in 10 to 15 seconds. Still, the machine works
quite sluggishly for a few minutes after resume. Observing this sluggish
behavior more carefully, I looks as if the system would block or freeze
regularly, and that moving the mouse (mouse pad or external USB) or
using the keyboard unblocks it. For example, compiz animations are
sluggish, but if I trigger the animation and keep moving the mouse, the
animation runs smoothly.

This seems to be related to the resume problem: in both cases, the
kernel seems to block waiting for input (interruptions?) to arrive. As
long as I keep the input coming, things sort of run. Unfortunately, none
of my attempts to find reports of similar problems on the Internet has
yielded any possitive results so far. I would really appreciate more
information.

In a final note, I started the machine today with the current Gutsy
kernel (2.6.22-14) and although it breaks a few things in Hardy, it
manages to suspend and resume the machine correctly and very quickly.
This points once again to a problem in the kernel, and not in other
components, such as the new pm-utils.

** Also affects: linux-source-2.6.24 (Ubuntu)
   Importance: Undecided
   Status: New

** Tags added: hardy regression

-- 
[Hardy][Regression] HP/Compaq nc6220: Resume fails after suspend to RAM
https://bugs.launchpad.net/bugs/215577
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 206511] Re: Lid state incorrectly reported as closed on HP-Compaq 6120

2008-04-15 Thread Martin Soto
Just for the record: the same workaround was necessary on my HP/Compaq
nc6220 (similar but not identical model) in order to make the lid work
properly under Hardy. The problem was a bit different, since the kernel
reported the lid state as always open, regardless of the actual state of
the lid button. Similar to the original report, though, closing the lid
once caused spurious lid events to be sent about every 30 seconds,
which, in turn, caused very annoying screen flickering.

Many thanks to Gerhard for mentioning the workaround. This issue was
making me crazy.

** Changed in: linux-source-2.6.15 (Ubuntu)
   Status: New = Invalid

** Also affects: linux-source-2.6.24 (Ubuntu)
   Importance: Undecided
   Status: New

-- 
Lid state incorrectly reported as closed on HP-Compaq 6120
https://bugs.launchpad.net/bugs/206511
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 206511] Re: Lid state incorrectly reported as closed on HP-Compaq 6120

2008-04-15 Thread Martin Soto
I wanted to report this for 2.6.24, but ended up doing the wrong action
and now cannot revert it. Lauchpad is quite unforgiving sometimes. Sorry
for the noise, anyway.

-- 
Lid state incorrectly reported as closed on HP-Compaq 6120
https://bugs.launchpad.net/bugs/206511
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 215577] Re: [Hardy][Regression] HP/Compaq nc6220: Resume fails after suspend to RAM

2008-04-14 Thread Martin Soto
After upgrading to 2.6.24-16, I just noticed that if I repeatedly press
the caps lock key during resume, the laptop actually wakes up. It takes
it three to four minutes to reach the graphical desktop, though. I also
noticed that, after resume, compiz graphical animations are slugish for
a while, maybe up to ten minutes. But that recedes eventually and the
computer behaves normally afterwards.

The attached picture shows the messages that appear during resume, some
30 seconds after pressing the caps lock key and before going back to
graphical mode.

** Attachment added: Picture of text messages after resume
   http://launchpadlibrarian.net/13421097/1.jpg

-- 
[Hardy][Regression] HP/Compaq nc6220: Resume fails after suspend to RAM
https://bugs.launchpad.net/bugs/215577
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 216197] Re: no weather information in gnome panel

2008-04-13 Thread Martin Soto
Unfortunately, kmon's approach didn't work for me (Hardy beta, last
updated yesterday). As shown in the attachment, the applet is actually
able to download and display weather information, but not directly on
the panel. Show weather and Show temperature are both checked in my
preferences.

** Attachment added: Clock applet shows weather info on a tooltip, but not on 
the panel
   http://launchpadlibrarian.net/13405952/Screenshot.png

-- 
no weather information in gnome panel
https://bugs.launchpad.net/bugs/216197
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 216197] Re: no weather information in gnome panel

2008-04-13 Thread Martin Soto
Indeed, my time zone wasn't set. and this seems to have fixed it, thanks
Timo! I haven't rebooted as yet, so I don't now if the fix will stay.
I'll report it if I observe further problems. By the way, the resetting
of the time zone that Timo reports may be related to bug #210561.

-- 
no weather information in gnome panel
https://bugs.launchpad.net/bugs/216197
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 215577] Re: [Hardy][Regression] HP/Compaq nc6220: Resume fails after suspend to RAM

2008-04-11 Thread Martin Soto

** Attachment added: version.log
   http://launchpadlibrarian.net/13352995/version.log

-- 
[Hardy][Regression] HP/Compaq nc6220: Resume fails after suspend to RAM
https://bugs.launchpad.net/bugs/215577
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 215577] Re: [Hardy][Regression] HP/Compaq nc6220: Resume fails after suspend to RAM

2008-04-11 Thread Martin Soto

** Attachment added: lspci-vvnn.log
   http://launchpadlibrarian.net/13352983/lspci-vvnn.log

-- 
[Hardy][Regression] HP/Compaq nc6220: Resume fails after suspend to RAM
https://bugs.launchpad.net/bugs/215577
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 215577] [NEW] [Hardy][Regression] HP/Compaq nc6220: Resume fails after suspend to RAM

2008-04-11 Thread Martin Soto
Public bug reported:

Suspend to RAM used to work flawlessly on this machine under Gutsy. But
since I updated to Hardy yesterday, resume is not working anymore. The
machine seems to suspend properly (green leds blink slowly) but after
resume I only get a black screen with the backlight turned off. I tried
to contact the machine over SHH after resume but got no answer. Also,
moving from the intel to the i810 driver didn't change anything. For
this reason I'm attributing the problem to the kernel.

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

-- 
[Hardy][Regression] HP/Compaq nc6220: Resume fails after suspend to RAM
https://bugs.launchpad.net/bugs/215577
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 215577] Re: [Hardy][Regression] HP/Compaq nc6220: Resume fails after suspend to RAM

2008-04-11 Thread Martin Soto

** Attachment added: uname-a.log
   http://launchpadlibrarian.net/13352987/uname-a.log

-- 
[Hardy][Regression] HP/Compaq nc6220: Resume fails after suspend to RAM
https://bugs.launchpad.net/bugs/215577
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 215577] Re: [Hardy][Regression] HP/Compaq nc6220: Resume fails after suspend to RAM

2008-04-11 Thread Martin Soto

** Attachment added: dmesg.log
   http://launchpadlibrarian.net/13352975/dmesg.log

-- 
[Hardy][Regression] HP/Compaq nc6220: Resume fails after suspend to RAM
https://bugs.launchpad.net/bugs/215577
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 203513] Re: display doesn't go to sleep after today's gnome-power-manager update

2008-03-23 Thread Martin Soto
Same situation here running Hardy beta updated earlier today.  This is a
desktop machine with a flat panel monitor, and an NVidia graphics card
(running the proprietary driver.) I'm attaching the output of gnome-
power-bugreport.sh, just in case it's useful.

** Attachment added: Output of gnome-power-bugreport.sh
   http://launchpadlibrarian.net/12827828/gpm.txt

-- 
display doesn't go to sleep after today's gnome-power-manager update
https://bugs.launchpad.net/bugs/203513
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 146946] Re: [gutsy] Gnome settings daemon randomly does not work

2008-03-23 Thread Martin Soto
Sebastian: I just tried to test starting without dbus-x11 but I cannot
remove it anymore since some (important) packages in Hardy depend on it:

$ sudo apt-get remove dbus-x11
Reading package lists... Done
Building dependency tree   
Reading state information... Done
The following packages will be REMOVED:
  dbus-x11 f-spot gnome-mount gnome-volume-manager policykit-gnome
  ubuntu-desktop
0 upgraded, 0 newly installed, 6 to remove and 0 not upgraded.
After this operation, 13.5MB disk space will be freed.
Do you want to continue [Y/n]? 

Am I missing something?

-- 
[gutsy] Gnome settings daemon randomly does not work
https://bugs.launchpad.net/bugs/146946
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 146946] Re: [gutsy] Gnome settings daemon randomly does not work

2008-03-23 Thread Martin Soto
Hardy, last updated earlier today.

-- 
[gutsy] Gnome settings daemon randomly does not work
https://bugs.launchpad.net/bugs/146946
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 10669] Re: Filters are not applied to new mail on Exchange

2007-11-16 Thread Martin Soto
On Fri, 2007-11-16 at 09:39 +, Sebastien Bacher wrote:
 Could people having the issue try the change?

I recompiled evolution-exchange two hours ago with the referenced patch,
and, so far, it seems to be working. A few spam messages were already
filtered properly.

-- 
Filters are not applied to new mail on Exchange
https://bugs.launchpad.net/bugs/10669
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

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


Re: [Bug 146946] Re: [gutsy] Gnome settings daemon does randomly not work

2007-11-12 Thread Martin Soto

On Mon, 2007-11-12 at 03:03 +, Craig N wrote: 
 Same issue here.
... 
 message includes:
 failed to connect to socket /tmp/dbus-CmrPFTAOO

I managed to reproduce the problem by reinstating the session file that
was causing the it. The complete error message I get is:

There was an error starting the GNOME Settings Daemon.

Some things, such as themes, sounds, or background settings may
not work correctly.

The last error message was:

Did not receive a reply. Possible causes include: the remote
application did not send a reply, the message bus security
policy blocked the reply, the reply timeout expired, or the
network connection was broken.

GNOME will still try to restart the Settings Daemon next time
you log in.

It seems to me that we are dealing with different problems that have
similar symptoms.

 Martin,
 Not sure what /.gnome2/session file is. I don't see it in my .gnome2 
 directory.
 I have this:

I guess you have to save your session to get one. I save my session
automatically when I close, i.e., System|Preferences|Sessions|Sesion
Options|Automatically remember running applications when logging out is
checked.

-- 
[gutsy] Gnome settings daemon does randomly not work
https://bugs.launchpad.net/bugs/146946
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 146946] Re: [gutsy] Gnome settings daemon does randomly not work

2007-11-11 Thread Martin Soto
I was having this problem consistently after rebooting. My first login
attempt after a reboot would always fail with the the dreaded There was
an error starting the GNOME Settings Daemon message box. Logging out
and logging in again always solved the problem, but it was quite
annoying anyway.

The good news is, I managed to work around the problem by deleting
(renaming actually) my ~/.gnome2/session file. This would point to
gnome-session as the actual culprit in this case, instead of the real-
time kernel. The kernel, however, may still have something to do,
because this problem is most probably caused by a race condition during
session startup (the fact that it is intermittent, as well as the fact
that it didn't affect me on a second login with a warm cache, both
suggest it.) A different scheduler will potentially affect process
execution order during session startup, and may increase/decrease the
chances of this race condition actually triggering.

If you are having this problem, could you please try renaming/deleting
your session file and report here your results?

Some additional info about my setup: I'm running a Gutsy installation
(upgraded recently from Feisty.) I use the real-time kernel from Gutsy,
but this problem didn't start when I installed it. The problem was
apparently caused by me fiddling with my desktop configuration: I was
playing with Awn and changed my panel and theme configuration many times
in a few days.

-- 
[gutsy] Gnome settings daemon does randomly not work
https://bugs.launchpad.net/bugs/146946
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 160752] Re: Tracker search tool displays out off bounds result pages

2007-11-07 Thread Martin Soto
Sorry, I mean Search results: -9, 0 of 54 hits as seen on the
screenshot.

-- 
Tracker search tool displays out off bounds result pages
https://bugs.launchpad.net/bugs/160752
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 160752] Tracker search tool displays out off bounds result pages

2007-11-07 Thread Martin Soto
Public bug reported:

Binary package hint: tracker-search-tool

It is possible to have tracker-search-tool display an out-of-bounds
results page. In order to reproduce, search for a term that produces a
few pages of results (about 50 is enough). Now go to the third or fourth
results page and the repeatedly press the backward arrow. You have to
press it repeatedly and quickly, at about the speed you would use for a
double click. By doing this a few times, I manage to get to a results
page that lies before the first one, the results list is empty and
Search results: -0, 0 of 54 hits is displayed (see attached
screenshot). It is also possible to to this at the end of the list.

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

-- 
Tracker search tool displays out off bounds result pages
https://bugs.launchpad.net/bugs/160752
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 160752] Re: Tracker search tool displays out off bounds result pages

2007-11-07 Thread Martin Soto

** Attachment added: Out-of-bounds page in tracker
   
http://launchpadlibrarian.net/10301078/Screenshot-Tracker%20Search%20Tool-1.png

-- 
Tracker search tool displays out off bounds result pages
https://bugs.launchpad.net/bugs/160752
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 10669] Re: Filters are not applied to new mail on Exchange

2007-10-24 Thread Martin Soto
I'm also seeing this here, and is very annoying due to the large amount
of spam I receive. In feisty, filters seemed to work most of time, even
if every now and then an email or two would remain unfiltered for
unknown reasons. Now in gutsy filters aren't applied at all and must be
run by hand.

By the way, for those suffering with Evolution's baloon notifications,
they can be stopped by dissabling the Mail notification plugin under
Edit | Plugins. It worked for me, at least.

-- 
Filters are not applied to new mail on Exchange
https://bugs.launchpad.net/bugs/10669
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

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


[Bug 141650] Re: [Gutsy] ekiga startup error

2007-09-23 Thread Martin Soto
*** This bug is a duplicate of bug 117732 ***
https://bugs.launchpad.net/bugs/117732

I fixed this problem by recompiling the libopal package locally.

-- 
[Gutsy] ekiga startup error
https://bugs.launchpad.net/bugs/141650
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 66745] Cairocanvas is already integrated into UNIX OO, but not activated!

2006-10-19 Thread Martin Soto
The blog comment you are referring to is about the *Windows* version of
OO. Under Linux, cairocanvas has been available for some time now. As
far as I can tell, the Unix version has had it since at least 2.0.3, as
these release notes show:
http://development.openoffice.org/releases/2.0.3.html (search for
cairo inside the page.)

However, looking at /usr/share/doc/openoffice.org-
impress/changelog.Debian.gz in my edgy installation (last updated
yesterday) the Debian package deactivated cairocanvas around 2.0.0 (the
reason is not dicussed in the changelog) and never reactivated it.

It would be great if Ubuntu could give this feature a try, either for
the upcoming Edgy release or for a future update, since it makes a huge
difference when making presentations.

-- 
[edgy + 1] use cairo canvas
https://launchpad.net/bugs/66745

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


[Bug 60115] Re: [2.0beta3] Gaim randomly crashes when open during logout

2006-10-16 Thread Martin Soto
Same problem here. My crash report is attached.

** Attachment added: Crash report
   http://librarian.launchpad.net/4861011/_usr_bin_gaim.1000.crash

-- 
[2.0beta3] Gaim randomly crashes when open during logout
https://launchpad.net/bugs/60115

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


[Bug 64624] Re: [edgy] usplash corrupted

2006-10-15 Thread Martin Soto
I was observing the same problem with the following hardware:

01:00.0 VGA compatible controller: nVidia Corporation NV34 [GeForce FX
5200] (rev a1)

Applying the patch bug #62865 fixed the problem for me as well. Would it
be possible to apply it before Edgy's release?

-- 
[edgy] usplash corrupted
https://launchpad.net/bugs/64624

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


[Bug 63822] Re: Error in evolution while opening a mail folder

2006-10-07 Thread Martin Soto
I'm observing this problem as well (Edgy, last updated 2006-10-07). 
Additionally, if I select the Inbox folder in my IMAP account, then select the 
spam folder in that same account, and the go back to the Inbox folder, the 
following happens:
- About four of every five times Evolution crashes. 
- When Evolution doesn't crash, it shows the error message copied by the 
original reporter when I select Inbox. From that point on, every attempt of 
selecting Inbox leads to the same error message and an empty summary window.

I tried to collect debug information with symbols. This is the backtrace
as collected by bug buddy:

Distribution: Ubuntu 6.10 (edgy)
Gnome Release: 2.16.1 2006-10-02 (Ubuntu)
BugBuddy Version: 2.16.0

Memory status: size: 175222784 vsize: 0 resident: 175222784 share: 0 rss: 
25444352 rss_rlim: 0
CPU usage: start_time: 1160255046 rtime: 0 utime: 217 stime: 0 cutime:199 
cstime: 0 timeout: 18 it_real_value: 0 frequency: 0

Backtrace was generated from '/usr/bin/evolution-2.8'

Using host libthread_db library /usr/lib/debug/libthread_db.so.1.
[Thread debugging using libthread_db enabled]
[New Thread -1233066320 (LWP 12205)]
[New Thread -1367376976 (LWP 12224)]
[New Thread -1358988368 (LWP 12223)]
[New Thread -1308066896 (LWP 12220)]
[New Thread -1299678288 (LWP 12214)]
[New Thread -1290007632 (LWP 12213)]
[New Thread -1281487952 (LWP 12211)]
0xb7145e91 in __waitpid_nocancel () from /usr/lib/debug/libc.so.6
#0  0xb7145e91 in __waitpid_nocancel () from /usr/lib/debug/libc.so.6
#1  0xb7e411b6 in gnome_gtk_module_info_get () from /usr/lib/libgnomeui-2.so.0
#2  0x0805f8e9 in segv_redirect (sig=11) at main.c:426
#3  signal handler called
#4  0xb70289ac in __lll_mutex_unlock_wake ()
   from /usr/lib/debug/libpthread.so.0
#5  0xb70259e9 in _L_mutex_unlock_94 () from /usr/lib/debug/libpthread.so.0
#6  0x001d in ?? ()
#7  0xb71d7ff4 in ?? () from /usr/lib/debug/libc.so.6
#8  0x0869c410 in ?? ()
#9  0x0823a828 in ?? ()
#10 0xbfcfd918 in ?? ()
#11 0xb70259e0 in __pthread_mutex_unlock (mutex=0xbfcfd928)
at pthread_mutex_unlock.c:129
#12 0xb70259e0 in __pthread_mutex_unlock (mutex=0x8103fb8)
at pthread_mutex_unlock.c:129
#13 0xb7184176 in pthread_mutex_unlock (mutex=0x8103fb8) at forward.c:183
#14 0xb722a276 in e_thread_put (e=0x8103fa8, msg=0x869c410) at e-msgport.c:1148
#15 0xb3db3e0c in ml_regen_timeout (m=0x869c410) at message-list.c:3923
#16 0xb3db4586 in message_list_thaw (ml=0x823a828) at message-list.c:3305
#17 0xb3d682ff in emfb_set_folder (emfv=0x8239000, folder=0x8573e00, 
uri=0x869c0f8 imap://[EMAIL PROTECTED]:5993/INBOX)
at em-folder-browser.c:1899
#18 0xb3d73902 in emfv_got_folder (
uri=0x869c0f8 imap://[EMAIL PROTECTED]:5993/INBOX, 
folder=0x8573e00, data=0x8239000) at em-folder-view.c:691
#19 0xb3da6656 in get_folder_got (mm=0x80ef6c8) at mail-ops.c:1230
#20 0xb3da6065 in mail_msgport_replied (source=0x80cd308, cond=G_IO_IN, 
d=0x81c1868) at mail-mt.c:461
#21 0xb755bc8d in g_io_channel_unix_get_fd () from /usr/lib/libglib-2.0.so.0
#22 0xb7532802 in g_main_context_dispatch () from /usr/lib/libglib-2.0.so.0
#23 0xb75357df in g_main_context_check () from /usr/lib/libglib-2.0.so.0
#24 0xb7535b89 in g_main_loop_run () from /usr/lib/libglib-2.0.so.0
#25 0xb7d15a23 in bonobo_main () from /usr/lib/libbonobo-2.so.0
#26 0x0805f718 in main (argc=1, argv=0xbfcfddc4) at main.c:615

Thread 7 (Thread -1281487952 (LWP 12211)):
#0  0xb71721b7 in ___newselect_nocancel () from /usr/lib/debug/libc.so.6
No locals.
#1  0xb7229f1c in e_msgport_wait (mp=0x81add38) at e-msgport.c:643
rfds = {__fds_bits = {0, 16, 0 repeats 30 times}}
#2  0xb722a5e9 in thread_dispatch (din=0x81adcd8) at e-msgport.c:1035
e = value optimized out
m = (EMsg *) 0x0
info = value optimized out
self = 3013479344
#3  0xb70230fb in start_thread (arg=0xb39e0bb0) at pthread_create.c:261
__res = value optimized out
__ignore1 = value optimized out
__ignore2 = value optimized out
pd = (struct pthread *) 0xb39e0bb0
unwind_buf = {cancel_jmp_buf = {{jmp_buf = {-1224548364, 0, 8195840, 
-1281489688, 1284768912, 1208496331}, mask_was_saved = 0}}, priv = {
pad = {0x0, 0x0, 0x0, 0xb7023092}, data = {prev = 0x0, cleanup = 0x0, 
  canceltype = 0}}}
not_first_call = 0
robust = value optimized out
#4  0xb71788ee in clone () from /usr/lib/debug/libc.so.6
fstab_state = {fs_fp = 0x0, fs_buffer = 0x0, fs_mntres = {
mnt_fsname = 0x0, mnt_dir = 0x0, mnt_type = 0x0, mnt_opts = 0x0, 
mnt_freq = 0, mnt_passno = 0}, fs_ret = {fs_spec = 0x0, fs_file = 0x0, 
fs_vfstype = 0x0, fs_mntops = 0x0, fs_type = 0x0, fs_freq = 0, 
fs_passno = 0}}
__elf_set___libc_subfreeres_element_fstab_free__ = (
const void *) 0xb71b23a0

Thread 6 (Thread -1290007632 (LWP 12213)):
#0  0xb71721b7 in ___newselect_nocancel () from /usr/lib/debug/libc.so.6
No locals.
#1  0xb7229f1c in e_msgport_wait (mp=0x80ef768) at 

[Bug 63822] Re: Error in evolution while opening a mail folder

2006-10-07 Thread Martin Soto
I just noticed bug #62192. Maybe it is unrelated, but I'm also observing
the bogofilter and spamassassin error messages when starting Evolution.
Both packages are installed in my machine. The error messages seem to
appear irregardless of whether I enable or disable the plugins in
Evolution's plugin box.

-- 
Error in evolution while opening a mail folder
https://launchpad.net/bugs/63822

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


[Bug 63717] Blam crashes when fed with (wrong?) RSS URI

2006-10-03 Thread Martin Soto
Public bug reported:

Binary package hint: blam

I was trying to add a new channel to Blam. The XML link at the blog
website pointed to http://blogs.gnome.org/syndicate/nigeltao . I
selected the Channel|Add option, copied this link into the box and Blam
crashed a few seconds later.

** Affects: blam (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
Blam crashes when fed with (wrong?) RSS URI
https://launchpad.net/bugs/63717

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


[Bug 63717] Re: Blam crashes when fed with (wrong?) RSS URI

2006-10-03 Thread Martin Soto
Crash report collected by the new Edgy crash tool.

** Attachment added: Crash report.
   http://librarian.launchpad.net/4625338/_usr_bin_mono.1000.crash

-- 
Blam crashes when fed with (wrong?) RSS URI
https://launchpad.net/bugs/63717

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