[Bug 518346] [NEW] Emulated serial port does not work with FreeBSD 8.0 guest

2010-02-07 Thread Garry Dolley
Public bug reported:

Binary package hint: kvm

I'm running a handful of Jaunty systems and this bug appears in kvm 1:84
+dfsg-0ubuntu12.4

Host:

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

Description of bug:

If you start a FreeBSD 8.0 guest with -serial
telnet:127.0.0.1:port,server,nowait, and then try to connect to the
guest's serial port with telnet, there will be no output to the telnet
side.  The FreeBSD 8.0 guest is running a getty process on /dev/ttyu0.

This is specific to FreeBSD 8.0.  FreeBSD 7.1 and 7.2 guests did not
exhibit this problem.

FreeBSD 8.0 uses a new uart(4) driver (/dev/ttyu0).  Prior versions used
sio(4) (/dev/ttyd0).

Proposed fix:

There is an upstream QEMU patch that fixes this.

I've rolled this patch into my PPA for kvm (among other changes):
https://launchpad.net/~gdolley/+archive/ppa/+packages

A debdiff for just this specific issue that fixes the problem is:

diff -u kvm-84+dfsg/debian/changelog kvm-84+dfsg/debian/changelog
--- kvm-84+dfsg/debian/changelog
+++ kvm-84+dfsg/debian/changelog
@@ -1,3 +1,11 @@
+kvm (1:84+dfsg-0ubuntu12.5~ppa1) jaunty; urgency=low
+   
+  * 
debian/patches/qemu-serial-lost-tx-irqs-affecting-freebsd-new-uart-driver.patch:
+cherry-pick from upstream  
+- Fixes qemu serial vs. FreeBSD 8.0 uart(4) not working properly
+   
+ -- Garry Dolley gdol...@arpnetworks.com  Wed, 09 Dec 2009 03:53:31 -0800
+   
 kvm (1:84+dfsg-0ubuntu12.4) jaunty-proposed; urgency=low

   * debian/patches/Fix-cluster-freeing-in-qcow2.patch: cherry-pick
diff -u kvm-84+dfsg/debian/control kvm-84+dfsg/debian/control
diff -u kvm-84+dfsg/debian/patches/series kvm-84+dfsg/debian/patches/series
--- kvm-84+dfsg/debian/patches/series
+++ kvm-84+dfsg/debian/patches/series
@@ -17,0 +18 @@ 
+qemu-serial-lost-tx-irqs-affecting-freebsd-new-uart-driver.patch
only in patch2: 
unchanged:  
--- 
kvm-84+dfsg.orig/debian/patches/qemu-serial-lost-tx-irqs-affecting-freebsd-new-uart-driver.patch
+++ 
kvm-84+dfsg/debian/patches/qemu-serial-lost-tx-irqs-affecting-freebsd-new-uart-driver.patch
@@ -0,0 +1,37 @@
+commit 2d6ee8e7e17227d5eb8c6e9a054dd88d5b37c5ae
+Author: Juergen Lock n...@jelal.kn-bremen.de
+Date:   Sat Sep 12 18:52:22 2009 +0200
+   
+qemu serial: lost tx irqs (affecting FreeBSD's new uart(4) driver)
+   
+Well one problem seems to be the rx condition,
+... if ((s-ier  UART_IER_RDI)  (s-lsr  UART_LSR_DR))
+is not enough to trigger an irq, yet still causes the following
+conditions not to be checked anymore at all.
+   
+Signed-off-by: Juergen Lock n...@jelal.kn-bremen.de
+Acked-by: Jan Kiszka jan.kis...@web.de
+Acked-by: Stefano Stabellini stefano.stabell...@eu.citrix.com
+Signed-off-by: Aurelien Jarno aurel...@aurel32.net
+   
+diff --git a/qemu/hw/serial.c b/qemu/hw/serial.c
+index 1f4ce77..a22770f 100644  
+--- a/qemu/hw/serial.c 
 b/qemu/hw/serial.c 
+@@ -197,12 +197,10 @@ static void serial_update_irq(SerialState *s)
+  * this is not in the specification but is observed on existing
+  * hardware.  */  
+ tmp_iir = UART_IIR_CTI;
+-} else if ((s-ier  UART_IER_RDI)  (s-lsr  UART_LSR_DR)) {
+-if (!(s-fcr  UART_FCR_FE)) {
+-   tmp_iir = UART_IIR_RDI;
+-} else if (s-recv_fifo.count = s-recv_fifo.itl) {
+-   tmp_iir = UART_IIR_RDI;
+-}
++} else if ((s-ier  UART_IER_RDI)  (s-lsr  UART_LSR_DR) 
++   (!(s-fcr  UART_FCR_FE) ||
++s-recv_fifo.count = s-recv_fifo.itl)) {
++tmp_iir = UART_IIR_RDI;
+ } else if ((s-ier  UART_IER_THRI)  s-thr_ipending) {
+ tmp_iir = UART_IIR_THRI;
+ } else if ((s-ier  UART_IER_MSI)  (s-msr  UART_MSR_ANY_DELTA)) {


My modified kvm package with the above patch runs about 80 production virtual 
machines of the following flavors: FreeBSD 7.1, 7.2, and 8.0; OpenBSD 4.5 and 
4.6; Ubuntu 9.04; Debian 5.02; ArchLinux; and Gentoo.  None of these have had 
any serial port problems after the above patch was applied.

Might be worth applying to Karmic or Lucid kvm packages if the QEMU
upstream in those kvm packages do not already include it.

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

-- 
Emulated serial port does not work with FreeBSD 8.0 guest
https://bugs.launchpad.net/bugs/518346
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to kvm in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 518355] Re: CURLOPT_WRITEHEADER fails

2010-02-07 Thread Jim Tittsler

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

-- 
CURLOPT_WRITEHEADER fails
https://bugs.launchpad.net/bugs/518355
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 518211] Re: IT8720F chip not recognized by lm-sensors

2010-02-07 Thread Ludwin Janvier
From lm-sensors releases page (http://dl.lm-sensors.org/lm-sensors/releases/) :
- karmic version is pretty old (3.0.2, 2008-05-08) and doesn't know about 0x8720
- last release of lm-sensors (3.1.2, 2010-02-02) can detect 0x8720
debian testing  unstable have lm-sensors 3.1.1 (2009-06-21), which should 
support 0x8720.

So this is a sync lm-sensors from debian testing request.


** Package changed: ubuntu = lm-sensors (Ubuntu)

-- 
IT8720F chip not recognized by lm-sensors
https://bugs.launchpad.net/bugs/518211
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to lm-sensors in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 518400] [NEW] package clamav 0.95.3+dfsg-1ubuntu0.09.10 failed to install/upgrade:

2010-02-07 Thread Alessandro Repetto
Public bug reported:

Binary package hint: clamav

Failed tu install package clamav/freshclam, failed to repair, failed to remove.
No one of these opearion fished always I receivet the signal that error 1 or 
error 2 stopped the execution of the operation.

ProblemType: Package
Architecture: amd64
Date: Tue Feb  2 14:38:58 2010
DistroRelease: Ubuntu 9.10
ErrorMessage:
 ErrorMessage: il sottoprocesso dpkg-deb --control ha restituito lo stato di 
errore 2
NonfreeKernelModules: nvidia
Package: clamav 0.95.3+dfsg-1ubuntu0.09.10
ProcVersionSignature: Ubuntu 2.6.31-18.55-generic
SourcePackage: clamav
Title: package clamav 0.95.3+dfsg-1ubuntu0.09.10 failed to install/upgrade:
Uname: Linux 2.6.31-18-generic x86_64

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


** Tags: amd64 apport-package

-- 
package clamav 0.95.3+dfsg-1ubuntu0.09.10 failed to install/upgrade: 
https://bugs.launchpad.net/bugs/518400
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to clamav in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 518400] Re: package clamav 0.95.3+dfsg-1ubuntu0.09.10 failed to install/upgrade:

2010-02-07 Thread Alessandro Repetto

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

** Attachment added: VarLogDistupgradeAptlog.gz
   http://launchpadlibrarian.net/38858208/VarLogDistupgradeAptlog.gz

** Attachment added: VarLogDistupgradeApttermlog.gz
   http://launchpadlibrarian.net/38858209/VarLogDistupgradeApttermlog.gz

** Attachment added: VarLogDistupgradeMainlog.gz
   http://launchpadlibrarian.net/38858210/VarLogDistupgradeMainlog.gz

** Attachment added: VarLogDistupgradeTermlog.gz
   http://launchpadlibrarian.net/38858211/VarLogDistupgradeTermlog.gz

** Attachment added: VarLogDistupgradeXorgfixintrepidlog.gz
   http://launchpadlibrarian.net/38858212/VarLogDistupgradeXorgfixintrepidlog.gz

-- 
package clamav 0.95.3+dfsg-1ubuntu0.09.10 failed to install/upgrade: 
https://bugs.launchpad.net/bugs/518400
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to clamav in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 518400] Re: package clamav 0.95.3+dfsg-1ubuntu0.09.10 failed to install/upgrade:

2010-02-07 Thread Jean-Baptiste Lallement
*** This bug is a duplicate of bug 512096 ***
https://bugs.launchpad.net/bugs/512096

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug 512096, so it is being marked as such. Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

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

** This bug has been marked a duplicate of bug 512096
   [MASTER] Exec format error : package failed to install/remove : 
installation/removal script returned error exit status 2

-- 
package clamav 0.95.3+dfsg-1ubuntu0.09.10 failed to install/upgrade: 
https://bugs.launchpad.net/bugs/518400
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to clamav in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 518211] Re: IT8720F chip not recognized by lm-sensors

2010-02-07 Thread Leon Maurer
Got it. The changelog says 3.0.3 (2008-09-28) added support for the
IT8720F.

I installed version 3.1.2 from debian unstable and it correctly
identified the IT8720F.

Thanks for your help.

-- 
IT8720F chip not recognized by lm-sensors
https://bugs.launchpad.net/bugs/518211
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to lm-sensors in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 302148] Re: Installing wine starts winbindd as a daemon

2010-02-07 Thread Rumpeltux
Another side-affect of this is, that after installing winbindd, samba
tries to authenticate every connecting user though winbind, which
effectively renders security=share nonfunctional.

It took quite some time to debug what’s wrong with samba, so installing
wine shouldn’t break samba-shares!

-- 
Installing wine starts winbindd as a daemon
https://bugs.launchpad.net/bugs/302148
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


Re: [Bug 517701] [NEW] ntpd apparmor rule does not allow reading dhcp based config

2010-02-07 Thread Mathias Gug
Hi,

On Fri, Feb 05, 2010 at 05:18:48PM -, Saku Ytti wrote:
 
 Configuration file is located in /var/lib/ntp/ntp.conf.dhcp 

