[Bug 379314] Re: Sync xserver-xorg-input-vmmouse 1:12.6.4-1 (universe) from Debian unstable (main).

2009-05-21 Thread Timo Aaltonen
** Changed in: xserver-xorg-input-vmmouse (Ubuntu)
   Importance: Undecided => Wishlist

** Changed in: xserver-xorg-input-vmmouse (Ubuntu)
   Status: New => Confirmed

-- 
Sync xserver-xorg-input-vmmouse 1:12.6.4-1 (universe) from Debian unstable 
(main).
https://bugs.launchpad.net/bugs/379314
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 373617] Re: [needs-packaging] festival-ru should be available

2009-05-21 Thread Rail Aliev
Sergey,

Seems like Debian already has this package in stable and testing, but with a 
different name.
http://packages.debian.org/source/sid/festvox-ru

AFAIK, it will be synced from Debian (semi) automatically before Debian
Import Freeze (https://wiki.ubuntu.com/KarmicReleaseSchedule). Otherwise
you need to file sync request  (requestsync from ubuntu-dev-tools).

-- 
[needs-packaging] festival-ru should be available
https://bugs.launchpad.net/bugs/373617
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 379313] Re: Handling NextWindow Touchscreen (multitouch)

2009-05-21 Thread Jamie Lennox

** Attachment added: "Dependencies.txt"
   http://launchpadlibrarian.net/27042157/Dependencies.txt

** Attachment added: "LsHal.txt"
   http://launchpadlibrarian.net/27042158/LsHal.txt

** Attachment added: "LsMod.txt"
   http://launchpadlibrarian.net/27042160/LsMod.txt

** Attachment added: "LsPci.txt"
   http://launchpadlibrarian.net/27042161/LsPci.txt

** Attachment added: "XorgConf.txt"
   http://launchpadlibrarian.net/27042162/XorgConf.txt

** Attachment added: "XorgLog.txt"
   http://launchpadlibrarian.net/27042163/XorgLog.txt

** Attachment added: "XorgLogOld.txt"
   http://launchpadlibrarian.net/27042164/XorgLogOld.txt

** Attachment added: "Xrandr.txt"
   http://launchpadlibrarian.net/27042165/Xrandr.txt

** Attachment added: "glxinfo.txt"
   http://launchpadlibrarian.net/27042166/glxinfo.txt

** Attachment added: "setxkbmap.txt"
   http://launchpadlibrarian.net/27042167/setxkbmap.txt

** Attachment added: "system.txt"
   http://launchpadlibrarian.net/27042168/system.txt

** Attachment added: "xdpyinfo.txt"
   http://launchpadlibrarian.net/27042169/xdpyinfo.txt

** Attachment added: "xkbcomp.txt"
   http://launchpadlibrarian.net/27042170/xkbcomp.txt

-- 
Handling NextWindow Touchscreen (multitouch)
https://bugs.launchpad.net/bugs/379313
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 379313] [NEW] Handling NextWindow Touchscreen (multitouch)

2009-05-21 Thread Jamie Lennox
Public bug reported:

Binary package hint: xserver-xorg-input-evdev

Ubuntu 9.04/8.10 and probably other.

The NextWindow touch screen is used on the HP TouchSmart systems however
doesn't work out of the box on 8.10 or 9.04.

Firstly it is allocated to a synaptic touchpad driver initially which is
wrong, but can be overcome with the appropriate HAL fdi to change to
evdev.

Secondly (and this is a most likely a problem of either the hardware or
X), it reports X, Y values using ABS_RX, ABS_Z rather than the expected
ABS_X, ABS_Y. The evtouch driver will work because it accepts these as
alternatives.

Lastly, because the system is multi-touch aware it reports to the
xserver that it has buttons. This causes it to be misclassified by evdev
as a touchpad rather than a touchscreen.

The following patch fixes the problem for me but is obviously not a
general solution. This is against packaged version 1:2.1.1-1ubuntu4:

--- src/evdev.c.orig2010-05-22 16:08:14.0 +1000
+++ src/evdev.c 2009-05-22 16:09:30.0 +1000
@@ -382,10 +382,12 @@
 
case EV_ABS:
switch (ev.code) {
+case ABS_Z:
case ABS_X:
pEvdev->abs_x = value;
abs = 1;
break;
+case ABS_RX:
case ABS_Y:
pEvdev->abs_y = value;
abs = 1;
@@ -1368,11 +1370,11 @@
 xf86Msg(X_INFO, "%s: Found x and y absolute axes\n", pInfo->name);
pEvdev->flags |= EVDEV_ABSOLUTE_EVENTS;
if (TestBit(BTN_TOUCH, key_bitmask)) {
-if (num_buttons) {
+/*  if (num_buttons) {
 xf86Msg(X_INFO, "%s: Found absolute touchpad\n", pInfo->name);
 pEvdev->flags |= EVDEV_TOUCHPAD;
 pEvdev->old_x = pEvdev->old_y = -1;
-} else {
+} else */ {
 xf86Msg(X_INFO, "%s: Found absolute touchscreen\n", 
pInfo->name);
 pEvdev->flags |= EVDEV_TOUCHSCREEN;
 pEvdev->flags |= EVDEV_BUTTON_EVENTS;

ProblemType: Bug
Architecture: amd64
DistroRelease: Ubuntu 9.04
NonfreeKernelModules: nvidia
Package: xserver-xorg-input-evdev 1:2.1.1-1ubuntu4 [modified: 
usr/lib/xorg/modules/input/evdev_drv.so]
ProcEnviron:
 LANG=en_AU.UTF-8
 SHELL=/bin/bash
ProcVersion: Linux version 2.6.28-11-generic (bui...@crested) (gcc version 
4.3.3 (Ubuntu 4.3.3-5ubuntu4) ) #42-Ubuntu SMP Fri Apr 17 01:58:03 UTC 2009
SourcePackage: xserver-xorg-input-evdev
Uname: Linux 2.6.28-11-generic x86_64

** Affects: xserver-xorg-input-evdev (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug

-- 
Handling NextWindow Touchscreen (multitouch)
https://bugs.launchpad.net/bugs/379313
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 242512] Re: Firefox shipped with Ubuntu freezes with Google Toolbar

2009-05-21 Thread Micah Gersten
Does this happen with the latest version of Firefox and the Google
Toolbar?  Bug #135110 is showing as Fix Released.

** Changed in: firefox-3.0 (Ubuntu)
   Status: Confirmed => Incomplete

-- 
Firefox shipped with Ubuntu freezes with Google Toolbar
https://bugs.launchpad.net/bugs/242512
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 335662] Re: [jaunty] hplip status service cannot find system tray

2009-05-21 Thread Lukáš Zapletal
Same here. The really big problem is that GNOME does not allow me to
login when this error occurs.

After several restarts its always OK. The error appears SOMETIMES. Using
upgraded Ubuntu 9.04.

Do you have clean Ubuntu installs or upgrades?

-- 
[jaunty] hplip status service cannot find system tray
https://bugs.launchpad.net/bugs/335662
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 371865] Re: xorg freezes with -nvidia (same with -fglrx)

2009-05-21 Thread Šarūnas
Hi,

got my ATI back.. now, with new flgrx, the problem is gone.

as for nvidia - it is possible that the card itself is corrupted - I had
some problems later even with nv module as described in here
http://www.linuxquestions.org/questions/linux-hardware-18/freeze-with-
horizontal-lines-while-loading-xorg-726693/

it was just strange to see the same problem with two different cards..

or maybe some driver parts were left ?? like xgl module from different
versions ??

Sorry for disturbing and thank you for your interest :)

-- 
xorg freezes with -nvidia (same with -fglrx)
https://bugs.launchpad.net/bugs/371865
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 367318] Re: in VT, screen not being saved (vcsa permission problem to blame)

2009-05-21 Thread Shentino
** Description changed:

  Binary package hint: mc
  
  Release:  Jaunty Jackalope
  Version of MC:  Current as of apr 26, 2009
  Expected:
  
- MC able to save and restore the shell screen
+ MC able to save and restore the subshell screen
  
  Actual:
  
  MC blanks out
  
- Detail:
+ To reproduce:
  
- When on a virtual console,
+ Log into vt 1 (/dev/tty1)
+ Start mc, then use C-o to switch to the subshell.  Observe that the 
screen is blanked.
+ Exit mc
+ sudo chown you:you /dev/vcsa1 # this is the workaround
+ Start mc again
+ Use C-o to switch to the subshell and notice that the subshell screen is 
now properly saved and restored
  
- Using control-O to flip between MC and the subshell causes the screen to
- be erased.
+ User's diagnosis:
  
- Diagnosis:
+ For some reason /dev/vcsa* permissions aren't being properly set up when
+ a user logs in on a virtual console.
  
