[Bug 497790] Re: squid should provide an apparmor profile

2010-07-06 Thread PatRiehecky
Per the suggestion from Mathias, I am working on a source branch and
PPA.  I have a round 1 of the code and associated packages that I need
to do more testing on before proceeding.  Subscribers that care can find
the PPA at https://launchpad.net/~jcpunk/+archive/squid-fix-497790

I should get some good testing in this week.  When I've tested more I
will follow through with the merge proposal.

-- 
squid should provide an apparmor profile
https://bugs.launchpad.net/bugs/497790
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 602155] [NEW] sambadidn't install

2010-07-06 Thread Mauro Costantini
Public bug reported:

Binary package hint: samba

sambadidn't insta

ProblemType: Package
Architecture: amd64
DistroRelease: Ubuntu 9.04
ErrorMessage: subprocess post-installation script returned error exit status 1
Package: samba-common 2:3.3.2-1ubuntu3.5
SourcePackage: samba
Title: package samba-common 2:3.3.2-1ubuntu3.5 failed to install/upgrade: 
subprocess post-installation script returned error exit status 1
Uname: Linux 2.6.28-18-server x86_64

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


** Tags: amd64 apport-package

-- 
sambadidn't install
https://bugs.launchpad.net/bugs/602155
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 602155] Re: sambadidn't install

2010-07-06 Thread Mauro Costantini

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

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

-- 
sambadidn't install
https://bugs.launchpad.net/bugs/602155
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 600936] Re: mysql-5.1 fails to build from source in maverick

2010-07-06 Thread Konstantinos Margaritis
*** This bug is a duplicate of bug 579909 ***
https://bugs.launchpad.net/bugs/579909

This is exactly the same bug I got when building mysql with a packaged
codesourcery compiler -which I believe is very close to the linaro one.
Check the solution I got in #579909, perhaps it works for you too.

** This bug has been marked a duplicate of bug 579909
   mysql fails to build form source on armel

-- 
mysql-5.1 fails to build from source in maverick
https://bugs.launchpad.net/bugs/600936
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-5.1 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 579909] Re: mysql fails to build form source on armel

2010-07-06 Thread Matthias Klose
** Changed in: mysql-dfsg-5.1 (Ubuntu)
   Importance: Low = High

** Changed in: mysql-dfsg-5.1 (Ubuntu)
Milestone: None = maverick-alpha-3

** Tags added: armel toolchain

-- 
mysql fails to build form source on armel
https://bugs.launchpad.net/bugs/579909
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 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 579909] Re: mysql fails to build form source on armel

2010-07-06 Thread Loïc Minier
Konstantinos, removing the \ after set -ex causes it to be interpreted
as its own command, doing nothing, and means that the large shell
snippet isn't run under set -e anymore, meaning that errors in
intermediate get ignored.

In other words, this would fail in a make target:
set -e; false; true
but this would not:
false; true

The real issue is one of the shell commands failing.

-- 
mysql fails to build form source with Linaro and CodeSourcery toolchains
https://bugs.launchpad.net/bugs/579909
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 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 579909] Re: mysql fails to build form source on armel

2010-07-06 Thread Loïc Minier
The command which returns a non-zero exit code is the second diff run, the 
first one works well:
+ gcc -E -nostdinc -dI -I../include -I../include/mysql -I../sql -I./include 
-I./include/mysql -I./sql ../include/mysql/plugin.h
+ /bin/sed -e '/^# /d' -e '/^[  ]*$/d' -e '/^#pragma GCC set_debug_pwd/d' -e 
'/^#ident/d'
+ /usr/bin/diff -w ../include/mysql/plugin.h.pp ./abi_check.out
+ /bin/rm ./abi_check.out
The second one does not:
+ /bin/sed -e '/^# /d' -e '/^[  ]*$/d' -e '/^#pragma GCC set_debug_pwd/d' -e 
'/^#ident/d'
+ gcc -E -nostdinc -dI -I../include -I../include/mysql -I../sql -I./include 
-I./include/mysql -I./sql ../include/mysql.h
+ /usr/bin/diff -w ../include/mysql.h.pp ./abi_check.out
(diff output follows)

So probably gcc -E ... on ../include/mysql.h is not outputting anything,
it would be good to find out what it's doing.

** Also affects: mysql-dfsg-5.1 (Ubuntu Maverick)
   Importance: High
   Status: Triaged

** Summary changed:

- mysql fails to build form source on armel
+ mysql fails to build form source with Linaro and CodeSourcery toolchains

** Also affects: gcc-linaro
   Importance: Undecided
   Status: New

** Changed in: gcc-linaro
   Status: New = Confirmed

-- 
mysql fails to build form source with Linaro and CodeSourcery toolchains
https://bugs.launchpad.net/bugs/579909
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 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 579909] Re: mysql fails to build form source with Linaro and CodeSourcery toolchains

2010-07-06 Thread Loïc Minier
See the i386 build log with the Linaro toolchain:
http://launchpadlibrarian.net/51277546/buildlog_ubuntu-maverick-i386.mysql-5.1_5.1.48-1ubuntu1_FAILEDTOBUILD.txt.gz
build entry 
https://launchpad.net/ubuntu/+archive/test-rebuild-20100628/+build/1833092

-- 
mysql fails to build form source with Linaro and CodeSourcery toolchains
https://bugs.launchpad.net/bugs/579909
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 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 588293] Re: iovec array memory leak

2010-07-06 Thread David Weber
Proposed Package works now on one of our productive Servers. The bug is
fixed and so far no other problems appeared! So please pull it into
lucid-updates.

-- 
iovec array memory leak
https://bugs.launchpad.net/bugs/588293
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 586898] Re: php5 cli segmentation fault when executing script

2010-07-06 Thread raspi
Cli version PHP 5.3.2-1ubuntu4.2 with Suhosin-Patch (cli) (built: May 13
2010 20:03:45)

Program received signal SIGSEGV, Segmentation fault.
0x006b2a8c in ?? ()
(gdb) bt
#0  0x006b2a8c in ?? ()
#1  0x006b2aae in ?? ()
#2  0x006b2aae in ?? ()
#3  0x006b2aae in ?? ()
#4  0x006b2b65 in ?? ()
#5  0x006b3475 in gc_collect_cycles ()
#6  0x006b3684 in gc_zval_possible_root ()
#7  0x0070910f in ?? ()
#8  0x00709a7d in ?? ()
#9  0x006bd400 in execute ()
#10 0x0069512d in zend_execute_scripts ()
#11 0x00640d98 in php_execute_script ()
#12 0x00726236 in ?? ()
#13 0x752a6c4d in __libc_start_main () from /lib/libc.so.6
#14 0x0042c639 in _start ()

-- 
php5 cli segmentation fault when executing script
https://bugs.launchpad.net/bugs/586898
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in ubuntu.

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


[Bug 580590] Re: Squid no longer uses $SQUID_MAXFD

2010-07-06 Thread Launchpad Bug Tracker
This bug was fixed in the package squid - 2.7.STABLE9-2ubuntu1

---
squid (2.7.STABLE9-2ubuntu1) maverick; urgency=low

  * Merge from debian unstable, remaining changes:
+ 99-ubuntu-ssl-cert-snakeoil:
  - src/cf.data.pre:
* Add reference to snakeoil /etc/ssl
   - debian/control:
+ Add ssl-cert to Depends to brin in snakeoil certificates.
+ debian/logrotate: use sarg-reports rather than sarg-maint. (LP: #268816)
+ debian/patches/99-fix-storeurl-move-temp.dpatch: Fix bug with 302 
response moved temporarily.
  (LP: #503777)
+ debian/squid.upstart, debian/rules: Convert initscripts to upstart.
+ debian/patches/90-cf.data.ubuntu.dpatch: Add an example refresh pattern 
for debs
  (foundations-lucid-local-report spec)
+ debian/rules: Disable optimizations for arm. (LP: #543798)
+ Dropped:
  + debian/patches/99-squid-capability.dpatch: No longer needed.
  + debian/patches/08-CVE-2010-0308.dpatch: No longer needed.
  + debian/patches/09-CVE-2010-0639.dpatch: No longer needed.

   [Chuck Short]
   * debian/squid.upstart: Re-add maxfds. (LP: #580590)
 -- Chuck Short zul...@ubuntu.com   Fri, 02 Jul 2010 13:43:09 -0400

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

** CVE added: http://www.cve.mitre.org/cgi-
bin/cvename.cgi?name=2010-0308

** CVE added: http://www.cve.mitre.org/cgi-
bin/cvename.cgi?name=2010-0639

-- 
Squid no longer uses $SQUID_MAXFD
https://bugs.launchpad.net/bugs/580590
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 601501] [NEW] Apache should tap into the shared-mime-info database

2010-07-06 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

Apache has its own small MIME database, however it is quite limited.
Apache would benefit from sending files as the correct MIME type based
on the information searched in the shared-mime-info database, which
contains many more type definitions, as well as the facility for
magic/namespace detection.

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

-- 
Apache should tap into the shared-mime-info database
https://bugs.edge.launchpad.net/bugs/601501
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 601501] Re: Apache should tap into the shared-mime-info database

2010-07-06 Thread Vadim Rutkovsky
** Package changed: ubuntu = apache2 (Ubuntu)

-- 
Apache should tap into the shared-mime-info database
https://bugs.launchpad.net/bugs/601501
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 268816] Re: logrotate uses outdated sarg script

2010-07-06 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/squid

-- 
logrotate uses outdated sarg script
https://bugs.launchpad.net/bugs/268816
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 592058] Re: package mysql-server-5.1 5.1.37-1ubuntu5.4 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2010-07-06 Thread Jean-Baptiste Lallement
Thanks for following up. I'm closing this report due to your last comment.
Don't hesitate to submit any new bug.

