[Bug 282518] Re: error messages from lsscsi

2008-12-07 Thread Christof Schmitt
I did not find a prebuilt package, but i could verify that
lsscsi_0.19.orig.tar.gz with lsscsi_0.19-1.diff.gz and the fix applied
compiles and works as expected:

$ ./lsscsi 
[0:0:0:0]diskATA  SAMSUNG SP1634N  UZ10  -   
[2:0:0:0]cd/dvd  TSSTcorp CD/DVDW SH-S183A SB02  -   

Thanks for the work, Chuck.

regards,

Christof

-- 
error messages from lsscsi
https://bugs.launchpad.net/bugs/282518
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to lsscsi in ubuntu.

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


[Bug 305901] Re: Intrepid gcc -O2 breaks string appending with sprintf(), due to fortify source patch

2008-12-07 Thread Anders Kaseorg
** Also affects: owl (Ubuntu)
   Importance: Undecided
   Status: New

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

** Also affects: nagios-plugins (Ubuntu)
   Importance: Undecided
   Status: New

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

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

-- 
Intrepid gcc -O2 breaks string appending with sprintf(), due to fortify source 
patch
https://bugs.launchpad.net/bugs/305901
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nagios-plugins in ubuntu.

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


[Bug 305901] Re: Intrepid gcc -O2 breaks string appending with sprintf(), due to fortify source patch

2008-12-07 Thread Anders Kaseorg
** Also affects: ctn (Ubuntu)
   Importance: Undecided
   Status: New

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

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

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

** Also affects: audacious-plugins (Ubuntu)
   Importance: Undecided
   Status: New

-- 
Intrepid gcc -O2 breaks string appending with sprintf(), due to fortify source 
patch
https://bugs.launchpad.net/bugs/305901
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nagios-plugins in ubuntu.

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


[Bug 305901] Re: Intrepid gcc -O2 breaks string appending with sprintf(), due to fortify source patch

2008-12-07 Thread Anders Kaseorg
I’m about 8% of the way through my list, and it looks like there might
indeed be a _lot_ of affected Ubuntu packages.  I’ll stop filing bugs
for now and see what happens with these ones.

** Also affects: billard-gl (Ubuntu)
   Importance: Undecided
   Status: New

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

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

-- 
Intrepid gcc -O2 breaks string appending with sprintf(), due to fortify source 
patch
https://bugs.launchpad.net/bugs/305901
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nagios-plugins in ubuntu.

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


[Bug 249824] Re: [intrepid] IPv6 unusable

2008-12-07 Thread jim0112
I can also confirm that Matt's patched versions of bind9 and dnsutils
have resolved the problem for me using Intrepid - thanks!

-- 
[intrepid] IPv6 unusable
https://bugs.launchpad.net/bugs/249824
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to bind9 in ubuntu.

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


[Bug 305901] Re: Intrepid gcc -O2 breaks string appending with sprintf(), due to fortify source patch

2008-12-07 Thread Anders Kaseorg
** Also affects: 4g8 (Ubuntu)
   Importance: Undecided
   Status: New

** Description changed:

  Binary package hint: gcc-4.3
  
  In Hardy and previous releases, one could use statements such as
sprintf(buf, %s %s%d, buf, foo, bar);
  to append formatted text to a buffer buf.  Intrepid’s gcc-4.3, which has 
fortify source turned on by default when compiling with -O2, breaks this 
pattern.  This introduced mysterious bugs into an application I was compiling 
(the BarnOwl IM client).
  
  Test case: gcc -O2 sprintf-test.c -o sprintf-test
  http://web.mit.edu/andersk/Public/sprintf-test.c:
#include stdio.h
char buf[80] = not ;
int main()
{
sprintf(buf, %sfail, buf);
puts(buf);
return 0;
}
  This outputs not fail in Hardy, and fail in Intrepid.
  
  The assembly output shows that the bug has been introduced by replacing
  the sprintf(buf, %sfail, buf) call with __sprintf_chk(buf, 1, 80,
  %sfail, buf).  A workaround is to disable fortify source (gcc
  -U_FORTIFY_SOURCE).
  
  One might argue that this usage of sprintf() is questionable.  I had
  been under the impression that it is valid, and found many web pages
  that agree with me, though I was not able to find an authoritative
  statement either way citing the C specification.  I decided to
  investigate how common this pattern is in real source code.
  
  You can search a source file for instances of it with this regex:
-   perl -ne 'print if m/sprintf\s*\(\s*([^,]*)\s*,\s*%s[^]*\s*,\s*\1\s*,/'
+   pcregrep -M 'sprintf\s*\(\s*([^,]*)\s*,\s*%s[^]*\s*,\s*\1\s*,'
  
  To determine how common the pattern is, I wrote a script to track down 
instances using Google Code Search, and found 2888 matches:
http://web.mit.edu/andersk/Public/sprintf-results
  (For the curious: the script uses a variant of the regex above.  I had to use 
a binary search to emulate backreferences, which aren’t supported by Code 
Search, so the script makes 46188 queries and takes a rather long time to run.  
The source is available at 
http://web.mit.edu/andersk/Public/sprintf-codesearch.py.)
  
  My conclusion is that, whether or not this pattern is technically
  allowed by the C specification, it is common enough that the compiler
  should be fixed, if that is at all possible.

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

-- 
Intrepid gcc -O2 breaks string appending with sprintf(), due to fortify source 
patch
https://bugs.launchpad.net/bugs/305901
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nagios-plugins in ubuntu.

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


[Bug 305901] Re: Intrepid gcc -O2 breaks string appending with sprintf(), due to fortify source patch

2008-12-07 Thread Kees Cook
Given the large number of affected packages, perhaps it is better to fix
the compiler option.  I'm curious to see what upstream thinks of this.

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

-- 
Intrepid gcc -O2 breaks string appending with sprintf(), due to fortify source 
patch
https://bugs.launchpad.net/bugs/305901
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nagios-plugins in ubuntu.

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


[Bug 282287] Re: [intrepid] firefox crashes frequently on Intrepid with SIGABRT

2008-12-07 Thread nanotube
Hi,
My firefox (3.0.4, out of the official repos) on intrepid (fresh install, not 
upgrade) crashes occasionally, and completely silently. it just /disappears/, 
without any messages.

I do not use samba, i have no wins anywhere in my /etc/nsswitch.conf

maybe that means this is a different bug... but i am not sure.

it doesn't even happen necessarily when i'm browsing. i can walk away
from the comp, come back, and firefox is gone. i have noscript and
adblock installed, so pages don't tend to do anything when i'm not
there, so i'd think it shouldn't be crashing when i'm not actively
browsing, at least.

just today, it crashed while i was entering a url into the urlbar, e.g.
no pages were being loaded at the time.

i'd be glad to carry out any diagnostics, just tell me which ones, and
how to do them. :)

since the symptoms are the same, i added this comment to the bug, hope
that's ok.

-- 
[intrepid] firefox crashes frequently on Intrepid with SIGABRT
https://bugs.launchpad.net/bugs/282287
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

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


[Bug 305901] Re: Intrepid gcc -O2 breaks string appending with sprintf(), due to fortify source patch

2008-12-07 Thread Kees Cook
** Bug watch added: Sourceware.org Bugzilla #7075
   http://sourceware.org/bugzilla/show_bug.cgi?id=7075

** Also affects: glibc via
   http://sourceware.org/bugzilla/show_bug.cgi?id=7075
   Importance: Unknown
   Status: Unknown

** Changed in: glibc (Ubuntu)
   Importance: Undecided = High
   Status: New = Confirmed

-- 
Intrepid gcc -O2 breaks string appending with sprintf(), due to fortify source 
patch
https://bugs.launchpad.net/bugs/305901
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nagios-plugins in ubuntu.

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


[Bug 305901] Re: Intrepid gcc -O2 breaks string appending with sprintf(), due to fortify source patch

2008-12-07 Thread Bug Watch Updater
** Changed in: glibc
   Status: Unknown = Invalid

