[Bug 787091] Re: Unable to use USB device in KVM quest

2011-05-26 Thread Royston Carter
qemu.conf added as requested

** Attachment added: qemu.conf
   
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/787091/+attachment/214/+files/qemu.conf

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in Ubuntu.
https://bugs.launchpad.net/bugs/787091

Title:
  Unable to use USB device in KVM quest

-- 
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 787091] Re: Unable to use USB device in KVM quest

2011-05-26 Thread Royston Carter
VM.log added as requested

** Attachment added: WindowsXP.log
   
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/787091/+attachment/2143334/+files/WindowsXP.log

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in Ubuntu.
https://bugs.launchpad.net/bugs/787091

Title:
  Unable to use USB device in KVM quest

-- 
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 305901] Re: Intrepid gcc -O2 breaks string appending with sprintf(), due to fortify source patch

2011-05-26 Thread Bug Watch Updater
Launchpad has imported 9 comments from the remote bug at
http://sourceware.org/bugzilla/show_bug.cgi?id=7075.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.


On 2008-12-07T17:42:25+00:00 Kees Cook wrote:

Anders Kaseorg noticed that the use of _FORTIFY_SOURCE breaks a specific use of
sprintf (see attached):

$ gcc -O0 -o foo foo.c  ./foo
not fail
$ gcc -O2 -o foo foo.c  ./foo
not fail
$ gcc -O2 -D_FORTIFY_SOURCE=2 -o foo foo.c  ./foo
fail

The original report was filed in Ubuntu, where -D_FORTIFY_SOURCE=2 is enabled by
default: https://bugs.launchpad.net/ubuntu/+source/glibc/+bug/305901

C99 states:
The sprintf function is equivalent to fprintf, except that the output is written
into an array (specified by the argument s) rather than to a stream. A null
character is written at the end of the characters written; it is not counted as
part of the returned value. If copying takes place between objects that overlap,
the behavior is undefined.

The man page does not mention this limitation, and prior to the use of
__sprintf_chk, this style of call worked as expected.  As such, a large volume
of source code uses this style of call:
http://web.mit.edu/andersk/Public/sprintf-results

It seems that it would make sense to fix __sprintf_chk, or very loudly mention
the C99-described overlap-is-undefined behavior in sprintf documentation.

Reply at: https://bugs.launchpad.net/glibc/+bug/305901/comments/4


On 2008-12-07T17:42:53+00:00 Kees Cook wrote:

Created attachment 3095
test case

Reply at: https://bugs.launchpad.net/glibc/+bug/305901/comments/5


On 2008-12-07T17:49:37+00:00 Andreas Schwab wrote:

sprintf(buf, %sfoo, buf) is UNDEFINED.

Reply at: https://bugs.launchpad.net/glibc/+bug/305901/comments/6


On 2008-12-07T18:33:34+00:00 Kees Cook wrote:

Thanks for the clarification.  However, I think it is still a bug that the
limitation is not mentioned in the manpage.

Reply at: https://bugs.launchpad.net/glibc/+bug/305901/comments/7


On 2008-12-07T19:05:38+00:00 Andreas Schwab wrote:

Then contact whoever wrote it.

Reply at: https://bugs.launchpad.net/glibc/+bug/305901/comments/8


On 2008-12-07T22:56:34+00:00 Jakub Jelinek wrote:

man 3p sprintf certainly documents it:
If  copying  takes  place  between objects that overlap as a result of a call
to sprintf() or snprintf(), the results are undefined.

Reply at: https://bugs.launchpad.net/glibc/+bug/305901/comments/18


On 2008-12-07T23:38:40+00:00 Petr Baudis wrote:

I have submitted a patch for linux-manpages:
http://thread.gmane.org/gmane.linux.man/639

Reply at: https://bugs.launchpad.net/glibc/+bug/305901/comments/19


On 2008-12-19T16:57:40+00:00 Michael Kerrisk wrote:

(In reply to comment #6)
 I have submitted a patch for linux-manpages:
 http://thread.gmane.org/gmane.linux.man/639

I've applied the following patch for man-pages-3.16.

--- a/man3/printf.3
+++ b/man3/printf.3
@@ -133,6 +133,17 @@ string that specifies how subsequent arguments (or
arguments accessed via
 the variable-length argument facilities of
 .BR stdarg (3))
 are converted for output.
+
+C99 and POSIX.1-2001 specify that the results are undefined if a call to
+.BR sprintf (),
+.BR snprintf (),
+.BR vsprintf (),
+or
+.BR vsnprintf ()
+would cause to copying to take place between objects that overlap
+(e.g., if the target string array and one of the supplied input arguments
+refer to the same buffer).
+See NOTES.
 .SS Return value
 Upon successful return, these functions return the number of characters
 printed (not including the
@@ -851,6 +862,26 @@ and conversion characters \fBa\fP and \fBA\fP.
 glibc 2.2 adds the conversion character \fBF\fP with C99 semantics,
 and the flag character \fBI\fP.
 .SH NOTES
+Some programs imprudently rely on code such as the following
+
+sprintf(buf, %s some further text, buf);
+
+to append text to
+.IR buf .
+However, the standards explicitly note that the results are undefined
+if source and destination buffers overlap when calling
+.BR sprintf (),
+.BR snprintf (),
+.BR vsprintf (),
+and
+.BR vsnprintf ().
+.\ http://sourceware.org/bugzilla/show_bug.cgi?id=7075
+Depending on the version of
+.BR gcc (1)
+used, and the compiler options employed, calls such as the above will
+.B not
+produce the expected 

[Bug 357067] Re: javascript parsing error

2011-05-26 Thread Matthias Klose
** Package changed: python-defaults (Ubuntu) = python2.6 (Ubuntu)

** Also affects: python2.7 (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: python2.7 (Ubuntu)
   Importance: Undecided = Low

** Changed in: python2.7 (Ubuntu)
   Status: New = Triaged

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

Title:
  javascript parsing error

-- 
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 787091] Re: Unable to use USB device in KVM quest

2011-05-26 Thread Royston Carter
Serge,
Have added attachments as requested

Regards
Roy


Roy Carter

- Sent from mobile phone  -

- Reply message -
From: Serge Hallyn 787...@bugs.launchpad.net
Date: Thu, May 26, 2011 01:10
Subject: [Bug 787091] Re: Unable to use USB device in KVM quest
To: rpcar...@blueyonder.co.uk

Thanks for taking the time to submit this bug and helping to make Ubuntu
better.

dmesg has no more apparmor errors, so it is not likely the cause of the
permission denial.  But libvirt is supposed to change the ownership of
the usb device so that libvirt can access it.  So I'm not sure what is
causing this.

Could you append your /etc/libvirt/qemu.conf file, and
/var/log/libvirt/qemu/VM.log where VM is the name of the libvirt vm and
the result of 'ls -l /dev/bus/usb/001/004'.

** Changed in: qemu-kvm (Ubuntu)
   Status: New = Incomplete

--
You received this bug notification because you are a direct subscriber
of the bug.
https://bugs.launchpad.net/bugs/787091

Title:
  Unable to use USB device in KVM quest

Status in “qemu-kvm” package in Ubuntu:
  Incomplete

Bug description:
  Binary package hint: qemu-kvm

  Ubuntu 10.04 Server:

  I have been trying for some considerable time to get a Windows XP
  guest to recognise a USB Canon printer. I have searched google
  endlessly and applied a number of changes to apparmor profiles. I am
  still not able to get the guest to recognise that there a USB device
  attached. I was originally getting repeated messages in kern.log as
  below but the apparmor changes did resolve these:

  May 22 08:01:51 vmserver kernel: [424696.858434] type=1503
  audit(1306047711.654:81239):  operation=open pid=19695 parent=1
  profile=libvirt-629433c8-3714-561b-8e91-4a8a9bb65b9f
  requested_mask=r:: denied_mask=r:: fsuid=0 ouid=0
  name=/sys/devices/pci:00/:00:05.0/:02:00.0/usb8/devnum

  I am now left with messages in the VM log file as follows which I
  cannot find a solution for:

  char device redirected to /dev/pts/5
  usb_create: no bus specified, using usb.0 for usb-host
  husb: open device 1.4
  /dev/bus/usb/001/004: Operation not permitted
  husb: open device 1.4
  /dev/bus/usb/001/004: Operation not permitted
  husb: open device 1.4


  This is a fairly basic requirement and hopefully a solution already exists.

  ProblemType: Bug
  DistroRelease: Ubuntu 10.04
  Package: kvm 1:84+dfsg-0ubuntu16+0.12.3+noroms+0ubuntu9.6
  ProcVersionSignature: Ubuntu 2.6.32-31.61-server 2.6.32.32+drm33.14
  Uname: Linux 2.6.32-31-server x86_64
  NonfreeKernelModules: fglrx

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in Ubuntu.
https://bugs.launchpad.net/bugs/787091

Title:
  Unable to use USB device in KVM quest

-- 
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


[Blueprint server-o-seed-review] Server Seed Review

2011-05-26 Thread Dave Walker
Blueprint changed by Dave Walker:

Whiteboard set to:
Work Items:
[] Check that the current seed is still relevant: TODO
[] Add additional packages to a seed if suitable: TODO
[] Reconcile ~ubuntu-server subscribed packages to seed(s): TODO

-- 
Server Seed Review
https://blueprints.launchpad.net/ubuntu/+spec/server-o-seed-review

-- 
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


[Blueprint server-o-seed-review] Server Seed Review

2011-05-26 Thread Chuck Short
Blueprint changed by Chuck Short:

Whiteboard changed:
  Work Items:
  [] Check that the current seed is still relevant: TODO
  [] Add additional packages to a seed if suitable: TODO
  [] Reconcile ~ubuntu-server subscribed packages to seed(s): TODO
+ 
+ == Comments ==
+ 
+ * Come up with a sensible package list for ubuntu-dev-team so members of
+ the ubuntu server team can upload packages to the archive.

-- 
Server Seed Review
https://blueprints.launchpad.net/ubuntu/+spec/server-o-seed-review

-- 
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 708023] Re: exim 4.74 released fixes CVE-2011-0017

2011-05-26 Thread Jamie Strandboge
This was fixed some time ago in http://www.ubuntu.com/usn/usn-1060-1/.

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

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

Title:
  exim 4.74 released fixes CVE-2011-0017

-- 
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


[Blueprint server-o-seed-review] Server Seed Review

2011-05-26 Thread Dave Walker
Blueprint changed by Dave Walker:

Whiteboard changed:
  Work Items:
  [] Check that the current seed is still relevant: TODO
  [] Add additional packages to a seed if suitable: TODO
  [] Reconcile ~ubuntu-server subscribed packages to seed(s): TODO
  
  == Comments ==
  
  * Come up with a sensible package list for ubuntu-dev-team so members of
- the ubuntu server team can upload packages to the archive.
+ the ubuntu server team can upload packages to the archive. -- zul
+ 
+ * The ubuntu-server-dev team should mirror the seeds, but this might be
+ somewhat extensive. -- Daviey

-- 
Server Seed Review
https://blueprints.launchpad.net/ubuntu/+spec/server-o-seed-review

-- 
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 643682] Re: DoS due to PDF parsing issues

2011-05-26 Thread Jamie Strandboge
These were all fixed in http://www.ubuntu.com/usn/usn-945-1/ and
http://www.ubuntu.com/usn/usn-986-2/.


** Changed in: clamav (Ubuntu Jaunty)
   Status: Won't Fix = Fix Released

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

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

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

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

Title:
  DoS due to PDF parsing issues

-- 
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 247598] Re: dnsmasq might be vulnerable to recent DNS spoofing issue

2011-05-26 Thread Jamie Strandboge
Since the package referred to in this bug is in universe or multiverse,
it is community maintained. It is clear that Ubuntu 6.06 is not going to
get an update for this almost 3 year old bug, so I am marking the task
as Won't Fix. Please feel free to reopen if you would like to post a
debdiff to fix the bug. See the following link for more information:
https://wiki.ubuntu.com/SecurityTeam/UpdateProcedures

** Changed in: dnsmasq (Ubuntu Dapper)
   Status: Confirmed = Won't Fix

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

Title:
  dnsmasq might be vulnerable to recent DNS spoofing issue

-- 
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 591769] Re: apparmor denies virt-aa-helper access to ecryptfs files

2011-05-26 Thread Jamie Strandboge
Marking Won't Fix for the Lucid task. The problem is cosmetic and this
bug is not really suitable for an SRU. Please feel free to reopen if you
would like to pursue an SRU by following
https://wiki.ubuntu.com/StableReleaseUpdates.