Which component/process is generating this configuration file?

  status incomplete
  priority low

-- 
Mathias Gug
Ubuntu Developer  http://www.ubuntu.com


** Changed in: ntp (Ubuntu)
   Importance: Undecided = Low

-- 
ntpd apparmor rule does not allow reading dhcp based config
https://bugs.launchpad.net/bugs/517701
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to ntp in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 518653] [NEW] libopie exports conflicting symbols

2010-02-07 Thread Simon Schubert
Public bug reported:

libopie.a exports the functions md5_init, md5_append and md5_finish.
These are quite common names that should be avoided by a central
library.  The problem arises when any binary that also uses these symbol
names is linked to libopie.a, especially when this happens indirectly.

Concretely, I ran into a problem when trying to use dovecot with libpam-
opie.  pam_opie.so contains (part of) libopie.a, and thus also the
global functions md5_init, etc.  Dovecot contains md5_init, md5_update
and md5_finish as global functions.  Note that libopie and dovecot
differ in md5_append vs md5_update, yet share the other function names.

As a result, pam_opie.so will use part dovecot functions (per standard
plt resolution), and part its own (since md5_append is not defined my
dovecot).  That results in an invalid md5 calculation and thus in failed
authentication.

Possible solution:
libopie.a should not export such common names, and instead prefix them 
appropriately.  Alternatively use hidden visibility if applicable.


Description:Ubuntu 9.10
Release:9.10

libopie-dev:
  Installed: 2.40~dfsg-0ubuntu1
  Candidate: 2.40~dfsg-0ubuntu1
  Version table:
 *** 2.40~dfsg-0ubuntu1 0
500 http://ch.archive.ubuntu.com karmic/main Packages
100 /var/lib/dpkg/status
libpam-opie:
  Installed: 0.21-8build2
  Candidate: 0.21-8build2
  Version table:
 *** 0.21-8build2 0
500 http://ch.archive.ubuntu.com karmic/main Packages
100 /var/lib/dpkg/status

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

-- 
libopie exports conflicting symbols
https://bugs.launchpad.net/bugs/518653
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to opie in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 445595] Re: smbclient fails with SMBecho failed. Maybe server has closed the connection

2010-02-07 Thread MathewHennessy
Bump, I'm having this problem in 9.10 as well :( ..  Will 3.4.2 be in
9.10 or should I just go and get the samba source?  PPA?

-- 
smbclient fails with SMBecho failed. Maybe server has closed the connection
https://bugs.launchpad.net/bugs/445595
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 514610] Re: USB passthrough device ID interpreted as decimal instead of hex

2010-02-07 Thread Marc Deslauriers
This is actually a libvirt bug.

** Package changed: virt-manager (Ubuntu) = libvirt (Ubuntu)

-- 
USB passthrough device ID interpreted as decimal instead of hex
https://bugs.launchpad.net/bugs/514610
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to libvirt in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 452208] Re: devkit-disks-daemon crashed with SIGSEGV in dbus_g_method_return_error()

2010-02-07 Thread walrus
** Changed in: devicekit-disks (Ubuntu)
 Assignee: Martin Pitt (pitti) = walrus (bkfadeoner)

-- 
devkit-disks-daemon crashed with SIGSEGV in dbus_g_method_return_error()
https://bugs.launchpad.net/bugs/452208
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 518305] [NEW] package linux-image-2.6.31-19-generic 2.6.31-19.56 failed to install/upgrade: le sous-processus script post-installation install? a retourn? une erreur de sortie d'?tat 1

2010-02-07 Thread Philou40
Public bug reported:

redémarrage du pc pendant la précédente mise à jour.

Merci.

ProblemType: Package
Architecture: i386
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  phil   1778 F pulseaudio
CRDA: Error: [Errno 2] Aucun fichier ou dossier de ce type
Card0.Amixer.info:
 Card hw:0 'nForce2'/'NVidia nForce2 with ALC650F at irq 21'
   Mixer name   : 'Realtek ALC650F'
   Components   : 'AC97a:414c4723'
   Controls  : 50
   Simple ctrls  : 33
Card1.Amixer.info:
 Card hw:1 'UART'/'MPU-401 UART at 0x330, irq 10'
   Mixer name   : ''
   Components   : ''
   Controls  : 0
   Simple ctrls  : 0
Card1.Amixer.values:
 
Date: Sun Feb  7 08:53:13 2010
DistroRelease: Ubuntu 9.10
ErrorMessage: le sous-processus script post-installation installé a retourné 
une erreur de sortie d'état 1
HibernationDevice: RESUME=UUID=eba26967-d5af-49b6-81bd-619774c8adb7
MachineType: ASUSTeK Computer INC. A7N8X-X
Package: linux-image-2.6.31-19-generic 2.6.31-19.56
ProcCmdLine: root=UUID=85ff609a-d693-4a66-8594-9b758e564cfb ro quiet splash
ProcVersionSignature: Ubuntu 2.6.31-17.54-generic
RelatedPackageVersions:
 linux-backports-modules-2.6.31-17-generic N/A
 linux-firmware 1.25
RfKill:
 0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
SourcePackage: linux
Title: package linux-image-2.6.31-19-generic 2.6.31-19.56 failed to 
install/upgrade: le sous-processus script post-installation installé a retourné 
une erreur de sortie d'état 1
Uname: Linux 2.6.31-17-generic i686
WifiSyslog:
 Feb  7 08:49:17 phil-desktop kernel: [  396.717271] __ratelimit: 3 callbacks 
suppressed
 Feb  7 08:49:17 phil-desktop kernel: [  396.717279] depmod[2288]: segfault at 
78 ip 0804db17 sp bfe0ca10 error 4 in depmod[8048000+d000]
 Feb  7 08:53:13 phil-desktop kernel: [  632.494034] depmod[2682]: segfault at 
78 ip 0804db17 sp bfe7e9a0 error 4 in depmod[8048000+d000]
 Feb  7 08:53:23 phil-desktop kernel: [  642.286541] depmod[2754]: segfault at 
78 ip 0804db17 sp bffbc850 error 4 in depmod[8048000+d000]
WpaSupplicantLog:
 
dmi.bios.date: 08/04/2004
dmi.bios.vendor: Phoenix Technologies, LTD
dmi.bios.version: ASUS A7N8X-X ACPI BIOS Rev 1011
dmi.board.name: A7N8X-X
dmi.board.vendor: ASUSTeK Computer INC.
dmi.board.version: REV 2.xx
dmi.chassis.asset.tag: Asset-1234567890
dmi.chassis.type: 3
dmi.chassis.vendor: Chassis Manufactture
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnPhoenixTechnologies,LTD:bvrASUSA7N8X-XACPIBIOSRev1011:bd08/04/2004:svnASUSTeKComputerINC.:pnA7N8X-X:pvrREV2.xx:rvnASUSTeKComputerINC.:rnA7N8X-X:rvrREV2.xx:cvnChassisManufactture:ct3:cvrChassisVersion:
dmi.product.name: A7N8X-X
dmi.product.version: REV 2.xx
dmi.sys.vendor: ASUSTeK Computer INC.

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


** Tags: apport-package i386

-- 
package linux-image-2.6.31-19-generic 2.6.31-19.56 failed to install/upgrade: 
le sous-processus script post-installation install? a retourn? une erreur de 
sortie d'?tat 1
https://bugs.launchpad.net/bugs/518305
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 518305] Re: package linux-image-2.6.31-19-generic 2.6.31-19.56 failed to install/upgrade: le sous-processus script post-installation install? a retourn? une erreur de sortie d'?tat 1

2010-02-07 Thread Philou40

** Attachment added: AlsaDevices.txt
   http://launchpadlibrarian.net/38851471/AlsaDevices.txt

** Attachment added: AplayDevices.txt
   http://launchpadlibrarian.net/38851472/AplayDevices.txt

** Attachment added: AptOrdering.txt
   http://launchpadlibrarian.net/38851473/AptOrdering.txt

** Attachment added: ArecordDevices.txt
   http://launchpadlibrarian.net/38851474/ArecordDevices.txt

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

** Attachment added: Card0.Amixer.values.txt
   http://launchpadlibrarian.net/38851476/Card0.Amixer.values.txt

** Attachment added: Card0.Codecs.codec97.0.ac97.0.0.txt
   http://launchpadlibrarian.net/38851477/Card0.Codecs.codec97.0.ac97.0.0.txt

** Attachment added: Card0.Codecs.codec97.0.ac97.0.0.regs.txt
   
http://launchpadlibrarian.net/38851478/Card0.Codecs.codec97.0.ac97.0.0.regs.txt

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

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

** Attachment added: Dmesg.txt
   http://launchpadlibrarian.net/38851481/Dmesg.txt

** Attachment added: DpkgTerminalLog.txt
   http://launchpadlibrarian.net/38851483/DpkgTerminalLog.txt

** Attachment added: IwConfig.txt
   http://launchpadlibrarian.net/38851484/IwConfig.txt

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

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

** Attachment added: PciMultimedia.txt
   http://launchpadlibrarian.net/38851487/PciMultimedia.txt

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

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

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

** Attachment added: UdevDb.txt
   http://launchpadlibrarian.net/38851491/UdevDb.txt

** Attachment added: UdevLog.txt
   http://launchpadlibrarian.net/38851492/UdevLog.txt

-- 
package linux-image-2.6.31-19-generic 2.6.31-19.56 failed to install/upgrade: 
le sous-processus script post-installation install? a retourn? une erreur de 
sortie d'?tat 1
https://bugs.launchpad.net/bugs/518305
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 507288] Re: similar to #466109 but happened with live USB stick on Dell 910 (ubuntu 8.04--9.10)

2010-02-07 Thread Jeff
This is sufficiently similar to what I'm seeing to just tack on here
instead of opening a new bug:

System:

Lenovo S10 w/ bcom 43XX wireless device (like many netbooks)

Booted from a 9.10 UNR on USB thumb drive.

Once the live version was up and running, chose to install to HDD.

Once installer loaded, the hardware-drivers app kicked off letting me know 
there were proprietary drivers for my bcom wireless chip.
I opened hardware-drivers, selected the STA driver and clicked activate.  

Hardware-drivers then commenced to download and install the STA driver
(currently connected via copper). once it finished, the install window
closed, returning me to the hardware-drivers screen which showed the STA
driver as activated w/ system needing reboot.

The very next thing that happened was that the screen went black,
leaving only the mouse pointer visible, and a single _ char at the top
left of the screen.

Most disconcerting, however, was the capslock light continuously
flashing on and off.  I had to power cycle the netbook to get back into
the UNR installer.

Sorry for not having any logs or captured data... hard to get that kind
of stuff though when the system has become a brick.