-- 
Intrepid gcc -O2 breaks string appending with sprintf(), due to fortify source 
patch
https://bugs.launchpad.net/bugs/305901
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nagios-plugins in ubuntu.

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


[Bug 279980] Re: php5 using bundled tzdata in hardy?

2008-12-07 Thread Launchpad Bug Tracker
This bug was fixed in the package php5 - 5.2.4-2ubuntu5.4

---
php5 (5.2.4-2ubuntu5.4) hardy-proposed; urgency=low

  * debian/rules:
- Use system tzdata.
  * debian/patches/use_embedded_timezonedb.patch
- Patch taken from intrepid, allows us to default to using the system
  provided timezone database insteam of the one bundled with PHP.
  (LP: #279980)
  * debian/patches/fix-xmlrpc-datetime.diff
- Patch taken from  php CVS, prevents stack smashing when using xmlrpc and 
datetime.
  (LP: #239513)

 -- Chuck Short [EMAIL PROTECTED]   Wed, 22 Oct 2008 13:08:33 +

** Changed in: php5 (Ubuntu Hardy)
   Status: Fix Committed = Fix Released

-- 
php5 using bundled tzdata in hardy?
https://bugs.launchpad.net/bugs/279980
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in ubuntu.

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


[Bug 239513] Re: [SRU] stack smashing detected when calling xmlrpc_set_type

2008-12-07 Thread Launchpad Bug Tracker
This bug was fixed in the package php5 - 5.2.4-2ubuntu5.4

---
php5 (5.2.4-2ubuntu5.4) hardy-proposed; urgency=low

  * debian/rules:
- Use system tzdata.
  * debian/patches/use_embedded_timezonedb.patch
- Patch taken from intrepid, allows us to default to using the system
  provided timezone database insteam of the one bundled with PHP.
  (LP: #279980)
  * debian/patches/fix-xmlrpc-datetime.diff
- Patch taken from  php CVS, prevents stack smashing when using xmlrpc and 
datetime.
  (LP: #239513)

 -- Chuck Short [EMAIL PROTECTED]   Wed, 22 Oct 2008 13:08:33 +

** Changed in: php5 (Ubuntu Hardy)
   Status: Fix Committed = Fix Released

-- 
[SRU] stack smashing detected when calling xmlrpc_set_type 
https://bugs.launchpad.net/bugs/239513
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in ubuntu.

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


[Bug 239513] Re: [SRU] stack smashing detected when calling xmlrpc_set_type

2008-12-07 Thread Martin Pitt
Chuck, please fix this in Jaunty ASAP.

** Changed in: php5 (Ubuntu Jaunty)
 Assignee: (unassigned) = Chuck Short (zulcss)

-- 
[SRU] stack smashing detected when calling xmlrpc_set_type 
https://bugs.launchpad.net/bugs/239513
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in ubuntu.

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


[Bug 305901] Re: Intrepid gcc -O2 breaks string appending with sprintf(), due to fortify source patch

2008-12-07 Thread Kees Cook
Searching all of Ubuntu source in Jaunty:

29 main
0 restricted
182 universe
15 multiverse


** Attachment added: report of search in main
   http://launchpadlibrarian.net/20285489/main.log

-- 
Intrepid gcc -O2 breaks string appending with sprintf(), due to fortify source 
patch
https://bugs.launchpad.net/bugs/305901
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nagios-plugins in ubuntu.

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


[Bug 305901] Re: Intrepid gcc -O2 breaks string appending with sprintf(), due to fortify source patch

2008-12-07 Thread Kees Cook

** Attachment added: report of search in universe
   http://launchpadlibrarian.net/20285495/universe.log

-- 
Intrepid gcc -O2 breaks string appending with sprintf(), due to fortify source 
patch
https://bugs.launchpad.net/bugs/305901
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nagios-plugins in ubuntu.

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


[Bug 305901] Re: Intrepid gcc -O2 breaks string appending with sprintf(), due to fortify source patch

2008-12-07 Thread Kees Cook

** Attachment added: report of search in multiverse
   http://launchpadlibrarian.net/20285502/multiverse.log

-- 
Intrepid gcc -O2 breaks string appending with sprintf(), due to fortify source 
patch
https://bugs.launchpad.net/bugs/305901
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nagios-plugins in ubuntu.

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


[Bug 282518] Re: error messages from lsscsi

2008-12-07 Thread Martin Pitt
Please fix in Jaunty ASAP.

** Changed in: lsscsi (Ubuntu Jaunty)
 Assignee: (unassigned) = Chuck Short (zulcss)

** Changed in: lsscsi (Ubuntu Intrepid)
   Status: New = Fix Committed

** Tags added: verification-needed

-- 
error messages from lsscsi
https://bugs.launchpad.net/bugs/282518
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to lsscsi in ubuntu.

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


[Bug 282518] error messages from lsscsi

2008-12-07 Thread Martin Pitt
Accepted into intrepid-proposed, please test and give feedback here.
Please see https://wiki.ubuntu.com/Testing/EnableProposed for
documentation how to enable and use -proposed. Thank you in advance!

-- 
error messages from lsscsi
https://bugs.launchpad.net/bugs/282518
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to lsscsi in ubuntu.

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


[Bug 211890] Re: [Hardy Beta] Windows shared folders not always visible.

2008-12-07 Thread Daniel T Chen
Is this symptom still reproducible in 8.10 or 9.04?

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

-- 
[Hardy Beta] Windows shared folders not always visible.
https://bugs.launchpad.net/bugs/211890
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

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


[Bug 305901] Re: Intrepid gcc -O2 breaks string appending with sprintf(), due to fortify source patch

2008-12-07 Thread Matthias Klose
 You can search a source file for instances of it with this regex:
  pcregrep -M 'sprintf\s*\(\s*([^,]*)\s*,\s*%s[^]*\s*,\s*\1\s*,'

the regexp doesn't search for snprintf, and doesn't look for functions
spanning more than one line.

 I’ll stop filing bugs for now and see what happens with these ones.

the bug reports are ok, but separate reports with a common tag should be
filed instead.

-- 
Intrepid gcc -O2 breaks string appending with sprintf(), due to fortify source 
patch
https://bugs.launchpad.net/bugs/305901
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nagios-plugins in ubuntu.

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


[Bug 249824] Re: [intrepid] IPv6 unusable

2008-12-07 Thread Martin Pitt
Accepted into intrepid-proposed, please test and give feedback here.
Please see https://wiki.ubuntu.com/Testing/EnableProposed for
documentation how to enable and use -proposed. Thank you in advance!

** Changed in: bind9 (Ubuntu Intrepid)
   Status: New = Fix Committed

** Tags added: verification-needed

-- 
[intrepid] IPv6 unusable
https://bugs.launchpad.net/bugs/249824
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to bind9 in ubuntu.

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


[Bug 227613] Re: [SRU] SIGSEGV in bacula-fd

2008-12-07 Thread Sergio Barjola
I have test the hardy proposed package and I cannot reproduce it.

The default hardy package, bacula-fd crash 1/2 of times that I tested.
With the proposed package, I've test 10 times and it not crash.

ii  bacula-fd   2.2.8-5ubuntu7.2

-- 
[SRU] SIGSEGV in bacula-fd
https://bugs.launchpad.net/bugs/227613
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to bacula in ubuntu.

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


[Bug 305901] Re: Intrepid gcc -O2 breaks string appending with sprintf(), due to fortify source patch

2008-12-07 Thread Anders Kaseorg
 pcregrep -M 'sprintf\s*\(\s*([^,]*)\s*,\s*%s[^]*\s*,\s*\1\s*,'

 the regexp doesn't search for snprintf, and doesn't look for functions 
 spanning more than one line.

It does with pcregrep -M.  For example,

$ pcregrep -M 'sprintf\s*\(\s*([^,]*)\s*,\s*%s[^]*\s*,\s*\1\s*,' \
  linux-2.6/arch/x86/kernel/cpu/intel_cacheinfo.c
ret += sprintf(buf, %sEntry: %d\n, buf, i);
ret += sprintf(buf, %sReads:  %s\tNew Entries: %s\n,  
buf,
ret += sprintf(buf, %sSubCache: %x\tIndex: %x\n,
buf, (reg  0x3)  16, reg  0xfff);

However, it appears that the multiline results did not show up in Kees’
reports, so the reports should be rerun with pcregrep -M if that is
possible.

-- 
Intrepid gcc -O2 breaks string appending with sprintf(), due to fortify source 
patch
https://bugs.launchpad.net/bugs/305901
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nagios-plugins in ubuntu.

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


[Bug 305901] Re: Intrepid gcc -O2 breaks string appending with sprintf(), due to fortify source patch

2008-12-07 Thread Anders Kaseorg
For snprintf, use

pcregrep -M 'snprintf\s*\(\s*([^,]*)\s*,[^,]*,\s*%s[^]*\s*,\s*\1\s*,'
$@

-- 
Intrepid gcc -O2 breaks string appending with sprintf(), due to fortify source 
patch
https://bugs.launchpad.net/bugs/305901
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nagios-plugins in ubuntu.

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


[Bug 305901] Re: Intrepid gcc -O2 breaks string appending with sprintf(), due to fortify source patch

2008-12-07 Thread Kees Cook
yeah, my search was glitched.  New logs attached only count difference
was universe, which went to 187.

** Attachment added: main.log
   http://launchpadlibrarian.net/20288238/main.log

-- 
Intrepid gcc -O2 breaks string appending with sprintf(), due to fortify source 
patch
https://bugs.launchpad.net/bugs/305901
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nagios-plugins in ubuntu.

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


[Bug 305901] Re: Intrepid gcc -O2 breaks string appending with sprintf(), due to fortify source patch

2008-12-07 Thread Kees Cook

** Attachment added: universe.log
   http://launchpadlibrarian.net/20288259/universe.log

-- 
Intrepid gcc -O2 breaks string appending with sprintf(), due to fortify source 
patch
https://bugs.launchpad.net/bugs/305901
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nagios-plugins in ubuntu.

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


[Bug 305901] Re: Intrepid gcc -O2 breaks string appending with sprintf(), due to fortify source patch

2008-12-07 Thread Kees Cook

** Attachment added: multiverse.log
   http://launchpadlibrarian.net/20288264/multiverse.log

** Attachment removed: report of search in main

   http://launchpadlibrarian.net/20285489/main.log

** Attachment removed: report of search in universe

   http://launchpadlibrarian.net/20285495/universe.log

** Attachment removed: report of search in multiverse

   http://launchpadlibrarian.net/20285502/multiverse.log

-- 
Intrepid gcc -O2 breaks string appending with sprintf(), due to fortify source 
patch
https://bugs.launchpad.net/bugs/305901
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nagios-plugins in ubuntu.

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


[Bug 227613] Re: [SRU] SIGSEGV in bacula-fd

2008-12-07 Thread Martin Pitt
** Tags added: verification-done

** Tags removed: verification-needed

-- 
[SRU] SIGSEGV in bacula-fd
https://bugs.launchpad.net/bugs/227613
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to bacula in ubuntu.

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


[Bug 306134] [NEW] package snmpd 5.4.1~dfsg-7.1ubuntu6.1 failed to install/upgrade: subprocess post-installation script returned error exit status 127

2008-12-07 Thread maswafron
Public bug reported:

Binary package hint: snmpd

ubuntu 8.10
Linux laptop 2.6.27-10-generic #1 SMP Fri Nov 21 19:19:18 UTC 2008 x86_64 
GNU/Linux
5.4.1~dfsg-7.1ubuntu6.1

ProblemType: Package
Architecture: amd64
DistroRelease: Ubuntu 8.10
ErrorMessage: subprocess post-installation script returned error exit status 127
NonfreeKernelModules: nvidia
Package: snmpd 5.4.1~dfsg-7.1ubuntu6.1
SourcePackage: net-snmp
Title: package snmpd 5.4.1~dfsg-7.1ubuntu6.1 failed to install/upgrade: 
subprocess post-installation script returned error exit status 127
Uname: Linux 2.6.27-10-generic x86_64

** Affects: net-snmp (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package

-- 
package snmpd 5.4.1~dfsg-7.1ubuntu6.1 failed to install/upgrade: subprocess 
post-installation script returned error exit status 127
https://bugs.launchpad.net/bugs/306134
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to net-snmp in ubuntu.

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


[Bug 306134] Re: package snmpd 5.4.1~dfsg-7.1ubuntu6.1 failed to install/upgrade: subprocess post-installation script returned error exit status 127

2008-12-07 Thread maswafron

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

** Attachment added: DpkgTerminalLog.gz
   http://launchpadlibrarian.net/20294708/DpkgTerminalLog.gz

-- 
package snmpd 5.4.1~dfsg-7.1ubuntu6.1 failed to install/upgrade: subprocess 
post-installation script returned error exit status 127
https://bugs.launchpad.net/bugs/306134
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to net-snmp in ubuntu.

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


[Bug 282518] Re: error messages from lsscsi

2008-12-07 Thread Christof Schmitt
Just tested lsscsi_0.19-1ubuntu1_i386.deb. This package also works fine,
the output is the same as in the test before.

-- 
error messages from lsscsi
https://bugs.launchpad.net/bugs/282518
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to lsscsi in ubuntu.

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


[Bug 298484] Re: regression 8.04 to 8.10: Quadro NVS 140M: Xorg fails to start with TwinView enabled

2008-12-07 Thread hce
xorg log with twinview enabled and only the LCD panel connected, X fails
to start

** Attachment added: Xorg.0.log_gdm_1monitor_timeout
   http://launchpadlibrarian.net/20283537/Xorg.0.log_gdm_1monitor_timeout

-- 
regression 8.04 to 8.10: Quadro NVS 140M: Xorg fails to start with TwinView 
enabled
https://bugs.launchpad.net/bugs/298484
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 298484] Re: regression 8.04 to 8.10: Quadro NVS 140M: Xorg fails to start with TwinView enabled

2008-12-07 Thread hce
xorg log with twinview enabled and the LCD panel and an external LCD
monitor connected, X fails to start

might it be a shorter X server startup timeout in gdm?

** Attachment added: Xorg.0.log_gdm_2monitor_timeout
   http://launchpadlibrarian.net/20283553/Xorg.0.log_gdm_2monitor_timeout

-- 
regression 8.04 to 8.10: Quadro NVS 140M: Xorg fails to start with TwinView 
enabled
https://bugs.launchpad.net/bugs/298484
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 282287] Re: [intrepid] firefox crashes frequently on Intrepid with SIGABRT

2008-12-07 Thread nanotube
Hi,
My firefox (3.0.4, out of the official repos) on intrepid (fresh install, not 
upgrade) crashes occasionally, and completely silently. it just /disappears/, 
without any messages.

I do not use samba, i have no wins anywhere in my /etc/nsswitch.conf

maybe that means this is a different bug... but i am not sure.

it doesn't even happen necessarily when i'm browsing. i can walk away
from the comp, come back, and firefox is gone. i have noscript and
adblock installed, so pages don't tend to do anything when i'm not
there, so i'd think it shouldn't be crashing when i'm not actively
browsing, at least.

just today, it crashed while i was entering a url into the urlbar, e.g.
no pages were being loaded at the time.

i'd be glad to carry out any diagnostics, just tell me which ones, and
how to do them. :)

since the symptoms are the same, i added this comment to the bug, hope
that's ok.

-- 
[intrepid] firefox crashes frequently on Intrepid with SIGABRT
https://bugs.launchpad.net/bugs/282287
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 267401] Re: [intrepid] fail to connect after resume with rt73usb

2008-12-07 Thread Id2ndR
You may look at bug 274734 and try to use the attachement I made for
zd1211 module. You only need to change the name of the module in the
script.

-- 
[intrepid] fail to connect after resume with rt73usb
https://bugs.launchpad.net/bugs/267401
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 210634] Re: pulseaudio gets stuck if the network goes down

2008-12-07 Thread Daniel T Chen
Thanks, please reopen if reproducible in 8.10 or 9.04.

** Changed in: pulseaudio (Ubuntu)
   Status: Incomplete = Fix Released

-- 
pulseaudio gets stuck if the network goes down
https://bugs.launchpad.net/bugs/210634
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 306020] [NEW] At start, upper and lower bars do not appear