** Changed in: libvirt (Ubuntu Lucid)
   Status: Triaged = Won't Fix

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

Title:
  apparmor denies virt-aa-helper access to ecryptfs files

-- 
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 406584] Re: CVE 2009-2287: does not validate the page table root in a KVM_SET_SREGS call

2011-05-26 Thread Jamie Strandboge
This was fixed in http://www.ubuntu.com/usn/usn-807-1.

** Changed in: kvm (Ubuntu Hardy)
   Status: In Progress = Fix Released

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

Title:
  CVE 2009-2287: does not validate the page table root in a
  KVM_SET_SREGS call

-- 
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 256621] Re: [CVE-2008-3459] OpenVPN vulnerability allows arbitrary command execution via crafted configuration

2011-05-26 Thread Jamie Strandboge
Marking Hardy status as Won't Fix as this package is not eligible for
5 year support.

** Changed in: openvpn (Ubuntu Hardy)
   Status: Confirmed = Won't Fix

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

Title:
  [CVE-2008-3459] OpenVPN vulnerability allows arbitrary command
  execution via crafted configuration

-- 
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 683958] Re: Upgrade quagga in lucid

2011-05-26 Thread Jamie Strandboge
These were fixed in http://www.ubuntu.com/usn/usn-1027-1.

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

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

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

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

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

Title:
  Upgrade quagga in lucid

-- 
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 787091] Re: Unable to use USB device in KVM quest

2011-05-26 Thread Serge Hallyn
** Changed in: qemu-kvm (Ubuntu)
   Status: Incomplete = New

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in Ubuntu.
https://bugs.launchpad.net/bugs/787091

Title:
  Unable to use USB device in KVM quest

-- 
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 746101] Re: SOAP interfaces are vulnerable to XML Signature Element Wrapping attacks

2011-05-26 Thread Jamie Strandboge
http://open.eucalyptus.com/wiki/esa-02

** Visibility changed to: Public

** Changed in: eucalyptus
   Status: New = Fix Released

** Changed in: eucalyptus (Ubuntu Lucid)
   Status: In Progress = Fix Committed

** Changed in: eucalyptus (Ubuntu Maverick)
   Status: In Progress = Fix Committed

** Changed in: eucalyptus (Ubuntu Natty)
   Status: In Progress = Fix Committed

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

Title:
  SOAP interfaces are vulnerable to XML Signature Element Wrapping
  attacks

-- 
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 788623] [NEW] Please sync nagios3 3.2.3-1 from Debian Unstable

2011-05-26 Thread Chuck Short
Public bug reported:

Binary package hint: nagios3

The ubuntu changes can be dropped since they are apart of debian now.

Regards
chuck

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

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

Title:
  Please sync nagios3 3.2.3-1 from Debian Unstable

-- 
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 746101] Re: SOAP interfaces are vulnerable to XML Signature Element Wrapping attacks

2011-05-26 Thread Jamie Strandboge
** Changed in: eucalyptus (Ubuntu Lucid)
   Status: Fix Committed = Fix Released

** Changed in: eucalyptus (Ubuntu Maverick)
   Status: Fix Committed = Fix Released

** Changed in: eucalyptus (Ubuntu Natty)
   Status: Fix Committed = Fix Released

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

Title:
  SOAP interfaces are vulnerable to XML Signature Element Wrapping
  attacks

-- 
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 787091] Re: Unable to use USB device in KVM quest

2011-05-26 Thread Serge Hallyn
Thanks for the additional info.  You're running with user and group
root.  I wonder if there is a bug in that path.  Could you do

for i in `pidof kvm`; do
   echo $i  statusinfo
   cat /proc/$i/status  statusinfo
   echo  statusinfo
done

and post statusinfo?

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in Ubuntu.
https://bugs.launchpad.net/bugs/787091

Title:
  Unable to use USB device in KVM quest

-- 
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 788647] [NEW] Soft link to version 2.3.1 instead of 2.4.1 break plugin builds

2011-05-26 Thread Marc Cluet
Public bug reported:

Binary package hint: rabbitmq-server

Soft link in build is version dependant and wasn't changed from 2.3.1 to
2.4.1

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

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to rabbitmq-server in Ubuntu.
https://bugs.launchpad.net/bugs/788647

Title:
  Soft link to version 2.3.1 instead of 2.4.1 break plugin builds

-- 
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 788651] [NEW] Please merge python-boto 1.9b-4 (main) from debian unstable (main)

2011-05-26 Thread Scott Moser
Public bug reported:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

the missing changelog entries are:

python-boto (1.9b-4) unstable; urgency=low

  * Do not require Name param on RegisterImage (Closes: #591466).

 -- Eric Evans eev...@debian.org  Tue, 03 Aug 2010 11:41:59 -0400

python-boto (1.9b-3) unstable; urgency=low

  * Strings exceptions are not allowed in Python 2.6 (Closes: #585284).

 -- Eric Evans eev...@debian.org  Wed, 07 Jul 2010 19:36:13 +

python-boto (1.9b-2) unstable; urgency=low

  * Depend on versions of Python = 2.5 (Closes: #563439).

 -- Eric Evans eev...@debian.org  Wed, 06 Jan 2010 12:20:56 -0600


 affects ubuntu/python-boto
 assignee smoser
 status inprogress
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCAAGBQJN3mfEAAoJEB5EEKQCS8bwwRUP/3R1SzohRYG64kf8/Fk8Shke
jfzy+Y25LI0JJe9llBs5e/RmBYyxqIMvmUMeNlZPWCZQZg91z2hlh0m7UXiWCjHY
fUygWQBNktiCGI/v7rAHvIirEr6/SfO09wVWZWZFcVmJoMuROKTaCogmn6duVNDV
nPu+DokCR1/017qdNX0Eg5MQISsUyOU6Vua9HeJ6vYCKPH40F0dftmqdhbm96C36
/IqBdsrMy46Y1UeywojYNaEeMEaUEAgNN/OvptOpghLULYksGtcYpu9r0+7rmEXV
XeMRbsv3kb/tyDlyNIA7L20wwLHSTqrgrWWuzy/JoB/vt9cISO2pGODBEqfjpW6X
qB0Qyvox2woSY+FBW/v1q5OXyiUOlqQENFgKL9nRNtAqFu4+TqZc+eHSTMTp0itm
fkwOjGM1dKwkQ6l4S50v2PmeKkp/4cDNwTTSN+kyd2rbBVwRFBaSy+ONgGuBsDec
P0yFH4GD7zZ7Q06HL2aUUdjqhlcMjY6cH+AKTIlPKEBDyVTDRgDx+j+wN2bGdAy8
3AcZPAHqEGpvENiEoPljt8XZWBAS3lKBDYM7zkqz+3ZWxORbd7BKiRXvtaZ9mfJb
fjzMG2d3L/Rd7rDGEXRxDaq6kxuH0Ff0WJR2UFi+9Rdlpd+JPLLnwsFI4gy+5/sZ
GMcLXyYh9mz+oElhfvZd
=x5S3
-END PGP SIGNATURE-

** Affects: python-boto (Ubuntu)
 Importance: Undecided
 Assignee: Scott Moser (smoser)
 Status: In Progress

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to python-boto in Ubuntu.
https://bugs.launchpad.net/bugs/788651

Title:
  Please merge python-boto 1.9b-4 (main) from debian unstable (main)

-- 
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 788647] Re: Soft link to version 2.3.1 instead of 2.4.1 break plugin builds

2011-05-26 Thread Marc Cluet
Debdiff fixing the issue

** Patch added: rabbitmq-server_2.4.1-1ubuntu2.debdiff
   
https://bugs.launchpad.net/ubuntu/+source/rabbitmq-server/+bug/788647/+attachment/2143659/+files/rabbitmq-server_2.4.1-1ubuntu2.debdiff

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to rabbitmq-server in Ubuntu.
https://bugs.launchpad.net/bugs/788647

Title:
  Soft link to version 2.3.1 instead of 2.4.1 break plugin builds

-- 
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


[Blueprint server-o-seed-review] Server Seed Review

2011-05-26 Thread James Westby
Blueprint changed by James Westby:

Whiteboard changed:
- Work Items:
- [] Check that the current seed is still relevant: TODO
- [] Add additional packages to a seed if suitable: TODO
- [] Reconcile ~ubuntu-server subscribed packages to seed(s): TODO
+ Work 
+ Check that the current seed is still relevant: TODO
+ Add additional packages to a seed if suitable: TODO
+ Reconcile ~ubuntu-server subscribed packages to seed(s): TODO
  
  == Comments ==
  
  * Come up with a sensible package list for ubuntu-dev-team so members of
  the ubuntu server team can upload packages to the archive. -- zul
  
  * The ubuntu-server-dev team should mirror the seeds, but this might be
  somewhat extensive. -- Daviey

-- 
Server Seed Review
https://blueprints.launchpad.net/ubuntu/+spec/server-o-seed-review

-- 
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


[Blueprint server-o-jonas] JOnAS Packaging Certification

2011-05-26 Thread James Westby
Blueprint changed by James Westby:

Whiteboard changed:
  Recap on work on Natty:
  
  Current Challenges:
  * Binary packaging produced for Natty release does not currently pass JEE 
Certification Tests on OpenJDK (only passes on sun-jdk); this needs to be 
resolved if we are going to try to get this into the main archive.
  Packaging Approach:
  * Key Dependencies:
    - ow2 EasyBeans
    - ow2 JOTM
    - ow2 CAROL
    - ow2 monolog
    - ow2 perseus
    - ow2 cmi
    - ow2 medor
    - tomcat7
    - Adobe Cairngorm
    - axis2
    - ops4j
    - Google Guice
  
  * Potential Issues:
    - Maven version 2.1.x (not 2.0.x) in archive
    - osgi wraps around existing libraries
    - Flash in admin GUI.
    - Large amount of dependency packaging
  
  JOnAS
  
  - 5.3 - JEE 6 profile
  - 5.3 - JEE 5 profile
  
   OSGi 4.2- stan
  
  - Apache Felix (or Eclipse)
  
  Micro-container architecutre - very low dependency requirement.
  
  Services delivered as bundles.
  
  Certified against full bundle of componets.
  
  Diff between dev and production modes - quick startup.
  
  Open source flex compilier - maven plugin.
  
  Jonas admn console - separatre component.
  
  OSGi enterprise standard.
  
  

  
  Work Items (oneiric-alpha-2):
  [james-page] Review current OSGi packaging:TODO
- [fbenoit] Identify priority list of ow2 components for packaging during 
Oneiric: TODO
- [fbenoit] Idnetify list of ow2 and other maven plugins required to support 
JOnAS: TODO
+ [florent-benoit] Identify priority list of ow2 components for packaging 
during Oneiric: TODO
+ [florent-benoit] Idnetify list of ow2 and other maven plugins required to 
support JOnAS: TODO
  
  Work Items:
  [james-page] work upstream in Debian to help with Maven 3 packaging: TODO
  [james-page] Work with florent on understanding JOnAS clustering and how this 
might feed into Ensemble and Orchestra: TODO

-- 
JOnAS Packaging  Certification
https://blueprints.launchpad.net/ubuntu/+spec/server-o-jonas

-- 
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 788680] [NEW] package smbclient 2:3.5.8~dfsg-1ubuntu2 failed to install/upgrade: corrupted filesystem tarfile - corrupted package archive

2011-05-26 Thread Roger Newman
Public bug reported:

Binary package hint: samba

I was doing updates using update manager when a failed to install
message appeared

ProblemType: Package
DistroRelease: Ubuntu 11.04
Package: smbclient 2:3.5.8~dfsg-1ubuntu2
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
Uname: Linux 2.6.38-8-generic i686
Architecture: i386
Date: Thu May 26 17:22:32 2011
ErrorMessage: corrupted filesystem tarfile - corrupted package archive
NmbdLog:
 
SambaServerRegression: Yes
SmbConfIncluded: Yes
SmbLog:
 
SourcePackage: samba
Title: package smbclient 2:3.5.8~dfsg-1ubuntu2 failed to install/upgrade: 
corrupted filesystem tarfile - corrupted package archive
UpgradeStatus: No upgrade log present (probably fresh install)
WindowsFailedConnect: Yes

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


** Tags: apport-package i386 natty

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

Title:
  package smbclient 2:3.5.8~dfsg-1ubuntu2 failed to install/upgrade:
  corrupted filesystem tarfile - corrupted package archive

-- 
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 788680] Re: package smbclient 2:3.5.8~dfsg-1ubuntu2 failed to install/upgrade: corrupted filesystem tarfile - corrupted package archive

