[Bug 1251576] Re: Update to 25.0.1

2013-11-21 Thread Andi Hechtbauer
Does this address any or all of CVE-2013-1739, CVE-2013-1741,
CVE-2013-2566, CVE-2013-5605, CVE-2013-5606, CVE-2013-5607?

Or different known (as in: has a CVE Number) issue(s)?

If so, I suggest putting the specifics of this information into the
changelog and description of this ticket instead of ... or a reference
to the empty ticket.

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

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

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

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

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

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

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

Title:
  Update to 25.0.1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/firefox/+bug/1251576/+subscriptions

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


[Bug 802543] Re: sl sometimes shows contents of current directory

2011-06-27 Thread Andi Hechtbauer
** Changed in: sl (Ubuntu)
   Status: New = Confirmed

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

Title:
  sl sometimes shows contents of current directory

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sl/+bug/802543/+subscriptions

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


[Bug 787955] [NEW] Can't set output policy to ACCEPT_NO_TRACK

2011-05-25 Thread Andi Hechtbauer
Public bug reported:

Binary package hint: ufw

In the documentation and in /etc/default/ufw comments of ufw
0.30.1-1ubuntu1 (11.04) a default policy that does not do connection
tracking is advertised, ACCEPT_NO_TRACK.

When this is used  sudo ufw enable results in ERROR: problem running
ufw-init

Digging into this (using sudo /lib/ufw/ufw-init force-reload), some more
output can be seen, maybe pointing in the direction of a bug:

iptables-restore v1.4.10: Can't set policy `OUTPUT' on `ACCEPT_NO_TRACK'
line 5: Bad policy name

iptables-restore v1.4.10: Couldn't load target
`ACCEPT_NO_TRACK':/lib/xtables/libipt_ACCEPT_NO_TRACK.so: cannot open
shared object file: No such file or directory

