[Bug 648120] [NEW] Squid doesn't start at boot

2010-09-26 Thread Dave Gilbert
Public bug reported:

Binary package hint: squid

Squid doesn't start on boot.  Yofel on #ubuntu+1 spotted a single character 
typo in /etc/init/squid.conf
that seems to be the cause:


start on (local-filesystem
and net-device-up IFACE!=lo)

It looks like that local-filesystem should be local-filesystem*s*

Dave

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: squid 2.7.STABLE9-2ubuntu4
ProcVersionSignature: Ubuntu 2.6.35-22.33-generic 2.6.35.4
Uname: Linux 2.6.35-22-generic x86_64
Architecture: amd64
CheckboxSubmission: f2d10bd9f943a85b486a282e7840a570
CheckboxSystem: 0531969bcfd4f03af7405c98dc94a948
Date: Sun Sep 26 13:23:08 2010
InstallationMedia: Ubuntu 9.10 Karmic Koala - Release amd64 (20091027)
ProcEnviron:
 PATH=(custom, user)
 LANG=en_GB.utf8
 SHELL=/bin/bash
SourcePackage: squid

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


** Tags: amd64 apport-bug maverick ubuntu-une

-- 
Squid doesn't start at boot
https://bugs.launchpad.net/bugs/648120
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to squid 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 648120] Re: Squid doesn't start at boot

2010-09-26 Thread Dave Gilbert

** Attachment added: Dependencies.txt
   
https://bugs.launchpad.net/bugs/648120/+attachment/1639035/+files/Dependencies.txt

-- 
Squid doesn't start at boot
https://bugs.launchpad.net/bugs/648120
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to squid 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 578527] Re: map serial port throws chardev: opening backend tty failed

2010-09-26 Thread Bertrand JUGLAS
I've followed comment #9 so I've added the following line to the end of 
/etc/apparmor.d/abstractions/libvirt-qemu
owner /dev/ttyS* rw,

And now it works fine :)
Thank you for the fix ;)

-- 
map serial port throws chardev: opening backend tty failed
https://bugs.launchpad.net/bugs/578527
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 647489] Re: package dovecot-postfix 1:1.2.11-1ubuntu1 failed to install/upgrade: subprocess installed post-removal script returned error exit status 1

2010-09-26 Thread C de-Avillez
*** This bug is a duplicate of bug 646858 ***
https://bugs.launchpad.net/bugs/646858

** This bug has been marked a duplicate of bug 646858
   dovecot-postfix and upstart incompatibility
 * You can subscribe to bug 646858 by following this link: 
https://bugs.edge.launchpad.net/ubuntu/+source/dovecot/+bug/646858/+subscribe

-- 
package dovecot-postfix 1:1.2.11-1ubuntu1 failed to install/upgrade: subprocess 
installed post-removal script returned error exit status 1
https://bugs.launchpad.net/bugs/647489
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dovecot 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 647337] Re: upgrade of packages freezes when upgrading dovecot-common

2010-09-26 Thread C de-Avillez
*** This bug is a duplicate of bug 646858 ***
https://bugs.launchpad.net/bugs/646858

** This bug has been marked a duplicate of bug 646858
   dovecot-postfix and upstart incompatibility
 * You can subscribe to bug 646858 by following this link: 
https://bugs.edge.launchpad.net/ubuntu/+source/dovecot/+bug/646858/+subscribe

-- 
upgrade of packages freezes when upgrading dovecot-common
https://bugs.launchpad.net/bugs/647337
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dovecot 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 640121] Re: package dovecot-imapd 1:1.2.9-1ubuntu6.1 failed to install/upgrade: dependency problems - leaving unconfigured

2010-09-26 Thread C de-Avillez
@(Christopher, RevEggplant): yours are not the same issue as in this
bug.

-- 
package dovecot-imapd 1:1.2.9-1ubuntu6.1 failed to install/upgrade: dependency 
problems - leaving unconfigured
https://bugs.launchpad.net/bugs/640121
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dovecot 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 648202] [NEW] vsftpd started even if not in standalone mode

2010-09-26 Thread Stephane Chazelas
Public bug reported:

Binary package hint: vsftpd

(lucid vsftpd 2.2.2-3ubuntu6)

because of a syntax error in /etc/init/vsftpd.con, vsftd is started (and
respawns a lot as it fails to start) if there's no listen=yes in
/etc/vsftpd.conf

/etc/init/vsftpd.conf has:

if [ -e  ${CONFFILE} ]  !egrep -iq ^
*listen(_ipv6)? *= *yes ${CONFFILE}

without space between ! and egrep. As a result !egrep returns with an
error (!egrep command not found) and as a result, the script assumes
the listen = yes line is in the file.

Moreover, if the /etc/vsftpd.conf file is not there, vsftpd is also
started which I suspect was not intended.

Moreover egrep is not a POSIX command.

Would be better written as:

if ! grep -qEis --
'^[[:blank:]]*listen(_ipv6)?[[:blank:]]*=[[:blank:]]*yes' $CONFFILE;
then...

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

-- 
vsftpd started even if not in standalone mode
https://bugs.launchpad.net/bugs/648202
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vsftpd 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 648228] [NEW] boot ordering broken: does not try next boot device

2010-09-26 Thread Reinhard Tartler
Public bug reported:

Binary package hint: qemu-kvm

steps to reproduce:
 - install qemu, libvirt-bin, virt-manager, kvm-pxe
 - create new virtual machine
 - connect some installation medium to the virtual CD drive
 - configure boot device order: Boot Options - Boot Device Order:
- check PXE, CDROM and local hard disk
- configure boot devices in that order
 - boot

Expected results:
 - system first tries PXE, fails, then boots from CD

Observed results:
 - system continously tries PXE boot via tftp, never falls back to installation 
CD or hard drive.

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

-- 
boot ordering broken: does not try next boot device
https://bugs.launchpad.net/bugs/648228
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-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 648228] Re: boot ordering broken: does not try next boot device

2010-09-26 Thread Reinhard Tartler
This issue may or may not be related to bug #551545

-- 
boot ordering broken: does not try next boot device
https://bugs.launchpad.net/bugs/648228
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-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 646858] Re: dovecot-postfix and upstart incompatibility

2010-09-26 Thread Christopher
I have postfix and dovecot-postfix installed, but it will not update.
This from the terminal:

Setting up dovecot-postfix (1:1.2.11-1ubuntu1) ...
Configuring postfix for dovecot-postfix integration:  done.
runlevel:/var/run/utmp: No such file or directory

-- 
dovecot-postfix and upstart incompatibility
https://bugs.launchpad.net/bugs/646858
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dovecot 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 646858] Re: dovecot-postfix and upstart incompatibility

2010-09-26 Thread Christopher
I meant to add that I can't do normal updates, so this is a security
issue as far as I'm concerned. I haven't found a way to not update
dovecot-postfix, and it blocks all other updates. Running dpkg
--configure -a just starts the dovecot-postfix update, and it just stops
after the last line of my most recent post.

-- 
dovecot-postfix and upstart incompatibility
https://bugs.launchpad.net/bugs/646858
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dovecot 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 648272] [NEW] non executable bit on cd rom media

2010-09-26 Thread David Mikeska
Public bug reported:

Binary package hint: samba

non executible bit. I finally upgrded from 8.10 and now I get this when
I run any executible file from the cdrom.

new security measures? how do I defeat it? want to install MS programs
though wine. Its bad enough MS makes things difficult.


well, they need to fix the  install script. I´ve been working on getting people 
away from Microsoft and this little bug will deter them.


and another thaught:

 if anyone installs  software that has malware and trojans on them from
a cdrom. they need to seek professional help (from a psychologists)

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

-- 
non executable bit on cd rom media
https://bugs.launchpad.net/bugs/648272
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 648272] Re: non executable bit on cd rom media

2010-09-26 Thread David Mikeska
if this is some intent to block malware, people need to know that its
web scripts that are the cause of 99% of the windows malware plague...
and for some reason, they do not work on linux or OSX systems.  Maybe
Microsoft needs to BUY some CODE.

-- 
non executable bit on cd rom media
https://bugs.launchpad.net/bugs/648272
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 640121] Re: package dovecot-imapd 1:1.2.9-1ubuntu6.1 failed to install/upgrade: dependency problems - leaving unconfigured

2010-09-26 Thread RevEggplant
I'm betting it is as it seems to be the same point in the post install
script for that package that I get the hang.

-- 
package dovecot-imapd 1:1.2.9-1ubuntu6.1 failed to install/upgrade: dependency 
problems - leaving unconfigured
https://bugs.launchpad.net/bugs/640121
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dovecot 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 646858] Re: dovecot-postfix and upstart incompatibility

2010-09-26 Thread doclist
You can kill dovecot (sudo pkill dovecot) and it will resume package
installation/configuration but dovecot will still not be running since
it cannot be started with the present bug.

-- 
dovecot-postfix and upstart incompatibility
https://bugs.launchpad.net/bugs/646858
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dovecot 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 648272] Re: non executable bit on cd rom media

2010-09-26 Thread Jordon Bedwell
David,

This is not a bug, it's a feature. According to upstream you can disable
NX Bit using the kernel flag noexec=off and noexec32=off, if you still
have problems, disable it in your CPU too using your BIOS.  Please also
refrain from making false statements about other operating systems on
Launchpad. While I am no Windows fanboy, it is not true that Microsoft
needs to BUY some CODE in this case, since Microsoft has implemented
DEP (NX Bit) since Windows XP SP2 and NX Bit was mostly designed to
prevent buffer overflows, not all Malware, if it was designed to prevent
all types of Malware you certainly wouldn't ever see rootkits and
backdoors on corporate Linux and Windows environments.

