[Bug 331128] Re: virtio on hardy guest and jaunty host (kvm 84) is broken

2009-03-12 Thread Dustin Kirkland
Jamie-

Try adding -net user to the end of the kvm command.

So:
 $ /usr/bin/kvm -S -M pc -m 384 -smp 1 -name sec-hardy-i386 -uuid 
c28d7c53-0da0-75c0-b360-df536d434f51 -monitor pty -pidfile 
/var/run/libvirt/qemu//sec-hardy-i386.pid -boot c -drive 
file=/srv/vms/kvm/sec-hardy-i386/root.qcow2,if=ide,index=0,boot=on -net 
nic,macaddr=00:16:36:70:61:a2,vlan=0,model=virtio -net 
tap,fd=18,script=,vlan=0,ifname=vnet1 -serial none -parallel none -usb -vnc 
127.0.0.1:2 -net user

This is working like a champ for me, with a Jaunty host, and both Hardy and 
Jaunty guests:
 $ kvm -hda hardy-server.img -cdrom ../iso/ubuntu-8.04.1-server-amd64.iso -net 
nic,model=virtio -net user

:-Dustin

** Also affects: virt-manager (Ubuntu)
   Importance: Undecided
   Status: New

-- 
virtio on hardy guest and jaunty host (kvm 84) is broken
https://bugs.launchpad.net/bugs/331128
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 331128] Re: virtio on hardy guest and jaunty host (kvm 84) is broken

2009-03-12 Thread Dustin Kirkland
I'm marking this against virt-manager, since kvm with the right
parameter works.

Would it make sense to get virt-manager (and/or libvirt-bin) to append
the -net user bit automatically?

:-Dustin

** Changed in: virt-manager (Ubuntu)
   Importance: Undecided = High
   Status: New = Confirmed

** Changed in: kvm (Ubuntu)
   Status: Confirmed = Triaged

-- 
virtio on hardy guest and jaunty host (kvm 84) is broken
https://bugs.launchpad.net/bugs/331128
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 328035] Re: *** glibc detected *** free(): invalid next size (fast) for xf86Wakeup() call

2009-03-12 Thread Steve Langasek
Yes, this bug has not recurred since I downgraded.

-- 
*** glibc detected *** free(): invalid next size (fast) for xf86Wakeup() call
https://bugs.launchpad.net/bugs/328035
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 317781] Re: Ext4 data loss

2009-03-12 Thread Daniel Colascione
The fundamental problem is that there are two similar but different
operations an application developer can request:

1. open(A)-write(A,data)-close(A)-rename(A,B): replace the contents of B
with data, atomically. I don't care when or even if you make the change,
but whenever you get around to it, make sure either the old or the new
version is in place.

2. open(A)-write(A,data)-fsync(A)-close(A)-rename(A,B): replace the
contents of B with data, and do it now.

In practice, operation 1 has worked as described on ext2, ext3, and UFS
with soft-updates, but fails on XFS and unpatched ext4. Operation 1 is
perfectly sane: it's asking for atomicity without durability. KDE's
configuration is a perfect candiate. Browser history is another. For a
mail server or an interactive editor, of course, you'd want operation 2.

Some people suggest simply replacing operation 1 with operation 2.
That's stupid. While operation 2 satisfies all the constraints of
operation 1, it incurs a drastic and unnecessary performance penalty. By
claiming operation 1 is simply operation 2 spelled incorrectly, you
remove an important word from an application programmer's vocabulary.
How else is an he supposed to request atomicity without durability?

(And using a real database isn't a good enough answer: then you've
just punted the same problem to a far heavier system, and for no good
reason. As another commenter mentioned, it's a lot easier to administer
a set of small, independent text files. There is no reason a filesystem
in 2009 should be able to cope a few hundred files.)

The fixes in 2.6.30 seem to make operation 1 work correctly, and that's
good enough for me. I don't recommend application developers insert
fsync calls everywhere; that will kill performance. Just use operation 1
and complain loudly when filesystems break it. While it may not be
guaranteed by POSIX, operation 1's atomicity is nevertheless something
any sane filesystme should provide.

-- 
Ext4 data loss
https://bugs.launchpad.net/bugs/317781
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 315489] Re: Kernel oops loading Agere firmware (orinoco module)

2009-03-12 Thread ericw
Hi,
This is just a guess, but according to this mailing list post: 
http://lkml.indiana.edu/hypermail/linux/kernel/0903.0/5.html
the firmware files downloaded from gitweb are getting corrupted due to a bug in 
gitweb.

The correct agere_sta_fw.bin is 65046 bytes long. The corrupted 
agere_sta_fw.bin is 89729 bytes long.
There is a way to recode the original binary with GNU recode: recode 
utf8..iso8859-1 agere_sta_fw.bin

I tried downloading that firmware, fixing it with recode, and placing it
in /lib/firmware on my jaunty alpha 5 installation with a lucent/orinoco
silver card. It seems to have worked - dmesg now reports that the card
can do WPA, but I haven't had a chance to test the WPA yet.

On another note, if this works, it would be nice if there was an ubuntu
package with it. It takes some hunting to figure out that you have to
download the firmware yourself :)

-- 
Kernel oops loading Agere firmware (orinoco module)
https://bugs.launchpad.net/bugs/315489
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 105251] Re: NetworkManager wrongly releases DHCP IP

2009-03-12 Thread fschmitt
fix mentioned by austriaco: https://bugs.launchpad.net/ubuntu/+source
/network-manager/+bug/105251/comments/24 doesnt work

** Changed in: network-manager (Ubuntu)
   Status: Fix Released = Confirmed

-- 
NetworkManager wrongly releases DHCP IP
https://bugs.launchpad.net/bugs/105251
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 341546] [NEW] Volume control would not lock in place

2009-03-12 Thread Pete Dela Cruz
Public bug reported:

Everytime I start the system, I find the sound volume control in a
different position in the panel than it was before. Same problem with
the User icon and the network icon on top of the panel. Looks like they
are switching positions everytime. This is minor but quite annoying.

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
Volume control would not lock in place
https://bugs.launchpad.net/bugs/341546
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 341543] Re: aptDBUSBackend.py crashed with ImportError in module()

2009-03-12 Thread Apport retracing service
*** This bug is a duplicate of bug 285137 ***
https://bugs.launchpad.net/bugs/285137

** Tags removed: need-duplicate-check

** Attachment removed: Dependencies.txt

   http://launchpadlibrarian.net/23772684/Dependencies.txt

** Attachment removed: ProcMaps.txt

   http://launchpadlibrarian.net/23772685/ProcMaps.txt

** Attachment removed: ProcStatus.txt

   http://launchpadlibrarian.net/23772686/ProcStatus.txt

** Visibility changed to: Public

** This bug has been marked a duplicate of bug 285137
   aptDBUSBackend.py crashed with ImportError in module()

-- 
aptDBUSBackend.py crashed with ImportError in module()
https://bugs.launchpad.net/bugs/341543
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 296610] Re: ALPS DualPoint Touchpad flaky performance

2009-03-12 Thread Antti P Miettinen
I found a reproducible way to cause sync errors even with the above
patch applied. This may sound a bit weird, but whenever I use the RF
switch at the side of the E4300 and at the same time e.g. keep tapping
the touchpad, I get something like:

psmouse.c: DualPoint TouchPad at isa0060/serio1/input0 lost
synchronization, throwing 4 bytes away.

And the ALPS touchpad dissappears. Switching the RF on seems to register
HID devices and that apparently interferes with the touchpad/pointing
stick driver. For me this has the nasty side effect that the touchpad
gets enabled even though I'm trying very hard to disable it as I keep
touching it accidentally while I'm typing.

-- 
ALPS DualPoint Touchpad flaky performance
https://bugs.launchpad.net/bugs/296610
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 289191] Re: Nokia 6500 Classic not supported yet

2009-03-12 Thread Martijn van de Streek
This has been added in upstream libmtp (0.3.5 has it).

-- 
Nokia 6500 Classic not supported yet
https://bugs.launchpad.net/bugs/289191
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 256296] Re: USB id 0af0:6911 should use hso and not 'option' driver

2009-03-12 Thread Martijn van de Streek
Alexander, could you provide a pre-built kernel with those patches?

-- 
USB id 0af0:6911 should use hso and not 'option' driver
https://bugs.launchpad.net/bugs/256296
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 341545] Re: paman crashed with SIGFPE in pa_cvolume_avg()