Once I got the little Lenovo rebooted, I went back into the installer
and when hardware-drivers popped up this time, I just ignored it and
went on with installing.

-- 
similar to #466109 but happened with live USB stick on Dell 910 (ubuntu 
8.04--9.10)
https://bugs.launchpad.net/bugs/507288
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 285417] Re: [intrepid] gtk2-engines-ubuntulooks can't be installed

2010-02-07 Thread Fabrice Coutadeur
Hi,

I've tested upgrade from Hardy to Lucid with both packages (updated and not 
updated), and in both cases, gtk2-engines-ubuntulooks get removed by 
ubuntu-theme.
So no upgrade problem from Hardy to Lucid because of that.

Also, this mean that without modifying ubuntu-theme, this patch won't be
of any use, as installing gtk2-engines-ubuntulooks will always uninstall
human-theme and ubuntu-artwork.

Even if I still think the best thing to do is to delete this package
from Lucid, to avoid users uninstalling necessary stuff, I'll add a task
for human-theme and subscribe main-sponsors to have their opinion on
this change.

Fabrice

** Changed in: ubuntulooks (Ubuntu)
   Status: In Progress = Triaged

** Changed in: ubuntulooks (Ubuntu)
 Assignee: Fabrice Coutadeur (fabricesp) = (unassigned)

** Also affects: human-theme (Ubuntu)
   Importance: Undecided
   Status: New

-- 
[intrepid] gtk2-engines-ubuntulooks can't be installed
https://bugs.launchpad.net/bugs/285417
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 516337] Re: Ubuntu Freezes When Pressed Enter

2010-02-07 Thread Mitch Towner
*** This bug is a duplicate of bug 516412 ***
https://bugs.launchpad.net/bugs/516412

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug 516412, so it is being marked as such. Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Changed in: ubuntu
   Status: New = Confirmed

** This bug has been marked a duplicate of bug 516412
   Pressing Enter causes X to freeze

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

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


[Bug 518306] [NEW] Some keyboard shortcuts stop working after reboot when using non-qwerty layout

2010-02-07 Thread surreal
Public bug reported:

Binary package hint: gnome-settings-daemon

When using Dvorak keymap, keyboard shortcuts that are handled by g-s-d
and have a letter in them (e.g. super+w, launch browser) don't work when
logging in. Resetting them either in Keyboard Shortcuts or gconf-editor
makes them work again. This bug does not affect shortcuts handled by
Metacity, hence I'm reporting it here and using the new custom shortcuts
feature in Keyboard Shortcuts as a workaround.

The problem is affecting gnome-settings-daemon 2.28.1-0ubuntu2 under
Ubuntu 9.10

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

-- 
Some keyboard shortcuts stop working after reboot when using non-qwerty layout
https://bugs.launchpad.net/bugs/518306
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 518301]

2010-02-07 Thread Apport retracing service
StacktraceTop:
 ?? () from /usr/lib/mesa/libGL.so.1
 ?? () from /usr/lib/mesa/libGL.so.1
 glXMakeCurrentReadSGI () from /usr/lib/mesa/libGL.so.1
 glXMakeCurrent () from /usr/lib/mesa/libGL.so.1
 main (argc=1, argv=0xbf8129f4) at glxinfo.c:469

-- 
glxinfo crashed with SIGSEGV in glXMakeCurrentReadSGI()
https://bugs.launchpad.net/bugs/518301
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 518301] Stacktrace.txt

2010-02-07 Thread Apport retracing service

** Attachment added: Stacktrace.txt
   http://launchpadlibrarian.net/38851669/Stacktrace.txt

-- 
glxinfo crashed with SIGSEGV in glXMakeCurrentReadSGI()
https://bugs.launchpad.net/bugs/518301
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 518301] ThreadStacktrace.txt

2010-02-07 Thread Apport retracing service

** Attachment added: ThreadStacktrace.txt
   http://launchpadlibrarian.net/38851670/ThreadStacktrace.txt

** Attachment removed: CoreDump.gz
   http://launchpadlibrarian.net/38851089/CoreDump.gz

** Changed in: mesa (Ubuntu)
   Importance: Undecided = Medium

** Tags removed: need-i386-retrace

-- 
glxinfo crashed with SIGSEGV in glXMakeCurrentReadSGI()
https://bugs.launchpad.net/bugs/518301
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 508890] Re: Nautilus crashes when there are multiple XScreens

2010-02-07 Thread Flávio Etrusco
Is it my impression or the latest xserver-xorg-core upgrade fixed it?

-- 
Nautilus crashes when there are multiple XScreens
https://bugs.launchpad.net/bugs/508890
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 397497] Re: MC (Midnight Commander) does not wish to keep CONFIG

2010-02-07 Thread PryGuy
So when it'll FINALLY be uploaded???!!!

-- 
MC (Midnight Commander) does not wish to keep CONFIG
https://bugs.launchpad.net/bugs/397497
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 518308] [NEW] Unable to find a source package for gnome-panel

2010-02-07 Thread DimitryPolivaev
Public bug reported:

Binary package hint: gnome-panel

1.
dimi...@dimitry-laptop:~$ lsb_release -rd
Description:Ubuntu 9.10
Release:9.10

2.
dimi...@dimitry-laptop:~$ apt-cache policy gnome-panel
gnome-panel:
  Installed: 1:2.28.0-0ubuntu6
  Candidate: 1:2.28.0-0ubuntu6
  Version table:
 *** 1:2.28.0-0ubuntu6 0
500 http://ftp-stud.hs-esslingen.de karmic/main Packages
100 /var/lib/dpkg/status

3.
dimi...@dimitry-laptop:~$ apt-get source gnome-panel

I expected that the source is download, but it finishes with an  error
message

Reading package lists... Done
Building dependency tree   
Reading state information... Done
E: Unable to find a source package for gnome-panel

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

-- 
Unable to find a source package for gnome-panel
https://bugs.launchpad.net/bugs/518308
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 518307] [NEW] crash when compiling GCC trunk (works under Debian/Sid)

2010-02-07 Thread Basile Starynkevitch
Public bug reported:

when compiling GCC trunk revision 156557 on Ubuntu lucid AMD64 the
internal generator genmodes [a code generator internal too GCC] crash
under Ubunu/Lucid/amd64. The exactly same compilation works well on
Debian/Sid/AMD64.


THe GCC trunk 156557 [from GCC subversion] was configured with
   CFLAGS='-O -g' ../gcc-trunk/configure --disable-bootstrap --enable-lto 
--enable-languages=c,lto

it crashes with a SIGSEGV on Ubuntu/Lucid/amd64 (system last updated on febr 06 
2010) but works on Debian/Sid/AMD64.
$ lsb_release -rd
Description:Ubuntu lucid (development branch)
Release:10.04

More details on http://gcc.gnu.org/ml/gcc/2010-02/msg00076.html
including a gdb backtrace.

Regards.

ProblemType: Bug
Architecture: amd64
Date: Sun Feb  7 09:08:12 2010
DistroRelease: Ubuntu 10.04
InstallationMedia: Ubuntu 10.04 Lucid Lynx - Alpha amd64 (20100113)
Package: gcc 4:4.4.2-3ubuntu1
ProcEnviron:
 PATH=(custom, no user)
 LANG=en_US.utf8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.32-12.17-generic
SourcePackage: gcc-defaults
Uname: Linux 2.6.32-12-generic x86_64

** Affects: gcc-defaults (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug lucid

-- 
crash when compiling GCC trunk (works under Debian/Sid)
https://bugs.launchpad.net/bugs/518307
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 518307] Re: crash when compiling GCC trunk (works under Debian/Sid)

2010-02-07 Thread Basile Starynkevitch

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

-- 
crash when compiling GCC trunk (works under Debian/Sid)
https://bugs.launchpad.net/bugs/518307
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 517276] Re: [G84] X freezes after pressing ENTER

2010-02-07 Thread Andreas Noteng
sadly I'm unable to find any error messages in your logs, besides the ACPI 
ones. Maybe it's related after all?
Could you please recreate the freeze change to console and post the results of 
the following:
dmesg  dmesg.log
top -b -n 5  top.log

I doubt they will reveal anything but to be sure also try posting:
/var/log/daemon.log
/var/log/kern.log
/var/log/syslog

-- 
[G84] X freezes after pressing ENTER
https://bugs.launchpad.net/bugs/517276
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 437270] Re: Sound troubleshooting

2010-02-07 Thread David Henningsson
** Changed in: apport-symptoms (Ubuntu)
   Status: In Progress = Fix Released

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

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


[Bug 518309] [NEW] Xorg freeze

2010-02-07 Thread David Henningsson
Public bug reported:

Binary package hint: xorg

More information to follow

ProblemType: Bug
Architecture: amd64
Date: Sun Feb  7 09:18:59 2010
DistroRelease: Ubuntu 10.04
DkmsStatus: Error: [Errno 2] No such file or directory
InstallationMedia: Ubuntu 10.04 Lucid Lynx - Alpha amd64 (20091209)
MachineType: Gigabyte Technology Co., Ltd. GA-MA770T-UD3P
Package: xorg 1:7.5+1ubuntu2
ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.32-12-generic 
root=UUID=ea805cd5-71ba-47e4-9ac8-14e70eaf8a61 ro quiet splash
ProcEnviron:
 LANG=sv_SE.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.32-12.17-generic
RelatedPackageVersions:
 xserver-xorg 1:7.5+1ubuntu2
 libgl1-mesa-glx 7.7-0ubuntu8
 libdrm2 2.4.17-0ubuntu2
 xserver-xorg-video-intel 2:2.9.1-1ubuntu3
SourcePackage: xorg
Symptom: display
Title: Xorg freeze
Uname: Linux 2.6.32-12-generic x86_64
dmi.bios.date: 06/24/2009
dmi.bios.vendor: Award Software International, Inc.
dmi.bios.version: F2
dmi.board.name: GA-MA770T-UD3P
dmi.board.vendor: Gigabyte Technology Co., Ltd.
dmi.board.version: x.x
dmi.chassis.type: 3
dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
dmi.modalias: 
dmi:bvnAwardSoftwareInternational,Inc.:bvrF2:bd06/24/2009:svnGigabyteTechnologyCo.,Ltd.:pnGA-MA770T-UD3P:pvr:rvnGigabyteTechnologyCo.,Ltd.:rnGA-MA770T-UD3P:rvrx.x:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvr:
dmi.product.name: GA-MA770T-UD3P
dmi.sys.vendor: Gigabyte Technology Co., Ltd.
system:
 distro: Ubuntu
 architecture:   x86_64kernel: 2.6.32-12-generic

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


** Tags: amd64 apport-bug freeze lucid

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

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


[Bug 518309] Re: Xorg freeze

2010-02-07 Thread David Henningsson

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

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

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

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

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