2011-05-26 Thread Roger Newman
-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in Ubuntu.
https://bugs.launchpad.net/bugs/788680

Title:
  package smbclient 2:3.5.8~dfsg-1ubuntu2 failed to install/upgrade:
  corrupted filesystem tarfile - corrupted package archive

-- 
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 746101] Re: SOAP interfaces are vulnerable to XML Signature Element Wrapping attacks

2011-05-26 Thread Launchpad Bug Tracker
This bug was fixed in the package eucalyptus - 2.0.1+bzr1256-0ubuntu6

---
eucalyptus (2.0.1+bzr1256-0ubuntu6) oneiric; urgency=low

  [ Dave Walker ]
  * SECURITY UPDATE: SOAP signature replay vulnerability.
- add debian/patches/27-soap-security.patch, thanks to upstream.
- CVE-2011-0730
- LP: #746101
 -- Jamie Strandboge ja...@ubuntu.com   Thu, 26 May 2011 10:21:56 -0500

** Changed in: eucalyptus (Ubuntu Oneiric)
   Status: In Progress = Fix Released

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

Title:
  SOAP interfaces are vulnerable to XML Signature Element Wrapping
  attacks

-- 
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


[Blueprint server-o-ensemble-communications] Ensemble Communications and Metrics Plan

2011-05-26 Thread Robbie Williamson
Blueprint changed by Robbie Williamson:

Whiteboard changed:
  Work Items:
  [bcsaller] {1}Cloud Camp - May 26, 2011 in San Francisco, CA, USA: TODO
  {2}DevOps Day Australia (Taking talk submissions now) - July 22-23rd in 
Melbourne, Australia: TODO
  {3}HotCloud (Poster submissions are due by Monday, May 30, 2011, at 3:00 p.m. 
PDT) - June 14–15 in Portland, OR, USA: TODO
  {4}DevOps Day Mountain View (Proposal Deadline is 1st of June 2011) - June 
17-18th in Mountain View: TODO
  {5}Cloud Camp - June 2, 2011 in Boston (Waltham, MA), USA: TODO
  [robbie.w] {6}Cloud Camp - June 7, 2011 in New York, USA: TODO
  {7}Velocity BoF Session  (Call closes 11:59pm 06/09/2011 PDT) - June 
14th-16th in Santa Clara, CA: TODO
  {8}Large Installation System Administration Conference  - (Call closes June 
9, 2011, 11:59 p.m. PDT) - December 4–9, 2011, Boston, MA: TODO
  {9}Cloud Connect 2012 - (Call closes August 5th, 2011) - February 13-16, 
2012, Silicon Valley, CA: TODO
  {10}Ops Camp - June 13, 2011 in Portland, OR, USA: TODO
  [clint-fewbar] {11}Cloud Camp - June 14, 2011 in San Diego, CA, USA: TODO
  {12}Cloud Camp - June 16, 2011 in Seattle, USA: TODO
  {13}CloudCamp - June 20, 2011 in Cincinnati, OH, USA: TODO
  {14}OSCON BoF Session  (Call closes 11:59pm 07/22/2011 PDT) - July 25-29th in 
Portland, OR: TODO
  {15}CloudCamp - September 10, 2011 in Munich, Germany: TODO
  {16}CloudCamp - October 9, 2011 in Cloud Track @ Silicon Valley Code Camp, 
USA: TODO
- Track the total number (and rate) of formula contributions, i.e. merges to 
principia: TODO
  
  Links:
  {1} http://www.cloudcamp.org/sf/2011-05-26
  {2} http://devopsdownunder.org/
  {3} http://www.usenix.org/events/hotcloud11/
  {4} http://www.devopsdays.org/events/2011-mountainview/proposals/
  {5} http://www.cloudcamp.org/boston/2011-06-02
  {6} http://www.cloudcamp.org/ny/2011-06-07
  {7} http://velocityconf.com/velocity2011/public/cfp/157
  {8} http://www.usenix.org/events/lisa11/
  {9} http://www.cloudconnectevent.com/santaclara/call-for-papers/
  {10} http://www.opscamp.org/
  {11} http://www.cloudcamp.org/sandiego/2011-06-14
  {12} http://www.cloudcamp.org/seattle/2011-06-16
  {13} http://www.cloudcamp.org/cincinnati/2011-06-20
  {14} http://www.oscon.com/oscon2011/public/cfp/164
  {15} http://www.cloudcamp.org/munich/2011-09-10
  {16} http://www.cloudcamp.org/siliconvalley/2011-10-09

-- 
Ensemble Communications and Metrics Plan
https://blueprints.launchpad.net/ubuntu/+spec/server-o-ensemble-communications

-- 
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 787091] Re: Unable to use USB device in KVM quest

2011-05-26 Thread Serge Hallyn
Finally (and perhaps most usefully) please do:

strace -f -ooutout2 qemu -usb -usbdevice tablet -vnc :1 -vga cirrus
-usbdevice host:04a9:1093

then, after a little while, kill it with control-c and append the file
'outout2' which strace created to this bug.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in Ubuntu.
https://bugs.launchpad.net/bugs/787091

Title:
  Unable to use USB device in KVM quest

-- 
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 788680] Re: package smbclient 2:3.5.8~dfsg-1ubuntu2 failed to install/upgrade: corrupted filesystem tarfile - corrupted package archive

2011-05-26 Thread Ubuntu QA's Bug Bot
Thank you for taking the time to report this bug and helping to make
Ubuntu better.  It seems that there was an error on your system when
trying to install a particular package.  Please execute the following
command, as it will clear your package cache, in a terminal:

sudo apt-get clean

Then try performing the update again.  This will likely resolve your
issue, but the failure could be caused by filesystem or memory
corruption.  So please also run a fsck on your filesystem(s) and a
memory test.  If this does resolve your bug please set its status to
Invalid.  Thanks in advance!

[This is an automated message.  I apologize if it reached you
inappropriately; please just reply to this message indicating so.]

** Tags added: short-read

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

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

Title:
  package smbclient 2:3.5.8~dfsg-1ubuntu2 failed to install/upgrade:
  corrupted filesystem tarfile - corrupted package archive

-- 
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


[Blueprint server-o-ensemble-communications] Ensemble Communications and Metrics Plan

2011-05-26 Thread Robbie Williamson
Blueprint changed by Robbie Williamson:

Whiteboard changed:
  Work Items:
  [bcsaller] {1}Cloud Camp - May 26, 2011 in San Francisco, CA, USA: TODO
  {2}DevOps Day Australia (Taking talk submissions now) - July 22-23rd in 
Melbourne, Australia: TODO
  {3}HotCloud (Poster submissions are due by Monday, May 30, 2011, at 3:00 p.m. 
PDT) - June 14–15 in Portland, OR, USA: TODO
  {4}DevOps Day Mountain View (Proposal Deadline is 1st of June 2011) - June 
17-18th in Mountain View: TODO
  {5}Cloud Camp - June 2, 2011 in Boston (Waltham, MA), USA: TODO
  [robbie.w] {6}Cloud Camp - June 7, 2011 in New York, USA: TODO
  {7}Velocity BoF Session  (Call closes 11:59pm 06/09/2011 PDT) - June 
14th-16th in Santa Clara, CA: TODO
  {8}Large Installation System Administration Conference  - (Call closes June 
9, 2011, 11:59 p.m. PDT) - December 4–9, 2011, Boston, MA: TODO
  {9}Cloud Connect 2012 - (Call closes August 5th, 2011) - February 13-16, 
2012, Silicon Valley, CA: TODO
  {10}Ops Camp - June 13, 2011 in Portland, OR, USA: TODO
  [clint-fewbar] {11}Cloud Camp - June 14, 2011 in San Diego, CA, USA: TODO
  {12}Cloud Camp - June 16, 2011 in Seattle, USA: TODO
  {13}CloudCamp - June 20, 2011 in Cincinnati, OH, USA: TODO
- {14}OSCON BoF Session  (Call closes 11:59pm 07/22/2011 PDT) - July 25-29th in 
Portland, OR: TODO
+ [clint-fewbar] {14}OSCON BoF Session  (Call closes 11:59pm 07/22/2011 PDT) - 
July 25-29th in Portland, OR: TODO
  {15}CloudCamp - September 10, 2011 in Munich, Germany: TODO
  {16}CloudCamp - October 9, 2011 in Cloud Track @ Silicon Valley Code Camp, 
USA: TODO
  
  Links:
  {1} http://www.cloudcamp.org/sf/2011-05-26
  {2} http://devopsdownunder.org/
  {3} http://www.usenix.org/events/hotcloud11/
  {4} http://www.devopsdays.org/events/2011-mountainview/proposals/
  {5} http://www.cloudcamp.org/boston/2011-06-02
  {6} http://www.cloudcamp.org/ny/2011-06-07
  {7} http://velocityconf.com/velocity2011/public/cfp/157
  {8} http://www.usenix.org/events/lisa11/
  {9} http://www.cloudconnectevent.com/santaclara/call-for-papers/
  {10} http://www.opscamp.org/
  {11} http://www.cloudcamp.org/sandiego/2011-06-14
  {12} http://www.cloudcamp.org/seattle/2011-06-16
  {13} http://www.cloudcamp.org/cincinnati/2011-06-20
  {14} http://www.oscon.com/oscon2011/public/cfp/164
  {15} http://www.cloudcamp.org/munich/2011-09-10
  {16} http://www.cloudcamp.org/siliconvalley/2011-10-09

-- 
Ensemble Communications and Metrics Plan
https://blueprints.launchpad.net/ubuntu/+spec/server-o-ensemble-communications

-- 
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


[Blueprint server-o-ensemble-communications] Ensemble Communications and Metrics Plan

2011-05-26 Thread Robbie Williamson
Blueprint changed by Robbie Williamson:

Whiteboard changed:
  Work Items:
- [bcsaller] {1}Cloud Camp - May 26, 2011 in San Francisco, CA, USA: TODO
- {2}DevOps Day Australia (Taking talk submissions now) - July 22-23rd in 
Melbourne, Australia: TODO
- {3}HotCloud (Poster submissions are due by Monday, May 30, 2011, at 3:00 p.m. 
PDT) - June 14–15 in Portland, OR, USA: TODO
- {4}DevOps Day Mountain View (Proposal Deadline is 1st of June 2011) - June 
17-18th in Mountain View: TODO
- {5}Cloud Camp - June 2, 2011 in Boston (Waltham, MA), USA: TODO
- [robbie.w] {6}Cloud Camp - June 7, 2011 in New York, USA: TODO
- {7}Velocity BoF Session  (Call closes 11:59pm 06/09/2011 PDT) - June 
14th-16th in Santa Clara, CA: TODO
- {8}Large Installation System Administration Conference  - (Call closes June 
9, 2011, 11:59 p.m. PDT) - December 4–9, 2011, Boston, MA: TODO
- {9}Cloud Connect 2012 - (Call closes August 5th, 2011) - February 13-16, 
2012, Silicon Valley, CA: TODO
- {10}Ops Camp - June 13, 2011 in Portland, OR, USA: TODO
- [clint-fewbar] {11}Cloud Camp - June 14, 2011 in San Diego, CA, USA: TODO
- {12}Cloud Camp - June 16, 2011 in Seattle, USA: TODO
- {13}CloudCamp - June 20, 2011 in Cincinnati, OH, USA: TODO
- [clint-fewbar] {14}OSCON BoF Session  (Call closes 11:59pm 07/22/2011 PDT) - 
July 25-29th in Portland, OR: TODO
- {15}CloudCamp - September 10, 2011 in Munich, Germany: TODO
- {16}CloudCamp - October 9, 2011 in Cloud Track @ Silicon Valley Code Camp, 
USA: TODO
+ [bcsaller] Cloud Camp - May 26, 2011 in San Francisco, CA, USA {1}: TODO
+ DevOps Day Australia (Taking talk submissions now) - July 22-23rd in 
Melbourne, Australia{2}: TODO
+ HotCloud (Poster submissions are due by Monday, May 30, 2011, at 3:00 p.m. 
PDT) - June 14–15 in Portland, OR, USA{3}: TODO
+ DevOps Day Mountain View (Proposal Deadline is 1st of June 2011) - June 
17-18th in Mountain View{4}: TODO
+ Cloud Camp - June 2, 2011 in Boston (Waltham, MA), USA{5}: TODO
+ [robbie.w] Cloud Camp - June 7, 2011 in New York, USA{6}: TODO
+ Velocity BoF Session  (Call closes 11:59pm 06/09/2011 PDT) - June 14th-16th 
in Santa Clara, CA{7}: TODO
+ Large Installation System Administration Conference  - (Call closes June 9, 
2011, 11:59 p.m. PDT) - December 4–9, 2011, Boston, MA{8}: TODO
+ Cloud Connect 2012 - (Call closes August 5th, 2011) - February 13-16, 2012, 
Silicon Valley, CA{9}: TODO
+ Ops Camp - June 13, 2011 in Portland, OR, USA{10}: TODO
+ [clint-fewbar] Cloud Camp - June 14, 2011 in San Diego, CA, USA{11}: TODO
+ Cloud Camp - June 16, 2011 in Seattle, USA{12}: TODO
+ CloudCamp - June 20, 2011 in Cincinnati, OH, USA{13}: TODO
+ [clint-fewbar] OSCON BoF Session  (Call closes 11:59pm 07/22/2011 PDT) - July 
25-29th in Portland, OR{14}: TODO
+ CloudCamp - September 10, 2011 in Munich, Germany{15}: TODO
+ CloudCamp - October 9, 2011 in Cloud Track @ Silicon Valley Code Camp, 
USA{16}: TODO
  
  Links:
  {1} http://www.cloudcamp.org/sf/2011-05-26
  {2} http://devopsdownunder.org/
  {3} http://www.usenix.org/events/hotcloud11/
  {4} http://www.devopsdays.org/events/2011-mountainview/proposals/
  {5} http://www.cloudcamp.org/boston/2011-06-02
  {6} http://www.cloudcamp.org/ny/2011-06-07
  {7} http://velocityconf.com/velocity2011/public/cfp/157
  {8} http://www.usenix.org/events/lisa11/
  {9} http://www.cloudconnectevent.com/santaclara/call-for-papers/
  {10} http://www.opscamp.org/
  {11} http://www.cloudcamp.org/sandiego/2011-06-14
  {12} http://www.cloudcamp.org/seattle/2011-06-16
  {13} http://www.cloudcamp.org/cincinnati/2011-06-20
  {14} http://www.oscon.com/oscon2011/public/cfp/164
  {15} http://www.cloudcamp.org/munich/2011-09-10
  {16} http://www.cloudcamp.org/siliconvalley/2011-10-09