2009-03-12 Thread Apport retracing service
*** This bug is a duplicate of bug 323682 ***
https://bugs.launchpad.net/bugs/323682

** Attachment removed: ProcMaps.txt

   http://launchpadlibrarian.net/23772811/ProcMaps.txt

** Attachment removed: Registers.txt

   http://launchpadlibrarian.net/23772813/Registers.txt

** Attachment removed: ThreadStacktrace.txt

   http://launchpadlibrarian.net/23772815/ThreadStacktrace.txt

** Attachment removed: Dependencies.txt

   http://launchpadlibrarian.net/23772809/Dependencies.txt

** Attachment removed: ProcStatus.txt

   http://launchpadlibrarian.net/23772812/ProcStatus.txt

** Attachment removed: Disassembly.txt

   http://launchpadlibrarian.net/23772810/Disassembly.txt

** Attachment removed: CoreDump.gz

   http://launchpadlibrarian.net/23772808/CoreDump.gz

** Attachment removed: Stacktrace.txt

   http://launchpadlibrarian.net/23772814/Stacktrace.txt

** Visibility changed to: Public

** This bug has been marked a duplicate of bug 323682
   paman crashed with SIGFPE in pa_cvolume_avg()

** Tags removed: need-amd64-retrace

-- 
paman crashed with SIGFPE in pa_cvolume_avg()
https://bugs.launchpad.net/bugs/341545
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 187471] Re: Please migrate openldap2.3 to a later libdb version than libdb4.2

2009-03-12 Thread Bug Watch Updater
** Changed in: openldap2.3 (Debian)
   Status: New = Fix Released

-- 
Please migrate openldap2.3 to a later libdb version than libdb4.2
https://bugs.launchpad.net/bugs/187471
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 341533] Re: FTBFS because of missing package libglade-2.0 - transition to python2.6

2009-03-12 Thread Launchpad Bug Tracker
This bug was fixed in the package zapping - 0.10~cvs6-2ubuntu2

---
zapping (0.10~cvs6-2ubuntu2) jaunty; urgency=low

  * debian/control: add libglade2-dev as build dependency (LP: #341533)

 -- Fabrice Coutadeur coutade...@gmail.com   Wed, 11 Mar 2009 20:49:42
+

** Changed in: zapping (Ubuntu)
   Status: Confirmed = Fix Released

-- 
FTBFS because of missing package libglade-2.0 - transition to python2.6
https://bugs.launchpad.net/bugs/341533
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 341409] Re: Edited the package for the Python 2.6 transition

2009-03-12 Thread Daniel Holbach
Should there be a python2.6 version of mmkeys.so too?

-- 
Edited the package for the Python 2.6 transition
https://bugs.launchpad.net/bugs/341409
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 340260] Re: New upstream release (0.3.2.1)

2009-03-12 Thread Daniel Holbach
Can you give a link to what you want sponsored?

-- 
New upstream release (0.3.2.1)
https://bugs.launchpad.net/bugs/340260
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 339863] Re: [FFe] Please merge Blam 1.8.6 from Debian Unstable

2009-03-12 Thread Daniel Holbach
Jo: you seem to be throwing a bunch of changelog history away:
dan...@bert:~$ diff -ruN blam-1.8.{5,6}/debian/changelog | diffstat
 changelog |  115 ++
 1 file changed, 41 insertions(+), 74 deletions(-)
dan...@bert:~$

-- 
[FFe] Please merge Blam 1.8.6 from Debian Unstable
https://bugs.launchpad.net/bugs/339863
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 285137] Re: aptDBUSBackend.py crashed with ImportError in module()

2009-03-12 Thread James Westby
** Visibility changed to: Public

-- 
aptDBUSBackend.py crashed with ImportError in module()
https://bugs.launchpad.net/bugs/285137
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 341265] Re: gwibber crashed with SIGSEGV in g_cclosure_marshal_VOID__BOXED()

2009-03-12 Thread Daniel Holbach
** Visibility changed to: Public

-- 
gwibber crashed with SIGSEGV in g_cclosure_marshal_VOID__BOXED()
https://bugs.launchpad.net/bugs/341265
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 341252] Re: gwibber crashed with AttributeError in on_link_clicked()

2009-03-12 Thread Daniel Holbach
** Visibility changed to: Public

-- 
gwibber crashed with AttributeError in on_link_clicked()
https://bugs.launchpad.net/bugs/341252
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 340971] Re: Please sync nant 0.85.dfsg1-7 (main) from Debian unstable (main).

2009-03-12 Thread Daniel Holbach
ACKed.

** Changed in: nant (Ubuntu)
   Status: New = Confirmed

-- 
Please sync nant 0.85.dfsg1-7 (main) from Debian unstable (main).
https://bugs.launchpad.net/bugs/340971
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 340637] Re: gwibber crashed with IOError in set_data()

2009-03-12 Thread Daniel Holbach
** Visibility changed to: Public

-- 
gwibber crashed with IOError in set_data()
https://bugs.launchpad.net/bugs/340637
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 338670] Re: [Wishlist] Enable assistive technologies

2009-03-12 Thread arky
An option to enable Gnome Assistive technologies like orca screen reader
on the installation. It is in the interest of blind and low vision users
who are installing Ubuntu gnu/linux on there machines.

-- 
[Wishlist] Enable assistive technologies
https://bugs.launchpad.net/bugs/338670
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 133072] Re: tty console doen't show characters with accent

2009-03-12 Thread EagleScreen
I can confirm this bug also in Ubuntu 9.04 in two complete different computers 
(all I have for testing), one is amd64 and the other one is i386.
'sudo setupcon' fixes the problem, but it is necessary to run it each time you 
log in to a tty.
Both computers have Spanish configuration.

-- 
tty console doen't show characters with accent
https://bugs.launchpad.net/bugs/133072
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 341552] [NEW] lose browser history after reboot

2009-03-12 Thread emptyhua
Public bug reported:

Binary package hint: firefox-3.0

firefox 3.0.7 on ubuntu 8.10

after a reboot bookmarks and history are lost, back,forward and refresh
button can not be used anymore

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

-- 
lose browser history after reboot
https://bugs.launchpad.net/bugs/341552
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 339362] Re: Please sync log4net 1.2.10+dfsg-3 (main) from Debian unstable (main).

2009-03-12 Thread Daniel Holbach
ACKed.

** Changed in: log4net (Ubuntu)
   Status: New = Confirmed

-- 
Please sync log4net 1.2.10+dfsg-3 (main) from Debian unstable (main).
https://bugs.launchpad.net/bugs/339362
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 341552] Re: lose browser history after reboot

2009-03-12 Thread emptyhua

** Attachment added: Screenshot-Bug #202639 in firefox-3.0 (Ubuntu): “Firefox 
history” - Mozilla Firefox.png
   
http://launchpadlibrarian.net/23773184/Screenshot-Bug%20%23202639%20in%20firefox-3.0%20%28Ubuntu%29%3A%20%E2%80%9CFirefox%20history%E2%80%9D%20-%20Mozilla%20Firefox.png

-- 
lose browser history after reboot
https://bugs.launchpad.net/bugs/341552
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 341554] [NEW] apcupsd kernel oops in usbhid:hiddev_ioctl+0x67/0xae0

2009-03-12 Thread lak
Public bug reported:

Binary package hint: apcupsd

ii  apcupsd   3.14.2-1build1APC UPS 
Power Management (daemon)
Linux lexus 2.6.24-19-generic #1 SMP Wed Aug 20 17:53:40 UTC 2008 x86_64 GNU/Lin
Description:Ubuntu 8.04.2
Release:8.04

apcupsd should be started during boot, but it does not. I then proceed
to issues:

bash: sudo /etc/init.d/apcupsd start
Starting UPS power management: apcupsd.