2008-12-07 Thread alberto
Public bug reported:

After I insert my username and password, the wallpaper appears without
the upper and lower panel. I can to connect internet but it is very
difficoult to describe what I do.


ProblemType: Bug
Architecture: amd64
Date: Sun Dec  7 18:31:43 2008
DistroRelease: Ubuntu 8.04
ExecutablePath: /usr/bin/nautilus
NonfreeKernelModules: nvidia
Package: nautilus 1:2.22.5.1-0ubuntu1
PackageArchitecture: amd64
ProcEnviron:
 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
 LANG=it_IT.UTF-8
 SHELL=/bin/bash
SourcePackage: nautilus
Uname: Linux 2.6.24-22-generic x86_64

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


** Tags: apport-bug

-- 
At start, upper and lower bars do not appear 
https://bugs.launchpad.net/bugs/306020
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 306020] Re: at start do not appears upper and lower bars

2008-12-07 Thread alberto

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

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

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

-- 
At start, upper and lower bars do not appear 
https://bugs.launchpad.net/bugs/306020
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 305970] Re: no sound usb speakers+mp3 player

2008-12-07 Thread goto
Thank you for taking the time to report this bug and helping to make
Ubuntu better. Please open for the second problem a separate bug report.
And unfortunately we can't fix the second one without more information.