- The problem is that for some reason a vc login isn't granting the appropriate 
permissions on /dev/vcs*
- Which in turn means that mc is unable to read /dev/vcsa*
- 
- Kludgy workaround:
- 
- I wrote a suid-root C program to grant world rwx to /dev/vcs* every time
- I log in on VC.
- 
- Changing the files so that the user has read/write permission to
- /dev/vcsa* solves the problem.  I suspect that mc is a victim of a bug
- elsewhere that fails to grant a console user the appropriate permissions
- /dev/vcs* upon a login.
+ I move that this be considered a bug for which mc is a victim.
  
  ProblemType: Bug
  Architecture: i386
  DistroRelease: Ubuntu 9.04
  NonfreeKernelModules: nvidia
  Package: mc 2:4.6.2~git20080311-4ubuntu1
  ProcEnviron:
   PATH=(custom, user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: mc
  Uname: Linux 2.6.28-11-generic i686

-- 
in VT, screen not being saved (vcsa permission problem to blame)
https://bugs.launchpad.net/bugs/367318
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 379308] [NEW] Firefox 3.5: Could not find compatible GRE between version 1.9.1b5pre and 1.9.1b5pre

2009-05-21 Thread useResa
Public bug reported:

Binary package hint: firefox-3.5

I am using the daily built of Firefox 3.5 in Intrepid and for this I am using 
the following repositories:
deb http://ppa.launchpad.net/ubuntu-mozilla-daily/ppa/ubuntu intrepid main
deb-src http://ppa.launchpad.net/ubuntu-mozilla-daily/ppa/ubuntu intrepid main

As of today's update Firefox 3.5 did not start anymore and when starting from 
terminal I received the following error:
Could not find compatible GRE between version 1.9.1b5pre and 1.9.1b5pre.

Based on the earlier reported bug #353660 I assume that the issue may be again 
in the xulrunner update, however I am not sure. The versions installed are:
Firefox 3.5: 3.5~b5~hg20090520r25565+nobinonly-0ubuntu1~umd1~intrepid
Xulrunner 1.9.1: 1.9.1~hg20090521r25682+nobinonly-0ubuntu1~umd1~intrepid

Let me know if more information is required

** Affects: firefox-3.5 (Ubuntu)
 Importance: Undecided
 Status: New

-- 
Firefox 3.5: Could not find compatible GRE between version 1.9.1b5pre and 
1.9.1b5pre
https://bugs.launchpad.net/bugs/379308
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 379096] Re: Ath9k: Signal drops to 0% on connection to AP after a few seconds, drops connection.

2009-05-21 Thread mozclub
** Package changed: ubuntu => linux (Ubuntu)

-- 
Ath9k: Signal drops to 0% on connection to AP after a few seconds, drops 
connection.
https://bugs.launchpad.net/bugs/379096
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 379131] Re: continual problems with wi-fi connection but not wireless

2009-05-21 Thread mozclub
** Package changed: ubuntu => linux (Ubuntu)

-- 
continual problems with wi-fi connection but not wireless
https://bugs.launchpad.net/bugs/379131
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 367414] Re: Internal speaker loud shut down beep

2009-05-21 Thread Roman Polach
*** This bug is a duplicate of bug 331589 ***
https://bugs.launchpad.net/bugs/331589

This bug describes two problems:
1) the beep is very loud - this is bug https://bugs.launchpad.net/bugs/331589
2) the shutdown provides a beep - this is bug 
https://bugs.launchpad.net/ubuntu/+source/gnome-session/+bug/290204

-- 
Internal speaker loud shut down beep
https://bugs.launchpad.net/bugs/367414
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 379195] Re: update-manager

2009-05-21 Thread mozclub
** Package changed: ubuntu => update-manager (Ubuntu)

-- 
update-manager
https://bugs.launchpad.net/bugs/379195
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 379229] Re: cant find the right screen resolution at display preferences after installing ubunto version 9.04

2009-05-21 Thread mozclub
** Package changed: ubuntu => xorg (Ubuntu)

-- 
cant find the right screen resolution at display preferences after installing 
ubunto version 9.04
https://bugs.launchpad.net/bugs/379229
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 379203] Re: touchpad tap-to-click doesn't works after update to karmic from jaunty

2009-05-21 Thread mozclub
** Package changed: ubuntu => linux (Ubuntu)

-- 
touchpad tap-to-click doesn't works after update to karmic from jaunty
https://bugs.launchpad.net/bugs/379203
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 379220] Re: gnome-mplayer broke front audio

2009-05-21 Thread mozclub
** Package changed: ubuntu => alsa-driver (Ubuntu)

-- 
gnome-mplayer broke front audio
https://bugs.launchpad.net/bugs/379220
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 379241] Re: ubuntu9.10, press on touchpad not work, have to press left and right key aside of the touchpad

2009-05-21 Thread mozclub
** Package changed: ubuntu => linux (Ubuntu)

-- 
ubuntu9.10,press on touchpad not work,have to press left and right key aside of 
the touchpad
https://bugs.launchpad.net/bugs/379241
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 379306] Re: package xkb-data 1.3-2ubuntu4.2 failed to install/upgrade: trying to overwrite `/usr/share/X11/xkb/symbols/mm', which is also in package zawgyi-keyboard

2009-05-21 Thread hninyu

** Attachment added: "DpkgTerminalLog.txt"
   http://launchpadlibrarian.net/27041326/DpkgTerminalLog.txt

** Attachment added: "LsMod.txt"
   http://launchpadlibrarian.net/27041327/LsMod.txt

** Attachment added: "LsPci.txt"
   http://launchpadlibrarian.net/27041328/LsPci.txt

** Attachment added: "XorgConf.txt"
   http://launchpadlibrarian.net/27041329/XorgConf.txt

** Attachment added: "XorgLog.txt"
   http://launchpadlibrarian.net/27041330/XorgLog.txt

** Attachment added: "XorgLogOld.txt"
   http://launchpadlibrarian.net/27041331/XorgLogOld.txt

** Attachment added: "Xrandr.txt"
   http://launchpadlibrarian.net/27041332/Xrandr.txt

** Attachment added: "setxkbmap.txt"
   http://launchpadlibrarian.net/27041333/setxkbmap.txt

** Attachment added: "xdpyinfo.txt"
   http://launchpadlibrarian.net/27041334/xdpyinfo.txt

-- 
package xkb-data 1.3-2ubuntu4.2 failed to install/upgrade: trying to overwrite 
`/usr/share/X11/xkb/symbols/mm', which is also in package zawgyi-keyboard
https://bugs.launchpad.net/bugs/379306
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 379307] [NEW] Update to 9.04 Desktop failure

2009-05-21 Thread Victor Sadovsky
Public bug reported:

I've tried to update installed packages to new ones (to v. 9.04 Desktop)
and  failed.

ProblemType: Package
Architecture: i386
Date: Fri May 22 09:54:56 2009
DistroRelease: Ubuntu 8.04
ErrorMessage: проблемы зависимостей -- оставляем не настроенным
Package: linux-ubuntu-modules-2.6.24-23-generic 2.6.24-23.37
PackageArchitecture: i386
SourcePackage: linux-ubuntu-modules-2.6.24
Title: package linux-ubuntu-modules-2.6.24-23-generic 2.6.24-23.37 failed to 
install/upgrade: проблемы зависимостей -- оставляем не настроенным
Uname: Linux 2.6.24-22-generic i686

** Affects: linux-ubuntu-modules-2.6.24 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package

-- 
Update to 9.04 Desktop failure
https://bugs.launchpad.net/bugs/379307
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 379306] [NEW] package xkb-data 1.3-2ubuntu4.2 failed to install/upgrade: trying to overwrite `/usr/share/X11/xkb/symbols/mm', which is also in package zawgyi-keyboard

2009-05-21 Thread hninyu
Public bug reported:

Binary package hint: xkeyboard-config

I couldn't update this package!!!

ProblemType: Package
Architecture: i386
Dependencies:
 
DistroRelease: Ubuntu 8.10
ErrorMessage: trying to overwrite `/usr/share/X11/xkb/symbols/mm', which is 
also in package zawgyi-keyboard
Package: xkb-data 1.3-2ubuntu4.2
PackageArchitecture: all
ProcVersion: Linux version 2.6.27-11-generic (bui...@vernadsky) (gcc version 
4.3.2 (Ubuntu 4.3.2-1ubuntu11) ) #1 SMP Wed Apr 1 20:57:48 UTC 2009

SourcePackage: xkeyboard-config
Title: package xkb-data 1.3-2ubuntu4.2 failed to install/upgrade: trying to 
overwrite `/usr/share/X11/xkb/symbols/mm', which is also in package 
zawgyi-keyboard
Uname: Linux 2.6.27-11-generic i686
xkbcomp:

** Affects: xkeyboard-config (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package

-- 
package xkb-data 1.3-2ubuntu4.2 failed to install/upgrade: trying to overwrite 
`/usr/share/X11/xkb/symbols/mm', which is also in package zawgyi-keyboard
https://bugs.launchpad.net/bugs/379306
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 379307] Re: Update to 9.04 Desktop failure