** Changed in: samba (Ubuntu)
   Status: New = Opinion

-- 
non executable bit on cd rom media
https://bugs.launchpad.net/bugs/648272
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 640121] Re: package dovecot-imapd 1:1.2.9-1ubuntu6.1 failed to install/upgrade: dependency problems - leaving unconfigured

2010-09-26 Thread C de-Avillez
@RevEggplant: please open a new bug using apport -- we need to see the
apt's term.log to verify.

-- 
package dovecot-imapd 1:1.2.9-1ubuntu6.1 failed to install/upgrade: dependency 
problems - leaving unconfigured
https://bugs.launchpad.net/bugs/640121
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dovecot 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 648404] [NEW] package apache2.2-common 2.2.14-5ubuntu8.2 failed to upgrade: subprocess installed post-installation script returned error exit status 1

2010-09-26 Thread rustle
Public bug reported:

Binary package hint: apache2

package apache2.2-common 2.2.14-5ubuntu8.2 failed to upgrade: subprocess
installed post-installation script returned error exit status 1

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: apache2.2-common 2.2.14-5ubuntu8.2
ProcVersionSignature: Ubuntu 2.6.32-24.43-generic 2.6.32.15+drm33.5
Uname: Linux 2.6.32-24-generic x86_64
Architecture: amd64
Date: Fri Sep 24 22:55:35 2010
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release amd64 (20100429)
SourcePackage: apache2
Title: package apache2.2-common 2.2.14-5ubuntu8.2 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1

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


** Tags: amd64 apport-package lucid

-- 
package apache2.2-common 2.2.14-5ubuntu8.2 failed to upgrade: subprocess 
installed post-installation script returned error exit status 1
https://bugs.launchpad.net/bugs/648404
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to apache2 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 648404] Re: package apache2.2-common 2.2.14-5ubuntu8.2 failed to upgrade: subprocess installed post-installation script returned error exit status 1

2010-09-26 Thread rustle

** Attachment added: AptOrdering.txt
   
https://bugs.launchpad.net/bugs/648404/+attachment/1640983/+files/AptOrdering.txt

** Attachment added: Dependencies.txt
   
https://bugs.launchpad.net/bugs/648404/+attachment/1640984/+files/Dependencies.txt

** Attachment added: Df.txt
   https://bugs.launchpad.net/bugs/648404/+attachment/1640985/+files/Df.txt

** Attachment added: Dmesg.txt
   https://bugs.launchpad.net/bugs/648404/+attachment/1640986/+files/Dmesg.txt

** Attachment added: DpkgTerminalLog.txt
   
https://bugs.launchpad.net/bugs/648404/+attachment/1640987/+files/DpkgTerminalLog.txt

-- 
package apache2.2-common 2.2.14-5ubuntu8.2 failed to upgrade: subprocess 
installed post-installation script returned error exit status 1
https://bugs.launchpad.net/bugs/648404
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to apache2 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 646858] Re: dovecot-postfix and upstart incompatibility

2010-09-26 Thread Yan Grunenberger
I had the same situation. I finish by rebooting to solve the 1st update lockout 
on the first occurrence. On the second, I just change conveniently the upstart 
script by the genuine one and the return code was OK for the update to 
complete. 
In order to find a clean upstart-based solution, I try to switch to expect 
daemon in /etc/init/dovecot.conf to insure upstart being capable of tracking 
dovecot process, but I've got the same hangup problem. 
Question is, is upstart capable of tracking program launched in a unprivileged 
way by the daemon ?
The only similar reference I'm thinking of is 
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=582745 .

** Bug watch added: Debian Bug tracker #582745
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=582745

-- 
dovecot-postfix and upstart incompatibility
https://bugs.launchpad.net/bugs/646858
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dovecot 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 646468] Re: Apparmor deny when trying to use hugetlbfs

2010-09-26 Thread mik
A better way to do it would be to modify libvirt to create a directory
on the hugetlbfs for the vm (not just for itself), then pass that as the
mem-path to kvm and tell the sVirt driver about it somehow.

-- 
Apparmor deny when trying to use hugetlbfs
https://bugs.launchpad.net/bugs/646468
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 647906] Re: hufo_tunnel assert failure: hufo_tunnel: ../../src/xcb_io.c:183: process_responses: Assertion `!(req current_request !(((long) (req-sequence) - (long) (current_request)) = 0))

2010-09-26 Thread Apport retracing service
*** This bug is a duplicate of bug 640116 ***
https://bugs.launchpad.net/bugs/640116

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 #640116, 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
   
https://bugs.edge.launchpad.net/bugs/647906/+attachment/1637420/+files/CoreDump.gz

** Attachment removed: Dependencies.txt
   
https://bugs.edge.launchpad.net/bugs/647906/+attachment/1637421/+files/Dependencies.txt

** Attachment removed: Disassembly.txt
   
https://bugs.edge.launchpad.net/bugs/647906/+attachment/1637422/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.edge.launchpad.net/bugs/647906/+attachment/1637424/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.edge.launchpad.net/bugs/647906/+attachment/1637425/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.edge.launchpad.net/bugs/647906/+attachment/1637426/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.edge.launchpad.net/bugs/647906/+attachment/1637427/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.edge.launchpad.net/bugs/647906/+attachment/1637428/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of private bug 640116

** Visibility changed to: Public

** Tags removed: need-amd64-retrace

-- 
hufo_tunnel assert failure: hufo_tunnel: ../../src/xcb_io.c:183: 
process_responses: Assertion `!(req  current_request  !(((long) 
(req-sequence) - (long) (current_request)) = 0))' failed.
https://bugs.launchpad.net/bugs/647906
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 638709] Re: the thin 1px window border makes really hard to resize windows

2010-09-26 Thread Tim Fisken
*** This bug is a duplicate of bug 160311 ***
https://bugs.launchpad.net/bugs/160311

** This bug is no longer a duplicate of bug 630166
   Windowborders of new light themes are too thin
** This bug has been marked a duplicate of bug 160311
   Resizing windows by grabbing window borders is difficult [please no more 
comments; patches welcome]
 * You can subscribe to bug 160311 by following this link: 
https://bugs.launchpad.net/ubuntu/+source/metacity/+bug/160311/+subscribe

-- 
the thin 1px window border makes really hard to resize windows
https://bugs.launchpad.net/bugs/638709
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 635158] Re: Way too thin window borders in light-themes

2010-09-26 Thread Tim Fisken
*** This bug is a duplicate of bug 160311 ***
https://bugs.launchpad.net/bugs/160311

** This bug is no longer a duplicate of bug 630166
   Windowborders of new light themes are too thin
** This bug has been marked a duplicate of bug 160311
   Resizing windows by grabbing window borders is difficult [please no more 
comments; patches welcome]
 * You can subscribe to bug 160311 by following this link: 
https://bugs.launchpad.net/ubuntu/+source/metacity/+bug/160311/+subscribe

-- 
Way too thin window borders in light-themes
https://bugs.launchpad.net/bugs/635158
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 630166] Re: Windowborders of new light themes are too thin

2010-09-26 Thread Tim Fisken
*** This bug is a duplicate of bug 160311 ***
https://bugs.launchpad.net/bugs/160311

** This bug has been marked a duplicate of bug 160311
   Resizing windows by grabbing window borders is difficult [please no more 
comments; patches welcome]
 * You can subscribe to bug 160311 by following this link: 
https://bugs.launchpad.net/ubuntu/+source/metacity/+bug/160311/+subscribe

-- 
Windowborders of new light themes are too thin
https://bugs.launchpad.net/bugs/630166
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 647912] Re: root password changed system inept

2010-09-26 Thread Micah Gersten
Not a firefox issue...needs reassignment or conversion to question

** Package changed: firefox (Ubuntu) = ubuntu

** Tags added: needs-reassignment

-- 
root password changed system inept 
https://bugs.launchpad.net/bugs/647912
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 647909] Re: gwibber-service crashed with SIGSEGV in pthread_mutex_lock()

2010-09-26 Thread Apport retracing service
*** This bug is a duplicate of bug 647807 ***
https://bugs.launchpad.net/bugs/647807

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 #647807, 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
   
https://bugs.edge.launchpad.net/bugs/647909/+attachment/1637442/+files/CoreDump.gz

** Attachment removed: Dependencies.txt
   
https://bugs.edge.launchpad.net/bugs/647909/+attachment/1637443/+files/Dependencies.txt

** Attachment removed: Disassembly.txt
   
https://bugs.edge.launchpad.net/bugs/647909/+attachment/1637444/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.edge.launchpad.net/bugs/647909/+attachment/1637445/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.edge.launchpad.net/bugs/647909/+attachment/1637446/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.edge.launchpad.net/bugs/647909/+attachment/1637447/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.edge.launchpad.net/bugs/647909/+attachment/1637448/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.edge.launchpad.net/bugs/647909/+attachment/1637449/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 647807
   gwibber-service crashed with SIGSEGV in pthread_mutex_lock()
 * You can subscribe to bug 647807 by following this link: 
https://bugs.edge.launchpad.net/ubuntu/+source/gwibber/+bug/647807/+subscribe

** Tags removed: need-amd64-retrace

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

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


[Bug 637208] Re: Left mouse button stop working after the first keyboard layout switch

2010-09-26 Thread Kamp
** Also affects: udev
   Importance: Undecided
   Status: New

-- 
Left mouse button stop working after the first keyboard layout switch
https://bugs.launchpad.net/bugs/637208
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 565685] Re: 82801I (ICH9 Family) HD Audio Controller - Lucid Lynx - Headphone jack does not disable speakers on laptop

2010-09-26 Thread capi /.
alsamixer just shows me master, pcm and capture. although i don't see
any snd-hda-intel in /etc/modprobe.d/alsa-base.conf