bash: sudo apcaccess status
APC  : 001,039,0900
DATE : Wed Mar 11 23:15:11 PDT 2009
HOSTNAME : lexus
RELEASE  : 3.14.2
VERSION  : 3.14.2 (15 September 2007) debian
UPSNAME  : lexus
CABLE: USB Cable
MODEL: USB UPS Driver
UPSMODE  : Stand Alone
STARTTIME: Wed Mar 11 23:15:09 PDT 2009
STATUS   : COMMLOST 
LINEV: 000.0 Volts
LOADPCT  :   0.0 Percent Load Capacity
BCHARGE  : 000.0 Percent
TIMELEFT :   0.0 Minutes
MBATTCHG : 5 Percent
MINTIMEL : 3 Minutes
MAXTIME  : 15 Seconds
OUTPUTV  : 000.0 Volts
SENSE: Unknown
DWAKE: -01 Seconds
DSHUTD   : -01 Seconds
LOTRANS  : -01.0 Volts
HITRANS  : -01.0 Volts
RETPCT   : -01.0 Percent
ITEMP: 00.0 C Internal
ALARMDEL : Always
BATTV: 00.0 Volts
LINEFREQ : 0.0 Hz
NUMXFERS : 0
TONBATT  : 0 seconds
CUMONBATT: 0 seconds
XOFFBATT : N/A
STATFLAG : 0x07000100 Status Flag
SERIALNO : 
BATTDATE : 
NOMOUTV  : -01
NOMBATTV :   0.0
APCMODEL : 
END APC  : Wed Mar 11 23:15:12 PDT 2009

Issue the command again:

sudo apcaccess status
FATAL ERROR in apcaccess.c at line 51

ps -A | grep apcupsd
8546 ?00:00:00 apcupsd defunct

dmesg

[  139.451606] hub 1-0:1.0: port 10 disabled by hub (EMI?), re-enabling...
[  139.451612] usb 1-10: USB disconnect, address 19
[  139.452321] /build/buildd/linux-2.6.24/drivers/hid/usbhid/hid-core.c: 
usb_submit_urb(ctrl) failed
[  139.520161] usb 1-10: new low speed USB device using ohci_hcd and address 20
[  139.605561] usb 1-10: configuration #1 chosen from 1 choice
[  140.098330] hiddev98hidraw4: USB HID v1.10 Device [American Power Conversion 
Smart-UPS 750 FW:651.18.D USB FW:7.3] on usb-:00:02.0-10
[  142.208754] hub 1-0:1.0: port 10 disabled by hub (EMI?), re-enabling...
[  142.208760] usb 1-10: USB disconnect, address 20
[  142.209433] /build/buildd/linux-2.6.24/drivers/hid/usbhid/hid-core.c: 
usb_submit_urb(ctrl) failed
[  142.217143] Unable to handle kernel paging request at d4afbd18 RIP: 
[  142.217148]  [881f0a67] :usbhid:hiddev_ioctl+0x67/0xae0
[  142.217154] PGD d0aab067 PUD 0 
[  142.217156] Oops:  [2] SMP 
[  142.217158] CPU 1 
[  142.217159] Modules linked in: vmnet vsock(F) vmci vmmon rfcomm l2cap 
bluetooth nfsd auth_rpcgss exportfs ppdev autofs4 powernow_k8 cpufreq_ondemand 
cpufreq_conservative cpufreq_powersave cpufreq_userspace cpufreq_stats 
freq_table dock container video output sbs sbshc ipv6 battery nfs lockd nfs_acl 
sunrpc iptable_filter ip_tables x_tables xfs ac w83627ehf hwmon_vid sbp2 
parport_pc lp parport loop af_packet snd_hda_intel snd_pcm_oss snd_mixer_oss 
snd_pcm k8temp snd_page_alloc evdev nvidia(P) pcspkr snd_hwdep snd_seq_dummy 
snd_seq_oss snd_seq_midi snd_rawmidi snd_seq_midi_event snd_seq snd_timer 
snd_seq_device snd i2c_nforce2 button shpchp pci_hotplug i2c_core soundcore 
ext3 jbd mbcache usbhid hid sr_mod cdrom pata_acpi sg sd_mod pata_amd sata_nv 
sata_sil24 ata_generic ohci1394 libata ieee1394 forcedeth scsi_mod ehci_hcd 
ohci_hcd usbcore raid10 raid456 async_xor async_memcpy async_tx xor raid1 raid0 
multipath linear md_mod dm_mirror dm_snapshot dm_mod thermal processor fan 
fbcon tileblit font bitblit softcursor fuse
[  142.217203] Pid: 8546, comm: apcupsd Tainted: PF D 2.6.24-19-generic #1
[  142.217205] RIP: 0010:[881f0a67]  [881f0a67] 
:usbhid:hiddev_ioctl+0x67/0xae0
[  142.217210] RSP: 0018:8100ce847e08  EFLAGS: 00010246
[  142.217211] RAX: d4afbc30 RBX: 400c4807 RCX: 7fff90b62e60
[  142.217213] RDX: 810119972580 RSI: fffb RDI: 810108965800
[  142.217214] RBP: 8100d0b8e000 R08: 8101174500c8 R09: 
[  142.217216] R10: 0008 R11: 803169a0 R12: 400c4807
[  142.217218] R13: 7fff90b62e60 R14: 400c4807 R15: 7fff90b63140
[  142.217219] FS:  7fef88b4a6e0() GS:81011bc01800() 
knlGS:f7dce8c0
[  142.217221] CS:  0010 DS:  ES:  CR0: 8005003b
[  142.217223] CR2: d4afbd18 CR3: ce8a5000 CR4: 06e0
[  142.217224] DR0:  DR1:  DR2: 
[  142.217226] DR3:  DR6: 0ff0 DR7: 0400
[  142.217227] Process apcupsd (pid: 8546, threadinfo 8100ce846000, task 
8100d4aa97a0)
[  142.217229] Stack:  8100ce847ea8 8100d4aa97a0 0282 
80256ba9
[  142.217232]  8100ce847ea8  0282 
80256c69
[  142.217234]  0282 8100ce847ea8 0282 
8100ce847ea8
[  

[Bug 341553] Re: compiz.real crashed with SIGSEGV

2009-03-12 Thread Martin Heitzer

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

** Attachment added: CoreDump.gz
   http://launchpadlibrarian.net/23773250/CoreDump.gz

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

** Attachment added: Disassembly.txt
   http://launchpadlibrarian.net/23773252/Disassembly.txt

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

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

** Attachment added: Lsusb.txt
   http://launchpadlibrarian.net/23773255/Lsusb.txt

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

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

** Attachment added: ProcMaps.txt
   http://launchpadlibrarian.net/23773258/ProcMaps.txt

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

** Attachment added: ProcStatus.txt
   http://launchpadlibrarian.net/23773261/ProcStatus.txt

** Attachment added: Registers.txt
   http://launchpadlibrarian.net/23773262/Registers.txt

** Attachment added: XorgLog.txt
   http://launchpadlibrarian.net/23773263/XorgLog.txt

** Attachment added: XsessionErrors.txt
   http://launchpadlibrarian.net/23773264/XsessionErrors.txt

** Visibility changed to: Public

-- 
compiz.real crashed with SIGSEGV
https://bugs.launchpad.net/bugs/341553
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 341506] Re: Freeze exception request for bzr-svn 0.5.3-1

2009-03-12 Thread Iulian Udrea
Ack

** Changed in: bzr-svn (Ubuntu)
   Status: New = Confirmed

-- 
Freeze exception request for bzr-svn 0.5.3-1
https://bugs.launchpad.net/bugs/341506
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 339365] Re: Please sync mysql-connector-net-5.0 5.2.1+dfsg-3 (universe) from Debian unstable (main).

2009-03-12 Thread Daniel Holbach
ACKed.

** Changed in: mysql-connector-net-5.0 (Ubuntu)
   Status: New = Confirmed

-- 
Please sync mysql-connector-net-5.0 5.2.1+dfsg-3 (universe) from Debian 
unstable (main).
https://bugs.launchpad.net/bugs/339365
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 338554] Re: [jaunty] libhdate-python: Depends: python ( 2.6)

2009-03-12 Thread Alessio Treglia
libhdate (1.4.12-2build1) jaunty; urgency=low

  * No change rebuild to build with Python 2.6.


** Changed in: libhdate (Ubuntu)
 Assignee: (unassigned) = Alessio Treglia (quadrispro)
   Status: New = Fix Committed

** Changed in: libhdate (Ubuntu)
 Assignee: Alessio Treglia (quadrispro) = (unassigned)
   Status: Fix Committed = Fix Released

-- 
[jaunty] libhdate-python: Depends: python ( 2.6)
https://bugs.launchpad.net/bugs/338554
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 301353] Re: HP Pavilion dv5: ATA exception on resume from suspend

2009-03-12 Thread Starcraftmazter
RetributionLSR, I have Jaunty with that kernel and suspend does *not*
work for me. What exact model is your laptop? And are you sure it all
works?

Also, I have been using Jaunty for almost a month, and have had no real
sound issues (just a bit of static sometimes).

Cheers