2009-05-21 Thread Victor Sadovsky

** Attachment added: "Dependencies.txt"
   http://launchpadlibrarian.net/27041349/Dependencies.txt

** Attachment added: "DpkgTerminalLog.txt"
   http://launchpadlibrarian.net/27041350/DpkgTerminalLog.txt

-- 
Update to 9.04 Desktop failure
https://bugs.launchpad.net/bugs/379307
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 359392] Re: [i965] X freezes starting on April 3rd

2009-05-21 Thread Bernhard
I never had any freezes at all but my whole system is just increadibly
slow with compiz. Correct me if I'm wrong but this is not just about
singapore-like freezes, it's about performance and memory leaks of intel
video cards.

-- 
[i965] X freezes starting on April 3rd
https://bugs.launchpad.net/bugs/359392
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 379299] Re: Acer TravelMate 6493 brightness controls unusable

2009-05-21 Thread mozclub
** Package changed: ubuntu => linux (Ubuntu)

-- 
Acer TravelMate 6493 brightness controls unusable
https://bugs.launchpad.net/bugs/379299
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 379250] Re: Ubuntu freezes randomly

2009-05-21 Thread mozclub
** Package changed: ubuntu => xorg (Ubuntu)

-- 
Ubuntu freezes randomly
https://bugs.launchpad.net/bugs/379250
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 222711] Re: page not correctly displaed

2009-05-21 Thread Micah Gersten
Are you still having a problem with Firefox 3.0.10?  If so, could you please 
provide a detailed description (screenshots help) of what is wrong?
Thank you and please report any other bugs you may find.

** Changed in: firefox-3.0 (Ubuntu)
   Status: Confirmed => Incomplete

-- 
page not correctly displaed 
https://bugs.launchpad.net/bugs/222711
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 373317] Re: Send a page to a printer don't prints it.

2009-05-21 Thread Micah Gersten
Assigning to openprinting-ppds to see if there is a problem with the
driver.

** Package changed: firefox-3.0 (Ubuntu) => foomatic-db (Ubuntu)

** Changed in: foomatic-db (Ubuntu)
   Status: Incomplete => New

-- 
Send a page to a printer don't prints it.
https://bugs.launchpad.net/bugs/373317
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 379304] [NEW] bsh handles subclassing and static methods incorrectly

2009-05-21 Thread Matthew Flaschen
Public bug reported:

Binary package hint: bsh

As noted at
http://sourceforge.net/tracker/?func=detail&aid=1781130&group_id=4075&atid=104075
, bsh does not call the correct method when a subclass has the same
static method signature as a superclass.  For example:

class A
{
public static String foo()
{
return "A";
}
}

class B extends A
{
public static String foo()
{
return "B";
}
}

public class StaticInherit
{
public static void main(String[] a)
{
System.out.println("A.foo: " + A.foo());
System.out.println("(new B()).foo: " + (new B()).foo());
System.out.println("B.foo: " + B.foo());
}
}

If this file is compiled with javac and run with java, it will output A,
B, B.  However, if entered into Hardy bsh (and run with
StaticInherit.main(new String[]{})), it results in A,  A, A.

This bug has been fixed in beanshell2
(http://code.google.com/p/beanshell2/); see r21
(http://code.google.com/p/beanshell2/source/diff?spec=svn21&old=10&r=21&format=unidiff&path=%2Ftrunk%2Fsrc%2Fbsh%2FReflect.java)
.  It would be great to merge at least this, and it may be wise to start
using them as upstream eventually.

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

-- 
bsh handles subclassing and static methods incorrectly
https://bugs.launchpad.net/bugs/379304
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 379303] [NEW] Compiz cube too fast to be seen

2009-05-21 Thread Sami J. Laine
Public bug reported:

Binary package hint: compiz

Description:Ubuntu 9.04
Release:9.04

compiz:
  Installed: 1:0.8.2-0ubuntu8
  Candidate: 1:0.8.2-0ubuntu8
  Version table:
 *** 1:0.8.2-0ubuntu8 0
500 http://fi.archive.ubuntu.com jaunty/main Packages
100 /var/lib/dpkg/status

When using compiz cube desktop switcher, desktops are changed so fast
that the cube is not visible for human eye. Before I upgraded to 9.04
cube was clearly visible and scrolled slow enough to be catched by a
person equipped with normal vision.

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

-- 
Compiz cube too fast to be seen
https://bugs.launchpad.net/bugs/379303
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 366300] Re: KDE, Qt, Plasma paint errors, SIGSEGV crashes

2009-05-21 Thread snow13
I went ahead and re-installed Jaunty from scratch and the painting issue
has disappeared.  I have had the reinstalled version for about 5 days
now with no problems regarding plasma.  Noting that my system had been
spewing out "syntax errors" before and does not anymore, I might venture
to guess that some configuration file is now parsed differently by the
newer version of plasma and my old configs were causing errors, though I
certainly am no expert.

-- 
KDE, Qt, Plasma paint errors, SIGSEGV crashes
https://bugs.launchpad.net/bugs/366300
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 200601] Re: Scrolling the mouse wheel over the tabs does not switch tabs

2009-05-21 Thread Bug Watch Updater
** Changed in: firefox
   Status: Unknown => Confirmed

-- 
Scrolling the mouse wheel over the tabs does not switch tabs
https://bugs.launchpad.net/bugs/200601
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 379299] Re: Acer TravelMate 6493 brightness controls unusable

2009-05-21 Thread Sami J. Laine
** Description changed:

+ Description:  Ubuntu 9.04
+ Release:  9.04
+ 
  This bug seems to be related to #369777 and #368506.
  
  After upgrading previous release to 9.04 I've experienced both problems
  described in previously mentioned bugs. Adjusting brightness on Acer
  TravelMate 6493 internal LCD screen using "Fn + brightness+" or "Fn +
  brightness-" key combinations only toggle between to states: dark and
  really dark. It is possible to get more fine grained (including much
  brighter settings) control over screen brightness using
  "Brightness"-applet but while changing settings heavy screen flickering
  occurs thus rendering the applet rather unusable.

-- 
Acer TravelMate 6493 brightness controls unusable
https://bugs.launchpad.net/bugs/379299
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 373467] Re: web pages often revert to home page without warning

2009-05-21 Thread Micah Gersten
Since you cannot reproduce at this time, I'm going to mark as Invalid.  When 
you reinstall Firefox, if you still have the same issue, you can set back to 
New.
Please report any other bugs you may find to us.
Thank you again.

** Changed in: firefox-3.0 (Ubuntu)
   Status: Incomplete => Invalid

-- 
web pages often revert to home page without warning 
https://bugs.launchpad.net/bugs/373467
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 379286] Re: NetworkManager tainted leading to sudden kernel crash

2009-05-21 Thread mozclub
** Package changed: ubuntu => linux (Ubuntu)

-- 
NetworkManager tainted leading to sudden kernel crash
https://bugs.launchpad.net/bugs/379286
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 379289] Re: does not work with ac '97 sound on msi k8t neo-v motherboard

2009-05-21 Thread mozclub
** Package changed: ubuntu => alsa-driver (Ubuntu)

-- 
does not work with ac '97 sound on msi k8t neo-v motherboard
https://bugs.launchpad.net/bugs/379289
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 379295] Re: no audio after latest ubuntu version

2009-05-21 Thread mozclub
** Package changed: ubuntu => alsa-driver (Ubuntu)

-- 
no audio after latest ubuntu version
https://bugs.launchpad.net/bugs/379295
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 379296] Re: OpenOffice does not run after regular file update with Update Manager

2009-05-21 Thread mozclub
** Package changed: ubuntu => openoffice.org (Ubuntu)

-- 
OpenOffice does not run after regular file update with Update Manager
https://bugs.launchpad.net/bugs/379296
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 379299] Re: Acer TravelMate 6493 brightness controls unusable

2009-05-21 Thread Sami J. Laine

** Attachment added: "lspci -vvv output"
   http://launchpadlibrarian.net/27040835/lspci.out.txt

-- 
Acer TravelMate 6493 brightness controls unusable
https://bugs.launchpad.net/bugs/379299
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 379299] [NEW] Acer TravelMate 6493 brightness controls unusable

2009-05-21 Thread Sami J. Laine
Public bug reported:

Description:Ubuntu 9.04
Release:9.04

This bug seems to be related to #369777 and #368506.