Please include the information requested from the Reporting Sound Bugs
section of https://wiki.ubuntu.com/DebuggingSoundProblems as separate
attachments.

** Changed in: system-tools-backends (Ubuntu)
   Status: New = Incomplete

-- 
no sound usb speakers+mp3 player
https://bugs.launchpad.net/bugs/305970
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 305901] Re: Intrepid gcc -O2 breaks string appending with sprintf(), due to fortify source patch

2008-12-07 Thread Kees Cook
** Bug watch added: Sourceware.org Bugzilla #7075
   http://sourceware.org/bugzilla/show_bug.cgi?id=7075

** Also affects: glibc via
   http://sourceware.org/bugzilla/show_bug.cgi?id=7075
   Importance: Unknown
   Status: Unknown

** Changed in: glibc (Ubuntu)
   Importance: Undecided = High
   Status: New = Confirmed

-- 
Intrepid gcc -O2 breaks string appending with sprintf(), due to fortify source 
patch
https://bugs.launchpad.net/bugs/305901
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 291760] Re: network-manager roams to (none) ((none))

2008-12-07 Thread Bob Wiegand
I also see this problem.

Ubuntu 8.10
Dell laptop with  Broadcom Corporation BCM4328 802.11a/b/g/n (rev 03)
using wl driver

-- 
network-manager roams to (none) ((none))  
https://bugs.launchpad.net/bugs/291760
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 291760] Re: network-manager roams to (none) ((none))

2008-12-07 Thread Bob Wiegand
I also see this problem.

Ubuntu 8.10
Dell laptop with  Broadcom Corporation BCM4328 802.11a/b/g/n (rev 03)
using wl driver

-- 
network-manager roams to (none) ((none))  
https://bugs.launchpad.net/bugs/291760
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 286838] Re: xfce4-places-plugin crashed with SIGSEGV in g_type_check_instance_cast()

2008-12-07 Thread Charlie Kravetz
Thank you for taking the time to report this bug and helping to make
Ubuntu better. Was this a pre-release version of Ubuntu? If so, the
issue that you reported is one that should be reproducible with the
final release of Intrepid Ibex 8.10. We were wondering is this still an
issue for you? If this was a pre-release (Beta, RC), can you try with
latest Ubuntu release?

Is there a way for me to reproduce this issue?

Thanks again and we appreciate your help.

** Visibility changed to: Public

** Changed in: xfce4-places-plugin (Ubuntu)
   Status: New = Incomplete

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

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


[Bug 280534] Re: [intrepid] Wine=1.1.6 + PulseAudio : alsa is broken

2008-12-07 Thread Id2ndR
Wine 1.1.10 is out, and as others said in the wine's bug tracker, the sound is 
worse than in 1.1.9.
However I noticed with pavucontrol that there is no cuttering in the wine's 
sound output as it was before.

-- 
[intrepid] Wine=1.1.6 + PulseAudio : alsa is broken
https://bugs.launchpad.net/bugs/280534
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 276148] Re: Compiz wobbly plugin let windows going under top gnome-panel

2008-12-07 Thread Saïvann Carignan
Thanks, I will give feedback when the alpha 2 will be released.

-- 
Compiz wobbly plugin let windows going under top gnome-panel
https://bugs.launchpad.net/bugs/276148
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 211464] Re: 0launch crashed with IOError in update_user_overrides()

2008-12-07 Thread Daniel T Chen
Is this symptom still reproducible in 8.10 or 9.04?

** Changed in: zeroinstall-injector (Ubuntu)
   Status: New = Incomplete

** Visibility changed to: Public

-- 
0launch crashed with IOError in update_user_overrides()
https://bugs.launchpad.net/bugs/211464
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 211458] Re: Romanian translation for S-J in the Applications menu is wrong

2008-12-07 Thread Daniel T Chen
Is this symptom still reproducible in 8.10 or 9.04?

** Changed in: language-pack-ro (Ubuntu)
   Status: New = Incomplete

-- 
Romanian translation for S-J in the Applications menu is wrong
https://bugs.launchpad.net/bugs/211458
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 211444] Re: mythfrontend.real crashed with SIGSEGV in memset()

2008-12-07 Thread Daniel T Chen
Is this symptom still reproducible in 8.10 or 9.04?

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

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

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


[Bug 306020] Re: at start do not appears upper and lower bars

2008-12-07 Thread Patrick Kilgore
** Changed in: gnome-panel (Ubuntu)
Sourcepackagename: None = gnome-panel

** Summary changed:

- at start do not appears upper and lower bars
+ At start, upper and lower bars do not appear

** Description changed:

- after insert username and password,appear the wallpaper without the upper and 
lower bars,I can to connect internet but it is very difficoult to describe what 
I do.
- UBUNTU 8.04
+ After I insert my username and password, the wallpaper appears without
+ the upper and lower panel. I can to connect internet but it is very
+ difficoult to describe what I do.
+ 
  
  ProblemType: Bug
  Architecture: amd64
  Date: Sun Dec  7 18:31:43 2008
  DistroRelease: Ubuntu 8.04
  ExecutablePath: /usr/bin/nautilus
  NonfreeKernelModules: nvidia
  Package: nautilus 1:2.22.5.1-0ubuntu1
  PackageArchitecture: amd64
  ProcEnviron:
   PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
   LANG=it_IT.UTF-8
   SHELL=/bin/bash
  SourcePackage: nautilus
  Uname: Linux 2.6.24-22-generic x86_64

-- 
At start, upper and lower bars do not appear 
https://bugs.launchpad.net/bugs/306020
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 306010] Re: After logout first login breaks X, second works (kdm)

2008-12-07 Thread Jonathan Thomas
Could you cause X to crash, then log in normally, and paste the
/var/log/Xorg.0.log.old file to this bug report? Thanks.

** Changed in: kdebase-workspace (Ubuntu)
   Status: New = Incomplete

-- 
After logout first login breaks X, second works (kdm)
https://bugs.launchpad.net/bugs/306010
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to kdebase-workspace in ubuntu.

-- 
kubuntu-bugs mailing list
[EMAIL PROTECTED]
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs


[Bug 306004] Re: Samsung CLP-315 printer driver doesn't work

2008-12-07 Thread Patrick Kilgore
** Changed in: cups (Ubuntu)
Sourcepackagename: None = cups

-- 
Samsung CLP-315 printer driver doesn't work
https://bugs.launchpad.net/bugs/306004
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 305962] Re: with kernel 2.6.27 laptop does not power off when shutting down

2008-12-07 Thread goto
*** This bug is a duplicate of bug 304566 ***
https://bugs.launchpad.net/bugs/304566

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

** This bug has been marked a duplicate of bug 304566
   [intrepid] system doesn't shutdown properly

-- 
with kernel 2.6.27 laptop does not power off when shutting down
https://bugs.launchpad.net/bugs/305962
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 304566] Re: [intrepid] system doesn't shutdown properly

2008-12-07 Thread goto
Thank you for taking the time to report this bug and helping to make
Ubuntu better. Unfortunately we can't fix it without more information.

Please include the information requested at
https://wiki.ubuntu.com/DebuggingACPI as separate attachments.

Confirmed due to duplicates.

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

-- 
[intrepid] system doesn't shutdown properly
https://bugs.launchpad.net/bugs/304566
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 304005] Re: Firefox 3 plugin installer - missing translation

2008-12-07 Thread Saïvann Carignan
Gabriel Ruiz : The file is already well translated in many languages.
The problem is that for a unknown reason, the result is still not
translated.

-- 
Firefox 3 plugin installer - missing translation
https://bugs.launchpad.net/bugs/304005
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 303429] Re: hd limited to udma33, thinkpad t23

2008-12-07 Thread TuxfarmHH
Hello

found a workaround by forcing the 80c. But the problem is already an
existing bug in the kernel, the cable detection is messed up.

[EMAIL PROTECTED]:~$ cat /etc/modprobe.d/options 
# XXX: Ignore HPA by default. Needs to be revisted in jaunty
#options libata ignore_hpa=1
options libata force=80c


[5.132296] ata_piix :00:1f.1: version 2.12
[5.132320] ata_piix :00:1f.1: enabling device (0005 - 0007)
[5.132338] ata_piix :00:1f.1: PCI INT A - Link[LNKC] - GSI 9 (level, 
low) - IRQ 9
[5.132424] ata_piix :00:1f.1: setting latency timer to 64
[5.140062] scsi0 : ata_piix
[5.140448] scsi1 : ata_piix
[5.142950] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x1860 irq 14
[5.142958] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x1868 irq 15
[5.304389] ata1: FORCE: cable set to 80c
[5.304425] ata1.00: ATA-8: TS8GSSD25-S, FW0625, max UDMA/100
[5.304432] ata1.00: 15604848 sectors, multi 0: LBA 
[5.312346] ata1.00: configured for UDMA/100
[5.476344] ata2: FORCE: cable set to 80c

Now the expensive slc ssd runs at full speed.

[EMAIL PROTECTED]:/home/eric# hdparm -tT /dev/sda5
/dev/sda5:
 Timing cached reads:   436 MB in  2.01 seconds = 217.37 MB/sec
 Timing buffered disk reads:  184 MB in  3.05 seconds =  60.40 MB/sec

Meantime i asked the transcend support if there is a known error with
thinkpad bios, they dont know about such behaviour.

Bye
Eric

-- 
hd limited to udma33, thinkpad t23
https://bugs.launchpad.net/bugs/303429
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 211556] Re: dmesg spam from updated iwl driver

2008-12-07 Thread Daniel T Chen
*** This bug is a duplicate of bug 191388 ***
https://bugs.launchpad.net/bugs/191388

** This bug has been marked a duplicate of bug 191388
   syslog is spammed with  wme:wme_qdiscop_enqueue ht_queue=4,queue=2 pool=0xF 
qdisc=81007c4548c0 on hardy

-- 
dmesg spam from updated iwl driver
https://bugs.launchpad.net/bugs/211556
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 211524] Re: mythfilldatabase crashed with SIGSEGV in QMutex::lock()

2008-12-07 Thread Daniel T Chen
Is this symptom still reproducible in 8.10 or 9.04?

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

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

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


[Bug 211486] Re: Bastille buttons missing on screen resolution 800X600 or less

2008-12-07 Thread Daniel T Chen
Is this symptom still reproducible in 8.10 or 9.04?

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

-- 
Bastille buttons missing on screen resolution 800X600 or less
https://bugs.launchpad.net/bugs/211486
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 211467] Re: bbc weather report viewed in realplayer crashes

2008-12-07 Thread Daniel T Chen
Is this symptom still reproducible in 8.10 or 9.04?

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

-- 
bbc weather report viewed in realplayer crashes
https://bugs.launchpad.net/bugs/211467
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 1] Re: Microsoft has a majority market share

2008-12-07 Thread thegizmoguy
Ubuntu is clearly in competition with Microsoft or this bug thread
wouldn't exist!

There is a lot of crappy hardware out there !

Yes, I agree with you here.  Except Ubuntu/Linux needs to start playing
in the hardware world instead of waiting for the hardware world to play
with them.  The problems that I described can likely be replicated on
dozens of other systems that have been mass produced by the big 3
vendors.  With a roughly 3% market share, I doubt Linux will ever in the
near future be able to have market-power in the way that you speak of.

Ask your tech if he/she uses Linux, all of the
good ones do and many feel that UBUNTU/GNOME is over simplified (I
disagree)

Well, I am what you would call at the power user/tech.  All of my
comments are from (me) who DOES research, hunt down, trouble shoot, etc.
I still don't understand why so many people believe that you must be
more skilled just because you can memorize a million commands to run
from the terminal when Microsoft simplified the process with
configuration utilities and Properties menus.  For example, it would
be absurd within windows if one had to start modifying the registry and
manually adding dll files to get a wireless card working.  Yet, in
Ubuntu, every thing that I wanted to do configuration wise felt like I
had to hack the entire registry of config files via the terminal.
(I'm not the only one that mentions this), but things that shouldn't be
THAT difficult to do in Ubuntu require hours of googling and tutorials
to actually accomplishothers mentioned setting up DSL connections
required an inordinate amount of work.

Now because I'm actually trying to adopt Linux, I've been willing to
overlook that to a certain extent, but there is a reason I'm typing this
message in XP again and not Ubuntu.  I don't feel hindered in XP, I feel
like the computer works for me and not me for the computer.  In Ubuntu
it's vice versa.  Sure Ubuntu has speed and security benefits (and other
aesthetic benefits), but a well managed and configured XP box can get
very close to Ubuntu in those aspects.  I've just been looking to adopt
Linux since Windows 7 is looking to be a huge flop and I can't stay with
XP for another 4 years.

So in summation, Ubuntu (and linux in general) needs to get out of the
infant stage where only geeks that have nothing else to do can use it,
configure it, and manage it before it can ever become serious
competition to Windows.  Now I'm a geek, and that's why I've even given
Ubuntu (and OpenSUSE, and Mandriva, and Kubuntu) a chance, but I have
other things to do besides spending (literally 6 hours yesterday)
trying to get simple things done that I could do in XP within 2 hours.
Would Ubuntu probably work much better on my desktopyou betbut
you can't neglect the vast laptop user base that uses proprietary and
customized hardware.

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

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


[Bug 306022] [NEW] Panics while using iwlagn wifi on some networks

2008-12-07 Thread Matt Zimmerman
Public bug reported:

While away from home, I've been experiencing occasional kernel panics
(flashing caps lock) while using wifi.  It seems to be related to which
wifi network I associate with.  This one triggers the panics:

  Cell 10 - Address: 00:1F:F3:F8:9D:C7