** Changed in: mysql-dfsg-5.1 (Ubuntu)
   Status: Incomplete = Invalid

-- 
package mysql-server-5.1 5.1.37-1ubuntu5.4 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
https://bugs.launchpad.net/bugs/592058
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 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 601087] Re: wsdl_generator downloads wrong file for eucalyptus-src-deps.tar.gz

2010-07-06 Thread Tyler Wykoff
Hi Dave,

I am working on the Dynamic On-Demand Computing Systems (DODCS) project
for Information Sciences Institute (http://www3.isi.edu/home) for the
University of Southern California. We are extending eucalyptus to
specialized hardware for hpc applications. In order to do this, we need
to have the nodes tell the cloud controller detailed information about
what hardware resources they have. This involves modifying the web
services interfaces.

We have branched off the ubuntu eucalyptus repository for these
customizations and hope to be able to contribute to the ubuntu branch
some of these extensions.

Thanks,
Tyler

-- 
wsdl_generator downloads wrong file for eucalyptus-src-deps.tar.gz
https://bugs.launchpad.net/bugs/601087
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to eucalyptus 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 602308] [NEW] virt-manager cannot start VMs on lucid with v2.6.35 maverick kernel

2010-07-06 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

Binary package hint: virt-manager

I have an uptodate lucid system with the Maverick LTS backports kernel
installed, virt-manager fails to start known working VMs with the error
below:

Traceback (most recent call last):
  File /usr/share/virt-manager/virtManager/engine.py, line 588, in run_domain
vm.startup()
  File /usr/share/virt-manager/virtManager/domain.py, line 150, in startup
self._backend.create()
  File /usr/lib/python2.6/dist-packages/libvirt.py, line 300, in create
if ret == -1: raise libvirtError ('virDomainCreate() failed', dom=self)
libvirtError: internal error unable to start guest: libvir: Security Labeling 
error : error calling aa_change_profile()

ProblemType: Bug
DistroRelease: Ubuntu 10.04
Package: virt-manager 0.8.2-2ubuntu8
ProcVersionSignature: Ubuntu 2.6.35-6.9hotplug201007012005-generic 2.6.35-rc3
Uname: Linux 2.6.35-6-generic x86_64
Architecture: amd64
Date: Tue Jul  6 16:10:08 2010
EcryptfsInUse: Yes
PackageArchitecture: all
ProcEnviron:
 PATH=(custom, user)
 LANG=en_GB.utf8
 SHELL=/bin/bash
SourcePackage: virt-manager

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


** Tags: amd64 apport-bug lucid
-- 
virt-manager cannot start VMs on lucid with v2.6.35 maverick kernel
https://bugs.launchpad.net/bugs/602308
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 602308] Re: virt-manager cannot start VMs on lucid with v2.6.35 maverick kernel

2010-07-06 Thread Marc Deslauriers
** Package changed: virt-manager (Ubuntu) = libvirt (Ubuntu)

-- 
virt-manager cannot start VMs on lucid with v2.6.35 maverick kernel
https://bugs.launchpad.net/bugs/602308
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 602308] Re: virt-manager cannot start VMs on lucid with v2.6.35 maverick kernel

2010-07-06 Thread Serge Hallyn
** Changed in: libvirt (Ubuntu)
   Status: New = Confirmed

-- 
virt-manager cannot start VMs on lucid with v2.6.35 maverick kernel
https://bugs.launchpad.net/bugs/602308
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 602308] Re: virt-manager cannot start VMs on lucid with v2.6.35 maverick kernel

2010-07-06 Thread Serge Hallyn
Here is the tail of my audit log:

type=AVC msg=audit(1278430265.975:423):  operation=getattr pid=1369 parent=1 
profile=/usr/sbin/libvirtd name=/ pid=1369 comm=libvirtd 
requested_mask=r denied_mask=r fsuid=0 ouid=0
type=SYSCALL msg=audit(1278430265.975:423): arch=c03e syscall=4 success=no 
exit=-13 a0=7f06c7828347 a1=7f06c7828740 a2=7f06c7828740 a3=3 items=0 ppid=1 
pid=1369 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 
fsgid=0 tty=(none) ses=4294967295 comm=libvirtd exe=/usr/sbin/libvirtd 
key=(null)
type=AVC msg=audit(1278430265.975:424):  operation=getattr pid=1369 parent=1 
profile=/usr/sbin/libvirtd name=/ pid=1369 comm=libvirtd 
requested_mask=r denied_mask=r fsuid=0 ouid=0
type=SYSCALL msg=audit(1278430265.975:424): arch=c03e syscall=4 success=no 
exit=-13 a0=7f06c7828377 a1=7f06c7828740 a2=7f06c7828740 a3=3 items=0 ppid=1 
pid=1369 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 
fsgid=0 tty=(none) ses=4294967295 comm=libvirtd exe=/usr/sbin/libvirtd 
key=(null)
type=AVC msg=audit(1278430268.966:425):  operation=getattr pid=1371 parent=1 
profile=/usr/sbin/libvirtd name=/ pid=1371 comm=libvirtd 
requested_mask=r denied_mask=r fsuid=0 ouid=0
type=SYSCALL msg=audit(1278430268.966:425): arch=c03e syscall=4 success=no 
exit=-13 a0=7f06c6426377 a1=7f06c6426740 a2=7f06c6426740 a3=3 items=0 ppid=1 
pid=1371 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 
fsgid=0 tty=(none) ses=4294967295 comm=libvirtd exe=/usr/sbin/libvirtd 
key=(null)
type=AVC msg=audit(1278430268.966:426):  operation=getattr pid=1371 parent=1 
profile=/usr/sbin/libvirtd name=/ pid=1371 comm=libvirtd 
requested_mask=r denied_mask=r fsuid=0 ouid=0
type=SYSCALL msg=audit(1278430268.966:426): arch=c03e syscall=4 success=no 
exit=-13 a0=7f06c6426347 a1=7f06c6426740 a2=7f06c6426740 a3=3 items=0 ppid=1 
pid=1371 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 
fsgid=0 tty=(none) ses=4294967295 comm=libvirtd exe=/usr/sbin/libvirtd 
key=(null)
type=AVC msg=audit(1278430268.966:427):  operation=getattr pid=1371 parent=1 
profile=/usr/sbin/libvirtd name=/ pid=1371 comm=libvirtd 
requested_mask=r denied_mask=r fsuid=0 ouid=0
type=SYSCALL msg=audit(1278430268.966:427): arch=c03e syscall=4 success=no 
exit=-13 a0=7f06c6426377 a1=7f06c6426740 a2=7f06c6426740 a3=3 items=0 ppid=1 
pid=1371 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 
fsgid=0 tty=(none) ses=4294967295 comm=libvirtd exe=/usr/sbin/libvirtd 
key=(null)

-- 
virt-manager cannot start VMs on lucid with v2.6.35 maverick kernel
https://bugs.launchpad.net/bugs/602308
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 543478] Re: qemus pmemsave doesn't accept / in filename

2010-07-06 Thread Muelli
Here's a patch against qemu from git that prints the offending
characters, helping the user to understand what's going on.

I can't deal with qemu-devel myself, it's way too noisy. But Ubuntu
might want to take that patch or push it upstream.

** Patch added: Patch which prints the errorneous characters
   
http://launchpadlibrarian.net/51467852/0001-Monitor-Print-the-errorneous-character-if-we-detecte.patch

-- 
qemus pmemsave doesn't accept / in filename
https://bugs.launchpad.net/bugs/543478
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 602155] Re: sambadidn't install

2010-07-06 Thread Mathias Gug
According to the log files:

Setting up samba-common (2:3.3.2-1ubuntu3.5) ...
Not replacing deleted config file /etc/samba/smb.conf
Install/upgrade will fail. To recover, please try:
  sudo cp /usr/share/samba/smb.conf /etc/samba/smb.conf
  sudo dpkg --configure -a


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

-- 
sambadidn't install
https://bugs.launchpad.net/bugs/602155
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 602060] Re: Virtio network stops working after dynamic virtio disk attachment

2010-07-06 Thread Mathias Gug
** Changed in: eucalyptus (Ubuntu)
   Importance: Undecided = Medium

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

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