-- 
Ensemble Communications and Metrics Plan
https://blueprints.launchpad.net/ubuntu/+spec/server-o-ensemble-communications

-- 
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


[Blueprint server-o-xen-host] Improve Ubuntu as an Xen host.

2011-05-26 Thread Chuck Short
Blueprint changed by Chuck Short:

Whiteboard changed:
  Work Items:
  
- * Sync Xen 4.1 from Debian Unstable: TODO
- * Synx xen-common from Debian Unstable: TODO
- * Update xen dependencies for migration between xen-3.3 to xen-4.1: TODO
- * Check for upstream bug fixes that has not made it into debian yet: TODO
- * Turn on dom0 kernel support in -server kernel: TODO
- * Write MIR for libxen-devel to replace libxen3 in main: TODO
- * Replace libxen3 dependency with libxen-devel in libvirt: TODO
- * Test build changes for libvirt with libxen-devel: TODO
- * Remove xen-3.3 from the archive: TODO
- * Remove ubuntu-xen-server from archive: TODO
- * Remove ubuntu-xen-desktop from archive: TODO
- * Update xenner to 0.48: TODO
- * Test xen booting PAE on i386 without libvirt: TODO
- * Test xen booting on amd64 without libvirt: TODO
- * Test xen PAE on i386 with libvirt: TODO
- * Test xen on amd64 with libvirt: TODO
- * Test xen hvm CD install on i386: TODO
- * Test xen hvm CD install on amd64: TODO
- * Test xen-tools to make sure that it works with xen 4.1: TODO
- * Test live-helper to see if it works with xen 4.1: TODO
- * Create a small xen meta package to make xen install easier: TODO
+ Sync Xen 4.1 from Debian Unstable: TODO
+ Sync xen-common from Debian Unstable: TODO
+ Update xen dependencies for migration between xen-3.3 to xen-4.1: TODO
+ Check for upstream bug fixes that has not made it into debian yet: TODO
+ Turn on dom0 kernel support in -server kernel: TODO
+ Write MIR for libxen4l to replace libxen3 in main: TODO
+ Replace libxen3 dependency with libxen4 in libvirt: TODO
+ Test build changes for libvirt with libxen-devel: TODO
+ Remove xen-3.3 from the archive: TODO
+ Remove ubuntu-xen-server from archive: TODO
+ Remove ubuntu-xen-desktop from archive: TODO
+ Update xenner to 0.48: TODO
+ Test xen booting PAE on i386 without libvirt: TODO
+ Test xen booting on amd64 without libvirt: TODO
+ Test xen PAE on i386 with libvirt: TODO
+ Test xen on amd64 with libvirt: TODO
+ Test xen hvm CD install on i386: TODO
+ Test xen hvm CD install on amd64: TODO
+ Test xen-tools to make sure that it works with xen 4.1: TODO
+ Test live-helper to see if it works with xen 4.1: TODO
+ Create a small xen meta package to make xen install easier: TODO

-- 
Improve Ubuntu as an Xen host.
https://blueprints.launchpad.net/ubuntu/+spec/server-o-xen-host

-- 
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


[Blueprint server-o-xen-host] Improve Ubuntu as an Xen host.

2011-05-26 Thread Chuck Short
Blueprint changed by Chuck Short:

Whiteboard changed:
  Work Items:
  
- Sync Xen 4.1 from Debian Unstable: TODO
+ Sync Xen 4.1 from Debian Unstable: DONE
  Sync xen-common from Debian Unstable: TODO
  Update xen dependencies for migration between xen-3.3 to xen-4.1: TODO
  Check for upstream bug fixes that has not made it into debian yet: TODO
  Turn on dom0 kernel support in -server kernel: TODO
- Write MIR for libxen4l to replace libxen3 in main: TODO
+ Write MIR for libxen4 to replace libxen3 in main: TODO
  Replace libxen3 dependency with libxen4 in libvirt: TODO
  Test build changes for libvirt with libxen-devel: TODO
  Remove xen-3.3 from the archive: TODO
  Remove ubuntu-xen-server from archive: TODO
  Remove ubuntu-xen-desktop from archive: TODO
  Update xenner to 0.48: TODO
  Test xen booting PAE on i386 without libvirt: TODO
  Test xen booting on amd64 without libvirt: TODO
  Test xen PAE on i386 with libvirt: TODO
  Test xen on amd64 with libvirt: TODO
  Test xen hvm CD install on i386: TODO
  Test xen hvm CD install on amd64: TODO
  Test xen-tools to make sure that it works with xen 4.1: TODO
  Test live-helper to see if it works with xen 4.1: TODO
  Create a small xen meta package to make xen install easier: TODO

-- 
Improve Ubuntu as an Xen host.
https://blueprints.launchpad.net/ubuntu/+spec/server-o-xen-host

-- 
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 788742] [NEW] package libmysqlclient16 (not installed) failed to install/upgrade: trying to overwrite '/usr/lib/libmysqlclient.so.16.0.0', which is also in package mysql-cluster-client-5.1 0:7.0.

2011-05-26 Thread Peter Cook
Public bug reported:

zoneminder installation fails

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: libmysqlclient16 (not installed)
ProcVersionSignature: Ubuntu 2.6.32-28.55-generic 2.6.32.27+drm33.12
Uname: Linux 2.6.32-28-generic x86_64
Architecture: amd64
Date: Thu May 26 09:42:58 2011
ErrorMessage: trying to overwrite '/usr/lib/libmysqlclient.so.16.0.0', which is 
also in package mysql-cluster-client-5.1 0:7.0.9-1ubuntu7
InstallationMedia: Ubuntu 10.04.2 LTS Lucid Lynx - Release amd64 (20110211.1)
SourcePackage: mysql-dfsg-5.1
Title: package libmysqlclient16 (not installed) failed to install/upgrade: 
trying to overwrite '/usr/lib/libmysqlclient.so.16.0.0', which is also in 
package mysql-cluster-client-5.1 0:7.0.9-1ubuntu7

** Affects: mysql-dfsg-5.1 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package lucid

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in Ubuntu.
https://bugs.launchpad.net/bugs/788742

Title:
  package libmysqlclient16 (not installed) failed to install/upgrade:
  trying to overwrite '/usr/lib/libmysqlclient.so.16.0.0', which is also
  in package mysql-cluster-client-5.1 0:7.0.9-1ubuntu7

-- 
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 788742] Re: package libmysqlclient16 (not installed) failed to install/upgrade: trying to overwrite '/usr/lib/libmysqlclient.so.16.0.0', which is also in package mysql-cluster-client-5.1 0:7.0.9-

2011-05-26 Thread Peter Cook
-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in Ubuntu.
https://bugs.launchpad.net/bugs/788742

Title:
  package libmysqlclient16 (not installed) failed to install/upgrade:
  trying to overwrite '/usr/lib/libmysqlclient.so.16.0.0', which is also
  in package mysql-cluster-client-5.1 0:7.0.9-1ubuntu7

-- 
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 788284] Re: Please merge facter 1.5.9-1 (main) from debian unstable (main)

2011-05-26 Thread Andres Rodriguez
** Attachment removed: facter.debdiff
   
https://bugs.launchpad.net/ubuntu/+source/facter/+bug/788284/+attachment/2142669/+files/facter.debdiff

** Patch added: facter.debdiff
   
https://bugs.launchpad.net/ubuntu/+source/facter/+bug/788284/+attachment/2143834/+files/facter.debdiff

** Changed in: facter (Ubuntu)
   Status: In Progress = Confirmed

** Changed in: facter (Ubuntu)
 Assignee: Andres Rodriguez (andreserl) = (unassigned)

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

Title:
  Please merge facter 1.5.9-1 (main) from debian unstable (main)

-- 
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 787114] Re: Please merge ipsec-tools 0.8.0-3 (main) from debian unstable (main)

2011-05-26 Thread Andres Rodriguez
** Changed in: ipsec-tools (Ubuntu)
 Assignee: Andres Rodriguez (andreserl) = Chuck Short (zulcss)

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to ipsec-tools in Ubuntu.
https://bugs.launchpad.net/bugs/787114

Title:
  Please merge ipsec-tools 0.8.0-3 (main) from debian unstable (main)

-- 
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 788647] Re: Soft link to version 2.3.1 instead of 2.4.1 break plugin builds

2011-05-26 Thread Brian Murray
** Tags added: patch

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to rabbitmq-server in Ubuntu.
https://bugs.launchpad.net/bugs/788647

Title:
  Soft link to version 2.3.1 instead of 2.4.1 break plugin builds

-- 
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 788651] Re: Please merge python-boto 1.9b-4 (main) from debian unstable (main)

2011-05-26 Thread Scott Moser
I've got a branch ready to propose, but at the moment lp:ubuntu/python-boto is 
in a bad state, and that will be fixed under bug 
788736 .

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to python-boto in Ubuntu.
https://bugs.launchpad.net/bugs/788651

Title:
  Please merge python-boto 1.9b-4 (main) from debian unstable (main)

-- 
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 788651] Re: Please merge python-boto 1.9b-4 (main) from debian unstable (main)

2011-05-26 Thread Scott Moser
I'm attaching the suggested debdiff.  After bzr branch is sorted, I'll
propose a merge of this.

** Patch added: proposed debdiff
   
https://bugs.launchpad.net/ubuntu/+source/python-boto/+bug/788651/+attachment/2143879/+files/python-boto-1.9b-to-1.9b-4ubuntu1.debdiff

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to python-boto in Ubuntu.
https://bugs.launchpad.net/bugs/788651

Title:
  Please merge python-boto 1.9b-4 (main) from debian unstable (main)

-- 
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 774852] Re: Postfix 'local' crashes

2011-05-26 Thread Albrecht Dreß
Hi Serge:

Thanks a lot for your comment - the getrlimit() behaviour is indeed
puzzling!

