[Bug 293376] Re: Thinkpad T60 volume down button stops music

2009-05-11 Thread BernardB
This bug has been fixed in upgrading to Jaunty.

All the special keys do precisely what they're supposed to.


** Changed in: xserver-xorg-input-evdev (Ubuntu)
   Status: New => Fix Released

-- 
Thinkpad T60 volume down button stops music
https://bugs.launchpad.net/bugs/293376
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 297422] Re: bcm4328 wireless unstable with wl driver

2009-01-30 Thread BernardB
I have a Dell Studio Hybrid with the same BCM4328 and suffered similar
issues with the wl driver. The killer for me was that wireless would
simply drop out for minutes at a time, then come back.

I grabbed the latest Broadcom driver (5.10.27.14) and dropped it into
linux-restricted-modules-2.6.27-11 and rebuilt. It appears that this
driver does not cause the drop outs any more. It still seems to miss
some beats when streaming at high bitrates, but nowhere near as bad as
it used to be.

-- 
bcm4328 wireless unstable with wl driver
https://bugs.launchpad.net/bugs/297422
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 227252] Re: The generated binaries always crash

2009-01-30 Thread BernardB
In addition to the mmap_min_addr change above, you also need to set
/proc/sys/vm/vdso_enabled to either 0 (no vDSO) or 2 (compatibility vDSO
mode - mapping to 0x). I'd recommend setting it to 2 for
performance.

The default is 1 which maps the vDSO page somewhere in the user
process's address space, and that's not being restored correctly. I'm
not entirely sure what it's unhappy about it still, but at least this
suffice as a workaround for now. (Additionally, you can actually save a
image with the default of vdso_enabled=1, so long as you restore it with
vdso_enabled=2).

-- 
The generated binaries always crash
https://bugs.launchpad.net/bugs/227252
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 310629] Re: No systemwide network settings

2009-01-22 Thread BernardB
I hit this problem also with intrepid. As a temporary workaround, as
mentioned on the link
http://ubuntuforums.org/archive/index.php/t-984104.html you need to:

(1) uncheck "Automatically connect"
(2) check "System setting"
(3) check "Automatically connect"
(4) click Ok

-- 
No systemwide network settings
https://bugs.launchpad.net/bugs/310629
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 23768] Re: /usr/bin/cpufreq-selector should have different access permissions

2006-06-12 Thread BernardB
Entries in /sys can be chown'd and chmod'd:

Perhaps /sys/devices/system/cpu/cpu*/cpufreq/* could be chgrp'd to admin
and chmod'd 664 on boot? (And cpufreq selector made to just test if it
can write to the files it needs before complaining). In fact, it's
really just a handful of files that need chmod'ing, not the entire
directory.

No suid root need.

Although perhaps we want some scripts to run in order to do this
chmodding when CPUs are hotplugged too ;)

-- 
/usr/bin/cpufreq-selector should have different access permissions
https://launchpad.net/bugs/23768

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


[Bug 46838] Re: Cannot install turba2

2006-12-14 Thread BernardB
Are there plans for this to find its way into dapper also?

-- 
Cannot install turba2
https://launchpad.net/bugs/46838

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


[Bug 66242] Re: crash on launch

2006-10-30 Thread BernardB
I have a similar crash on startup with the exiting of
update_cursor_values() failing a stack smashing check. There's a
temporary buffer which isn't made big enough. This patch expands the
size of the buffer to 512 bytes and makes sure we don't overrun. However
it doesn't do anything in the case when it does overrun.

** Attachment added: "Fix to expand the temp buffer and not overrun it."
   http://librarian.launchpad.net/4940683/linsmith-fix.diff

-- 
crash on launch
https://launchpad.net/bugs/66242

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


[Bug 41056] Re: qiv fails to start: Gdk-ERROR **: BadMatch (invalid parameter attributes)

2006-11-03 Thread BernardB
AFAICT, it's a bug with imlib1 and the X compositing extension. (see
http://xorg.freedesktop.org/archive/X11R6.8.0/doc/RELNOTES5.html#40)

A temporary workaround might be to always force the environment
variable, ala the attached patch. (works for me(tm)).

** Attachment added: "Hacky fix for qiv."
   http://librarian.launchpad.net/4960706/qiv-hack.diff

-- 
qiv fails to start: Gdk-ERROR **: BadMatch (invalid parameter attributes)
https://launchpad.net/bugs/41056

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


[Bug 70367] imlib1 does not correctly handle 32-bit visuals

2006-11-04 Thread BernardB
Public bug reported:

With the compositing extension turned on in the X server, some
applications linked with gdk-imlib1 crash with a "Gdk-ERROR: BadMatch"
when 32-bit and 24-bit visuals are combined.  Enabling
"XLIB_SKIP_ARGB_VISUALS=1" in the environment prevents xlib from
informing imlib about 32-bit visuals. However, if imlib can't support
32-bit visuals, then it shouldn't attempt to use them in the first
place. (I'm not certain that imlib doesn't support 32-bit visuals, but a
brief trawl through the code doesn't suggest that it does).

This is the root cause of qiv Bug #41056 and possibly other apps linked
with imlib1/gdk-imlib1.

The attached patch for imlib1 caps the maximum depth used by imlib to
24-bit, and fixes qiv Bug #41056 for me.

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

-- 
imlib1 does not correctly handle 32-bit visuals
https://launchpad.net/bugs/70367

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


[Bug 70367] Re: imlib1 does not correctly handle 32-bit visuals

2006-11-04 Thread BernardB

** Attachment added: "Restrict imlib to 24bpp"
   http://librarian.launchpad.net/4966410/imlib-max-24bpp.diff

-- 
imlib1 does not correctly handle 32-bit visuals
https://launchpad.net/bugs/70367

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


[Bug 41056] Re: qiv fails to start: Gdk-ERROR **: BadMatch (invalid parameter attributes)

2006-11-04 Thread BernardB
I just filed Bug #70367 with a patch for imlib, which I believe is the
root cause of this qiv bug.

It doesn't look like the xmms or the flashplugin-nonfree bugs are caused
by imlib though. However the imlib fix should hopefully resolve other
bugs that haven't been reported yet.

-- 
qiv fails to start: Gdk-ERROR **: BadMatch (invalid parameter attributes)
https://launchpad.net/bugs/41056

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


[Bug 63144] Re: Clicking on the double size button crashes XMMS

2006-11-04 Thread BernardB
This patch makes XMMS choose a visual with the same colour depth as the
original image for the doublesized version. Works for me(tm).

** Attachment added: "Make XMMS choose a sane visual for doublesizing"
   http://librarian.launchpad.net/4966413/xmms-fix.diff

-- 
Clicking on the double size button crashes XMMS
https://launchpad.net/bugs/63144

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


[Bug 34220] Re: gnome-breakout crashes on startup

2006-11-04 Thread BernardB
This bug is fixed by the patch to gdk-imlib in Bug #70367.

Setting the XLIB_SKIP_ARGB_VISUALS=1 environment variable should also
make gnome-breakout start cleanly.

-- 
gnome-breakout crashes on startup
https://launchpad.net/bugs/34220

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


[Bug 66242] Re: crash on launch

2006-11-06 Thread BernardB
Awesome! Thanks John! Hopefully the Ubuntu guys will pick it up shortly.

-- 
crash on launch
https://launchpad.net/bugs/66242

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


[Bug 70367] Re: imlib1 does not correctly handle 32-bit visuals

2007-04-28 Thread BernardB
Well has anybody tried the patch I posted when I filed this bug?

I can still reproduce the bug on fiesty too without the patch, and I can
still verify that if I apply this patch to gdk-imlib11, rebuild and
install the resulting gdk-imlib11 package, the bug is fixed.

-- 
imlib1 does not correctly handle 32-bit visuals
https://bugs.launchpad.net/bugs/70367
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 293376] [NEW] Thinkpad T60 volume down button stops music

2008-11-03 Thread BernardB
Public bug reported:

Since upgrading to intrepid, the volume down button now stops Rhythmbox
from playing. It also happens to turn down the volume as well. It worked
fine in edgy, feisty, gusty and hardy and only broke in the upgrade to
intrepid.

If I open Preferences -> Keyboard Shortcuts, and try to reassign Volume
down by clicking on "Volume down" and pressing the volume down key when
it says "New shortcut...", the shortcut is assigned to "XF86AudioStop".
Similarly, if I press the stop key (Fn+Up arrow on this laptop), it also
sends XF86AudioStop.

Similarly, the volume up key sends "XF86AudioRewind", and the mute key
"XF86ScreenSaver". All the keys still perform their expected function,
but the volume down key specifically also stops rhythmbox.

The real Stop/Prev/Next/Play keys send the correct event and work as
intended.

I've attached my xmodmap and the outputs from xev on pressing each of
the keys.

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
Thinkpad T60 volume down button stops music
https://bugs.launchpad.net/bugs/293376
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 293376] Re: Thinkpad T60 volume down button stops music

2008-11-03 Thread BernardB

** Attachment added: "xmodmap -pk output"
   http://launchpadlibrarian.net/19312381/xmodmap-pk.txt

-- 
Thinkpad T60 volume down button stops music
https://bugs.launchpad.net/bugs/293376
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 293376] Re: Thinkpad T60 volume down button stops music

2008-11-03 Thread BernardB

** Attachment added: "xev output for Mute, VolDown, VolUp, Stop, Prev, Play and 
Next keys"
   http://launchpadlibrarian.net/19312718/xev.txt

-- 
Thinkpad T60 volume down button stops music
https://bugs.launchpad.net/bugs/293376
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 276561] Re: hamster-applet crashed when clicking on "Edit activity"

2008-09-30 Thread BernardB
*** This bug is a duplicate of bug 263470 ***
https://bugs.launchpad.net/bugs/263470

Urgh. FYI, my username is "b", which is why the backtrace has so many
spurious "username" references in it. Perhaps apport should be a bit
more selective about anonymizing data...

-- 
hamster-applet crashed when clicking on "Edit activity"
https://bugs.launchpad.net/bugs/276561
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 261776] Re: hamster-applet crashed with TypeError in get_pos()

2008-09-30 Thread BernardB
I also could reproduce this exact backtrace when I first upgraded to
Intrepid and installed this applet, under similar circumstances. (Not
entirely reproducible, but clicking on buttons in the applet would often
cause it to crash). It's not doing it today though, having restarted my
machine. Not much of a data point, sorry.

-- 
hamster-applet crashed with TypeError in get_pos()
https://bugs.launchpad.net/bugs/261776
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 227252] Re: The generated binaries always crash

2008-09-24 Thread BernardB
Some mmap restrictions recently went into the kernel to help mitigate
null-pointer deref bugs and other classes of exploits.

Running sudo sh -c 'echo 4096 > /proc/sys/vm/mmap_min_addr' should allow
cryopid to get past this stumbling block.

Alternately, the resumer code should be put at a higher address. Ubuntu
ships with a default mmap_min_addr of 64K (0x1). It shouldn't hurt
to put the resumer there instead.

-- 
The generated binaries always crash
https://bugs.launchpad.net/bugs/227252
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 227252] Re: The generated binaries always crash

2008-09-24 Thread BernardB
Some mmap restrictions recently went into the kernel to help mitigate
null-pointer deref bugs and other classes of exploits.

Running sudo sh -c 'echo 4096 > /proc/sys/vm/mmap_min_addr' should allow
cryopid to get past this stumbling block.

Alternately, the resumer code should be put at a higher address. Ubuntu
ships with a default mmap_min_addr of 64K (0x1). It shouldn't hurt
to put the resumer there instead.

-- 
The generated binaries always crash
https://bugs.launchpad.net/bugs/227252
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 276561] Re: hamster-applet crashed when clicking on "Edit activity"

2008-09-30 Thread BernardB
*** This bug is a duplicate of bug 263470 ***
https://bugs.launchpad.net/bugs/263470

Urgh. FYI, my username is "b", which is why the backtrace has so many
spurious "username" references in it. Perhaps apport should be a bit
more selective about anonymizing data...

-- 
hamster-applet crashed when clicking on "Edit activity"
https://bugs.launchpad.net/bugs/276561
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 261776] Re: hamster-applet crashed with TypeError in get_pos()

2008-09-30 Thread BernardB
I also could reproduce this exact backtrace when I first upgraded to
Intrepid and installed this applet, under similar circumstances. (Not
entirely reproducible, but clicking on buttons in the applet would often
cause it to crash). It's not doing it today though, having restarted my
machine. Not much of a data point, sorry.

-- 
hamster-applet crashed with TypeError in get_pos()
https://bugs.launchpad.net/bugs/261776
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 23768] Re: /usr/bin/cpufreq-selector should have different access permissions

2006-06-12 Thread BernardB
Entries in /sys can be chown'd and chmod'd:

Perhaps /sys/devices/system/cpu/cpu*/cpufreq/* could be chgrp'd to admin
and chmod'd 664 on boot? (And cpufreq selector made to just test if it
can write to the files it needs before complaining). In fact, it's
really just a handful of files that need chmod'ing, not the entire
directory.

No suid root need.

Although perhaps we want some scripts to run in order to do this
chmodding when CPUs are hotplugged too ;)

-- 
/usr/bin/cpufreq-selector should have different access permissions
https://launchpad.net/bugs/23768

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


[Bug 66242] Re: crash on launch

2006-10-30 Thread BernardB
I have a similar crash on startup with the exiting of
update_cursor_values() failing a stack smashing check. There's a
temporary buffer which isn't made big enough. This patch expands the
size of the buffer to 512 bytes and makes sure we don't overrun. However
it doesn't do anything in the case when it does overrun.

** Attachment added: "Fix to expand the temp buffer and not overrun it."
   http://librarian.launchpad.net/4940683/linsmith-fix.diff

-- 
crash on launch
https://launchpad.net/bugs/66242

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


[Bug 41056] Re: qiv fails to start: Gdk-ERROR **: BadMatch (invalid parameter attributes)

2006-11-03 Thread BernardB
AFAICT, it's a bug with imlib1 and the X compositing extension. (see
http://xorg.freedesktop.org/archive/X11R6.8.0/doc/RELNOTES5.html#40)

A temporary workaround might be to always force the environment
variable, ala the attached patch. (works for me(tm)).

** Attachment added: "Hacky fix for qiv."
   http://librarian.launchpad.net/4960706/qiv-hack.diff

-- 
qiv fails to start: Gdk-ERROR **: BadMatch (invalid parameter attributes)
https://launchpad.net/bugs/41056

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


[Bug 70367] imlib1 does not correctly handle 32-bit visuals

2006-11-04 Thread BernardB
Public bug reported:

With the compositing extension turned on in the X server, some
applications linked with gdk-imlib1 crash with a "Gdk-ERROR: BadMatch"
when 32-bit and 24-bit visuals are combined.  Enabling
"XLIB_SKIP_ARGB_VISUALS=1" in the environment prevents xlib from
informing imlib about 32-bit visuals. However, if imlib can't support
32-bit visuals, then it shouldn't attempt to use them in the first
place. (I'm not certain that imlib doesn't support 32-bit visuals, but a
brief trawl through the code doesn't suggest that it does).

This is the root cause of qiv Bug #41056 and possibly other apps linked
with imlib1/gdk-imlib1.

The attached patch for imlib1 caps the maximum depth used by imlib to
24-bit, and fixes qiv Bug #41056 for me.

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

-- 
imlib1 does not correctly handle 32-bit visuals
https://launchpad.net/bugs/70367

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


[Bug 70367] Re: imlib1 does not correctly handle 32-bit visuals

2006-11-04 Thread BernardB

** Attachment added: "Restrict imlib to 24bpp"
   http://librarian.launchpad.net/4966410/imlib-max-24bpp.diff

-- 
imlib1 does not correctly handle 32-bit visuals
https://launchpad.net/bugs/70367

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


[Bug 41056] Re: qiv fails to start: Gdk-ERROR **: BadMatch (invalid parameter attributes)

2006-11-04 Thread BernardB
I just filed Bug #70367 with a patch for imlib, which I believe is the
root cause of this qiv bug.

It doesn't look like the xmms or the flashplugin-nonfree bugs are caused
by imlib though. However the imlib fix should hopefully resolve other
bugs that haven't been reported yet.

-- 
qiv fails to start: Gdk-ERROR **: BadMatch (invalid parameter attributes)
https://launchpad.net/bugs/41056

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


[Bug 63144] Re: Clicking on the double size button crashes XMMS

2006-11-04 Thread BernardB
This patch makes XMMS choose a visual with the same colour depth as the
original image for the doublesized version. Works for me(tm).

** Attachment added: "Make XMMS choose a sane visual for doublesizing"
   http://librarian.launchpad.net/4966413/xmms-fix.diff

-- 
Clicking on the double size button crashes XMMS
https://launchpad.net/bugs/63144

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


[Bug 34220] Re: gnome-breakout crashes on startup

2006-11-04 Thread BernardB
This bug is fixed by the patch to gdk-imlib in Bug #70367.

Setting the XLIB_SKIP_ARGB_VISUALS=1 environment variable should also
make gnome-breakout start cleanly.

-- 
gnome-breakout crashes on startup
https://launchpad.net/bugs/34220

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


[Bug 66242] Re: crash on launch

2006-11-06 Thread BernardB
Awesome! Thanks John! Hopefully the Ubuntu guys will pick it up shortly.

-- 
crash on launch
https://launchpad.net/bugs/66242

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


[Bug 70367] Re: imlib1 does not correctly handle 32-bit visuals

2007-04-28 Thread BernardB
Well has anybody tried the patch I posted when I filed this bug?

I can still reproduce the bug on fiesty too without the patch, and I can
still verify that if I apply this patch to gdk-imlib11, rebuild and
install the resulting gdk-imlib11 package, the bug is fixed.

-- 
imlib1 does not correctly handle 32-bit visuals
https://bugs.launchpad.net/bugs/70367
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 293376] [NEW] Thinkpad T60 volume down button stops music

2008-11-03 Thread BernardB
Public bug reported:

Since upgrading to intrepid, the volume down button now stops Rhythmbox
from playing. It also happens to turn down the volume as well. It worked
fine in edgy, feisty, gusty and hardy and only broke in the upgrade to
intrepid.

If I open Preferences -> Keyboard Shortcuts, and try to reassign Volume
down by clicking on "Volume down" and pressing the volume down key when
it says "New shortcut...", the shortcut is assigned to "XF86AudioStop".
Similarly, if I press the stop key (Fn+Up arrow on this laptop), it also
sends XF86AudioStop.

Similarly, the volume up key sends "XF86AudioRewind", and the mute key
"XF86ScreenSaver". All the keys still perform their expected function,
but the volume down key specifically also stops rhythmbox.

The real Stop/Prev/Next/Play keys send the correct event and work as
intended.

I've attached my xmodmap and the outputs from xev on pressing each of
the keys.

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
Thinkpad T60 volume down button stops music
https://bugs.launchpad.net/bugs/293376
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 293376] Re: Thinkpad T60 volume down button stops music

2008-11-03 Thread BernardB

** Attachment added: "xmodmap -pk output"
   http://launchpadlibrarian.net/19312381/xmodmap-pk.txt

-- 
Thinkpad T60 volume down button stops music
https://bugs.launchpad.net/bugs/293376
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 293376] Re: Thinkpad T60 volume down button stops music

2008-11-03 Thread BernardB

** Attachment added: "xev output for Mute, VolDown, VolUp, Stop, Prev, Play and 
Next keys"
   http://launchpadlibrarian.net/19312718/xev.txt

-- 
Thinkpad T60 volume down button stops music
https://bugs.launchpad.net/bugs/293376
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 297422] Re: bcm4328 wireless unstable with wl driver

2009-01-30 Thread BernardB
I have a Dell Studio Hybrid with the same BCM4328 and suffered similar
issues with the wl driver. The killer for me was that wireless would
simply drop out for minutes at a time, then come back.

I grabbed the latest Broadcom driver (5.10.27.14) and dropped it into
linux-restricted-modules-2.6.27-11 and rebuilt. It appears that this
driver does not cause the drop outs any more. It still seems to miss
some beats when streaming at high bitrates, but nowhere near as bad as
it used to be.

-- 
bcm4328 wireless unstable with wl driver
https://bugs.launchpad.net/bugs/297422
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 227252] Re: The generated binaries always crash

2009-01-30 Thread BernardB
In addition to the mmap_min_addr change above, you also need to set
/proc/sys/vm/vdso_enabled to either 0 (no vDSO) or 2 (compatibility vDSO
mode - mapping to 0x). I'd recommend setting it to 2 for
performance.

The default is 1 which maps the vDSO page somewhere in the user
process's address space, and that's not being restored correctly. I'm
not entirely sure what it's unhappy about it still, but at least this
suffice as a workaround for now. (Additionally, you can actually save a
image with the default of vdso_enabled=1, so long as you restore it with
vdso_enabled=2).

-- 
The generated binaries always crash
https://bugs.launchpad.net/bugs/227252
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 310629] Re: No systemwide network settings

2009-01-22 Thread BernardB
I hit this problem also with intrepid. As a temporary workaround, as
mentioned on the link
http://ubuntuforums.org/archive/index.php/t-984104.html you need to:

(1) uncheck "Automatically connect"
(2) check "System setting"
(3) check "Automatically connect"
(4) click Ok

-- 
No systemwide network settings
https://bugs.launchpad.net/bugs/310629
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 23768] Re: /usr/bin/cpufreq-selector should have different access permissions

2006-06-12 Thread BernardB
Entries in /sys can be chown'd and chmod'd:

Perhaps /sys/devices/system/cpu/cpu*/cpufreq/* could be chgrp'd to admin
and chmod'd 664 on boot? (And cpufreq selector made to just test if it
can write to the files it needs before complaining). In fact, it's
really just a handful of files that need chmod'ing, not the entire
directory.

No suid root need.

Although perhaps we want some scripts to run in order to do this
chmodding when CPUs are hotplugged too ;)

-- 
/usr/bin/cpufreq-selector should have different access permissions
https://launchpad.net/bugs/23768

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


[Bug 293376] Re: Thinkpad T60 volume down button stops music

2009-05-11 Thread BernardB
This bug has been fixed in upgrading to Jaunty.

All the special keys do precisely what they're supposed to.


** Changed in: xserver-xorg-input-evdev (Ubuntu)
   Status: New => Fix Released

-- 
Thinkpad T60 volume down button stops music
https://bugs.launchpad.net/bugs/293376
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 297422] Re: bcm4328 wireless unstable with wl driver

2009-01-30 Thread BernardB
I have a Dell Studio Hybrid with the same BCM4328 and suffered similar
issues with the wl driver. The killer for me was that wireless would
simply drop out for minutes at a time, then come back.

I grabbed the latest Broadcom driver (5.10.27.14) and dropped it into
linux-restricted-modules-2.6.27-11 and rebuilt. It appears that this
driver does not cause the drop outs any more. It still seems to miss
some beats when streaming at high bitrates, but nowhere near as bad as
it used to be.

-- 
bcm4328 wireless unstable with wl driver
https://bugs.launchpad.net/bugs/297422
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 227252] Re: The generated binaries always crash

2009-01-30 Thread BernardB
In addition to the mmap_min_addr change above, you also need to set
/proc/sys/vm/vdso_enabled to either 0 (no vDSO) or 2 (compatibility vDSO
mode - mapping to 0x). I'd recommend setting it to 2 for
performance.

The default is 1 which maps the vDSO page somewhere in the user
process's address space, and that's not being restored correctly. I'm
not entirely sure what it's unhappy about it still, but at least this
suffice as a workaround for now. (Additionally, you can actually save a
image with the default of vdso_enabled=1, so long as you restore it with
vdso_enabled=2).

-- 
The generated binaries always crash
https://bugs.launchpad.net/bugs/227252
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 310629] Re: No systemwide network settings

2009-01-22 Thread BernardB
I hit this problem also with intrepid. As a temporary workaround, as
mentioned on the link
http://ubuntuforums.org/archive/index.php/t-984104.html you need to:

(1) uncheck "Automatically connect"
(2) check "System setting"
(3) check "Automatically connect"
(4) click Ok

-- 
No systemwide network settings
https://bugs.launchpad.net/bugs/310629
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 293376] Re: Thinkpad T60 volume down button stops music

2009-05-11 Thread BernardB
This bug has been fixed in upgrading to Jaunty.

All the special keys do precisely what they're supposed to.


** Changed in: xserver-xorg-input-evdev (Ubuntu)
   Status: New => Fix Released

-- 
Thinkpad T60 volume down button stops music
https://bugs.launchpad.net/bugs/293376
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 46838] Re: Cannot install turba2

2006-12-14 Thread BernardB
Are there plans for this to find its way into dapper also?

-- 
Cannot install turba2
https://launchpad.net/bugs/46838

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


[Bug 276561] Re: hamster-applet crashed when clicking on "Edit activity"

2008-09-30 Thread BernardB
*** This bug is a duplicate of bug 263470 ***
https://bugs.launchpad.net/bugs/263470

Urgh. FYI, my username is "b", which is why the backtrace has so many
spurious "username" references in it. Perhaps apport should be a bit
more selective about anonymizing data...

-- 
hamster-applet crashed when clicking on "Edit activity"
https://bugs.launchpad.net/bugs/276561
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 261776] Re: hamster-applet crashed with TypeError in get_pos()

2008-09-30 Thread BernardB
I also could reproduce this exact backtrace when I first upgraded to
Intrepid and installed this applet, under similar circumstances. (Not
entirely reproducible, but clicking on buttons in the applet would often
cause it to crash). It's not doing it today though, having restarted my
machine. Not much of a data point, sorry.

-- 
hamster-applet crashed with TypeError in get_pos()
https://bugs.launchpad.net/bugs/261776
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 227252] Re: The generated binaries always crash

2008-09-24 Thread BernardB
Some mmap restrictions recently went into the kernel to help mitigate
null-pointer deref bugs and other classes of exploits.

Running sudo sh -c 'echo 4096 > /proc/sys/vm/mmap_min_addr' should allow
cryopid to get past this stumbling block.

Alternately, the resumer code should be put at a higher address. Ubuntu
ships with a default mmap_min_addr of 64K (0x1). It shouldn't hurt
to put the resumer there instead.

-- 
The generated binaries always crash
https://bugs.launchpad.net/bugs/227252
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 46838] Re: Cannot install turba2

2006-12-14 Thread BernardB
Are there plans for this to find its way into dapper also?

-- 
Cannot install turba2
https://launchpad.net/bugs/46838

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


[Bug 70367] Re: imlib1 does not correctly handle 32-bit visuals

2007-04-28 Thread BernardB
Well has anybody tried the patch I posted when I filed this bug?

I can still reproduce the bug on fiesty too without the patch, and I can
still verify that if I apply this patch to gdk-imlib11, rebuild and
install the resulting gdk-imlib11 package, the bug is fixed.

-- 
imlib1 does not correctly handle 32-bit visuals
https://bugs.launchpad.net/bugs/70367
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 66242] Re: crash on launch

2006-10-30 Thread BernardB
I have a similar crash on startup with the exiting of
update_cursor_values() failing a stack smashing check. There's a
temporary buffer which isn't made big enough. This patch expands the
size of the buffer to 512 bytes and makes sure we don't overrun. However
it doesn't do anything in the case when it does overrun.

** Attachment added: "Fix to expand the temp buffer and not overrun it."
   http://librarian.launchpad.net/4940683/linsmith-fix.diff

-- 
crash on launch
https://launchpad.net/bugs/66242

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


[Bug 41056] Re: qiv fails to start: Gdk-ERROR **: BadMatch (invalid parameter attributes)

2006-11-03 Thread BernardB
AFAICT, it's a bug with imlib1 and the X compositing extension. (see
http://xorg.freedesktop.org/archive/X11R6.8.0/doc/RELNOTES5.html#40)

A temporary workaround might be to always force the environment
variable, ala the attached patch. (works for me(tm)).

** Attachment added: "Hacky fix for qiv."
   http://librarian.launchpad.net/4960706/qiv-hack.diff

-- 
qiv fails to start: Gdk-ERROR **: BadMatch (invalid parameter attributes)
https://launchpad.net/bugs/41056

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


[Bug 70367] imlib1 does not correctly handle 32-bit visuals

2006-11-04 Thread BernardB
Public bug reported:

With the compositing extension turned on in the X server, some
applications linked with gdk-imlib1 crash with a "Gdk-ERROR: BadMatch"
when 32-bit and 24-bit visuals are combined.  Enabling
"XLIB_SKIP_ARGB_VISUALS=1" in the environment prevents xlib from
informing imlib about 32-bit visuals. However, if imlib can't support
32-bit visuals, then it shouldn't attempt to use them in the first
place. (I'm not certain that imlib doesn't support 32-bit visuals, but a
brief trawl through the code doesn't suggest that it does).

This is the root cause of qiv Bug #41056 and possibly other apps linked
with imlib1/gdk-imlib1.

The attached patch for imlib1 caps the maximum depth used by imlib to
24-bit, and fixes qiv Bug #41056 for me.

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

-- 
imlib1 does not correctly handle 32-bit visuals
https://launchpad.net/bugs/70367

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


[Bug 70367] Re: imlib1 does not correctly handle 32-bit visuals

2006-11-04 Thread BernardB

** Attachment added: "Restrict imlib to 24bpp"
   http://librarian.launchpad.net/4966410/imlib-max-24bpp.diff

-- 
imlib1 does not correctly handle 32-bit visuals
https://launchpad.net/bugs/70367

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


[Bug 41056] Re: qiv fails to start: Gdk-ERROR **: BadMatch (invalid parameter attributes)

2006-11-04 Thread BernardB
I just filed Bug #70367 with a patch for imlib, which I believe is the
root cause of this qiv bug.

It doesn't look like the xmms or the flashplugin-nonfree bugs are caused
by imlib though. However the imlib fix should hopefully resolve other
bugs that haven't been reported yet.

-- 
qiv fails to start: Gdk-ERROR **: BadMatch (invalid parameter attributes)
https://launchpad.net/bugs/41056

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


[Bug 63144] Re: Clicking on the double size button crashes XMMS

2006-11-04 Thread BernardB
This patch makes XMMS choose a visual with the same colour depth as the
original image for the doublesized version. Works for me(tm).

** Attachment added: "Make XMMS choose a sane visual for doublesizing"
   http://librarian.launchpad.net/4966413/xmms-fix.diff

-- 
Clicking on the double size button crashes XMMS
https://launchpad.net/bugs/63144

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


[Bug 34220] Re: gnome-breakout crashes on startup

2006-11-04 Thread BernardB
This bug is fixed by the patch to gdk-imlib in Bug #70367.

Setting the XLIB_SKIP_ARGB_VISUALS=1 environment variable should also
make gnome-breakout start cleanly.

-- 
gnome-breakout crashes on startup
https://launchpad.net/bugs/34220

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


[Bug 66242] Re: crash on launch

2006-11-06 Thread BernardB
Awesome! Thanks John! Hopefully the Ubuntu guys will pick it up shortly.

-- 
crash on launch
https://launchpad.net/bugs/66242

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


[Bug 293376] [NEW] Thinkpad T60 volume down button stops music

2008-11-03 Thread BernardB
Public bug reported:

Since upgrading to intrepid, the volume down button now stops Rhythmbox
from playing. It also happens to turn down the volume as well. It worked
fine in edgy, feisty, gusty and hardy and only broke in the upgrade to
intrepid.

If I open Preferences -> Keyboard Shortcuts, and try to reassign Volume
down by clicking on "Volume down" and pressing the volume down key when
it says "New shortcut...", the shortcut is assigned to "XF86AudioStop".
Similarly, if I press the stop key (Fn+Up arrow on this laptop), it also
sends XF86AudioStop.

Similarly, the volume up key sends "XF86AudioRewind", and the mute key
"XF86ScreenSaver". All the keys still perform their expected function,
but the volume down key specifically also stops rhythmbox.

The real Stop/Prev/Next/Play keys send the correct event and work as
intended.

I've attached my xmodmap and the outputs from xev on pressing each of
the keys.

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
Thinkpad T60 volume down button stops music
https://bugs.launchpad.net/bugs/293376
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 293376] Re: Thinkpad T60 volume down button stops music

2008-11-03 Thread BernardB

** Attachment added: "xmodmap -pk output"
   http://launchpadlibrarian.net/19312381/xmodmap-pk.txt

-- 
Thinkpad T60 volume down button stops music
https://bugs.launchpad.net/bugs/293376
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 293376] Re: Thinkpad T60 volume down button stops music

2008-11-03 Thread BernardB

** Attachment added: "xev output for Mute, VolDown, VolUp, Stop, Prev, Play and 
Next keys"
   http://launchpadlibrarian.net/19312718/xev.txt

-- 
Thinkpad T60 volume down button stops music
https://bugs.launchpad.net/bugs/293376
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 23768] Re: /usr/bin/cpufreq-selector should have different access permissions

2006-06-12 Thread BernardB
Entries in /sys can be chown'd and chmod'd:

Perhaps /sys/devices/system/cpu/cpu*/cpufreq/* could be chgrp'd to admin
and chmod'd 664 on boot? (And cpufreq selector made to just test if it
can write to the files it needs before complaining). In fact, it's
really just a handful of files that need chmod'ing, not the entire
directory.

No suid root need.

Although perhaps we want some scripts to run in order to do this
chmodding when CPUs are hotplugged too ;)

-- 
/usr/bin/cpufreq-selector should have different access permissions
https://launchpad.net/bugs/23768

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


[Bug 276561] Re: hamster-applet crashed when clicking on "Edit activity"

2008-09-30 Thread BernardB
*** This bug is a duplicate of bug 263470 ***
https://bugs.launchpad.net/bugs/263470

Urgh. FYI, my username is "b", which is why the backtrace has so many
spurious "username" references in it. Perhaps apport should be a bit
more selective about anonymizing data...

-- 
hamster-applet crashed when clicking on "Edit activity"
https://bugs.launchpad.net/bugs/276561
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 261776] Re: hamster-applet crashed with TypeError in get_pos()

2008-09-30 Thread BernardB
I also could reproduce this exact backtrace when I first upgraded to
Intrepid and installed this applet, under similar circumstances. (Not
entirely reproducible, but clicking on buttons in the applet would often
cause it to crash). It's not doing it today though, having restarted my
machine. Not much of a data point, sorry.

-- 
hamster-applet crashed with TypeError in get_pos()
https://bugs.launchpad.net/bugs/261776
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 23768] Re: /usr/bin/cpufreq-selector should have different access permissions

2006-06-12 Thread BernardB
Entries in /sys can be chown'd and chmod'd:

Perhaps /sys/devices/system/cpu/cpu*/cpufreq/* could be chgrp'd to admin
and chmod'd 664 on boot? (And cpufreq selector made to just test if it
can write to the files it needs before complaining). In fact, it's
really just a handful of files that need chmod'ing, not the entire
directory.

No suid root need.

Although perhaps we want some scripts to run in order to do this
chmodding when CPUs are hotplugged too ;)

-- 
/usr/bin/cpufreq-selector should have different access permissions
https://launchpad.net/bugs/23768

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


[Bug 276561] Re: hamster-applet crashed when clicking on "Edit activity"

2008-09-30 Thread BernardB
*** This bug is a duplicate of bug 263470 ***
https://bugs.launchpad.net/bugs/263470

Urgh. FYI, my username is "b", which is why the backtrace has so many
spurious "username" references in it. Perhaps apport should be a bit
more selective about anonymizing data...

-- 
hamster-applet crashed when clicking on "Edit activity"
https://bugs.launchpad.net/bugs/276561
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 261776] Re: hamster-applet crashed with TypeError in get_pos()

2008-09-30 Thread BernardB
I also could reproduce this exact backtrace when I first upgraded to
Intrepid and installed this applet, under similar circumstances. (Not
entirely reproducible, but clicking on buttons in the applet would often
cause it to crash). It's not doing it today though, having restarted my
machine. Not much of a data point, sorry.

-- 
hamster-applet crashed with TypeError in get_pos()
https://bugs.launchpad.net/bugs/261776
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 227252] Re: The generated binaries always crash

2008-09-24 Thread BernardB
Some mmap restrictions recently went into the kernel to help mitigate
null-pointer deref bugs and other classes of exploits.

Running sudo sh -c 'echo 4096 > /proc/sys/vm/mmap_min_addr' should allow
cryopid to get past this stumbling block.

Alternately, the resumer code should be put at a higher address. Ubuntu
ships with a default mmap_min_addr of 64K (0x1). It shouldn't hurt
to put the resumer there instead.

-- 
The generated binaries always crash
https://bugs.launchpad.net/bugs/227252
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 46838] Re: Cannot install turba2

2006-12-14 Thread BernardB
Are there plans for this to find its way into dapper also?

-- 
Cannot install turba2
https://launchpad.net/bugs/46838

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


[Bug 66242] Re: crash on launch

2006-10-30 Thread BernardB
I have a similar crash on startup with the exiting of
update_cursor_values() failing a stack smashing check. There's a
temporary buffer which isn't made big enough. This patch expands the
size of the buffer to 512 bytes and makes sure we don't overrun. However
it doesn't do anything in the case when it does overrun.

** Attachment added: "Fix to expand the temp buffer and not overrun it."
   http://librarian.launchpad.net/4940683/linsmith-fix.diff

-- 
crash on launch
https://launchpad.net/bugs/66242

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


[Bug 41056] Re: qiv fails to start: Gdk-ERROR **: BadMatch (invalid parameter attributes)

2006-11-03 Thread BernardB
AFAICT, it's a bug with imlib1 and the X compositing extension. (see
http://xorg.freedesktop.org/archive/X11R6.8.0/doc/RELNOTES5.html#40)

A temporary workaround might be to always force the environment
variable, ala the attached patch. (works for me(tm)).

** Attachment added: "Hacky fix for qiv."
   http://librarian.launchpad.net/4960706/qiv-hack.diff

-- 
qiv fails to start: Gdk-ERROR **: BadMatch (invalid parameter attributes)
https://launchpad.net/bugs/41056

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


[Bug 70367] imlib1 does not correctly handle 32-bit visuals

2006-11-04 Thread BernardB
Public bug reported:

With the compositing extension turned on in the X server, some
applications linked with gdk-imlib1 crash with a "Gdk-ERROR: BadMatch"
when 32-bit and 24-bit visuals are combined.  Enabling
"XLIB_SKIP_ARGB_VISUALS=1" in the environment prevents xlib from
informing imlib about 32-bit visuals. However, if imlib can't support
32-bit visuals, then it shouldn't attempt to use them in the first
place. (I'm not certain that imlib doesn't support 32-bit visuals, but a
brief trawl through the code doesn't suggest that it does).

This is the root cause of qiv Bug #41056 and possibly other apps linked
with imlib1/gdk-imlib1.

The attached patch for imlib1 caps the maximum depth used by imlib to
24-bit, and fixes qiv Bug #41056 for me.

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

-- 
imlib1 does not correctly handle 32-bit visuals
https://launchpad.net/bugs/70367

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


[Bug 70367] Re: imlib1 does not correctly handle 32-bit visuals

2006-11-04 Thread BernardB

** Attachment added: "Restrict imlib to 24bpp"
   http://librarian.launchpad.net/4966410/imlib-max-24bpp.diff

-- 
imlib1 does not correctly handle 32-bit visuals
https://launchpad.net/bugs/70367

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


[Bug 41056] Re: qiv fails to start: Gdk-ERROR **: BadMatch (invalid parameter attributes)

2006-11-04 Thread BernardB
I just filed Bug #70367 with a patch for imlib, which I believe is the
root cause of this qiv bug.

It doesn't look like the xmms or the flashplugin-nonfree bugs are caused
by imlib though. However the imlib fix should hopefully resolve other
bugs that haven't been reported yet.

-- 
qiv fails to start: Gdk-ERROR **: BadMatch (invalid parameter attributes)
https://launchpad.net/bugs/41056

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


[Bug 63144] Re: Clicking on the double size button crashes XMMS

2006-11-04 Thread BernardB
This patch makes XMMS choose a visual with the same colour depth as the
original image for the doublesized version. Works for me(tm).

** Attachment added: "Make XMMS choose a sane visual for doublesizing"
   http://librarian.launchpad.net/4966413/xmms-fix.diff

-- 
Clicking on the double size button crashes XMMS
https://launchpad.net/bugs/63144

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


[Bug 34220] Re: gnome-breakout crashes on startup

2006-11-04 Thread BernardB
This bug is fixed by the patch to gdk-imlib in Bug #70367.

Setting the XLIB_SKIP_ARGB_VISUALS=1 environment variable should also
make gnome-breakout start cleanly.

-- 
gnome-breakout crashes on startup
https://launchpad.net/bugs/34220

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


[Bug 66242] Re: crash on launch

2006-11-06 Thread BernardB
Awesome! Thanks John! Hopefully the Ubuntu guys will pick it up shortly.

-- 
crash on launch
https://launchpad.net/bugs/66242

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


[Bug 70367] Re: imlib1 does not correctly handle 32-bit visuals

2007-04-28 Thread BernardB
Well has anybody tried the patch I posted when I filed this bug?

I can still reproduce the bug on fiesty too without the patch, and I can
still verify that if I apply this patch to gdk-imlib11, rebuild and
install the resulting gdk-imlib11 package, the bug is fixed.

-- 
imlib1 does not correctly handle 32-bit visuals
https://bugs.launchpad.net/bugs/70367
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 46838] Re: Cannot install turba2

2006-12-14 Thread BernardB
Are there plans for this to find its way into dapper also?

-- 
Cannot install turba2
https://launchpad.net/bugs/46838

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


[Bug 66242] Re: crash on launch

2006-10-30 Thread BernardB
I have a similar crash on startup with the exiting of
update_cursor_values() failing a stack smashing check. There's a
temporary buffer which isn't made big enough. This patch expands the
size of the buffer to 512 bytes and makes sure we don't overrun. However
it doesn't do anything in the case when it does overrun.

** Attachment added: "Fix to expand the temp buffer and not overrun it."
   http://librarian.launchpad.net/4940683/linsmith-fix.diff

-- 
crash on launch
https://launchpad.net/bugs/66242

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


[Bug 41056] Re: qiv fails to start: Gdk-ERROR **: BadMatch (invalid parameter attributes)

2006-11-03 Thread BernardB
AFAICT, it's a bug with imlib1 and the X compositing extension. (see
http://xorg.freedesktop.org/archive/X11R6.8.0/doc/RELNOTES5.html#40)

A temporary workaround might be to always force the environment
variable, ala the attached patch. (works for me(tm)).

** Attachment added: "Hacky fix for qiv."
   http://librarian.launchpad.net/4960706/qiv-hack.diff

-- 
qiv fails to start: Gdk-ERROR **: BadMatch (invalid parameter attributes)
https://launchpad.net/bugs/41056

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


[Bug 70367] imlib1 does not correctly handle 32-bit visuals

2006-11-04 Thread BernardB
Public bug reported:

With the compositing extension turned on in the X server, some
applications linked with gdk-imlib1 crash with a "Gdk-ERROR: BadMatch"
when 32-bit and 24-bit visuals are combined.  Enabling
"XLIB_SKIP_ARGB_VISUALS=1" in the environment prevents xlib from
informing imlib about 32-bit visuals. However, if imlib can't support
32-bit visuals, then it shouldn't attempt to use them in the first
place. (I'm not certain that imlib doesn't support 32-bit visuals, but a
brief trawl through the code doesn't suggest that it does).

This is the root cause of qiv Bug #41056 and possibly other apps linked
with imlib1/gdk-imlib1.

The attached patch for imlib1 caps the maximum depth used by imlib to
24-bit, and fixes qiv Bug #41056 for me.

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

-- 
imlib1 does not correctly handle 32-bit visuals
https://launchpad.net/bugs/70367

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


[Bug 70367] Re: imlib1 does not correctly handle 32-bit visuals

2006-11-04 Thread BernardB

** Attachment added: "Restrict imlib to 24bpp"
   http://librarian.launchpad.net/4966410/imlib-max-24bpp.diff

-- 
imlib1 does not correctly handle 32-bit visuals
https://launchpad.net/bugs/70367

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


[Bug 41056] Re: qiv fails to start: Gdk-ERROR **: BadMatch (invalid parameter attributes)

2006-11-04 Thread BernardB
I just filed Bug #70367 with a patch for imlib, which I believe is the
root cause of this qiv bug.

It doesn't look like the xmms or the flashplugin-nonfree bugs are caused
by imlib though. However the imlib fix should hopefully resolve other
bugs that haven't been reported yet.

-- 
qiv fails to start: Gdk-ERROR **: BadMatch (invalid parameter attributes)
https://launchpad.net/bugs/41056

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


[Bug 63144] Re: Clicking on the double size button crashes XMMS

2006-11-04 Thread BernardB
This patch makes XMMS choose a visual with the same colour depth as the
original image for the doublesized version. Works for me(tm).

** Attachment added: "Make XMMS choose a sane visual for doublesizing"
   http://librarian.launchpad.net/4966413/xmms-fix.diff

-- 
Clicking on the double size button crashes XMMS
https://launchpad.net/bugs/63144

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


[Bug 34220] Re: gnome-breakout crashes on startup

2006-11-04 Thread BernardB
This bug is fixed by the patch to gdk-imlib in Bug #70367.

Setting the XLIB_SKIP_ARGB_VISUALS=1 environment variable should also
make gnome-breakout start cleanly.

-- 
gnome-breakout crashes on startup
https://launchpad.net/bugs/34220

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


[Bug 66242] Re: crash on launch

2006-11-06 Thread BernardB
Awesome! Thanks John! Hopefully the Ubuntu guys will pick it up shortly.

-- 
crash on launch
https://launchpad.net/bugs/66242

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


[Bug 293376] [NEW] Thinkpad T60 volume down button stops music

2008-11-03 Thread BernardB
Public bug reported:

Since upgrading to intrepid, the volume down button now stops Rhythmbox
from playing. It also happens to turn down the volume as well. It worked
fine in edgy, feisty, gusty and hardy and only broke in the upgrade to
intrepid.

If I open Preferences -> Keyboard Shortcuts, and try to reassign Volume
down by clicking on "Volume down" and pressing the volume down key when
it says "New shortcut...", the shortcut is assigned to "XF86AudioStop".
Similarly, if I press the stop key (Fn+Up arrow on this laptop), it also
sends XF86AudioStop.

Similarly, the volume up key sends "XF86AudioRewind", and the mute key
"XF86ScreenSaver". All the keys still perform their expected function,
but the volume down key specifically also stops rhythmbox.

The real Stop/Prev/Next/Play keys send the correct event and work as
intended.

I've attached my xmodmap and the outputs from xev on pressing each of
the keys.

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
Thinkpad T60 volume down button stops music
https://bugs.launchpad.net/bugs/293376
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 293376] Re: Thinkpad T60 volume down button stops music

2008-11-03 Thread BernardB

** Attachment added: "xmodmap -pk output"
   http://launchpadlibrarian.net/19312381/xmodmap-pk.txt

-- 
Thinkpad T60 volume down button stops music
https://bugs.launchpad.net/bugs/293376
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 293376] Re: Thinkpad T60 volume down button stops music

2008-11-03 Thread BernardB

** Attachment added: "xev output for Mute, VolDown, VolUp, Stop, Prev, Play and 
Next keys"
   http://launchpadlibrarian.net/19312718/xev.txt

-- 
Thinkpad T60 volume down button stops music
https://bugs.launchpad.net/bugs/293376
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 227252] Re: The generated binaries always crash

2008-09-24 Thread BernardB
Some mmap restrictions recently went into the kernel to help mitigate
null-pointer deref bugs and other classes of exploits.

Running sudo sh -c 'echo 4096 > /proc/sys/vm/mmap_min_addr' should allow
cryopid to get past this stumbling block.

Alternately, the resumer code should be put at a higher address. Ubuntu
ships with a default mmap_min_addr of 64K (0x1). It shouldn't hurt
to put the resumer there instead.

-- 
The generated binaries always crash
https://bugs.launchpad.net/bugs/227252
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 293376] Re: Thinkpad T60 volume down button stops music

2009-05-11 Thread BernardB
This bug has been fixed in upgrading to Jaunty.

All the special keys do precisely what they're supposed to.


** Changed in: xserver-xorg-input-evdev (Ubuntu)
   Status: New => Fix Released

-- 
Thinkpad T60 volume down button stops music
https://bugs.launchpad.net/bugs/293376
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 297422] Re: bcm4328 wireless unstable with wl driver

2009-01-30 Thread BernardB
I have a Dell Studio Hybrid with the same BCM4328 and suffered similar
issues with the wl driver. The killer for me was that wireless would
simply drop out for minutes at a time, then come back.

I grabbed the latest Broadcom driver (5.10.27.14) and dropped it into
linux-restricted-modules-2.6.27-11 and rebuilt. It appears that this
driver does not cause the drop outs any more. It still seems to miss
some beats when streaming at high bitrates, but nowhere near as bad as
it used to be.

-- 
bcm4328 wireless unstable with wl driver
https://bugs.launchpad.net/bugs/297422
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 227252] Re: The generated binaries always crash

2009-01-30 Thread BernardB
In addition to the mmap_min_addr change above, you also need to set
/proc/sys/vm/vdso_enabled to either 0 (no vDSO) or 2 (compatibility vDSO
mode - mapping to 0x). I'd recommend setting it to 2 for
performance.

The default is 1 which maps the vDSO page somewhere in the user
process's address space, and that's not being restored correctly. I'm
not entirely sure what it's unhappy about it still, but at least this
suffice as a workaround for now. (Additionally, you can actually save a
image with the default of vdso_enabled=1, so long as you restore it with
vdso_enabled=2).

-- 
The generated binaries always crash
https://bugs.launchpad.net/bugs/227252
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 310629] Re: No systemwide network settings

2009-01-22 Thread BernardB
I hit this problem also with intrepid. As a temporary workaround, as
mentioned on the link
http://ubuntuforums.org/archive/index.php/t-984104.html you need to:

(1) uncheck "Automatically connect"
(2) check "System setting"
(3) check "Automatically connect"
(4) click Ok

-- 
No systemwide network settings
https://bugs.launchpad.net/bugs/310629
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 23768] Re: /usr/bin/cpufreq-selector should have different access permissions

2006-06-12 Thread BernardB
Entries in /sys can be chown'd and chmod'd:

Perhaps /sys/devices/system/cpu/cpu*/cpufreq/* could be chgrp'd to admin
and chmod'd 664 on boot? (And cpufreq selector made to just test if it
can write to the files it needs before complaining). In fact, it's
really just a handful of files that need chmod'ing, not the entire
directory.

No suid root need.

Although perhaps we want some scripts to run in order to do this
chmodding when CPUs are hotplugged too ;)

-- 
/usr/bin/cpufreq-selector should have different access permissions
https://launchpad.net/bugs/23768

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


[Bug 293376] Re: Thinkpad T60 volume down button stops music

2009-05-11 Thread BernardB
This bug has been fixed in upgrading to Jaunty.

All the special keys do precisely what they're supposed to.


** Changed in: xserver-xorg-input-evdev (Ubuntu)
   Status: New => Fix Released

-- 
Thinkpad T60 volume down button stops music
https://bugs.launchpad.net/bugs/293376
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 297422] Re: bcm4328 wireless unstable with wl driver

2009-01-30 Thread BernardB
I have a Dell Studio Hybrid with the same BCM4328 and suffered similar
issues with the wl driver. The killer for me was that wireless would
simply drop out for minutes at a time, then come back.

I grabbed the latest Broadcom driver (5.10.27.14) and dropped it into
linux-restricted-modules-2.6.27-11 and rebuilt. It appears that this
driver does not cause the drop outs any more. It still seems to miss
some beats when streaming at high bitrates, but nowhere near as bad as
it used to be.

-- 
bcm4328 wireless unstable with wl driver
https://bugs.launchpad.net/bugs/297422
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


  1   2   >