-- 
82801I (ICH9 Family) HD Audio Controller - Lucid Lynx - Headphone jack does not 
disable speakers on laptop
https://bugs.launchpad.net/bugs/565685
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 83587] Re: HP ScanJet 5300C doesn't work

2010-09-26 Thread miguelquiros
Yes, it works for me in Lucid. At least at 200 dpi.

-- 
HP ScanJet 5300C doesn't work
https://bugs.launchpad.net/bugs/83587
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 647914] [NEW] Mythexport doesn't call ffmpeg for OTG exports

2010-09-26 Thread Steve Switzer
Public bug reported:

Binary package hint: mythexport

After selecting a recording for an OTG (On The Go) export, mythexport
processes the request, but never calls ffmpeg. This is because of a but
in the code around line 340:

foreach (@params){

if ($_ =~ m/starttime/) {
$starttime = (split(/\=/,$_))[1];
}
elsif ($_ =~ m/chanid/) {
$chanid = (split(/\=/,$_))[1];
}
elsif ($_ =~ m/config/) {
$block = (split(/\=/,$_))[1];
}
#elsif ($_ =~ m/otg/) {
#$block = (split(/\=/,$_))[1];
#}
}


I commented out the last elsif to correct the issue, however this may cause a 
problem elsewhere, since I don't know what the original intent for parsing the 
value of otg was. With these three lines uncommented, $block is then set to 
true, not the name of the configuration to use. As such, several lines just 
below this block of code fail to retrieve parameters from the config file, 
including the following:

my $args = $export_cfg-param($block.ffmpegArgs) unless ref
$export_cfg-param($block.ffmpegArgs) eq 'ARRAY';

Since the code ends up looking for true.ffmpegArgs instead of
Steve_Podcast.ffmpegArgs, $args is empty. This causes the @args array
to be blank and the foreach loop around line 485 is never entered.

Perhaps some extra debug code should be added to exit earlier when
parsing the config fails?

NOTE: my line numbers are estimates, since I added several logdebug
lines while tracking this down.

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

-- 
Mythexport doesn't call ffmpeg for OTG exports
https://bugs.launchpad.net/bugs/647914
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 647908] Re: Too many OTG selections causes daemon to crash

2010-09-26 Thread Steve Switzer
NOTE: my line numbers are estimates, since I added several logdebug
lines while tracking this down.

-- 
Too many OTG selections causes daemon to crash
https://bugs.launchpad.net/bugs/647908
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 601113] Re: Dell Latitude E6410 Touchpad - Not all functions working; detected as PS/2 mouse

2010-09-26 Thread aa-hcl
*** This bug is a duplicate of bug 550625 ***
https://bugs.launchpad.net/bugs/550625

Hi,  I have

Dell E5510 and ubuntu 10.04 kernel ...24.

I also have this bug:  my touchpad detected as PS/2 mouse so no touchpad
prefereences in the mouse or pointer device preferences.

Interesting:  discussing the issue in 
http://ubuntuforums.org/showthread.php?p=9873143#post9873143
we found that:

kernel v..21  does NOT have this bug (i.e. when I boot to ver ..21
touchpad tab appears in the mouse preferences),  see details in the
above link on ubuntu forum.

Something happens in kernel 24 that it does not recognise the touchpad

-- 
Dell Latitude E6410 Touchpad - Not all functions working; detected as PS/2 mouse
https://bugs.launchpad.net/bugs/601113
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 575896] Re: rss wont recognise Thunderbird as an RSS client

2010-09-26 Thread Micah Gersten
*** This bug is a duplicate of bug 115071 ***
https://bugs.launchpad.net/bugs/115071

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 115071, 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: firefox (Ubuntu)
   Status: Invalid = Confirmed

** This bug has been marked a duplicate of bug 115071
   firefox rss feed chooser doesn't pick up installed apps
 * You can subscribe to bug 115071 by following this link: 
https://bugs.launchpad.net/ubuntu/+source/firefox/+bug/115071/+subscribe

-- 
rss wont recognise Thunderbird as an RSS client
https://bugs.launchpad.net/bugs/575896
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 572778] Re: audio and video playback glitches in totem (Ubuntu 10.04 lucid i386)

2010-09-26 Thread Gautham P
guys
i do hav almost same prblm. While playing video in totem the computer freezes 
for 5-8 sec.( there is sound  there is no prblm while loading video) then  
runs normally  comes again for abt 5 times if watch a full movie..
i am starter in ubantu..
i am using 10.04LTS

-- 
audio and video playback glitches in totem (Ubuntu 10.04 lucid i386)
https://bugs.launchpad.net/bugs/572778
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 500947] Re: Brasero won't burn Dvd

2010-09-26 Thread per...@hotmail.co.uk
Well, I dont know much, but all I did was type :

sudo apt-get install dvdauthor

 abracadabra, Brasero now burns DVD's!

I just wrote this cos I hates to see an incomplete post...

-- 
Brasero won't burn Dvd
https://bugs.launchpad.net/bugs/500947
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 647917] [NEW] gnome-sensors applet panel icon visually glitched

2010-09-26 Thread Christopher M. Penalver
Public bug reported:

Binary package hint: xserver-xorg-video-ati

1) lsb_release -rd
Description:Ubuntu maverick (development branch)
Release:10.10

2) apt-cache policy xserver-xorg-video-radeon
xserver-xorg-video-radeon:
  Installed: 1:6.13.1-1ubuntu5
  Candidate: 1:6.13.1-1ubuntu5
  Version table:
 *** 1:6.13.1-1ubuntu5 0
500 http://us.archive.ubuntu.com/ubuntu/ maverick/main i386 Packages
100 /var/lib/dpkg/status

3) What is expected to happen is when one restarts the computer, the
panel icons do not become visually glitched.

4) What happened instead is it is visually glitched (please see
screenshot.png). Thank you for looking at this. I am new to Ubuntu
Linux, and do not yet have the skills to contribute a solution. Just
wanted to bring this to your attention, no big deal. If anything more
exists that you require please do not hesitate to ask.

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: xserver-xorg-video-radeon 1:6.13.1-1ubuntu5
ProcVersionSignature: Ubuntu 2.6.35-22.33-generic 2.6.35.4
Uname: Linux 2.6.35-22-generic i686
Architecture: i386
DRM.card0.LVDS.1:
 status: connected
 enabled: enabled
 dpms: On
 modes: 1280x800 1280x720 1152x768 1024x768 800x600 848x480 720x480 640x480
 edid-base64: 
AP///wAGr3SBAAEQAQOAIRV4Chz1l1hQjicnUFQBAQEBAQEBAQEBAQEBAQEBxxsAoFAgFzAwIDYAS88QAAAYDwAg/gBBVU8KICAgICAgICAg/gBCMTU0RVcwOCBWMSAKAEM=
DRM.card0.VGA.1:
 status: disconnected
 enabled: disabled
 dpms: On
 modes: 
 edid-base64:
Date: Sun Sep 26 02:00:55 2010
DkmsStatus: virtualbox-ose, 3.2.8, 2.6.35-22-generic, i686: installed
EcryptfsInUse: Yes
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Beta i386 (20100901.1)
MachineType: TOSHIBA Satellite L305D
ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.35-22-generic 
root=UUID=071b6692-65a6-47fd-8f58-d33216d1cf0e ro quiet splash
ProcEnviron:
 LANG=en_US.utf8
 SHELL=/bin/bash
SourcePackage: xserver-xorg-video-ati
dmi.bios.date: 09/01/2009
dmi.bios.vendor: Insyde Corp.
dmi.bios.version: 1.80
dmi.board.asset.tag: No Asset Tag
dmi.board.name: Portable PC
dmi.board.vendor: TOSHIBA
dmi.board.version: Base Board Version
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: AMD
dmi.chassis.version: None
dmi.modalias: 
dmi:bvnInsydeCorp.:bvr1.80:bd09/01/2009:svnTOSHIBA:pnSatelliteL305D:pvrPSLC8U-03701QB:rvnTOSHIBA:rnPortablePC:rvrBaseBoardVersion:cvnAMD:ct10:cvrNone:
dmi.product.name: Satellite L305D
dmi.product.version: PSLC8U-03701QB
dmi.sys.vendor: TOSHIBA
glxinfo: Error: [Errno 2] No such file or directory
system:
 distro: Ubuntu
 codename:   maverick
 architecture:   i686
 kernel: 2.6.35-22-generic

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


** Tags: apport-bug i386 maverick

-- 
gnome-sensors applet panel icon visually glitched
https://bugs.launchpad.net/bugs/647917
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 647917] Re: gnome-sensors applet panel icon visually glitched

2010-09-26 Thread Christopher M. Penalver

** Attachment added: Screenshot.png
   
https://bugs.launchpad.net/bugs/647917/+attachment/1637468/+files/Screenshot.png

** Attachment added: BootDmesg.txt
   
https://bugs.launchpad.net/bugs/647917/+attachment/1637469/+files/BootDmesg.txt

** Attachment added: CurrentDmesg.txt
   
https://bugs.launchpad.net/bugs/647917/+attachment/1637470/+files/CurrentDmesg.txt

** Attachment added: Dependencies.txt
   
https://bugs.launchpad.net/bugs/647917/+attachment/1637471/+files/Dependencies.txt

** Attachment added: GdmLog.txt
   https://bugs.launchpad.net/bugs/647917/+attachment/1637472/+files/GdmLog.txt

** Attachment added: GdmLog1.txt
   https://bugs.launchpad.net/bugs/647917/+attachment/1637473/+files/GdmLog1.txt

** Attachment added: GdmLog2.txt
   https://bugs.launchpad.net/bugs/647917/+attachment/1637474/+files/GdmLog2.txt