-- 
Virtio network stops working after dynamic virtio disk attachment
https://bugs.launchpad.net/bugs/602060
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 602308] Re: virt-manager cannot start VMs on lucid with v2.6.35 maverick kernel

2010-07-06 Thread Marc Deslauriers
*** This bug is a duplicate of bug 599450 ***
https://bugs.launchpad.net/bugs/599450

looks like a dupe of #599450

-- 
virt-manager cannot start VMs on lucid with v2.6.35 maverick kernel
https://bugs.launchpad.net/bugs/602308
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 602308] Re: virt-manager cannot start VMs on lucid with v2.6.35 maverick kernel

2010-07-06 Thread Marc Deslauriers
*** This bug is a duplicate of bug 599450 ***
https://bugs.launchpad.net/bugs/599450

** This bug has been marked a duplicate of bug 599450
   [apparmor] getattr handled incorrectly in 2.6.35-6.7

-- 
virt-manager cannot start VMs on lucid with v2.6.35 maverick kernel
https://bugs.launchpad.net/bugs/602308
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 601501] Re: Apache should tap into the shared-mime-info database

2010-07-06 Thread Mathias Gug
According to the configuration of the mime module the default apache2
configuration is already using  /etc/mime.types:

  #
  # TypesConfig points to the file containing the list of mappings from
 # filename extension to MIME-type.
 #
 TypesConfig /etc/mime.types

The mime-support handles /etc/mime.types. So apache2 is already using
the system mime type database.

** Changed in: apache2 (Ubuntu)
   Status: New = Invalid

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

-- 
Apache should tap into the shared-mime-info database
https://bugs.launchpad.net/bugs/601501
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 543478] Re: qemus pmemsave doesn't accept / in filename

2010-07-06 Thread Brian Murray
** Tags added: patch

-- 
qemus pmemsave doesn't accept / in filename
https://bugs.launchpad.net/bugs/543478
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 590104] Re: ace domain format not allowed for .de nameservers

2010-07-06 Thread Chuck Short
** Changed in: server-papercuts
 Assignee: (unassigned) = Chuck Short (zulcss)

-- 
ace domain format not allowed for .de nameservers
https://bugs.launchpad.net/bugs/590104
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to whois 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 601087] Re: wsdl_generator downloads wrong file for eucalyptus-src-deps.tar.gz

2010-07-06 Thread Dave Walker
Hi Tyler,

Thanks for the update.  This portion only tends to get reviewed when the
WSDL stubs need updating, and this hasn't been required since it was
last used.  However, it is indeed a bug - and will ensure it's resolved
with the next eucalyptus to maverick.  However, this wouldn't normally
fit the StableReleaseUpdates policy, so I am unable to target it towards
Lucid at this stage.

This situation may change, if the stubs require updating during the
Lucid cycle.  I hope this doesn't cause too much inconvenience.

Thanks.

-- 
wsdl_generator downloads wrong file for eucalyptus-src-deps.tar.gz
https://bugs.launchpad.net/bugs/601087
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to eucalyptus 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 551130] Re: infinite loop in /etc/init/mysql.conf if mysqld is not running.

2010-07-06 Thread stininkey skunkenheimer
Does ANYONE have a solution for: ERROR 2002 (HY000): Can't connect to local 
MySQL server through socket '/var/run/mysqld/mysqld.sock' 
Can I install an old version or something? I MUST get this server up. Nothing 
will get it to run.

-- 
infinite loop in /etc/init/mysql.conf if mysqld is not running.
https://bugs.launchpad.net/bugs/551130
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 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 370542] Re: Accessing http://localhost gives a 403 Forbidden when using apache allow localhost directive

2010-07-06 Thread Károly Oláh
The bug still exists in Ubuntu Lucid Lynx (10.04), with the exast same symptoms 
amd solutions. At least in my case.
kernel: 2.6.32-23-generic
apache: 2.2.14-5ubuntu8, mpm-prefork
network-manager: 0.8-0ubuntu3

-- 
Accessing http://localhost gives a 403 Forbidden when using apache allow 
localhost directive
https://bugs.launchpad.net/bugs/370542
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 602379] [NEW] package openssh-server 1:5.3p1-3ubuntu4 failed to install/upgrade: subprocess new pre-installation script returned error exit status 1

2010-07-06 Thread Geoff Bransford-Koons
Public bug reported:


Ubuntu 10.04 LTS
apt-cache command returns ¨W:  Unable to locate package openssh¨

Performing server install with Ubuntu 10.04 LTS, selected to include
openssh package and received error when install completed.

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: openssh-server 1:5.3p1-3ubuntu4
ProcVersionSignature: Ubuntu 2.6.32-21.32-generic-pae 2.6.32.11+drm33.2
Uname: Linux 2.6.32-21-generic-pae i686
NonfreeKernelModules: nvidia
Architecture: i386
Date: Thu Jul  1 15:42:15 2010
Df:
 
ErrorMessage: subprocess new pre-installation script returned error exit status 
1
InstallationMedia: Ubuntu-Server 10.04 LTS Lucid Lynx - Release i386 
(20100427)
SourcePackage: openssh
Title: package openssh-server 1:5.3p1-3ubuntu4 failed to install/upgrade: 
subprocess new pre-installation script returned error exit status 1

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


** Tags: apport-package i386 lucid

-- 
package openssh-server 1:5.3p1-3ubuntu4 failed to install/upgrade: subprocess 
new pre-installation script returned error exit status 1
https://bugs.launchpad.net/bugs/602379
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh 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 602379] Re: package openssh-server 1:5.3p1-3ubuntu4 failed to install/upgrade: subprocess new pre-installation script returned error exit status 1

2010-07-06 Thread Geoff Bransford-Koons

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

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

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

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

** Attachment added: SSHDConfig.txt
   http://launchpadlibrarian.net/51473029/SSHDConfig.txt

-- 
package openssh-server 1:5.3p1-3ubuntu4 failed to install/upgrade: subprocess 
new pre-installation script returned error exit status 1
https://bugs.launchpad.net/bugs/602379
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh 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 125609] Re: X is required to build irqbalance

2010-07-06 Thread Chuck Short
** Changed in: irqbalance (Ubuntu)
 Assignee: (unassigned) = Chuck Short (zulcss)

-- 
X is required to build irqbalance
https://bugs.launchpad.net/bugs/125609
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to irqbalance 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 602060] Re: Virtio network stops working after dynamic virtio disk attachment

2010-07-06 Thread Serge Hallyn
Thanks for reporting this and helping to make Ubuntu better.

I've confirmed this on lucid.  Started with a VM built in virt-manager, with 
ide root hd and virtio
network card.  Network works.  Then I do 'modprobe acpiphp' in the guest, and 
on the host I do:

virsh attach-disk 13 --type disk /home/serge/newdisk.img --mode
shareable --driver file vda

where 13 is the domain id and newdisk.img is obviously the disk.

After this, network is not working.  (Can't reach the host from guest, and 
re-running dhclient
does not succeed, though ifconfig thinks eth0 is up)

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

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

** Changed in: libvirt (Ubuntu)
 Assignee: (unassigned) = Serge Hallyn (serge-hallyn)

-- 
Virtio network stops working after dynamic virtio disk attachment
https://bugs.launchpad.net/bugs/602060
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 602060] Re: Virtio network stops working after dynamic virtio disk attachment

2010-07-06 Thread Serge Hallyn
Note that if I do not do
   modprobe acpiphp
in the guest, then networking stays up.  So this appears to be a bug in the
guest kernel rather than on the host.

-- 
Virtio network stops working after dynamic virtio disk attachment
https://bugs.launchpad.net/bugs/602060
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 602060] Re: Virtio network stops working after dynamic virtio disk attachment

2010-07-06 Thread Serge Hallyn
With a maverick guest (on lucid host) i cannot reproduce this.

-- 
Virtio network stops working after dynamic virtio disk attachment
https://bugs.launchpad.net/bugs/602060
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 602379] Re: package openssh-server 1:5.3p1-3ubuntu4 failed to install/upgrade: subprocess new pre-installation script returned error exit status 1

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

** This bug has been marked a duplicate of bug 349469
   debconf: DbDriver config: /var/cache/debconf/config.dat is locked by 
another process: Resource temporarily unavailable

-- 
package openssh-server 1:5.3p1-3ubuntu4 failed to install/upgrade: subprocess 
new pre-installation script returned error exit status 1
https://bugs.launchpad.net/bugs/602379
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.

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


Re: [Bug 551130] Re: infinite loop in /etc/init/mysql.conf if mysqld is not running.

2010-07-06 Thread Artis Caune
On 7 July 2010 05:34, stininkey skunkenheimer jdie...@twonails.com wrote:
 Does ANYONE have a solution for: ERROR 2002 (HY000): Can't connect to local 
 MySQL server through socket '/var/run/mysqld/mysqld.sock'
 Can I install an old version or something? I MUST get this server up. Nothing 
 will get it to run.


Try to edit /etc/init/mysql.conf and change:
exec /usr/sbin/mysqld
to
exec /usr/bin/mysqld_safe