-- 
HP Pavilion dv5: ATA exception on resume from suspend
https://bugs.launchpad.net/bugs/301353
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 159518] Re: no display in google analytics

2009-03-12 Thread sahab
Issue has been resolved. I have reinstalled adobe flash player non
free...

-- 
no display in google analytics
https://bugs.launchpad.net/bugs/159518
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 339633] Re: FFE for kopete-plugin-thinklight 0.5

2009-03-12 Thread Iulian Udrea
I've just changed the status to incomplete as we are waiting for it to
be tested on a Thinkpad.

Please change the status back to NEW when the testing has been done.

** Changed in: kopete-plugin-thinklight (Ubuntu)
   Status: New = Incomplete

-- 
FFE for kopete-plugin-thinklight 0.5
https://bugs.launchpad.net/bugs/339633
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 332042] Re: notify-osd crashed with SIGSEGV in _gtk_marshal_BOOLEAN__BOXED()

2009-03-12 Thread David Barth
Hi Dave,

Can you describe a reproducible test case that exposes the bug? I've
tried closing a PDF in evince at the same time I had a bubble on screen
but that does not trigger the bug.

-- 
notify-osd crashed with SIGSEGV in _gtk_marshal_BOOLEAN__BOXED()
https://bugs.launchpad.net/bugs/332042
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 144745] Re: Z-Star Microelectronics Corp. ZC0301 WebCam detected (0ac8:301b), but not working - Bad module

2009-03-12 Thread berduchwal
does not work for:
lsusb
Bus 004 Device 003: ID 0ac8:303b Z-Star Microelectronics Corp. ZC0303 WebCam

still the same in Skype

-- 
Z-Star Microelectronics Corp. ZC0301 WebCam detected (0ac8:301b), but not 
working - Bad module
https://bugs.launchpad.net/bugs/144745
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 338588] Re: update the tg3 to version 3.95 to support amd sb800 5785 NIC

2009-03-12 Thread Henry
** Visibility changed to: Private

-- 
update the tg3 to version 3.95 to support amd sb800 5785 NIC
https://bugs.launchpad.net/bugs/338588
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 332042] Re: notify-osd crashed with SIGSEGV in _gtk_marshal_BOOLEAN__BOXED()

2009-03-12 Thread Daniel Holbach
David: check out a few of the duplicates - there are a lot of different
scenarios. For me it was always the following: download a file with the
epiphany-browser - it will open a popup when the download is finished.

-- 
notify-osd crashed with SIGSEGV in _gtk_marshal_BOOLEAN__BOXED()
https://bugs.launchpad.net/bugs/332042
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 341557] [NEW] toggle on/off each status indicator individually

2009-03-12 Thread Dustin Kirkland
Public bug reported:

Binary package hint: screen-profiles

There are a number of status indicators in the two bars at the bottom of
screen-profiles.

Recently, I removed the u...@hostname item to make room for Menu:F9.

While Menu:F9 is really useful to new users, it's not so useful to more
seasoned users.  These users have expressed an interest in disabling
Menu:F9, and having u...@hostname back.

One can imagine situations where people would like to enable/disable
each status item independently.

I have a very trivial way of setting this in a config file.

:-Dustin

** Affects: screen-profiles (Ubuntu)
 Importance: Medium
 Assignee: Dustin Kirkland (kirkland)
 Status: In Progress

** Changed in: screen-profiles (Ubuntu)
   Importance: Undecided = Medium
 Assignee: (unassigned) = Dustin Kirkland (kirkland)
   Status: New = In Progress

-- 
toggle on/off each status indicator individually
https://bugs.launchpad.net/bugs/341557
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 341553] Re: compiz.real crashed with SIGSEGV

2009-03-12 Thread Apport retracing service
*** This bug is a duplicate of bug 279820 ***
https://bugs.launchpad.net/bugs/279820

** Attachment removed: Registers.txt

   http://launchpadlibrarian.net/23773262/Registers.txt

** Attachment removed: ProcStatus.txt

   http://launchpadlibrarian.net/23773261/ProcStatus.txt

** Attachment removed: Dependencies.txt

   http://launchpadlibrarian.net/23773251/Dependencies.txt

** Attachment removed: CoreDump.gz

   http://launchpadlibrarian.net/23773250/CoreDump.gz

** Attachment removed: Disassembly.txt

   http://launchpadlibrarian.net/23773252/Disassembly.txt

** Attachment removed: ProcMaps.txt

   http://launchpadlibrarian.net/23773258/ProcMaps.txt

** This bug has been marked a duplicate of bug 279820
   compiz.real crashed with SIGSEGV

** Tags removed: need-i386-retrace

-- 
compiz.real crashed with SIGSEGV
https://bugs.launchpad.net/bugs/341553
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 338588] Re: update the tg3 to version 3.95 to support amd sb800 5785 NIC

2009-03-12 Thread Henry
** Visibility changed to: Public

-- 
update the tg3 to version 3.95 to support amd sb800 5785 NIC
https://bugs.launchpad.net/bugs/338588
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

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


Re: [Bug 335737] Re: gimp crashes

2009-03-12 Thread kaotixx
*** This bug is a duplicate of bug 331306 ***
https://bugs.launchpad.net/bugs/331306

Sebastian : Müll hier nicht den blog voll !!!

Am 05.03.2009 17:14, schrieb Sebastien Bacher:
 *** This bug is a duplicate of bug 331306 ***
  https://bugs.launchpad.net/bugs/331306

 Thanks for the bug report. This particular bug has already been
 reported, but feel free to report any other bugs you find.

 ** Changed in: gimp (Ubuntu)
 Importance: Undecided =  Medium
 Status: Incomplete =  Invalid

 ** This bug has been marked a duplicate of bug 331306
 gimp-2.6 crashed with SIGSEGV in IA__g_object_get()



-- 
gimp crashes
https://bugs.launchpad.net/bugs/335737
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 341328] Re: Mascyma does not work

2009-03-12 Thread Ansus
Intrepid

** Changed in: mascyma (Ubuntu)
   Status: Incomplete = New

-- 
Mascyma does not work
https://bugs.launchpad.net/bugs/341328
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 326341] Re: Jaunty - Switch Desktop does not function properly

2009-03-12 Thread Markus Birth
I tried desktop-switcher yesterday on my netbook with Jaunty and
experienced this bug with the fast-user-switch-applet:

https://bugs.launchpad.net/ubuntu/+source/fast-user-switch-
applet/+bug/301309/comments/10

Additionally, it didn't restore the proper skin/window theme for the
netbook-remix.

-- 
Jaunty - Switch Desktop does not function properly
https://bugs.launchpad.net/bugs/326341
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 316994] Re: [upstream] exporting to MediaWiki.txt is broken

2009-03-12 Thread Matthias Mailänder
issues before were duplicates

** Changed in: openoffice
 Bugwatch: OpenOffice.org Issue Tracker #96505 = OpenOffice.org Issue 
Tracker #99703
   Status: Invalid = Unknown

-- 
[upstream] exporting to MediaWiki.txt is broken
https://bugs.launchpad.net/bugs/316994
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 328650] Re: [Jaunty Alpha 4] on amd64, title bar disappear when using normal or extra visual effects

2009-03-12 Thread Jason Allen
Getting this same problem again with Jaunty alpha 5, with fully updated
system.

-- 
[Jaunty Alpha 4] on amd64, title bar disappear when using normal or extra 
visual effects
https://bugs.launchpad.net/bugs/328650
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 339449] Re: FeatureFreezeException: Merge mit-scheme with Debian

2009-03-12 Thread Evan Broder
This hit the archive some time in the last few hours. Thanks for your
help, Iulian, Scott, and John.

** Changed in: mit-scheme (Ubuntu)
   Status: Fix Committed = Fix Released

-- 
FeatureFreezeException: Merge mit-scheme with Debian
https://bugs.launchpad.net/bugs/339449
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 341559] [NEW] KDE close session hangs computer.

2009-03-12 Thread EagleScreen
Public bug reported:

Binary package hint: kdm

Running Kubuntu 9.04 (development branch).
I logout from KDE.
It is expected to go to kdm.
What happens?
X session hangs, it results in tty consoles, tty7 is locked, it only shows: * 
Reloading Postfix configuration...
I run 'kdm restart' and I go to kdm.
I log in KDE.
I close KDE session for second time.
It is expected to go to kdm.
What happens?
Screen keep black, I cannot change to tty terminals, Crtl + Alt + BackSpace do 
nothing, Alt + Impr + B does not restart computer, but power button starts a 
system shutdown as normally.