ESSID:Canonical
Mode:Master
Channel:11
Frequency:2.462 GHz (Channel 11)
Quality=49/100  Signal level:-79 dBm  Noise level=-127 dBm
Encryption key:on
IE: WPA Version 1
Group Cipher : TKIP
Pairwise Ciphers (1) : TKIP
Authentication Suites (1) : PSK
IE: IEEE 802.11i/WPA2 Version 1
Group Cipher : TKIP
Pairwise Ciphers (2) : CCMP TKIP
Authentication Suites (1) : PSK
IE: Unknown: 
2D1A2C021700
Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 6 Mb/s
  9 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s; 36 Mb/s
  48 Mb/s; 54 Mb/s
Extra:tsf=0031d1657237
Extra: Last beacon: 2416ms ago

while this one does not:

  Cell 11 - Address: 00:03:52:A4:43:B0
ESSID:Domain Hotel
Mode:Master
Channel:11
Frequency:2.462 GHz (Channel 11)
Quality=79/100  Signal level:-55 dBm  Noise level=-127 dBm
Encryption key:off
Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 6 Mb/s
  9 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s; 36 Mb/s
  48 Mb/s; 54 Mb/s
Extra:tsf=012c45ba0181
Extra: Last beacon: 2396ms ago


ProblemType: Bug
Architecture: amd64
DistroRelease: Ubuntu 8.10
Package: linux-image-2.6.27-9-generic 2.6.27-9.19
ProcCmdLine: root=UUID=305dde78-d20a-4248-aaf4-09447b7c5791 ro quiet splash
ProcEnviron:
 LC_COLLATE=C
 
PATH=/home/username/bin:/usr/lib/ccache:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/sbin:/usr/sbin:/usr/games:/usr/lib/surfraw
 LANG=en_US.UTF-8
 SHELL=/bin/zsh
ProcVersionSignature: Ubuntu 2.6.27-9.19-generic
SourcePackage: linux

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


** Tags: apport-bug

-- 
Panics while using iwlagn wifi on some networks
https://bugs.launchpad.net/bugs/306022
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 306022] Re: [regression in -proposed?] Panics while using iwlagn wifi

2008-12-07 Thread Matt Zimmerman

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

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

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

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

** Attachment added: LsUsb.txt
   http://launchpadlibrarian.net/20283722/LsUsb.txt

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

** Attachment added: ProcCpuInfo.txt
   http://launchpadlibrarian.net/20283724/ProcCpuInfo.txt

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

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

-- 
Panics while using iwlagn wifi on some networks
https://bugs.launchpad.net/bugs/306022
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 306021] [NEW] gnome-system-log tells /var/log/apt/term.log is not a log file

2008-12-07 Thread Shirish Agarwal
Public bug reported:

Binary package hint: gnome-utils

I tried to view /var/log/apt/term.log through System  Administration 
System Log . While it shows me all the logs shows if I try to see
/var/log/apt/term.log it says  /var/log/apt/term.log is not a log file.

ProblemType: Bug
Architecture: i386
DistroRelease: Ubuntu 8.10
Package: gnome-utils 2.24.1-0ubuntu1
ProcEnviron:
 SHELL=/bin/bash
 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
 LANG=en_IN
SourcePackage: gnome-utils
Uname: Linux 2.6.27-10-generic i686

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


** Tags: apport-bug

-- 
gnome-system-log tells /var/log/apt/term.log is not a log file
https://bugs.launchpad.net/bugs/306021
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 306021] Re: gnome-system-log tells /var/log/apt/term.log is not a log file

2008-12-07 Thread Shirish Agarwal

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

-- 
gnome-system-log tells /var/log/apt/term.log is not a log file
https://bugs.launchpad.net/bugs/306021
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 306021] Re: gnome-system-log tells /var/log/apt/term.log is not a log file

2008-12-07 Thread Shirish Agarwal

** Attachment added: systemlog.png
   http://launchpadlibrarian.net/20283736/systemlog.png

-- 
gnome-system-log tells /var/log/apt/term.log is not a log file
https://bugs.launchpad.net/bugs/306021
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 305933] Re: Sound effects (alert, warning, etc.) not functioning

2008-12-07 Thread Miloš Mandarić
*** This bug is a duplicate of bug 273507 ***
https://bugs.launchpad.net/bugs/273507

** Changed in: libcanberra (Ubuntu)
Sourcepackagename: linux = libcanberra

** This bug has been marked a duplicate of bug 273507
   No sound effects play when play sound effects when buttons are clicked is 
enabled

-- 
Sound effects (alert, warning, etc.) not functioning
https://bugs.launchpad.net/bugs/305933
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 305907] Re: Complete system freeze when trying to connect to WPA2 network

2008-12-07 Thread Miloš Mandarić
sudo lspci -nnvv  lspci_nnvv.log
and attach that file here

-- 
Complete system freeze when trying to connect to WPA2 network
https://bugs.launchpad.net/bugs/305907
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 305901] Re: Intrepid gcc -O2 breaks string appending with sprintf(), due to fortify source patch

2008-12-07 Thread Bug Watch Updater
** Changed in: glibc
   Status: Unknown = Invalid

-- 
Intrepid gcc -O2 breaks string appending with sprintf(), due to fortify source 
patch
https://bugs.launchpad.net/bugs/305901
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 301506] Re: HID input not working after upgrade to Ibex

2008-12-07 Thread grncdr
Some more investigation seems to point at the new evdev driver as the
culprit. I attempted to use a USB gamepad as an HID device, and had the
same result, and also the interesting behaviour that the joystick was
controlling my mouse cursor. This led me to this bug:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/274203

After using the FDI workaround listed in this comment:
https://bugs.launchpad.net/ubuntu/+source/xorg-
server/+bug/274203/comments/78, I can now access the gamepad as an HID
device in chuck like before. So it seems that evdev is perhaps a bit
zealous in locking the device and prevents other user-land applications
from receiving the HID messages directly.

-- 
HID input not working after upgrade to Ibex
https://bugs.launchpad.net/bugs/301506
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 295103] Re: very slow boot after upgrade to 8.10

2008-12-07 Thread Lassaad Ben Saad
The bug is still here :( it was not resolved by the lastest updates...

-- 
very slow boot after upgrade to 8.10
https://bugs.launchpad.net/bugs/295103
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 284309] Re: [Xubuntu][Intrepid] wrong resolution with ATI Rage Mobility M3 AGP 2x (rev 02)

2008-12-07 Thread Åke Nordin
The problem with my Dell HCXD50J seems to be related to the
autoconfiguration of X getting very conservative acceptable values for
hsync. I wonder if the probing failures (i. e. get-edid reporting errors
and flagging the result as untrustworthy) results in the upper limit of
hsync being as low as 37.90 kHz?

Anyway, adding HorizSync 31.50-50.00 to the Monitor section of
xorg.conf resolved the issue for me. diff -u of xorg.conf(-orig) and new
Xorg.0.log attached in new compressed tarball which unpacks adjacent to
the old one.

** Attachment added: Diff of xorg.conf (HorizSync) and Xorg.0.log with 
HorizSync up to 50 kHz
   http://launchpadlibrarian.net/20283748/284309-4.tgz

-- 
[Xubuntu][Intrepid] wrong resolution with ATI Rage Mobility M3 AGP 2x (rev 02)
https://bugs.launchpad.net/bugs/284309
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 211582] Re: Would be great to have Squeak 3.10 for hardy!

2008-12-07 Thread Daniel T Chen
** Changed in: squeak-image3.9 (Ubuntu)
   Importance: Undecided = Wishlist

-- 
Would be great to have Squeak 3.10 for hardy!
https://bugs.launchpad.net/bugs/211582
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 187383] Re: System monitor causes Xorg to consume 100% CPU

2008-12-07 Thread goto
Would it make sense to open an Xorg bug report for this?

-- 
System monitor causes Xorg to consume 100% CPU
https://bugs.launchpad.net/bugs/187383
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 185469] Re: high cpu load because of JavaScript

2008-12-07 Thread goto
I reopen the bug for firefox, because other browsers don't have this
bug, so firefox causes this. If anyone knows better, please correct.

Would it make sense to open an Xorg bug for this?

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

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

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