After upgrading previous release to 9.04 I've experienced both problems
described in previously mentioned bugs. Adjusting brightness on Acer
TravelMate 6493 internal LCD screen using "Fn + brightness+" or "Fn +
brightness-" key combinations only toggle between to states: dark and
really dark. It is possible to get more fine grained (including much
brighter settings) control over screen brightness using
"Brightness"-applet but while changing settings heavy screen flickering
occurs thus rendering the applet rather unusable.

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
Acer TravelMate 6493 brightness controls unusable
https://bugs.launchpad.net/bugs/379299
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 219407] Re: REGRESSION: Firefox does not process some downloads properly

2009-05-21 Thread Micah Gersten
You reported this bug a while ago and there hasn't been any activity in
it recently. We were wondering if this is still an issue for you. Can
you try with the latest version of Firefox 3.0? Thanks in advance.

** Changed in: firefox-3.0 (Ubuntu)
   Status: Confirmed => Incomplete

-- 
REGRESSION: Firefox does not process some downloads properly
https://bugs.launchpad.net/bugs/219407
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 272450] Re: package matchbox-window-manager 1.2-2ubuntu2 failed to install/upgrade: le sous-processus pre-removal script a retourn? une erreur de sortie d'?tat 2

2009-05-21 Thread Ramaddan
Hi,

I'm using Intrepid on one of my machines and had this problem, and the
problem got fixed by following the directions by David Ramey, thanks.

Will the package with the fix be placed in the repoes?

-- 
package matchbox-window-manager 1.2-2ubuntu2 failed to install/upgrade: le 
sous-processus pre-removal script a retourn? une erreur de sortie d'?tat 2
https://bugs.launchpad.net/bugs/272450
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 363059] Re: [jaunty] dpms does not switch off backlight on laptop screen

2009-05-21 Thread Vitaly V. Katraev
Same trouble.
Apple 20" iMac7,1
ATI Mobility Radeon HD 2600 XT
fglrx video driver.