Having a closer look at my system, I believe I found the reason, though.
The Ubuntu upgrade from 10.10 to 11.04 failed to change the bootloader
config (yaboot on Mac's) to boot the kernel coming with the new release.
As a result, I was still running 2.6.36.2 (self-compiled, as I had to
remove some graphics stuff - the Mac shipped with a special Apple OEM
ATI card, which didn't work with the stock kernel; different story).
Sorry, but I really forgot to look at the proper kernel version!

I manually changed yaboot.conf, rebooted - and now postfix runs again,
*without* the getrlimit issue!  This looks like a glibc vs. kernel
incompatibility.  Maybe this is also the reason while Patrick van
Oostrom (#6) has similar effects on i386?  Interesting that *no* other
application showed similar effects.

From my pov, you could close this one (Tag user too stupid :-/ )...

Thanks again for your help,
Albrecht.

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

Title:
  Postfix 'local' crashes

-- 
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 658346] Re: Please enable process control support (--enable-pcntl) for cgi/cli

2011-05-26 Thread Clint Byrum
** Bug watch added: Debian Bug tracker #627941
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=627941

** Also affects: php5 (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=627941
   Importance: Unknown
   Status: Unknown

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

Title:
  Please enable process control support (--enable-pcntl) for cgi/cli

-- 
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


[Blueprint server-o-xen-host] Improve Ubuntu as an Xen host.

2011-05-26 Thread Chuck Short
Blueprint changed by Chuck Short:

Whiteboard changed:
  Work Items:
  
- Sync Xen 4.1 from Debian Unstable: DONE
- Sync xen-common from Debian Unstable: TODO
- Update xen dependencies for migration between xen-3.3 to xen-4.1: TODO
+ [zulcss] Sync Xen 4.1 from Debian Unstable: DONE
+ [zulcss] Sync xen-common from Debian Unstable: DONE
+ [zulcss] Update xen dependencies for migration between xen-3.3 to xen-4.1: 
INPROGRESS
  Check for upstream bug fixes that has not made it into debian yet: TODO
- Turn on dom0 kernel support in -server kernel: TODO
+ [smb] Turn on dom0 kernel support in -server kernel: DONE
  Write MIR for libxen4 to replace libxen3 in main: TODO
  Replace libxen3 dependency with libxen4 in libvirt: TODO
  Test build changes for libvirt with libxen-devel: TODO
  Remove xen-3.3 from the archive: TODO
  Remove ubuntu-xen-server from archive: TODO
  Remove ubuntu-xen-desktop from archive: TODO
  Update xenner to 0.48: TODO
  Test xen booting PAE on i386 without libvirt: TODO
  Test xen booting on amd64 without libvirt: TODO
  Test xen PAE on i386 with libvirt: TODO
  Test xen on amd64 with libvirt: TODO
  Test xen hvm CD install on i386: TODO
  Test xen hvm CD install on amd64: TODO
  Test xen-tools to make sure that it works with xen 4.1: TODO
  Test live-helper to see if it works with xen 4.1: TODO
  Create a small xen meta package to make xen install easier: TODO

-- 
Improve Ubuntu as an Xen host.
https://blueprints.launchpad.net/ubuntu/+spec/server-o-xen-host

-- 
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 774852] Re: Postfix 'local' crashes

2011-05-26 Thread Scott Kitterman
Marking invalid based on reporter feedback.

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

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

Title:
  Postfix 'local' crashes

-- 
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 769064] Re: [Maverick] autofs5 leaves too many orphaned mount points in /proc/mounts and reboots takes forever

2011-05-26 Thread Leonardo Borda
*** This bug is a duplicate of bug 578536 ***
https://bugs.launchpad.net/bugs/578536

I've found something similar here.
Will investigate.

http://article.gmane.org/gmane.linux.kernel.autofs/6089/match=proc

Leonardo

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

Title:
  [Maverick] autofs5 leaves too many orphaned mount points in
  /proc/mounts and reboots takes forever

-- 
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


[Blueprint server-o-cluster-stack] Cluster Stack in Oneiric

2011-05-26 Thread Andres Rodriguez
Blueprint changed by Andres Rodriguez:

Whiteboard changed:
  Work items:
- [andreserl] Finish packaging resource-agents: TODO
+ [andreserl] Finish packaging resource-agents: INPROGRESS
  [andreserl] Upload resource-agents: TODO
  [andreserl] MIR resource-agents: TODO
  [andreserl] Request removal of cluster-agents: TODO
  [andreserl] Finish packaging fence-agents: TODO
  [andreserl] Upload fence-agents: TODO
  [andreserl] MIR fence-agents: TODO
  [andreserl] Upgrade pacemaker to 1.1.X: TODO
  [andreserl] Upgrade DRBD 8.4 if Oneiric Kernel ships it: TODO
  [andreserl] Link up with openstack and upstream to compile a list of HA 
requirements: TODO
  [andreserl] Sort out PPAs (ubuntu-ha-maintainers becomes main PPA, all other 
go away): TODO
  [andreserl] Evaluate upgrade path 1 or path 2: TODO
  
  Path 1:
  Keep RHCS for DLM (gfs_controld.pcmk/dlm_controld.pcmk) and gfs2-tools: TODO
  Update RHCS to latest 3.0.X (3.0.17 no longer maintained by upstream): TODO
  Remove installation of resource agents from rgmanager: TODO
  Remove installation of fence agents from source: TODO
  
  Path 2:
  Evaluate if RHCS should be updated to 3.1 (needs testing for OCFS2/GFS2 with 
pacemaker+corosync+cman. Heartbeat will no longer be used for GFS2/OCFS): TODO
  Upgrade to RHCS 3.1: TODO
  Finish packaging gfs2-utils: TODO
  Upload gfs2-utils: TODO
  MIR gfs2-utils: TODO
  Update default Pacemaker configuration to reflect upstream changes: TODO
  
  Upstartify corosync (upstart does not stop correctly stop corosync threads): 
POSTPONED
  Include new RHCS and related packages into natty: POSTPONED
  Look into automated deployment with puppet (Simple: VIP/ Advanced: DRBD, 
CLVM, etc): POSTPONED
  Add meta-package/tasksel to install simple cluster and join it: POSTPONED
  Document for HA with OCFS2: POSTPONED
  Document for CLVM: POSTPONED
  Include documentation in Ubuntu Server Guide: POSTPONED
  
  == Agenda ==
  
   * Current Cluster Stack:
     - RHCS (3.0.12)
   + dlm_controld.pcmk/gfs_controld.pcmk
     - Pacemaker/corosync/heartbeat (1.0.10):
   + RA's handle above.
  
   * Discuss the adoption of the new software versions as there have been 
several upstream changes, and different distributions are adopting different 
components.
     * RHCS (3.1):
   - RHCS (dlm, cman, etc), fence-agents, resource-agents, gfs2-utils
   - gfs-pcmk, dlm-pcmk dropped.
     * Pacemaker 1.1:
   - Pcmk + Corosync + cman (to use dlm_controld/gfs_controld)
     * resource-agents
   - Linux-HA and RHCS RA's merged in a single source.
     * MIR fence-agents
   - Cobbler uses it.
  
   * DRBD 8.3.X/DRBD 8.4.X
   * Nova Components HA (following discussion from the OpenStack Design Summit)
   * Continue with the work on the Ubuntu Cluster Stack to complete previously 
defined work items.
   * Obtain feature requests and discuss the customization of the cluster stack 
for Ubuntu.
   * Cloud HA - Pacemaker Cloud Policy Engine:
  
  
http://www.redhat.com/summit/2011/presentations/summit/whats_new/thursday/dake_th_1130_high_availability_in_the_cloud.pdf
  
  == Session Notes ==
  
  == Actions ==
   * Move forward with OCFS2 as the supported clustered FS
   *  Keep RHCS 3.0 for DLM's only.
  - dlm_controld.pcmk/gfs_controld.pcmk
  - keep shipping gfs2-tools (and make sure it's ok)
  - upgrade to latest 3.0.x that contains .pcmk (3.0.17)
   *  Package fence-agents/resource-agents
   *  Upgrade pacemaker to 1.1
   *  Investigate and resolve ARM related issues within OCFS2, test
   *  Move from cluster-agents to resouce-agents
   *  Link up with openstack and upstream to compile a list of HA requirements
   *  DRBD 8.4 if is shipped in mainline kernel Oneiric ships.
   *  ***Documentation***
   *  Sort out PPAs (ubuntu-ha-maintainers becomes main PPA, all other go away)

-- 
Cluster Stack in Oneiric
https://blueprints.launchpad.net/ubuntu/+spec/server-o-cluster-stack

-- 
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


[Blueprint server-o-puppet-integration] Ubuntu Server Puppet Integration

2011-05-26 Thread Adam Gandelman
Blueprint changed by Adam Gandelman:

Whiteboard changed:
  Work Items:
  
  Package Puppet 2.7: TODO
  Package Puppet dashboard (on mysql/apache): TODO
  Package modules: TODO
  [negronj] Make/package current orchestra modules to function without 
orchestra provisioning: TODO
  
  Puppet Modules:
  
  [negronjl] apache: DONE
  [negronjl] puppet-apt helper: DONE
  [negronjl] debconf helper module: DONE
  [negronjl] distcc: DONE
  [negronjl] gearman: DONE
  [negronjl] glusterfs: DONE
  [negronjl] hadoop: DONE
  [negronjl] haproxy ( with apache and tomcat integration ): DONE
  [negronjl] mongodb: DONE
  [negronjl] mpi ( mpich2 ): DONE
  [negronjl] mysql: DONE
  [negronjl] tomcat ( tomcat6): DONE
  
  Orchestra modules needed:
  
  rsyslog: TODO
  nagios: TODO
  cobbler: TODO
  bzr/git: TODO
  fs creation/management: TODO
  jenkins (master and slave): TODO
  ha cluster (drbd, pacemaker, corosync, cman): : TODO
  kvm (host and guest?): TODO
  LXC: TODO
  Xen: TODO
  [gandelman-a] OpenStack: TODO
  
  Common modules needed:
  
  Mail server: TODO
  LAMP stack: TODO
  SSH: TODO
  samba: TODO
  DNS: TODO
  PostgreSQL: TODO
  Print server ( cups ): TODO
  rsyslog: TODO
- [gandelman-a] Openstack: TODO
  Hadoop: TODO
  Eucalyptus: TODO
+ Openstack:
+  * [gandelman-a] Nova, single server: TODO
+  * [gandelman-a] Nova, multi-server: TODO
+  * [gandelman-a] Swift, single server: TODO
+  * [gandelman-a] Swift, multi-server: TODO
+  * [gandelman-a] Glance: TODO
  
  Test modules within vanilla Ubuntu/Puppet infrastructure: TODO
  Test modules within Ubuntu/Orchestra infrastructure: TODO

-- 
Ubuntu Server Puppet Integration
https://blueprints.launchpad.net/ubuntu/+spec/server-o-puppet-integration

-- 
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 787091] Re: Unable to use USB device in KVM quest

2011-05-26 Thread Royston Carter
Requested output of ls -l /dev/bus/usb/001/007

** Attachment added: usbdevices
   
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/787091/+attachment/2144109/+files/usbdevices

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in Ubuntu.
https://bugs.launchpad.net/bugs/787091

Title:
  Unable to use USB device in KVM quest

-- 
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 787091] Re: Unable to use USB device in KVM quest

2011-05-26 Thread Royston Carter
Output of the following attached:
for i in `pidof kvm`; do
   echo $i  statusinfo
   cat /proc/$i/status  statusinfo
   echo  statusinfo
done


** Attachment added: statusinfo
   
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/787091/+attachment/2144110/+files/statusinfo

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in Ubuntu.
https://bugs.launchpad.net/bugs/787091

Title:
  Unable to use USB device in KVM quest

-- 
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 787091] Re: Unable to use USB device in KVM quest

2011-05-26 Thread Royston Carter
output of the following attached:

strace -f -ooutout2 qemu -usb -usbdevice tablet -vnc :7 -vga cirrus
-usbdevice host:04a9:1717

** Attachment added: outout2
   
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/787091/+attachment/2144111/+files/outout2

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in Ubuntu.
https://bugs.launchpad.net/bugs/787091

Title:
  Unable to use USB device in KVM quest

-- 
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 787091] Re: Unable to use USB device in KVM quest

2011-05-26 Thread Royston Carter
output of the following attached:

strace -f -ooutout2 qemu -usb -usbdevice tablet -vnc :7 -vga cirrus
-usbdevice host:04a9:1717

** Attachment added: outout2.gz
   
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/787091/+attachment/2144112/+files/outout2.gz

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in Ubuntu.
https://bugs.launchpad.net/bugs/787091

Title:
  Unable to use USB device in KVM quest

-- 
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 787091] Re: Unable to use USB device in KVM quest

2011-05-26 Thread Royston Carter
Serge,
 I believe I have now added the additional items requested. The ID 
of the device and the connected point is now different, let me know if 
this confuses things.

Regards

Roy

On 26/05/2011 16:53, Serge Hallyn wrote:
 Finally (and perhaps most usefully) please do:

 strace -f -ooutout2 qemu -usb -usbdevice tablet -vnc :1 -vga cirrus
 -usbdevice host:04a9:1093

 then, after a little while, kill it with control-c and append the file
 'outout2' which strace created to this bug.


-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in Ubuntu.
https://bugs.launchpad.net/bugs/787091