-- 
Artis Caune

Everything should be made as simple as possible, but not simpler.

-- 
infinite loop in /etc/init/mysql.conf if mysqld is not running.
https://bugs.launchpad.net/bugs/551130
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 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 573919] Re: autofs doesn't work with lucid

2010-07-06 Thread Azamat S. Kalimoulline
Autofs doesn't work because it startup script has incorrect dependency
to statd (doesn't have). Can submit workaround: in /etc/init/autofs.conf
add line

status statd | grep -q start/running || start statd

after pre-start script line

-- 
autofs doesn't work with lucid
https://bugs.launchpad.net/bugs/573919
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to autofs 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 602060] Re: Virtio network stops working after dynamic virtio disk attachment

2010-07-06 Thread Serge Hallyn
Finally, with a lucid guest on a maverick host, i can reproduce this.
Again only after doing 'modprobe acpiphp' in the guest before doing
the disk add.

-- 
Virtio network stops working after dynamic virtio disk attachment
https://bugs.launchpad.net/bugs/602060
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 564920] Re: PHP5 under Apache2 on 64 bit system is not completely 64 bit

2010-07-06 Thread R. Jones
Ok.  I'm back to trying to test this fix.  I think I have lucid-proposed
added to my test configuration.  I'm not seeing the build.  A pointer to
a web page documenting what I need to do next to access your ppa area
and use it would be useful.

Thanks.

-- 
PHP5 under Apache2 on 64 bit system is not completely 64 bit 
https://bugs.launchpad.net/bugs/564920
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in ubuntu.

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


[Bug 125609] Re: X is required to build irqbalance

2010-07-06 Thread Jos Boumans
** Changed in: server-papercuts
 Assignee: (unassigned) = Chuck Short (zulcss)

-- 
X is required to build irqbalance
https://bugs.launchpad.net/bugs/125609
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to irqbalance 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 601501] Re: Apache should tap into the shared-mime-info database

2010-07-06 Thread Delan Azabani
I believe you are wrong. /etc/mime.types is not the shared-mime-info
database I am talking about. I am aware that Apache uses
/etc/mime.types, which only has extension globbing, but no magic or
namespace detection. The shared-mime-info database is cascaded in the
following three directories (only the first two are necessary for
Apache):