** Attachment added: PciDisplay.txt
   http://launchpadlibrarian.net/38851952/PciDisplay.txt

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

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

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

** Attachment added: UdevDb.txt
   http://launchpadlibrarian.net/38851956/UdevDb.txt

** Attachment added: UdevLog.txt
   http://launchpadlibrarian.net/38851957/UdevLog.txt

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

** Attachment added: XorgLogOld.txt
   http://launchpadlibrarian.net/38851959/XorgLogOld.txt

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

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


[Bug 518303] Re: empathy crashed with SIGSEGV

2010-02-07 Thread Apport retracing service
*** This bug is a duplicate of bug 518066 ***
https://bugs.launchpad.net/bugs/518066

Thank you for taking the time to report this crash and helping to make
Ubuntu better.  This particular crash has already been reported and is a
duplicate of bug #518066, so is being marked as such.  Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: CoreDump.gz
   http://launchpadlibrarian.net/38851378/CoreDump.gz

** Attachment removed: Dependencies.txt
   http://launchpadlibrarian.net/38851379/Dependencies.txt

** Attachment removed: Disassembly.txt
   http://launchpadlibrarian.net/38851380/Disassembly.txt

** Attachment removed: ProcMaps.txt
   http://launchpadlibrarian.net/38851381/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   http://launchpadlibrarian.net/38851382/ProcStatus.txt

** Attachment removed: Registers.txt
   http://launchpadlibrarian.net/38851383/Registers.txt

** Attachment removed: Stacktrace.txt
   http://launchpadlibrarian.net/38851384/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   http://launchpadlibrarian.net/38851385/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 518066
   empathy crashed with SIGSEGV

** Visibility changed to: Public

** Tags removed: need-amd64-retrace

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

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


[Bug 516412] Re: Pressing Enter causes X to freeze

2010-02-07 Thread Simon Baconnais
Ok, my bad ...

Reinstalling xserver-xorg-video-* doesn't fix this bug :P

But, in my case, killing X by Ctrl+Alt+Print+K fix the problem until the
next reboot.

Hop it will help you ...

-- 
Pressing Enter causes X to freeze
https://bugs.launchpad.net/bugs/516412
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 518309] Re: Xorg freeze

2010-02-07 Thread David Henningsson
When booting 2.6.32-12, most of the times, no ubuntu splash screen is
shown. A (movable) mouse pointer shows up after a while, and a small
line (cursor) in the upper left corner. I then switch to a VT with Ctrl-
Alt-F1 (and reported this bug). If I after that switch back with Ctrl-
Alt-F7, the gdm login screen is shown, but when I try to login (after
entered password and pressed ok) the system locks up hard.

when booting 2.6.32-11, this problem does not occur, so I'm unsure
whether xorg or linux is the correct package for this one.

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

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

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


[Bug 518307] Re: crash when compiling GCC trunk (works under Debian/Sid)

2010-02-07 Thread Basile Starynkevitch
The actual bug seems to be related to strcmp from libc6. The following
trivial program crashes on Ubuntu, and runs ok on Debian:


// file teststrcmp.c
#include string.h
#include stdio.h

int main(int argc, char**argv)
{
int c=0;
char *s = (argc1)?argv[1]:aa;
printf(s=%p=%s\n, s, s);
c=strcmp(s, aa);
printf(c=%d\n, c);
return 0;
}
/// eof teststrcmp.c

-- 
crash when compiling GCC trunk (works under Debian/Sid)
https://bugs.launchpad.net/bugs/518307
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 461996] Re: In Karmic, LyX cannot find included pdf file (pdfpages)

2010-02-07 Thread ratoune
Lyx 1.6.5 is now available for ubuntu 9.10: there's a package from getdeb 
website.
See also this link:
http://tobal.cymaho.com/?p=1196

Great!

-- 
In Karmic, LyX cannot find included pdf file (pdfpages)
https://bugs.launchpad.net/bugs/461996
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 518310] Re: empathy crashed with SIGSEGV in g_simple_async_result_complete()

2010-02-07 Thread Apport retracing service
*** This bug is a duplicate of bug 517969 ***
https://bugs.launchpad.net/bugs/517969

Thank you for taking the time to report this crash and helping to make
Ubuntu better.  This particular crash has already been reported and is a
duplicate of bug #517969, so is being marked as such.  Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: CoreDump.gz
   http://launchpadlibrarian.net/38852061/CoreDump.gz

** Attachment removed: Dependencies.txt
   http://launchpadlibrarian.net/38852062/Dependencies.txt

** Attachment removed: Disassembly.txt
   http://launchpadlibrarian.net/38852063/Disassembly.txt

** Attachment removed: ProcMaps.txt
   http://launchpadlibrarian.net/38852064/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   http://launchpadlibrarian.net/38852065/ProcStatus.txt

** Attachment removed: Registers.txt
   http://launchpadlibrarian.net/38852066/Registers.txt

** Attachment removed: Stacktrace.txt
   http://launchpadlibrarian.net/38852067/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   http://launchpadlibrarian.net/38852068/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 517969
   empathy crashed with SIGSEGV in g_simple_async_result_complete()

** Visibility changed to: Public

** Tags removed: need-i386-retrace

-- 
empathy crashed with SIGSEGV in g_simple_async_result_complete()
https://bugs.launchpad.net/bugs/518310
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 518268] Re: Package and include rinputd in universe

2010-02-07 Thread Jonathan Kolberg
** Tags added: packaging

** Changed in: ubuntu
 Assignee: (unassigned) = MOTU Reviewers Team (motureviewers)

-- 
Package and include rinputd in universe
https://bugs.launchpad.net/bugs/518268
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 459046] Re: No sound with ICE1712 chipset

2010-02-07 Thread mirosol
To add to my last post:
As sudo nano /lib/udev/rules.d/90-pulseaudio.rules states:
# do not edit this file, it will be overwritten on update

So this bubblegumfix is not really effective on the long run.

-- 
No sound with ICE1712 chipset
https://bugs.launchpad.net/bugs/459046
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 518314] [NEW] strcmp crashes

2010-02-07 Thread Basile Starynkevitch
Public bug reported:

Binary package hint: libc6

system is Ubuntu/Lucid/10.04 alpha2 on amd64, updated febr 06 2010.
Probably same bug as bug 518307.

The following program crashes (but should not, and works ok on Debian/Sid), 
when compiled with gcc -Wall teststrcmp.c -o teststrcmp.c (even with -O, or 
with gcc-4.3, so seems libc6 related).
libc6-dev  is   2.11.1-0ubuntu2

// file teststrcmp.c
#include string.h
#include stdio.h

int main(int argc, char**argv)
{
 int c=0;
 char *s = (argc1)?argv[1]:aa;
 printf(s=%p=%s\n, s, s);
 c=strcmp(s, aa);
 printf(c=%d\n, c);
 return 0;
}
/// eof teststrcmp.c

The crash as reported by gdb is inside strcmp.

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

-- 
strcmp crashes
https://bugs.launchpad.net/bugs/518314
You received this bug notification because you are a member of 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 514782] Re: brasero fails to recognise dvdrw drive and/or media

2010-02-07 Thread daf
1 is correct -- but it seems to be the same as 2 since the dvdrw was erased
from the right-click menu that pops up on the desktop in GNOME -- afaik,
this invokes brasero?
2 was for media that wasn't blank -- Nautilus correctly mounted the media
but brasero didn't seem to handle with the fact that the media was mounted
-- until I dismounted it myself. This problem is intermittent -- about 90%
of the time, brasero dismounts the media before writing -- just these few
times it's gotten stuck

-d

On 6 February 2010 22:16, Draycen DeCator ddeca...@gmail.com wrote:

 Thank you, every bit of information is always of huge assistance! Since
 you said that you've had trouble with Brasero not recognizing discs in
 other situations, I'm not entirely sure that this bug is the same as the
 other one I found. It is very difficult to tell whether all of the
 issues you are experiencing are related or if they are separate
 problems. Consequently, I am hesitant to mark this bug as a duplicate.
 In order to help me prepare this bug for viewing by a developer, could
 you please summarize all of the issues you have had with Brasero not
 recognizing media? What you've mentioned so far seems to be...

 1. Brasero doesn't recognize a RW media after is has been erased, but other
 applications (K3b) do.
 2. Brasero unreliably will fail to recognize blank media mounted by
 Nautilus
 3. Brasero sometimes doesn't want to write to a media after it has just
 been erased using Brasero

 Do these sound correct? Please let me know if I have misunderstood any
 of them or if there are other strange behaviors you are having in
 regards to Brasero recognizing media.

 --
 brasero fails to recognise dvdrw drive and/or media
 https://bugs.launchpad.net/bugs/514782
 You received this bug notification because you are a direct subscriber
 of the bug.



-- 
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
There is no shame in not knowing; the shame is in not finding out.

-- 
brasero fails to recognise dvdrw drive and/or media
https://bugs.launchpad.net/bugs/514782
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 459046] Re: No sound with ICE1712 chipset

2010-02-07 Thread mirosol
But.. if you've fixed yours in the way i've suggested, after pulse gets 
updated, just do:
sudo nano /lib/udev/rules.d/90-pulseaudio.rules

Add this as last line:
SUBSYSTEMS==pci, ATTRS{vendor}==0x1412, ATTRS{device}==0x1712, 
ATTRS{subsystem_vendor}==0x1412, ATTRS{subsystem_device}==0xd634, 
ENV{PULSE_PROFILE_SET}=m_audio-audiophile-2496.conf

Then sudo alsa restart, and you're back on track. Sad little buggy
this is.

-- 
No sound with ICE1712 chipset
https://bugs.launchpad.net/bugs/459046
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 518316] [NEW] package nvidia-185-libvdpau 1 85.18.36-0ubuntu9 failed to install/upgrade: install ed post-installation script alfolyamat 2 hibakóddal k ilépett

2010-02-07 Thread komi
Public bug reported:

Nem mukodik a driver

ProblemType: Package
Architecture: i386
CurrentDmesg:
 [   31.028314] ppdev: user-space parallel port driver
 [   31.852017] eth0: no IPv6 routers present
 [   33.454555] usb 2-3: usbfs: interface 0 claimed by usblp while 'usb' sets 