command "xset dpms force off"
  in Ubuntu 9.04 - don`t turn backlight off, only blank screen  
  in Ubuntu 8.04 and Ubuntu 8.10 (updated from 8.04) - works fine

-- 
[jaunty] dpms does not switch off backlight on laptop screen
https://bugs.launchpad.net/bugs/363059
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 367318] Re: in VT, screen not being saved (vcsa permission problem to blame)

2009-05-21 Thread Shentino
Another workaround:  Install fp-compile to get the grab_vcsa

IMO still a bug.  I think that mc should work "out of the box",
including subshell screen save/restore.  At the least, I'd consider it
an unexpected annoyance that a regular end user (i.e., one who's not a
geek) would be somewhat at a loss to diagnose, and manually mucking
about with permissions in /dev definitely sounds heavyweight as far as
workarounds go.

-- 
in VT, screen not being saved (vcsa permission problem to blame)
https://bugs.launchpad.net/bugs/367318
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 366300] Re: KDE, Qt, Plasma paint errors, SIGSEGV crashes

2009-05-21 Thread Nunquam Secutus
This is not just an issue with jaunty. I have a single monitor setup
running 9.04 and am using the nvidia 180 graphics drivers. I had desktop
effects on. I also noticed no correlation as to when this would start
happening. I only had it completely crash 1 time in which case it
restarted and was working fine but could not produce a backtrace. Every
time I logged into ubuntu I had the display error happen (unless I was
only logged in for a really short period of time). In an effort to have
a reliable desktop again I decided to give sabayon 4.1 a try. The issue
continues to happen in sabayon though less frequently than in kubuntu
9.04 (at least so far). This should indicate that it is simply an issue
with plasma or that the issue is tied into a package that is in both of
these distros.

-- 
KDE, Qt, Plasma paint errors, SIGSEGV crashes
https://bugs.launchpad.net/bugs/366300
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 85798] Re: [apport] python crashed with SIGSEGV in gtk_tree_view_remove_column()

2009-05-21 Thread bigal50
Just installed it a few minutes ago, scanned my music collection of
mp3's and ogg's. Was playing a ogg file and about 3/4 the way through it
quit playing, I choose another song and it showed it was playing but had
no sound.

I'm running Ubuntu 9.0.4 which was upgraded from a clean install of
8.1.0 running on a Dell Latitude D620 with 4 gb ram.

-- 
[apport] python crashed with SIGSEGV in gtk_tree_view_remove_column()
https://bugs.launchpad.net/bugs/85798
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 334117] Re: no wakeup from S3

2009-05-21 Thread Murz
With "pci=nomsi" kernel option all works good with SATA and ACHI modes
of sata drive!

-- 
no wakeup from S3
https://bugs.launchpad.net/bugs/334117
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 235622] Re: Hardy does not really mount samba network shares

2009-05-21 Thread hasan
What is the point of hiding the mount point of these shares from the users?
Nautilus should be consistent in its treatment of filesystems, and mount 
network drives in the same way as it mount USB drives - namely in /media .

Right now there is no way to access those drives from other applications
severing crippling the utility of nautilus.

For example, I cannot import my music library that resides on a samba
server. Even when I try to access the files through .gvfs I am being
prevented from doing so ("Only local files may be selected").

Nautilus isn't only not helping access these files,  it is preventing me
from doing that in other applications which rely on nautilus to browse
the filesystem, but do not understand its smb:// protocol.

-- 
Hardy does not really mount samba network shares
https://bugs.launchpad.net/bugs/235622
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 368518] Re: [GM45, 945] Unable to mirror to external monitor

2009-05-21 Thread Stephen Gentle
I'll try to get a backtrace as soon as possible.

I'd just thought I'd mention though that it turns out that this defect
(and the segfault in Xrandr) only happens on one monitor I have - I
tried another (newer) monitor and two projectors and it worked fine
there.

-- 
[GM45, 945] Unable to mirror to external monitor
https://bugs.launchpad.net/bugs/368518
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 379096] Re: Ath9k: Signal drops to 0% on connection to AP after a few seconds, drops connection.

2009-05-21 Thread Senthil Balasubramanian
Please see whether the attached patch helps in solving your signal
issue. This will apply on the tip of the wireless testing

** Attachment added: "patch to solve signal quality issue"
   
http://launchpadlibrarian.net/27040333/0001-ath9k-Manipulate-and-report-the-correct-RSSI.patch

-- 
Ath9k: Signal drops to 0% on connection to AP after a few seconds, drops 
connection.
https://bugs.launchpad.net/bugs/379096
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 151890] Re: Clicking sound with USB microphone

2009-05-21 Thread kwilliam++
Has anyone checked to see if this is specifically an Ubuntu problem, or
if the microphone clicks in *all* Linux distros? It would be interesting
if it's JUST Ubuntu.

-- 
Clicking sound with USB microphone
https://bugs.launchpad.net/bugs/151890
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 334597] Re: package freeciv-client-gtk 2.1.5-2 failed to install/upgrade:

2009-05-21 Thread Michael Below
Same problem here on upgrade of a 32bit installation. This leads to a
scary message that upgrade has failed and the system is unusable. But
obviously the recovery has worked, the upgrade was then successfully
concluded.

-- 
package freeciv-client-gtk 2.1.5-2 failed to install/upgrade: 
https://bugs.launchpad.net/bugs/334597
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 200601] Re: Scrolling the mouse wheel over the tabs does not switch tabs

2009-05-21 Thread Micah Gersten
Thank you for your bug report. This bug has been reported to the developers of 
the software. You can track it and make comments at:
https://bugzilla.mozilla.org/show_bug.cgi?id=281192

** Bug watch added: Mozilla Bugzilla #281192
   https://bugzilla.mozilla.org/show_bug.cgi?id=281192

** Also affects: firefox via
   https://bugzilla.mozilla.org/show_bug.cgi?id=281192
   Importance: Unknown
   Status: Unknown

-- 
Scrolling the mouse wheel over the tabs does not switch tabs
https://bugs.launchpad.net/bugs/200601
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 283208] Re: Please merge gmerlin 0.4.0-0.1 from Debian multimedia (unstable)

2009-05-21 Thread fabrice_sp
New debdiff, with a fix on Copyright file

** Attachment added: "gmerlin_0.4.0-0.1ubuntu1.new.debdiff"
   http://launchpadlibrarian.net/27040177/gmerlin_0.4.0-0.1ubuntu1.new.debdiff

-- 
Please merge gmerlin 0.4.0-0.1 from Debian multimedia (unstable)
https://bugs.launchpad.net/bugs/283208
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 14135] Re: Grub Install Failure

2009-05-21 Thread DaveAbrahams
By the way, Scott Merrilee's hint above seems to be a cure.  Thanks,
Scott!

I think the bigger problem may be that device.map isn't done by UUID.
This issue is most definitely NOT fixed!

** Attachment added: "hardware-summary.txt"
   http://launchpadlibrarian.net/27039613/hardware-summary.txt

** Changed in: grub-installer (Ubuntu)
   Status: Fix Released => Confirmed

-- 
Grub Install Failure
https://bugs.launchpad.net/bugs/14135
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 379295] Re: no audio after latest ubuntu version

2009-05-21 Thread vichampton

** Attachment added: "Dependencies.txt"
   http://launchpadlibrarian.net/27039620/Dependencies.txt

** Attachment added: "ProcMaps.txt"
   http://launchpadlibrarian.net/27039622/ProcMaps.txt

** Attachment added: "ProcStatus.txt"
   http://launchpadlibrarian.net/27039623/ProcStatus.txt

-- 
no audio after latest ubuntu version
https://bugs.launchpad.net/bugs/379295
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 379296] Re: OpenOffice does not run after regular file update with Update Manager

2009-05-21 Thread Daniel

** Attachment added: "Dependencies.txt"
   http://launchpadlibrarian.net/27039624/Dependencies.txt

** Attachment added: "ProcMaps.txt"
   http://launchpadlibrarian.net/27039625/ProcMaps.txt

** Attachment added: "ProcStatus.txt"
   http://launchpadlibrarian.net/27039626/ProcStatus.txt

-- 
OpenOffice does not run after regular file update with Update Manager
https://bugs.launchpad.net/bugs/379296
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 379296] [NEW] OpenOffice does not run after regular file update with Update Manager

2009-05-21 Thread Daniel
Public bug reported:

OpenOffice does not launch -- it took a long time to see the "open
office" pop-up window, and then it simply quits (nothing else comes
out).  This happened after regular file update informed by computer
saying new updates are available -- OpenOffice worked in the past.

ProblemType: Bug
Architecture: i386
DistroRelease: Ubuntu 9.04
ExecutablePath: /usr/bin/yelp
Package: yelp 2.25.1-0ubuntu5
ProcEnviron:
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: yelp
Uname: Linux 2.6.28-11-generic i686

** Affects: ubuntu
 Importance: Undecided
 Status: New


** Tags: apport-bug i386

-- 
OpenOffice does not run after regular file update with Update Manager
https://bugs.launchpad.net/bugs/379296
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 379295] [NEW] no audio after latest ubuntu version

2009-05-21 Thread vichampton
Public bug reported:

no audio after latest unbuntu version download.

ProblemType: Bug
Architecture: i386
DistroRelease: Ubuntu 9.04
ExecutablePath: /usr/bin/rhythmbox
NonfreeKernelModules: nvidia
Package: rhythmbox 0.12.0-0ubuntu4
ProcEnviron:
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: rhythmbox
Uname: Linux 2.6.28-11-generic i686

** Affects: ubuntu
 Importance: Undecided
 Status: New


** Tags: apport-bug i386

-- 
no audio after latest ubuntu version
https://bugs.launchpad.net/bugs/379295
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 14135] Re: Grub Install Failure

2009-05-21 Thread DaveAbrahams

** Attachment added: "partman"
   http://launchpadlibrarian.net/27039322/partman

-- 
Grub Install Failure
https://bugs.launchpad.net/bugs/14135
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 14135] Re: Grub Install Failure

2009-05-21 Thread DaveAbrahams
OK, I'm having this problem with Jaunty Server AMD64.  It worked fine
when I only had scsi hard disks (my CDRom is IDE).  When I added an IDE
hard drive and tried to install there, it failed.  I'm attaching
everything in /var/log (which, by the way, is painful to recover!)


** Attachment added: "syslog"
   http://launchpadlibrarian.net/27039304/syslog

-- 
Grub Install Failure
https://bugs.launchpad.net/bugs/14135
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 141584] Re: Segfault when iPod with Rockbox is connected

2009-05-21 Thread pyGene
*** This bug is a duplicate of bug 177660 ***
https://bugs.launchpad.net/bugs/177660

This is happening here too.  N800 running OS2008, and Ubuntu 8.05

These steps and out are happening on every attempt

 *  Plug in n800 via usb
 *  run rhythmbox -d (for debug) on the command line
 *  lots of data  then the following

{{{

(16:33:25) [0x8063440] [rb_metadata_bus_handler] rb-metadata-gst.c:834: got 
error message from typefind
(16:33:25) [0x8063440] [rb_metadata_bus_handler] rb-metadata-gst.c:840: caught 
type not found error
(16:33:25) [0x8063440] [rb_metadata_load] rb-metadata-gst.c:1052: failed to go 
to PAUSED for file:///media/disk-1/map/mapdata/wl.qt
(16:33:25) [0x8063440] [rb_metadata_load] rb-metadata-gst.c:1146: ignoring 
file:///media/disk-1/map/mapdata/wl.qt because it's too small to care about
(16:33:25) [0x8063440] [rb_metadata_dbus_load] rb-metadata-dbus-service.c:146: 
metadata error: The MIME type of the file could not be identified
(16:33:25) [0x8063440] [_send_error] rb-metadata-dbus-service.c:76: attempting 
to return error: The MIME type of the file could not be identified
(16:33:25) [0x8c0d400] [action_thread_main] rhythmdb.c:2492: executing 
RHYTHMDB_ACTION_LOAD for "file:///media/disk-1/map/mapdata/wa5.qt"
(16:33:25) [0x80e6408] [rhythmdb_process_one_event] rhythmdb.c:2147: processing 
RHYTHMDB_EVENT_METADATA_LOAD
(16:33:25) [0x80e6408] [rhythmdb_add_import_error_entry] rhythmdb.c:1809: 
adding import error for file:///media/disk-1/map/mapdata/wl.qt: The MIME type 
of the file could not be identified
Segmentation fault
}}}

I have some non-musci files on the device, it seems.  I didn't put them
there; not sure why it should be crashing.

Any tips?

-- 
 Segfault when iPod with Rockbox is connected
https://bugs.launchpad.net/bugs/141584
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 379293] [NEW] bash completion for gdb does not complete paths properly

2009-05-21 Thread John Steele Scott
Public bug reported:

Binary package hint: bash-completion

jsc...@jscott-laptop:~$ lsb_release -rd
Description:Ubuntu 9.04
Release:9.04

jsc...@jscott-laptop:~$ apt-cache policy bash-completion
bash-completion:
  Installed: 20080705ubuntu3
  Candidate: 20080705ubuntu3
  Version table:
 *** 20080705ubuntu3 0
500 http://mirror.internode.on.net jaunty/main Packages
500 http://au.archive.ubuntu.com jaunty/main Packages
100 /var/lib/dpkg/status

Suppose we want to run /bin/true under gdb. I type in "gdb /bi" and
press TAB. This gets completed to "gdb /bin ". The problem is that a
space has been added after the 'n', so I have to press backspace to add
more to the path.

I would have expected that after typing "gdb /bi" and pressing TAB, I
would end up with "gdb /bin/", with the cursor directly after the '/'.

** Affects: bash-completion (Ubuntu)
 Importance: Undecided
 Status: New

-- 
bash completion for gdb does not complete paths properly
https://bugs.launchpad.net/bugs/379293
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 379294] Re: Garbled web page

2009-05-21 Thread Mike Smith

** Attachment added: "Dependencies.txt"
   http://launchpadlibrarian.net/27039371/Dependencies.txt

** Attachment added: "ExtensionSummary.txt"
   http://launchpadlibrarian.net/27039372/ExtensionSummary.txt

** Attachment added: "profiles.ini.txt"
   http://launchpadlibrarian.net/27039373/profiles.ini.txt

-- 
Garbled web page
https://bugs.launchpad.net/bugs/379294
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 379294] [NEW] Garbled web page

2009-05-21 Thread Mike Smith
Public bug reported:

Binary package hint: firefox-3.0

Using Firefox 3.0.10 in xubuntu 8.10.  New Wolfram/Alpha home page is a
mess.  Don't know whether the fault is poor page design or within
Firefox.

ProblemType: Bug
Architecture: i386
DistroRelease: Ubuntu 8.10
NonfreeKernelModules: ath_hal
Package: firefox-3.0 3.0.10+nobinonly-0ubuntu0.8.10.1
ProcEnviron:
 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: firefox-3.0
Uname: Linux 2.6.27-14-generic i686

** Affects: firefox-3.0 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug

-- 
Garbled web page
https://bugs.launchpad.net/bugs/379294
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 357433] Re: Firefox hangs for no reason

2009-05-21 Thread afujihara
Thanks for taking the time to report this bug and helping to make Ubuntu
better. Could you please add more information for it by looking to
https://wiki.ubuntu.com/MozillaTeam/Bugs , Thanks in advance.

** Changed in: firefox-3.0 (Ubuntu)
   Status: New => Incomplete

** Changed in: firefox-3.0 (Ubuntu)
 Assignee: (unassigned) => afujihara (afujihara)

-- 
Firefox hangs for no reason
https://bugs.launchpad.net/bugs/357433
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 372023] Re: Flash error, justintv

2009-05-21 Thread Kurt Wall
Thanks for taking the time to report this bug and helping to improve
Ubuntu. Could you please add more information for it by following the
suggestions at https://wiki.ubuntu.com/MozillaTeam/Bugs. In particular,
can you reproduce this behavior using a new profile? It isn't necessary
to delete your current profile; just create a new one. In addition, it
would be very helpful if you could provide console output and/or a stack
trace as described at https://wiki.ubuntu.com/MozillaTeam/Bugs.

Thanks and regards,

Kurt

-- 
Flash error, justintv
https://bugs.launchpad.net/bugs/372023
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 358002] Re: firefox closes when browsing

2009-05-21 Thread afujihara
Thanks for taking the time to report this bug and helping to make Ubuntu
better. Could you please add more information for it by looking to
https://wiki.ubuntu.com/MozillaTeam/Bugs , Thanks in advance.


** Changed in: firefox-3.0 (Ubuntu)
   Status: New => Incomplete

** Changed in: firefox-3.0 (Ubuntu)
 Assignee: (unassigned) => afujihara (afujihara)

-- 
firefox closes when browsing
https://bugs.launchpad.net/bugs/358002
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 372103] Re: click on bookmark crashes firefox

2009-05-21 Thread Kurt Wall
Thanks for taking the time to report this bug and helping to improve
Ubuntu. Could you please add more information for it by following the
suggestions at https://wiki.ubuntu.com/MozillaTeam/Bugs. In particular,
can you reproduce this behavior using a new profile? It isn't necessary
to delete your current profile; just create a new one. It would also be
useful to get console output and/or a stack trace, again using the
instructions provided at https://wiki.ubuntu.com/MozillaTeam/Bugs.

Thanks and regards,

Kurt

-- 
click on bookmark crashes firefox
https://bugs.launchpad.net/bugs/372103
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 379290] [NEW] typo in french description of iat

2009-05-21 Thread Gonzo
Public bug reported:

Binary package hint: iat

The description of the package iat displayed by "apt-cache show iat" or 
synaptic contains an error :
MRG instead of NRG

Package: iat
[...]
Architecture: i386
Version: 0.1.3-7
[...]
Description-fr: convertit plusieurs formats d'images de cédérom en iso9660
 iat (Iso9660 Analyzer Tool, outil d'analyse iso9660) est un outil qui
 permet de détecter la structure de plusieurs formats de fichier d'images
 de cédérom, comme BIN, MDF, PDI, CDI, MRG et B5I, et les convertir en
 ISO- 9660.

I am using Ubunty 9.04.

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

-- 
typo in french description of iat
https://bugs.launchpad.net/bugs/379290
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 182473] Re: rtl8187 drops connection

2009-05-21 Thread malfist
Holy cow the Kernel Dev's are awesome!

Connection signal went from ~10% to ~85%
No disconnects
Tested with 60+ connections on bittorrent, normally this would cause a 
disconnect in less than five minutes.
Connection speed dropped by ~.1 MB/s (upload unaffected)

Results of speed testing:

rtl8187, new kernel:
Down1.44
Up  0.24

rtl8187, new kernel, after bittorrenting: (felt slower so I tested it)
Down  1.32
Up   0.22

rtl8187, old kernel:
Down 1.58
Up  0.22

iphone:
down1.09
up  0.24

Will run extended tests overnight. Had to completely uninstall ATI's
restricted driver.

-- 
rtl8187 drops connection
https://bugs.launchpad.net/bugs/182473
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 374127] Re: Activating swapfile swap [fail] after 9.04 upgrade

2009-05-21 Thread Kurt Wall
Thanks for taking the time to report this bug and helping to improve
Ubuntu. Did memtest86++ detect an error in your system memory? If so,
this is not an error or bug that Ubuntu can fix.

-- 
Activating swapfile swap [fail] after 9.04 upgrade
https://bugs.launchpad.net/bugs/374127
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 374193] Re: [jaunty] Latest Firefox update replaced my home page

2009-05-21 Thread Kurt Wall
Thanks for taking the time to report this bug and helping to improve
Ubuntu. Could you please add more information for it by following the
suggestions at https://wiki.ubuntu.com/MozillaTeam/Bugs. In particular,
can you reproduce this behavior using a new profile? It isn't necessary
to delete your current profile; just create a new one.

Regards,

Kurt

-- 
[jaunty] Latest Firefox update replaced my home page
https://bugs.launchpad.net/bugs/374193
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 379289] [NEW] does not work with ac '97 sound on msi k8t neo-v motherboard

2009-05-21 Thread P. Cobb
Public bug reported:

have tried everything except complete uninstall & reinstall of ubuntu
itself-started with hardy- 9 months later it's still mute--can upload
info from ubuntu later if needed--email is in windows.now in jaunty

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
does not work with ac '97 sound on msi k8t neo-v motherboard
https://bugs.launchpad.net/bugs/379289
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 362593] Re: firefox crashed with SIGSEGV in gfxTextRun::DrawGlyphs()

2009-05-21 Thread afujihara
Thanks for taking the time to report this bug and helping to make Ubuntu 
better. 
Is this bug being reproducible now? If so, could you please add more 
information for it 
by looking to https://wiki.ubuntu.com/MozillaTeam/Bugs , Thanks in advance.


** Changed in: firefox-3.0 (Ubuntu)
   Status: New => Incomplete

** Changed in: firefox-3.0 (Ubuntu)
 Assignee: (unassigned) => afujihara (afujihara)

-- 
firefox crashed with SIGSEGV in gfxTextRun::DrawGlyphs()
https://bugs.launchpad.net/bugs/362593
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 24234] Re: apt-get update failing with bad signature.

2009-05-21 Thread Djoudi
Hi all,

also prb

GPG error: http://archive.ubuntu.com jaunty-updates Release: The following 
signatures were invalid: BADSIG 40976EAF437D05B5 Ubuntu Archive Automatic 
Signing Key Failed to fetch cdrom://Ubuntu 9.04 _Jaunty 
Jackalope_ - Release i386 (20090420.1)/dists/jaunty/main/binary-i386/Packages  
Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update 
cannot be used to add new CD-ROMs
Failed to fetch cdrom://Ubuntu 9.04 _Jaunty Jackalope_ - Release i386 
(20090420.1)/dists/jaunty/restricted/binary-i386/Packages  Please use apt-cdrom 
to make this CD-ROM recognized by APT. apt-get update cannot be used to add new 
CD-ROMs
Failed to fetch 
http://archive.ubuntu.com/ubuntu/dists/jaunty-security/main/source/Sources.bz2  
Hash Sum mismatch
Failed to fetch 
http://archive.ubuntu.com/ubuntu/dists/jaunty-security/universe/source/Sources.bz2
  Hash Sum mismatch
Some index files failed to download, they have been ignored, or old ones used 
instead.

-- 
apt-get update failing with bad signature.
https://bugs.launchpad.net/bugs/24234
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 368350] Re: Evolution locks up when looking at emails generated from Lotus Notes Meeting handler

2009-05-21 Thread Mark Mueller
** Description changed:

+ 5-21-09
+ It is back to state described in 4-26-09.
+ 
  5-4-09
  I am now able to open Lotus Notes Meeting handlers and accept invitations - 
no problems!
  
  4-26-09 
  Binary package hint: evolution
  
  Intrepid Ibex
  EEE pc1000
  
  I expected to click on the email invitation and be able to scroll
  through in the preview pane and be able to click on the accept button
  which would have returned a confirmation to the lotus notes sender and
  put the calendar entry into my calendar.
  
  When I clicked on an email invitation  generated by Lotus Notes
  Calendar, Evolution locked up. I had to "force quit" and restart
  Evolution. These invitations worked a month or so ago just fine. I
  clicked on an invitation that didn't lock up earlier. Now it locks up
  though. The latest meeting that worked previously is March 20, 2009.
  
  ProblemType: Bug
  Architecture: i386
  DistroRelease: Ubuntu 8.10
  ExecutablePath: /usr/bin/evolution
  Package: evolution 2.24.3-0ubuntu1
  ProcEnviron:
   PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: evolution
  Uname: Linux 2.6.27-11-generic i686

-- 
Evolution locks up when looking at emails generated from Lotus Notes Meeting 
handler
https://bugs.launchpad.net/bugs/368350
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 24234] Re: apt-get update failing with bad signature.

2009-05-21 Thread Djoudi
Hi all,

also prb

GPG error: http://archive.ubuntu.com jaunty-updates Release: The following 
signatures were invalid: BADSIG 40976EAF437D05B5 Ubuntu Archive Automatic 
Signing Key Failed to fetch cdrom://Ubuntu 9.04 _Jaunty 
Jackalope_ - Release i386 (20090420.1)/dists/jaunty/main/binary-i386/Packages  
Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update 
cannot be used to add new CD-ROMs
Failed to fetch cdrom://Ubuntu 9.04 _Jaunty Jackalope_ - Release i386 
(20090420.1)/dists/jaunty/restricted/binary-i386/Packages  Please use apt-cdrom 
to make this CD-ROM recognized by APT. apt-get update cannot be used to add new 
CD-ROMs
Failed to fetch 
http://archive.ubuntu.com/ubuntu/dists/jaunty-security/main/source/Sources.bz2  
Hash Sum mismatch
Failed to fetch 
http://archive.ubuntu.com/ubuntu/dists/jaunty-security/universe/source/Sources.bz2
  Hash Sum mismatch
Some index files failed to download, they have been ignored, or old ones used 
instead.

-- 
apt-get update failing with bad signature.
https://bugs.launchpad.net/bugs/24234
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 353126] Re: Compiz / vnc screen refresh with nvidia-restricted driver/VirtualBox/ATI fglrx driver

2009-05-21 Thread tonyhartfield
The bug still seems to be marked as fix released any word on this, as
the suggested fix is not suitable for myself and no doubt other affected
users.

-- 
Compiz / vnc screen refresh with nvidia-restricted driver/VirtualBox/ATI fglrx 
driver
https://bugs.launchpad.net/bugs/353126
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 376521] Re: /dev/pilot link is not always created correctly

2009-05-21 Thread David Gibson
At least with jpilot using "usb:" doesn't seem to work for me.  Whether
I press the button in jpilot then the hotsync button on the palm, or the
other way around, it never seems to connect.

-- 
/dev/pilot link is not always created correctly
https://bugs.launchpad.net/bugs/376521
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 374774] Re: Menu File -> Save Page As or Right Click -> Save Image as don't work

2009-05-21 Thread Kurt Wall
Thanks for taking the time to report this bug and helping to improve
Ubuntu. Could you please add more information for it by following the
suggestions at https://wiki.ubuntu.com/MozillaTeam/Bugs. In particular,
can you reproduce this behaviour using a new profile? It isn't necessary
to delete your current profile; just create a new one. Does this happen
on a specific Web page or on all Web pages?

Regards,

Kurt

-- 
Menu File -> Save Page As or Right Click -> Save Image as don't work
https://bugs.launchpad.net/bugs/374774
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 375538] Re: Firefox Additional Plugins Required

2009-05-21 Thread Kurt Wall
Thanks for taking the time to report this bug and helping to improve
Ubuntu. Could you please add more information for it by following the
suggestions at https://wiki.ubuntu.com/MozillaTeam/Bugs. In particular,
can you reproduce this behavior using a new profile? It isn't necessary
to delete your current profile; just create a new one. Which plugin for
handling shockwave files have you installed?

Regards,

Kurt

-- 
Firefox Additional Plugins Required
https://bugs.launchpad.net/bugs/375538
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 378180] Re: Canon backend exhibits segfault during open

2009-05-21 Thread tones111
Note: I've also created an upstream bug report on the sane bugtracker.  #311685
https://alioth.debian.org/tracker/?func=detail&atid=410366&aid=311685&group_id=30186

** Bug watch added: alioth.debian.org/ #311685
   http://alioth.debian.org/support/tracker.php?aid=311685

-- 
Canon backend exhibits segfault during open
https://bugs.launchpad.net/bugs/378180
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 379285] Re: USB modules are not being loaded

2009-05-21 Thread Marnen Laibow-Koser

** Attachment added: "version.log"
   http://launchpadlibrarian.net/27038309/version.log

-- 
USB modules are not being loaded
https://bugs.launchpad.net/bugs/379285
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 379285] Re: USB modules are not being loaded

2009-05-21 Thread Marnen Laibow-Koser

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

-- 
USB modules are not being loaded
https://bugs.launchpad.net/bugs/379285
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 379285] Re: USB modules are not being loaded

2009-05-21 Thread Marnen Laibow-Koser

** Attachment added: "lspci-vnvn.log"
   http://launchpadlibrarian.net/27038304/lspci-vnvn.log

-- 
USB modules are not being loaded
https://bugs.launchpad.net/bugs/379285
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 379285] Re: USB modules are not being loaded

2009-05-21 Thread Marnen Laibow-Koser

** Attachment added: "dmesg.log"
   http://launchpadlibrarian.net/27038303/dmesg.log

-- 
USB modules are not being loaded
https://bugs.launchpad.net/bugs/379285
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 379285] Re: USB modules are not being loaded

2009-05-21 Thread Marnen Laibow-Koser

** Attachment added: "lsusb.log"
   http://launchpadlibrarian.net/27038295/lsusb.log

** Attachment added: "Dependencies.txt"
   http://launchpadlibrarian.net/27038296/Dependencies.txt

-- 
USB modules are not being loaded
https://bugs.launchpad.net/bugs/379285
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 379285] [NEW] USB modules are not being loaded

2009-05-21 Thread Marnen Laibow-Koser
Public bug reported:

My USB printer is not being detected. Upon investigation, I discovered
that lsmod | grep usb yields nothing, which I suppose means that USB
modules are not being loaded at startup. I am following the instructions
at https://wiki.ubuntu.com/DebuggingHardwareDetection to report this
bug...if you need any further info, just let me know!

ProblemType: Bug
Architecture: i386
DistroRelease: Ubuntu 9.04
Package: linux-image-2.6.28-6-386 2.6.28-6.20
ProcEnviron:
 LANGUAGE=en
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: linux-ports
Uname: Linux 2.6.28-6-386 i686

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


** Tags: apport-bug i386

-- 
USB modules are not being loaded
https://bugs.launchpad.net/bugs/379285
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 379286] [NEW] NetworkManager tainted leading to sudden kernel crash

2009-05-21 Thread lnxzilla
Public bug reported:

While typing away a document, screen went standby blank and the system
wouldn't respond to any keyboard or ponting device input. The num/scroll
lock lights started flashing indicating a kernel crash. This is a recent
(yesterday) clean Ubuntu Jaunty 9.04 64bit installation with all
updates. The system is an ASUS G1Sn laptop with nvidia 9500m GS using
the latest nvidia drivers and no desktop effects. At the time of the
crash the wired connection (RTL8111/8168B) was being used, the wireless
connection (Intel Corporation PRO/Wireless 4965 AGN) was enabled but NOT
connected/used.

1) $ lsb_release -rd
Description:Ubuntu 9.04
Release:9.04

2) $ apt-cache policy network-manager
network-manager:
  Installed: 0.7.1~rc4.1.cf199a964-0ubuntu2
  Candidate: 0.7.1~rc4.1.cf199a964-0ubuntu2
  Version table:
 *** 0.7.1~rc4.1.cf199a964-0ubuntu2 0
500 http://ubuntu.mirror.rafal.ca jaunty/main Packages
100 /var/lib/dpkg/status

3) Relevant /var/log/messages content:
May 21 22:30:21 ttz kernel: [93241.334690] Dumping ftrace buffer:
May 21 22:30:21 ttz kernel: [93241.334695](ftrace buffer empty)
May 21 22:30:21 ttz kernel: [93241.334698] CPU 1 
May 21 22:30:21 ttz kernel: [93241.334703] Modules linked in: isofs 
nls_iso8859_1 nls_cp437 vfat fat usb_storage hidp binfmt_misc ppdev bridge stp 
bnep input_polldev lp parport snd_hda_intel snd_pcm_oss snd_mixer_oss joydev 
snd_pcm snd_seq_dummy snd_seq_oss snd_seq_midi arc4 snd_rawmidi ecb 
snd_seq_midi_event snd_seq snd_timer iwlagn iwlcore snd_seq_device uvcvideo 
mac80211 compat_ioctl32 snd soundcore asus_laptop psmouse videodev pcspkr 
serio_raw cfg80211 asus_oled snd_page_alloc v4l1_compat ricoh_mmc sdhci_pci 
sdhci intel_agp iTCO_wdt iTCO_vendor_support video btusb led_class nvidia(P) 
output usbhid ohci1394 ieee1394 r8169 mii
May 21 22:30:21 ttz kernel: [93241.334810] Pid: 2856, comm: NetworkManager 
Tainted: P   2.6.28-11-generic #42-Ubuntu
May 21 22:30:21 ttz kernel: [93241.334816] RIP: 0010:[]  
[] rtnl_fill_ifinfo+0x1fd/0x590
May 21 22:30:21 ttz kernel: [93241.334831] RSP: 0018:8801358f7928  EFLAGS: 
00010206
May 21 22:30:21 ttz kernel: [93241.334836] RAX: 28cd920de1a45181 RBX: 
8801358f7974 RCX: 
May 21 22:30:21 ttz kernel: [93241.334841] RDX: 0004 RSI: 
8801358f7978 RDI: 880001464428
May 21 22:30:21 ttz kernel: [93241.334846] RBP: 8801358f79a8 R08: 
 R09: 
May 21 22:30:21 ttz kernel: [93241.334851] R10:  R11: 
 R12: 8801389a2000
May 21 22:30:21 ttz kernel: [93241.334856] R13: 880123198f00 R14: 
00400b28 R15: 4a14a900
May 21 22:30:21 ttz kernel: [93241.334862] FS:  7f1561c0e750() 
GS:88013f803a80() knlGS:
May 21 22:30:21 ttz kernel: [93241.334867] CS:  0010 DS:  ES:  CR0: 
80050033
May 21 22:30:21 ttz kernel: [93241.334872] CR2: 7f0e04375000 CR3: 
00013dd0e000 CR4: 06a0
May 21 22:30:21 ttz kernel: [93241.334877] DR0:  DR1: 
 DR2: 
May 21 22:30:21 ttz kernel: [93241.334882] DR3:  DR6: 
0ff0 DR7: 0400
May 21 22:30:21 ttz kernel: [93241.334888] Process NetworkManager (pid: 2856, 
threadinfo 8801358f6000, task 88013e801660)
May 21 22:30:21 ttz kernel: [93241.334896]  3e801698 8800014643dc 
0001 8801358f7ab8
May 21 22:30:21 ttz kernel: [93241.335205]  RSP 
May 21 22:30:21 ttz kernel: [93241.335210] ---[ end trace 43cefd9b71b50144 ]---

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
NetworkManager tainted leading to sudden kernel crash
https://bugs.launchpad.net/bugs/379286
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 358993] Re: Fglrx 8.6 + radeon 4850 freeze with video

2009-05-21 Thread tippettm
Please check with an updated driver/newer release of Ubuntu.

-- 
Fglrx 8.6 + radeon 4850 freeze with video
https://bugs.launchpad.net/bugs/358993
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 360756] Re: firefox crashed visiting apple site

2009-05-21 Thread afujihara
Thanks for taking the time to report this bug and helping to make Ubuntu 
better. 
I go to the website to reproduce the bug in my environment (jaunty, 
firefox-3.0: 
Installed: 3.0.10+nobinonly-0ubuntu0.9.04.1), but I can successfully see the 
site 
and moreover watch the flash video in the center without crash. 
After upgrading firefox, could you please check again whether this bug is 
reproducible? 

If reproducible, could you please add more information for it by looking to 
https://wiki.ubuntu.com/MozillaTeam/Bugs , Thanks in advance.


** Changed in: firefox-3.0 (Ubuntu)
   Status: New => Incomplete

** Changed in: firefox-3.0 (Ubuntu)
 Assignee: (unassigned) => afujihara (afujihara)

-- 
firefox crashed visiting apple site
https://bugs.launchpad.net/bugs/360756
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 379193] Re: New upstream release lemonpos 0.8

2009-05-21 Thread Launchpad Bug Tracker
This bug was fixed in the package lemonpos - 0.8-0ubuntu1

---
lemonpos (0.8-0ubuntu1) karmic; urgency=low

  * New upstream release (LP: #379193)
  * Drop cmake from build-deps
  * Bump kdelibs5-dev to 4.2.2
  * Transition from kde4.mk to pkg-kde-tools
   - debian/rules: Change '/usr/share/cdbs/1/class/kde4.mk' to
 '/usr/share/pkg-kde-tools/qt-kde-team/1/debian-qt-kde.mk'
   - debian/control: Build-Depend on 'pkg-kde-tools'
  * Fix lemon.install and lemonpos-data.install

 -- Alessandro GhersiThu, 21 May
2009 19:58:31 +0200

** Changed in: lemonpos (Ubuntu)
   Status: New => Fix Released

-- 
New upstream release lemonpos 0.8
https://bugs.launchpad.net/bugs/379193
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 367549] Re: my ati Sapphire x1650 512 mo agp can't use it in 3d the driver doesn't work correctly when e install the last driver from ATI website i get an black screen.

2009-05-21 Thread tippettm
(Not sure if this will work, but this is not an fglrx-installer issue.

** Changed in: fglrx-installer (Ubuntu)
   Status: New => Invalid

-- 
my ati Sapphire x1650 512 mo agp can't use it in 3d the driver doesn't work 
correctly   when e install the last driver from ATI website i get an black 
screen.
https://bugs.launchpad.net/bugs/367549
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 376741] Re: Desktop won't render (garbled) - after installing ATI Radeon Catalyst Control Center

2009-05-21 Thread sirald66
[correction, the correct command was 'apt-get remove fglrx-amdcccle']

I attempted a reinstall of the ATI Catalyst Control Center with the same
corrupt graphics result.

-- 
Desktop won't render (garbled) - after installing ATI Radeon Catalyst Control 
Center
https://bugs.launchpad.net/bugs/376741
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 367549] Re: my ati Sapphire x1650 512 mo agp can't use it in 3d the driver doesn't work correctly when e install the last driver from ATI website i get an black screen.

2009-05-21 Thread tippettm
The proprietary driver provided by fglrx-installer no longer supports
the x1k family of cards.  You should move to use the Open Source radeon
driver.

-- 
my ati Sapphire x1650 512 mo agp can't use it in 3d the driver doesn't work 
correctly   when e install the last driver from ATI website i get an black 
screen.
https://bugs.launchpad.net/bugs/367549
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 272587] Re: Resuming from Suspend cause power button action to be called

2009-05-21 Thread Scott Howard
Thanks for the report and the detective work. Does this bug still exist
in Jaunty?

The report demonstrates the power button event and this bug is described
in the description of bug #44058, so I'm marking it confirmed.

The description of bug #44058: "When manually choosing for suspend
(through System -> Logout), this works fine (although I keep getting the
logout window when I resume, but that might be a different bug)."

** Changed in: gnome-power-manager (Ubuntu)
   Status: Incomplete => Confirmed

-- 
Resuming from Suspend cause power button action to be called
https://bugs.launchpad.net/bugs/272587
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 367318] Re: in VT, screen not being saved (vcsa permission problem to blame)

2009-05-21 Thread Shentino
Just thought though of one thing that MC *could* do in the meantime, as
a workaround.

Since an inaccessible /dev/vcsa device prevents MC from properly saving
and restoring the screen when using C-O to flip flop to and from the
subshell, methinks that MC should be able to recognize a permission
problem and both issue a proper diagnostic and perhaps cease trying.

-- 
in VT, screen not being saved (vcsa permission problem to blame)
https://bugs.launchpad.net/bugs/367318
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 377983] Re: Lost Tab settings

2009-05-21 Thread Kurt Wall
Thanks for taking the time to report this bug and helping to improve
Ubuntu. Could you please add more information for it by following the
suggestions at https://wiki.ubuntu.com/MozillaTeam/Bugs. In particular,
can you reproduce this behavior using a new profile? It isn't necessary
to delete your current profile; just create a new one.

Regards,

Kurt

-- 
Lost Tab settings
https://bugs.launchpad.net/bugs/377983
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 376741] Re: Desktop won't render (garbled) - after installing ATI Radeon Catalyst Control Center

2009-05-21 Thread sirald66
from a root command line, the following appears to have restored access
to my graphics and destop:

apt-cache search catalyst

apt-get remove fglrx-amdccle

apt-get autoremove

-- 
Desktop won't render (garbled) - after installing ATI Radeon Catalyst Control 
Center
https://bugs.launchpad.net/bugs/376741
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 378180] Re: Canon backend exhibits segfault during open

2009-05-21 Thread tones111
I'm trying to debug this and am having a little bit of difficulty.  I'm
able to use the following configure command to compile debugging symbols
into libsane, but am unable to disable optimizations.  This is
preventing me from seeing many relevant variables when stepping through
with gdb.  I'm still a little new at debugging, any suggestions?

./configure --prefix=/usr --sysconfdir=/etc --enable-debug=yes
--disable-optimization

However, I think I've found the root of the problem.  I'm building a
vanilla libsane 1.0.20 from the sane project's download mirror.  The
problem lies in backends/canon.c.

line 255 parses the "film type" from what I believe is a message from my
scanner hardware.  During normal runs this value is 0.  Occasionally I
see 5 being returned.  This causes a segfault at line 1763 since it
overflows the tpu_filmtype_list array.  That array is defined at line
183 and only has 5 elements.  So, strdup is given a bogus string pointer
and generates a seg fault when trying to determine its length.

The sensible solution to this problem is to a bounds check near line 255
to restrict the film type to a sane value given the hard coded array.

FWIW my scanner is a Canon FB1200S (model #IX-12015E) which connects
through an Adaptec AIC-7850 scsi controller.

If someone could point me to some docs on Ubuntu's process to submit a
patch I could give it a shot myself.

-- 
Canon backend exhibits segfault during open
https://bugs.launchpad.net/bugs/378180
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 366668] Re: ctrl makes tabs close

2009-05-21 Thread Kurt Wall
** Package changed: firefox-3.0 (Ubuntu) => compiz (Ubuntu)

-- 
ctrl makes tabs close
https://bugs.launchpad.net/bugs/38
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   3   4   5   6   7   8   9   10   >