** Attachment added: Lspci.txt
   https://bugs.launchpad.net/bugs/647917/+attachment/1637475/+files/Lspci.txt

** Attachment added: Lsusb.txt
   https://bugs.launchpad.net/bugs/647917/+attachment/1637476/+files/Lsusb.txt

** Attachment added: PciDisplay.txt
   
https://bugs.launchpad.net/bugs/647917/+attachment/1637477/+files/PciDisplay.txt

** Attachment added: ProcCpuinfo.txt
   
https://bugs.launchpad.net/bugs/647917/+attachment/1637478/+files/ProcCpuinfo.txt

** Attachment added: ProcInterrupts.txt
   
https://bugs.launchpad.net/bugs/647917/+attachment/1637479/+files/ProcInterrupts.txt

** Attachment added: ProcModules.txt
   
https://bugs.launchpad.net/bugs/647917/+attachment/1637480/+files/ProcModules.txt

** Attachment added: RelatedPackageVersions.txt
   
https://bugs.launchpad.net/bugs/647917/+attachment/1637481/+files/RelatedPackageVersions.txt

** Attachment added: UdevDb.txt
   https://bugs.launchpad.net/bugs/647917/+attachment/1637482/+files/UdevDb.txt

** Attachment added: UdevLog.txt
   https://bugs.launchpad.net/bugs/647917/+attachment/1637483/+files/UdevLog.txt

** Attachment added: XorgLog.txt
   https://bugs.launchpad.net/bugs/647917/+attachment/1637484/+files/XorgLog.txt

** Attachment added: XorgLogOld.txt
   
https://bugs.launchpad.net/bugs/647917/+attachment/1637485/+files/XorgLogOld.txt

** Attachment added: Xrandr.txt
   https://bugs.launchpad.net/bugs/647917/+attachment/1637486/+files/Xrandr.txt

** Attachment added: peripherals.txt
   
https://bugs.launchpad.net/bugs/647917/+attachment/1637487/+files/peripherals.txt

** Attachment added: setxkbmap.txt
   
https://bugs.launchpad.net/bugs/647917/+attachment/1637488/+files/setxkbmap.txt

** Attachment added: xdpyinfo.txt
   
https://bugs.launchpad.net/bugs/647917/+attachment/1637489/+files/xdpyinfo.txt

** Attachment added: xkbcomp.txt
   https://bugs.launchpad.net/bugs/647917/+attachment/1637490/+files/xkbcomp.txt

-- 
gnome-sensors applet panel icon visually glitched
https://bugs.launchpad.net/bugs/647917
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 647911] Re: Mythexport fails to find recording for export

2010-09-26 Thread Steve Switzer
*** This bug is a duplicate of bug 598439 ***
https://bugs.launchpad.net/bugs/598439

NOTE: my line numbers are estimates, since I added several logdebug
lines while tracking this down.

** This bug has been marked a duplicate of bug 598439
   mythexport generates names like ---20100418192800 and thus fails ffmpeg.
 * You can subscribe to bug 598439 by following this link: 
https://bugs.launchpad.net/ubuntu/+source/mythexport/+bug/598439/+subscribe

-- 
Mythexport fails to find recording for export
https://bugs.launchpad.net/bugs/647911
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 460854] Re: Scanner benq 4300 Flatedscanner22 snapscan:libusb:002:0003

2010-09-26 Thread Leandro Gómez
I have the same problem both in Karmic and Lucid.

-- 
Scanner benq 4300 Flatedscanner22 snapscan:libusb:002:0003
https://bugs.launchpad.net/bugs/460854
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 647919] [NEW] add-apt-repository doesn't add deb-src lines

2010-09-26 Thread Carey Underwood
Public bug reported:

add-apt-repository doesn't add source lines for repositories it adds.
This requires an extra step when trying to view the source for a
package, and potentially causes quite a bit of confusion if the package
exists in the default repositories, as one ends up looking at the wrong
source tree.

Expected:  a nice deb-src line in /etc/apt/sources.list.d/ppa.list
Actual:  no deb-src line

** Affects: software-properties (Ubuntu)
 Importance: Undecided
 Status: New

** Package changed: ubuntu = software-properties (Ubuntu)

-- 
add-apt-repository doesn't add deb-src lines
https://bugs.launchpad.net/bugs/647919
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 647918] [NEW] package python-gmenu 2.30.0-0ubuntu4 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2010-09-26 Thread Guilherme Blanco
Public bug reported:

Binary package hint: gnome-menus

It failed to install due to dependencies failures and now I cannot
remove it anymore!

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: python-gmenu 2.30.0-0ubuntu4
ProcVersionSignature: Ubuntu 2.6.32-24.43-generic 2.6.32.15+drm33.5
Uname: Linux 2.6.32-24-generic i686
NonfreeKernelModules: nvidia
Architecture: i386
Date: Sun Sep 26 02:43:49 2010
ErrorMessage: subprocess installed post-installation script returned error exit 
status 2
InstallationMedia: Ubuntu 10.04.1 LTS Lucid Lynx - Release i386 (20100816.1)
SourcePackage: gnome-menus
Title: package python-gmenu 2.30.0-0ubuntu4 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 2

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


** Tags: apport-package i386 lucid

-- 
package python-gmenu 2.30.0-0ubuntu4 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 2
https://bugs.launchpad.net/bugs/647918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 647918] Re: package python-gmenu 2.30.0-0ubuntu4 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2010-09-26 Thread Guilherme Blanco

** Attachment added: AptOrdering.txt
   
https://bugs.launchpad.net/bugs/647918/+attachment/1637491/+files/AptOrdering.txt

** Attachment added: Dependencies.txt
   
https://bugs.launchpad.net/bugs/647918/+attachment/1637492/+files/Dependencies.txt

** Attachment added: Df.txt
   https://bugs.launchpad.net/bugs/647918/+attachment/1637493/+files/Df.txt

** Attachment added: Dmesg.txt
   https://bugs.launchpad.net/bugs/647918/+attachment/1637494/+files/Dmesg.txt

** Attachment added: DpkgTerminalLog.txt
   
https://bugs.launchpad.net/bugs/647918/+attachment/1637495/+files/DpkgTerminalLog.txt

-- 
package python-gmenu 2.30.0-0ubuntu4 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 2
https://bugs.launchpad.net/bugs/647918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 642746] Re: [Maverick] Workspace layout is 1x9 instead of 3x3

2010-09-26 Thread Yumi
Thanks, working after yesterdays updates of Maverick. Only when panel is on 
theright the height of the workspace-square is to low when panel is set at 
30px. By increasing to 40 and icons are showing.
 Michael

-- 
[Maverick] Workspace layout is 1x9 instead of 3x3
https://bugs.launchpad.net/bugs/642746
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 598439] Re: mythexport generates names like ---20100418192800 and thus fails ffmpeg.

2010-09-26 Thread Steve Switzer
See bug report 647911, 647908 and 647914 for a full explanation of each
symptom here, and how to fix them. I'm on the fence about if each should
be marked as a duplicate.

** Changed in: mythexport (Ubuntu)
   Status: Incomplete = Confirmed

-- 
mythexport generates names like ---20100418192800 and thus fails ffmpeg.
https://bugs.launchpad.net/bugs/598439
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 647920] [NEW] Please remove firegpg from archive and blacklist

2010-09-26 Thread Micah Gersten
Public bug reported:

Firegpg has now been discontinued upstream which means it will be
unsupportable when we move to Firefox 4.x

http://blog.getfiregpg.org/2010/06/07/firegpg-discontinued/

** Affects: firegpg (Ubuntu)
 Importance: Wishlist
 Status: Confirmed

** Changed in: firegpg (Ubuntu)
   Importance: Undecided = Wishlist

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

-- 
Please remove firegpg from archive and blacklist
https://bugs.launchpad.net/bugs/647920
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 647914] Re: Mythexport doesn't call ffmpeg for OTG exports

2010-09-26 Thread Steve Switzer
--- /usr/bin/mythexport-daemon  2010-04-14 21:20:42.0 -0400
+++ /usr/bin/mythexport-daemon.647914   2010-09-26 02:18:57.862487540 -0400
@@ -335,9 +335,9 @@
 elsif ($_ =~ m/config/) {
 $block = (split(/\=/,$_))[1];
 }
-elsif ($_ =~ m/otg/) {
-$block = (split(/\=/,$_))[1];
-}
+#elsif ($_ =~ m/otg/) {
+#$block = (split(/\=/,$_))[1];
+#}
 }
 
 my $export_cfg = new Config::Simple();

-- 
Mythexport doesn't call ffmpeg for OTG exports
https://bugs.launchpad.net/bugs/647914
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 647921] [NEW] Template filter is empty for translation

2010-09-26 Thread Paco Molinero
Public bug reported:

Binary package hint: aspell

The template filter
https://translations.launchpad.net/ubuntu/maverick/+source/aspell/+pots/filter/es/+translate
in spanish is empty. The .po file does not contain sentences to
translate.

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

-- 
Template filter is empty for translation
https://bugs.launchpad.net/bugs/647921
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 647911] Re: Mythexport fails to find recording for export

2010-09-26 Thread Steve Switzer
*** This bug is a duplicate of bug 598439 ***
https://bugs.launchpad.net/bugs/598439

--- /usr/bin/mythexport-daemon  2010-04-14 21:20:42.0 -0400
+++ /usr/bin/mythexport-daemon.647911   2010-09-26 02:21:35.152487952 -0400
@@ -231,7 +231,7 @@
 $writer-endTag(item);
 
 $log-notice(Creating mysql dump);
-
export(starttime=$currentstarttimechanid=currentchanidconfig=$blockotg=true);
+
export(starttime=$currentstarttimechanid=$currentchanidconfig=$blockotg=true);
 }
 $writer-endTag(channel);
 $writer-end();