[Bug 306023] [NEW] gedit loses syntax highlighting when a large file is opened.

2008-12-07 Thread Chetan Kunte
Public bug reported:

Binary package hint: gedit

gedit loses syntax highlighting when a large file is opened. The
behaviour is funny. When I open a MySQL file, I can see the syntax
highlighting, for a typical 4MB size .sql file. But as soon as I begin
to scroll down or page down, the highlighting vanishes. This is very
frustrating---since color really helps me see the code better. Please
help.

ProblemType: Bug
Architecture: i386
DistroRelease: Ubuntu 8.10
ExecutablePath: /usr/bin/gedit
Package: gedit 2.24.2-0ubuntu1
ProcEnviron:
 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: gedit
Uname: Linux 2.6.27-9-generic i686

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


** Tags: apport-bug

-- 
gedit loses syntax highlighting when a large file is opened.
https://bugs.launchpad.net/bugs/306023
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 306023] Re: gedit loses syntax highlighting when a large file is opened.

2008-12-07 Thread Chetan Kunte

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

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

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

-- 
gedit loses syntax highlighting when a large file is opened.
https://bugs.launchpad.net/bugs/306023
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 305790] Re: MIR - move to main for openoffice.org 3 build-depends

2008-12-07 Thread Martin Pitt
Matthias Klose [2008-12-07 17:23 -]:
 yes, but we need the MIRs anyway.

Context: Some of those were already reviewed for hardy, and many sound
trivial. We agreed that we can process the easy ones with just the
normal review that ~ubuntu-mir does anyway, and set the ones to
needsinfo which raise questions or look maintenance intense.

-- 
MIR - move to main for openoffice.org 3 build-depends
https://bugs.launchpad.net/bugs/305790
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 305660] Re: Applications Add/Remove... Empty

2008-12-07 Thread goto
** Changed in: gnome-app-install (Ubuntu)
   Status: New = Incomplete

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

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


[Bug 285392] Re: Softreset failed (device not ready)

2008-12-07 Thread goto
This bug seems to occur only on Gigabyte mainboards.

-- 
Softreset failed (device not ready)
https://bugs.launchpad.net/bugs/285392
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 306022] Re: Panics while using iwlagn wifi on some networks

2008-12-07 Thread Matt Zimmerman
The fact that I saw this after the upgrade seems to have been
incidental.  I've now reproduced the same problem on 2.6.27-9.19 if I
use the same wifi network.

I don't think this is the same as bug 276990 because 1) this isn't an
802.11n network, and 2) it clearly is not fixed in 2.6.27-10.20.

I'm attaching complete output from sudo iwlist wlan0 scan

** Summary changed:

- [regression in -proposed?] Panics while using iwlagn wifi
+ Panics while using iwlagn wifi on some networks

** Description changed:

- After updating to 2.6.27-10.20, I've been experiencing occasional kernel
- panics (flashing caps lock) while using wifi.  I let the system idle on
- the console for some time and there were no panics, but it seems to
- happen reliably if I use a web browser for a short time.
+ While away from home, I've been experiencing occasional kernel panics
+ (flashing caps lock) while using wifi.  It seems to be related to which
+ wifi network I associate with.  This one triggers the panics:
  
- I rebooted back into 2.6.27-9.19 and haven't had a problem since.
+   Cell 10 - Address: 00:1F:F3:F8:9D:C7
+ ESSID:Canonical
+ Mode:Master
+ Channel:11
+ Frequency:2.462 GHz (Channel 11)
+ Quality=49/100  Signal level:-79 dBm  Noise level=-127 dBm
+ Encryption key:on
+ IE: WPA Version 1
+ Group Cipher : TKIP
+ Pairwise Ciphers (1) : TKIP
+ Authentication Suites (1) : PSK
+ IE: IEEE 802.11i/WPA2 Version 1
+ Group Cipher : TKIP
+ Pairwise Ciphers (2) : CCMP TKIP
+ Authentication Suites (1) : PSK
+ IE: Unknown: 
2D1A2C021700
+ Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 6 Mb/s
+   9 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s; 36 Mb/s
+   48 Mb/s; 54 Mb/s
+ Extra:tsf=0031d1657237
+ Extra: Last beacon: 2416ms ago
+ 
+ while this one does not:
+ 
+   Cell 11 - Address: 00:03:52:A4:43:B0
+ ESSID:Domain Hotel
+ Mode:Master
+ Channel:11
+ Frequency:2.462 GHz (Channel 11)
+ Quality=79/100  Signal level:-55 dBm  Noise level=-127 dBm
+ Encryption key:off
+ Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 6 Mb/s
+   9 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s; 36 Mb/s
+   48 Mb/s; 54 Mb/s
+ Extra:tsf=012c45ba0181
+ Extra: Last beacon: 2396ms ago
+ 
  
  ProblemType: Bug
  Architecture: amd64
  DistroRelease: Ubuntu 8.10
  Package: linux-image-2.6.27-9-generic 2.6.27-9.19
  ProcCmdLine: root=UUID=305dde78-d20a-4248-aaf4-09447b7c5791 ro quiet splash
  ProcEnviron:
   LC_COLLATE=C
   
PATH=/home/username/bin:/usr/lib/ccache:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/sbin:/usr/sbin:/usr/games:/usr/lib/surfraw
   LANG=en_US.UTF-8
   SHELL=/bin/zsh
  ProcVersionSignature: Ubuntu 2.6.27-9.19-generic
  SourcePackage: linux

** Attachment added: iwlist wlan0 scan
   http://launchpadlibrarian.net/20283852/scan.txt

-- 
Panics while using iwlagn wifi on some networks
https://bugs.launchpad.net/bugs/306022
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 306024] [NEW] USB Logitech mouse stops woring after some time

2008-12-07 Thread kishkin
Public bug reported:

USB Logitech mouse (the most simple one - two buttons and the wheel)
stops working after random period of time (usually it is about 30
minutes). Touchpad continue to work.

$ lsb_release -rd
Description:Ubuntu 8.04.1
Release:8.04

Hardware: ASUS laptop A6R

I followed the instructions at
https://wiki.ubuntu.com/DebuggingMouseDetection, so here are the files
attached

As it turns out all USB devices stop working at the same time. Not only
mouse, but also the external USB drive.

** Affects: ubuntu
 Importance: Undecided
 Status: New


** Tags: mouse usb

-- 
USB Logitech mouse stops woring after some time
https://bugs.launchpad.net/bugs/306024
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 306024] Re: USB Logitech mouse stops woring after some time

2008-12-07 Thread kishkin

** Attachment added: mouse issue.tar.bz2
   http://launchpadlibrarian.net/20283926/mouse%20issue.tar.bz2

** Description changed:

  USB Logitech mouse (the most simple one - two buttons and the wheel)
  stops working after random period of time (usually it is about 30
  minutes). Touchpad continue to work.
  
  $ lsb_release -rd
  Description:  Ubuntu 8.04.1
  Release:  8.04
  
  Hardware: ASUS laptop A6R
  
  I followed the instructions at
  https://wiki.ubuntu.com/DebuggingMouseDetection, so here are the files
  attached
+ 
+ As it turns out all USB devices stop working at the same time. Not only
+ mouse, but also the external USB drive.

** Tags added: mouse usb

-- 
USB Logitech mouse stops woring after some time
https://bugs.launchpad.net/bugs/306024
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 305506] Re: The sound is choppy and slow ubuntu 8.10

2008-12-07 Thread goto
Could you describe please what sound settings exactly were wrong and how
you solved the problem? And did the problem occur after a pulseaudio
update?

-- 
The sound is choppy and slow ubuntu 8.10
https://bugs.launchpad.net/bugs/305506
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 283898] Re: xawtv crash no overlay support since upgrade to 8.10

2008-12-07 Thread zniavre
hello

as asked i did the output and made an archives

hope it will be usefull
 au revoir  , merci
thank you , good bye 