** Affects: ufw (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/787955

Title:
  Can't set output policy to ACCEPT_NO_TRACK

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


[Bug 387189] Re: /dev/null corrupted (/dev/null.1)

2010-08-09 Thread Andi Hechtbauer
I think I tracked this down to a syntax thinko in
/etc/logrotate.d/apache2 (installed by apache2.2-common), when
/etc/apache2/envvars doesn't exist - which can happen easily, e.g., when
you do not really need apache2 but only something from the -common
package:

logrotate -d /etc/logrotate.conf 21 gives me:

[...]
reading config file apache2
error: error accessing /var/log/apache2: No such file or directory
error: apache2:1 glob failed for /var/log/apache2/*.log
error: found error in /var/log/apache2/*.log , skipping
removing last 1 log configs
error: apache2:11 lines must begin with a keyword or a filename (possibly in 
double quotes)
error: apache2:12 missing end of line
reading config info for /etc/init.d/apache2 reload  /dev/null
fi
endscript
}
[...]
 weekly (4 rotations)
empty log files are rotated, old logs are removed
considering log /etc/init.d/apache2
  log does not need rotating
considering log reload
error: stat of reload failed: No such file or directory
considering log 
error: stat of  failed: No such file or directory
considering log /dev/null
  log does not need rotating
considering log fi
error: stat of fi failed: No such file or directory
considering log endscript
error: stat of endscript failed: No such file or directory
considering log }
error: stat of } failed: No such file or directory

Obviously logrotate fails to parse the output of the backticked command.
And trys to interpret the following lines as filenames that should be
logrotated.  The only file that exists is /dev/null.

Removing the unneeded apache2 logrotate script corrects the logrotate -d
output and the behaviour.

I think there could be more than one way to fix this bug:

1. in apache-common: correct the if-statement, taking into account 
/etc/apache2/envvars might not even exist. 
2. in logrotate: make logrotate check if it is told to operate on a regular 
file (like savelog does)
3. let logrotate discard an erroneous config file, instead of trying to 
interpret too much.
...

But the quick workaround: remove /etc/logrotate.d/apache2 if you don't
need it.

-- 
/dev/null corrupted (/dev/null.1)
https://bugs.launchpad.net/bugs/387189
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 387189] Re: /dev/null corrupted (/dev/null.1)

2010-08-09 Thread Andi Hechtbauer
The problem is within /etc/logrotate.d/apache2 - when
/etc/apache2/envvars does not exist:

# logrotate -d /etc/logrotate.conf:

[...]
error: apache2:11 lines must begin with a keyword or a filename (possibly in 
double quotes)
error: apache2:12 missing end of line
reading config info for /etc/init.d/apache2 reload  /dev/null
fi
endscript
}
[...]
considering log reload
error: stat of reload failed: No such file or directory
considering log 
error: stat of  failed: No such file or directory
considering log /dev/null
  log does not need rotating
considering log fi
error: stat of fi failed: No such file or directory
considering log endscript
error: stat of endscript failed: No such file or directory
considering log }
error: stat of } failed: No such file or directory
[...]

Workaround: remove /etc/logrotate.d/apache2 when not needed.
Possible Fix in apache2-common: additionally test if [ -f /etc/apache2/envvars 
] before using that script in backticks. 
Possible Fix in logrotate: Do not rotate non-regular files, Maybe do not try to 
interpret everything as a filename.

-- 
/dev/null corrupted (/dev/null.1)
https://bugs.launchpad.net/bugs/387189
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 379621] Re: inetd fails to listen on IPv4 addresses

2009-06-12 Thread Andi Hechtbauer
to reproduce:

$ aptitude install inetutils-inetd
$ echo 2323 stream tcp nowait nobody /bin/true |sudo tee -a /etc/inetd.conf
$ sudo /etc/init.d/inetutils-inetd restart
$ nc -v localhost 2323
localhost [127.0.0.1] 2323 (?) : Connection refused

compare this to:

$ echo 2323 stream tcp4 nowait nobody /bin/true |sudo tee -a /etc/inetd.conf
$ sudo /etc/init.d/inetutils-inetd restart
$ nc -v localhost 2323
localhost [127.0.0.1] 2323 (?) open

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

-- 
inetd fails to listen on IPv4 addresses
https://bugs.launchpad.net/bugs/379621
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 349913] Re: sftp: cannot enter umlauts like ä, ö, ü

2009-04-16 Thread Andi Hechtbauer
strace output of sftp session, pressing ä at the sftp  prompt:

[...]
write(1, sftp ..., 6sftp )= 6
read(0, \303..., 1)   = 1
read(0, \244..., 1)   = 1
write(1, \7..., 1)= 1
read(0, 


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

-- 
sftp: cannot enter umlauts like ä, ö, ü
https://bugs.launchpad.net/bugs/349913
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.

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


[Bug 349913] Re: sftp: cannot enter umlauts like ä, ö, ü

2009-04-16 Thread Andi Hechtbauer
strace output of sftp session, pressing ä at the sftp  prompt:

[...]
write(1, sftp ..., 6sftp )= 6
read(0, \303..., 1)   = 1
read(0, \244..., 1)   = 1
write(1, \7..., 1)= 1
read(0, 


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

-- 
sftp: cannot enter umlauts like ä, ö, ü
https://bugs.launchpad.net/bugs/349913
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 318709] Re: pidgin crashes at xmpp logon

2009-01-22 Thread Andi Hechtbauer
after stracing pidgin, I found out a damaged ~/.gnome2/nautilus-
sendto/pidgin_buddies_online file was reported as stale NFS file
handle - I never used nfs on this machine.

A fsck of my /home partition made the damaged file -- and the suspected
bug -- go away, pidgin works.

excuses for having wasted anyones time on this one.

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

-- 
pidgin crashes at xmpp logon
https://bugs.launchpad.net/bugs/318709
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 318709] [NEW] pidgin crashes at xmpp logon

2009-01-19 Thread Andi Hechtbauer
Public bug reported:

Binary package hint: pidgin

in an up-to-date (as of jan 19) jaunty, pidgin 2.5.3 (package
1:2.5.3-0ubuntu2) crashes after I enter my xmpp / jabber password.
here's the backtrace:

If I can provide further information, please let me know.

*** glibc detected *** pidgin: free(): invalid pointer: 0x09195070 ***
=== Backtrace: =
/lib/tls/i686/cmov/libc.so.6[0xb761e5a4]
/lib/tls/i686/cmov/libc.so.6(cfree+0x96)[0xb7620556]
/usr/lib/libglib-2.0.so.0(g_free+0x36)[0xb77921f6]
/usr/lib/libglib-2.0.so.0(g_string_free+0x5c)[0xb77ae89c]
/usr/lib/pidgin/nautilus.so[0xb63eb27a]
/usr/lib/libpurple.so.0(purple_marshal_VOID__POINTER+0x28)[0xb7900bbb]
/usr/lib/libpurple.so.0(purple_signal_emit_vargs+0x168)[0xb790077d]
/usr/lib/libpurple.so.0(purple_signal_emit+0x81)[0xb790060f]
/usr/lib/libpurple.so.0(purple_blist_update_buddy_status+0xd5)[0xb78b7f07]
/usr/lib/libpurple.so.0(purple_prpl_got_user_status+0x16e)[0xb78f6281]
/usr/lib/purple-2/libjabber.so.0(jabber_presence_parse+0x14c3)[0xb63c6c0d]
/usr/lib/purple-2/libjabber.so.0(jabber_process_packet+0xbf)[0xb63b6f21]
/usr/lib/purple-2/libjabber.so.0[0xb63c3d01]
/usr/lib/libxml2.so.2[0xb749e248]
/usr/lib/libxml2.so.2(xmlParseChunk+0x619)[0xb74ab199]
/usr/lib/purple-2/libjabber.so.0(jabber_parser_process+0xa0)[0xb63c3f3e]
/usr/lib/purple-2/libjabber.so.0[0xb63b78b1]
/usr/lib/libpurple.so.0[0xb790a472]
pidgin[0x80ad887]
/usr/lib/libglib-2.0.so.0[0xb77c113d]
/usr/lib/libglib-2.0.so.0(g_main_context_dispatch+0x1e8)[0xb7789b18]
/usr/lib/libglib-2.0.so.0[0xb778d1c3]
/usr/lib/libglib-2.0.so.0(g_main_loop_run+0x1d2)[0xb778d6e2]
/usr/lib/libgtk-x11-2.0.so.0(gtk_main+0xb9)[0xb7ba2319]
pidgin(main+0xc70)[0x80caf63]
/lib/tls/i686/cmov/libc.so.6(__libc_start_main+0xe5)[0xb75c5775]
pidgin[0x806da11]
=== Memory map: 
08048000-0811d000 r-xp  08:01 14648623   /usr/bin/pidgin
0811d000-0811e000 r--p 000d4000 08:01 14648623   /usr/bin/pidgin
0811e000-08121000 rw-p 000d5000 08:01 14648623   /usr/bin/pidgin
08be2000-09948000 rw-p 08be2000 00:00 0  [heap]
b249b000-b24cc000 r-xp  08:01 6971452/usr/lib/libcroco-0.6.so.3.0.1
b24cc000-b24cf000 rw-p 0003 08:01 6971452/usr/lib/libcroco-0.6.so.3.0.1
b24cf000-b2502000 r-xp  08:01 14648540   /usr/lib/libgsf-1.so.114.0.10
b2502000-b2504000 r--p 00032000 08:01 14648540   /usr/lib/libgsf-1.so.114.0.10
b2504000-b2505000 rw-p 00034000 08:01 14648540   /usr/lib/libgsf-1.so.114.0.10
b2505000-b2506000 rw-p b2505000 00:00 0 
b2506000-b2537000 r-xp  08:01 14650097   /usr/lib/librsvg-2.so.2.22.3
b2537000-b2538000 r--p 0003 08:01 14650097   /usr/lib/librsvg-2.so.2.22.3
b2538000-b2539000 rw-p 00031000 08:01 14650097   /usr/lib/librsvg-2.so.2.22.3
b2539000-b2599000 rw-s  00:09 2424852/SYSV (deleted)
b2599000-b25f9000 rw-s  00:09 2392083/SYSV (deleted)
b25f9000-b26fd000 rw-p b25f9000 00:00 0 
b26fd000-b2786000 r--p  08:01 14786610   
/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans-Bold.ttf
b2786000-b285e000 rw-p b2786000 00:00 0 
b285e000-b28f2000 r-xp  08:01 14647867   /usr/lib/libaspell.so.15.1.4
b28f2000-b28f5000 r--p 00093000 08:01 14647867   /usr/lib/libaspell.so.15.1.4
b28f5000-b28f6000 rw-p 00096000 08:01 14647867   /usr/lib/libaspell.so.15.1.4
b28f6000-b28fa000 rw-p b28f6000 00:00 0 
b290d000-b294c000 r-xp  08:01 14647896   
/usr/lib/libhunspell-1.2.so.0.0.0
b294c000-b294d000 r--p 0003e000 08:01 14647896   
/usr/lib/libhunspell-1.2.so.0.0.0
b294d000-b2951000 rw-p 0003f000 08:01 14647896   
/usr/lib/libhunspell-1.2.so.0.0.0
b296-b2962000 r-xp  08:01 14663792   
/usr/lib/enchant/libenchant_aspell.so
b2962000-b2963000 r--p 1000 08:01 14663792   
/usr/lib/enchant/libenchant_aspell.so
b2963000-b2964000 rw-p 2000 08:01 14663792   
/usr/lib/enchant/libenchant_aspell.so
b2964000-b2968000 r-xp  08:01 14664382   
/usr/lib/enchant/libenchant_myspell.so
b2968000-b2969000 r--p 3000 08:01 14664382   
/usr/lib/enchant/libenchant_myspell.so
b2969000-b296a000 rw-p 4000 08:01 14664382   
/usr/lib/enchant/libenchant_myspell.so
b296a000-b296c000 r-xp  08:01 14664383   
/usr/lib/enchant/libenchant_zemberek.so
b296c000-b296d000 r--p 1000 08:01 14664383   
/usr/lib/enchant/libenchant_zemberek.so
b296d000-b296e000 rw-p 2000 08:01 14664383   
/usr/lib/enchant/libenchant_zemberek.so
b296e000-b2976000 r-xp  08:01 14664379   
/usr/lib/enchant/libenchant_hspell.so
b2976000-b2977000 r--p 7000 08:01 14664379   
/usr/lib/enchant/libenchant_hspell.so
b2977000-b2979000 rw-p 8000 08:01 14664379   
/usr/lib/enchant/libenchant_hspell.so
b2979000-b2984000 r-xp  08:01 14664381   
/usr/lib/enchant/libenchant_ispell.so
b2984000-b2985000 r--p a000 08:01 14664381   
/usr/lib/enchant/libenchant_ispell.so
b2985000-b2986000 rw-p b000 08:01 14664381   
/usr/lib/enchant/libenchant_ispell.so
b2986000-b2a8a000 rw-p b2986000 00:00 0 
b2a8a000-b2a8c000 r-xp  

[Bug 306830] Re: oom-killer kicks in while ~15G of ram are free, freezes server

2009-01-07 Thread Andi Hechtbauer
We moved the servers to 2.6.24-22-server x86_64 two weeks ago and had no
problem since, while running the same workloads and processes.

-- 
oom-killer kicks in while ~15G of ram are free, freezes server
https://bugs.launchpad.net/bugs/306830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 306830] Re: oom-killer kicks in while ~15G of ram are free, freezes server

2008-12-22 Thread Andi Hechtbauer
Upgraded machine to intrepid, to test with a 2.6.27-9-server kernel.
happened again. dmesg attached.

** Attachment added: dmesg2.txt
   http://launchpadlibrarian.net/20632261/dmesg2.txt

-- 
oom-killer kicks in while ~15G of ram are free, freezes server
https://bugs.launchpad.net/bugs/306830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 306830] Re: oom-killer kicks in while ~15G of ram are free, freezes server

2008-12-17 Thread Andi Hechtbauer

** Attachment added: memlog
   http://launchpadlibrarian.net/20492192/memlog

-- 
oom-killer kicks in while ~15G of ram are free, freezes server
https://bugs.launchpad.net/bugs/306830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 306830] Re: oom-killer kicks in while ~15G of ram are free, freezes server

2008-12-17 Thread Andi Hechtbauer
It happened again on a different Machine (also ibm xseries 3650, kernel
2.6.24-22-server. I attach dmesg and a file that contains copies of
/proc/meminfo each 60s.

** Attachment added: dmesg
   http://launchpadlibrarian.net/20492189/dmesg

-- 
oom-killer kicks in while ~15G of ram are free, freezes server
https://bugs.launchpad.net/bugs/306830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 306830] Re: oom-killer kicks in while ~15G of ram are free, freezes server

2008-12-11 Thread Andi Hechtbauer
It happened again, this time the machine didn't stall, and a bit more
info could be collected:

syslog:

Dec 10 23:29:06 omg kernel: [51151.508470] brix invoked oom-killer: 
gfp_mask=0xd0, order=0, oomkilladj=-17
Dec 10 23:29:07 omg kernel: [51151.508476] Pid: 995, comm: brix Not tainted 
2.6.24-22-server #1
Dec 10 23:29:07 omg kernel: [51151.508489]  [oom_kill_process+0x10a/0x120] 
oom_kill_process+0x10a/0x120
Dec 10 23:29:07 omg kernel: [51151.508499]  [out_of_memory+0x167/0x1a0] 
out_of_memory+0x167/0x1a0
Dec 10 23:29:07 omg kernel: [51151.508504]  [nfs:__alloc_pages+0x34c/0x380] 
__alloc_pages+0x34c/0x380
Dec 10 23:29:07 omg kernel: [51151.508512]  [tcp_sendmsg+0x361/0xbc0] 
tcp_sendmsg+0x361/0xbc0
Dec 10 23:29:07 omg kernel: [51151.508523]  [tcp_sendmsg+0x9c3/0xbc0] 
tcp_sendmsg+0x9c3/0xbc0
Dec 10 23:29:07 omg kernel: [51151.508526]  [kmap_atomic_prot+0xfc/0x130] 
kmap_atomic_prot+0xfc/0x130
Dec 10 23:29:07 omg kernel: [51151.508532]  [nfs:kmap_atomic+0x1c/0x30] 
kmap_atomic+0x1c/0x30
Dec 10 23:29:07 omg kernel: [51151.508538]  [sock_aio_write+0x109/0x120] 
sock_aio_write+0x109/0x120
Dec 10 23:29:07 omg kernel: [51151.508544]  [nfs:do_sync_write+0xd5/0x120] 
do_sync_write+0xd5/0x120
Dec 10 23:29:07 omg kernel: [51151.508550]  [c0145f10] 
autoremove_wake_function+0x0/0x40

meminfo:

MemTotal: 49924560 kB
MemFree:  16970328 kB
Buffers:   960 kB
Cached:   31965780 kB
SwapCached:  0 kB
Active:   13818128 kB
Inactive: 18619620 kB
HighTotal:49413916 kB
HighFree: 16961756 kB
LowTotal:   510644 kB
LowFree:  8572 kB
SwapTotal: 9092748 kB
SwapFree:  9092748 kB
Dirty:5096 kB
Writeback:   0 kB
AnonPages:  470908 kB
Mapped:   8668 kB
Slab:   489532 kB
SReclaimable:   440788 kB
SUnreclaim:  48744 kB
PageTables:   4784 kB
NFS_Unstable:0 kB
Bounce:  0 kB
CommitLimit:  34055028 kB
Committed_AS:  1273408 kB
VmallocTotal:   118776 kB
VmallocUsed:  7844 kB
VmallocChunk:   110616 kB
HugePages_Total: 0
HugePages_Free:  0
HugePages_Rsvd:  0
HugePages_Surp:  0
Hugepagesize: 2048 kB

brix processes:
root   984  0.0  0.0  54628 33412 ?S14:22   0:00 (brix) 
wtf-searchd overlord
root   987  6.3  0.0  63648 43912 ?S14:22  34:36 (brix) 
wtf-searchd - 65 rpm
root   988  6.4  0.0  69236 49400 ?S14:22  35:15 (brix) 
wtf-searchd - 59 rpm
root   991  6.5  0.0  58404 38696 ?S14:22  35:42 (brix) 
wtf-searchd - 68 rpm
root   993  6.7  0.0  58788 39064 ?S14:22  37:03 (brix) 
wtf-searchd - 68 rpm
root   994  6.6  0.0  58828 39020 ?S14:22  36:33 (brix) 
wtf-searchd - 76 rpm
root   995  6.4  0.0  57592 37848 ?S14:22  35:37 (brix) 
wtf-searchd - 67 rpm
root   996  6.1  0.0  59548 39812 ?R14:22  33:33 (brix) 
wtf-searchd - 62 rpm
root   998  6.6  0.0  57560 37832 ?S14:22  36:46 (brix) 
wtf-searchd - 74 rpm
root   999  6.3  0.0  57988 38224 ?S14:22  34:44 (brix) 
wtf-searchd - 65 rpm
root  1000  6.7  0.0  57860 38132 ?S14:22  37:00 (brix) 
wtf-searchd - 74 rpm


** Attachment added: dmesg.log
   http://launchpadlibrarian.net/20359737/dmesg.log

-- 
oom-killer kicks in while ~15G of ram are free, freezes server
https://bugs.launchpad.net/bugs/306830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 306830] [NEW] oom-killer kicks in while ~15G of ram are free, freezes server

2008-12-10 Thread Andi Hechtbauer
Public bug reported:

Binary package hint: linux-image-2.6.24-22-server

A production 8.04 server (ibm x3650, 48GB RAM, 2.6.24-22-server #1 SMP
Mon Nov 24 19:14:19 UTC 2008 i686 GNU/Linux) suddenly stopped.  There
were about 15G RAM free, we found 1 line in the syslog that indicates
our own software invoked oom-killer: gfp_mask=0xd0, order=0,
oomkilladj=-17

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

-- 
oom-killer kicks in while ~15G of ram are free, freezes server
https://bugs.launchpad.net/bugs/306830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 306830] Re: oom-killer kicks in while ~15G of ram are free, freezes server

2008-12-10 Thread Andi Hechtbauer

** Attachment added: uname-a.log
   http://launchpadlibrarian.net/20341447/uname-a.log

-- 
oom-killer kicks in while ~15G of ram are free, freezes server
https://bugs.launchpad.net/bugs/306830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 306830] Re: oom-killer kicks in while ~15G of ram are free, freezes server

2008-12-10 Thread Andi Hechtbauer

** Attachment added: version.log
   http://launchpadlibrarian.net/20341458/version.log

-- 
oom-killer kicks in while ~15G of ram are free, freezes server
https://bugs.launchpad.net/bugs/306830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 306830] Re: oom-killer kicks in while ~15G of ram are free, freezes server

2008-12-10 Thread Andi Hechtbauer

** Attachment added: dmesg.log
   http://launchpadlibrarian.net/20341462/dmesg.log

-- 
oom-killer kicks in while ~15G of ram are free, freezes server
https://bugs.launchpad.net/bugs/306830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 306830] Re: oom-killer kicks in while ~15G of ram are free, freezes server

2008-12-10 Thread Andi Hechtbauer

** Attachment added: lspci-vnvn.log
   http://launchpadlibrarian.net/20341465/lspci-vnvn.log

-- 
oom-killer kicks in while ~15G of ram are free, freezes server
https://bugs.launchpad.net/bugs/306830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 306541] [NEW] mysql apparmor profile forbids raising max open files limit

2008-12-09 Thread Andi Hechtbauer
Public bug reported:

Binary package hint: mysql-server-5.0

Mysql Server 5.0.51a-3ubuntu5.4 / Ubuntu 8.04, when apparmor is active
and in enforcement mode (default).

Some settings in /etc/mysql/my.cnf won't have any effect. E.g. setting
the table_cache to something above 1024 will silently fall back to 64,
since capability sys_resource, is missing from
/etc/apparmor.d/usr.sbin.mysqld

something like audit(1228474870.984:3): type=1503 operation=capable 
name=sys_resource pid=26842 profile=/usr/sbin/mysqld namespace=default
will appear in the syslog.

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

-- 
mysql apparmor profile forbids raising max open files limit
https://bugs.launchpad.net/bugs/306541
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 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 306541] [NEW] mysql apparmor profile forbids raising max open files limit

2008-12-09 Thread Andi Hechtbauer
Public bug reported:

Binary package hint: mysql-server-5.0

Mysql Server 5.0.51a-3ubuntu5.4 / Ubuntu 8.04, when apparmor is active
and in enforcement mode (default).

Some settings in /etc/mysql/my.cnf won't have any effect. E.g. setting
the table_cache to something above 1024 will silently fall back to 64,
since capability sys_resource, is missing from
/etc/apparmor.d/usr.sbin.mysqld

something like audit(1228474870.984:3): type=1503 operation=capable 
name=sys_resource pid=26842 profile=/usr/sbin/mysqld namespace=default
will appear in the syslog.

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

-- 
mysql apparmor profile forbids raising max open files limit
https://bugs.launchpad.net/bugs/306541
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 274688] Re: intrepid network down after boot

2008-09-26 Thread Andi Hechtbauer
Do you happen to have an e1000 ethernet card? those have been disabled
due to a chance the intrepid kernel might damage the firmware. (Bug
#263555)

just a wild guess, though.

-- 
intrepid network down after boot  
https://bugs.launchpad.net/bugs/274688
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 230974] [NEW] losetup only displays help

2008-05-16 Thread Andi Hechtbauer
Public bug reported:

Binary package hint: mount

After upgrading the mount package from (output of mount -V) 
(hardy) util-linux-ng 2.13.1 to  mount from util-linux-ng 2.14-rc2 (with 
libvolume_id and selinux support) in intrepid, losetup stopped working. On 
invocation it only displays its help as if started with -h regardless of 
parameters and options.

$ sudo losetup /dev/loop0

- displays help

downgrading the mount package works around the losetup problem.

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


** Tags: losetup mount

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

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


[Bug 203171] [NEW] htop crashes at startup, reports *** stack smashing detected ***: htop terminated

2008-03-17 Thread Andi Hechtbauer
Public bug reported:

on feisty, ubuntu 7.04, starting htop reproducibly results in the
message

*** stack smashing detected ***: htop terminated

We suspect this to be a bug in htop 0.6.3-1 caught by kernel
2.6.20-15-server somehow.

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
htop crashes at startup, reports *** stack smashing detected ***: htop 
terminated
https://bugs.launchpad.net/bugs/203171
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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