Title:
  Unable to use USB device in KVM quest

-- 
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


[Blueprint server-o-ensemble-orchestra-openstack-support] Ensemble should support Orchestra and OpenStack as a deployment medium

2011-05-26 Thread Clint Byrum
Blueprint changed by Clint Byrum:

Whiteboard set to:
 
 2 basic ways Ensemble could integrate with Orchestra:
  a.) orchestra add an ec2 interface... ensemble is probably pretty low in 
requirements (ListInstances, RunInstances...) - Orchestra todo, can use a 
subset
  b.) ensemble support interacting with orchestra via cobbler's api. - option 
a seems agreed on
  
OpenStack:
- need to allow OpenStack object storage (swift) in addition to S3 storage
- need to distinguish between Rackspace and OpenStack, we want to interact with 
both
- missing python-swift-twisted client library (txRackspace is a placeholder) to 
OpenStack Object storage (To do for OpenStack)

Not enough resources in ensemble team to work on this

ACTION:
 * gustavo to send soren email regarding needed api functions for twisted 
client lib
 * cloud init to support Rackspace meta-data (nice, not required)
 * orchestra to give a twisted API to create physilcal machine that ensemble 
can call (aws or openstack)
 * have a simple way for orchestra to deploy a pool of machine that are made 
availabe for ensemble

 JAMES PAGE 
 
\   ^__^
 \  (oo)\___
(__)\   )\/\
||w |
|| ||

Is he here ? WOW

-- 
Ensemble should support Orchestra and OpenStack as a deployment medium
https://blueprints.launchpad.net/ubuntu/+spec/server-o-ensemble-orchestra-openstack-support

-- 
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


[Blueprint server-o-ensemble-orchestra-openstack-support] Ensemble should support Orchestra and OpenStack as a deployment medium

2011-05-26 Thread Clint Byrum
Blueprint changed by Clint Byrum:

Whiteboard changed:
-  
-  2 basic ways Ensemble could integrate with Orchestra:
-   a.) orchestra add an ec2 interface... ensemble is probably pretty low in 
requirements (ListInstances, RunInstances...) - Orchestra todo, can use a 
subset
-   b.) ensemble support interacting with orchestra via cobbler's api. - 
option a seems agreed on
-   
+ Work Items:
+ prototype deploying openstack with just pre-determined cloud-config stanzas 
fed into Cobbler: TODO
+ prototype puppet modules for deploying OpenStack: TODO
+ prototype ensemble driving physically deployed machines with a cloud-config 
stanza installing the agent and the Orchestra Server as bootstrap node: TODO
+ Collect data gathered from prototyping and record in spec/blueprint: TODO
+ Report findings of prototyping via mailing list / bogs: TODO
+ Develop deployment method for simple openstack components using chosen tool: 
TODO
+ Develop deployment method for more advanced openstack components using chosen 
tool: TODO
+ 
+ 
+ --- UDS session notes ---
+ 
+  2 basic ways Ensemble could integrate with Orchestra:
+   a.) orchestra add an ec2 interface... ensemble is probably pretty low in 
requirements (ListInstances, RunInstances...) - Orchestra todo, can use a 
subset
+   b.) ensemble support interacting with orchestra via cobbler's api. - 
option a seems agreed on
+ 
  OpenStack:
  - need to allow OpenStack object storage (swift) in addition to S3 storage
  - need to distinguish between Rackspace and OpenStack, we want to interact 
with both
  - missing python-swift-twisted client library (txRackspace is a placeholder) 
to OpenStack Object storage (To do for OpenStack)
  
  Not enough resources in ensemble team to work on this
  
  ACTION:
-  * gustavo to send soren email regarding needed api functions for twisted 
client lib
-  * cloud init to support Rackspace meta-data (nice, not required)
-  * orchestra to give a twisted API to create physilcal machine that ensemble 
can call (aws or openstack)
-  * have a simple way for orchestra to deploy a pool of machine that are made 
availabe for ensemble
+  * gustavo to send soren email regarding needed api functions for twisted 
client lib
+  * cloud init to support Rackspace meta-data (nice, not required)
+  * orchestra to give a twisted API to create physilcal machine that ensemble 
can call (aws or openstack)
+  * have a simple way for orchestra to deploy a pool of machine that are made 
availabe for ensemble
  
   JAMES PAGE 
-  
- \   ^__^
-  \  (oo)\___
- (__)\   )\/\
- ||w |
- || ||
+  
+ \   ^__^
+  \  (oo)\___
+ (__)\   )\/\
+ ||w |
+ || ||
  
  Is he here ? WOW

-- 
Ensemble should support Orchestra and OpenStack as a deployment medium
https://blueprints.launchpad.net/ubuntu/+spec/server-o-ensemble-orchestra-openstack-support

-- 
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


[Blueprint server-o-ensemble-orchestra-openstack-support] Ensemble should support Orchestra and OpenStack as a deployment medium

2011-05-26 Thread Clint Byrum
Blueprint changed by Clint Byrum:

Definition Status: Drafting = Review

-- 
Ensemble should support Orchestra and OpenStack as a deployment medium
https://blueprints.launchpad.net/ubuntu/+spec/server-o-ensemble-orchestra-openstack-support

-- 
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 787091] Re: Unable to use USB device in KVM quest

2011-05-26 Thread Serge Hallyn
Thanks.  Unfortunately the strace output didn't show kvm trying to
access the usb device at all, and the status info doesn't show anything.
DAC should not be preventing this access.

To be sure I'm understanding correctly - you see no apparmor errors at
all in your syslog any more since you added your new rules, right?

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in Ubuntu.
https://bugs.launchpad.net/bugs/787091

Title:
  Unable to use USB device in KVM quest

-- 
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 773113] Re: e-tan generation doesn't wor.

2011-05-26 Thread Yousry Abdallah
Some graphics card driver have an option for crack-free video output.
With this option enabled, the usability is improved .

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.
https://bugs.launchpad.net/bugs/773113

Title:
  e-tan generation doesn't wor.

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


[Bug 768801] Re: Banshee always stay visible

2011-05-26 Thread Bogdan
Sorry I thought I had responded alreadye. Yes, it was not a bug, I did'n
think that extension could do this. Thanks. Could you close the bug?

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

Title:
  Banshee always stay visible

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


[Bug 531801] Re: none option in the input method drop-down list selector is not translatable

2011-05-26 Thread Launchpad Bug Tracker
** Branch linked: lp:~gunnarhj/language-selector/oneiric

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

Title:
  none option in the input method drop-down list selector is not
  translatable

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


[Bug 192134] Re: slow math sin function for some values on amd64

2011-05-26 Thread Bug Watch Updater
Launchpad has imported 6 comments from the remote bug at
http://sourceware.org/bugzilla/show_bug.cgi?id=5781.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.


On 2008-02-21T09:10:38+00:00 Petr Cervenka wrote:

I would like to repost my previously deleted bug by (lazy IMHO)
car...@codesoucery.com. The math sin function is at least 1000x slower on 64bit
distributions for special numbers (and carlos dosn't care about it). 
I can't try it with CVS head, because I cannot connect to cvs through our 
firewall.
But even when I tried the latest snapshot, I couldn't build it (maybe another 
bug):
a - elf/dl-vdso.os
: /home/inova/projects/glibc/build/libc_pic.a
gcc   -nostdlib -nostartfiles -r -o
/home/inova/projects/glibc/build/elf/librtld.map.o '-Wl,-('
/home/inova/projects/glibc/build/elf/dl-allobjs.os
/home/inova/projects/glibc/build/libc_pic.a -lgcc '-Wl,-)'
-Wl,-Map,/home/inova/projects/glibc/build/elf/librtld.mapT
/home/inova/projects/glibc/build/libc_pic.a(init-first.os):(.data+0x0): multiple
definition of `__libc_multiple_libcs'
/home/inova/projects/glibc/build/elf/dl-allobjs.os:/home/inova/projects/glibc/src/glibc-20080218/elf/rtld.c:641:
first defined here
/home/inova/projects/glibc/build/libc_pic.a(dl-addr.os): In function
`_dl_addr_inside_object':
/home/inova/projects/glibc/src/glibc-20080218/elf/dl-addr.c:158: multiple
definition of `_dl_addr_inside_object'
/home/inova/projects/glibc/build/elf/dl-allobjs.os:/home/inova/projects/glibc/src/glibc-20080218/elf/dl-open.c:700:
first defined here
collect2: ld returned 1 exit status
make[2]: *** [/home/inova/projects/glibc/build/elf/librtld.map] Error 1
make[2]: Leaving directory `/home/inova/projects/glibc/src/glibc-20080218/elf'
make[1]: *** [elf/subdir_lib] Error 2
make[1]: Leaving directory `/home/inova/projects/glibc/src/glibc-20080218'
make: *** [all] Error 2 

Please, anyone with 64bit distribution and glibc CVS head, could you try the
attached example and post the time results of it? (or help me to build the
snapshot...)
Thank you

== Original bug report ==
The math sin(double) function is in 64bit distribution (Kubuntu 7.10 AMD64 and
Fedora - unknown version) unreasonable slow (~400 microseconds on Atlon64 X2
4800+!!!) for some special values. In 32bit distribution is everything fine.
I captured some of those values:
0.93340582292648832662962377071381  0x3fedde75e36bb000
2.3328432680770916363144351635128   0x4002a9a9bb38add0
3.7439477503636453548097051680088   0x400df39ae0cdf500
3.9225160069792437411706487182528   0x400f615012801950
4.0711651639931289992091478779912   0x401048df854fdc20
4.7858438478542097982426639646292   0x401324b43fe92fc0
5.9840767662578002727968851104379   0x4017efb1d1df52a0

Example:
#include math.h
int main(int argc, char** argv) {
volatile double value = 0.93340582292648832662962377071381;
volatile double out;
int i;
for (i=0; i  2; i++)
out = sin(value);
return 0;
}

Reply at: https://bugs.launchpad.net/glibc/+bug/192134/comments/1


On 2008-02-21T09:39:00+00:00 Jakub Jelinek wrote:

Most of the double routines in libm come from IBM accurate matematical library,
which ensures = 0.5ulp error.  Trigonometric etc. functions are computed using
floating point computations, but if the possible error from that is too high, 
it 
uses slower multiprecision computation to guarantee ultimate precise result.
Guess you just picked some worst-case values.
i386 uses the non-precise hardware instructions instead, so doesn't guarantee
the = 0.5ulp precision.


Reply at: https://bugs.launchpad.net/glibc/+bug/192134/comments/2


On 2008-02-21T17:09:30+00:00 Joseph-codesourcery wrote:

Subject: Re:  Slow sine function for special values on AMD64
 - second attempt

On Thu, 21 Feb 2008, jakub at redhat dot com wrote:

 which ensures = 0.5ulp error.  Trigonometric etc. functions are 
 computed using floating point computations, but if the possible error 
 from that is too high, it uses slower multiprecision computation to 
 guarantee ultimate precise result. Guess you just picked some worst-case 
 values.

Note that the crlibm developers were willing to contribute their code, an 
advantage of which is *much* better worst-case performance.


Reply at: https://bugs.launchpad.net/glibc/+bug/192134/comments/3


On 2008-02-21T17:42:51+00:00 Jakub Jelinek wrote:

Yeah, I'm aware of crlibm, I think if it proves itself that it won't be much
slower on average, has the same ultimate precision guarantees and faster
worst-cases, I don't 

[Bug 754712] Re: [Lenovo L420] System unable to resume from suspend

2011-05-26 Thread pinguaw
Hi,

cat /sys/power/pm_trace_dev_match

gives only:

block


This is all. I built my own kernel with acpi debuging on. I will attach dmesg 
maybe you will see an interesting line.

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

Title:
  [Lenovo L420] System unable to resume from suspend

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


[Bug 754712] Re: [Lenovo L420] System unable to resume from suspend

2011-05-26 Thread pinguaw
** Attachment added: dmesg with acpi and pm debugging on
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/754712/+attachment/2143271/+files/dmesg.tar.gz

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

Title:
  [Lenovo L420] System unable to resume from suspend

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


[Bug 663776] Re: [dash] Search field in Unity can not support iBus

2011-05-26 Thread Launchpad Bug Tracker
** Branch linked: lp:~gunnarhj/ubuntu/natty/language-selector/natty-
proposed-imfix

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

Title:
  [dash] Search field in Unity can not support iBus

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


[Bug 788486] [NEW] Could not install vlc-nox during kubuntu 10.10 upgrade

2011-05-26 Thread PaulHurleyuk
Public bug reported:

Binary package hint: update-manager

doing dist-upgrade from kubuntu 10.04 to 10.10 and got error Could not
install vlc-nox

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

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

Title:
  Could not install vlc-nox during kubuntu 10.10 upgrade

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


[Bug 367537] Re: [jaunty] Segmentation fault in hsearch_r of glibc-2.9

2011-05-26 Thread Bug Watch Updater
Launchpad has imported 3 comments from the remote bug at
http://sourceware.org/bugzilla/show_bug.cgi?id=6966.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.


On 2008-10-19T01:29:34+00:00 Bugzilla-t wrote:

hsearch references Kunth vol. 3 6.4 on open addressing but the code does
implement the algorithm from Knuth.  Instead of generating the second hash from
the first, the code generates the second hash from the first index.  Because
this hash is then used to step the index, the result is that the first index
generated is (almost) always the same.

This partly defeats the purpose of using a secondary hash.

I say almost because it happens for all but 2 of the possible index values in
any given table.  For example, in a table of size 11, all secondary probes will
start at index 10 unless the inital hash produced 9 or 10.

This was reported on news:comp.lang.c by James Dow Allen and I decided to check
on it.  I have a simple patch but I am not sure of the procedure for posting
patches to glibc.

Reply at: https://bugs.launchpad.net/glibc/+bug/367537/comments/0


On 2008-10-19T01:33:40+00:00 Bugzilla-t wrote:

Created attachment 3006
Suggested fix.

The patch suggests two related changes.  First, that idx be set from hval
without reducing havl % htab-size.  hval2 can now be derived from hval without
generating the same probe sequence all the time.  Secondly, a new variable must
be used to detect the wrap-around, since hval no longer contains the initial
value of idx.

Reply at: https://bugs.launchpad.net/glibc/+bug/367537/comments/1


On 2008-11-01T15:37:54+00:00 Drepper-fsp wrote:

Applied to cvs.

Reply at: https://bugs.launchpad.net/glibc/+bug/367537/comments/2


** Changed in: glibc
   Importance: Unknown = Low

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

Title:
  [jaunty] Segmentation fault in hsearch_r of glibc-2.9

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


[Bug 788488] [NEW] The cursor suddenly jumps to the right edge of the screen when finger go from the touchpad's main area to vertical scrolling area

2011-05-26 Thread nuclear90
Public bug reported:

Binary package hint: xserver-xorg-input-synaptics

please accept this patch https://bugs.freedesktop.org/show_bug.cgi?id=23890
It tested by many people and work fine.

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

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

Title:
  The cursor suddenly jumps to the right edge of the screen when finger
  go from the touchpad's main area to vertical scrolling area

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


[Bug 788487] [NEW] Build kernel trunk got error

2011-05-26 Thread teawater
Public bug reported:

Binary package hint: gcc-4.6

  CC [M]  drivers/staging/wlan-ng/p80211wep.o
/home/teawater/kernel/linux-2.6/drivers/staging/wlan-ng/p80211wep.c: In 
function 'wep_decrypt':
/home/teawater/kernel/linux-2.6/drivers/staging/wlan-ng/p80211wep.c:229:1: 
internal compiler error: in form_sum, at reload.c:5331
Please submit a full bug report,
with preprocessed source if appropriate.
See file:///usr/share/doc/gcc-4.6/README.Bugs for instructions.
make[5]: *** [drivers/staging/wlan-ng/p80211wep.o] Error 1
make[4]: *** [drivers/staging/wlan-ng] Error 2
make[3]: *** [drivers/staging] Error 2
make[2]: *** [drivers] Error 2
make[1]: *** [sub-make] Error 2
make: *** [all] Error 2

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

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

Title:
  Build kernel trunk got error

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


[Bug 788487] Re: Build kernel trunk got error

2011-05-26 Thread teawater
** Attachment added: This is the file that got the bug
   https://bugs.launchpad.net/bugs/788487/+attachment/2143272/+files/p80211wep.c

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

Title:
  Build kernel trunk got error

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


[Bug 788487] Re: Build kernel trunk got error

2011-05-26 Thread teawater
gcc -v
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/i686-linux-gnu/4.6.0/lto-wrapper
Target: i686-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 
4.6-20101220-1' --with-bugurl=file:///usr/share/doc/gcc-4.6/README.Bugs 
--enable-languages=c,c++,fortran,objc,obj-c++,go --prefix=/usr 
--program-suffix=-4.6 --enable-shared --enable-multiarch 
--enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib 
--without-included-gettext --enable-threads=posix 
--with-gxx-include-dir=/usr/include/c++/4.6 --libdir=/usr/lib --enable-nls 
--with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug 
--enable-libstdcxx-time=yes --enable-plugin --enable-gold --enable-ld=default 
--with-plugin-ld=ld.gold --enable-objc-gc --enable-targets=all --disable-werror 
--with-arch-32=i686 --with-tune=generic --enable-checking=release 
--build=i686-linux-gnu --host=i686-linux-gnu --target=i686-linux-gnu
Thread model: posix
gcc version 4.6.0 20101220 (experimental) [trunk revision 168097] 
(Ubuntu/Linaro 4.6-20101220-1)

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

Title:
  Build kernel trunk got error

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


[Bug 788491] [NEW] dist-upgrade to 11.04 ubuntu-minimal not found

2011-05-26 Thread Jürgen Hofmarcher
Public bug reported:

Binary package hint: software-center

step to of dist-update stops with an error. ubuntu-minimal can not be
found after updating package sources.

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: software-center 3.0.8
ProcVersionSignature: Ubuntu 2.6.35-28.50-generic 2.6.35.11
Uname: Linux 2.6.35-28-generic x86_64
NonfreeKernelModules: fglrx
Architecture: amd64
Date: Thu May 26 08:06:56 2011
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release amd64 (20101007)
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=de_AT:en
 PATH=(custom, no user)
 LANG=de_AT.UTF-8
 SHELL=/bin/bash
SourcePackage: software-center

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


** Tags: amd64 apport-bug maverick

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

Title:
  dist-upgrade to 11.04 ubuntu-minimal not found

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


[Bug 788491] Re: dist-upgrade to 11.04 ubuntu-minimal not found

2011-05-26 Thread Jürgen Hofmarcher
** Attachment added: files from /var/log/dist-upgrade/
   
https://bugs.launchpad.net/bugs/788491/+attachment/2143280/+files/apt-clone_system_state.tar.gz

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

Title:
  dist-upgrade to 11.04 ubuntu-minimal not found

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


[Bug 788490] [NEW] complains that Global symbol $LANG requires explicit package name

2011-05-26 Thread John Massaglia
Public bug reported:

Binary package hint: tablet-encode

When I try to run the script on my box running Ubuntu 11.04, I get the 
following error:
Error in configuration file: Global symbol $LANG requires explicit package 
name at (eval 2) line 1.

I tried copying tablet-encode over to a computer that still had Ubuntu
10.10 on it and the script ran fine. Maybe this is a perl or environment
problem?

ProblemType: Bug
DistroRelease: Ubuntu 11.04
Package: tablet-encode 2.30-0.1ubuntu1
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
Uname: Linux 2.6.38-8-generic x86_64
NonfreeKernelModules: fglrx
Architecture: amd64
Date: Thu May 26 00:05:50 2011
InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release amd64 (20110427.1)
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=en_US:en
 PATH=(custom, user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: tablet-encode
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: tablet-encode (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug natty running-unity

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

Title:
  complains that Global symbol $LANG requires explicit package name

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


[Bug 788490] Re: complains that Global symbol $LANG requires explicit package name

2011-05-26 Thread John Massaglia
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/788490

Title:
  complains that Global symbol $LANG requires explicit package name

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


[Bug 788489] [NEW] package openerp-server 5.0.14-1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-05-26 Thread Sebastián Salgado
Public bug reported:

Binary package hint: openerp-server

no more details, sorry

ProblemType: Package
DistroRelease: Ubuntu 11.04
Package: openerp-server 5.0.14-1
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
Uname: Linux 2.6.38-8-generic x86_64
NonfreeKernelModules: wl
Architecture: amd64
Date: Thu May 26 03:01:24 2011
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationMedia: Kubuntu 11.04 Natty Narwhal - Release amd64 (20110427)
PackageArchitecture: all
SourcePackage: openerp-server
Title: package openerp-server 5.0.14-1 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package natty

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

Title:
  package openerp-server 5.0.14-1 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 1

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


[Bug 788489] Re: package openerp-server 5.0.14-1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-05-26 Thread Sebastián Salgado
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/788489

Title:
  package openerp-server 5.0.14-1 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 1

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


[Bug 575774] Re: 2.6.32-21-generic CE: hpet increasing min_delta_ns flood

2011-05-26 Thread dack
Disabling C1E in bios solved the HPET issues for me.  There is still a
video tearing problem though, but this is a separate issue in bug
#423940.

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

Title:
  2.6.32-21-generic CE: hpet increasing min_delta_ns flood

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


[Bug 546581] Re: Incorrect LC_MONETARY symbol of es_NI.utf-8

2011-05-26 Thread Bug Watch Updater
Launchpad has imported 3 comments from the remote bug at
http://sourceware.org/bugzilla/show_bug.cgi?id=11653.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.


On 2010-06-01T02:28:50+00:00 Red de Grupos Locales Ubuntu en Centroamérica 
wrote:

The currency symbol/sign for Spanish Nicaragua (es_NI.utf-8) is backward, it
shows $C when it should be C$.

$ locale -k LC_MONETARY | grep currency_symbol
currency_symbol=$C
duo_currency_symbol=$C

For a quick reference:
http://en.wikipedia.org/wiki/Nicaraguan_c%C3%B3rdoba

Reply at: https://bugs.launchpad.net/glibc/+bug/546581/comments/4


On 2010-07-18T04:13:21+00:00 Red de Grupos Locales Ubuntu en Centroamérica 
wrote:

There's a fix downstream -
http://launchpadlibrarian.net/49246107/langpack-locales_2.11%2Bgit20100304-3ubuntu1.debdiff

Reply at: https://bugs.launchpad.net/glibc/+bug/546581/comments/5


On 2011-05-09T23:25:54+00:00 Drepper-fsp wrote:

Don't reference other bug reporting system.s

I've added a patch.

Reply at: https://bugs.launchpad.net/glibc/+bug/546581/comments/11


** Changed in: glibc
   Status: Confirmed = Fix Released

** Changed in: glibc
   Importance: Unknown = Medium

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

Title:
  Incorrect LC_MONETARY symbol of es_NI.utf-8

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

[Bug 447241] Re: kubuntu Karmic network dsl doesn't work

2011-05-26 Thread grasscap
Guys, don't count on KDE's network manager. This bug exist for years and
it would probably last for another a few years. Those developers
probably don't use DSL.

There is a workaround:

1. sudo apt-get install network-manager-gnome
2. sudo apt-get remove network-manager-kde

add nm-applet --sm-disable to autostart

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

Title:
  kubuntu Karmic network dsl doesn't work

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


[Bug 531801] Re: none option in the input method drop-down list selector is not translatable

2011-05-26 Thread Gunnar Hjalmarsson
** Branch linked: lp:language-selector

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

Title:
  none option in the input method drop-down list selector is not
  translatable

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


[Bug 663776] Re: [dash] Search field in Unity can not support iBus

2011-05-26 Thread Gunnar Hjalmarsson
** Branch linked: lp:ubuntu/natty-proposed/language-selector

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

Title:
  [dash] Search field in Unity can not support iBus

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


[Bug 531801] Re: none option in the input method drop-down list selector is not translatable

2011-05-26 Thread Gunnar Hjalmarsson
** Changed in: language-selector (Ubuntu)
   Status: Triaged = In Progress

** Changed in: language-selector (Ubuntu)
 Assignee: (unassigned) = Gunnar Hjalmarsson (gunnarhj)

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

Title:
  none option in the input method drop-down list selector is not
  translatable

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


[Bug 788487] Re: Build kernel trunk got error

2011-05-26 Thread Matthias Klose
please provide the command line arguments and the pre-processed source

** Changed in: gcc-4.6 (Ubuntu)
   Status: New = Incomplete

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

Title:
  Build kernel trunk got error

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


[Bug 774554] Re: upgrade from 10.10 to 11.04 failed

2011-05-26 Thread Robert Ehelebe
This bug and can be removed. Perhaps this laptop's Nvidia graphics card
can't handle Unity 3D. I still need to find a definitive answer. I don't
recall the 11.04 installer telling me, Your graphics card won't support
Unity 3D, or a similar message.

Waited a couple of weeks and booted this laptop. Found that I could get
to a garbled white/black console where I blindly logged in and
performed:

sudo apt-get update
sudo apt-get upgrade

Many packages were upgraded.

Rebooted the system and logged in but Unity 3D didn't appear correctly.
Moreover, saw blinking red, green, white, black, blue screens when I
attempted to revive the system from suspension. This has been indicative
of an improper setting of the Nvidia graphics card in the past.

I removed the restricted Nvidia driver 173 to test Ubuntu's Nvidia
driver.

Installed the Unity 2D driver and so far that is working for me.


** Package changed: linux (Ubuntu) = nvidia-graphics-drivers-173
(Ubuntu)

** Changed in: nvidia-graphics-drivers-173 (Ubuntu)
   Status: New = Invalid

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

Title:
  upgrade from 10.10 to 11.04 failed

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


Re: [Bug 768801] Re: Banshee always stay visible

2011-05-26 Thread Chow Loong Jin
On 26/05/2011 13:53, Bogdan wrote:
 Sorry I thought I had responded alreadye. Yes, it was not a bug, I did'n
 think that extension could do this. Thanks. Could you close the bug?
 

  status invalid

-- 
Kind regards,
Loong Jin


** Changed in: banshee (Ubuntu)
   Status: Incomplete = Invalid

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

Title:
  Banshee always stay visible

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


[Bug 692168] Re: Pidgin reports an undefined symbol error

2011-05-26 Thread eros2
Same on Natty.

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

Title:
  Pidgin reports an undefined symbol error

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


[Bug 264961] Re: GNU Binutils for Ubuntu, internal error, assign_file_positions_for_non_load_sections

2011-05-26 Thread Bug Watch Updater
Launchpad has imported 7 comments from the remote bug at
http://sourceware.org/bugzilla/show_bug.cgi?id=6494.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.


On 2008-05-08T12:43:20+00:00 Matthias Klose wrote:

building debian-installer with current binutils (20080425) ftbfs (2.18.1
works)

see
http://people.debian.org/~lucas/logs/2008/04/30/debian-installer_20080227_sid32-dpkg.buildlog

reducing libnewt.so.0.52
/usr/lib//libnewt.so.0.5272900L
./tmp/cdrom_gtk/tree/lib/libnewt.sBFD: BFD (GNU Binutils for Debian)
2.18.50.20080425 internal error, aborting at ../../bfd/elf.c line 4622 in
assign_file_positions_for_non_load_sections

BFD: Please report this bug.

[asking the debian-installer team for a reduced testcase]

Reply at: https://bugs.launchpad.net/binutils/+bug/264961/comments/0


On 2008-05-10T02:12:31+00:00 Alan Modra wrote:

I think your log suffers from lack of stdout and stderr flushing. 
libnewt.so.0.52 is a red herring.  The real problem occurs on
  objcopy --strip-unneeded -R .note -R .comment /lib/libpthread.so.0

Don't bother reducing it, libpthread.so isn't too large to attach to this bug
report.

Reply at: https://bugs.launchpad.net/binutils/+bug/264961/comments/1


On 2008-08-09T13:08:51+00:00 Alan Modra wrote:

Can we have the libpthread.so.0 that triggers this bug, if the bug is still
present in CVS binutils?

Reply at: https://bugs.launchpad.net/binutils/+bug/264961/comments/2


On 2008-09-17T11:25:36+00:00 Alan Modra wrote:

Testcase in http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=493651

  GNU_RELRO  0x016bc8 0x00216bc8 0x00216bc8 0x0003d0
0x0003c0 R   0x1

I don't know how we managed to get p_filesz (0x3d) != p_memsz (0x3c0).
HJ, why did you add the p_filesz == p_memsz test in the following:

  if (map-p_type == PT_GNU_RELRO
   segment-p_filesz == segment-p_memsz)
{
  /* The PT_GNU_RELRO segment may contain the first a few
 bytes in the .got.plt section even if the whole .got.plt
 section isn't in the PT_GNU_RELRO segment.  We won't
 change the size of the PT_GNU_RELRO segment.  */
  map-p_size = segment-p_filesz;
  map-p_size_valid = 1;
}

That results in p_size_valid == 0 for this testcase which then triggers
the abort.

Reply at: https://bugs.launchpad.net/binutils/+bug/264961/comments/7


On 2008-09-17T17:19:57+00:00 Hjl-tools wrote:

(In reply to comment #3)
 Testcase in http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=493651
 
   GNU_RELRO  0x016bc8 0x00216bc8 0x00216bc8 0x0003d0
 0x0003c0 R   0x1
 
 I don't know how we managed to get p_filesz (0x3d) != p_memsz (0x3c0).
 HJ, why did you add the p_filesz == p_memsz test in the following:
 
   if (map-p_type == PT_GNU_RELRO
  segment-p_filesz == segment-p_memsz)
   {
 /* The PT_GNU_RELRO segment may contain the first a few
bytes in the .got.plt section even if the whole .got.plt
section isn't in the PT_GNU_RELRO segment.  We won't
change the size of the PT_GNU_RELRO segment.  */
 map-p_size = segment-p_filesz;
 map-p_size_valid = 1;
   }
 
 That results in p_size_valid == 0 for this testcase which then triggers the 
 abort.

Something is wrong with GNU_RELRO segment in libpthread-2.7.so:

1. Why is p_filesz != p_memsz?
2. What does p_filesz  p_memsz mean?

I got

  GNU_RELRO  0x016bc8 0x00216bc8 0x00216bc8 0x0003d0
0x0003c0 R   0x1
...
  08 .ctors .dtors .jcr .data.rel.ro 

For libpthread-2.7.so in Fedora 8, I got

  GNU_RELRO  0x015ba8 0x003035015ba8 0x003035015ba8 0x000458
0x000458 R   0x1
...
   08 .ctors .dtors .jcr .data.rel.ro .dynamic .got 

Please provide ALL inputs used to create the bad libpthread-2.7.so.

Reply at: https://bugs.launchpad.net/binutils/+bug/264961/comments/8


On 2009-03-26T12:24:09+00:00 Cvs-commit wrote:

Subject: Bug 6494

CVSROOT:/cvs/src
Module name:src
Changes by: amo...@sourceware.org   2009-03-26 12:23:52

Modified files:
bfd: ChangeLog elf.c 

Log message:
PR 6494
* elf.c (copy_elf_program_header): Do not check that PT_GNU_RELRO
p_filesz and p_memsz are equal.  Use p_memsz as the segment size.
(assign_file_positions_for_non_load_sections): Zap PT_GNU_RELRO
if we don't 

[Bug 783389] Re: not print 11.04 (USB port; HP1020 laserjet); driver install

2011-05-26 Thread fe...@mail.ru
** Tags added: x86-64

** Tags added: amd64
** Tags removed: x86-64

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

Title:
  not print  11.04 (USB port; HP1020 laserjet); driver install

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


[Bug 777936] Re: libdvdread fills memory and crashes when running lsdvd and other tools

2011-05-26 Thread Steffen
I can confirm this error on Ubuntu 10.04 amd64

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

Title:
  libdvdread fills memory and crashes when running lsdvd and other tools

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


[Bug 706089] Re: Frequency scaling doesn't work in current kernels

2011-05-26 Thread fireandfuel
Please post which CPU you have and the contents of the following files -
after trying to scale the frequency:

/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_cur_freq (normally needs root 
privileges to read)
/sys/devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies
/sys/devices/system/cpu/cpu0/cpufreq/scaling_available_governors
/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor

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

Title:
  Frequency scaling doesn't work in current kernels

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


[Bug 788494] [NEW] broadcast does not show anything/ can not load when try to add any account after clicking 'Authenticate'

2011-05-26 Thread Arpit Sharma
Public bug reported:

Binary package hint: gwibber

When I try to add any account for eg, Twitter, and I click on
'Authenticate' button, nothing happens and I am not able to connect.

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

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

Title:
  broadcast does not show anything/ can not load when try to add any
  account after clicking 'Authenticate'

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


[Bug 788486] Re: Could not install vlc-nox during kubuntu 10.10 upgrade

2011-05-26 Thread Jean-Baptiste Lallement
Thanks for taking the time to report this bug and helping to make Ubuntu
better. Could you please add the log files from '/var/log/dist-upgrade/'
to this bug report as separate attachments? Thanks in advance.

** Changed in: update-manager (Ubuntu)
   Status: New = Incomplete

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

Title:
  Could not install vlc-nox during kubuntu 10.10 upgrade

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


[Bug 785178] Re: telepathy-logger takes 99% CPU

2011-05-26 Thread Dariusz Dwornikowski
Sorry you are right. After restart all was fixed.

** Changed in: telepathy-logger (Ubuntu)
   Status: Incomplete = Fix Committed

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

Title:
  telepathy-logger takes 99% CPU

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


[Bug 783904] Re: firefox crashes unity-2d

2011-05-26 Thread Dariusz Dwornikowski
After last updates all is fine now.

** Changed in: flashplugin-nonfree (Ubuntu)
   Status: Incomplete = Fix Released

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

Title:
  firefox crashes unity-2d

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


[Bug 788402] Re: Installing Ubuntu at first time, may be the bug is about language...

2011-05-26 Thread Jean-Baptiste Lallement
Thank you for taking the time to report this bug and helping to make Ubuntu 
better. Unfortunately, we can't fix it because your description didn't include 
enough information.  You may find it helpful to read How to report bugs 
effectively http://www.chiark.greenend.org.uk/~sgtatham/bugs.html. We'd be 
grateful if you would then provide a more complete description of the problem.  
We have instructions on debugging some types of problems at 
http://wiki.ubuntu.com/DebuggingProcedures.
At a minimum, we need:
1. the specific steps or actions you took that caused you to encounter the 
problem,
2. the behavior you expected, and
3. the behavior you actually encountered (in as much detail as possible).
Thanks!

When reporting bugs in the future please use apport, either via the
appropriate application's Help - Report a Problem menu or using
'ubuntu-bug' and the name of the package affected.  You can learn more
about this functionality at https://wiki.ubuntu.com/ReportingBugs.

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

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

Title:
  Installing Ubuntu at first time,may be the bug is about language...

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


[Bug 788377] Re: install crashes

2011-05-26 Thread Jean-Baptiste Lallement
Thanks for your report.

Please attach the files in /var/log/installer/ . Thanks.

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

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

Title:
  install crashes

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


[Bug 780053] Re: system freezes randomly

2011-05-26 Thread Pascal Hartig
As the specific experience seems to differ by hardware: On my notebook
(Samsung 900X3A, Sandybridge GMA chip) it happens really frequently -
given an affected kernel. The freezes are only fractions of a seconds,
but clearly noticeable. 2 - 5 freezes per minute are about usual. Each
of them takes  1s, according to latencytop and dmesg output.

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

Title:
  system freezes randomly

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


[Bug 773901] Re: Unity Qbittorrent tray icon

2011-05-26 Thread florin
BTW: this is not the only program having problems with tray area. One
must kill them to get them usable again.

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

Title:
  Unity Qbittorrent tray icon

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


Re: [Bug 768239] Re: 11.04 Installer crashed, apt configuration problem: InstallStepError: AptSetup failed with code 127

2011-05-26 Thread jkn
Daniel Hahler launch...@thequod.de writes:

 I am not sure, but this is likely a duplicate of bug 658865.

Thanks!

Bug 658865 had info about installer (I knew nothing about it).  So I
made couple more tests.  I used a 8 GB USB stick. It had other files
also, including some Release files from Ubuntu and Debian mirrors.  My
guess is that installer program found those, when looking for archive
from CD. It did not return 'CD not found' when archive test failed.
Instead it returned, according to syslog:

Apr 21 11:51:51 ubuntu apt-setup: warning: /usr/lib/ubiquity/apt-
setup/generators/40cdrom returned error code 1; discarding output

That caused installer to crash.  I verified this by deleting those
extra files from stick.  After that installer worked perfectly!

Perhaps 658865 had same situation.

syslog has:

Oct 12 01:27:31 ubuntu apt-setup: Found label 'Ubuntu 10.10 _Maverick Meerkat_ 
- Release i386 (20101007)'
...
Oct 12 01:29:32 ubuntu apt-setup: warning: 
/usr/lib/ubiquity/apt-setup/generators/40cdrom returned error code 1; 
discarding output

Perhaps he did 'cat cd.image  /dev/usbstick' before using usb-creator.


So perhaps installer cannot handle 'discarding output' situation
correctly.

I deleted extra files from my stick, but I believe I can recreate
situation if needed.

- jkn

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

Title:
  11.04 Installer crashed, apt configuration problem: InstallStepError:
  AptSetup failed with code 127

-- 
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   >