-- 
Mythexport fails to find recording for export
https://bugs.launchpad.net/bugs/647911
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 521036] Re: empathy crashed when starting audio/video calls

2010-09-26 Thread Ricardo Moreira
ok i have downgraded to the last version from ubuntu sources and the
audio/video calls with gmail protocol work perfectly

** Changed in: empathy (Ubuntu)
   Status: Invalid = Fix Released

** Changed in: empathy
   Status: Incomplete = Fix Released

-- 
empathy crashed when starting audio/video calls
https://bugs.launchpad.net/bugs/521036
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 596251] Re: mythexport reports start and finish of jobs at the same second

2010-09-26 Thread Steve Switzer
Please post a section of the /var/log/mythtv/mythexport.log file that
occurs when you trigger this. I think this is related to a recent bug
report of mine, but am curious to see for sure.

-- 
mythexport reports start and finish of jobs at the same second
https://bugs.launchpad.net/bugs/596251
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 56639] Re: Thinkpad R40 Fn-F7 should switch active display in software

2010-09-26 Thread Steve Langasek
This bug was closed invalid over three years ago due to lack of
available information.  If you have new information to add, please add
it - otherwise, please leave the bug state alone.

Note that the ThinkPad Fn+F7 button has been working reliably via udev +
gnome-settings-daemon for a while now, so even if you are experiencing
problems currently, it is unlikely to be a bug in acpi-support and you
should probably open a new bug report.

** Changed in: acpi-support (Ubuntu)
   Status: Incomplete = Invalid

-- 
Thinkpad R40 Fn-F7 should switch active display in software
https://bugs.launchpad.net/bugs/56639
You received this bug notification because you are a member of 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 562067] Re: voice call feature, cause psi to crash

2010-09-26 Thread Tim
  Yep all appears to be good and fixed with the version in lucid-
proposed.

On 21/09/10 22:15, Jean-Baptiste Lallement wrote:
 Could someone with this issue test the package in lucid-proposed and report 
 if it is fixed or not ?
 Thanks in advance.


-- 
voice call feature, cause psi to crash
https://bugs.launchpad.net/bugs/562067
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 597070] Re: Imac Radeon HD 4850 switch Mini Display Port output during install resulting black screen

2010-09-26 Thread Peter T Hayward
Radeon modesetting does not work on my LG1710. I can only get it to
light up if I use the two options above.

-- 
Imac Radeon HD 4850 switch Mini Display Port output during install resulting 
black screen
https://bugs.launchpad.net/bugs/597070
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 562843] Re: [drm:rs400_gart_adjust_size] *ERROR* Forcing to 32M GART size (because of ASIC bug ?)

2010-09-26 Thread Albakry
This problem continues with Lucid Lynx, the system startup is painfully slow 
and i have the same issue with zooming in google Earth. 
I'm interested to see someone who succeeded to fix that.

- Ubuntu 10.04.1 LTS
- Kernel version: 
2.6.32-25-generic
- Graphic card: 
01:05.0 VGA compatible controller: ATI Technologies Inc Radeon XPRESS 200M 5955 
(PCIE)
- Error message dmesg | grep error : 
[   92.470698] [drm:rs400_gart_adjust_size] *ERROR* Forcing to 32M GART size 
(because of ASIC bug ?)

-- 
[drm:rs400_gart_adjust_size] *ERROR* Forcing to 32M GART size (because of ASIC 
bug ?)
https://bugs.launchpad.net/bugs/562843
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 647925] [NEW] package dpkg 1.15.5.6ub untu4.1 failed to install/upgrade: sous-processus nouv eau script pre-installation tué par le signal (Proc essus arrêté)

2010-09-26 Thread rupf dominique
Public bug reported:

Binary package hint: dpkg


ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: dpkg 1.15.5.6ubuntu4.1
ProcVersionSignature: Ubuntu 2.6.32-24.43-generic 2.6.32.15+drm33.5
Uname: Linux 2.6.32-24-generic i686
Architecture: i386
Date: Fri Sep 24 18:11:30 2010
ErrorMessage: sous-processus nouveau script pre-installation tué par le signal 
(Processus arrêté)
SourcePackage: dpkg
Title: package dpkg 1.15.5.6ubuntu4.1 failed to install/upgrade: sous-processus 
nouveau script pre-installation tué par le signal (Processus arrêté)

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


** Tags: apport-package i386 lucid

-- 
package dpkg 1.15.5.6ubuntu4.1 failed to install/upgrade: sous-processus 
nouveau script pre-installation tué par le signal (Processus arrêté)
https://bugs.launchpad.net/bugs/647925
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 647925] Re: package dpkg 1.15.5.6ubuntu 4.1 failed to install/upgrade: sous-processus nouveau script pre-installation tué par le signal (Processu s arrêté)

2010-09-26 Thread rupf dominique

** Attachment added: AptOrdering.txt
   
https://bugs.launchpad.net/bugs/647925/+attachment/1637506/+files/AptOrdering.txt

** Attachment added: Dependencies.txt
   
https://bugs.launchpad.net/bugs/647925/+attachment/1637507/+files/Dependencies.txt

** Attachment added: Df.txt
   https://bugs.launchpad.net/bugs/647925/+attachment/1637508/+files/Df.txt

** Attachment added: Dmesg.txt
   https://bugs.launchpad.net/bugs/647925/+attachment/1637509/+files/Dmesg.txt

** Attachment added: DpkgTerminalLog.txt
   
https://bugs.launchpad.net/bugs/647925/+attachment/1637510/+files/DpkgTerminalLog.txt

-- 
package dpkg 1.15.5.6ubuntu4.1 failed to install/upgrade: sous-processus 
nouveau script pre-installation tué par le signal (Processus arrêté)
https://bugs.launchpad.net/bugs/647925
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 647923] Re: update-manager crashed with DBusException in commit()

2010-09-26 Thread Apport retracing service
*** This bug is a duplicate of bug 618951 ***
https://bugs.launchpad.net/bugs/618951

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 #618951, 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.

** Tags removed: need-duplicate-check

** Attachment removed: Dependencies.txt
   
https://bugs.edge.launchpad.net/bugs/647923/+attachment/1637496/+files/Dependencies.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.edge.launchpad.net/bugs/647923/+attachment/1637497/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.edge.launchpad.net/bugs/647923/+attachment/1637498/+files/ProcStatus.txt

** This bug has been marked a duplicate of bug 618951
   update-manager crashed with DBusException in commit()
 * You can subscribe to bug 618951 by following this link: 
https://bugs.edge.launchpad.net/ubuntu/+source/update-manager/+bug/618951/+subscribe

** Visibility changed to: Public

-- 
update-manager crashed with DBusException in commit()
https://bugs.launchpad.net/bugs/647923
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 629016] Re: Rhythmbox crashes on filling Nokia N95 with music

2010-09-26 Thread Christopher Kleinheitz
Finally I found the time for debugging. Rhythmbox doesn't show the same 
behavior in the debugger as in normal mode. 
With normal program startup, the program exits on copying the music on the 
phone, the window closes, it disappeares from task bar and system tray.
When started within the debugger, Rhythmbox' window is grayed out, frozen, but 
stays visible in taskbar and tray.

** Attachment added: The requested backtrace
   
https://bugs.launchpad.net/ubuntu/+source/rhythmbox/+bug/629016/+attachment/1637505/+files/gdb-rhythmbox.txt

-- 
Rhythmbox crashes on filling Nokia N95 with music
https://bugs.launchpad.net/bugs/629016
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 647927] [NEW] WARNING: at /build/buildd/linux-2.6.35/drivers/usb/host/ehci-hcd.c:1071 ehci_endpoint_reset 0x10c/0x120()

2010-09-26 Thread Ant
Public bug reported:

All I did was do an update on the maverick meerkat development
distrubtion of ubuntu recently. Then this started coming up at start up.
Don't seem to be any major system problems however it has been a little
bit unstable.

ProblemType: KernelOops
DistroRelease: Ubuntu 10.10
Package: linux-image-2.6.35-22-generic 2.6.35-22.33
Regression: Yes
Reproducible: No
ProcVersionSignature: Ubuntu 2.6.35-22.33-generic 2.6.35.4
Uname: Linux 2.6.35-22-generic x86_64
.etc.asound.conf:
 
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.23.
Annotation: Your system might become unstable now and might need to be 
restarted.
AplayDevices:
  List of PLAYBACK Hardware Devices 
 card 1: Xio [Xio], device 0: USB Audio [USB Audio]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
Architecture: amd64
ArecordDevices:
  List of CAPTURE Hardware Devices 
 card 1: Xio [Xio], device 0: USB Audio [USB Audio]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC1:  ant1734 F pulseaudio
CRDA: Error: [Errno 2] No such file or directory
Card1.Amixer.info:
 Card hw:1 'Xio'/'Novation DMS Xio at usb-:00:1a.0-2, full speed'
   Mixer name   : 'USB Mixer'
   Components   : 'USB1235:0007'
   Controls  : 10
   Simple ctrls  : 5