kdm version: 4:4.2.1a-0ubuntu3
kdelibs version: 4:4.2.1a-0ubuntu2
xserver-xorg: 1:7.4~5ubuntu15
xserver-xorg-core: 2:1.6.0-0ubuntu1
xserver-xorg-video-intel: 2:2.6.1-1ubuntu4

Arch: amd64.

** Affects: kdebase-workspace (Ubuntu)
 Importance: Undecided
 Status: New

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

** Affects: xorg-server (Ubuntu)
 Importance: Undecided
 Status: New

** Affects: xserver-xorg-video-intel (Ubuntu)
 Importance: Undecided
 Status: New

-- 
KDE close session hangs computer.
https://bugs.launchpad.net/bugs/341559
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 341559] Re: KDE close session hangs computer.

2009-03-12 Thread EagleScreen

** Attachment added: My lspci output
   http://launchpadlibrarian.net/23773809/lspci.txt

** Also affects: xorg (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: xserver-xorg-video-intel (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: xorg-server (Ubuntu)
   Importance: Undecided
   Status: New

-- 
KDE close session hangs computer.
https://bugs.launchpad.net/bugs/341559
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to kdebase-workspace in ubuntu.

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


[Bug 341557] Re: toggle on/off each status indicator individually

2009-03-12 Thread Dustin Kirkland
With the new package, I can configure this myself with:

$ cat /home/kirkland/.screen-profiles/status 
menu=0
whoami=1
hostname=1

An exhaustive list looks like:
cpu-count=1
cpu-freq=1
ec2-cost=1
hostname=1
load-average=1
mem-available=1
mem-used=1
menu=0
reboot-required=1
release=1
updates-available=1
whoami=1

These are each of the scripts installed in /var/lib/screen-profiles

:-Dustin

-- 
toggle on/off each status indicator individually
https://bugs.launchpad.net/bugs/341557
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 340572] Re: libcairo2 problem with AMD Geode LX on Ubuntu 8.04.2

2009-03-12 Thread fonji
xorg.conf already added
http://launchpadlibrarian.net/23745419/xorg.conf
Thanks for help.

-- 
libcairo2 problem with AMD Geode LX on Ubuntu 8.04.2
https://bugs.launchpad.net/bugs/340572
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 338588] Re: update the tg3 to version 3.95 to support amd sb800 5785 NIC

2009-03-12 Thread Henry
Thanks Jamie. Broadcom released the internal code for AMD 5785 NIC, the
attached patch is based on the internal source code from BRCM, it fixes
this issue, could you please help to find someone in ubuntu to review
this patch, thanks for your kind help.

** Attachment added: Patch to fix this issue
   
http://launchpadlibrarian.net/23773784/C%3A%5CDocuments%20and%20Settings%5Chsu%5CDesktop%5Cubuntu9.04-tg3-3.95b.patch

** Visibility changed to: Private

-- 
update the tg3 to version 3.95 to support amd sb800 5785 NIC
https://bugs.launchpad.net/bugs/338588
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 295140] Re: k3dsurf doesn't start

2009-03-12 Thread Hew McLachlan
Thomas, what output do you get when you run it from a terminal? Is there
a relevant .crash file in /var/crash ?

-- 
k3dsurf doesn't start
https://bugs.launchpad.net/bugs/295140
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 341560] [NEW] [IBM 2529FKG] suspend/resume failure

2009-03-12 Thread Martin
Public bug reported:

I often get kdebluetooth4, nepomunkservicestub, firefox and other errors
reporting suggestions after resuming from suspended state. Sometimes
even X gets restarted. And rarely I see only black screen with blinking
caret. But this is first time I am offered to report this bug. And it
even occurred after my system had completely frozen - see bug 338645.

ProblemType: KernelOops
Annotation: This occured during a previous suspend and prevented it from 
resuming properly.
Architecture: i386
DistroRelease: Ubuntu 9.04
ExecutablePath: /usr/share/apport/apportcheckresume
Failure: suspend/resume
InterpreterPath: /usr/bin/python2.6
MachineType: IBM 2529FKG
Package: linux-image-2.6.28-9-generic 2.6.28-9.29
ProcAttrCurrent: unconfined
ProcCmdLine: root=UUID=2afc685d-1228-4093-a04a-8734a35fa1c0 ro quiet splash  
crashkernel=384M-2G:6...@16m,2G-:1...@16m
ProcCmdline: /usr/bin/python /usr/share/apport/apportcheckresume
ProcEnviron: PATH=(custom, no user)
ProcVersionSignature: Ubuntu 2.6.28-6.17-generic
SourcePackage: linux
StressLog: Error: [Errno 2] No such file or directory: 
'/var/lib/pm-utils/stress.log'
Tags: resume suspend
Title: [IBM 2529FKG] suspend/resume failure
UserGroups:

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


** Tags: apport-kerneloops i386 resume suspend

-- 
[IBM 2529FKG] suspend/resume failure
https://bugs.launchpad.net/bugs/341560
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 340817] Re: private-synchronous is a non-compliant capability name

2009-03-12 Thread Matthew Paul Thomas
** Summary changed:

- Doesn't adhere to specification
+ private-synchronous is a non-compliant capability name

** Also affects: gnome-settings-daemon (Ubuntu)
   Importance: Undecided
   Status: New

-- 
private-synchronous is a non-compliant capability name
https://bugs.launchpad.net/bugs/340817
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 341560] Re: [IBM 2529FKG] suspend/resume failure

2009-03-12 Thread Martin

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

** Attachment added: CurrentDmesg.txt
   http://launchpadlibrarian.net/23773953/CurrentDmesg.txt

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

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

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

** Attachment added: Lsusb.txt
   http://launchpadlibrarian.net/23773957/Lsusb.txt

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

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

** Attachment added: ProcMaps.txt
   http://launchpadlibrarian.net/23773960/ProcMaps.txt

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

** Attachment added: ProcStatus.txt
   http://launchpadlibrarian.net/23773962/ProcStatus.txt

-- 
[IBM 2529FKG] suspend/resume failure
https://bugs.launchpad.net/bugs/341560
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 338588] Re: update the tg3 to version 3.95 to support amd sb800 5785 NIC

2009-03-12 Thread Henry
and broadcom also submitted the patches for 5785 to upstream, please
find the patch in location:

tg3: Preserve LAA when device control is released 

http://git.kernel.org/?p=linux/kernel/git/davem/net-2.6.git;a=commitdiff;h=3f007891da0ad3d9192e9aa13ce4e3aaf20c33fa

tg3: Preserve DASH connectivity when WOL enabled

http://git.kernel.org/?p=linux/kernel/git/davem/net-2.6.git;a=commit;h=b2aee1545dc3c05c8d5cf116de1e92907e98009b

tg3: Refine power management and WOL code

http://git.kernel.org/?p=linux/kernel/git/davem/net-2.6.git;a=commit;h=05ac4cb7dff4515447dce6e9a56c4de6b7e426d5

tg3: Allow WOL for phylib controlled Broadcom phys

http://git.kernel.org/?p=linux/kernel/git/davem/net-2.6.git;a=commit;h=0a459aac9d151c2e36ec65723b9b845b24c5cbc3

tg3: Refine phylib support

http://git.kernel.org/?p=linux/kernel/git/davem/net-2.6.git;a=commit;h=9c61d6bc56bf0a5fb1ebfcf4c168cc5ce30e153b

tg3: 5785 enhancements

http://git.kernel.org/?p=linux/kernel/git/davem/net-2.6.git;a=commit;h=fcb389dfd842be54545cb436b3437f07da10115c

tg3: Do not enable APE on bcm5700

http://git.kernel.org/?p=linux/kernel/git/davem/net-2.6.git;a=commit;h=b2b98d4acc58a6f36b731e666c6ebd901cd6a27e

tg3: Reclaim TG3_FLG3_5761_5784_AX_FIXES flag

http://git.kernel.org/?p=linux/kernel/git/davem/net-2.6.git;a=commit;h=bcb37f6cb57e565e7bd342272652c3a50cf88761

-- 
update the tg3 to version 3.95 to support amd sb800 5785 NIC
https://bugs.launchpad.net/bugs/338588
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 338588] Re: update the tg3 to version 3.95 to support amd sb800 5785 NIC

2009-03-12 Thread Henry
This is a amd/broadcom confidential issue, so I change the security to
private.