/usr/share/mime
/usr/local/share/mime
/home/*/.local/share/mime

** Changed in: apache2 (Ubuntu)
   Status: Invalid = Confirmed

-- 
Apache should tap into the shared-mime-info database
https://bugs.launchpad.net/bugs/601501
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 543478] Re: qemus pmemsave doesn't accept / in filename

2010-07-06 Thread Muelli
** Branch linked: lp:~ubuntu-bugs-auftrags-killer/qemu/proper-error-
characters

-- 
qemus pmemsave doesn't accept / in filename
https://bugs.launchpad.net/bugs/543478
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 602539] [NEW] qemu-system-x86_64 segfaults if using -no-kvm with -m 4096 or greater

2010-07-06 Thread Rich
Public bug reported:

Binary package hint: qemu-kvm

Latest Ubuntu 10.04 amd64.

I have a FreeBSD guest I had running quite slowly with the kvm-intel
module loaded, so I shut down the guest, and passed the -no-kvm flag to
kvm.

Much to my surprise, I experienced an immediate segmentation fault:
$ qemu-system-x86_64 -no-kvm -vnc :0 -hda fbsd_dev -m 4096
pci_add_option_rom: failed to find romfile pxe-rtl8139.bin
Segmentation fault (core dumped)

In contrast:
$ qemu-system-x86_64 -no-kvm -vnc :0 -hda fbsd_dev -m 4095
pci_add_option_rom: failed to find romfile pxe-rtl8139.bin
[runs happily forever]

I'm presuming this is some mishandled behavior of qemu having a limit of
memory being  4096m when not using VT bits or somesuch, but it was
quite disruptive, and it didn't occur to me to try varying the memory
amount for most of a day.

ProblemType: Bug
DistroRelease: Ubuntu 10.04
Package: qemu-kvm 0.12.3+noroms-0ubuntu9
ProcVersionSignature: Ubuntu 2.6.32-22.36-generic 2.6.32.11+drm33.2
Uname: Linux 2.6.32-22-generic x86_64
NonfreeKernelModules: nvidia
Architecture: amd64
Date: Wed Jul  7 00:32:52 2010
InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release amd64 (20100427.1)
KvmCmdLine: Error: command ['ps', '-C', 'kvm', '-F'] failed with exit code 1: 
UIDPID  PPID  CSZ   RSS PSR STIME TTY  TIME CMD
MachineType: Dell Inc. Precision WorkStation T5500
ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.32-22-generic 
root=/dev/mapper/root-slash ro quiet splash
ProcEnviron:
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: qemu-kvm
dmi.bios.date: 04/12/2010
dmi.bios.vendor: Dell Inc.
dmi.bios.version: A05
dmi.board.name: 0CRH6C
dmi.board.vendor: Dell Inc.
dmi.board.version: A00
dmi.chassis.type: 7
dmi.chassis.vendor: Dell Inc.
dmi.modalias: 
dmi:bvnDellInc.:bvrA05:bd04/12/2010:svnDellInc.:pnPrecisionWorkStationT5500:pvr:rvnDellInc.:rn0CRH6C:rvrA00:cvnDellInc.:ct7:cvr:
dmi.product.name: Precision WorkStation T5500
dmi.sys.vendor: Dell Inc.

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


** Tags: amd64 apport-bug lucid

-- 
qemu-system-x86_64 segfaults if using -no-kvm with -m 4096 or greater
https://bugs.launchpad.net/bugs/602539
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 602539] Re: qemu-system-x86_64 segfaults if using -no-kvm with -m 4096 or greater

2010-07-06 Thread Rich

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

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

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

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

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

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

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

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

** Attachment added: RelatedPackageVersions.txt
   http://launchpadlibrarian.net/51494429/RelatedPackageVersions.txt

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

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

-- 
qemu-system-x86_64 segfaults if using -no-kvm with -m 4096 or greater
https://bugs.launchpad.net/bugs/602539
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 602539] Re: qemu-system-x86_64 segfaults if using -no-kvm with -m 4096 or greater

2010-07-06 Thread Rich
I find the following note in the changelog for qemu 0.12.4:
 - Fix segfault with ram_size  4095M without kvm (Ryan Harper)

-- 
qemu-system-x86_64 segfaults if using -no-kvm with -m 4096 or greater
https://bugs.launchpad.net/bugs/602539
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 602540] [NEW] ldapadduser adds the user and hangs

2010-07-06 Thread Zaphod
Public bug reported:

I followed this guide
https://help.ubuntu.com/10.04/serverguide/C/openldap-server.html

I have installed the ldapscripts package and when I use the command 
ldapadduser user group 
It says the user has been added to LDAP but then it hangs if I press CTRL-C I 
can see the user has been added but the user has not been added to the group. I 
can then manually add the user to the group. 

There seams to be some issue with the ldapadduser command.

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


** Tags: 10.04 error group hang ldapadduser lucid openladap ubuntu

-- 
ldapadduser adds the user and hangs
https://bugs.launchpad.net/bugs/602540
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openldap 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 580246] Re: Merge or sync vala 0.8.1-1 from Debian unstable. Failing tests due to dbus session bus not running in pbuilder

2010-07-06 Thread Matthias Klose
the test failures are still seen with 0.9.2-1 in maverick and in a test rebuild:
https://launchpad.net/ubuntu/+archive/test-rebuild-20100628/+build/1840778


** Also affects: vala (Ubuntu Maverick)
   Importance: Wishlist
   Status: Invalid

** Changed in: vala (Ubuntu Maverick)
   Importance: Wishlist = High

** Changed in: vala (Ubuntu Maverick)
   Status: Invalid = Confirmed

** Changed in: vala (Ubuntu Maverick)
Milestone: None = maverick-alpha-3

-- 
Merge or sync vala 0.8.1-1 from Debian unstable. Failing tests due to dbus 
session bus not running in pbuilder
https://bugs.launchpad.net/bugs/580246
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 599059] Re: window-picker-applet ftbfs in maverick

2010-07-06 Thread Matthias Klose
** Also affects: window-picker-applet (Ubuntu Maverick)
   Importance: Undecided
   Status: Confirmed

** Changed in: window-picker-applet (Ubuntu Maverick)
   Importance: Undecided = High

** Changed in: window-picker-applet (Ubuntu Maverick)
   Status: Confirmed = Triaged

** Changed in: window-picker-applet (Ubuntu Maverick)
Milestone: None = maverick-alpha-3

-- 
window-picker-applet ftbfs in maverick
https://bugs.launchpad.net/bugs/599059
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 333732] Re: Touchpad cursor trapped on screen 1

2010-07-06 Thread douglasr
Same problem on Thinkpad T61 running Xubuntu Karmic and NVIDIA drivers.


** Attachment added: lspci -vvnn
   http://launchpadlibrarian.net/51443976/lspcicvnn.txt

-- 
Touchpad cursor trapped on screen 1
https://bugs.launchpad.net/bugs/333732
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 241206] Re: Gnome Screensaver does not activate reliably

2010-07-06 Thread Robert Lange
** Changed in: gnome-screensaver (Ubuntu)
 Assignee: (unassigned) = Robert Lange (rcl24)

** Changed in: gnome-session
 Assignee: (unassigned) = Robert Lange (rcl24)

-- 
Gnome Screensaver does not activate reliably
https://bugs.launchpad.net/bugs/241206
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 602134] [NEW] wvstreams fails to build from source in maverick (glibc-2.12)

2010-07-06 Thread Matthias Klose
Public bug reported:

fails to build from source in maverick and in a test rebuild:
https://launchpad.net/ubuntu/+archive/test-rebuild-20100628/+build/1841619

./CXX -c ipstreams/wvunixdgsocket   
In file included from ./include/wvunixdgsocket.h:13,
 from ipstreams/wvunixdgsocket.cc:1:
./include/wvaddr.h: In member function 'uint32_t WvIPAddr::addr() const':
./include/wvaddr.h:284: warning: dereferencing type-punned pointer will break 
strict-aliasing rules
ipstreams/wvunixdgsocket.cc: In constructor 
'WvUnixDGSocket::WvUnixDGSocket(const WvFastString, bool, int)':
ipstreams/wvunixdgsocket.cc:50: error: 'chmod' was not declared in this scope
make[1]: *** [ipstreams/wvunixdgsocket.o] Error 1
make[1]: Leaving directory `/build/buildd/wvstreams-4.6.1'
make: *** [build-arch-stamp] Error 2
dpkg-buildpackage: error: debian/rules build gave error exit status 2

** Affects: wvstreams (Ubuntu)
 Importance: High
 Status: Confirmed

** Affects: wvstreams (Ubuntu Maverick)
 Importance: High
 Status: Confirmed

** Also affects: wvstreams (Ubuntu Maverick)
   Importance: Undecided
   Status: New

** Changed in: wvstreams (Ubuntu Maverick)
   Importance: Undecided = High

** Changed in: wvstreams (Ubuntu Maverick)
   Status: New = Confirmed

** Changed in: wvstreams (Ubuntu Maverick)
Milestone: None = maverick-alpha-3

-- 
wvstreams fails to build from source in maverick (glibc-2.12)
https://bugs.launchpad.net/bugs/602134
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 491926] Re: screensaver doesn't start immediately after being enabled

2010-07-06 Thread Robert Lange
See Bug #241206 comments 16 and 17 for my explanation of this bug, and
patches.

** Also affects: gnome-session
   Importance: Undecided
   Status: New

** Changed in: gnome-session
 Assignee: (unassigned) = Robert Lange (rcl24)

** Changed in: gnome-session
   Status: New = In Progress

-- 
screensaver doesn't start immediately after being enabled
https://bugs.launchpad.net/bugs/491926
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 363635] Re: Screensaver does not work in 9.04

2010-07-06 Thread Robert Lange
See Bug #241206 comments 16 and 17 for my explanation of this bug, and
patches.

** Also affects: gnome-screensaver
   Importance: Undecided
   Status: New

** Project changed: gnome-screensaver = gnome-session

** Changed in: gnome-session
   Status: New = In Progress

** Changed in: gnome-screensaver (Ubuntu)
   Status: New = In Progress

** Summary changed:

- Screensaver does not work in 9.04
+ Gnome Screensaver does not activate when time limit is reached

** Changed in: gnome-session
 Assignee: (unassigned) = Robert Lange (rcl24)

-- 
Gnome Screensaver does not activate when time limit is reached
https://bugs.launchpad.net/bugs/363635
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 532056] Re: Inappropriately appears in Ubuntu Software Center's Graphics 3D section

2010-07-06 Thread Bug Watch Updater
** Changed in: bzflag (Debian)
   Status: Unknown = New

-- 
Inappropriately appears in Ubuntu Software Center's Graphics  3D section
https://bugs.launchpad.net/bugs/532056
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 491926] Re: screensaver doesn't start immediately after being enabled

2010-07-06 Thread Robert Lange
** Changed in: gnome-screensaver (Ubuntu)
   Status: Triaged = In Progress

-- 
screensaver doesn't start immediately after being enabled
https://bugs.launchpad.net/bugs/491926
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 41738] Re: confusing error message when connection via ssh fails, because host key verification failed

2010-07-06 Thread Bug Watch Updater
** Changed in: nautilus
   Status: Confirmed = Incomplete

-- 
confusing error message when connection via ssh fails, because host key 
verification failed 
https://bugs.launchpad.net/bugs/41738
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

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


[Bug 397742] Re: doesn't use the sideport memory on Gigabyte GA-MA790GP-UD4H

2010-07-06 Thread madbiologist
This might be fixed upstream in kernel 2.6.35-rc4.  From the changelog:

commit 0888e883ea5ff8fac27e813256d6c1eaede5a234
Author: Alex Deucher
Date:   Sat Jun 12 11:50:13 2010 -0400

drm/radeon/kms: fix bandwidth calculation when sideport is present

Fixes fdo bug 27529:
https://bugs.freedesktop.org/show_bug.cgi?id=27529

Reported-by: steckdenis
Signed-off-by: Alex Deucher
Signed-off-by: Dave Airlie

** Bug watch added: freedesktop.org Bugzilla #27529
   http://bugs.freedesktop.org/show_bug.cgi?id=27529

-- 
doesn't use the sideport memory on Gigabyte GA-MA790GP-UD4H
https://bugs.launchpad.net/bugs/397742
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 598915] Re: can't close programs when inline search box is open

2010-07-06 Thread Robert Roth
Forwarded upstream : https://bugzilla.gnome.org/show_bug.cgi?id=623649.

** Bug watch added: GNOME Bug Tracker #623649
   https://bugzilla.gnome.org/show_bug.cgi?id=623649

-- 
can't close programs when inline search box is open
https://bugs.launchpad.net/bugs/598915
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 465525] Re: invest-applet crashed with AttributeError in on_retriever_completed()

2010-07-06 Thread Martin Pool
This happened to me in maverick.

It happens every time I restart the applet.

The avg_simple_quotes_change attribute is only created on this object on
a particular code path through populate() so it should be easy to fix
this by just tracing through the logic path that causes it to be unset.

** Changed in: gnome-applets (Ubuntu)
   Status: Invalid = Confirmed

-- 
invest-applet crashed with AttributeError in on_retriever_completed()
https://bugs.launchpad.net/bugs/465525
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 602136] Re: software-center crashed with GError in __init__()

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

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 #601987, 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
   http://launchpadlibrarian.net/51445932/Dependencies.txt

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

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

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

** Visibility changed to: Public

-- 
software-center crashed with GError in __init__()
https://bugs.launchpad.net/bugs/602136
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 599169] Re: evince cbz support is broken on evince-2.30.3-0ubuntu1

2010-07-06 Thread Juanjo Marín
#15
Sokak,

For enabling cbt files, add

 /bin/tar ixr,

 /etc/apparmor.d/abstractions/evince

and

sudo apparmor_parser -r -W -T /etc/apparmor.d/usr.bin.evince

These bugs are because Ubuntu doesn't allow evince to execute 3rd apps
for security reasons, only the ones explicitally authorized by apparmor.
However, Ubuntu misses some apps like zipnote and tar.

Some more info about apparmor in https://wiki.ubuntu.com/AppArmor

-- 
evince cbz support is broken on evince-2.30.3-0ubuntu1
https://bugs.launchpad.net/bugs/599169
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 598389] Re: Cross build needs rpath with xdeb

2010-07-06 Thread Steve Langasek
** Changed in: binutils-linaro
 Assignee: (unassigned) = Marcin Juszkiewicz (hrw)

-- 
Cross build needs rpath with xdeb
https://bugs.launchpad.net/bugs/598389
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 255768] Re: evolution asking for a password, even though it should be remembered

2010-07-06 Thread Lorenzo
I describe a workaround which seems to have fixed the problem for me here: 
http://ubuntuforums.org/showpost.php?p=9549461postcount=2
Yet I'm not sure if it would work for other situations.
Lorenzo

-- 
evolution asking for a password, even though it should be remembered
https://bugs.launchpad.net/bugs/255768
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 602139] [NEW] wireless peap mschapv2 doesn't connect, or very slow connection that dies after a minute

2010-07-06 Thread iddo
Public bug reported:

Binary package hint: network-manager

in ubuntu maverick alpha2, networkmanager wireless works fine with
standard wireless router at home, but fails with PEAP MSChapV2 wireless
network... sometime it works slowly for one minute and then dies, and
sometimes it doesn't work at all.

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: network-manager 0.8-0ubuntu3
ProcVersionSignature: Ubuntu 2.6.35-6.9-generic 2.6.35-rc3
Uname: Linux 2.6.35-6-generic i686
Architecture: i386
CRDA: Error: [Errno 2] No such file or directory
Date: Tue Jul  6 09:31:14 2010
IfupdownConfig:
 auto lo
 iface lo inet loopback
InstallationMedia: Ubuntu-Netbook 10.10 Maverick Meerkat - Alpha i386 
(20100630.1)
IpRoute:
 132.68.47.0/25 dev wlan0  proto kernel  scope link  src 132.68.47.5  metric 2 
 169.254.0.0/16 dev wlan0  scope link  metric 1000 
 default via 132.68.47.1 dev wlan0  proto static
Keyfiles: Error: [Errno 2] No such file or directory
ProcEnviron:
 LANG=en_US.utf8
 SHELL=/bin/bash
SourcePackage: network-manager

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


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

-- 
wireless peap mschapv2 doesn't connect, or very slow connection that dies after 
a minute
https://bugs.launchpad.net/bugs/602139
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 602139] Re: wireless peap mschapv2 doesn't connect, or very slow connection that dies after a minute

2010-07-06 Thread iddo

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

** Attachment added: Gconf.txt
   http://launchpadlibrarian.net/51446037/Gconf.txt

** Attachment added: IpAddr.txt
   http://launchpadlibrarian.net/51446038/IpAddr.txt

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

** Attachment added: PciNetwork.txt
   http://launchpadlibrarian.net/51446040/PciNetwork.txt

** Attachment added: RfKill.txt
   http://launchpadlibrarian.net/51446041/RfKill.txt

** Attachment added: WifiSyslog.txt
   http://launchpadlibrarian.net/51446042/WifiSyslog.txt

** Attachment added: nm-system-settings.conf.txt
   http://launchpadlibrarian.net/51446043/nm-system-settings.conf.txt

-- 
wireless peap mschapv2 doesn't connect, or very slow connection that dies after 
a minute
https://bugs.launchpad.net/bugs/602139
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 529242] Re: chromium doesn't recognize icedtea6-plugin

2010-07-06 Thread Fabien Tassin
as this path is a moving target, it's not something i can add in the
chromium wrapper. we need a better solution.

-- 
chromium doesn't recognize icedtea6-plugin
https://bugs.launchpad.net/bugs/529242
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 602141] [NEW] rekonq crashet on ubuntuforums

2010-07-06 Thread nafterburner
Public bug reported:

Binary package hint: rekonq

I tried to open link from google search to ubuntu forums

ProblemType: Bug
DistroRelease: Ubuntu 10.04
Package: rekonq 0.4.0-0ubuntu1
ProcVersionSignature: Ubuntu 2.6.32-23.37-generic 2.6.32.15+drm33.5
Uname: Linux 2.6.32-23-generic i686
Architecture: i386
Date: Tue Jul  6 08:42:22 2010
EcryptfsInUse: Yes
InstallationMedia: Kubuntu 10.04 LTS Lucid Lynx - Release i386 (20100427)
ProcEnviron:
 LANGUAGE=
 PATH=(custom, user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: rekonq

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


** Tags: apport-bug i386 lucid

-- 
rekonq crashet on ubuntuforums
https://bugs.launchpad.net/bugs/602141
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 602141] Re: rekonq crashet on ubuntuforums

2010-07-06 Thread nafterburner

** Attachment added: attached KDE crash report with debugging symbols 
installed
   http://launchpadlibrarian.net/51446395/rekonq-20100706.kcrash

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

-- 
rekonq crashet on ubuntuforums
https://bugs.launchpad.net/bugs/602141
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 587915] Re: File missing: /usr/lib/pppd/2.4.x/nm-pppd-plugin.so

2010-07-06 Thread Svetoslav Stefanov
I can confirm this too. The above mentioned manual copy of the missing
files fixes the problem.

-- 
File missing: /usr/lib/pppd/2.4.x/nm-pppd-plugin.so
https://bugs.launchpad.net/bugs/587915
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 219393] Re: HPA ( Host Protected Area ) interferes with dmraid

2010-07-06 Thread NeCod
Thanks EagleDM, i will try it.

Maybe I can avoid reinstalling everything, if i follow this post
http://forums.extremeoverclocking.com/showpost.php?p=3329132postcount=6

-- 
HPA ( Host Protected Area ) interferes with dmraid
https://bugs.launchpad.net/bugs/219393
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 602142] [NEW] Update to latest stable version (5.0.375.99)

2010-07-06 Thread Fabien Tassin
Public bug reported:

Binary package hint: chromium-browser

Upstream released a new security update of chromium: 5.0.375.99
I've prepared the package for maverick and it's already in the beta  stable 
PPAs for all supported dists.
Package for lucid-security in progress.

** Affects: chromium-browser (Ubuntu)
 Importance: Undecided
 Status: New

-- 
Update to latest stable version (5.0.375.99)
https://bugs.launchpad.net/bugs/602142
You received this bug notification because you are a member of 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 1] Microsoft has a majority market share

2010-07-06 Thread Martin Wildam
On Mon, Jul 5, 2010 at 18:39, »John« jns@gmail.com wrote:
 I agree that having a standardised driver framework would probably not
 be a bad thing, but there's another catch - DRIVERS FOR FREE OPERATING
 SYSTEMS WOULD STILL NEED TO BE FREE!

Yes, indeed.


 The optimal solution would be if compiled kernel modules could be loaded by 
 any kernel that implements the standard, making them as portable as elf 
 executables.
 Absolutely no. There's a bunch of damn good reasons why the majority of
 the free software developers strongly oppose blobs

Although I can also the advantage of such a binary kernel plugin for
the hardware vendors (no need for giving out the source code of their
drivers which might be part of the huge effort they did when creating
the product), I prefer the law of freedom because of the possible
threats. If the code is open source, it can be investigated and
checked - at least by those who care most about the OS sources.


 The most optimal solution would be if hardware manufacturers finally realised 
 how to properly cooperate with free software community and either started 
 writing BSD/GPL/MIT/whatever code themselves and submitting it for inclusion 
 in the next release of the component they wish to support or at least 
 providing complete NDA-free documentation and paying some of that component's 
 developers to write that code for them (because documentation availability 
 alone unfortunately doesn't guarantee someone's really gonna bother).

Yes, they should.

As far as I noticed, Microsoft did not bother in most cases of the
hardware drivers. Manufacturers of hardware always needed to do that
on their own. For Linux there is a whole community that would like to
help building the driver together with the manufacturer but:
Supporting Linux anyway needs to deal with an additional OS even if
they get helped. For many this is just a matter of cost and so they
don't care about Linux.

What everybody can do: Just don't buy hardware that is not Linux
compatible - even if you are not planning yet to run Linux on it. It
might happen sooner as you think.

Example: I had 2 cases where people were buying new laptops with
Windows 7 on it and apart from being overwhelmed with the changes in 7
(they used XP before) they missed their very old MS Office 97
Professional (they still used that because they never needed more. But
the MSO 97 does not run smoothly any more (and BTW already does a lot
of wrong stuff on installation by mixing up folders). They didn't
consider buying a new MS Office license in their budget. Finally I
wiped their machines (another 2 Windows machines in the Microsoft
statistic that are ghosts) and put Ubuntu on it. However, I struggled
a little with the shitty Hardware - because they did not care about it
(assuming everything is fine as Windows 7 runs preinstalled - even if
on my net the Windows 7 - maybe only on that hardware - wasn't either
able to connect to my WPA2 only WLAN). So they planned to use Windows
- for about 2 weeks or so. They should have considered hardware
compatibility...
-- 
Martin Wildam

-- 
Microsoft has a majority market share
https://bugs.launchpad.net/bugs/1
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

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

[Bug 602144] [NEW] plugin-container crashed with SIGSEGV in start_thread()

2010-07-06 Thread sam-c
Public bug reported:

Binary package hint: firefox

I was browsing and twitter was going to open a related URL when firefox
on Maverick beta  crashed

ProblemType: Crash
DistroRelease: Ubuntu 10.10
Package: firefox 3.6.6+nobinonly-0ubuntu1
ProcVersionSignature: Ubuntu 2.6.35-6.9-generic 2.6.35-rc3
Uname: Linux 2.6.35-6-generic i686
Architecture: i386
Date: Tue Jul  6 09:51:19 2010
Disassembly: = 0x41b3f73:  Cannot access memory at address 0x41b3f73
ExecutablePath: /usr/lib/firefox-3.6.6/plugin-container
FirefoxPackages:
 firefox 3.6.6+nobinonly-0ubuntu1
 firefox-gnome-support 3.6.6+nobinonly-0ubuntu1
 firefox-branding 3.6.6+nobinonly-0ubuntu1
 abroswer N/A
 abrowser-branding N/A
InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release i386 (20100429)
ProcCmdline: /usr/lib/firefox-3.6.6/plugin-container 
/usr/lib/flashplugin-installer/libflashplayer.so 10936 plugin
ProcEnviron:
 PATH=(custom, no user)
 LANG=en_US.utf8
 SHELL=/bin/bash
SegvAnalysis:
 Segfault happened at: 0x41b3f73:   Cannot access memory at address 
0x41b3f73
 PC (0x041b3f73) not located in a known VMA region (needed executable region)!
 Stack memory exhausted (SP below stack segment)
SegvReason: executing unknown VMA
Signal: 11
SourcePackage: firefox
StacktraceTop:
 ?? ()
 ?? ()
 start_thread () from /lib/libpthread.so.0
 clone () from /lib/libc.so.6
Title: plugin-container crashed with SIGSEGV in start_thread()
UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare

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


** Tags: apport-crash i386 maverick

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

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


[Bug 602144] Re: plugin-container crashed with SIGSEGV in start_thread()

2010-07-06 Thread sam-c

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

** Attachment added: ExtensionSummary.txt
   http://launchpadlibrarian.net/51446463/ExtensionSummary.txt

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

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

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

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

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

** Attachment added: profile_default_pluginreg.dat.txt
   http://launchpadlibrarian.net/51446469/profile_default_pluginreg.dat.txt

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

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

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


[Bug 601883] Re: update-manager fails to download release notes with apt-cacher-ng

2010-07-06 Thread Michael Vogt
I made ReleaseAnnoucement have the \\? as well:
ReleaseAnnouncement|(\\?.*)

and uploaded to maverick. many thanks. We should probably SRU this too
once the fix in maverick is confirmed to work.

** Changed in: apt-cacher-ng (Ubuntu)
   Status: Invalid = In Progress

** Changed in: update-manager (Ubuntu)
   Status: In Progress = Invalid

** Also affects: apt-cacher-ng (Ubuntu Lucid)
   Importance: Undecided
   Status: New

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

** Changed in: apt-cacher-ng (Ubuntu)
   Status: In Progress = Fix Committed

** Changed in: apt-cacher-ng (Ubuntu Lucid)
   Importance: Undecided = Medium

** Changed in: apt-cacher-ng (Ubuntu Lucid)
   Status: New = Triaged

-- 
update-manager fails to download release notes with apt-cacher-ng
https://bugs.launchpad.net/bugs/601883
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 601883] Re: update-manager fails to download release notes with apt-cacher-ng

2010-07-06 Thread Launchpad Bug Tracker
This bug was fixed in the package apt-cacher-ng - 0.4.7-1ubuntu2

---
apt-cacher-ng (0.4.7-1ubuntu2) maverick; urgency=low

  * convert package to 3.0 (quilt) format
  * pull existing stat::stat patch over to quilt patch
  * update-manager -d requires access to the DevelReleaseAnnouncement
accessing it with a ?lang=foo suffix.  Add this to the persistant
files list.  LP: #601883.
 -- Andy Whitcroft a...@canonical.com   Mon, 05 Jul 2010 13:30:50 +0100

** Changed in: apt-cacher-ng (Ubuntu)
   Status: Fix Committed = Fix Released

-- 
update-manager fails to download release notes with apt-cacher-ng
https://bugs.launchpad.net/bugs/601883
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 602148] [NEW] Configures FV TouchCam N1 as a keyboard and ignores faceVsion FV Audio (mic)

2010-07-06 Thread Volkodav
Public bug reported:

Binary package hint: xorg

The webcam will crash so video gets a new /dev/video1 and it also crashes the 
xkb applet in xfce . Since the mic is ignored : config/udev: Adding input 
device faceVsion FV Audio (/dev/input/event5)
(II) No input driver/identifier specified (ignoring)
(II) config/udev: removing device FV TouchCam N1
(II) FV TouchCam N1: Close

it constantly defaults back to the motherboard's input. Manual switching
in Sound preferences helps for a few minutes and then it goes back to
default. Crashes happen during skype sessions and without them.

lsb_release -rd
Description:Ubuntu 10.04 LTS
Release:10.04
There were no such behavior with Logitech Vision pro

ProblemType: Bug
DistroRelease: Ubuntu 10.04
Package: xorg 1:7.5+5ubuntu1
Uname: Linux 2.6.35-020635rc1-generic x86_64
NonfreeKernelModules: nvidia
Architecture: amd64
Date: Tue Jul  6 02:51:12 2010
ProcEnviron:
 LANG=en_US.utf8
 SHELL=/bin/bash
SourcePackage: xorg
system:
 distro: Ubuntu
 codename:   lucid
 architecture:   x86_64
 kernel: 2.6.35-020635rc1-generic

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


** Tags: amd64 apport-bug lucid

-- 
Configures FV TouchCam N1 as a keyboard and ignores faceVsion FV Audio (mic)
https://bugs.launchpad.net/bugs/602148
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 602148] Re: Configures FV TouchCam N1 as a keyboard and ignores faceVsion FV Audio (mic)

2010-07-06 Thread Volkodav

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

** Attachment added: RelatedPackageVersions.txt
   http://launchpadlibrarian.net/51446455/RelatedPackageVersions.txt

-- 
Configures FV TouchCam N1 as a keyboard and ignores faceVsion FV Audio (mic)
https://bugs.launchpad.net/bugs/602148
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 602147] [NEW] adobe flashed plug in has crashed

2010-07-06 Thread Philip Nguyen
Public bug reported:

Binary package hint: firefox-3.0

After update to firefox version 3.6.6; adobe flashed plug in has crashed every 
time firefox was launched.   Please help to fix this issue?
Thank you

ProblemType: Bug
Architecture: i386
Date: Mon Jul  5 23:57:34 2010
DistroRelease: Ubuntu 8.04
NonfreeKernelModules: nvidia ath_hal
Package: firefox 3.6.6+nobinonly-0ubuntu0.8.04.2
PackageArchitecture: i386
ProcEnviron:
 
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/X11:/usr/games
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: firefox-3.0
Uname: Linux 2.6.24-28-generic i686

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


** Tags: apport-bug

-- 
adobe flashed plug in has crashed
https://bugs.launchpad.net/bugs/602147
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 602147] Re: adobe flashed plug in has crashed

2010-07-06 Thread Philip Nguyen

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

-- 
adobe flashed plug in has crashed
https://bugs.launchpad.net/bugs/602147
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 602145] [NEW] glom sqlite support

2010-07-06 Thread Savvas Radevic
Public bug reported:

Binary package hint: glom

As far as I know, glom supports sqlite: 
http://www.arbur.net/serendipity/archives/43-SQLite-support-in-Glom.html
It would be a great addition if it's built to include such support and lift the 
postgresql dependency -- or support both options if possible. :)

ProblemType: Bug
DistroRelease: Ubuntu 10.04
Package: glom 1.13.2-0ubuntu1
ProcVersionSignature: Ubuntu 2.6.32-23.37-generic 2.6.32.15+drm33.5
Uname: Linux 2.6.32-23-generic x86_64
NonfreeKernelModules: nvidia
Architecture: amd64
Date: Tue Jul  6 08:56:11 2010
EcryptfsInUse: Yes
InstallationMedia: Ubuntu 10.04 Lucid Lynx - Alpha amd64 (20100329)
ProcEnviron:
 LANG=en_GB.utf8
 SHELL=/bin/bash
SourcePackage: glom

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


** Tags: amd64 apport-bug lucid

-- 
glom sqlite support
https://bugs.launchpad.net/bugs/602145
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 602145] Re: glom sqlite support

2010-07-06 Thread Savvas Radevic

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

-- 
glom sqlite support
https://bugs.launchpad.net/bugs/602145
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 602139] Re: wireless peap mschapv2 doesn't connect, or very slow connection that dies after a minute

2010-07-06 Thread iddo
i tried to stop NetworkManager and kill wpa_supplicant, and the run
wpa_supplicant myself with config file suitable for my MSChapV2 network,
and then run dhclient, and my wireless works great now (so i guess the
problem isn't with wpa_supplicant itself).

-- 
wireless peap mschapv2 doesn't connect, or very slow connection that dies after 
a minute
https://bugs.launchpad.net/bugs/602139
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 601883] Re: update-manager fails to download release notes with apt-cacher-ng

2010-07-06 Thread Michael Vogt
** Description changed:

  Binary package hint: update-manager
+ 
+ TEST CASE:
+ 1. use lucid with the latest update (but with the normal apt-cacher-ng)
+ 2. run apt-cacher-ng on this machine
+ 3. point proxy to apt-cacher-ng and run update-manager -d
+ 4. verify that no release update appears
+ 
+ 5. install the new apt-cacher-ng from lucid-proposed
+ 6. repeat 2,3 and verify that it works now
  
  Now that update-manager is correctly honouring the apt Proxy
  configuration update-manager -d upgrades to the next development release
  no longer work.  The download of the DevelReleaseAnnouncement fails.
  This seems to occur because the request has a ?lang=foo suffix.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 10.04
  Package: update-manager 1:0.134.10
  Uname: Linux 2.6.32-02063211-generic i686
  Architecture: i386
  Date: Mon Jul  5 13:22:26 2010
  PackageArchitecture: all
  ProcEnviron:
-  LANG=en_GB.UTF-8
-  SHELL=/bin/bash
+  LANG=en_GB.UTF-8
+  SHELL=/bin/bash
  SourcePackage: update-manager

-- 
update-manager fails to download release notes with apt-cacher-ng
https://bugs.launchpad.net/bugs/601883
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 601883] Re: update-manager fails to download release notes with apt-cacher-ng

2010-07-06 Thread Michael Vogt
** Changed in: update-manager (Ubuntu Lucid)
   Status: New = Invalid

-- 
update-manager fails to download release notes with apt-cacher-ng
https://bugs.launchpad.net/bugs/601883
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 599169] Re: evince cbz support is broken on evince-2.30.3-0ubuntu1

2010-07-06 Thread Juanjo Marín
#15

about cb7 files, right now Ubuntu only opens these files with 7zr (it
comes with the 7zip package). In order to open with the 7zip-full
package, you need to add

  /usr/bin/7z ixr,
  /usr/lib/p7zip/7z ixr,
  /usr/bin/7za ixr,
  /usr/lib/p7zip/7za ixr,

in /etc/apparmor.d/abstractions/evince (well, only 7za is enough) as in
the previous comments.

By no, I don't know why thumbnaling cb7 files fails, I will take a look
when I have more time

-- 
evince cbz support is broken on evince-2.30.3-0ubuntu1
https://bugs.launchpad.net/bugs/599169
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 597341] Re: When recovering from hibernation, monitor turns off. I have to then turn back off and on one more time and it reboots as normal, with monitor on.

2010-07-06 Thread Mitch Towner
** Project changed: ubuntuone-client = null

-- 
When recovering from hibernation, monitor turns off. I have to then turn back 
off and on one more time and it reboots as normal, with monitor on.
https://bugs.launchpad.net/bugs/597341
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 446349] Re: [Mobility Radeon HD 4330] KWIN/Compiz RAM usage

2010-07-06 Thread madbiologist
This might be fixed upstream in kernel 2.6.35-rc4.  From the changelog:

commit 0888e883ea5ff8fac27e813256d6c1eaede5a234
Author: Alex Deucher
Date:   Sat Jun 12 11:50:13 2010 -0400

drm/radeon/kms: fix bandwidth calculation when sideport is present

Fixes fdo bug 27529:
https://bugs.freedesktop.org/show_bug.cgi?id=27529

Reported-by: steckdenis
Signed-off-by: Alex Deucher
Signed-off-by: Dave Airlie

** Bug watch added: freedesktop.org Bugzilla #27529
   http://bugs.freedesktop.org/show_bug.cgi?id=27529

-- 
[Mobility Radeon HD 4330] KWIN/Compiz RAM usage
https://bugs.launchpad.net/bugs/446349
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 601883] Re: update-manager fails to download release notes with apt-cacher-ng

2010-07-06 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/apt-cacher-ng

-- 
update-manager fails to download release notes with apt-cacher-ng
https://bugs.launchpad.net/bugs/601883
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 497790] Re: squid should provide an apparmor profile

2010-07-06 Thread PatRiehecky
Per the suggestion from Mathias, I am working on a source branch and
PPA.  I have a round 1 of the code and associated packages that I need
to do more testing on before proceeding.  Subscribers that care can find
the PPA at https://launchpad.net/~jcpunk/+archive/squid-fix-497790

I should get some good testing in this week.  When I've tested more I
will follow through with the merge proposal.

-- 
squid should provide an apparmor profile
https://bugs.launchpad.net/bugs/497790
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 338217] Re: scim-bridge crashed with SIGSEGV in scim::Module::unload() - fixed by rm -Rf ~/.scim/

2010-07-06 Thread Rolf Leggewie
Guys, do as you please.  You're not doing Ubuntu a favor by withholding
this documentation, that's for sure.  Having it documented is better
than the current situation.   Who knows, it's quite well possible this
problem was introduced by one of Ubuntu's ill-guided patches in the
past.  FWIW, I don't get this kind of report from Debian users.

As Debian maintainer of the scim package and part of the upstream team,
you may as well stop second-guessing my judgment about upstream's
activities.  We're all just there to keep the project limping along, I
don't see any real development work for years.

If you have a better solution, we'd be all ears, but don't expect
upstream to do original dev work for you.  By doing so and withholding
an incremental improvement from your user base you are doing them a
disservice.

-- 
scim-bridge crashed with SIGSEGV in scim::Module::unload() - fixed by rm -Rf 
~/.scim/
https://bugs.launchpad.net/bugs/338217
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 329106] Re: upgrading to Jaunty renamed eth0 to eth1

2010-07-06 Thread David Stratton
FWIW this behaviour is still present in Ubuntu 10.04.

I am using Ubuntu in Virtual Box where it is all too easy to change MAC
addresses.

The certain fix, with a single card, is to replace the entire contents
of /etc/udev/rules.d/70-persistent-net.rules (in effect the history of
all cards seen) with the single, catch all rule:

 SUBSYSTEM==net, DRIVERS==?*, NAME=eth0

The single interface, regardless of type or MAC address is then named
eth0

I tried multiple interfaces with similar lines (NAME= eth1, eth2 etc)
but the order in which rules are processed (or interfaces detected?)
does not appear predictable. It was quite common to see interfaces
named, for example, eth1_renamed

-- 
upgrading to Jaunty renamed eth0 to eth1
https://bugs.launchpad.net/bugs/329106
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 602152] [NEW] Ubuntu Software Center fails and swallows error message

2010-07-06 Thread Ben McCann
Public bug reported:

Binary package hint: software-center

I ran the following command as suggested on 
http://www.playonlinux.com/en/download.html:
sudo wget http://deb.playonlinux.com/playonlinux_lucid.list -O 
/etc/apt/sources.list.d/playonlinux.list

This created a file which was not readable:
$ ls -l /etc/apt/sources.list.d/playonlinux.list
-rw-r- 1 root root  43 May  1 09:42 playonlinux.list

As a result the Ubuntu Software Center was entirely broken and it told
me I had 0 packages installed.  It should be able to deal with this or
give me a reasonable error message.  This caused me needless amounts of
frustration.

When I finally launched synpatic from the command line it was clear what was 
going on:
E: Opening /etc/apt/sources.list.d/playonlinux.list - ifstream::ifstream (13: 
Permission denied)
E: The list of sources could not be read.
Go to the repository dialog to correct the problem.
E: _cache-open() failed, please report.

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

-- 
Ubuntu Software Center fails and swallows error message
https://bugs.launchpad.net/bugs/602152
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 602151] [NEW] package libpackagekit-glib2-12 0.5.7-0ubuntu2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2010-07-06 Thread John Ainsworth
Public bug reported:

Binary package hint: packagekit

I really don't know what to add!

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: libpackagekit-glib2-12 0.5.7-0ubuntu2
ProcVersionSignature: Ubuntu 2.6.32-23.37-generic 2.6.32.15+drm33.5
Uname: Linux 2.6.32-23-generic i686
Architecture: i386
Date: Tue Jul  6 17:08:50 2010
ErrorMessage: subprocess installed post-installation script returned error exit 
status 2
InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release i386 (20100429)
SourcePackage: packagekit
Title: package libpackagekit-glib2-12 0.5.7-0ubuntu2 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 2

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


** Tags: apport-package i386 lucid

-- 
package libpackagekit-glib2-12 0.5.7-0ubuntu2 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 2
https://bugs.launchpad.net/bugs/602151
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 602151] Re: package libpackagekit-glib2-12 0.5.7-0ubuntu2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2010-07-06 Thread John Ainsworth

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

** Attachment added: Df.txt
   http://launchpadlibrarian.net/51447540/Df.txt

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

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

-- 
package libpackagekit-glib2-12 0.5.7-0ubuntu2 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 2
https://bugs.launchpad.net/bugs/602151
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 601859] Re: gparted with dmraid causes incorrect NTFS formatting via mkfs.ntfs

2010-07-06 Thread Rich
Hi,

I dug out an old SiL (3112?)PCI RAID adapter last night, hooked both
drives up as before, created a new raid set - booted into Ubuntu 10.04
live

I used fdisk and mkfs.ntfs manually and got the exact same problem as on
the Intel controller, the NTFS filesystem is being created oddly and
grub4dos etc doesn't recognise it as NTFS. Then booting into a Windows
PE disk and using a formatting program rendered a 'normal' NTFS format.

-- 
gparted with dmraid causes incorrect NTFS formatting via mkfs.ntfs
https://bugs.launchpad.net/bugs/601859
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 599785] Re: The Gimp's description is too confusing

2010-07-06 Thread Andrew
Maybe use some stuff from the GIMP website:
http://www.gimp.org/about/introduction.htm ie.

GIMP lets you draw, paint, edit images, and much more! GIMP includes the
functionality and plug-ins of other famous image editing and processing
programs.

It has many capabilities. It can be used as a simple paint program, an
expert quality photo retouching program, an online batch processing
system, a mass production image renderer, an image format converter. Its
inbuilt scripting interface mean even the most complex of operations are
possible.

-- 
The Gimp's description is too confusing
https://bugs.launchpad.net/bugs/599785
You received this bug notification because you are a member of 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   >