Date: Sun Sep 26 16:49:35 2010
Failure: oops
Frequency: Once a day.
HibernationDevice: RESUME=UUID=f699e52a-c12d-424c-a33d-486e60ecc26d
InstallationMedia: Ubuntu 10.04.1 LTS Lucid Lynx - Release amd64 (20100816.1)
MachineType: TOSHIBA PORTEGE M800
ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.35-22-generic 
root=UUID=c86903b4-2a52-4518-bf27-9c7a87fab4ca ro vga=769 quiet splash
RelatedPackageVersions: linux-firmware 1.38
SourcePackage: linux
Title: WARNING: at /build/buildd/linux-2.6.35/drivers/usb/host/ehci-hcd.c:1071 
ehci_endpoint_reset+0x10c/0x120()
dmi.bios.date: 01/08/2009
dmi.bios.vendor: TOSHIBA
dmi.bios.version: V3.20
dmi.board.name: PORTEGE M800
dmi.board.vendor: TOSHIBA
dmi.board.version: Not Applicable
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: TOSHIBA
dmi.chassis.version: N/A
dmi.modalias: 
dmi:bvnTOSHIBA:bvrV3.20:bd01/08/2009:svnTOSHIBA:pnPORTEGEM800:pvrPPM81A-08S01S:rvnTOSHIBA:rnPORTEGEM800:rvrNotApplicable:cvnTOSHIBA:ct10:cvrN/A:
dmi.product.name: PORTEGE M800
dmi.product.version: PPM81A-08S01S
dmi.sys.vendor: TOSHIBA

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


** Tags: amd64 apport-kerneloops kernel-config kernel-oops maverick 
needs-upstream-testing regression-proposed

-- 
WARNING: at /build/buildd/linux-2.6.35/drivers/usb/host/ehci-hcd.c:1071 
ehci_endpoint_reset 0x10c/0x120()
https://bugs.launchpad.net/bugs/647927
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 647927] Re: WARNING: at /build/buildd/linux-2.6.35/drivers/usb/host/ehci-hcd.c:1071 ehci_endpoint_reset 0x10c/0x120()

2010-09-26 Thread Ant

** Attachment added: AcpiTables.txt
   
https://bugs.launchpad.net/bugs/647927/+attachment/1637518/+files/AcpiTables.txt

** Attachment added: AlsaDevices.txt
   
https://bugs.launchpad.net/bugs/647927/+attachment/1637519/+files/AlsaDevices.txt

** Attachment added: BootDmesg.txt
   
https://bugs.launchpad.net/bugs/647927/+attachment/1637520/+files/BootDmesg.txt

** Attachment added: Card1.Amixer.values.txt
   
https://bugs.launchpad.net/bugs/647927/+attachment/1637521/+files/Card1.Amixer.values.txt

** Attachment added: CurrentDmesg.txt
   
https://bugs.launchpad.net/bugs/647927/+attachment/1637522/+files/CurrentDmesg.txt

** Attachment added: Dependencies.txt
   
https://bugs.launchpad.net/bugs/647927/+attachment/1637523/+files/Dependencies.txt

** Attachment added: IwConfig.txt
   
https://bugs.launchpad.net/bugs/647927/+attachment/1637524/+files/IwConfig.txt

** Attachment added: Lspci.txt
   https://bugs.launchpad.net/bugs/647927/+attachment/1637525/+files/Lspci.txt

** Attachment added: Lsusb.txt
   https://bugs.launchpad.net/bugs/647927/+attachment/1637526/+files/Lsusb.txt

** Attachment added: OopsText.txt
   
https://bugs.launchpad.net/bugs/647927/+attachment/1637527/+files/OopsText.txt

** Attachment added: PciMultimedia.txt
   
https://bugs.launchpad.net/bugs/647927/+attachment/1637528/+files/PciMultimedia.txt

** Attachment added: ProcCpuinfo.txt
   
https://bugs.launchpad.net/bugs/647927/+attachment/1637529/+files/ProcCpuinfo.txt

** Attachment added: ProcInterrupts.txt
   
https://bugs.launchpad.net/bugs/647927/+attachment/1637530/+files/ProcInterrupts.txt

** Attachment added: ProcModules.txt
   
https://bugs.launchpad.net/bugs/647927/+attachment/1637531/+files/ProcModules.txt

** Attachment added: RfKill.txt
   https://bugs.launchpad.net/bugs/647927/+attachment/1637532/+files/RfKill.txt

** Attachment added: UdevDb.txt
   https://bugs.launchpad.net/bugs/647927/+attachment/1637533/+files/UdevDb.txt

** Attachment added: UdevLog.txt
   https://bugs.launchpad.net/bugs/647927/+attachment/1637534/+files/UdevLog.txt

** Attachment added: WifiSyslog.txt
   
https://bugs.launchpad.net/bugs/647927/+attachment/1637535/+files/WifiSyslog.txt

-- 
WARNING: at /build/buildd/linux-2.6.35/drivers/usb/host/ehci-hcd.c:1071 
ehci_endpoint_reset 0x10c/0x120()
https://bugs.launchpad.net/bugs/647927
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 647912] Re: root password changed system inept

2010-09-26 Thread Waleed Hamra
i think the OP is just trolling... but i could be wrong...

-- 
root password changed system inept 
https://bugs.launchpad.net/bugs/647912
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 647930] [NEW] package freepats (not insta lled) failed to install/upgrade: vioittunut tiedostoj ärjestelmän tar-arkisto - vioittunut pakettiarki sto

2010-09-26 Thread Paavo Pekkarinen
Public bug reported:

Binary package hint: freepats

Somethiing went wrong. I do not know. Failed to install.

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: freepats (not installed)
ProcVersionSignature: Ubuntu 2.6.32-24.43-generic 2.6.32.15+drm33.5
Uname: Linux 2.6.32-24-generic i686
Architecture: i386
Date: Sun Sep 26 09:44:06 2010
ErrorMessage: vioittunut tiedostojärjestelmän tar-arkisto - vioittunut 
pakettiarkisto
InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release i386 (20100429)
SourcePackage: freepats
Title: package freepats (not installed) failed to install/upgrade: vioittunut 
tiedostojärjestelmän tar-arkisto - vioittunut pakettiarkisto

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


** Tags: apport-package i386 lucid

-- 
package freepats (not installed) failed to install/upgrade: vioittunut 
tiedostojärjestelmän tar-arkisto - vioittunut pakettiarkisto
https://bugs.launchpad.net/bugs/647930
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 647930] Re: package freepats (not installed ) failed to install/upgrade: vioittunut tiedostoj ärjestelmän tar-arkisto - vioittunut pakettiarki sto

2010-09-26 Thread Paavo Pekkarinen

** Attachment added: AptOrdering.txt
   
https://bugs.launchpad.net/bugs/647930/+attachment/1637543/+files/AptOrdering.txt

** Attachment added: Df.txt
   https://bugs.launchpad.net/bugs/647930/+attachment/1637544/+files/Df.txt

** Attachment added: Dmesg.txt
   https://bugs.launchpad.net/bugs/647930/+attachment/1637545/+files/Dmesg.txt

** Attachment added: DpkgTerminalLog.txt
   
https://bugs.launchpad.net/bugs/647930/+attachment/1637546/+files/DpkgTerminalLog.txt

-- 
package freepats (not installed) failed to install/upgrade: vioittunut 
tiedostojärjestelmän tar-arkisto - vioittunut pakettiarkisto
https://bugs.launchpad.net/bugs/647930
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 591140] Re: where is tlmgr?!?!

2010-09-26 Thread landroni
There's been a long discussion on the topic on lyx-users [1]. I also see
it as a major (and quite disturbing) missing feature of TeXLive on
Ubuntu

[1] http://www.mail-archive.com/lyx-us...@lists.lyx.org/msg82446.html

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

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


[Bug 591140] Re: where is tlmgr?!?!

2010-09-26 Thread landroni
There is also a related brainstorm idea [1]. Please vote if you're
affected

[1] http://brainstorm.ubuntu.com/idea/11449/

-- 
where is tlmgr?!?!
https://bugs.launchpad.net/bugs/591140
You received this bug notification because you are a member of 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 644235] Re: No Wifi

2010-09-26 Thread Ken Williams
On Saturday 25 Sep 2010 20:21:27 you wrote:

Hi Fabio...

Not very helpful as the problem is no WiFi, so cannot connect to
Launchpad.

Will have to find a cable and connect the laptop up, then will try
again

 Hello
 can you please run in a terminal
 apport-collect -p linux 644235
 Thanks
 Fabio
 
 ** Package changed: ubuntu = linux (Ubuntu)
 
 ** Changed in: linux (Ubuntu)
Status: New = Incomplete
 
 ** Tags added: maverick

--

Ken Williams
Kinmel Bay, Rhyl.

In a world without walls and fences,
who needs windows and gates?

I use Linux, not Windows.

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

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


[Bug 642385] Re: Kezboard Preferences-Layouts removing layout does not work

2010-09-26 Thread renegat
*** This bug is a duplicate of bug 591895 ***
https://bugs.launchpad.net/bugs/591895

** This bug has been marked a duplicate of bug 591895
   removing a keyboard layout is not persistent across reboots
 * You can subscribe to bug 591895 by following this link: 
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/591895/+subscribe

-- 
Kezboard Preferences-Layouts removing layout does not work
https://bugs.launchpad.net/bugs/642385
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 591895] Re: removing a keyboard layout is not persistent across reboots

2010-09-26 Thread renegat
Be careful while installing any layout! Very annoying!

-- 
removing a keyboard layout is not persistent across reboots
https://bugs.launchpad.net/bugs/591895
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 555571] Re: Network Management disabled

2010-09-26 Thread Gary Trujillo
*** This bug is a duplicate of bug 524454 ***
https://bugs.launchpad.net/bugs/524454

This problem arose for me when my laptop went into some sort of dormant state 
(sleep or hibernate, I reckon).  I was very pleased to find Dani's posting.  
For a full description of my experience, please see what I wrote at 
https://answers.launchpad.net/ubuntu/+question/126770 , starting with the 
posting that begins Well, I have mixed results to report - and a new variable
thrown into the mix. Here's what happened.

I suspect there are other ways to get the Network Manager into this
state, but I found one - do a complete purge of system power (on a
laptop, in my case) when Linux is in such a dormant state, when I
suspect it deliberately disables the eth0 and wlan0 devices.

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

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