-- 
update the tg3 to version 3.95 to support amd sb800 5785 NIC
https://bugs.launchpad.net/bugs/338588
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 328216] Re: Bluetooth keyboard not working in X in 9.04

2009-03-12 Thread Baptiste Mille-Mathias
Hey Leon,

so does it means the problem where your keyboard was not working with X is 
fixed, Could you confirm?
If so I suggest you to open a new bug regarding the new problem with the help 
of the page https://wiki.ubuntu.com/X/Reporting and I will close this bug for 
the bluetooth issue.

Regards.

-- 
Bluetooth keyboard not working in X in 9.04
https://bugs.launchpad.net/bugs/328216
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 320813] Re: [drm] compiz animations cause temporary freezes with vblank

2009-03-12 Thread Till Kamppeter
It is indeed fixed now. After booting into the new kernel and
suspending/restoring the problem disappeared.

-- 
[drm] compiz animations cause temporary freezes with vblank
https://bugs.launchpad.net/bugs/320813
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 83922] Re: gdesklets does not start amd64

2009-03-12 Thread Hew McLachlan
If someone can verify the fix in 0.36.1, it would be worth getting a
Debian sync for Jaunty (FFe required).

-- 
gdesklets does not start amd64
https://bugs.launchpad.net/bugs/83922
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 341557] Re: toggle on/off each status indicator individually

2009-03-12 Thread Launchpad Bug Tracker
This bug was fixed in the package screen-profiles - 1.37-0ubuntu1