** Attachment added: log.tar.gz
   http://launchpadlibrarian.net/20283937/log.tar.gz

-- 
xawtv crash no overlay support since upgrade to 8.10
https://bugs.launchpad.net/bugs/283898
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 283898] Re: xawtv crash no overlay support since upgrade to 8.10

2008-12-07 Thread zniavre
soory forgot ot ask at last question:
 no this tuner does not work any more 
zapping xawtv does not works as before

(im using this tuner since breezy)


re good bye thank you

-- 
xawtv crash no overlay support since upgrade to 8.10
https://bugs.launchpad.net/bugs/283898
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 280762] Re: knetworkmanager under kde4 doesn't recognize the static IP connections that I have configured.

2008-12-07 Thread User
I had exactly the same problem (even with managed=true), but today's
update (version 1:0.7svn864988-0ubuntu1.8.10.3) seems to have solved it.
Great work!

-- 
knetworkmanager under kde4 doesn't recognize the static IP connections that I 
have configured. 
https://bugs.launchpad.net/bugs/280762
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 211464] Re: 0launch crashed with IOError in update_user_overrides()

2008-12-07 Thread Thomas Leonard
(sorry for the delayed reply: for some reason I wasn't notified when
this bug was created, only when Daniel replied)

Is the file in question (
/home/mark/.config/0install.net/injector/user_overrides/http%3a%2f%2fholizz.com%2fsoftware%2f0install%2fpysqlite2)
 owned and readable by the user (Mark)?

If it's not readable, that could indicate a bug. If the ownership is
wrong, perhaps that would suggest that the program was once run as root
with $HOME pointing to the user's home directory?

Please add a comment saying which is the case. Either way, deleting the
file will fix the problem.

-- 
0launch crashed with IOError in update_user_overrides()
https://bugs.launchpad.net/bugs/211464
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 306026] [NEW] dpkg was interrupted, you must manually run, E:_cache open() falied,

2008-12-07 Thread luis ruben
Public bug reported:

Binary package hint: gnome-terminal

e: dpkg was interrupted, you must manually run 'dpkg--configure-a' to correct 
the problem
e: _ cache open() falied, please reported

ProblemType: Bug
Architecture: i386
DistroRelease: Ubuntu 8.10
ExecutablePath: /usr/bin/gnome-terminal
Package: gnome-terminal 2.24.1.1-0ubuntu1
ProcEnviron:
 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
 LANG=es_MX.UTF-8
 SHELL=/bin/bash
SourcePackage: gnome-terminal
Uname: Linux 2.6.27-7-generic i686

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


** Tags: apport-bug

-- 
dpkg was interrupted, you must manually run, E:_cache open() falied,
https://bugs.launchpad.net/bugs/306026
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 306026] Re: dpkg was interrupted, you must manually run, E:_cache open() falied,

2008-12-07 Thread luis ruben

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

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

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

-- 
dpkg was interrupted, you must manually run, E:_cache open() falied,
https://bugs.launchpad.net/bugs/306026
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 306025] [NEW] package ca-certificates 20080514-0ubuntu1.1 failed to install/upgrade: subprocess post-installation script returned error exit status 1

2008-12-07 Thread mobrien118
Public bug reported:

Binary package hint: ca-certificates

When installing the package, it failed. Sorry, I didn't see exactly what
happened, as I was running an update with 44 packages

I am using a fully patched Intrepid system, x86 arch.

The installation of the package failed.

ProblemType: Package
Architecture: i386
DistroRelease: Ubuntu 8.10
ErrorMessage: subprocess post-installation script returned error exit status 1
Package: ca-certificates 20080514-0ubuntu1.1
PackageArchitecture: all
SourcePackage: ca-certificates
Title: package ca-certificates 20080514-0ubuntu1.1 failed to install/upgrade: 
subprocess post-installation script returned error exit status 1
Uname: Linux 2.6.27-9-generic i686

** Affects: ca-certificates (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package

-- 
package ca-certificates 20080514-0ubuntu1.1 failed to install/upgrade: 
subprocess post-installation script returned error exit status 1
https://bugs.launchpad.net/bugs/306025
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 306025] Re: package ca-certificates 20080514-0ubuntu1.1 failed to install/upgrade: subprocess post-installation script returned error exit status 1

2008-12-07 Thread mobrien118

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

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

-- 
package ca-certificates 20080514-0ubuntu1.1 failed to install/upgrade: 
subprocess post-installation script returned error exit status 1
https://bugs.launchpad.net/bugs/306025
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 300471] Re: xfce4-places-plugin crashed with SIGSEGV in g_type_check_instance_cast()

2008-12-07 Thread Charlie Kravetz
*** This bug is a duplicate of bug 271689 ***
https://bugs.launchpad.net/bugs/271689

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

** This bug has been marked a duplicate of bug 271689
   xfce4-places-plugin crashed with SIGSEGV in g_type_check_instance_cast()

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

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


[Bug 267215] Re: No system event sounds in Intrepid 2.6.27.2

2008-12-07 Thread Neven75
Same thing over here - still no system sounds even with kernel
2.6.27-9-generic. It worked fine in Hardy; it stopped after the first
kernel upgrade

-- 
No system event sounds in Intrepid 2.6.27.2
https://bugs.launchpad.net/bugs/267215
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 211684] Re: update-manager crashed with ImportError in module()

2008-12-07 Thread Daniel T Chen
Is this symptom still reproducible in 8.10 or 9.04?

** Changed in: dbus-python (Ubuntu)
   Status: New = Incomplete

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

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


[Bug 211662] Re: Cannot put chat window over buddy list

2008-12-07 Thread Daniel T Chen
Is this symptom still reproducible in 8.10 or 9.04?

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

-- 
Cannot put chat window over buddy list
https://bugs.launchpad.net/bugs/211662
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 211632] Re: vlc does not play files from a bookmarked smb share

2008-12-07 Thread Daniel T Chen
Is this symptom still reproducible in 8.10 or 9.04?

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

-- 
vlc does not play files from a bookmarked smb share
https://bugs.launchpad.net/bugs/211632
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 305990] Re: X can't allocate video memory while stretching video during playback

2008-12-07 Thread Wouter Stomp
** Changed in: xorg (Ubuntu)
Sourcepackagename: None = xorg

-- 
X can't allocate video memory while stretching video during playback
https://bugs.launchpad.net/bugs/305990
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 305966] Re: please sync ufraw from debian experimental

2008-12-07 Thread Wouter Stomp
 ufraw  (0.14.1-2) experimental; urgency=low

   * Really drop gconf2 dependency. (closes: #456233)
   * Drop upper limit on gimp dependency. (closes: #504259)

 -- Hubert Chathi [EMAIL PROTECTED]  Fri, 14 Nov 2008 23:41:35 -0500

ufraw (0.14.1-1) experimental; urgency=low

   * New upstream version. (closes: #502398)
 * ufraw-batch returns non-zero on error. (closes: #478570)
 * updated man page. (closes: #478582)
 * uses newer dcraw. (closes: #499665)
 * not confused any more by hugin TIFFs. (closes: #500457)
   * Drop dependency on gconf2. (closes: #456233)
   * Move homepage to homepage field.
   * Various cleanups to debian/rules clean target.
   * Bump standards version to 3.8.0 (no other changes needed).

 -- Hubert Chathi [EMAIL PROTECTED]  Tue, 28 Oct 2008 19:36:35 -0400

** Tags added: sync

-- 
please sync ufraw from debian experimental
https://bugs.launchpad.net/bugs/305966
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 298465] Re: No digital out with VIA VT1708b

2008-12-07 Thread scoot
** Changed in: linux (Ubuntu)
   Status: Incomplete = New

-- 
No digital out with VIA VT1708b
https://bugs.launchpad.net/bugs/298465
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 289659] Re: Sierra Wireless MC5720 CDMA

2008-12-07 Thread zoomy942
I went to that link and I got a 404 Page not found error

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

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


  1   2   3   4   5   6   7   8   9   10   >