[Bug 408764] Re: missing window decorations after reboot

2010-09-26 Thread Stefan Müller
I also have this problem: Window Descorations are missing after every reboot. 
The problem appeared after some update.
I have an ATI On-Board Card (Radeon HD 4200) and I am using the ATI Driver 
provided by Ubuntu. However, this seems not directly related to the dirver as I 
can deactivate it and the problem is still there. Also, als ArgelBargel says 
the problem occurrs with nvidia cards as well.

-- 
missing window decorations after reboot
https://bugs.launchpad.net/bugs/408764
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 408764] Re: missing window decorations after reboot

2010-09-26 Thread Stefan Müller
@ArgelBargel: Did you find the .nvidia-settings.rc directly in the
home directory? I hoped I would find a similar file .ati-settings.rc
or the like here but I don't.

-- 
missing window decorations after reboot
https://bugs.launchpad.net/bugs/408764
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 131094] Re: Heavy Disk I/O harms desktop responsiveness

2010-09-26 Thread Trey Blancher
OK, it looks like the problem is fixed for me in both the stock 2.6.35
and +iofix provided by Brian Rogers.  There's still [kdmflush] and a
bunch of other programs causing a lot of I/O wait (according to top and
iotop), but the system is MUCH more responsive.  Usually when the
problem occurred, the HDD light would go solid for several moments
before I could use my system again.  Now, the pause is brief, much less
than two seconds if it ceases being responsive at all.  I mentioned
earlier that the problem still occurred shortly after boot, but that was
the HDD light I was referring to, not the perceived responsiveness of
the system.  So for me, the solution is to upgrade to 2.6.35.

-- 
Heavy Disk I/O harms desktop responsiveness
https://bugs.launchpad.net/bugs/131094
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 647933] [NEW] [HD2600]fglrx still doesn't work on Maverick, 2.6.35

2010-09-26 Thread iwtctw
Public bug reported:

fglrx modules failed to be loaded.
After hearing the news that fglrx has fixed build issues with 2.6.36 kernels.
I reinstalled the fglrx fglrx-dev,aticonfig --initial -f,demod -a,reboot, and 
failed again~~
this is part of the xorg.log:
[18.572](II) LoadModule: glx
[18.572] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[18.572] (II) Module glx: vendor=X.Org Foundation
[18.572]compiled for 1.9.0, module version = 1.0.0
[18.572]ABI class: X.Org Server Extension, version 4.0
[18.572] (==) AIGLX enabled
[18.572] (II) Loading extension GLX
[18.572] (II) LoadModule: fglrx
[18.573] (WW) Warning, couldn't open module fglrx
[18.573] (II) UnloadModule: fglrx
[18.573] (EE) Failed to load module fglrx (module does not exist, 0)
[18.573] (EE) No drivers available.
[18.573]

** Affects: fglrx-installer (Ubuntu)
 Importance: Undecided
 Status: New

-- 
[HD2600]fglrx still doesn't work on Maverick,2.6.35
https://bugs.launchpad.net/bugs/647933
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 647936] [NEW] Teatime applet does not respect dual monitors

2010-09-26 Thread Anders Bruun Olsen
Public bug reported:

Binary package hint: teatime

When Teatime reports that your tea is ready, it does so by displaying a
cup of tea that rotates in the middle of the screen. Unfortunately it is
not multi-monitor aware, which means that with two monitors the cup of
tea will be displayed with half on one monitor and half on the other
monitor.

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

-- 
Teatime applet does not respect dual monitors
https://bugs.launchpad.net/bugs/647936
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 647936] Re: Teatime applet does not respect dual monitors

2010-09-26 Thread Anders Bruun Olsen
This is on Lucid 64-bit btw.

-- 
Teatime applet does not respect dual monitors
https://bugs.launchpad.net/bugs/647936
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 571822] Re: Empathy allign RTL text as LTR text on messenger

2010-09-26 Thread Shlomil
This bug sound like an upstream bug and I'll take a wild guess and say the 
fix is probably the same one I did in Pidgin a few years ago:
http://shlomil.blogspot.com/2007/02/patch-to-fix-some-bidi-text-issues-in.html

RL=1 should be passed for RTL messages in MSN protocol.
Wireshark can be used to confirm what flag value is used by Empathy.

Solution: The first letter of the message should be detected for
direction and set the flag accordingly (AKA, the Gnome way).

-- 
Empathy allign RTL text as LTR text on messenger
https://bugs.launchpad.net/bugs/571822
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 647943] [NEW] gnome-osd-server crashed with SIGSEGV in xcb_setup_vendor_end()

2010-09-26 Thread Extender
Public bug reported:

Binary package hint: gnome-osd

Simply crashed. All seems to work well after that.

ProblemType: Crash
DistroRelease: Ubuntu 10.10
Package: gnome-osd 0.12.2-1
ProcVersionSignature: Ubuntu 2.6.35-22.33-generic 2.6.35.4
Uname: Linux 2.6.35-22-generic x86_64
NonfreeKernelModules: nvidia
Architecture: amd64
Date: Sun Sep 26 11:03:20 2010
ExecutablePath: /usr/lib/gnome-osd/gnome-osd-server
InstallationMedia: Ubuntu 10.04 Lucid Lynx - Beta amd64 (20100406.1)
InterpreterPath: /usr/bin/python2.6
PackageArchitecture: all
ProcCmdline: /usr/bin/python /usr/lib/gnome-osd/gnome-osd-server 
--oaf-activate-iid=OAFIID:GNOME_OSD --oaf-ior-fd=40
ProcEnviron:
 LANG=ru_RU.utf8
 SHELL=/bin/bash
SegvAnalysis:
 Segfault happened at: 0x7fa003d7c3c0 xcb_setup_vendor_end:   movzwl 
0x18(%rdi),%eax
 PC (0x7fa003d7c3c0) ok
 source 0x18(%rdi) (0x0018) not located in a known VMA region (needed 
readable region)!
 destination %eax ok
 Stack memory exhausted (SP below stack segment)
SegvReason: reading NULL VMA
Signal: 11
SourcePackage: gnome-osd
StacktraceTop:
 xcb_setup_vendor_end () from /usr/lib/libxcb.so.1
 xcb_setup_pixmap_formats_iterator () from /usr/lib/libxcb.so.1
 xcb_setup_roots_iterator () from /usr/lib/libxcb.so.1
 pa_x11_get_prop () from /usr/lib/libpulsecommon-0.9.21.so
 ?? () from /usr/lib/libpulse.so.0
Title: gnome-osd-server crashed with SIGSEGV in xcb_setup_vendor_end()
UserGroups: adm admin audio cdrom dialout dip fax floppy fuse lpadmin netdev 
plugdev sambashare tape vboxusers video

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


** Tags: amd64 apport-crash maverick

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

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


[Bug 647943] Re: gnome-osd-server crashed with SIGSEGV in xcb_setup_vendor_end()

2010-09-26 Thread Extender

** Attachment added: Dependencies.txt
   
https://bugs.launchpad.net/bugs/647943/+attachment/1637619/+files/Dependencies.txt

** Attachment added: Disassembly.txt
   
https://bugs.launchpad.net/bugs/647943/+attachment/1637620/+files/Disassembly.txt

** Attachment added: ProcMaps.txt
   
https://bugs.launchpad.net/bugs/647943/+attachment/1637621/+files/ProcMaps.txt

** Attachment added: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/647943/+attachment/1637622/+files/ProcStatus.txt

** Attachment added: Registers.txt
   
https://bugs.launchpad.net/bugs/647943/+attachment/1637623/+files/Registers.txt

** Attachment added: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/647943/+attachment/1637624/+files/Stacktrace.txt

** Attachment added: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/647943/+attachment/1637625/+files/ThreadStacktrace.txt

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

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


[Bug 647937] Re: freepopsd assert failure: freepopsd: ath.c:193: _gcry_ath_mutex_lock: Assertion `*lock == ((ath_mutex_t) 0)' failed.

2010-09-26 Thread Apport retracing service
*** This bug is a duplicate of bug 441467 ***
https://bugs.launchpad.net/bugs/441467

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 #441467, 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
   
https://bugs.edge.launchpad.net/bugs/647937/+attachment/1637595/+files/CoreDump.gz

** Attachment removed: Dependencies.txt
   
https://bugs.edge.launchpad.net/bugs/647937/+attachment/1637596/+files/Dependencies.txt

** Attachment removed: Disassembly.txt
   
https://bugs.edge.launchpad.net/bugs/647937/+attachment/1637597/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.edge.launchpad.net/bugs/647937/+attachment/1637598/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.edge.launchpad.net/bugs/647937/+attachment/1637599/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.edge.launchpad.net/bugs/647937/+attachment/1637600/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.edge.launchpad.net/bugs/647937/+attachment/1637601/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.edge.launchpad.net/bugs/647937/+attachment/1637602/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of private bug 441467

** Visibility changed to: Public

** Tags removed: need-amd64-retrace

-- 
freepopsd assert failure: freepopsd: ath.c:193: _gcry_ath_mutex_lock: Assertion 
`*lock == ((ath_mutex_t) 0)' failed.
https://bugs.launchpad.net/bugs/647937
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 644235] Re: No Wifi

2010-09-26 Thread Ken Williams
apport information

** Tags added: apport-collected

** Description changed:

  Just tried 10 10 desktop and also netbook edition, neither found the WiFi 
card in my Samsung N140 netbook.
  The WiFi card is the Realtek 8192, it's time this was included in the distro