config #1
 [   94.160060] Clocksource tsc unstable (delta = -79987526 ns)
 [ 3065.418569] process `skype' is using obsolete setsockopt SO_BSDCOMPAT
Date: Sun Feb  7 10:50:10 2010
Dependencies:
 
DistroRelease: Ubuntu 9.10
ErrorMessage: installed post-installation script alfolyamat 2 hibakóddal 
kilépett
InstallationMedia: Ubuntu 9.10 Karmic Koala - Release i386 (20091028.5)
Lsusb:
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
 Bus 002 Device 002: ID 4348:5584 WinChipHead CH34x printer adapter cable
 Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
 Bus 002 Device 003: ID 0a81:0205 Chesen Electronics Corp. PS/2 Keyboard+Mouse 
Adapter
MachineType: Micro-Star International MEGA BOOK M670
Package: nvidia-185-libvdpau 185.18.36-0ubuntu9
ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.31-19-generic 
root=UUID=4f782618-289b-408e-b8bd-2d4131cd5c58 ro quiet splash
ProcVersionSignature: Ubuntu 2.6.31-19.56-generic
RelatedPackageVersions:
 xserver-xorg 1:7.4+3ubuntu10
 libgl1-mesa-glx 7.6.0-1ubuntu4
 libdrm2 2.4.14-1ubuntu1
 xserver-xorg-video-intel 2:2.9.0-1ubuntu2.1
 xserver-xorg-video-ati 1:6.12.99+git20090929.7968e1fb-0ubuntu1
SourcePackage: nvidia-graphics-drivers-180
Title: package nvidia-185-libvdpau 185.18.36-0ubuntu9 failed to 
install/upgrade: installed post-installation script alfolyamat 2 hibakóddal 
kilépett
Uname: Linux 2.6.31-19-generic i686
XorgConf: Error: [Errno 2] Nincs ilyen fájl vagy könyvtár: '/etc/X11/xorg.conf'
dmi.bios.date: 09/05/2006
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: A1632NMS Ver1.0D
dmi.board.asset.tag: To Be Filled By O.E.M.
dmi.board.name: MS-1632
dmi.board.vendor: MSI
dmi.board.version: Ver 1.000
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 3
dmi.chassis.vendor: MICRO-STAR INT'L CO.,LTD.
dmi.chassis.version: N/A
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrA1632NMSVer1.0D:bd09/05/2006:svnMicro-StarInternational:pnMEGABOOKM670:pvrVer1.000:rvnMSI:rnMS-1632:rvrVer1.000:cvnMICRO-STARINT'LCO.,LTD.:ct3:cvrN/A:
dmi.product.name: MEGA BOOK M670
dmi.product.version: Ver 1.000
dmi.sys.vendor: Micro-Star International
fglrx: Not loaded
system:
 distro: Ubuntu
 architecture:   i686kernel: 2.6.31-19-generic

** Affects: nvidia-graphics-drivers-180 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386

-- 
package nvidia-185-libvdpau 185.18.36-0ubuntu9 failed to install/upgrade: 
installed post-installation script alfolyamat 2 hibakóddal kilépett
https://bugs.launchpad.net/bugs/518316
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 518316] Re: package nvidia-185-libvdpau 185 .18.36-0ubuntu9 failed to install/upgrade: installed post-installation script alfolyamat 2 hibakóddal kil épett

2010-02-07 Thread komi

** Attachment added: AptOrdering.txt
   http://launchpadlibrarian.net/38852300/AptOrdering.txt

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

** Attachment added: Dmesg.txt
   http://launchpadlibrarian.net/38852302/Dmesg.txt

** Attachment added: DpkgTerminalLog.txt
   http://launchpadlibrarian.net/38852303/DpkgTerminalLog.txt

** Attachment added: GdmLog.txt
   http://launchpadlibrarian.net/38852304/GdmLog.txt

** Attachment added: GdmLogOld.txt
   http://launchpadlibrarian.net/38852305/GdmLogOld.txt

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

** Attachment added: PciDisplay.txt
   http://launchpadlibrarian.net/38852307/PciDisplay.txt

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

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

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

** Attachment added: UdevDb.txt
   http://launchpadlibrarian.net/38852311/UdevDb.txt

** Attachment added: UdevLog.txt
   http://launchpadlibrarian.net/38852312/UdevLog.txt

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

** Attachment added: XorgLogOld.txt
   http://launchpadlibrarian.net/38852314/XorgLogOld.txt

** Attachment added: Xrandr.txt
   http://launchpadlibrarian.net/38852315/Xrandr.txt

** Attachment added: glxinfo.txt
   http://launchpadlibrarian.net/38852316/glxinfo.txt

** Attachment added: setxkbmap.txt
   http://launchpadlibrarian.net/38852317/setxkbmap.txt

** Attachment added: xdpyinfo.txt
   http://launchpadlibrarian.net/38852318/xdpyinfo.txt

** Attachment added: xkbcomp.txt
   http://launchpadlibrarian.net/38852319/xkbcomp.txt

-- 
package nvidia-185-libvdpau 185.18.36-0ubuntu9 failed to install/upgrade: 
installed post-installation script alfolyamat 2 hibakóddal kilépett
https://bugs.launchpad.net/bugs/518316
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 518314] Re: strcmp crashes

2010-02-07 Thread Basile Starynkevitch
** Description changed:

  Binary package hint: libc6
  
  system is Ubuntu/Lucid/10.04 alpha2 on amd64, updated febr 06 2010.
- Probably same bug as 518307.
+ Probably same bug as bug 518307.
  
  The following program crashes (but should not, and works ok on Debian/Sid), 
when compiled with gcc -Wall teststrcmp.c -o teststrcmp.c (even with -O, or 
with gcc-4.3, so seems libc6 related).
- libc6-dev  is   2.11.1-0ubuntu2  
+ libc6-dev  is   2.11.1-0ubuntu2
  
  // file teststrcmp.c
  #include string.h
  #include stdio.h
  
  int main(int argc, char**argv)
  {
-   int c=0;
-   char *s = (argc1)?argv[1]:aa;
-   printf(s=%p=%s\n, s, s);
-   c=strcmp(s, aa);
-   printf(c=%d\n, c);
-   return 0;
+  int c=0;
+  char *s = (argc1)?argv[1]:aa;
+  printf(s=%p=%s\n, s, s);
+  c=strcmp(s, aa);
+  printf(c=%d\n, c);
+  return 0;
  }
  /// eof teststrcmp.c
  
  The crash as reported by gdb is inside strcmp.

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

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

[Bug 518307] Re: crash when compiling GCC trunk (works under Debian/Sid)

2010-02-07 Thread Basile Starynkevitch
probably a strcmp bug, see bug 518314

-- 
crash when compiling GCC trunk (works under Debian/Sid)
https://bugs.launchpad.net/bugs/518307
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 517766] apport-collect data

2010-02-07 Thread Andreas Riedel
Architecture: i386
DistroRelease: Ubuntu 9.10
InstallationMedia: Ubuntu 9.10 Karmic Koala - Release i386 (20091028.5)
MachineType: SAMSUNG ELECTRONICS CO., LTD. N130
Package: xserver-xorg-video-intel 2:2.9.0-1ubuntu2.1
PackageArchitecture: i386
ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.31-17-generic 
root=UUID=77bbef10-a196-45d5-b821-c0479f1ef9f9 ro quiet splash
ProcEnviron:
 SHELL=/bin/bash
 PATH=(custom, user)
 LANG=de_DE.UTF-8
ProcVersionSignature: Ubuntu 2.6.31-17.54-generic
RelatedPackageVersions:
 xserver-xorg 1:7.4+3ubuntu10
 libgl1-mesa-glx 7.6.0-1ubuntu4
 libdrm2 2.4.14-1ubuntu1
 xserver-xorg-video-intel 2:2.9.0-1ubuntu2.1
 xserver-xorg-video-ati 1:6.12.99+git20090929.7968e1fb-0ubuntu1
Uname: Linux 2.6.31-17-generic i686
UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare
XorgConf: Error: [Errno 2] No such file or directory: '/etc/X11/xorg.conf'
dmi.bios.date: 09/01/2009
dmi.bios.vendor: Phoenix Technologies Ltd.
dmi.bios.version: 02CM.M004.20090901.CYH
dmi.board.name: N130
dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
dmi.board.version: Not Applicable
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
dmi.chassis.version: N/A
dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvr02CM.M004.20090901.CYH:bd09/01/2009:svnSAMSUNGELECTRONICSCO.,LTD.:pnN130:pvrNotApplicable:rvnSAMSUNGELECTRONICSCO.,LTD.:rnN130:rvrNotApplicable:cvnSAMSUNGELECTRONICSCO.,LTD.:ct10:cvrN/A:
dmi.product.name: N130
dmi.product.version: Not Applicable
dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.
fglrx: Not loaded
system:
 distro: Ubuntu
 architecture:   i686kernel: 2.6.31-17-generic

-- 
Intel Mobile 945GME // system freeze connecting a second monitor
https://bugs.launchpad.net/bugs/517766
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 517766] BootDmesg.txt

2010-02-07 Thread Andreas Riedel

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

-- 
Intel Mobile 945GME // system freeze connecting a second monitor
https://bugs.launchpad.net/bugs/517766
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 517766] CurrentDmesg.txt

2010-02-07 Thread Andreas Riedel

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

-- 
Intel Mobile 945GME // system freeze connecting a second monitor
https://bugs.launchpad.net/bugs/517766
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 517766] Dependencies.txt

2010-02-07 Thread Andreas Riedel

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

-- 
Intel Mobile 945GME // system freeze connecting a second monitor
https://bugs.launchpad.net/bugs/517766
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 517766] Lspci.txt

2010-02-07 Thread Andreas Riedel

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

-- 
Intel Mobile 945GME // system freeze connecting a second monitor
https://bugs.launchpad.net/bugs/517766
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 517766] Lsusb.txt

2010-02-07 Thread Andreas Riedel

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

-- 
Intel Mobile 945GME // system freeze connecting a second monitor
https://bugs.launchpad.net/bugs/517766
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 517766] PciDisplay.txt

2010-02-07 Thread Andreas Riedel

** Attachment added: PciDisplay.txt
   http://launchpadlibrarian.net/38852404/PciDisplay.txt

-- 
Intel Mobile 945GME // system freeze connecting a second monitor
https://bugs.launchpad.net/bugs/517766
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 517766] ProcCpuinfo.txt

2010-02-07 Thread Andreas Riedel

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

-- 
Intel Mobile 945GME // system freeze connecting a second monitor
https://bugs.launchpad.net/bugs/517766
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 517766] ProcInterrupts.txt

2010-02-07 Thread Andreas Riedel

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

-- 
Intel Mobile 945GME // system freeze connecting a second monitor
https://bugs.launchpad.net/bugs/517766
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 517766] ProcModules.txt

2010-02-07 Thread Andreas Riedel

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

-- 
Intel Mobile 945GME // system freeze connecting a second monitor
https://bugs.launchpad.net/bugs/517766
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 517766] UdevDb.txt

2010-02-07 Thread Andreas Riedel

** Attachment added: UdevDb.txt
   http://launchpadlibrarian.net/38852410/UdevDb.txt

-- 
Intel Mobile 945GME // system freeze connecting a second monitor
https://bugs.launchpad.net/bugs/517766
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 517766] UdevLog.txt

2010-02-07 Thread Andreas Riedel

** Attachment added: UdevLog.txt
   http://launchpadlibrarian.net/38852412/UdevLog.txt

-- 
Intel Mobile 945GME // system freeze connecting a second monitor
https://bugs.launchpad.net/bugs/517766
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 517766] XorgLog.txt

2010-02-07 Thread Andreas Riedel

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

-- 
Intel Mobile 945GME // system freeze connecting a second monitor
https://bugs.launchpad.net/bugs/517766
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 517766] XorgLogOld.txt

2010-02-07 Thread Andreas Riedel

** Attachment added: XorgLogOld.txt
   http://launchpadlibrarian.net/38852414/XorgLogOld.txt

-- 
Intel Mobile 945GME // system freeze connecting a second monitor
https://bugs.launchpad.net/bugs/517766
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 517766] Xrandr.txt

2010-02-07 Thread Andreas Riedel

** Attachment added: Xrandr.txt
   http://launchpadlibrarian.net/38852415/Xrandr.txt

-- 
Intel Mobile 945GME // system freeze connecting a second monitor
https://bugs.launchpad.net/bugs/517766
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 517766] XsessionErrors.txt

2010-02-07 Thread Andreas Riedel

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

-- 
Intel Mobile 945GME // system freeze connecting a second monitor
https://bugs.launchpad.net/bugs/517766
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 517766] glxinfo.txt

2010-02-07 Thread Andreas Riedel

** Attachment added: glxinfo.txt
   http://launchpadlibrarian.net/38852417/glxinfo.txt

-- 
Intel Mobile 945GME // system freeze connecting a second monitor
https://bugs.launchpad.net/bugs/517766
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 517766] monitors.xml.txt

2010-02-07 Thread Andreas Riedel

** Attachment added: monitors.xml.txt
   http://launchpadlibrarian.net/38852418/monitors.xml.txt

-- 
Intel Mobile 945GME // system freeze connecting a second monitor
https://bugs.launchpad.net/bugs/517766
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 517766] setxkbmap.txt

2010-02-07 Thread Andreas Riedel

** Attachment added: setxkbmap.txt
   http://launchpadlibrarian.net/38852419/setxkbmap.txt

-- 
Intel Mobile 945GME // system freeze connecting a second monitor
https://bugs.launchpad.net/bugs/517766
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 517766] xdpyinfo.txt

2010-02-07 Thread Andreas Riedel

** Attachment added: xdpyinfo.txt
   http://launchpadlibrarian.net/38852420/xdpyinfo.txt

-- 
Intel Mobile 945GME // system freeze connecting a second monitor
https://bugs.launchpad.net/bugs/517766
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 517766] xkbcomp.txt

2010-02-07 Thread Andreas Riedel

** Attachment added: xkbcomp.txt
   http://launchpadlibrarian.net/38852421/xkbcomp.txt

** Tags added: apport-collected

-- 
Intel Mobile 945GME // system freeze connecting a second monitor
https://bugs.launchpad.net/bugs/517766
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 516762] Re: [sponsor request] libhdhomerun update

2010-02-07 Thread Fabrice Coutadeur
** Changed in: libhdhomerun (Ubuntu)
   Status: Incomplete = In Progress

** Changed in: libhdhomerun (Ubuntu)
 Assignee: (unassigned) = Fabrice Coutadeur (fabricesp)

-- 
[sponsor request] libhdhomerun update
https://bugs.launchpad.net/bugs/516762
You received this bug notification because you are a member of 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 464591] Re: upgrade breaks graphic drivers and x, preventing login or startx

2010-02-07 Thread Stefan Pielmeier
It is save, in case you feel able to fix the problems like described in 
the release notes. In case you want to have things work out of the box, 
I advice you to continue with 9.4

Ciao, Stefan.

clau...@guendelman.com wrote:
 I still have the  same  Bug.  i  Upgrade and  i  install  from  cero  i
 mean  i do a clean  instal and  my graphic  card  ATI radeon  breaks.

 Claudio Fron Chile

 2010/2/6 joherrer joher...@gmail.com

   
 I am invited now to upgrade to 9.10.
 I first installed 9.10 and had to quit due to nvidia.
 Then my son installed 9.4 and it is doing well.
 ¿Is it safe to accept the challenge upgrade?

 --
 upgrade breaks graphic drivers and x, preventing login or startx
 https://bugs.launchpad.net/bugs/464591
 You received this bug notification because you are a direct subscriber
 of the bug.

 Status in “xorg” package in Ubuntu: Invalid

 Bug description:
 see also here http://ubuntuforums.org/showthread.php?t=1305459

 for some reasons the upgrade breaks proprietary graphics drivers

 this means a flickering screen without the possibility to login or startx.

 ATTENTION

 Since this bug report is being linked to by news stories, it is getting
 viewed by many people with nvidia bugs that fail in similar ways but due to
 unrelated causes. I'd like to direct them to more appropriate bug reports:

 The blinks on reboot issue is a bug in gdm, bug #441638. That blinking
 symptom will occur for any sort of failure of X to start, and there are a
 lot of reasons why X may not start, so be aware that just because someone
 else is reporting this same blinking behavior does not necessarily mean you
 have the same underlying cause as them, so keep digging. This is causing
 lots of confusion in bug reports.

 For those who have upgraded since Intrepid or earlier, there is an issue
 reported where /sbin/lrm-video can cause nvidia to fail loading. That file
 no longer exists in Jaunty or Karmic and you can safely delete it as a work
 around. Bug #467490 describes this issue. I don't know how common this is,
 but if it is common we may need to make sure the upgrader removes the file
 properly. Manually uninstalling all nvidia packages *might* clear the file.

 For people running -rt kernels, such as Ubuntu Studio users, -nvidia has a
 known incompatibility there, see bug #464125 for example. Similar situation
 for -pae kernels, see bug #454220 as a recent example.

 Someone mentioned that the upgrader disables the proprietary drivers.
 According to mvo, that is not correct, or at least not intentional. However,
 the upgrader *does* remove driver entries from xorg.conf if the driver is no
 longer present after upgrade. As far as I know, this should all work
 seamlessly for people, however several people have reported that removing
 their xorg.conf and reinstalling -nvidia helped, so it is possible there is
 an error in this logic. If you suspect this is the case, what we need is a
 full bug report filed using 'ubuntu-bug xorg'; in particular we need to see
 the xorg.conf files so we understand how the upgrader is misbehaving.

 I see a lot in forum articles the advice that the solution is to remove
 nvidia or fglrx lines from xorg.conf. While this may help in getting the
 system functioning again, please note that it is not a solution - it merely
 turns off the proprietary drivers. Whatever the original problem was is
 still there, you're just using different video drivers. Also, be aware that
 both nvidia and fglrx install GL and other libraries on top of the normal
 system libraries, so if you install one of those drivers and then use
 something else, it may work for 2D but you may run into severe problems for
 3D. This is also a known issue - bug 258038 describes one possible solution
 we will be considering for Lucid. It's a hard problem to solve for
 proprietary drivers though.

 There are almost certainly more nvidia bugs, but we also have plenty of
 other bug reports (over 300 against -nvidia so far), many of which have been
 reported using ubuntu-bug so are closer to having the information we need.

 Finally, regarding people skills, actually after thousands of X bug reports
 those get worn down to a raw nub so I don't think I have them any more. All
 that's left is a grumpy X maintainer.

 p.s. Also see bug 438398 which appears to be the root cause for a lot of
 the nvidia failures. Unfortunately jockey may not be flagging these errors
 to the user (bug 441638) leading them to reboot without the nvidia driver
 fully installed.


 To unsubscribe from this bug, go to:
 https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/464591/+subscribe

 




-- 
upgrade breaks graphic drivers and x, preventing login or startx
https://bugs.launchpad.net/bugs/464591
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 285417] Re: [intrepid] gtk2-engines-ubuntulooks can't be installed

2010-02-07 Thread Fabrice Coutadeur
on the contrary, sponsoring this change for Lucid will led to upgrade problems 
from Hardy. So It may be sponsored only after lucid, but not before.
Please subscribe again Universe and Main sponsors after the release of Lucid.

-- 
[intrepid] gtk2-engines-ubuntulooks can't be installed
https://bugs.launchpad.net/bugs/285417
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 421673] Re: modem-manager tries to probe, crashes PalmOS handhelds and makes other serial devices unusable

2010-02-07 Thread Christoph
Thank you, jaf0. Let's see if my output is the one you need. I said 
$ ./lsudev tty (because someone mentioned that earlier)
and 
$ ./lsudev usb (because my Palm TX uses a usb cable)

But honestly, I don't understand anything :-)

** Attachment added: lsudev-output.tar.gz
   http://launchpadlibrarian.net/38852455/lsudev-output.tar.gz

-- 
modem-manager tries to probe, crashes PalmOS handhelds and makes other serial 
devices unusable
https://bugs.launchpad.net/bugs/421673
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 382113] Re: Login screen human list tries to log in (and fails) on space keystroke

2010-02-07 Thread ge0ffrey
This bug is not reproducable since ubuntu 9.10 and it's new login screen

** Changed in: gdm-2.20 (Ubuntu)
   Status: New = Invalid

-- 
Login screen human list tries to log in (and fails) on space keystroke
https://bugs.launchpad.net/bugs/382113
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 518317] [NEW] Please upgrade source-highlight-qt to 0.2.1-0ubuntu1

2010-02-07 Thread Angel Abad
Public bug reported:

The upstream author advises to update to 0.2.1. The source can be
downloaded from: http://sourceforge.net/projects/srchiliteqt/files/

I attach a diff.gz with the upgrade, please upload it.

Thanks!

** Affects: source-highlight-qt (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: update upgrade

-- 
Please upgrade source-highlight-qt to 0.2.1-0ubuntu1
https://bugs.launchpad.net/bugs/518317
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 518317] Re: Please upgrade source-highlight-qt to 0.2.1-0ubuntu1

2010-02-07 Thread Angel Abad

** Patch added: source-highlight-qt_0.2.1-0ubuntu1.diff.gz
   
http://launchpadlibrarian.net/38852587/source-highlight-qt_0.2.1-0ubuntu1.diff.gz

-- 
Please upgrade source-highlight-qt to 0.2.1-0ubuntu1
https://bugs.launchpad.net/bugs/518317
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 513209] Re: Please sync from Debian package (1.1.0 final)

2010-02-07 Thread Fabrice Coutadeur
** Changed in: argyll (Ubuntu)
   Importance: Undecided = Wishlist

** Changed in: argyll (Ubuntu)
   Status: New = In Progress

** Changed in: argyll (Ubuntu)
 Assignee: (unassigned) = Fabrice Coutadeur (fabricesp)

-- 
Please sync from Debian package (1.1.0 final)  
https://bugs.launchpad.net/bugs/513209
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 408538] Re: Please sync from Debian package (1.0.4)

2010-02-07 Thread Fabrice Coutadeur
Fixed in Lucid

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

-- 
Please sync from Debian package (1.0.4)
https://bugs.launchpad.net/bugs/408538
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 518318] [NEW] package linux-image-2.6.3 1-19-generic 2.6.31-19.56 failed to install/upgrade : Unterprozess installiertes post-installation-Skript ga b den Fehlerwert 139 zurück

2010-02-07 Thread helmi
Public bug reported:

Binary package hint: grub2

Ubuntu 9.10

ProblemType: Package
Architecture: amd64
Date: Sat Feb  6 13:24:00 2010
DistroRelease: Ubuntu 9.10
ErrorMessage: Unterprozess installiertes post-installation-Skript gab den 
Fehlerwert 139 zurück
NonfreeKernelModules: fglrx
Package: linux-image-2.6.31-19-generic 2.6.31-19.56
ProcVersionSignature: Ubuntu 2.6.31-18.55-generic
SourcePackage: grub2
Title: package linux-image-2.6.31-19-generic 2.6.31-19.56 failed to 
install/upgrade: Unterprozess installiertes post-installation-Skript gab den 
Fehlerwert 139 zurück
Uname: Linux 2.6.31-18-generic x86_64

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


** Tags: amd64 apport-package

-- 
package linux-image-2.6.31-19-generic 2.6.31-19.56 failed to install/upgrade: 
Unterprozess installiertes post-installation-Skript gab den Fehlerwert 139 
zurück
https://bugs.launchpad.net/bugs/518318
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 518318] Re: package linux-image-2.6.31-19 -generic 2.6.31-19.56 failed to install/upgrade: U nterprozess installiertes post-installation-Skript gab den Fehlerwert 139 zurück

2010-02-07 Thread helmi

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

** Attachment added: Dmesg.gz
   http://launchpadlibrarian.net/38852720/Dmesg.gz

** Attachment added: DpkgTerminalLog.txt
   http://launchpadlibrarian.net/38852721/DpkgTerminalLog.txt

-- 
package linux-image-2.6.31-19-generic 2.6.31-19.56 failed to install/upgrade: 
Unterprozess installiertes post-installation-Skript gab den Fehlerwert 139 
zurück
https://bugs.launchpad.net/bugs/518318
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 517973] Re: does not create account during initial wizard

2010-02-07 Thread om26er
** Summary changed:

- First create account
+ does not create account during initial wizard

** Description changed:

  Binary package hint: empathy
  
- At first launch, it asks us to create an account.
- I add my MSN address and my password
- He asks me if I want to use the function local accouunt
- I said yes and I filled the field and then click create
- Its me login but only the local account has been created ...
+ start empathy for the first time and it asks for account creation.
+ create a google talk account click apply and it asks for creating an
+ account for 'people nearby' create it or ignore it and click apply.
+ google talk account in both cases is not created.
  
  ProblemType: Bug
  Architecture: i386
  Date: Sat Feb  6 10:26:11 2010
  DistroRelease: Ubuntu 10.04
  ExecutablePath: /usr/bin/empathy
  InstallationMedia: Ubuntu-Netbook 10.04 Lucid Lynx - Alpha i386 (20100206)
  Package: empathy 2.29.6-0ubuntu2
  ProcEnviron:
-  SHELL=/bin/bash
-  LANG=fr_FR.utf8
+  SHELL=/bin/bash
+  LANG=fr_FR.utf8
  ProcVersionSignature: Ubuntu 2.6.32-12.17-generic
  SourcePackage: empathy
  Uname: Linux 2.6.32-12-generic i686
  XsessionErrors:
-  (gnome-settings-daemon:1756): GLib-CRITICAL **: g_propagate_error: assertion 
`src != NULL' failed
-  (gnome-settings-daemon:1756): GLib-CRITICAL **: g_propagate_error: assertion 
`src != NULL' failed
-  (polkit-gnome-authentication-agent-1:1787): GLib-CRITICAL **: 
g_once_init_leave: assertion `initialization_value != 0' failed
+  (gnome-settings-daemon:1756): GLib-CRITICAL **: g_propagate_error: assertion 
`src != NULL' failed
+  (gnome-settings-daemon:1756): GLib-CRITICAL **: g_propagate_error: assertion 
`src != NULL' failed
+  (polkit-gnome-authentication-agent-1:1787): GLib-CRITICAL **: 
g_once_init_leave: assertion `initialization_value != 0' failed

-- 
does not create account during initial wizard
https://bugs.launchpad.net/bugs/517973
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 518319] [NEW] Unable to initate a conversation from a pop-up

2010-02-07 Thread Mårten Woxberg
Public bug reported:

Binary package hint: empathy

I don't have gnome-panel running, I do have Gnome-Do and Empathy starts
by gnome-session.

When I recieve a chat from a friend, I have to first start empathy to
get the contact list up (Bug #483684)  and then locate my friend on the
list and double-click on him to get the conversation window up. Now I
can answer him (3 clicks and lots of mousing later)

Why oh why can't I click on the frakking pop-up that showed me he had
IM:ed me? When I mouse over on that It just fades away.

ProblemType: Bug
Architecture: amd64
CheckboxSubmission: 9add62d6e46a92eb8c731ad2c40bbe69
CheckboxSystem: fd6c484c0b5d20a2f1cd036ef0f63975
Date: Sun Feb  7 10:14:43 2010
DistroRelease: Ubuntu 10.04
ExecutablePath: /usr/bin/empathy
NonfreeKernelModules: nvidia
Package: empathy 2.28.1.1-0ubuntu1
ProcEnviron:
 LANGUAGE=sv_SE.UTF-8
 LANG=sv_SE.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.32-12.16-generic
SourcePackage: empathy
Uname: Linux 2.6.32-12-generic x86_64

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


** Tags: amd64 apport-bug lucid ubuntu-unr

-- 
Unable to initate a conversation from a pop-up
https://bugs.launchpad.net/bugs/518319
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 518319] Re: Unable to initate a conversation from a pop-up

2010-02-07 Thread Mårten Woxberg

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

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

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

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

-- 
Unable to initate a conversation from a pop-up
https://bugs.launchpad.net/bugs/518319
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 516389] Re: sometimes firefox is not able to play youtube videos

2010-02-07 Thread Angel Abad
Hi, you have two versions of flash, this could be the problem, could you
try to remove all flash versions? and try to install or reinstall the
adobe flash player, with this command in a terminal.

$ sudo apt-get install --reinstall flashplugin-nonfree

Thanks!

-- 
sometimes firefox is not able to play youtube videos
https://bugs.launchpad.net/bugs/516389
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 453812] Re: [i945] [karmic] regression: I can't turn off LVDS on my MSI Wind (Intel 945GME)

2010-02-07 Thread Bug Watch Updater
** Changed in: xserver-xorg-video-intel
   Status: In Progress = Confirmed

-- 
[i945] [karmic] regression: I can't turn off LVDS on my MSI Wind (Intel 945GME)
https://bugs.launchpad.net/bugs/453812
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 428769] Re: compiz starts with a blank screen on a 2048x1152 monitor

2010-02-07 Thread Bug Watch Updater
** Changed in: xserver-xorg-video-intel
   Status: Unknown = Fix Released

-- 
compiz starts with a blank screen on a 2048x1152 monitor
https://bugs.launchpad.net/bugs/428769
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 518322] [NEW] After inserting content of HTML page OO crashes

2010-02-07 Thread Stan
Public bug reported:

Binary package hint: openoffice.org

After inserting this cut and paste from an HTML page into a new document OO 
crashes:
begin of code


emTestfragen und
Übungsaufgaben zum Thema Reihenschaltung von 
Widerständen/em/u/strong/font/p

pfont size=2Hinweis: es können eine, mehrere
oder alle Antworten richtig sein/fontfont size=3./font/p

pfont size=3strong1.) Welche Aussagen bezüglich der Spannung in
einer Reihenschaltung sind richtig?/strong/font/p

form action=/php/ausw-reihenschaltung-widerstand.php3 method=POST

 table border=0 cellpadding=5
tbodytr

tdnbsp;/td
td align=center bgcolor=#00ffccbRichtig/b/td
td align=center bgcolor=#ffbFalsch/b/td
tdnbsp;/td
/tr
tr
tda.) /td

td align=center bgcolor=#00ffccinput name=A1 value=R 
type=radio/td
td align=center bgcolor=#ffinput name=A1 value=F 
type=radio/td
tdDie Spannung ist grundsätzlich an jedem Widerstand gleich 
groß.(UsubR1/sub= UsubR2/sub usw.)/td
/tr
tr
tdb.)/td

td align=center bgcolor=#00ffccinput name=B1 value=R 
type=radio/td
td align=center bgcolor=#ffinput name=B1 value=F 
type=radio/td
tdDie Summe der Einzelspannungen ist gleich die 
Gesamtspannung./td
/tr
tr
tdc.)/td
td align=center bgcolor=#00ffccinput name=C1 value=R 
type=radio/td
td align=center bgcolor=#ffinput name=C1 value=F 
type=radio/td

tdBesteht die Reihenschaltung aus gleich großen Widerständen, so 
sind auch die einzelnen Spannungen gleich groß./td
/tr
tr
tdd.)/td
td align=center bgcolor=#00ffccinput name=D1 value=R 
type=radio/td
td align=center bgcolor=#ffinput name=D1 value=F 
type=radio/td
tdJe größer ein Widerstand desto geringer ist die an ihm liegende 
Spannung./td

/tr
/tbody/table

pfont size=3strong2.) Welche Aussagen
bezüglich des Stromes in einer Reihenschaltung sind 
richtig?/strong/font/p
 table border=0 cellpadding=5
tbodytr
tdnbsp;/td
td align=center bgcolor=#00ffccbRichtig/b/td
td align=center bgcolor=#ffbFalsch/b/td

tdnbsp;/td /tr
tr
tda.)/td
td align=center bgcolor=#00ffccinput name=A2 value=R 
type=radio/td
td align=center bgcolor=#ffinput name=A2 value=F 
type=radio/td
td In einer Reihenschaltung fließt überall der gleiche Strom./td
/tr

tr
tdb.)/td
td align=center bgcolor=#00ffccinput name=B2 value=R 
type=radio/td
td align=center bgcolor=#ffinput name=B2 value=F 
type=radio/td
tdDie Gesamtstromstärke ist gleich der Summe der 
Einzelstromstärken./td
/tr
tr
tdc.)/td

td align=center bgcolor=#00ffccinput name=C2 value=R 
type=radio/td
td align=center bgcolor=#ffinput name=C2 value=F 
type=radio/td
tdDie angelegte Spannung hat keinen Einfluß auf die 
Stromstärke./td
/tr
tr
tdd.)/td
td align=center bgcolor=#00ffccinput name=D2 value=R 
type=radio/td
td align=center bgcolor=#ffinput name=D2 value=F 
type=radio/td

tdJe größer die Widerstände, umso geringer die Stromstärke./td
/tr
/tbody/table
   
pfont size=3strong3.) Testaufgabe Reihenschaltung aus 3 
Widerständen/strongbr
Reihenschaltung: R1=100 img src=../bilder/omega.gif alt=Ohm 
height=15 width=15, R2=180 img src=../bilder/omega.gif alt=Ohm 
height=15 width=15, R3=500 img src=../bilder/omega.gif alt=Ohm 
height=15 width=15, angelegte
Spannung U=78V/font/p
pfont size=3Berechne: /font/p

pfont size=3Rsubges/sub = input size=4 name=RGES 
type=textimg src=../bilder/omega.gif alt=Ohm height=15 
width=15/font/p
pfont size=3Isubges/sub= input size=4 name=IGES 
type=textAbr
Isub1/sub = input size=4 name=I1 type=textAbr

Isub2 /sub= input size=4 name=I2 type=textAbr
Isub3/sub = input size=4 name=I3 type=textA/font/p
pfont size=3UsubR1/sub = input size=4 name=U1 
type=textVbr

UsubR2/sub = input size=4 name=U2 type=textVbr
UsubR3/sub = input size=4 name=U3 type=textV/font


end of code

ProblemType: Bug
Architecture: i386
Date: Sun Feb  7 10:25:51 2010
DistroRelease: Ubuntu 9.10
InstallationMedia: Ubuntu 9.10 Karmic Koala - Release i386 (20091028.5)
NonfreeKernelModules: nvidia
Package: openoffice.org-core 1:3.1.1-5ubuntu1 [modified: 
var/lib/openoffice/basis3.1/program/services.rdb]
ProcEnviron:
 PATH=(custom, no user)
 LANG=de_DE.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.31-19.56-generic
SourcePackage: openoffice.org
Uname: Linux 

[Bug 518322] Re: After inserting content of HTML page OO crashes

2010-02-07 Thread Stan

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

-- 
After inserting content of HTML page OO crashes
https://bugs.launchpad.net/bugs/518322
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 518321] [NEW] Klondike solitaire comes up in place of spiderette

2010-02-07 Thread karelc
Public bug reported:

Binary package hint: gnome-games

I allowed the error report to be sent, so I hope you've already got this
information. When I select a game, and I select spiderette, klondike
comes up instead.

ProblemType: Bug
Architecture: i386
DistroRelease: Ubuntu 9.04
Package: gnome-games 1:2.26.1-0ubuntu2
ProcEnviron:
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: gnome-games
Uname: Linux 2.6.28-13-generic i686

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


** Tags: apport-bug i386

-- 
Klondike solitaire comes up in place of spiderette
https://bugs.launchpad.net/bugs/518321
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 518321] Re: Klondike solitaire comes up in place of spiderette

2010-02-07 Thread karelc

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

-- 
Klondike solitaire comes up in place of spiderette
https://bugs.launchpad.net/bugs/518321
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 517498] Re: Please merge heimdal 1.3.1.rc2.dfsg.1-1(universe) from debian squeeze(main)

2010-02-07 Thread Fabrice Coutadeur
Hi,

Just make one more test then: test if the package that has this added 
dependency on netbase installs and runs fine.
Is it's the case, this could be a sync.

thanks,
Fabrice

-- 
Please merge heimdal 1.3.1.rc2.dfsg.1-1(universe) from debian squeeze(main)
https://bugs.launchpad.net/bugs/517498
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 510021] Re: CD/DVD won't unmount after manual removal

2010-02-07 Thread PryGuy
I have the same bug. It is strange why people are so passive about it,
the bug appears to be very serious IMO!

-- 
CD/DVD won't unmount after manual removal
https://bugs.launchpad.net/bugs/510021
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 448095] Re: resolvconf starts after ifupdown, does not pick the dns-nameserver and dns-search lines up from /etc/network/interfaces

2010-02-07 Thread Will
Just to say I have this bug too. :(

Symptom:

After a reboot, /etc/resolv.conf contains only this:

$ cat /etc/resolv.conf 
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
nameserver 127.0.0.1
nameserver 10.18.4.3
nameserver 10.18.4.1

There is no search domain, yet I specified it in /etc/network/interfaces
as follows:

dns-nameservers 10.18.4.3 10.18.4.1
dns-search blah.co.uk fudd.co.uk


However, if I now issue the following command :

$ sudo /etc/init.d/networking restart

It fixes /etc/resolv.conf, as per this:

$ cat /etc/resolv.conf 
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
nameserver 127.0.0.1
search blah.co.uk fudd.co.uk
nameserver 10.18.4.3
nameserver 10.18.4.1

Can't wait till this is fixed.

-- 
resolvconf starts after ifupdown, does not pick the dns-nameserver and 
dns-search lines up from /etc/network/interfaces
https://bugs.launchpad.net/bugs/448095
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 417757] Re: [karmic regression] all network apps / browsers suffer from multi-second delays by default due to IPv6 DNS lookups

2010-02-07 Thread dhenry
It's fixed in Karmic. But still present on Lucid. Please fix it before
Lucid release, not like for Karmic (fix was too late).

@manu: it has nothing to do with wireless. It's the same problem with
wired connection.

-- 
[karmic regression] all network apps / browsers suffer from multi-second delays 
by default due to IPv6 DNS lookups
https://bugs.launchpad.net/bugs/417757
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 518305] Re: package linux-image-2.6.31-19-generic 2.6.31-19.56 failed to install/upgrade: le sous-processus script post-installation install? a retourn? une erreur de sortie d'?tat 1

2010-02-07 Thread Monkey
*** This bug is a duplicate of bug 518221 ***
https://bugs.launchpad.net/bugs/518221

** This bug has been marked a duplicate of bug 518221
   package linux-image-2.6.31-19-generic 2.6.31-19.56 failed to 
install/upgrade: subprocess installed post-installation script returned error 
exit status 1

-- 
package linux-image-2.6.31-19-generic 2.6.31-19.56 failed to install/upgrade: 
le sous-processus script post-installation install? a retourn? une erreur de 
sortie d'?tat 1
https://bugs.launchpad.net/bugs/518305
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 518292] Re: package linux-image-2.6.31-19-generic 2.6.31-19.56 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2010-02-07 Thread Monkey
*** This bug is a duplicate of bug 518221 ***
https://bugs.launchpad.net/bugs/518221

** This bug has been marked a duplicate of bug 518221
   package linux-image-2.6.31-19-generic 2.6.31-19.56 failed to 
install/upgrade: subprocess installed post-installation script returned error 
exit status 1

-- 
package linux-image-2.6.31-19-generic 2.6.31-19.56 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
https://bugs.launchpad.net/bugs/518292
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 517417] Re: [Q35] Rebooting after relatively long uptime, Xorg gives an error of No Valid Modes

2010-02-07 Thread Geir Ove Myhr
** Summary changed:

- Rebooting after relatively long uptime, Xorg gives an error of No Valid Modes
+ [Q35] Rebooting after relatively long uptime, Xorg gives an error of No Valid 
Modes

-- 
[Q35] Rebooting after relatively long uptime, Xorg gives an error of No Valid 
Modes
https://bugs.launchpad.net/bugs/517417
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 516312] Re: package flashplugin-nonfree 10.0.1.218+really9.0.260.0ubuntu1 failed to install/upgrade: Package is in a very bad inconsistent state - you should reinstall it before attempting a remo

2010-02-07 Thread Julian Hartley
Thank you Jean-Baptiste for taking a look at this.

You asked for log files from /var/log/dist-upgrade/ which I hope I can
attach.

There are 6 files and one folder. The folder name appears to correspond
to the time of the error incident.  Some names are duplicated so I think
I will just send the log files from the folder. Please let me know if
you need the 6 other files?

Sorry, I am not sure how to upload more than one file at a time.

** Attachment added: apt.log
   http://launchpadlibrarian.net/38853013/apt.log

-- 
package flashplugin-nonfree 10.0.1.218+really9.0.260.0ubuntu1 failed to 
install/upgrade: Package is in a very bad inconsistent state - you should  
reinstall it before attempting a removal.
https://bugs.launchpad.net/bugs/516312
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 511095] Re: GDM logs out / disconnects user randomly

2010-02-07 Thread itsjustarumour
I'm getting the same problem.

Distro Version - Ubuntu Karmic 9.10, 32-bit, default fresh install with latest 
updates
Desktop Environment - GNOME 2.28.1 (Ubuntu 2009-11-03)
Kernel - Linux 2.6.31-19-generic
System - Athlon 64 3400 2.2GHz processor, NVidia 6800LE graphics, 1.5MB RAM

-- 
GDM logs out / disconnects user randomly
https://bugs.launchpad.net/bugs/511095
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 428769] Re: compiz starts with a blank screen on a 2048x1152 monitor

2010-02-07 Thread Alan Bell
not fixed in Lucid daily CD AMD64 from yesterday.

-- 
compiz starts with a blank screen on a 2048x1152 monitor
https://bugs.launchpad.net/bugs/428769
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 417389] Re: [karmic] Can't connect w/ Option Globesurfer Icon 1.8Mbit/s 3G usb Modem

2010-02-07 Thread Simone Tolotti
After kernel upgrade to 2.6.31-19 NM has stopped working again. :-(

-- 
[karmic] Can't connect w/ Option Globesurfer Icon 1.8Mbit/s 3G usb Modem
https://bugs.launchpad.net/bugs/417389
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 518325] [NEW] Murrine configuration option gradients is no longer supported and will be ignored

2010-02-07 Thread David Henningsson
Public bug reported:

Binary package hint: human-theme

After the latest lucid upgrades, I suddenly get this message everytime I
startup a GUI program from the terminal:

/usr/share/themes/Human/gtk-2.0/gtkrc:85: Murrine configuration option
gradients is no longer supported and will be ignored.

Somewhat annoying...

ProblemType: Bug
Architecture: amd64
Date: Sun Feb  7 10:35:58 2010
DistroRelease: Ubuntu 10.04
InstallationMedia: Ubuntu 10.04 Lucid Lynx - Alpha amd64 (20091209)
Package: human-theme 0.37
PackageArchitecture: all
ProcEnviron:
 LANG=sv_SE.utf8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.32-11.15-generic
SourcePackage: human-theme
Uname: Linux 2.6.32-11-generic x86_64

** Affects: human-theme (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug lucid

-- 
Murrine configuration option gradients is no longer supported and will be 
ignored
https://bugs.launchpad.net/bugs/518325
You received this bug notification because you are a member of 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   >