---
screen-profiles (1.37-0ubuntu1) jaunty; urgency=low

  * bin/menu: make internationalizable menu prompt
  * debian/rules: get-po from menu
  * bin/*: test if enabled/disabled before executing, LP: #341557

 -- Dustin Kirkland kirkl...@ubuntu.com   Thu, 12 Mar 2009 02:33:59
-0500

** Changed in: screen-profiles (Ubuntu)
   Status: In Progress = Fix Released

-- 
toggle on/off each status indicator individually
https://bugs.launchpad.net/bugs/341557
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 340689] Re: None of my windows have title bars, and defaulty open in the upper left, I also can't alt-tab

2009-03-12 Thread Rogan12h
** Description changed:

  So, I don't report too many bugs to Launchpad, so, not too sure what 
information to include with this. 
  But, Nothing has title bars, I can only close things by alt+f4. I can't 
alt-tab.
  So, yeah.
  Thanks in advanced.
  And I'm using 9.04, it broke a couple days ago.
+ 
+ Also when I disable special effects, firefox take up the entire screen,
+ lays on top of my bars, and is only closeable with ctrl+w not alt+f4

** Tags added: compiz gnome-session windows

-- 
None of my windows have title bars, and defaulty open in the upper left, I also 
can't alt-tab
https://bugs.launchpad.net/bugs/340689
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 314317] Re: amarok freeze when playing from time to time

2009-03-12 Thread yasker
Found it was resolved in recent upgrade. Thanks.

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

-- 
amarok freeze when playing from time to time
https://bugs.launchpad.net/bugs/314317
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to amarok in ubuntu.

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


[Bug 338645] Re: linux freezes completely since 2.6.28-7

2009-03-12 Thread Martin
Today tried linux-image-2.6.28-9-generic and my system froze again while
starting up eclipse, doing apt-get update and in the moment of switching
window to Akregator. CPU and HDD I/O was on full load.

In the different scenario, I booted my system with init=/bin/bash and
ran: stress --hdd 4 --timeout 120s. No other user tasks were running.
First run of the stress was OK, but the second caused again system
freeze. Could it be the problem of the ext4? I really can't tell and mus
stay with linux-image-2.6.28-6-generic.

Is there anything else I could try to help you find the bug? Thanks in
advance.

-- 
linux freezes completely since 2.6.28-7
https://bugs.launchpad.net/bugs/338645
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 338645] Re: linux freezes completely since 2.6.28-7

2009-03-12 Thread Martin
... and, after booting my system, with the forced filesystem check and
started KDE, all my plasma settings are lost. The same is for akregator.
I often loose settings after such freeze. It is very annoying.

-- 
linux freezes completely since 2.6.28-7
https://bugs.launchpad.net/bugs/338645
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 296610] Re: ALPS DualPoint Touchpad flaky performance

2009-03-12 Thread Antti P Miettinen
Hmm... probably the issue is not the RF switch. I get similar errors:

psmouse.c: DualPoint TouchPad at isa0060/serio1/input0 lost
synchronization, throwing 1 bytes away.

when I disable wireless networking from from NetworkManager. Interrupt
masking/latency issue?

-- 
ALPS DualPoint Touchpad flaky performance
https://bugs.launchpad.net/bugs/296610
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 71737] Re: Headphone and Speakers are switched on Amilo Xi1526

2009-03-12 Thread Kiketom
Hi!
I have the Amilo Xi 1526 and i installed the Ubuntu 8.10 on it.
The sound on front speakers and headphones works well.
But when i put the headphones, the sound on the speakers continous playing and 
the little wheel for adjusting the volume is not working.

I have insert at bottom of my alsa-base file
options snd-hda-intel model=fujitsu

But it stills not working.
What I am missing?

-- 
Headphone and Speakers are switched on Amilo Xi1526
https://bugs.launchpad.net/bugs/71737
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 341565] [NEW] append is a non-compliant hint name

2009-03-12 Thread Matthew Paul Thomas
Public bug reported:

Binary package hint: notify-osd

According to http://www.galago-
project.org/specs/notification/0.9/x344.html, third-party hints should
take the form x-vendor-name until they are agreed on for the Desktop
Notifications Specification.

Notify OSD and pidgin-libnotify currently use a hint called append,
which does not follow this pattern. It should be x-canonical-append.
https://wiki.ubuntu.com/NotifyOSD#org.freedesktop.Notifications.GetCapabilities

(See also bug 340817, the equivalent problem for the private-
synchronous capability.)

** Affects: notify-osd (Ubuntu)
 Importance: Undecided
 Status: New

-- 
append is a non-compliant hint name
https://bugs.launchpad.net/bugs/341565
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 340817] Re: private-synchronous is a non-compliant capability name

2009-03-12 Thread Matthew Paul Thomas
Thanks for reporting this, Bruce. I didn't read the spec closely enough.
The same applies to the append hint, which I've reported as bug
341565.

-- 
private-synchronous is a non-compliant capability name
https://bugs.launchpad.net/bugs/340817
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 316994] Re: [upstream] exporting to MediaWiki.txt is broken

2009-03-12 Thread Bug Watch Updater
** Changed in: openoffice
   Status: Unknown = Fix Released

-- 
[upstream] exporting to MediaWiki.txt is broken
https://bugs.launchpad.net/bugs/316994
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 315907] Re: Addressbar autocomplete flaky

2009-03-12 Thread Bug Watch Updater
** Changed in: firefox
   Status: New = Invalid

-- 
Addressbar autocomplete flaky
https://bugs.launchpad.net/bugs/315907
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 295140] Re: k3dsurf doesn't start

2009-03-12 Thread Thomas Lauckner
In console, the output is just:

$ k3dsurf 
Segmentation fault (core dumped)

That's it. Yesterday, it also complained about /etc/qt3/qt_plugins_3.3rc
being not readable. I gave read permissions go+rX to  /etc/qt3
recursively and the problem vanished.

I have indeed something relevant in /var/crash. Didn't know this folder
exists until now. The file is attached.

Perhaps you are interested in this: I downloaded the sourcecode and
tried to compile it:

$ tar xzf k3dsurf-0.6.2.tar.gz 
$ cd k3dsurf-0.6.2
$ ls
bin  Doxyfile  k3dsurf.kdevelop  k3dsurf.kdevses  readme
copying  icon  k3dsurf.kdevelop.pcs  k3dsurf.pro  src
$ qmake
$ make
cd src/  /usr/bin/qmake src.pro -unix -o Makefile
uic: File generated with too old version of Qt Designer (3.3)
uic: File generated with too old version of Qt Designer (3.3)
uic: File generated with too old version of Qt Designer (3.3)
uic: File generated with too old version of Qt Designer (3.3)
uic: File generated with too old version of Qt Designer (3.3)
uic: File generated with too old version of Qt Designer (3.3)
uic: File generated with too old version of Qt Designer (3.3)
cd src/  make -f Makefile 
make[1]: Betrete Verzeichnis '/home/thomas/k3dsurf-0.6.2/src'
/usr/bin/uic-qt4 k3dsurf.ui -o ui_k3dsurf.h
uic: File generated with too old version of Qt Designer (3.3)
File 'k3dsurf.ui' is not valid
make[1]: *** [ui_k3dsurf.h] Fehler 1
make[1]: Verlasse Verzeichnis '/home/thomas/k3dsurf-0.6.2/src'
make: *** [sub-src-make_default] Fehler 2

** Attachment added: /var/crash crash report
   http://launchpadlibrarian.net/23774095/_usr_bin_k3dsurf.1000.crash

-- 
k3dsurf doesn't start
https://bugs.launchpad.net/bugs/295140
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 271774] Re: [ooo-build] Can't use a capital as first character for months in Dutch OpenOffice.org Calc.

2009-03-12 Thread Bug Watch Updater
** Changed in: openoffice
   Status: Won't Fix = Fix Released

-- 
[ooo-build] Can't use a capital as first character for months in Dutch 
OpenOffice.org Calc.
https://bugs.launchpad.net/bugs/271774
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 244207] Re: the text scrolls up after clicking a HTML link in e-mail text

2009-03-12 Thread jeday
I have got the same error
Evolution 2.24.3 
uname -a
Linux jeday-desktop 2.6.27-11-generic #1 SMP Thu Jan 29 19:24:39 UTC 2009 i686 
GNU/Linux

-- 
the text scrolls up after clicking a HTML link in e-mail text
https://bugs.launchpad.net/bugs/244207
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 341567] Re: printer-applet.py crashed with ImportError in module()

2009-03-12 Thread Apport retracing service
** Tags removed: need-duplicate-check

** Attachment removed: Dependencies.txt

   http://launchpadlibrarian.net/23774104/Dependencies.txt

** Attachment removed: ProcMaps.txt

   http://launchpadlibrarian.net/23774105/ProcMaps.txt

** Attachment removed: ProcStatus.txt

   http://launchpadlibrarian.net/23774106/ProcStatus.txt

** Visibility changed to: Public

-- 
printer-applet.py crashed with ImportError in module()
https://bugs.launchpad.net/bugs/341567
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to kdeutils in ubuntu.

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


[Bug 341563] Re: update-notifier-kde.py crashed with ImportError in module()

2009-03-12 Thread Apport retracing service
** Tags removed: need-duplicate-check

** Attachment removed: Dependencies.txt

   http://launchpadlibrarian.net/23774074/Dependencies.txt

** Attachment removed: ProcMaps.txt

   http://launchpadlibrarian.net/23774075/ProcMaps.txt

** Attachment removed: ProcStatus.txt

   http://launchpadlibrarian.net/23774076/ProcStatus.txt

** Visibility changed to: Public

-- 
update-notifier-kde.py crashed with ImportError in module()
https://bugs.launchpad.net/bugs/341563
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to update-notifier-kde in ubuntu.

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


[Bug 341573] [NEW] system stays on full CPU clock

2009-03-12 Thread Kai F. Lahmann
Public bug reported:

Binary package hint: linux-image-2.6.28-9-generic

(critical regression from today's update)

the system now starts with the CPU governor set to performance each
time, so we waste electrical power like hell and after 5 minutes my ears
get killed by the CPU fan...

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

-- 
system stays on full CPU clock
https://bugs.launchpad.net/bugs/341573
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 341568] Re: update-notifier-kde.py crashed with ImportError in module()

2009-03-12 Thread Apport retracing service
** Tags removed: need-duplicate-check

** Attachment removed: Dependencies.txt

   http://launchpadlibrarian.net/23774112/Dependencies.txt

** Attachment removed: ProcMaps.txt

   http://launchpadlibrarian.net/23774113/ProcMaps.txt

** Attachment removed: ProcStatus.txt

   http://launchpadlibrarian.net/23774114/ProcStatus.txt

** Visibility changed to: Public

-- 
update-notifier-kde.py crashed with ImportError in module()
https://bugs.launchpad.net/bugs/341568
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 341564] Re: kblueplugd crashed with ImportError in module()

2009-03-12 Thread Apport retracing service
*** This bug is a duplicate of bug 335811 ***
https://bugs.launchpad.net/bugs/335811

** Tags removed: need-duplicate-check

** Attachment removed: Dependencies.txt

   http://launchpadlibrarian.net/23774091/Dependencies.txt

** Attachment removed: ProcMaps.txt

   http://launchpadlibrarian.net/23774092/ProcMaps.txt

** Attachment removed: ProcStatus.txt

   http://launchpadlibrarian.net/23774093/ProcStatus.txt

** Visibility changed to: Public

** This bug has been marked a duplicate of bug 335811
   ImportError: No module named qt

-- 
kblueplugd crashed with ImportError in module()
https://bugs.launchpad.net/bugs/341564
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to kdebindings in ubuntu (via bug 335811).

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


[Bug 340447] Re: printer-applet.py crashed with ImportError in module()

2009-03-12 Thread Andreas Blochberger
python-kde4 version: 4:4.2.1-0ubuntu3

I guess this is the latest

-- 
printer-applet.py crashed with ImportError in module()
https://bugs.launchpad.net/bugs/340447
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 332860] Re: nautilus crashed with SIGSEGV in memset(), when clicking proprieties menu

2009-03-12 Thread Karl Daumeier
After the fix the behaviour of nautilus is still the same.
Under totem-xine I can play the files, but when I tried to open the properties 
menu in nautilus, it still crashes.

-- 
nautilus crashed with SIGSEGV in memset(), when clicking proprieties menu
https://bugs.launchpad.net/bugs/332860
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 279490] Re: new lighttpd security fixes

2009-03-12 Thread Marcin Gibula
Hi,
I'm attaching new version of debdiff. Two changes there:

- Added brief notes about whats being fixed (if it's too short I can write 
something longer)
- Removed fix for CVE-2008-4359 from the patch list (patch is still there, it's 
just not applied) - it's known to cause regressions and it has been removed 
from vanillia lighttpd tree (http://redmine.lighttpd.net/issues/show/1720). I 
think it's better to leave it as is, rather than break working configurations.

And yes, I've tested it, it compiles and seems to be working.

** Attachment added: Security fixes for hardy's lighttpd package - v2
   http://launchpadlibrarian.net/23774266/lighttpd_12032009.debdiff

-- 
new lighttpd security fixes
https://bugs.launchpad.net/bugs/279490
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 218094] Re: Wrong battery information on MSI S271 laptop with msi-laptop module loaded

2009-03-12 Thread Mike Trim
sonicsteve: this bug is specific to MSI laptops, you should file a
separate bug for your problem.

-- 
Wrong battery information on MSI S271 laptop with msi-laptop module loaded
https://bugs.launchpad.net/bugs/218094
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 341577] [NEW] update-manager-text gets a TypeError on self.cache.get_changelog()

2009-03-12 Thread Steve Beattie
Public bug reported:

Binary package hint: update-manager

Running update-manager-text with updates available, and then moving the
selection bar over an individual update generates the following
traceback:

  Traceback (most recent call last):
  File 
/usr/lib/python2.6/dist-packages/UpdateManagerText/UpdateManagerText.py, line 
133, in checkbox_changed
 descr = self.get_changelog(pkg)
  File 
/usr/lib/python2.6/dist-packages/UpdateManagerText/UpdateManagerText.py, line 
118, in get_changelog
 descr = self.cache.get_changelog (name, lock)
   TypeError: get_changelog() takes exactly 2 arguments (3 given)

Looking at the bzr source for update-manager, sure enough, in
UpdateManagerText/UpdateManagerText.py the lock argument is passed, but
MyCache.get_changelog() only takes the package name. It looks like the
desired interface is MyCache.get_news_or_changelog(), given that that
takes an additional lock argument.

There's a secondary bug that if MyCache.get_news_or_changelog(), then
the changelog is downloaded, but only the first character of the
changelog is displayed, due to return self.cache.all_changes[name][0]
(it seems a list of changes was expected).

ProblemType: Bug
Architecture: amd64
DistroRelease: Ubuntu 9.04
Package: update-manager-text 1:0.100.1
PackageArchitecture: all
ProcEnviron:
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: update-manager
Uname: Linux 2.6.28-9-server x86_64

** Affects: update-manager (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug

-- 
update-manager-text gets a TypeError on self.cache.get_changelog()
https://bugs.launchpad.net/bugs/341577
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 341577] Re: update-manager-text gets a TypeError on self.cache.get_changelog()

2009-03-12 Thread Steve Beattie

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

-- 
update-manager-text gets a TypeError on self.cache.get_changelog()
https://bugs.launchpad.net/bugs/341577
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 341030] Re: Local mail delivery missing in default server install

2009-03-12 Thread Calle Dybedahl

On 11 mar 2009, at 18:12, Scott Kitterman wrote:

 I understand your perspective, but this is actually by design.  The
 default Ubuntu Server install opens no ports to the outside world  
 (which
 is also why openssh is an option and not in the standard install).
 While I understand the problems associated with this design choice, it
 is unlikely to change since no open ports by default is a very long
 standing policy (and so no MTA by default).  The alternative is to
 select the mail server task and you'll get a Postfix you can easily
 configure for this use case.


While this is exactly the response I expected from the Ubuntu project,  
I would just like to point out that it is in no way necessary to even  
have a network interface enabled, much less any process listening to  
an external port, in order to enable cron to deliver mail to (for  
example) the local file /var/mail/root. Since you *do* include Perl  
and Python in the base system, a very basic /usr/sbin/sendmail could  
be written in either of those languages to handle that trivial task.

Also, if you really truly believe that you cannot have the ability for  
local mail delivery in the base system, you should at least provide  
all those daemons relying on such for problem reporting alternate ways  
of reporting problems. Or, I suppose, not include those either in the  
base system.

In any case, thank you for providing me with a clear and quotable  
argument for not ever using Ubuntu as a server platform.
-- 
Calle Dybedahl
ca...@init.se -*- +46 703 - 970 612

-- 
Local mail delivery missing in default server install
https://bugs.launchpad.net/bugs/341030
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 271410] Re: awn-applet-activation crashed with SIGSEGV in g_utf8_validate()

2009-03-12 Thread ThomasNovin
Ok, I have that version and I cannot reproduce. Howver IIRC I don't
think I had this problem before I switched either (the problem was
already fixed or something else made the problem go away).

-- 
awn-applet-activation crashed with SIGSEGV in g_utf8_validate()
https://bugs.launchpad.net/bugs/271410
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 340817] Re: private-synchronous and private-icon-only are non-compliant capability names

2009-03-12 Thread Matthew Paul Thomas
** Summary changed:

- private-synchronous is a non-compliant capability name
+ private-synchronous and private-icon-only are non-compliant capability 
names

** Description changed:

- Binary package hint: notify-osd
+ The notification specification part 9.1.1 says New vendor-specific caps
+ may be specified as long as they start with x-vendor. http://www
+ .galago-project.org/specs/notification/0.9/x408.html#command-get-
+ capabilities
  
- The notification specification part 9.1.1 says New vendor-specific caps
- may be specified as long as they start with x-vendor.
+ notify-osd has a capability called private-synchronous, which should be 
x-canonical-synchronous.
+ It also has a capability called private-icon-only, which should be 
x-canonical-icon-only.
  
- notify-osd has a capability called private-synchronous, this should
- probable be x-canonical-synchronous.
+ https://wiki.ubuntu.com/NotifyOSD#org.freedesktop.Notifications.Notify
+ https://wiki.ubuntu.com/NotifyOSD#Disc%20ejection
+ 
https://wiki.ubuntu.com/NotifyOSD#Play,%20Pause,%20Stop,%20Previous,%20and%20Next

** Description changed:

  The notification specification part 9.1.1 says New vendor-specific caps
  may be specified as long as they start with x-vendor. http://www
  .galago-project.org/specs/notification/0.9/x408.html#command-get-
  capabilities
  
  notify-osd has a capability called private-synchronous, which should be 
x-canonical-synchronous.
  It also has a capability called private-icon-only, which should be 
x-canonical-icon-only.
  
  https://wiki.ubuntu.com/NotifyOSD#org.freedesktop.Notifications.Notify
  https://wiki.ubuntu.com/NotifyOSD#Disc%20ejection
  
https://wiki.ubuntu.com/NotifyOSD#Play,%20Pause,%20Stop,%20Previous,%20and%20Next
+ 
+ (See also bug 341565, the equivalent problem for the append hint.)

-- 
private-synchronous and private-icon-only are non-compliant capability names
https://bugs.launchpad.net/bugs/340817
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 156133] Re: bcm203x firmware improperly capitalized

2009-03-12 Thread Stefan Bader
** Changed in: linux-firmware (Ubuntu Intrepid)
   Status: Triaged = Fix Committed

-- 
bcm203x firmware improperly capitalized
https://bugs.launchpad.net/bugs/156133
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 339993] Re: Starting File Manager windows open uncontrollably, even when displaying desktop

2009-03-12 Thread Yann Simon
After installing the debug symbols for libbrasero

** Attachment added: valgrind log with debug symbols for libbrasero
   http://launchpadlibrarian.net/23774315/valgrind.log

-- 
Starting File Manager windows open uncontrollably, even when displaying 
desktop
https://bugs.launchpad.net/bugs/339993
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 339993] Re: Starting File Manager windows open uncontrollably, even when displaying desktop

2009-03-12 Thread Yann Simon

** Attachment added: GDB log with debug symbols for libbrasero
   http://launchpadlibrarian.net/23774358/gdb-nautilus.txt

-- 
Starting File Manager windows open uncontrollably, even when displaying 
desktop
https://bugs.launchpad.net/bugs/339993
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 334278] Re: fails to tell kernel to sync partition table

2009-03-12 Thread Timo Aaltonen
This is fixed now, thanks!

also the LVM issues are gone now.

** Changed in: udev (Ubuntu)
   Status: Confirmed = Fix Released

-- 
fails to tell kernel to sync partition table
https://bugs.launchpad.net/bugs/334278
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 326501] Re: wrong description for ubuntustudio-desktop

2009-03-12 Thread Geoffrey Thomas
Yeah, tasksel-data should say Ubuntu Studio desktop instead of Ubuntu
Studio desktop (must install). Marking as confirmed...

** Summary changed:

- wrong desription for ubunt studio desktop 
+ wrong description for ubuntustudio-desktop

** Changed in: tasksel (Ubuntu)
   Status: New = Confirmed

-- 
wrong description for ubuntustudio-desktop 
https://bugs.launchpad.net/bugs/326501
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 340487] Re: Regression: Compiz shows no decorations whith normal effects. was fine on alpha5

2009-03-12 Thread Fabian A. Scherschel
*** This bug is a duplicate of bug 340283 ***
https://bugs.launchpad.net/bugs/340283

I fixed the problem by doing a

sudo aptitude install compiz-gnome


Have a look in you package manager if that package is installed on your system. 
If not, install it with the above command.

-- 
Regression: Compiz shows no decorations whith normal effects. was fine on alpha5
https://bugs.launchpad.net/bugs/340487
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 321444] Re: cursor with synergyc client is stuck in upper left corner

2009-03-12 Thread Valmantas Palikša
Also mouse over VNC stops working for me using Vinagre server.

-- 
cursor with synergyc client is stuck in upper left corner
https://bugs.launchpad.net/bugs/321444
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 341577] Re: update-manager-text gets a TypeError on self.cache.get_changelog()

2009-03-12 Thread Steve Beattie
Attached is a bzr merge bundle/patch that got update-manager-text to
successfully display changelogs for me; there's still an issue with some
rendering possibly due to overlong changelog lines (see a kernel update
for an example).

** Attachment added: 
update-manager-text-fix_changelog_gathering-lp341577.patch
   
http://launchpadlibrarian.net/23774480/update-manager-text-fix_changelog_gathering-lp341577.patch

-- 
update-manager-text gets a TypeError on self.cache.get_changelog()
https://bugs.launchpad.net/bugs/341577
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 332042] Re: notify-osd crashed with SIGSEGV in _gtk_marshal_BOOLEAN__BOXED()

2009-03-12 Thread Sebastien Bacher
it happens after every download in epiphany-browser indeed

-- 
notify-osd crashed with SIGSEGV in _gtk_marshal_BOOLEAN__BOXED()
https://bugs.launchpad.net/bugs/332042
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 179766] Re: krecordmydesktop fails on save cancel

2009-03-12 Thread msk
I repeat, release 0.1.alpha2 fixed this bugs 1/2 year ago, but package
maintainer stops supporting it. If somebody helps me to propagate fixed
.deb to oficial repos, i will make it.

-- 
krecordmydesktop fails on save cancel
https://bugs.launchpad.net/bugs/179766
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   >