+ --- 
+ AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.23.
+ AplayDevices:
+   List of PLAYBACK Hardware Devices 
+  card 0: Intel [HDA Intel], device 0: ALC269 Analog [ALC269 Analog]
+Subdevices: 1/1
+Subdevice #0: subdevice #0
+ Architecture: i386
+ ArecordDevices:
+   List of CAPTURE Hardware Devices 
+  card 0: Intel [HDA Intel], device 0: ALC269 Analog [ALC269 Analog]
+Subdevices: 1/1
+Subdevice #0: subdevice #0
+ AudioDevicesInUse:
+  Cannot stat file /proc/4342/fd/43: Stale NFS file handle
+   USERPID ACCESS COMMAND
+  /dev/snd/controlC0:  ubuntu 2885 F pulseaudio
+ CRDA: Error: [Errno 2] No such file or directory
+ Card0.Amixer.info:
+  Card hw:0 'Intel'/'HDA Intel at 0xf044 irq 43'
+Mixer name : 'Realtek ALC269'
+Components : 'HDA:10ec0269,144dc062,0014'
+Controls  : 11
+Simple ctrls  : 7
+ DistroRelease: Ubuntu 10.10
+ LiveMediaBuild: Ubuntu 10.10 Maverick Meerkat - Beta i386 (20100901.1)
+ MachineType: SAMSUNG ELECTRONICS CO., LTD. N140
+ Package: linux (not installed)
+ ProcCmdLine: file=/cdrom/preseed/hostname.seed boot=casper 
initrd=/casper/initrd.lz quiet splash -- maybe-ubiquity
+ ProcEnviron:
+  LANG=en_US.UTF-8
+  SHELL=/bin/bash
+ ProcVersionSignature: Ubuntu 2.6.35-19.28-generic 2.6.35.3
+ Regression: No
+ RelatedPackageVersions: linux-firmware 1.38
+ Reproducible: Yes
+ RfKill:
+  0: hci0: Bluetooth
+   Soft blocked: no
+   Hard blocked: no
+ StagingDrivers: r8192e_pci
+ Tags: maverick kernel-net needs-upstream-testing staging
+ Title: [STAGING]
+ Uname: Linux 2.6.35-19-generic i686
+ UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare
+ dmi.bios.date: 08/18/2009
+ dmi.bios.vendor: Phoenix Technologies Ltd.
+ dmi.bios.version: 01CU.M002.20090818.CYH
+ dmi.board.name: N140
+ 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.:bvr01CU.M002.20090818.CYH:bd08/18/2009:svnSAMSUNGELECTRONICSCO.,LTD.:pnN140:pvrNotApplicable:rvnSAMSUNGELECTRONICSCO.,LTD.:rnN140:rvrNotApplicable:cvnSAMSUNGELECTRONICSCO.,LTD.:ct10:cvrN/A:
+ dmi.product.name: N140
+ dmi.product.version: Not Applicable
+ dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

** Attachment added: AcpiTables.txt
   
https://bugs.edge.launchpad.net/bugs/644235/+attachment/1637626/+files/AcpiTables.txt

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

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


[Bug 644235] AlsaDevices.txt

2010-09-26 Thread Ken Williams
apport information

** Attachment added: AlsaDevices.txt
   
https://bugs.edge.launchpad.net/bugs/644235/+attachment/1637627/+files/AlsaDevices.txt

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

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


[Bug 644235] BootDmesg.txt

2010-09-26 Thread Ken Williams
apport information

** Attachment added: BootDmesg.txt
   
https://bugs.edge.launchpad.net/bugs/644235/+attachment/1637628/+files/BootDmesg.txt

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

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


[Bug 644235] Card0.Amixer.values.txt

2010-09-26 Thread Ken Williams
apport information

** Attachment added: Card0.Amixer.values.txt
   
https://bugs.edge.launchpad.net/bugs/644235/+attachment/1637629/+files/Card0.Amixer.values.txt

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

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


[Bug 644235] Card0.Codecs.codec.0.txt

2010-09-26 Thread Ken Williams
apport information

** Attachment added: Card0.Codecs.codec.0.txt
   
https://bugs.edge.launchpad.net/bugs/644235/+attachment/1637630/+files/Card0.Codecs.codec.0.txt

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

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


[Bug 644235] CurrentDmesg.txt

2010-09-26 Thread Ken Williams
apport information

** Attachment added: CurrentDmesg.txt
   
https://bugs.edge.launchpad.net/bugs/644235/+attachment/1637631/+files/CurrentDmesg.txt

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

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


[Bug 644235] IwConfig.txt

2010-09-26 Thread Ken Williams
apport information

** Attachment added: IwConfig.txt
   
https://bugs.edge.launchpad.net/bugs/644235/+attachment/1637632/+files/IwConfig.txt

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

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


[Bug 644235] Lspci.txt

2010-09-26 Thread Ken Williams
apport information

** Attachment added: Lspci.txt
   
https://bugs.edge.launchpad.net/bugs/644235/+attachment/1637633/+files/Lspci.txt

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

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


[Bug 644235] Lsusb.txt

2010-09-26 Thread Ken Williams
apport information

** Attachment added: Lsusb.txt
   
https://bugs.edge.launchpad.net/bugs/644235/+attachment/1637634/+files/Lsusb.txt

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

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


[Bug 644235] PciMultimedia.txt

2010-09-26 Thread Ken Williams
apport information

** Attachment added: PciMultimedia.txt
   
https://bugs.edge.launchpad.net/bugs/644235/+attachment/1637635/+files/PciMultimedia.txt

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

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


[Bug 644235] ProcCpuinfo.txt

2010-09-26 Thread Ken Williams
apport information

** Attachment added: ProcCpuinfo.txt
   
https://bugs.edge.launchpad.net/bugs/644235/+attachment/1637636/+files/ProcCpuinfo.txt

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

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


[Bug 644235] ProcInterrupts.txt

2010-09-26 Thread Ken Williams
apport information

** Attachment added: ProcInterrupts.txt
   
https://bugs.edge.launchpad.net/bugs/644235/+attachment/1637637/+files/ProcInterrupts.txt

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

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


[Bug 644235] ProcModules.txt

2010-09-26 Thread Ken Williams
apport information

** Attachment added: ProcModules.txt
   
https://bugs.edge.launchpad.net/bugs/644235/+attachment/1637638/+files/ProcModules.txt

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

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


[Bug 644235] UdevDb.txt

2010-09-26 Thread Ken Williams
apport information

** Attachment added: UdevDb.txt
   
https://bugs.edge.launchpad.net/bugs/644235/+attachment/1637639/+files/UdevDb.txt

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

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


[Bug 644235] UdevLog.txt

2010-09-26 Thread Ken Williams
apport information

** Attachment added: UdevLog.txt
   
https://bugs.edge.launchpad.net/bugs/644235/+attachment/1637640/+files/UdevLog.txt

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

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


[Bug 638372] Re: brightness of notebook screen is reset after screensaver

2010-09-26 Thread JR
I don't think this is a bug of the radeon/ati driver, because since some
days I'm using fglrx but the problem still exists. so I assume it's a
KDE bug.

-- 
brightness of notebook screen is reset after screensaver
https://bugs.launchpad.net/bugs/638372
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 644235] WifiSyslog.txt

2010-09-26 Thread Ken Williams
apport information

** Attachment added: WifiSyslog.txt
   
https://bugs.edge.launchpad.net/bugs/644235/+attachment/1637641/+files/WifiSyslog.txt

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

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


[Bug 571906] Re: Kpackagekit does not recognize network connection

2010-09-26 Thread JETorkildsen
I've found a solution to my problem. I changed the config file
/etc/PackageKit/PackageKit.conf and set the parameter
UseNetworkManager=true to UseNetworkManager=false

-- 
Kpackagekit does not recognize network connection
https://bugs.launchpad.net/bugs/571906
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 371434] Re: PCI ExpressCard hotplug requires pciehp.pciehp_force=1

2010-09-26 Thread Eric Shattow
Jordan, thank you for your interest in this bug.

With default configuration not using those settings, the card works only
when present during boot. If card is removed and added again, there is
an error, and it does not work again.

I confirm success with setting kernel options pciehp_force=1
pciehp_poll_mode=1 ; The card is then working in all configurations of
boot when present then remove/add, and boot with card absent and then
added after OS fully loaded.

Tested on Dell Inspiron 1420N installed with Maverick 10.10 beta (linux-
image 2.6.35.22.23) and StarTech EC1394B2 firewire express card.

Is there more information I can provide you?

-- 
PCI ExpressCard hotplug requires pciehp.pciehp_force=1
https://bugs.launchpad.net/bugs/371434
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 647935] Re: amdcccle crashed with SIGSEGV

2010-09-26 Thread Apport retracing service
*** This bug is a duplicate of bug 647802 ***
https://bugs.launchpad.net/bugs/647802

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 #647802, 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
   
https://bugs.edge.launchpad.net/bugs/647935/+attachment/1637566/+files/CoreDump.gz

** Attachment removed: Dependencies.txt
   
https://bugs.edge.launchpad.net/bugs/647935/+attachment/1637568/+files/Dependencies.txt

** Attachment removed: Disassembly.txt
   
https://bugs.edge.launchpad.net/bugs/647935/+attachment/1637569/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.edge.launchpad.net/bugs/647935/+attachment/1637578/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.edge.launchpad.net/bugs/647935/+attachment/1637580/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.edge.launchpad.net/bugs/647935/+attachment/1637581/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.edge.launchpad.net/bugs/647935/+attachment/1637583/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.edge.launchpad.net/bugs/647935/+attachment/1637584/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of private bug 647802

** Visibility changed to: Public

** Tags removed: need-amd64-retrace

-- 
amdcccle crashed with SIGSEGV
https://bugs.launchpad.net/bugs/647935
You received this bug notification because you are a member of 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   >