Bug#600178: gimp: please add a 'reload' feature

2010-10-26 Thread Toni Mueller

On Tue, 26.10.2010 at 10:13:42 -0400, Ari Pollak a...@debian.org wrote:
 On 10/26/2010 04:14 AM, Toni Mueller wrote:
  not quite. The GIMP should have a feature to open a file read-only,
  then, as other programs also want to get a lock on them. Makes at least
  a lot of noise...
 
 Hm? GIMP doesn't obtain a lock on open files..

I used 'display' to manipulate a test image, and it complained about
not being able to lock the image file. I'm quite sure that The GIMP was
the only other program accessing that file, and it was all on a local
file system. I have no other explanation than that both programs were
contending for a lock.


-- 
Kind regards,
--Toni++




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#601108: isc-dhcp-server: missing conflict with dhcp3-server

2010-10-23 Thread Toni Mueller
Package: isc-dhcp-server
Version: 4.1.1-P1-9
Severity: normal


Hello,

for some reason, my Testing/Squeeze machine pulled isc-dhcp-server. I
can't remember doing this, but anyway, the problem is that I also have
dhcp3-server installed. I installed that package back when the machine
was running Lenny. This leads to the following interesting behaviour:

* /etc/init.d/dhcp3-server exits quietly, but does neither start nor
  stop the DHCP server.
* Configuration is now in /etc/dhcpd instead of /etc/dhcp3, so changing
  anything in /etc/dhcp3 has absolutely no effect.

Since isc-dhcp-server is supposed to be the successor of dhcp3-server, I
suggest that the package conflicts with dhcp3-server and copies any
existing dhcp3-server configuration over.


Kind regards,
--Toni++


-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (250, 'unstable'), (50, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686-bigmem (SMP w/4 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages isc-dhcp-server depends on:
ii  debconf [debconf-2.0] 1.5.35 Debian configuration management sy
ii  debianutils   3.4Miscellaneous utilities specific t
ii  isc-dhcp-common   4.1.1-P1-9 common files used by all the isc-d
ii  libc6 2.11.2-2   Embedded GNU C Library: Shared lib
ii  libssl0.9.8   0.9.8o-2   SSL shared libraries
ii  lsb-base  3.2-23.1   Linux Standard Base 3.2 init scrip

isc-dhcp-server recommends no packages.

Versions of packages isc-dhcp-server suggests:
pn  isc-dhcp-server-ldap  none (no description available)

-- Configuration Files:
/etc/dhcp/dhcpd.conf changed [not included]

-- debconf information excluded



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#601123: cu: want 'tip'

2010-10-23 Thread Toni Mueller
Package: cu
Version: 1.07-20
Severity: wishlist


Hi,

in olden days, cu was accompanied by a program called 'tip', which then
could also be generated from the Taylor UUCP package that is available
in Debian. But these days, neither package ships the 'tip' binary.

I'd like to see an update that rectifies the situation.

Thank you!


Kind regards,
--Toni++



-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (250, 'unstable'), (50, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686-bigmem (SMP w/4 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages cu depends on:
ii  libc6 2.11.2-2   Embedded GNU C Library: Shared lib

cu recommends no packages.

cu suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#579622: patch for init script

2010-10-22 Thread Toni Mueller

Hi,

I'm not sure why the chrooted service should not work (it doesn't, imho
likely due to a bug in unbound-checkconf), but with the version from
backport, I've created a patch for the init script that copies the
configuration to the standard chroot directory.

I've redone the restart option in order to ensure that any modified
config files get copied to the target directory.


Kind regards,
--Toni++

--- unbound.dist	2010-09-10 05:50:31.0 +0200
+++ unbound	2010-10-22 11:31:29.0 +0200
@@ -37,6 +37,10 @@
 start)
 if $UNBOUND_ENABLE; then
 log_daemon_msg Starting $DESC $NAME
+	cd /etc
+	# can we assume the presence of rsync?
+	rm -fr /var/lib/$NAME/etc/$NAME
+	cp -ar $NAME /var/lib/$NAME/etc
 if start-stop-daemon --start --quiet --oknodo --pidfile $PIDFILE --name $NAME --startas $DAEMON -- $DAEMON_OPTS; then
 log_end_msg 0
 else
@@ -61,12 +65,15 @@
 restart|force-reload)
 if $UNBOUND_ENABLE; then
 log_daemon_msg Restarting $DESC $NAME
-start-stop-daemon --stop --quiet --pidfile $PIDFILE --name $NAME --retry 5
-if start-stop-daemon --start --quiet --oknodo --pidfile $PIDFILE --name $NAME --startas $DAEMON -- $DAEMON_OPTS; then
-log_end_msg 0
-else
-log_end_msg 1
-fi
+#start-stop-daemon --stop --quiet --pidfile $PIDFILE --name $NAME --retry 5
+#if start-stop-daemon --start --quiet --oknodo --pidfile $PIDFILE --name $NAME --startas $DAEMON -- $DAEMON_OPTS; then
+#log_end_msg 0
+#else
+#log_end_msg 1
+#fi
+	$0 stop
+	sleep 5
+	$0 start
 fi
 ;;
 


Bug#579622: [updated] patch for init script

2010-10-22 Thread Toni Mueller

Hi,

ok, reading the docs actually helps. The attached diff for the init
script makes the service work with the standard chroot directory.
You probably also need this in your unbound.conf file:

chroot: /var/lib/unbound



Kind regards,
--Toni++

--- unbound.dist	2010-09-10 05:50:31.0 +0200
+++ unbound	2010-10-22 11:31:29.0 +0200
@@ -37,6 +37,10 @@
 start)
 if $UNBOUND_ENABLE; then
 log_daemon_msg Starting $DESC $NAME
+	cd /etc
+	# can we assume the presence of rsync?
+	rm -fr /var/lib/$NAME/etc/$NAME
+	cp -ar $NAME /var/lib/$NAME/etc
 if start-stop-daemon --start --quiet --oknodo --pidfile $PIDFILE --name $NAME --startas $DAEMON -- $DAEMON_OPTS; then
 log_end_msg 0
 else
@@ -61,12 +65,15 @@
 restart|force-reload)
 if $UNBOUND_ENABLE; then
 log_daemon_msg Restarting $DESC $NAME
-start-stop-daemon --stop --quiet --pidfile $PIDFILE --name $NAME --retry 5
-if start-stop-daemon --start --quiet --oknodo --pidfile $PIDFILE --name $NAME --startas $DAEMON -- $DAEMON_OPTS; then
-log_end_msg 0
-else
-log_end_msg 1
-fi
+#start-stop-daemon --stop --quiet --pidfile $PIDFILE --name $NAME --retry 5
+#if start-stop-daemon --start --quiet --oknodo --pidfile $PIDFILE --name $NAME --startas $DAEMON -- $DAEMON_OPTS; then
+#log_end_msg 0
+#else
+#log_end_msg 1
+#fi
+	$0 stop
+	sleep 5
+	$0 start
 fi
 ;;
 


Bug#600178: gimp: please add a 'reload' feature

2010-10-14 Thread Toni Mueller
Package: gimp
Version: 2.6.10-1
Severity: wishlist
Tags: upstream


Hi,

I'm using Gimp not only to create images, but also to view images that
are generated by different programs. Currently, there appears to be no
way to refresh an image, once loaded, from the underlying file. It would
be nice if such a feature could be added, so that I can press 'reload'
and see the updates in Gimp.


Kind regards,
--Toni++


-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (250, 'unstable'), (50, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686-bigmem (SMP w/4 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages gimp depends on:
ii  gimp-data   2.6.10-1 Data files for GIMP
ii  libaa1  1.4p5-38 ascii art library
ii  libatk1.0-0 1.30.0-1 The ATK accessibility toolkit
ii  libbabl-0.0-0   0.0.22-1 Dynamic, any to any, pixel format 
ii  libc6   2.11.2-2 Embedded GNU C Library: Shared lib
ii  libcairo2   1.8.10-4 The Cairo 2D vector graphics libra
ii  libdbus-1-3 1.2.24-3 simple interprocess messaging syst
ii  libdbus-glib-1-20.88-2   simple interprocess messaging syst
ii  libexif12   0.6.19-1 library to parse EXIF files
ii  libfontconfig1  2.8.0-2.1generic font configuration library
ii  libfreetype62.4.2-1  FreeType 2 font engine, shared lib
ii  libgegl-0.0-0   0.0.22-2 Generic Graphics Library
ii  libgimp2.0  2.6.10-1 Libraries for the GNU Image Manipu
ii  libglib2.0-02.24.1-1 The GLib library of C routines
ii  libgtk2.0-0 2.20.1-1 The GTK+ graphical user interface 
ii  libhal1 0.5.14-3 Hardware Abstraction Layer - share
ii  libjpeg62   6b1-1The Independent JPEG Group's JPEG 
ii  liblcms11.18.dfsg-1.2+b2 Color management library
ii  libmng1 1.0.10-1 Multiple-image Network Graphics li
ii  libpango1.0-0   1.28.1-1 Layout and rendering of internatio
ii  libpng12-0  1.2.44-1 PNG library - runtime
ii  libpoppler-glib40.12.4-1.1   PDF rendering library (GLib-based 
ii  librsvg2-2  2.26.3-1 SAX-based renderer library for SVG
ii  libtiff43.9.4-2  Tag Image File Format (TIFF) libra
ii  libwebkit-1.0-2 1.2.3-2  Web content engine library for Gtk
ii  libwmf0.2-7 0.2.8.4-6.1  Windows metafile conversion librar
ii  libx11-62:1.3.3-3X11 client-side library
ii  libxext62:1.1.2-1X11 miscellaneous extension librar
ii  libxfixes3  1:4.0.5-1X11 miscellaneous 'fixes' extensio
ii  libxmu6 2:1.0.5-1X11 miscellaneous utility library
ii  libxpm4 1:3.5.8-1X11 pixmap library
ii  python  2.6.5-13 interactive high-level object-orie
ii  python-gtk2 2.17.0-4 Python bindings for the GTK+ widge
ii  python-support  1.0.9automated rebuilding support for P
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

gimp recommends no packages.

Versions of packages gimp suggests:
ii  ghostscript 8.71~dfsg2-4 The GPL Ghostscript PostScript/PDF
ii  gimp-data-extras1:2.0.1-3An extra set of brushes, palettes,
pn  gimp-help-en | gimp-helpnone   (no description available)
ii  gvfs-backends   1.6.3-1  userspace virtual filesystem - bac
ii  libasound2  1.0.23-1 shared library for ALSA applicatio

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#599309: mutt: Reply-Postpone-Recall loses message associations

2010-10-11 Thread Toni Mueller

On Sat, 09.10.2010 at 05:02:51 +0200, Michelle Konzack 
linux4miche...@tamay-dogan.net wrote:
 Am 2010-10-06 17:25:30, schrieb Toni Mueller:
  Neither
  is the message I reply to marked as having been replied to,
 
 The message can not be maked as Replied, because if you  POSTPONE  the
 message you can even delete the POSTPONED message and it would result in
 a wrong Replied Flag.  The Replied Flag is set, IF  the  message  is
 sent.

The Replied flag should imho be set if and only if the email intended
as the reply is actually sent. As long as we can assume that mutt is
the only program working with postponed messages, and as long as mutt
would keep track of where it stored which message (ie, Message-ID -
mail location), this should be within reach - mutt needed to access the
message being replied to and set the Replied flag. For remote
storages (eg. IMAP), this could require maintaining a transaction log,
but I don't see a principal problem doing this, only (likely) quite a
bit of work.


Kind regards,
--Toni++



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#599309: mutt: Reply-Postpone-Recall loses message associations

2010-10-06 Thread Toni Mueller
Package: mutt
Version: 1.5.20-5~bpo50+1
Severity: wishlist


Hi,

when I reply to a message, then postpone the reply, then (later) recall
that message to complete the reply, the association between the original
message that I replied to, and the reply I send, are both lost. Neither
is the message I reply to marked as having been replied to, nor does the
new message carry a References: nor a In-Reply-To: header, which results
in these two messages being sorted into two unrelated threads, instead
of one.

I'm pretty sure that this is an upstream issue.


Kind regards,
--Toni++



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#517449: problem also occurs on 2.6.32

2010-10-04 Thread Toni Mueller


Hi,

I have the almost latest of  2.6.32-bpo.5-amd64 (2.6.32-21~bpo50+1),
and the problem occured to me several times today.


Oct  4 12:22:23 debian kernel: [1963080.712134] INFO: task sync:18607 blocked 
for more than 120 seconds.
Oct  4 12:22:23 debian kernel: [1963080.712138] echo 0  
/proc/sys/kernel/hung_task_timeout_secs disables this message.
Oct  4 12:22:23 debian kernel: [1963080.712141] sync  D 
 0 18607  18591 0x
Oct  4 12:22:23 debian kernel: [1963080.712145]  814591f0 
0086  88009c6bbe30
Oct  4 12:22:23 debian kernel: [1963080.712150]   
f9e0 88009c6bbfd8 00015780
Oct  4 12:22:23 debian kernel: [1963080.712153]  00015780 
88011d78f100 88011d78f3f8 810402dc
Oct  4 12:22:23 debian kernel: [1963080.712157] Call Trace:
Oct  4 12:22:23 debian kernel: [1963080.712166]  [8110658f] ? 
bdi_sched_wait+0x0/0xe
Oct  4 12:22:23 debian kernel: [1963080.712170]  [81106598] ? 
bdi_sched_wait+0x9/0xe
Oct  4 12:22:23 debian kernel: [1963080.712174]  [812f81d5] ? 
__wait_on_bit+0x41/0x70
Oct  4 12:22:23 debian kernel: [1963080.712177]  [8110658f] ? 
bdi_sched_wait+0x0/0xe
Oct  4 12:22:23 debian kernel: [1963080.712180]  [812f826f] ? 
out_of_line_wait_on_bit+0x6b/0x77
Oct  4 12:22:23 debian kernel: [1963080.712184]  [810638fc] ? 
wake_bit_function+0x0/0x23
Oct  4 12:22:23 debian kernel: [1963080.712188]  [81106610] ? 
sync_inodes_sb+0x73/0x12a
Oct  4 12:22:23 debian kernel: [1963080.712191]  [8110a175] ? 
__sync_filesystem+0x4b/0x70
Oct  4 12:22:23 debian kernel: [1963080.712194]  [8110a234] ? 
sync_filesystems+0x9a/0xe3
Oct  4 12:22:23 debian kernel: [1963080.712197]  [8110a2c2] ? 
sys_sync+0x1c/0x2e
Oct  4 12:22:23 debian kernel: [1963080.712202]  [81010b42] ? 
system_call_fastpath+0x16/0x1b
Oct  4 12:24:22 debian kernel: [1963200.712565] INFO: task sync:18607 blocked 
for more than 120 seconds.
Oct  4 12:24:22 debian kernel: [1963200.712569] echo 0  
/proc/sys/kernel/hung_task_timeout_secs disables this message.
Oct  4 12:24:22 debian kernel: [1963200.712572] sync  D 
 0 18607  18591 0x
Oct  4 12:24:22 debian kernel: [1963200.712577]  814591f0 
0086  88009c6bbe30
Oct  4 12:24:22 debian kernel: [1963200.712581]   
f9e0 88009c6bbfd8 00015780
Oct  4 12:24:22 debian kernel: [1963200.712585]  00015780 
88011d78f100 88011d78f3f8 810402dc
Oct  4 12:24:22 debian kernel: [1963200.712588] Call Trace:
Oct  4 12:24:22 debian kernel: [1963200.712598]  [8110658f] ? 
bdi_sched_wait+0x0/0xe
Oct  4 12:24:22 debian kernel: [1963200.712601]  [81106598] ? 
bdi_sched_wait+0x9/0xe
Oct  4 12:24:22 debian kernel: [1963200.712606]  [812f81d5] ? 
__wait_on_bit+0x41/0x70
Oct  4 12:24:22 debian kernel: [1963200.712609]  [8110658f] ? 
bdi_sched_wait+0x0/0xe
Oct  4 12:24:22 debian kernel: [1963200.712613]  [812f826f] ? 
out_of_line_wait_on_bit+0x6b/0x77
Oct  4 12:24:22 debian kernel: [1963200.712616]  [810638fc] ? 
wake_bit_function+0x0/0x23
Oct  4 12:24:22 debian kernel: [1963200.712620]  [81106610] ? 
sync_inodes_sb+0x73/0x12a
Oct  4 12:24:22 debian kernel: [1963200.712623]  [8110a175] ? 
__sync_filesystem+0x4b/0x70
Oct  4 12:24:22 debian kernel: [1963200.712626]  [8110a234] ? 
sync_filesystems+0x9a/0xe3
Oct  4 12:24:22 debian kernel: [1963200.712629]  [8110a2c2] ? 
sys_sync+0x1c/0x2e
Oct  4 12:24:22 debian kernel: [1963200.712634]  [81010b42] ? 
system_call_fastpath+0x16/0x1b
Oct  4 12:26:22 debian kernel: [1963320.712059] INFO: task sync:18607 blocked 
for more than 120 seconds.
Oct  4 12:26:22 debian kernel: [1963320.712064] echo 0  
/proc/sys/kernel/hung_task_timeout_secs disables this message.
Oct  4 12:26:22 debian kernel: [1963320.712066] sync  D 
 0 18607  18591 0x
Oct  4 12:26:22 debian kernel: [1963320.712071]  814591f0 
0086  88009c6bbe30
Oct  4 12:26:22 debian kernel: [1963320.712075]   
f9e0 88009c6bbfd8 00015780
Oct  4 12:26:22 debian kernel: [1963320.712079]  00015780 
88011d78f100 88011d78f3f8 810402dc
Oct  4 12:26:22 debian kernel: [1963320.712083] Call Trace:
Oct  4 12:26:22 debian kernel: [1963320.712092]  [8110658f] ? 
bdi_sched_wait+0x0/0xe
Oct  4 12:26:22 debian kernel: [1963320.712096]  [81106598] ? 
bdi_sched_wait+0x9/0xe
Oct  4 12:26:22 debian kernel: [1963320.712100]  [812f81d5] ? 
__wait_on_bit+0x41/0x70
Oct  4 12:26:22 debian kernel: [1963320.712103]  [8110658f] ? 
bdi_sched_wait+0x0/0xe
Oct  4 12:26:22 debian kernel: [1963320.712106]  [812f826f] ? 
out_of_line_wait_on_bit+0x6b/0x77

Bug#597819: openjdk-6-jre: unable to start remote console

2010-09-23 Thread Toni Mueller
Package: openjdk-6-jre
Version: 6b11-9.1+lenny2
Severity: normal


Hi,

while trying to run a remote console from the BIOS of a computer
(intel), I get these error messages, but no remote console:


GCJ PLUGIN: thread 0x1920f20: NP_Shutdown
GCJ PLUGIN: thread 0x1920f20: NP_Shutdown return
** Message: GetValue variable 1 (1)
** Message: GetValue variable 2 (2)
** Message: GetValue variable 1 (1)
** Message: GetValue variable 2 (2)
** Message: GetValue variable 1 (1)
** Message: GetValue variable 2 (2)
** Message: GetValue variable 1 (1)
** Message: GetValue variable 2 (2)
** Message: GetValue variable 1 (1)
** Message: GetValue variable 2 (2)
GCJ PLUGIN: thread 0x1920f20: NP_GetMIMEDescription
GCJ PLUGIN: thread 0x1920f20: NP_GetMIMEDescription return
GCJ PLUGIN: thread 0x1920f20: NP_GetValue
GCJ PLUGIN: thread 0x1920f20: NP_GetValue: returning plugin name.
GCJ PLUGIN: thread 0x1920f20: NP_GetValue return
GCJ PLUGIN: thread 0x1920f20: NP_GetValue
GCJ PLUGIN: thread 0x1920f20: NP_GetValue: returning plugin description.
GCJ PLUGIN: thread 0x1920f20: NP_GetValue return
GCJ PLUGIN: thread 0x1920f20: NP_Initialize
GCJ PLUGIN: thread 0x1920f20: plugin_test_appletviewer
GCJ PLUGIN: thread 0x1920f20: plugin_test_appletviewer return
GCJ PLUGIN: thread 0x1920f20: NP_Initialize: using 
/usr/lib/jvm/java-6-openjdk/jre/lib/amd64/../../bin/pluginappletviewer
GCJ PLUGIN: thread 0x1920f20: NP_Initialize return
Failed to create Java VM


I'm using Iceweasel from the Lenny release.


Kind regards,
--Toni++

-- System Information:
Debian Release: 5.0.6
  APT prefers stable
  APT policy: (990, 'stable'), (450, 'testing'), (250, 'unstable'), (1, 
'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-bpo.5-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages openjdk-6-jre depends on:
ii  dpkg   1.14.29+b1Debian package management system
ii  libasound2 1.0.22-2~bpo50+2  shared library for ALSA applicatio
ii  libc6  2.7-18lenny4  GNU C Library: Shared libraries
ii  libgif44.1.6-6   library for GIF images (library)
ii  libjpeg62  6b-14 The Independent JPEG Group's JPEG 
ii  libpng12-0 1.2.27-2+lenny4   PNG library - runtime
ii  libx11-6   2:1.1.5-2 X11 client-side library
ii  libxext6   2:1.0.4-2 X11 miscellaneous extension librar
ii  libxi6 2:1.1.4-1 X11 Input extension library
ii  libxtst6   2:1.0.3-1 X11 Testing -- Resource extension 
ii  openjdk-6-jre-headless 6b11-9.1+lenny2   OpenJDK Java runtime, using Hotspo
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

Versions of packages openjdk-6-jre recommends:
ii  ttf-arphic-uming0.2.20080216.1-1 AR PL UMing Chinese Unicode True
ii  ttf-baekmuk 2.2-2Baekmuk series TrueType fonts
ii  ttf-indic-fonts 1:0.5.4  Metapackage for free Indian langua
ii  ttf-kochi-gothic-naga10 1.0.20030809-7   Kochi Subst Gothic Japanese TrueTy
ii  ttf-kochi-mincho-naga10 1.0.20030809-7   Kochi Subst Mincho Japanese TrueTy
ii  ttf-sazanami-gothic 20040629-2   Sazanami Gothic Japanese TrueType 
ii  ttf-sazanami-mincho 20040629-2   Sazanami Mincho Japanese TrueType 
ii  ttf-unfonts 1.0.1-7  Transitional package
ii  ttf-unfonts-core1.0.1-7  Un series Korean TrueType fonts

Versions of packages openjdk-6-jre suggests:
ii  icedtea-gcjwebplugin  1.0+dak1-1 Java plugin based on IcedTea and g

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#486633: problem solved in 3.8

2010-09-20 Thread Toni Mueller

Hi,

I just wanted to note that 3.8.8 comes with both their own HTTP server,
and with a program that makes it run as an external FastCGI
application. It even includes documentation about how to set it up with
lighttpd.

I therefore suggest to close this bug.


Kind regards,
--Toni++




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#597496: request-tracker3.8: fastcgi_server can't select their socket

2010-09-20 Thread Toni Mueller
Package: request-tracker3.8
Version: 3.8.8-3~bpo50+1
Severity: normal


Hi,

there's a problem with the new fastcgi_server in that it
cannot select a unix domain socket. The problem is outlined, and
confirmed, in upstream's tracker:

http://issues.bestpractical.com/Ticket/Display.html?id=15676

it would be nice if that change could make it into Squeeze. ;)


Kind regards,
--Toni++


-- System Information:
Debian Release: 5.0.6
  APT prefers stable
  APT policy: (990, 'stable'), (450, 'testing'), (250, 'unstable'), (1, 
'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-bpo.5-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#592134: init script, raw example

2010-09-20 Thread Toni Mueller


Hello,

below is what I currently use. Please note that the script requires
that the bug #597496 be resolved because otherwise, the socket path
will be different.

I expect this script to be in need to be butchered before it would be
ready for public consumption, though.


Kind regards,
--Toni++


 cut
#!/bin/sh

RTPATH=/var/cache/request-tracker3.8
RTUSER=_rt
WEBUSER=_www11
# FCGI_SOCKET_PATH=$RTPATH/var/appSocket
FCGI_SOCKET_PATH=/tmp/rt.sock
PIDFILE=/var/run/rt/rt.pid
LOGFILE=/var/log/rt.log

case $1 in
start)
D=`dirname $PIDFILE`
if [ ! -d $D ]; then
mkdir -p $D
chown $RTUSER $D
fi
echo -n Starting RT's fastcgi_server: 
cd $RTPATH
export FCGI_SOCKET_PATH
su $RTUSER -c /usr/share/request-tracker3.8/libexec/fastcgi_server -s 
$FCGI_SOCKET_PATH -n 5 --pidfile $PIDFILE   $LOGFILE 21
sleep 20
chgrp $WEBUSER $FCGI_SOCKET_PATH
chmod g+w,o= $FCGI_SOCKET_PATH
ls -l $FCGI_SOCKET_PATH
echo .
;;

stop)
echo -n Stopping RT: 
if [ -f $PIDFILE ]
then
echo -n `cat $PIDFILE`
kill `cat $PIDFILE`
echo
else
echo RT was not running
fi
;;

restart|force-reload)
$0 stop
$0 start
;;

*)
echo Usage: $0 { stop | start | restart }
exit 1
;;
esac
 cut





-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#594472: grub-pc: scary messages and very long boot time after upgrade

2010-09-14 Thread Toni Mueller

Hi,

On Tue, 14.09.2010 at 21:28:17 +0200, Andreas von Heydwolff 
106624@compuserve.com wrote:
 After upgrading mdadm I had

since I really need my machine now, I didn't yet dare to reboot. I also
don't understand the issue too well, but simply want to contribute my
data for comparison.

 [snip]
  Generating udev events for MD arrays...done.
  Verarbeite Trigger für man-db ...
  Verarbeite Trigger für initramfs-tools ...
  update-initramfs: Generating /boot/initrd.img-2.6.32-5-amd64
  cryptsetup: WARNING: invalid line in /etc/crypttab -
  cryptsetup: WARNING: invalid line in /etc/crypttab -

I guess that this 'Generating udev events...' messages comes from
mdadm's postinst?

 On 2010-09-12 21:43, Darren wrote:
 initramfs of ..-amd64 did not get updated. I could not see the
 crypttab error message.

 For me it helped to run a separate
 # update-initramfs

I can't remember any specific error messages, too, but noticed that my
initrds are all out of date. Then I regenerated one for an older kernel
that I usually don't use.

 If that does not help, how does your /etc/crypttab look like?

I didn't yet verify that this does not work, but my crypttab looks
fishy:

   My /etc/crypttab reads
 
 md1_crypt UUID=3a10eb55-2dd8-4846-97e5-74649abf234f none luks
 md2_crypt UUID=e78a6bea-cafb-41a7-89e9-03e999b38d6c none luks


Mine looks like this:

$ cat /etc/crypttab 
md1_crypt /dev/md1 none luks
$

And:

# blkid | grep crypt
/dev/md1: UUID=656f1d28-32c9-435b-b785-e7c1962c4a56 TYPE=crypto_LUKS 
/dev/mapper/md1_crypt: UUID=604eXQ-VtTT-dRFX-2x2r-JTSg-fgW0-nret5y 
TYPE=LVM2_member 
#

 Perhaps it boils down to some bug where Calling hook cryptroot is
 being issued? The format of crypttab seems to be correct, isn't it?
 
 The initramfs system does not find the encrypted RAID1 device that
 contains the vg with root, and when I unlock the device manually and
 start the vg the pv  gets mapped to /dev/dm-0 and /dev/dm-11 a
 second time when booting resumes after unlocking the volume group
 that contains / as can be seen here:
 
 # pvscan
   Found duplicate PV c1Evvwvx3ZfBwDWRyhhI0nY864wtPZ3o: using
 /dev/dm-11 not /dev/dm-0
   PV /dev/dm-12   VG vg-md2dm1   lvm2 [197,43 GiB / 17,43 GiB free]
   PV /dev/dm-11   VG vg-md1dm0   lvm2 [32,59 GiB / 1,31 GiB free]
   Total: 2 [230,02 GiB] / in use: 2 [230,02 GiB] / in no VG: 0 [0   ]

I can't confirm this one:

# pvscan
  PV /dev/dm-0   VG ev0   lvm2 [931.32 GiB / 0free]
  Total: 1 [931.32 GiB] / in use: 1 [931.32 GiB] / in no VG: 0 [0   ]
#


HTH


Kind regards,
--Toni++




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#595671: dovecot-common: please change sendmail's default path

2010-09-05 Thread Toni Mueller
Package: dovecot-common
Version: 1:1.2.13-1~bpo50+1
Severity: minor


Hello,

in the default dovecot.conf file, and presumably in the default settings
for the binaries, the following path for sendmail is encoded:

( in the LDA section ):

  #sendmail_path = /usr/lib/sendmail


Please adjust the package to list, and use, the following path instead:

  #sendmail_path = /usr/sbin/sendmail


Kind regards,
--Toni++



-- System Information:
Debian Release: 5.0.5
  APT prefers stable
  APT policy: (990, 'stable'), (450, 'testing'), (250, 'unstable'), (1, 
'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-bpo.5-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages dovecot-common depends on:
ii  adduser 3.110add and remove users and groups
ii  libbz2-1.0  1.0.5-1  high-quality block-sorting file co
ii  libc6   2.7-18lenny4 GNU C Library: Shared libraries
ii  libcomerr2  1.41.3-1 common error description library
ii  libdb4.64.6.21-11Berkeley v4.6 Database Libraries [
ii  libkrb531.6.dfsg.4~beta1-5lenny4 MIT Kerberos runtime libraries
ii  libldap-2.4-2   2.4.11-1+lenny2  OpenLDAP libraries
ii  libmysqlclient1 5.0.51a-24+lenny4MySQL database client library
ii  libpam-runtime  1.0.1-5+lenny1   Runtime support for the PAM librar
ii  libpam0g1.0.1-5+lenny1   Pluggable Authentication Modules l
ii  libpq5  8.3.11-0lenny1   PostgreSQL C client library
ii  libsqlite3-03.5.9-6  SQLite 3 shared library
ii  libssl0.9.8 0.9.8g-15+lenny7 SSL shared libraries
ii  openssl 0.9.8g-15+lenny7 Secure Socket Layer (SSL) binary a
ii  ucf 3.0016   Update Configuration File: preserv
ii  zlib1g  1:1.2.3.3.dfsg-12compression library - runtime

dovecot-common recommends no packages.

Versions of packages dovecot-common suggests:
ii  ntp   1:4.2.4p4+dfsg-8lenny3 Network Time Protocol daemon and u

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#583917: Bug#594472: grub-pc: scary messages and very long boot time after upgrade

2010-08-30 Thread Toni Mueller

Hi,

On Mon, 30.08.2010 at 08:55:23 +0100, Dh H dhh4...@googlemail.com wrote:
 So this looks a bit like there are two erros:
  1) mdadm is broken in 3.1.2 and brings up these errormessages.
  2) Grub2 seems to be broken, as it does not start crypto,
 consecutively failing to bring up LVM

thanks for the analysis. I'm under the impression that mdadm does
assemble the raids, but then fails to recognize the partition table.
But I don't know whether this is still in the realm of mdadm's
responsibility, or whether some other package (linux-image-*?) should
be responsible instead.

 The only thing I dont understand is why it is only us two
 experiencing this.

I thought I found more than our two reports for this whole problem
suite, but then, this problem only seems to pop up for people who were
upgrading fairly often. See eg. #586449, which seems to be related to
me.

 When rebooting I have the same behaviour as what you described first;

Now *this* sounds dangerous: Failing to reboot for a newly-installed
system. This means that re-installing a box wouldn't fix the problem,
but only recreate it.

 The system complains about the missing vg and comes up with a lot of
 /sys/devices/virtual ... messages, then asks for the disk-passphrase,
 goes into a longer thinking period and after another block of
 /sys/devices/virtual/... messages the vm actually boots without any
 further problems.

My system's thinking period was ended by OOM-killer because something
ate all my RAM. I already submitted messages which included tracebacks
which I can't make too much sense of right now.

 to the actual boot process starting, the vm consumes 150% of my
 processors. Some things are going in an endless loop there?

Sure, and leaking lots of memory underway...

 I use the same architecture as you are: amd64 with a dual core processor.

I have a quad-core (945), plus I run an i386 system with the -bigmem
kernel on top of it, as I also have 8gigs of RAM in my box.

I didn't dare to turn the machine off since it last took so long to
boot, but (of course) would like to.

 The VM is set up as amd64 as well. It does not make a difference if I
 run the vm with one or two processors (only that with one processor
 the vm consumes 100% of that processor while boot is failing, cant do
 more, can it? ;) )

I can't inspect my system very well, but from the sound of the fans,
the CPU must be sizzling hot.


Kind regards,
--Toni++




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#594899: s_client: would like to be able to specify the source address

2010-08-30 Thread Toni Mueller
Package: openssl
Version: 0.9.8g-15+lenny7
Severity: wishlist


Hi,

it would be nice if I could specify the source address for a connection
made with s_client, to select one out of several on a (eg.) multihomed
host.

Thank you!


Kind regards,
--Toni++


-- System Information:
Debian Release: 5.0.5
  APT prefers stable
  APT policy: (990, 'stable'), (450, 'testing'), (250, 'unstable'), (1, 
'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-bpo.5-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages openssl depends on:
ii  libc6  2.7-18lenny4  GNU C Library: Shared libraries
ii  libssl0.9.80.9.8g-15+lenny7  SSL shared libraries
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

openssl recommends no packages.

Versions of packages openssl suggests:
ii  ca-certificates20090814+nmu2 Common CA certificates

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#594472: grub-pc: scary messages and very long boot time after upgrade

2010-08-29 Thread Toni Mueller

Hi,

On Sun, 29.08.2010 at 07:18:36 +0200, Dh H dhh4...@googlemail.com wrote:
 Downgrading MDADM helped for me, but not completely.
 The behaviour at the beginning is still the same, such that it does
 not find the volume-group.
 But now I am dropped into a shell instead of getting these
 /sys/devices/virtual/block/mdX
 messages.

IOW, you need to manually intervene to get the machine to actually
boot, but the whole process is now faster than waiting until the
system figures it out on it's own, right?

 In that shell I can use lvm to bring the vg up and activate the lvs.
 from that point on booting works fine.
 
 Toni, I used this link to get mdadm for downgrade:
 http://snapshot.debian.org/package/mdadm/3.1.1-1/

Thank you! That was exactly what I was looking for.


Kind regards,
--Toni++



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#583917: Bug#594472: grub-pc: scary messages and very long boot time after upgrade

2010-08-28 Thread Toni Mueller

Hi,

On Sun, 29.08.2010 at 02:35:09 +0200, Agustin Martin agmar...@debian.org 
wrote:
 May this be related to #583917,  mdadm: long delay (6-200 minutes)
 during boot (root device detection) after upgrade on RAID/LVM/LUKS
 setup?

after reading this bug report, I'm not convinced. Contrary to my last
statement, my computer came up after a long time, but I wasn't present
then. In /var/log/dmesg, I find this, also scaring:

[2.210480] raid1: raid set md0 active with 2 out of 2 mirrors
[2.210526] md0: detected capacity change from 0 to 197263360
[2.211066]  md0: unknown partition table
[2.231075] md: md1 stopped.
[2.245155] md: bindsdb2
[2.249267] md: bindsda2
[2.250166] raid1: raid set md1 active with 2 out of 2 mirrors
[2.250210] md1: detected capacity change from 0 to 104780032
[2.250777]  md1: unknown partition table
[2.256108] device-mapper: uevent: version 1.0.3
[2.256206] device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised: 
dm-de...@redhat.com
[ 7972.303339] udevd invoked oom-killer: gfp_mask=0x84d0, order=0, oom_adj=-17
[ 7972.303349] udevd cpuset=/ mems_allowed=0
[ 7972.303355] Pid: 81, comm: udevd Not tainted 2.6.32-5-686-bigmem #1
[ 7972.303361] Call Trace:
[ 7972.303370]  [c108f0b4] ? oom_kill_process+0x60/0x201
[ 7972.303377]  [c108f631] ? __out_of_memory+0xf4/0x107
[ 7972.303383]  [c108f69e] ? out_of_memory+0x5a/0x7c
[ 7972.303389]  [c1091f15] ? __alloc_pages_nodemask+0x3e1/0x4e0
[ 7972.303396]  [c1092020] ? __get_free_pages+0xc/0x17
[ 7972.303403]  [c1023bcc] ? pgd_alloc+0x6c/0x21a
[ 7972.303409]  [c1033f60] ? mm_init+0xa8/0xd4
[ 7972.303414]  [c1034429] ? dup_mm+0x6a/0x363
[ 7972.303906]  [c10d3700] ? copy_fs_struct+0x14/0x70
[ 7972.303911]  [c1034cf1] ? copy_process+0x57a/0xf62
[ 7972.303917]  [c103507e] ? copy_process+0x907/0xf62
[ 7972.303923]  [c1035813] ? do_fork+0x13a/0x2bc
[ 7972.303929]  [c10b8479] ? fd_install+0x1e/0x3c
[ 7972.303935]  [c10bf954] ? do_pipe_flags+0x8a/0xc8
[ 7972.303941]  [c11426c3] ? copy_to_user+0x29/0xf8
[ 7972.303947]  [c1006c2e] ? sys_clone+0x21/0x27
[ 7972.303953]  [c100805c] ? syscall_call+0x7/0xb
[ 7972.303958] Mem-Info:
[ 7972.303962] DMA per-cpu:
[ 7972.303966] CPU0: hi:0, btch:   1 usd:   0
[ 7972.303971] CPU1: hi:0, btch:   1 usd:   0
[ 7972.303976] CPU2: hi:0, btch:   1 usd:   0
[ 7972.303981] CPU3: hi:0, btch:   1 usd:   0
[ 7972.303986] Normal per-cpu:
[ 7972.303990] CPU0: hi:  186, btch:  31 usd: 185
[ 7972.303995] CPU1: hi:  186, btch:  31 usd: 180
[ 7972.304020] CPU2: hi:  186, btch:  31 usd: 185
[ 7972.304025] CPU3: hi:  186, btch:  31 usd:  90
[ 7972.304030] HighMem per-cpu:
[ 7972.304034] CPU0: hi:  186, btch:  31 usd:  84
[ 7972.304039] CPU1: hi:  186, btch:  31 usd: 167
[ 7972.304044] CPU2: hi:  186, btch:  31 usd: 162
[ 7972.304049] CPU3: hi:  186, btch:  31 usd:  21
[ 7972.304055] active_anon:8840 inactive_anon:7482 isolated_anon:0
[ 7972.304056]  active_file:859 inactive_file:4801 isolated_file:0
[ 7972.304057]  unevictable:3490 dirty:0 writeback:0 unstable:0
[ 7972.304058]  free:1779496 slab_reclaimable:384 slab_unreclaimable:204066
[ 7972.304058]  mapped:732 shmem:8190 pagetables:394 bounce:0
[ 7972.304083] DMA free:3504kB min:64kB low:80kB high:96kB active_anon:0kB 
inactive_anon:0kB active_file:16kB inactive_file:40kB unevictable:0kB 
isolated(anon):0kB isolated(file):0kB present:15800kB mlocked:0kB dirty:0kB 
writeback:0kB mapped:0kB shmem:0kB slab_reclaimable:0kB 
slab_unreclaimable:12276kB kernel_stack:24kB pagetables:0kB unstable:0kB 
bounce:0kB writeback_tmp:0kB pages_scanned:0 all_unreclaimable? no
[ 7972.304110] lowmem_reserve[]: 0 865 7851 7851
[ 7972.304121] Normal free:3700kB min:3728kB low:4660kB high:5592kB 
active_anon:0kB inactive_anon:0kB active_file:24kB inactive_file:0kB 
unevictable:0kB isolated(anon):0kB isolated(file):0kB present:885944kB 
mlocked:0kB dirty:0kB writeback:0kB mapped:4kB shmem:0kB 
slab_reclaimable:1536kB slab_unreclaimable:803988kB kernel_stack:1264kB 
pagetables:0kB unstable:0kB bounce:0kB writeback_tmp:0kB pages_scanned:0 
all_unreclaimable? no
[ 7972.304148] lowmem_reserve[]: 0 0 55892 55892
[ 7972.304159] HighMem free:7110780kB min:512kB low:8040kB high:15568kB 
active_anon:35360kB inactive_anon:29928kB active_file:3396kB 
inactive_file:19164kB unevictable:13960kB isolated(anon):0kB isolated(file):0kB 
present:7154180kB mlocked:13388kB dirty:0kB writeback:0kB mapped:2924kB 
shmem:32760kB slab_reclaimable:0kB slab_unreclaimable:0kB kernel_stack:0kB 
pagetables:1576kB unstable:0kB bounce:0kB writeback_tmp:0kB pages_scanned:0 
all_unreclaimable? no
[ 7972.304187] lowmem_reserve[]: 0 0 0 0
[ 7972.304196] DMA: 3*4kB 8*8kB 5*16kB 10*32kB 12*64kB 2*128kB 0*256kB 0*512kB 
0*1024kB 1*2048kB 0*4096kB = 3548kB
[ 7972.304214] Normal: 67*4kB 0*8kB 1*16kB 1*32kB 1*64kB 0*128kB 1*256kB 
0*512kB 1*1024kB 1*2048kB 0*4096kB = 3708kB
[ 7972.304233] HighMem: 22*4kB 14*8kB 7*16kB 2*32kB 2*64kB 2*128kB 

Bug#594472: Acknowledgement (grub-pc: scary messages and very long boot time after upgrade)

2010-08-27 Thread Toni Mueller

[Re-sent after I saw the message to control@ being processed, but not
included in the bug report ]

severity 594472 grave
thanks

Hi,

I decided to up the severity after discovering this kernel (?) message
that I missed yesterday:

md1: unknown partition table


before saying

  Volume group ev0 not found


Now I don't know whether my machine boots by accident, or whether this
kind of auto-correction that it seems to handle, is expected to be
successful in all cases, and I'm also wary about the behaviour after
the next upgrade, thus not daring to upgrade anything right now.


Kind regards,
--Toni++



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#594472: Acknowledgement (grub-pc: scary messages and very long boot time after upgrade)

2010-08-27 Thread Toni Mueller
severity 594472 critical
thanks


Hi,

On Fri, 27.08.2010 at 12:26:51 +0200, Toni Mueller supp...@oeko.net wrote:
 I decided to up the severity after discovering this kernel (?) message
 that I missed yesterday:
 
 md1: unknown partition table
 
 before saying
 
   Volume group ev0 not found
 
 
 Now I don't know whether my machine boots by accident, or whether this
 kind of auto-correction that it seems to handle, is expected to be
 successful in all cases, and I'm also wary about the behaviour after

this question is now answered. I had to reboot my machine today, but it
now completely refuses to come up. Which is now a BIG problem for me...

I also have another data point:

In my initial submission, I quoted block numbers, like eg.

  /sys/devices/virtual/block/md1 (10718)
  /sys/devices/virtual/block/md0 (10719)
  /sys/devices/virtual/block/md1 (10720)
  /sys/devices/virtual/block/md0 (10721)
 ^^^
Unlocking the disk /dev/md1 (md1_crypt)


I now noticed that these block numbers vary by boot attempt, but
couldn't yet detect a pattern.


Kind regards,
--Toni++



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#594598: simple way to control running nginx

2010-08-27 Thread Toni Mueller
Package: nginx
Version: 0.7.65-2~bpo50+1
Severity: wishlist
Tags: patch


Hi,

I wanted a simple way to control running nginx w/o fiddling with
update-rc.d and friends, and also w/o munging the init file. The
enclosed patch makes it possible for the user to control (inhibit)
running nginx by setting the DAEMON variable to an invalid name in
/etc/default/nginx.

Enjoy,
--Toni++


-- System Information:
Debian Release: 5.0.5
  APT prefers stable
  APT policy: (990, 'stable'), (450, 'testing'), (250, 'unstable'), (1, 
'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-bpo.5-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages nginx depends on:
ii  libc6  2.7-18lenny4  GNU C Library: Shared libraries
ii  libpcre3   7.6-2.1   Perl 5 Compatible Regular Expressi
ii  libssl0.9.80.9.8g-15+lenny7  SSL shared libraries
ii  lsb-base   3.2-20Linux Standard Base 3.2 init scrip
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

nginx recommends no packages.

nginx suggests no packages.

-- no debconf information
--- /tmp/nginx.orig 2010-05-06 18:39:45.0 +0200
+++ nginx   2010-08-27 16:27:32.0 +0200
@@ -15,13 +15,13 @@
 NAME=nginx
 DESC=nginx
 
-test -x $DAEMON || exit 0
-
 # Include nginx defaults if available
 if [ -f /etc/default/nginx ] ; then
. /etc/default/nginx
 fi
 
+test -x $DAEMON || exit 0
+
 set -e
 
 . /lib/lsb/init-functions


Bug#594472: grub-pc: scary messages and very long boot time after upgrade

2010-08-26 Thread Toni Mueller
Package: grub-pc
Version: 1.98+20100804-2
Severity: important


Hi,

my machine is a standard PC with two SATA disks, bundled as md0 and md1,
with /boot on md0, and everything else in a LUKS encrypted container on
md1 with LVM inside. So, booting normally works by fetching the kernel
and initrd from /boot, then asking for a passphrase to unlock the
container, then proceed with the boot process.

Yesterday, I upgraded to all the latest and greatest in Testing, which
included both new versions of grub-pc and
linux-image--2.6.32-5-686-bigmem (I have 8GB RAM in my machine) and
grub-pc presented me with a statement like your UUIDs are garbled. I
need to regenerate them, or you'll be unable to boot., with my two
disks selected as the default devices to regenerate UUIDs for. I
accepted, understanding that grub-pc wanted to write new MBRs to the
disks, then shut down the machine after the upgrade finished. Today, the
machine booted to the point where it would normally ask for the
passphrase, but instead, it said:

  Volume group ev0 not found
  Skipping volume group ev0
Unable to find LVM volume ev0/root
  Volume group ev0 not found
  Skipping volume group ev0
Unable to find LVM volume ev0/swap

After several (5?) minutes where the machine didn't do anything I was
able to see, the screen was suddenly flushed with a large number of
messages like:

  /sys/devices/virtual/block/md0 (10715)
  /sys/devices/virtual/block/md1 (10716)
  /sys/devices/virtual/block/md0 (10717)
  /sys/devices/virtual/block/md1 (10718)
  /sys/devices/virtual/block/md0 (10719)
  /sys/devices/virtual/block/md1 (10720)
  /sys/devices/virtual/block/md0 (10721)
Unlocking the disk /dev/md1 (md1_crypt)
Enter the passphrase:

After entering the passphrase, the machine used several more minutes
while the cpu cooler went into high pitch, then it emitted the following
message:

  10 logical volume(s) in volume group ev0 now active
cryptsetup: md1_crypt set up successfully

Then it took some more time, after which it emitted a flurry of
messages, ending with this:


  /sys/devices/virtual/block/md0 (25598)
  /sys/devices/virtual/block/md1 (25599)
  /sys/devices/virtual/block/md0 (25600)
  /sys/devices/virtual/block/md1 (25601)
  /sys/devices/virtual/block/md0 (25602)
done.


After that, booting continued normally.


This was a scary event, all in all, and I'd also like to have the
machine boot in 3 minutes, instead of some 15, again.

If you think that this problem should be assigned to a different package
(eg. linux-image-...), please feel free to re-assign, as well as up- or
downgrading the severity.

I think that the problem justifies marking it as 'important', but
hesitated to mark it 'grave' because the machine eventually booted.


Kind regards,
--Toni++


-- Package-specific info:

*** BEGIN /proc/mounts
/dev/mapper/ev0-root / ext3 rw,errors=remount-ro,data=ordered 0 0
/dev/md0 /boot ext3 rw,relatime,errors=continue,data=ordered 0 0
/dev/mapper/ev0-home /home ext3 rw,errors=continue,data=ordered 0 0
/dev/mapper/ev0-vmachines /mounts ext3 rw,errors=continue,data=ordered 0 0
/dev/mapper/ev0-srv /srv ext3 rw,errors=continue,data=ordered 0 0
/dev/mapper/ev0-usr /usr ext3 rw,errors=continue,data=ordered 0 0
/dev/mapper/ev0-var /var ext3 rw,errors=continue,data=ordered 0 0
/dev/mapper/ev0-var--log /var/log ext3 rw,errors=continue,data=ordered 0 0
/dev/mapper/ev0-qmail /var/qmail ext3 rw,relatime,errors=continue,data=ordered 
0 0
/dev/mapper/ev0-qmail--queue /var/qmail/queue ext3 
rw,relatime,errors=continue,data=ordered 0 0
*** END /proc/mounts

*** BEGIN /boot/grub/device.map
(hd0)   /dev/disk/by-id/ata-ST31000528AS_9VP25GY3
(hd1)   /dev/disk/by-id/ata-ST31000528AS_9VP23A8N
*** END /boot/grub/device.map

*** BEGIN /boot/grub/grub.cfg
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  load_env
fi
set default=0
if [ ${prev_saved_entry} ]; then
  set saved_entry=${prev_saved_entry}
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z ${boot_once} ]; then
saved_entry=${chosen}
save_env saved_entry
  fi
}

function load_video {
  insmod vbe
  insmod vga
  insmod video_bochs
  insmod video_cirrus
}

insmod raid
insmod mdraid
insmod part_msdos
insmod part_msdos
insmod ext2
set root='(md0)'
search --no-floppy --fs-uuid --set dd88a909-503e-4bba-82fb-6c8a6293a842
if loadfont /grub/unicode.pf2 ; then
  set gfxmode=640x480
  load_video
  insmod gfxterm
fi
terminal_output gfxterm
set timeout=5
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
insmod raid
insmod mdraid
insmod part_msdos
insmod part_msdos
insmod ext2
set root='(md0)'
search --no-floppy --fs-uuid --set 

Bug#594139: anki: disable splash screen

2010-08-23 Thread Toni Mueller
Package: anki
Version: 0.9.9.8.6-2.1
Severity: wishlist
Tags: upstream


Hi,

I'd like to have an option to disable the splash screen which clutters
my monitor when anki starts. Especially, it obsctructs my using other
programs while anki takes its time to fully start up.

Thank you!


Kind regards,
--Toni++



-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (250, 'unstable'), (50, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686-bigmem (SMP w/4 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages anki depends on:
ii  python2.6.5-11   interactive high-level object-orie
ii  python-beautifulsoup  3.1.0.1-2  error-tolerant HTML parser for Pyt
ii  python-qt44.7.3-1+b1 Python bindings for Qt4
ii  python-simplejson 2.1.1-1simple, fast, extensible JSON enco
ii  python-sqlalchemy 0.6.3-1SQL toolkit and Object Relational 
ii  python-support1.0.9  automated rebuilding support for P

Versions of packages anki recommends:
ii  kakasi  2.3.5~pre1+cvs20071101-1 KAnji KAna Simple Inverter
ii  python-matplotl 0.99.3-1 Python based plotting system in a 

Versions of packages anki suggests:
ii  dvipng1.13-1 convert DVI files to PNG graphics

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#593313: building strongswan

2010-08-19 Thread Toni Mueller

Hi,

On Wed, 18.08.2010 at 00:57:32 +0200, Toni Mueller t...@debian.org wrote:
 trying to tackle this bug, I experience a strange problem.
 
 I didn't understand why you included all the Makefiles and the config.*
 files, too, but tried to remove them from the patch and then re-build
 the package.

I tried to build on a Sid VM, but failed, too. After a long period of
shaking my disk's heads, I got:

$ fakeroot dpkg-buildpackage -i -uc -us  
dpkg-buildpackage: export CFLAGS from dpkg-buildflags (origin: vendor): -g -O2
dpkg-buildpackage: export CPPFLAGS from dpkg-buildflags (origin: vendor): 
dpkg-buildpackage: export CXXFLAGS from dpkg-buildflags (origin: vendor): -g -O2
dpkg-buildpackage: export FFLAGS from dpkg-buildflags (origin: vendor): -g -O2
dpkg-buildpackage: export LDFLAGS from dpkg-buildflags (origin: vendor): 
dpkg-buildpackage: source package strongswan
dpkg-buildpackage: source version 4.4.1-1
dpkg-buildpackage: source changed by Rene Mayrhofer rm...@debian.org
dpkg-buildpackage: host architecture i386
 dpkg-source -i --before-build strongswan-4.4.1
 debian/rules clean
dh_testdir
dh_testroot
rm -f build-stamp
[ ! -f Makefile ] || /usr/bin/make clean
#-/usr/bin/make -C programs/fswcert/ clean
# after a make clean, no binaries _should_ be left, but 
find /home/sw/deb/strongswan/strongswan-4.4.1 -name *.o | xargs 
--no-run-if-empty rm
# Really clean (#356716)
# This is a hack: should be better implemented
rm -f lib/libstrongswan/libstrongswan.a || true
rm -f lib/libstrongswan/liboswlog.a || true
# just in case something went wrong
rm -f /home/sw/deb/strongswan/strongswan-4.4.1/debian/ipsec.secrets
# and make sure that template are up-to-date
debconf-updatepo
dh_clean
 dpkg-source -i -b strongswan-4.4.1
dpkg-source: info: using source format `3.0 (quilt)'
dpkg-source: info: building strongswan using existing 
./strongswan_4.4.1.orig.tar.gz
dpkg-source: warning: ignoring deletion of file config.guess
dpkg-source: info: local changes stored in 
strongswan-4.4.1/debian/patches/debian-changes-4.4.1-1, the modified files are:
 strongswan-4.4.1/config.log
dpkg-source: info: building strongswan in strongswan_4.4.1-1.debian.tar.gz
dpkg-source: info: building strongswan in strongswan_4.4.1-1.dsc
 debian/rules build
dh_testdir
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib --enable-socket-raw --enable-socket-dynamic --enable-ldap 
--enable-curl --with-capabilities=libcap --enable-smartcard 
--with-default-pkcs11=/usr/lib/opensc-pkcs11.so --enable-mediation 
--enable-medsrv --enable-medcli --enable-openssl --enable-agent 
--enable-eap-radius --enable-eap-identity --enable-eap-md5 --enable-eap-gtc 
--enable-eap-aka --enable-eap-mschapv2 --enable-sql --enable-integrity-test 
--enable-nm --enable-ha --enable-dhcp --enable-farp --enable-padlock
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... configure: error: newly created 
file is older than distributed files!
Check your system clock
make: *** [build-stamp] Error 1
dpkg-buildpackage: error: debian/rules build gave error exit status 2



Kind regards,
--Toni++




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#593313: building strongswan

2010-08-17 Thread Toni Mueller

Hi,

trying to tackle this bug, I experience a strange problem.

I didn't understand why you included all the Makefiles and the config.*
files, too, but tried to remove them from the patch and then re-build
the package.

So far, this also fails, however, as I seem to have my pbuilder setup
thoroughly hosed:


$ sudo pdebuild --pbuilder cowbuilder
...
  libopensc2{a} libopensc2-dev{a} libpam0g-dev{a} libpcre3{a} libpopt0{a} 
  libsasl2-2{a} libsqlite3-dev{a} libssh2-1{a} libssh2-1-dev{a} 
  libssl-dev{a} libtasn1-3{a} libtool{a} libudev0{a} libunistring0{a} 
  libxml2{a} libxml2-dev{a} m4{a} man-db{a} network-manager-dev{a} 
  openssl{a} pkg-config{a} po-debconf{a} zlib1g-dev{a} 
The following partially installed packages will be configured:
  pbuilder-satisfydepends-dummy 
0 packages upgraded, 83 newly installed, 0 to remove and 0 not upgraded.
Need to get 466kB/41.9MB of archives. After unpacking 94.6MB will be used.
Writing extended state information...
Err http://192.168.2.10 sid/main libsqlite3-dev 3.7.0-1
  404  Not Found
E: Failed to fetch 
http://192.168.2.10:/debian/pool/main/s/sqlite3/libsqlite3-dev_3.7.0-1_i386.deb:
 404  Not Found
E: Unable to correct for unavailable packages
Reading package lists...
Building dependency tree...
Reading state information...
Reading extended state information...
Initializing package states...
Writing extended state information...
E: pbuilder-satisfydepends failed.
I: Copying back the cached apt archive contents
I: unmounting /var/cache/pbuilder/ccache filesystem
I: unmounting dev/pts filesystem
I: unmounting proc filesystem
 - Cleaning COW directory
  forking: rm -rf /var/cache/pbuilder/build//cow.28056 



I've tried to eliminate all mentioning of that server, which is in fact
an instance of apt-cacher-ng, eg. by logging into the sid root and
modify apt's configuration, but although I also don't have anything
like that in my environment, it still tries to fetch this file.
Updating the chroot didn't help anything, and I don't actually see
where the requirement for this specific version comes from.

Tomorrow I'll probably try within a VM instead of a pbuilder
environment, but any tips you might have are most welcome!


Kind regards,
--Toni++



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#560244: ITP: mysql-cluster

2010-08-10 Thread Toni Mueller

Hi Tom,

On Tue, 10.08.2010 at 10:09:47 -0400, debianbugs.b...@spamgourmet.com 
debianbugs.b...@spamgourmet.com wrote:
 Thanks for the update. I am really glad this being worked on. Do you
 know if the plan is have 2 separate packages like in Ubuntu, one w/
 cluster support and one without (mysql-cluster-server  mysql-server)?

as there is already a non-cluster-enabled set of mysql packages, which
are completely outside of my scope, there'll (hopefully) be only a set
of cluster-enabled packages from my end, while, in theory, the other
group continues to do their own and produce packages that are not
cluster-enabled. Or maybe I join them at some time, and the packages
get somehow unified. Who knows, but at this point, the focust should be
to get the packages done in the first place.

 Also, if I can be of assistance in this effort to get this into Debian
 please let me know.

As I said, all help is welcome. If you are somewhat familiar with the
MySQL code base, and/or their clustering techniques, that would imho be
a big plus.


Kind regards,
--Toni++




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#560244: ITP: mysql-cluster

2010-08-09 Thread Toni Mueller

Hi,

On Mon, 09.08.2010 at 11:31:30 -0400, debianbugs.b...@spamgourmet.com 
debianbugs.b...@spamgourmet.com wrote:
 Unfortunately the Ubuntu mysql-cluster package is broken,

I'm aware of that with respect to Debian - simply recompiling the
package does not work, or at least not for Lenny (that's where I needed
it).

 since the release of 10.04, although there is a workaround that works.

I didn't see that.

 The bug report for this issue has been open since May with no
 activity, it's status is still still listed as new:
 https://bugs.launchpad.net/ubuntu/+source/mysql-cluster-7.0/+bug/579732

I'm not overly concerned with Ubuntu bugs atm, although I'm willing to
consider patches that make things work on Ubuntu if the Debian side is
all green.

 I was really hoping that mysql-cluster would be available in Debian 6,
 but I not optimistic as there seems to be no activity, and squeeze is
 now frozen.

Please take into account that I'm so far doing this single-handedly,
while the non-cluster-enabled mysql package is maintained by a whole
team.

I'm more than willing to team up, but wasn't yet able to make all
connections.

Also, this package does not currently have the highest priority for me,
but will, once finished, also be available as a backport.


-- 
Kind regards,
--Toni++




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#589735: anki: can't create deck

2010-07-20 Thread Toni Mueller
Package: anki
Version: 0.9.9.8.6-2
Severity: important



Hello,

I can't create a deck with anki:

1. I start anki.
2. I press Create
3. I get a popup-window with this error message:


An error occurred. Please:
Restart Anki. 
Tools  Advanced  Full Database Check. 
If it does not fix the problem, please copy the following
into a bug report:

Traceback (most recent call last):
  File /usr/share/anki/ankiqt/ui/main.py, line 877, in onNew
self.deck = DeckStorage.Deck(path)
  File /usr/share/anki/anki/deck.py, line 2708, in Deck
deck = DeckStorage._init(s)
  File /usr/share/anki/anki/deck.py, line 2842, in _init
s.save(deck)
AttributeError: 'Session' object has no attribute 'save'


Unfortunately, after restarting anki, the Tools menu
is inaccessible (greyed out), but since I pushed aside
my .anki directory, it shouldn't matter anyway.



Kind regards,
--Toni++



-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (250, 'unstable'), (50, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686-bigmem (SMP w/4 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages anki depends on:
ii  python2.6.5-5An interactive high-level object-o
ii  python-beautifulsoup  3.1.0.1-2  error-tolerant HTML parser for Pyt
ii  python-qt44.7.3-1+b1 Python bindings for Qt4
ii  python-simplejson 2.1.1-1simple, fast, extensible JSON enco
ii  python-sqlalchemy 0.6.1-1SQL toolkit and Object Relational 
ii  python-support1.0.9  automated rebuilding support for P

Versions of packages anki recommends:
ii  kakasi  2.3.5~pre1+cvs20071101-1 KAnji KAna Simple Inverter
ii  python-matplotl 0.99.3-1 Python based plotting system in a 

Versions of packages anki suggests:
ii  dvipng1.13-1 convert DVI files to PNG graphics

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#589735: Acknowledgement (anki: can't create deck)

2010-07-20 Thread Toni Mueller

Hi,

I just found that the same problem happens when trying to import a
deck.


Kind regards,
--Toni++




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#589739: anki: want to control upload server

2010-07-20 Thread Toni Mueller
Package: anki
Version: 0.9.9.8.6-2
Severity: wishlist


Hi,

I'd like to gain control about where I store my cards on, on the 'Net,
and not be forced to use the Anki web service for that purpose.

Kind regards,
--Toni++


-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (250, 'unstable'), (50, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686-bigmem (SMP w/4 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages anki depends on:
ii  python2.6.5-5An interactive high-level object-o
ii  python-beautifulsoup  3.1.0.1-2  error-tolerant HTML parser for Pyt
ii  python-qt44.7.3-1+b1 Python bindings for Qt4
ii  python-simplejson 2.1.1-1simple, fast, extensible JSON enco
ii  python-sqlalchemy 0.6.1-1SQL toolkit and Object Relational 
ii  python-support1.0.9  automated rebuilding support for P

Versions of packages anki recommends:
ii  kakasi  2.3.5~pre1+cvs20071101-1 KAnji KAna Simple Inverter
ii  python-matplotl 0.99.3-1 Python based plotting system in a 

Versions of packages anki suggests:
ii  dvipng1.13-1 convert DVI files to PNG graphics

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#589735: anki: can't create deck

2010-07-20 Thread Toni Mueller

Hi Damien,

On Tue, 20.07.2010 at 23:01:28 +0900, Damien Elmes reso...@ichi2.net wrote:
 http://code.google.com/p/anki/issues/detail?id=1730

sorry for the noise - I installed the version from unstable, and now I
can create or import stuff, or at least hit the buttons w/o getting a
crash.

So, imho there's no problem closing the bug again.

Thank you!


Kind regards,
--Toni++



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#575103: this bug report is valid*

2010-07-18 Thread Toni Mueller

Hi,

On Sun, 18.07.2010 at 13:06:04 +0900, Junichi Uekawa dan...@netfort.gr.jp 
wrote:
 My initial reaction to this finding is that I advise you to note it
 down in *umask manpage* that you won't be able to read your own file
 if you run
 
  umask 007 
 
 and run as root.

I generally find this strange, given the superuser powers of 'root'.

But then,

 pbuilder does set umask to 0022, and I can make cowbuilder do the
 same. Thoughts?

it would make the behaviour of the two consistent. I don't know who
else, except for users of pbuilder, want to use cowbuilder in the first
place, so expecting consistent behaviour between the two is imho a sane
idea.

I'd also appreciate appropriate comments in the man page of
pbuilder/cowbuilder, as this is imho counterintuitive for people who
usually have a umask 077 or 007 or similar, and there might have been a
reason why the user set a umask of 07 in the first place.



Kind regards,
--Toni++



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#579125: linux-headers-2.6.32-4-amd64: problem initializing LSI controller

2010-07-18 Thread Toni Mueller

Hi Moritz,

On Tue, 06.07.2010 at 01:16:18 +0200, Moritz Muehlenhoff j...@inutil.org 
wrote:
 tags 579125 moreinfo
 thanks
 
 On Sun, Apr 25, 2010 at 04:38:16PM +0200, Toni Mueller wrote:
  Package: linux-headers-2.6.32-4-amd64
  Version: 2.6.32-11~bpo50+1
  Severity: normal
  
  
  Hi,
  
  I'm not quite sure that this is the right package to report against.
  Please reassign as you see fit.
 
 [...]
  
  This renders the card unusable.
 
 This seems to have been fixed in 2.6.32.12, which we pulled in 
 upload 2.6.32-12:
 
 commit 3def5de896ab77232d1cb35fa63dbf627d1db328
 Author: Kashyap, Desai kashyap.de...@lsi.com
 Date:   Wed Oct 7 11:27:40 2009 +0530
 
 mptspi: Fix for incorrect data underrun errata
 
 Could you try this kernel and see verify it's fixed there?

I've now booted

ii  linux-image-2.6.32-bpo.5-amd64 2.6.32-15~bpo50+1Linux 
2.6.32 for 64-bit PCs 
and get this in my /var/log/dmesg:



[   23.172818] [ cut here ]
[   23.172871] WARNING: at 
/tmp/buildd/linux-2.6-2.6.32/debian/build/source_amd64_none/mm/page_alloc.c:1806
 __alloc_pages_nodemask+0x167/0x5d0()
[   23.172930] Hardware name: System Product Name
[   23.172972] Modules linked in: pata_amd sata_nv usbhid hid mptspi mptscsih 
mptbase scsi_transport_spi e1000e forcedeth firewire_ohci ata_generic 
firewire_core crc_itu_t ohci_hcd ehci_hcd libata usbcore nls_base scsi_mod 
thermal fan thermal_sys
[   23.173797] Pid: 760, comm: scsi_scan_9 Not tainted 2.6.32-bpo.5-amd64 #1
[   23.173842] Call Trace:
[   23.173886]  [810b97cb] ? __alloc_pages_nodemask+0x167/0x5d0
[   23.173932]  [810b97cb] ? __alloc_pages_nodemask+0x167/0x5d0
[   23.173979]  [8104dc40] ? warn_slowpath_common+0x77/0xa3
[   23.174025]  [810b97cb] ? __alloc_pages_nodemask+0x167/0x5d0
[   23.174074]  [81015af6] ? dma_generic_alloc_coherent+0x9a/0x120
[   23.174124]  [a010a3e5] ? mptspi_write_spi_device_pg1+0xa1/0x1ce 
[mptspi]
[   23.174179]  [811965b6] ? __bitmap_weight+0x3a/0x7e
[   23.174227]  [a010a576] ? mptspi_write_width+0x64/0x69 [mptspi]
[   23.174275]  [a010adb5] ? mptspi_target_alloc+0x18c/0x1a1 [mptspi]
[   23.174327]  [a001fd47] ? scsi_alloc_target+0x1e5/0x260 [scsi_mod]
[   23.174376]  [a0020fa5] ? __scsi_scan_target+0x5a/0x593 [scsi_mod]
[   23.174423]  [8100f5e7] ? __switch_to+0xd0/0x297
[   23.174471]  [a002152b] ? scsi_scan_channel+0x4d/0x78 [scsi_mod]
[   23.174520]  [a0021633] ? scsi_scan_host_selected+0xdd/0x11d 
[scsi_mod]
[   23.174577]  [a00216e4] ? do_scan_async+0x0/0x13a [scsi_mod]
[   23.174625]  [a00216fa] ? do_scan_async+0x16/0x13a [scsi_mod]
[   23.174674]  [a00216e4] ? do_scan_async+0x0/0x13a [scsi_mod]
[   23.174720]  [81064819] ? kthread+0x79/0x81
[   23.174765]  [81011baa] ? child_rip+0xa/0x20
[   23.174810]  [810647a0] ? kthread+0x0/0x81
[   23.174854]  [81011ba0] ? child_rip+0x0/0x20
[   23.174898] ---[ end trace 131c10636b3743aa ]---


This doesn't look comforting.

I'm also under the impression that the bug should be assigned to
linux-image instead of linux-headers... right?


Kind regards,
--Toni++




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#589114: Info received (Bug#589114: Acknowledgement (scribus-ng: frequent crashes with signal #11))

2010-07-16 Thread Toni Mueller

Hi Alex,

On Thu, 15.07.2010 at 17:18:00 -0500, Oleksandr Moskalenko ma...@debian.org 
wrote:
 * Toni Mueller supp...@oeko.net [2010-07-15 19:51:07 +0200]:
  I obtained the following backtrace from the 1.3.7 package:
 I've built and tested a newer scribus-ng package. I don't see any crashes
 there. The package scribus-ng_1.3.7.dfsg~svn20100715-1 has been uploaded into
 Debian/unstable. Please test it when it becomes available.

thanks - I'll test the package asap, and would like to add that these
particular crashes do not exist with Lenny's version of Scribus,
1.3.4.dfsg+svn20071115-1, on the said amd64 machine.


Kind regards,
--Toni++




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#589187: mcelog: problem reading memory diagnosis

2010-07-16 Thread Toni Mueller

Hi Julien,

On Fri, 16.07.2010 at 12:17:19 +0200, Julien BLACHE jbla...@debian.org wrote:
 Toni Mueller supp...@oeko.net wrote:
  Jul 15 21:44:02 spruce mcelog: Failed to parse DMI data
 OK, new patch, new output ;)

I've applied the patch. This is what I get:

Jul 16 21:40:31 spruce mcelog: Failed to parse DMI data: [BANK0]
Jul 16 21:40:31 spruce mcelog: Failed to parse DMI data
Jul 16 21:40:31 spruce mcelog: Failed to parse DMI data: [BANK1]
Jul 16 21:40:31 spruce mcelog: Failed to parse DMI data
Jul 16 21:40:31 spruce mcelog: Failed to parse DMI data: [BANK2]
Jul 16 21:40:31 spruce mcelog: Failed to parse DMI data
Jul 16 21:40:31 spruce mcelog: Failed to parse DMI data: [BANK3]
Jul 16 21:40:31 spruce mcelog: Failed to parse DMI data
Jul 16 21:40:31 spruce mcelog: failed to prefill DIMM database from DMI data
Jul 16 21:40:31 spruce mcelog: Kernel does not support page offline interface


I have attached a full dmidecode output, so this hopefully speeds
things up. Thanks for your efforts!


-- 
Kind regards,
--Toni++

# dmidecode 2.9
SMBIOS 2.5 present.
68 structures occupying 2420 bytes.
Table at 0x0009F000.

Handle 0x, DMI type 0, 24 bytes
BIOS Information
Vendor: American Megatrends Inc.
Version: 0506   
Release Date: 11/25/2009
Address: 0xF
Runtime Size: 64 kB
ROM Size: 1024 kB
Characteristics:
ISA is supported
PCI is supported
PNP is supported
APM is supported
BIOS is upgradeable
BIOS shadowing is allowed
ESCD support is available
Boot from CD is supported
Selectable boot is supported
BIOS ROM is socketed
EDD is supported
5.25/1.2 MB floppy services are supported (int 13h)
3.5/720 KB floppy services are supported (int 13h)
3.5/2.88 MB floppy services are supported (int 13h)
Print screen service is supported (int 5h)
8042 keyboard services are supported (int 9h)
Serial services are supported (int 14h)
Printer services are supported (int 17h)
CGA/mono video services are supported (int 10h)
ACPI is supported
USB legacy is supported
LS-120 boot is supported
ATAPI Zip drive boot is supported
BIOS boot specification is supported
Targeted content distribution is supported
BIOS Revision: 8.15

Handle 0x0001, DMI type 1, 27 bytes
System Information
Manufacturer: System manufacturer
Product Name: System Product Name
Version: System Version
Serial Number: System Serial Number
UUID: 003B001E-8C00-002B-A831-90E6BAD76C66
Wake-up Type: Power Switch
SKU Number: To Be Filled By O.E.M.
Family: To Be Filled By O.E.M.

Handle 0x0002, DMI type 2, 15 bytes
Base Board Information
Manufacturer: ASUSTeK Computer INC.
Product Name: M4A785TD-V EVO
Version: Rev X.0x
Serial Number: MT709BK08801574
Asset Tag: To Be Filled By O.E.M.
Features:
Board is a hosting board
Board is replaceable
Location In Chassis: To Be Filled By O.E.M.
Chassis Handle: 0x0003
Type: Motherboard
Contained Object Handles: 0

Handle 0x0003, DMI type 3, 21 bytes
Chassis Information
Manufacturer: Chassis Manufacture
Type: Desktop
Lock: Not Present
Version: Chassis Version
Serial Number: Chassis Serial Number
Asset Tag: Asset-1234567890
Boot-up State: Safe
Power Supply State: Safe
Thermal State: Safe
Security Status: None
OEM Information: 0x0001
Height: Unspecified
Number Of Power Cords: 1
Contained Elements: 0

Handle 0x0004, DMI type 4, 40 bytes
Processor Information
Socket Designation: AM3
Type: Central Processor
Family: OUT OF SPEC
Manufacturer: AMD  
ID: 42 0F 10 00 FF FB 8B 17
Version: AMD Phenom(tm) II X4 945 Processor  
Voltage: 1.5 V
External Clock: 200 MHz
Max Speed: 3000 MHz
Current Speed: 3000 MHz
Status: Populated, Enabled
Upgrade: Other
L1 Cache Handle: 0x0005
L2 Cache Handle: 0x0006
L3 Cache Handle: 0x0007
Serial Number: To Be Filled By O.E.M.
Asset Tag: To Be Filled By O.E.M.
Part Number: To Be Filled By O.E.M.
Core Count: 4
Core Enabled: 4
Characteristics:
64-bit capable

Handle 0x0005, DMI type 7, 19 bytes
Cache Information
Socket Designation: L1-Cache
Configuration: Enabled, Not Socketed, Level 1
Operational Mode: Varies With Memory Address
Location

Bug#575103: this bug report is valid*

2010-07-16 Thread Toni Mueller

Hi,

I've just today started to use cowdancer, and run into exactly the same
problem. I don't use anything like svn-buildpackage or so, just getting
my initial pbuilder setup right and now try to move forward to
cowbuilder.

I had umask 007, and was able to build a package with umask 022.


I suggest that this requirement at lest be documented in the man page.


Kind regards,
--Toni++




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#589139: nginx: please remove SSLv2 from the allowed protocols

2010-07-15 Thread Toni Mueller
Package: nginx
Version: 0.7.67-1
Severity: wishlist


Hi,

I've looked into the default configuration of nginx and found that the
SSL part contains eg. this comment:

#ssl_protocols  SSLv2 SSLv3 TLSv1;

I guess that most people would simply remove the comment to enable SSL,
but SSLv2 is really not a desirable protocol these days, and should be
disabled. To make things easier for users, it would be nice if you could
remove all traces of SSLv2 from the configuration, so that users who
want to use SSL, won't inadvertantly activate it.


Kind regards,
--Toni++


-- System Information:
Debian Release: 5.0.5
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'proposed-updates'), (450, 'testing'), 
(250, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages nginx depends on:
ii  libc6  2.7-18lenny4  GNU C Library: Shared libraries
ii  libpcre3   7.6-2.1   Perl 5 Compatible Regular Expressi
ii  libssl0.9.80.9.8g-15+lenny7  SSL shared libraries
ii  lsb-base   3.2-20Linux Standard Base 3.2 init scrip
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

nginx recommends no packages.

nginx suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#577636: current version is 1.3.7

2010-07-15 Thread Toni Mueller


Hi,

please go to check the latest version, 1.3.7, for a new package.

W/o reading the whole changelog, the claim  50 bugs fixed sounds
appealing to me. ;)


Kind regards,
--Toni++




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#589187: mcelog: problem reading memory diagnosis

2010-07-15 Thread Toni Mueller
Package: mcelog
Version: 1.0~pre3-3
Severity: normal
Tags: upstream



Hi,

on system startup, mcelog has this to say:

Jul 15 10:47:08 debian mcelog: failed to prefill DIMM database from DMI data
Jul 15 10:47:08 debian mcelog: Kernel does not support page offline interface

dmidecode has no problems showing detailed information about my memory.


TIA!


Kind regards,
--Toni++


-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (250, 'unstable'), (50, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686-bigmem (SMP w/4 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages mcelog depends on:
ii  debconf [debconf-2.0] 1.5.32 Debian configuration management sy
ii  libc6 2.11.2-2   Embedded GNU C Library: Shared lib
ii  makedev   2.3.1-89   creates device files in /dev
ii  udev  158-1  /dev/ and hotplug management daemo

mcelog recommends no packages.

mcelog suggests no packages.

-- Configuration Files:
/etc/mcelog/mcelog.conf changed:
filter = yes
filter-memory-errors = no
syslog-error = yes
 
client-user = root
[dimm]
dimm-tracking-enabled = yes
dmi-prepopulate = yes
uc-error-threshold = 1 / 24h
ce-error-threshold = 10 / 24h
[socket]
socket-tracing-enabled = yes
mem-uc-error-threshold = 100 / 24h
mem-ce-error-trigger = socket-memory-error-trigger
mem-ce-error-threshold = 100 / 24h
mem-ce-error-log = yes
cache-threshold-trigger = cache-error-trigger
cache-threshold-log = yes
[page]
memory-ce-threshold = 10 / 24h
memory-ce-log = yes
memory-ce-action = soft
[trigger]
children-max = 2
directory = /etc/mcelog


-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#589114: Acknowledgement (scribus-ng: frequent crashes with signal #11)

2010-07-15 Thread Toni Mueller

Hi,

the exact same problem also exists in version 1.3.7.


Kind regards,
--Toni++




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#589114: Info received (Bug#589114: Acknowledgement (scribus-ng: frequent crashes with signal #11))

2010-07-15 Thread Toni Mueller

Hi,

I obtained the following backtrace from the 1.3.7 package:


Script started on Thu 15 Jul 2010 07:20:57 PM CEST
$ gdb ./debian/build/scribus/scribus-ng core 
GNU gdb (GDB) 7.0.1-debian
Copyright (C) 2009 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later http://gnu.org/licenses/gpl.html
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type show copying
and show warranty for details.
This GDB was configured as i486-linux-gnu.
For bug reporting instructions, please see:
http://www.gnu.org/software/gdb/bugs/...
Reading symbols from 
/home/toni/mnt/deb/scribus-ng/scribus-1.3.7/debian/build/scribus/scribus-ng...done.
[New Thread 18433]

warning: Can't read pathname for load map: Input/output error.
Reading symbols from /usr/lib/libcairo.so.2...(no debugging symbols 
found)...done.
Loaded symbols for /usr/lib/libcairo.so.2
Reading symbols from /usr/lib/libQtGui.so.4...Reading symbols from 
/usr/lib/debug/usr/lib/libQtGui.so.4.6.3...done.
(no debugging symbols found)...done.
Loaded symbols for /usr/lib/libQtGui.so.4
Reading symbols from /usr/lib/libQtXml.so.4...Reading symbols from 
/usr/lib/debug/usr/lib/libQtXml.so.4.6.3...done.
(no debugging symbols found)...done.
Loaded symbols for /usr/lib/libQtXml.so.4
Reading symbols from /usr/lib/libQtNetwork.so.4...Reading symbols from 
/usr/lib/debug/usr/lib/libQtNetwork.so.4.6.3...done.
(no debugging symbols found)...done.
Loaded symbols for /usr/lib/libQtNetwork.so.4
Reading symbols from /usr/lib/libQtCore.so.4...Reading symbols from 
/usr/lib/debug/usr/lib/libQtCore.so.4.6.3...done.
(no debugging symbols found)...done.
Loaded symbols for /usr/lib/libQtCore.so.4
Reading symbols from /usr/lib/libcups.so.2...(no debugging symbols 
found)...done.
Loaded symbols for /usr/lib/libcups.so.2
Reading symbols from /usr/lib/libfreetype.so.6...(no debugging symbols 
found)...done.
Loaded symbols for /usr/lib/libfreetype.so.6
Reading symbols from /usr/lib/libfontconfig.so.1...(no debugging symbols 
found)...done.
Loaded symbols for /usr/lib/libfontconfig.so.1
Reading symbols from /usr/lib/liblcms.so.1...(no debugging symbols 
found)...done.
Loaded symbols for /usr/lib/liblcms.so.1
Reading symbols from /usr/lib/libxml2.so.2...(no debugging symbols 
found)...done.
Loaded symbols for /usr/lib/libxml2.so.2
Reading symbols from /usr/lib/libpython2.6.so.1.0...(no debugging symbols 
found)...done.
Loaded symbols for /usr/lib/libpython2.6.so.1.0
Reading symbols from /usr/lib/libtiff.so.4...(no debugging symbols 
found)...done.
Loaded symbols for /usr/lib/libtiff.so.4
Reading symbols from /usr/lib/libjpeg.so.62...(no debugging symbols 
found)...done.
Loaded symbols for /usr/lib/libjpeg.so.62
Reading symbols from /usr/lib/libz.so.1...(no debugging symbols found)...done.
Loaded symbols for /usr/lib/libz.so.1
Reading symbols from /lib/i686/cmov/libdl.so.2...(no debugging symbols 
found)...done.
Loaded symbols for /lib/i686/cmov/libdl.so.2
Reading symbols from /usr/lib/libstdc++.so.6...(no debugging symbols 
found)...done.
Loaded symbols for /usr/lib/libstdc++.so.6
Reading symbols from /lib/i686/cmov/libm.so.6...(no debugging symbols 
found)...done.
Loaded symbols for /lib/i686/cmov/libm.so.6
Reading symbols from /lib/libgcc_s.so.1...(no debugging symbols found)...done.
Loaded symbols for /lib/libgcc_s.so.1
Reading symbols from /lib/i686/cmov/libc.so.6...(no debugging symbols 
found)...done.
Loaded symbols for /lib/i686/cmov/libc.so.6
Reading symbols from /lib/i686/cmov/libpthread.so.0...(no debugging symbols 
found)...done.
Loaded symbols for /lib/i686/cmov/libpthread.so.0
Reading symbols from /usr/lib/libpixman-1.so.0...(no debugging symbols 
found)...done.
Loaded symbols for /usr/lib/libpixman-1.so.0
Reading symbols from /lib/libpng12.so.0...(no debugging symbols found)...done.
Loaded symbols for /lib/libpng12.so.0
Reading symbols from /usr/lib/libxcb-render-util.so.0...(no debugging symbols 
found)...done.
Loaded symbols for /usr/lib/libxcb-render-util.so.0
Reading symbols from /usr/lib/libxcb-render.so.0...(no debugging symbols 
found)...done.
Loaded symbols for /usr/lib/libxcb-render.so.0
Reading symbols from /usr/lib/libxcb.so.1...(no debugging symbols found)...done.
Loaded symbols for /usr/lib/libxcb.so.1
Reading symbols from /usr/lib/libXrender.so.1...(no debugging symbols 
found)...done.
Loaded symbols for /usr/lib/libXrender.so.1
Reading symbols from /usr/lib/libX11.so.6...(no debugging symbols found)...done.
Loaded symbols for /usr/lib/libX11.so.6
Reading symbols from /usr/lib/libaudio.so.2...(no debugging symbols 
found)...done.
Loaded symbols for /usr/lib/libaudio.so.2
Reading symbols from /lib/libglib-2.0.so.0...Reading symbols from 
/usr/lib/debug/lib/libglib-2.0.so.0.2400.1...done.
(no debugging symbols found)...done.
Loaded symbols for /lib/libglib-2.0.so.0
Reading symbols from /usr/lib/libgobject-2.0.so.0...Reading symbols from 

Bug#589197: scribus-ng: don't depend on libcupsys2

2010-07-15 Thread Toni Mueller
Package: scribus-ng
Version: 1.3.4.dfsg+svn20071115-1
Severity: normal


Hello,

I am a user of lprng, but when I install scribus-ng, lprng is being
deinstalled. I can re-install lprng therafter without having scribus-ng
removed, but all the undesirable installation and de-installation of
various components of cups, plus the non-accessibility of lprng in the
meantime, is very undesirable. Also, Debian packages should not depend
in a way that installation order matters *this* much. :-(


Kind regards,
--Toni++



-- System Information:
Debian Release: 5.0.5
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'proposed-updates'), (450, 'testing'), 
(250, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages scribus-ng depends on:
ii  ghostscript-x [gs- 8.62.dfsg.1-3.2lenny1 The GPL Ghostscript PostScript/PDF
ii  gs-esp 8.62.dfsg.1-3.2lenny1 Transitional package
ii  gs-gpl 8.62.dfsg.1-3.2lenny1 Transitional package
ii  libart-2.0-2   2.3.20-2  Library of functions for 2D graphi
ii  libc6  2.7-18lenny4  GNU C Library: Shared libraries
ii  libcups2 [libcupsy 1.3.8-1+lenny8Common UNIX Printing System(tm) - 
ii  libcupsys2 1.3.8-1+lenny8Common UNIX Printing System (trans
ii  libfontconfig1 2.6.0-3   generic font configuration library
ii  libfreetype6   2.3.7-2+lenny1FreeType 2 font engine, shared lib
ii  libgcc11:4.3.2-1.1   GCC support library
ii  libjpeg62  6b-14 The Independent JPEG Group's JPEG 
ii  liblcms1   1.17.dfsg-1+lenny2Color management library
ii  libqt3-mt  3:3.3.8b-5Qt GUI Library (Threaded runtime v
ii  libstdc++6 4.3.2-1.1 The GNU Standard C++ Library v3
ii  libtiff4   3.8.2-11.2Tag Image File Format (TIFF) libra
ii  libx11-6   2:1.1.5-2 X11 client-side library
ii  libxml22.6.32.dfsg-5+lenny1  GNOME XML library
ii  python 2.5.2-3   An interactive high-level object-o
ii  python-tk  2.5.2-1   Tkinter - Writing Tk applications 
ii  python2.4  2.4.6-1+lenny1An interactive high-level object-o
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

Versions of packages scribus-ng recommends:
pn  cupsys-bsdnone (no description available)
ii  gsfonts-x11   0.21   Make Ghostscript fonts available t
ii  xfonts-scalable   1:1.0.0-6  scalable fonts for X

Versions of packages scribus-ng suggests:
pn  scribus-template  none (no description available)

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#589187: mcelog: problem reading memory diagnosis

2010-07-15 Thread Toni Mueller

Hi Julien,

On Thu, 15.07.2010 at 19:03:17 +0200, Julien BLACHE jbla...@debian.org wrote:
 Toni Mueller supp...@oeko.net wrote:
  Jul 15 10:47:08 debian mcelog: failed to prefill DIMM database from DMI data
 
  dmidecode has no problems showing detailed information about my memory.
 
 There are two reasons why this message can appear, so could you
 instrument memdb.c:prefill_memdb() to distinguish between parse errors
  ^^

maybe, if I figure out what that means, or if you explain it to me. ;|

So far, I understand: Compile with debugging symbols and run the
unstripped code under a debugger. Correct?


-- 
Kind regards,
--Toni++




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#589187: mcelog: problem reading memory diagnosis

2010-07-15 Thread Toni Mueller

Hi Julien,

On Thu, 15.07.2010 at 21:24:13 +0200, Julien BLACHE jbla...@debian.org wrote:
 Apply the attached patch and rebuild mcelog, install the package and
 restart the daemon; you should get some more output to syslog.

done. I get:

Jul 15 21:44:02 spruce mcelog: Failed to parse DMI data
Jul 15 21:44:02 spruce mcelog: Failed to parse DMI data
Jul 15 21:44:02 spruce mcelog: Failed to parse DMI data
Jul 15 21:44:02 spruce mcelog: Failed to parse DMI data
Jul 15 21:44:02 spruce mcelog: failed to prefill DIMM database from DMI data
Jul 15 21:44:02 spruce mcelog: Kernel does not support page offline interface

FWIW, I have 8 gigs of memory in my machine, installed with i386 code,
running on this cpu:

AMD Phenom(tm) II X4 945 Processor stepping 02



Kind regards,
--Toni++




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#589114: scribus-ng: frequent crashes with signal #11

2010-07-14 Thread Toni Mueller

Package: scribus-ng
Version: 1.3.5.dfsg+svn20091216-3+b1
Justification: renders package unusable
Severity: grave

*** Please type your report below this line ***

Hi,

I see very frequent crashes of scribus-ng with signal #11.

Now, signal 11 usually means bad memory, but I have ECC RAM in this
machine and no entries in my kernel's log. With memory errors, I'd
expect some kernel machine check exceptions to be logged.

Running it from the console, I can provoke the crash at any time like
this:

1. Create a new document
2. Open the layer dialogue and try to add a layer.

I'll immediately get a sig#11:

$ env LANG=en_US.utf8 scribus-ng
Scribus Crash
-
Scribus crashes due to Signal #11
Calling Emergency Save
Segmentation fault


Marking the bug 'grave' as virtually everyone uses layers for about
anything as complex as eg. a business card.



Kind regards,
--Toni++



-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (250, 'unstable'), (50, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686-bigmem (SMP w/4 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages scribus-ng depends on:
ii  ghostscript 8.71~dfsg2-3 The GPL Ghostscript PostScript/PDF
ii  libaspell15 0.60.6-4 GNU Aspell spell-checker runtime l
ii  libc6   2.11.2-2 Embedded GNU C Library: Shared lib
ii  libcairo2   1.8.10-4 The Cairo 2D vector graphics libra
ii  libcups21.4.4-1  Common UNIX Printing System(tm) - 
ii  libfontconfig1  2.8.0-2.1generic font configuration library
ii  libfreetype62.3.11-1 FreeType 2 font engine, shared lib
ii  libgcc1 1:4.4.4-6GCC support library
ii  libjpeg62   6b1-1The Independent JPEG Group's JPEG 
ii  liblcms11.18.dfsg-1.2+b2 Color management library
ii  libpython2.62.6.5+20100706-1 Shared Python runtime library (ver
ii  libqt4-network  4:4.6.3-1Qt 4 network module
ii  libqt4-xml  4:4.6.3-1Qt 4 XML module
ii  libqtcore4  4:4.6.3-1Qt 4 core module
ii  libqtgui4   4:4.6.3-1Qt 4 GUI module
ii  libstdc++6  4.4.4-6  The GNU Standard C++ Library v3
ii  libtiff43.9.4-1  Tag Image File Format (TIFF) libra
ii  libxml2 2.7.7.dfsg-4 GNOME XML library
ii  python  2.6.5-5  An interactive high-level object-o
ii  python-tk   2.6.5-1  Tkinter - Writing Tk applications 
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

Versions of packages scribus-ng recommends:
ii  cups-bsd  1.4.4-1Common UNIX Printing System(tm) - 
ii  gsfonts-x11   0.21   Make Ghostscript fonts available t
ii  icc-profiles  1.0.1-4ICC color profiles for use with Sc
ii  xfonts-scalable   1:1.0.1-1  scalable fonts for X

Versions of packages scribus-ng suggests:
pn  scribus-template  none (no description available)

-- no debconf information




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#588792: dlocate: please depend alternatively on mlocate, in addition to locate

2010-07-12 Thread Toni Mueller
Package: dlocate
Version: 0.96.1
Severity: wishlist


Hi,

I'd like to use mlocate and remove locate, but cannot do so because
dlocate depends on locate.


Kind regards,
--Toni++



-- System Information:
Debian Release: 5.0.5
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'proposed-updates'), (450, 'testing'), 
(250, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages dlocate depends on:
ii  dctrl-tools [grep-dctrl 2.13.1   Command-line tools to process Debi
ii  dpkg1.14.29  Debian package management system
ii  findutils   4.4.0-2  utilities for finding files--find,
ii  gawk [awk]  1:3.1.5.dfsg-4.1 GNU awk, a pattern scanning and pr
di  locate  4.4.0-2  maintain and query an index of a d
ii  mawk [awk]  1.3.3-11.1   a pattern scanning and text proces
ii  perl5.10.0-19lenny2  Larry Wall's Practical Extraction 

dlocate recommends no packages.

dlocate suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#588297: Xapian 1.2 compatibility, take 2

2010-07-12 Thread Toni Mueller

Hi Olly,

On Wed, 07.07.2010 at 14:58:35 +0200, Toni Mueller t...@debian.org wrote:
 On Wed, 07.07.2010 at 14:46:45 +1200, Olly Betts o...@survex.com wrote:
  Alternatively, upstream has now released 1.4.14 with this fix in, so
  packaging this new upstream release would also address this issue.
 
 I am investigating the upgrade to 1.4.14, but there is one serious
 regression that I need upstream's help with, before I can go ahead and
 upload 1.4.14.

s/1.4.14/1.4.15/

Unfortunately, I have run into some problems that prevent me from
fixing this problem right away, so if I'm standing in the way of you
getting a transition through, please feel free to NMU.

TIA!


Kind regards,
--Toni++



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#588428: pure-ftpd-mysql: apparently, only md5 passwords are recognized

2010-07-08 Thread Toni Mueller
Package: pure-ftpd-mysql
Version: 1.0.21-11.4
Severity: normal


Hi,

I just wanted to add a new user to a MySQL database for authentication.
So I did something along insert ... (username, password, ...) values
('bla', password ('blubb'), ...).

The result was that I could not authenticate as that user. Then I did
update ... set password = md5('blubb') where username = 'bla';, and
then I could authenticate as the user.

In my mysql.conf file for pure-ftpd, I have:

MYSQLCrypt  any

The MySQL server resides on the same machine and has this version:

ii  mysql-server-5.05.0.51a-24+lenny4

I also have:

ii  libmysqlclient15off5.0.51a-24+lenny4

This suggests that, contrary to the documentation, authentication with
eg. MySQL passwords does not work.


Kind regards,
--Toni++



-- System Information:
Debian Release: 5.0.5
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'proposed-updates'), (450, 'testing'), 
(250, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#588428: closed by Stefan Hornburg (Racke) ra...@linuxia.de (Re: Bug#588428: pure-ftpd-mysql: apparently, only md5 passwords are recognized)

2010-07-08 Thread Toni Mueller

Hi,

On Thu, 08.07.2010 at 09:27:11 +, Debian Bug Tracking System 
ow...@bugs.debian.org wrote:
 Use encrypt(..) instead of password(..). MySQL passwords from password() are 
 not
 supported - this is a MySQL specific format.

ok, then this is an upstream documentation bug.


Kind regards,
--Toni++




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#588428: closed by Stefan Hornburg (Racke) ra...@linuxia.de (Re: Bug#588428: pure-ftpd-mysql: apparently, only md5 passwords are recognized)

2010-07-08 Thread Toni Mueller


Hi,


On Thu, 08.07.2010 at 11:39:35 +0200, Stefan Hornburg (Racke) 
ra...@linuxia.de wrote:
 Where does it say that it takes password() encrypted passwords?

on this page:
http://download.pureftpd.org/pub/pure-ftpd/doc/README.MySQL

I read:

--- cut
- The user's password, in plaintext, MD5, crypt()ed or MySQL's password()
format. Pure-FTPd also accepts the any value for the MySQLCrypt field.
With any, all hashing functions (not plaintext) are tried.
--- cut


Kind regards,
--Toni++




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#588297: Xapian 1.2 compatibility, take 2

2010-07-07 Thread Toni Mueller


Hi Olly,

On Wed, 07.07.2010 at 14:46:45 +1200, Olly Betts o...@survex.com wrote:
 Alternatively, upstream has now released 1.4.14 with this fix in, so
 packaging this new upstream release would also address this issue.

I am investigating the upgrade to 1.4.14, but there is one serious
regression that I need upstream's help with, before I can go ahead and
upload 1.4.14.


Kind regards,
--Toni++




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#587391: pure-ftpd-postgresql: spontanous crash

2010-06-28 Thread Toni Mueller


Package: pure-ftpd-postgresql
Version: 1.0.21-11.4
Severity: grave
Justification: renders package unusable

*** Please type your report below this line ***

Hello,

after starting pure-ftpd, I see this in my logs:

 *** glibc detected *** pure-ftpd (IDLE): double free or corruption (!prev): 
0x01ee9bd0 ***

I'm unable to use the server as-is, and need to exchange it against
something else.

The stack trace looks like this (logged with svlogd from runit):


@40004c28632d00b98a0c *** glibc detected *** pure-ftpd (IDLE): double free 
or corruption (!prev): 0x01ee9bd0 ***
@40004c28632d00bced3c === Backtrace: =
@40004c28632d00bd8d64 /lib/libc.so.6[0x7fd321e459a8]
@40004c28632d00be29a4 /lib/libc.so.6(cfree+0x76)[0x7fd321e47ab6]
@40004c28632d00be5884 pure-ftpd (IDLE)[0x41176a]
@40004c28632d00be8764 pure-ftpd (IDLE)[0x411c67]
@40004c28632d00beb25c pure-ftpd (IDLE)[0x407cc5]
@40004c28632d00bee13c pure-ftpd (IDLE)[0x408309]
@40004c28632d00bf0c34 pure-ftpd (IDLE)[0x4181c9] @40004c28632d00bf3b14 
pure-ftpd (IDLE)[0x40ecc2]
@40004c28632d00bf660c pure-ftpd (IDLE)[0x40f39e]
@40004c28632d00bf9104 pure-ftpd (IDLE)[0x40f7b1]
@40004c28632d00bfbfe4 pure-ftpd (IDLE)[0x410bee]
@40004c28632d00c03514 /lib/libc.so.6(__libc_start_main+0xe6)[0x7fd321df01a6]
@40004c28632d00c063f4 pure-ftpd (IDLE)[0x404a89]
@40004c28632d00c08eec === Memory map: 
@40004c28632d00c165c4 0040-00427000 r-xp  fe:02 310930  
   /usr/sbin/pure-ftpd-postgresql
@40004c28632d00c1794c 00627000-00629000 rw-p 00027000 fe:02 310930  
   /usr/sbin/pure-ftpd-postgresql
@40004c28632d00c188ec 00629000-0063d000 rw-p 00629000 00:00 0 
@40004c28632d00c194a4 01ed2000-01f29000 rw-p 01ed2000 00:00 0   
   [heap]
@40004c28632d00c1a444 7fd31400-7fd314021000 rw-p 7fd31400 00:00 0 
@40004c28632d00c1affc 7fd314021000-7fd31800 ---p 7fd314021000 00:00 0 
@40004c28632d00c1bf9c 7fd31a1b4000-7fd31a1ca000 r-xp  fe:00 45700   
   /lib/libgcc_s.so.1
@40004c28632d00c1cb54 7fd31a1ca000-7fd31a3ca000 ---p 00016000 fe:00 45700   
   /lib/libgcc_s.so.1
@40004c28632d00c1daf4 7fd31a3ca000-7fd31a3cb000 rw-p 00016000 fe:00 45700   
   /lib/libgcc_s.so.1
@40004c28632d00c1ea94 7fd31a3cb000-7fd31a3d4000 r-xp  fe:00 46044   
   /lib/libnss_nis-2.7.so
@40004c28632d00c1f64c 7fd31a3d4000-7fd31a5d4000 ---p 9000 fe:00 46044   
   /lib/libnss_nis-2.7.so
@40004c28632d00c205ec 7fd31a5d4000-7fd31a5d6000 rw-p 9000 fe:00 46044   
   /lib/libnss_nis-2.7.so
@40004c28632d00c211a4 7fd31a5d6000-7fd31a5eb000 r-xp  fe:00 46033   
   /lib/libnsl-2.7.so
@40004c28632d00c286d4 7fd31a5eb000-7fd31a7ea000 ---p 00015000 fe:00 46033   
   /lib/libnsl-2.7.so
@40004c28632d00c29674 7fd31a7ea000-7fd31a7ec000 rw-p 00014000 fe:00 46033   
   /lib/libnsl-2.7.so
@40004c28632d00c2a22c 7fd31a7ec000-7fd31a7ee000 rw-p 7fd31a7ec000 00:00 0 
@40004c28632d00c2b1cc 7fd31a7ee000-7fd31a7f5000 r-xp  fe:00 46034   
   /lib/libnss_compat-2.7.so
@40004c28632d00c2bd84 7fd31a7f5000-7fd31a9f4000 ---p 7000 fe:00 46034   
   /lib/libnss_compat-2.7.so
@40004c28632d00c2cd24 7fd31a9f4000-7fd31a9f6000 rw-p 6000 fe:00 46034   
   /lib/libnss_compat-2.7.so
@40004c28632d00c2dcc4 7fd31a9f6000-7fd31aa0 r-xp  fe:00 46049   
   /lib/libnss_files-2.7.so
@40004c28632d00c2ec64 7fd31aa0-7fd31ac0 ---p a000 fe:00 46049   
   /lib/libnss_files-2.7.so
@40004c28632d00c2f81c 7fd31ac0-7fd31ac02000 rw-p a000 fe:00 46049   
   /lib/libnss_files-2.7.so
@40004c28632d00c307bc 7fd31ac02000-7fd31fe04000 r--p  fe:02 721464  
   /usr/lib/locale/locale-archive
@40004c28632d00c3175c 7fd31fe04000-7fd31fe69000 r-xp  fe:02 719907  
   /usr/lib/libgcrypt.so.11.4.4
@40004c28632d00c384bc 7fd31fe69000-7fd320068000 ---p 00065000 fe:02 719907  
   /usr/lib/libgcrypt.so.11.4.4
@40004c28632d00c3cef4 7fd320068000-7fd32006b000 rw-p 00064000 fe:02 719907  
   /usr/lib/libgcrypt.so.11.4.4
@40004c28632d00c3de94 7fd32006b000-7fd32006e000 r-xp  fe:02 719905  
   /usr/lib/libgpg-error.so.0.3.0
@40004c28632d00c3ea4c 7fd32006e000-7fd32016d000 ---p 3000 fe:02 719905  
   /usr/lib/libgpg-error.so.0.3.0
@40004c28632d00c3f9ec 7fd32016d000-7fd32016e000 rw-p 2000 fe:02 719905  
   /usr/lib/libgpg-error.so.0.3.0
@40004c28632d00c4098c 7fd32016e000-7fd32017d000 r-xp  fe:02 719913  
   /usr/lib/libtasn1.so.3.0.15

Bug#580374: don't see the exact same problem

2010-06-26 Thread Toni Mueller

Hi,

my unbound (same version) just went to 100% cpu on one core as well,
but for no reason that I've detected yet. However, trying out the
suggested command, I see a different problem exposed:

$ dig +short rs.dns-oarc.net txt
rst.x3827.rs.dns-oarc.net.
rst.x3837.x3827.rs.dns-oarc.net.
rst.x3843.x3837.x3827.rs.dns-oarc.net.
79.228.190.64 DNS reply size limit is at least 3843
79.228.190.64 sent EDNS buffer size 4096
Tested at 2010-06-26 18:18:24 UTC


This indicates that unbound will be unable to handle some real-world
DNSSEC data, according to the web page mentioned. The standard log
level of '1' does not log queries, nor answers.


Kind regards,
--Toni++




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#586438: update-notifier-common: illegitimate assumption about sources.list

2010-06-19 Thread Toni Mueller
Package: update-notifier-common
Version: 0.99.3debian4
Severity: normal
Tags: squeeze sid


Hi,

everytime I log in, I see this:

$ sh   /usr/lib/update-notifier/update-motd-updates-available 
stat: cannot stat `/etc/apt//sources.list': No such file or directory
/usr/lib/update-notifier/update-motd-updates-available: line 43: [: -gt: unary 
operator expected
...


The reason is that I have modularized sources.list into individual
snippets in /etc/apt/sources.list.d, and no /etc/sources.list anymore.
This is to ease adapting to changing network conditions - I can now copy
appropriate snippets to and fro, instead of having to mangle the
sources.list file.

The test in line 43 is too simplistic to catch this case, but I'm
uncertain about what the program should really do. Maybe this:


NEED_UPDATE_CHECK=no

for i in /$EtcDir/$SourceList /$EtcDir/${SourceList}.d/*; do
test -f $i  NEED_UPDATE_CHECK=yes
done


Just a shot into the dark.



Kind regards,
--Toni++



-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (250, 'unstable'), (50, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-4-686-bigmem (SMP w/4 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages update-notifier-common depends on:
ii  python2.5.4-9An interactive high-level object-o
ii  python-apt0.7.95 Python interface to libapt-pkg

Versions of packages update-notifier-common recommends:
pn  cpu-checker   none (no description available)
ii  libpam-modules1.1.1-3Pluggable Authentication Modules f

update-notifier-common suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#586438: update-notifier-common: illegitimate assumption about sources.list

2010-06-19 Thread Toni Mueller

Hi,

On Sat, 19.06.2010 at 16:54:37 +0200, Toni Mueller supp...@oeko.net wrote:
 NEED_UPDATE_CHECK=no
 
 for i in /$EtcDir/$SourceList /$EtcDir/${SourceList}.d/*; do
   test -f $i  NEED_UPDATE_CHECK=yes
 done

I suggest the following change instead:


$ diff -uw update-motd-updates-available 
/usr/lib/update-notifier/update-motd-updates-available 
--- update-motd-updates-available   2010-05-05 12:27:47.0 +0200
+++ /usr/lib/update-notifier/update-motd-updates-available  2010-06-19 
18:56:52.0 +0200
@@ -40,9 +40,17 @@
 SourceList=sources.list
 eval $(apt-config shell EtcDir Dir::Etc)
 eval $(apt-config shell SourceList Dir::Etc::sourcelist)
-if [ $(stat -c %Y /$EtcDir/$SourceList) -gt $stampt ]; then
+
+NEED_UPDATE_CHECK=no
+
+for i in /$EtcDir/$SourceList /$EtcDir/${SourceList}.d/*; do
+if [ -f $i ]  [ $(stat -c %Y $i) -gt $stampt ]; then
 NEED_UPDATE_CHECK=yes
 fi
+done
+
+
+
 
 # output something for update-motd
 if [ -n $NEED_UPDATE_CHECK ]; then



Kind regards,
--Toni++




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#586438: update-notifier-common: illegitimate assumption about sources.list

2010-06-19 Thread Toni Mueller

Hi,

On Sat, 19.06.2010 at 20:11:31 +0200, Julian Andres Klode j...@debian.org 
wrote:
 I couldn't care less about this bug (OK, maybe a bit less is possible),
 as the functionality causing it is disabled in the version in unstable.

this would imho be your task, right?


-- 
Kind regards,
--Toni++




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#586086: src:mysql-5.1: FTBFS due to libtool problems

2010-06-16 Thread Toni Mueller

Package: src:mysql-5.1
Version: 5.1.47-1~bpo50+1
Severity: serious
Justification: no longer builds from source


Hi,

I've tried to recompile the package on my Lenny machine, but don't
succeed. Although I have all build dependencies satisfied, I get:


...
mv -f .deps/conf_to_src.Tpo .deps/conf_to_src.Po
/bin/sh ../libtool --preserve-dup-deps --tag=CC   --mode=link gcc  -O3 
-DBIG_JOINS=1  -fno-strict-aliasing   -DUNIV_LINUX -DUNIV_LINUX -static 
-rdynamic  -o conf_to_src conf_to_src.o xml.o ctype.o bcmp.o  -lpthread -lcrypt 
-lnsl -lm  -lpthread 
../libtool: line 467: CDPATH: command not found
../libtool: line 1145: func_opt_split: command not found
libtool: Version mismatch error.  This is libtool 2.2.6, but the
libtool: definition of this LT_INIT comes from an older release.
libtool: You should recreate aclocal.m4 with macros from libtool 2.2.6
libtool: and run autoconf again.
make[2]: *** [conf_to_src] Error 63
make[2]: *** Waiting for unfinished jobs
mv -f .deps/decimal.Tpo .deps/decimal.Po
make[2]: Leaving directory `/home/staff/mnt/deb/mysql/51bpo/builddir/strings'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/staff/mnt/deb/mysql/51bpo/builddir'
make: *** [build-stamp] Error 2


In Lenny, theres no libtool 2.2.6, and there is also no such
requirement stated in debian/control:

$ grep Build-Depends debian/control 
Build-Depends: libtool (= 1.4.2-7), procps | hurd,  debhelper (= 7.0.15), 
file (= 3.28), libncurses5-dev (= 5.0-6), perl (= 5.6.0), libwrap0-dev (= 
7.6-8.3), zlib1g-dev (= 1:1.1.3-5), libreadline-dev, psmisc, po-debconf, 
chrpath, automake1.9, doxygen, texlive-latex-base, ghostscript, dpatch, gawk, 
bison, lsb-release, hardening-wrapper


$ dpkg -l libtool
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Cfg-files/Unpacked/Failed-cfg/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)
||/ Name   Version  
  Description
+++-==-==-
ii  libtool1.5.26-4+lenny1  
  Generic library support script



What gives?




Kind regards,
--Toni++



-- System Information:
Debian Release: 5.0.4
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'proposed-updates'), (450, 'testing'), 
(250, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#514458: bug also for UTF8-locales?

2010-06-15 Thread Toni Mueller

Hi,


On Mon, 14.06.2010 at 23:29:59 -0500, Adam Majer ad...@zombino.com wrote:
   * lscpu or /proc/cpuinfo

processor   : 0
vendor_id   : AuthenticAMD
cpu family  : 15
model   : 107
model name  : AMD Athlon(tm) 64 X2 Dual Core Processor 4400+
stepping: 1
cpu MHz : 1000.000
cache size  : 512 KB
physical id : 0
siblings: 2
core id : 0
cpu cores   : 2
apicid  : 0
initial apicid  : 0
fpu : yes
fpu_exception   : yes
cpuid level : 1
wp  : yes
flags   : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt rdtscp lm 
3dnowext 3dnow rep_good pni cx16 lahf_lm cmp_legacy svm extapic cr8_legacy 
3dnowprefetch
bogomips: 2011.09
TLB size: 1024 4K pages
clflush size: 64
cache_alignment : 64
address sizes   : 40 bits physical, 48 bits virtual
power management: ts fid vid ttp tm stc 100mhzsteps

processor   : 1
vendor_id   : AuthenticAMD
cpu family  : 15
model   : 107
model name  : AMD Athlon(tm) 64 X2 Dual Core Processor 4400+
stepping: 1
cpu MHz : 1000.000
cache size  : 512 KB
physical id : 0
siblings: 2
core id : 1
cpu cores   : 2
apicid  : 1
initial apicid  : 1
fpu : yes
fpu_exception   : yes
cpuid level : 1
wp  : yes
flags   : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt rdtscp lm 
3dnowext 3dnow rep_good pni cx16 lahf_lm cmp_legacy svm extapic cr8_legacy 
3dnowprefetch
bogomips: 2011.09
TLB size: 1024 4K pages
clflush size: 64
cache_alignment : 64
address sizes   : 40 bits physical, 48 bits virtual
power management: ts fid vid ttp tm stc 100mhzsteps

   * what distribution are you running? 64-bit or 32-bit?

Debian Lenny/amd64
$ cat /etc/debian_version 
5.0.4



-- 
Kind regards,
--Toni++




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#514458: bug also for UTF8-locales?

2010-06-14 Thread Toni Mueller

Hello,

I see the same thing with a locale setting of LANG=en_US.UTF-8.

The program appears to use 100% cpu for extended periods of time (eg.
25 minutes CPU time for 35 minutes wall clock time), while the user
doesn't really calculate much more than 1+2.


Kind regards,
--Toni++




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#585877: mysql-server: drops cluster support, but the suggested mysql-cluster package does not exist

2010-06-14 Thread Toni Mueller
Package: mysql-server
Version: 5.0.51a-24+lenny4
Severity: important


Hello,

I was upgrading a server from Lenny's MySQL to the backport from Squeeze
in order to gain better cluster support. Currently, this is what is see
on the target machine:

# dpkg -l 'mysql-server*'
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Cfg-files/Unpacked/Failed-cfg/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)
||/ Name Version  Description
+++---
iU  mysql-server 5.1.47-1~bpo50+1 MySQL database server 
(metapackage depending on the latest versi
un  mysql-server-4.1 none   (no description available)
rc  mysql-server-5.0 5.0.51a-24+lenny2+spu1   MySQL database server 
binaries
iHR mysql-server-5.1 5.1.47-1~bpo50+1 
un  mysql-server-corenone   (no description available)
un  mysql-server-core-5.0none   (no description available)
ii  mysql-server-core-5.15.1.47-1~bpo50+1 MySQL database server 
binaries


In the process of upgrading, I see this message from debconf:

 snip
NDB Cluster seems to be in use

MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the new 
mysql-cluster package and remove all lines starting with ndb from all config 
files below
/etc/mysql/.
 snip


Unfortunately, I see no mysql-cluster package in any distribution of
Debian (ie. everything from stable to experimental), and neither
anything related in incoming or new.

This is really not a good idea, imho. If you drop cluster support and
suggest that one uses a separate cluster package, that package should be
there by the time the new package without cluster support hits the
archives.


Kind regards,
--Toni++



-- System Information:
Debian Release: 5.0.4
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'proposed-updates'), (450, 'testing'), 
(250, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages mysql-server depends on:
ii  mysql-server-5.0   5.0.51a-24+lenny4 MySQL database server binaries

mysql-server recommends no packages.

mysql-server suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#514458: bug also for UTF8-locales?

2010-06-14 Thread Toni Mueller

Hi,

On Mon, 14.06.2010 at 10:39:04 -0500, Adam Majer ad...@zombino.com wrote:
 I cannot reproduce this bug in xterm with LANG=en_CA.UTF-8 or german
 or US utf-8. Do you see this bug in xterm or some other terminal?

I see this bug in an xterm over SSH, but not always.


Kind regards,
--Toni++



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#560244: State of affairs wrt. mysql-cluster?

2010-06-14 Thread Toni Mueller


Hi,

as I stated in BTS#585877, the mysql-cluster package is missing.

I'd like to jump on any already-running packaging bandwaggon, as I need
this package rather urgently.


TIA!


Kind regards,
--Toni++




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#584791: bacula-director-pgsql: upgrading from Lenny to Squeeze leaves DB behind

2010-06-06 Thread Toni Mueller
Package: bacula-director-pgsql
Version: 5.0.1-1~bpo50+1
Severity: normal

Hello,

after upgrading from Lenny's bacula to Squeeze's, I found that the
director, and hence the backups, no longer run. The logs have this to
say about the problem:


06-Jun 16:53 bacula-dir JobId 0: Fatal error: Version error for database 
bacula. Wanted 12, got 10
06-Jun 16:53 bacula-dir JobId 0: Fatal error: Could not open Catalog 
MyCatalog, database bacula.
06-Jun 16:53 bacula-dir JobId 0: Fatal error: Version error for database 
bacula. Wanted 12, got 10
06-Jun 16:53 bacula-dir ERROR TERMINATION
Please correct configuration file: /etc/bacula/bacula-dir.conf


I opted for dbconfig to handle the database for me, but obviously, it
didn't work. After manually running the scripts in
/usr/share/dbconfig-common/data/bacula-director-pgsql/upgrade/pgsql,
which resulted in an error because one index already existed,
bacula-dir started again.

The error message was:

ERROR:  relation file_jpfid_idx already exists

I checked using psql, but since the index was the same than the one
already there, I now assume that the database has been upgraded.

It would be MUCH better, however, if this would happen automatically.


Kind regards,
--Toni++


-- System Information:
Debian Release: 5.0.4
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'proposed-updates'), (450, 'testing'), 
(250, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages bacula-director-pgsql depends on:
ii  bacula-common   5.0.1-1~bpo50+1  network backup, recovery and verif
ii  bacula-common-pgsql 5.0.1-1~bpo50+1  network backup, recovery and verif
ii  bacula-director-common  5.0.1-1~bpo50+1  network backup, recovery and verif
ii  dbconfig-common 1.8.39   common framework for packaging dat
ii  debconf [debconf-2.0]   1.5.24   Debian configuration management sy
ii  libc6   2.7-18lenny2 GNU C Library: Shared libraries
ii  libgcc1 1:4.3.2-1.1  GCC support library
ii  libpq5  8.3.11-0lenny1   PostgreSQL C client library
ii  libssl0.9.8 0.9.8g-15+lenny6 SSL shared libraries
ii  libstdc++6  4.3.2-1.1The GNU Standard C++ Library v3
ii  libwrap07.6.q-16 Wietse Venema's TCP wrappers libra
ii  postgresql-client   8.3.11-0lenny1   front-end programs for PostgreSQL 
ii  postgresql-client-8.2 [ 8.2.7-1~bpo40+2  front-end programs for PostgreSQL 
ii  postgresql-client-8.3 [ 8.3.11-0lenny1   front-end programs for PostgreSQL 
ii  python2.5   2.5.2-15+lenny1  An interactive high-level object-o

Versions of packages bacula-director-pgsql recommends:
ii  postgresql   8.3.11-0lenny1  object-relational SQL database (su
ii  postgresql-8.2   8.2.7-1~bpo40+2 object-relational SQL database, ve
ii  postgresql-8.3   8.3.11-0lenny1  object-relational SQL database, ve

Versions of packages bacula-director-pgsql suggests:
pn  postgresql-contribnone (no description available)
pn  postgresql-docnone (no description available)

-- debconf information excluded



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#584160: gwenview: bottom line of images does not have image names anymore

2010-06-01 Thread Toni Mueller
Package: gwenview
Version: 4:4.3.4-1+b1
Severity: normal



Hello,

when viewing a number of images, the lowest line of thumbnails does not
sport image file names below the images. This way, it is hard to find
out which names the images have.


Kind regards,
--Toni++



-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (250, 'unstable'), (50, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-4-686-bigmem (SMP w/4 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages gwenview depends on:
ii  kdebase-runtime 4:4.4.3-1runtime components from the offici
ii  kdelibs54:4.4.3-2transitional package for the KDE D
ii  libc6   2.10.2-6 Embedded GNU C Library: Shared lib
ii  libexiv2-6  0.19-1   EXIF/IPTC metadata manipulation li
ii  libgcc1 1:4.4.4-1GCC support library
ii  libjpeg62   6b-16.1  The Independent JPEG Group's JPEG 
ii  libkipi64:4.3.4-1+b1 library for apps that want to use 
ii  libphonon4  4:4.6.0really4.4.1-2 the core library of the Phonon mul
ii  libqt4-svg  4:4.6.2-4Qt 4 SVG module
ii  libqtcore4  4:4.6.2-4Qt 4 core module
ii  libqtgui4   4:4.6.2-4Qt 4 GUI module
ii  libsoprano4 2.4.2+dfsg.1-1   libraries for the Soprano RDF fram
ii  libstdc++6  4.4.4-1  The GNU Standard C++ Library v3
ii  phonon  4:4.6.0really4.4.1-2 metapackage for the Phonon multime

gwenview recommends no packages.

gwenview suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#583870: linux-image-2.6.26-2-686: inconsistencies in ext3 file systems

2010-05-31 Thread Toni Mueller

Package: linux-2.6
Version: 2.6.26-22lenny1
Severity: critical
Justification: breaks the whole system (the system will no longer boot)


*** Please type your report below this line ***

Hello,

with various kernels, starting with at least 2.6.24 (Etch), including
linux-image-2.6.26-bpo.2-686-bigmem   2.6.26-21~bpo40+1 and the
currently running kernel, I get file system corruption that is not
recoverable by the ext3 journal. On reboot, the machines hang and
require manual fsck'ing file systems. The affected hardware varies:
Systems with mdadm'ed raid1 PATA or SATA disks and hardware raid1 with
SCSI disks (SCA variant) at least are both affected, and across
different CPU families (P4, Xeons), there is no common piece of
hardware that I could attribute this effect to. But the common factor
is that the affected file systems are sometimes heavily loaded with
lots of small I/O. The machines are neither memory nor cpu starved, and
even disk performance is quite acceptable.

For the machine indicated below, the problem started with the kernel
immediately preceeding this one.

Due to the impact of this problem, severity 'important' is about the
least reasonable severity.


Kind regards,
--Toni++



-- Package-specific info:
** Version:
Linux version 2.6.26-2-686 (Debian 2.6.26-22lenny1) (da...@debian.org) (gcc 
version 4.1.3 20080704 (prerelease) (Debian 4.1.2-25)) #1 SMP Wed May 12 
21:56:10 UTC 2010

** Command line:
root=/dev/mapper/uv0-root ro 

** Tainted: W (512)
 * Taint on warning.
** Kernel log:
[   10.819529] sd 0:0:0:0: [sda] Write cache: enabled, read cache: disabled, 
supports DPO and FUA
[   10.819529] ICH5: IDE controller (0x8086:0x25a2 rev 0x02) at  PCI slot 
:00:1f.1
[   10.819529] ACPI: PCI Interrupt :00:1f.1[A] - GSI 18 (level, low) - 
IRQ 18
[   10.819529] ICH5: not 100% native mode: will probe irqs later
[   10.819529] ide0: BM-DMA at 0xfc00-0xfc07
[   10.819529] ide1: BM-DMA at 0xfc08-0xfc0f
[   10.819529] sd 0:0:0:0: [sda] 781422768 512-byte hardware sectors (400088 MB)
[   10.819529] sd 0:0:0:0: [sda] Write Protect is off
[   10.819529] sd 0:0:0:0: [sda] Mode Sense: 00 00 00 00
[   10.819529] Probing IDE interface ide0...
[   10.819529] sd 0:0:0:0: [sda] Write cache: enabled, read cache: disabled, 
supports DPO and FUA
[   10.819529]  sda: sda1 sda2
[   10.823735] sd 0:0:0:0: [sda] Attached SCSI disk
[   10.824425] sd 0:0:1:0: [sdb] 781422768 512-byte hardware sectors (400088 MB)
[   10.824502] sd 0:0:1:0: [sdb] Write Protect is off
[   10.827568] sd 0:0:1:0: [sdb] Mode Sense: 00 00 00 00
[   10.827568] sd 0:0:1:0: [sdb] Write cache: enabled, read cache: disabled, 
supports DPO and FUA
[   10.827568] sd 0:0:1:0: [sdb] 781422768 512-byte hardware sectors (400088 MB)
[   10.827568] sd 0:0:1:0: [sdb] Write Protect is off
[   10.827568] sd 0:0:1:0: [sdb] Mode Sense: 00 00 00 00
[   10.827568] sd 0:0:1:0: [sdb] Write cache: enabled, read cache: disabled, 
supports DPO and FUA
[   10.827568]  sdb: sdb1 sdb2
[   10.832178] sd 0:0:1:0: [sdb] Attached SCSI disk
[   11.394777] Probing IDE interface ide1...
[   12.130844] hdc: DV-28E-C, ATAPI CD/DVD-ROM drive
[   12.466738] hdc: host max PIO4 wanted PIO255(auto-tune) selected PIO4
[   12.467253] hdc: UDMA/33 mode selected
[   12.471697] ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
[   12.471697] ide1 at 0x170-0x177,0x376 on irq 15
[   13.035667] No dock devices found.
[   13.047668] libata version 3.00 loaded.
[   13.070391] hdc: ATAPI 24X DVD-ROM drive, 256kB Cache
[   13.070597] Uniform CD-ROM driver Revision: 3.20
[   13.238030] md: raid1 personality registered for level 1
[   13.248618] md: md0 stopped.
[   13.253143] md: bindsdb1
[   13.253393] md: bindsda1
[   13.268247] raid1: raid set md0 active with 2 out of 2 mirrors
[   13.268247] md: md1 stopped.
[   13.270913] md: bindsdb2
[   13.271173] md: bindsda2
[   13.288247] raid1: raid set md1 active with 2 out of 2 mirrors
[   13.366864] device-mapper: uevent: version 1.0.3
[   13.366864] device-mapper: ioctl: 4.13.0-ioctl (2007-10-18) initialised: 
dm-de...@redhat.com
[   13.567606] PM: Starting manual resume from disk
[   13.597945] kjournald starting.  Commit interval 5 seconds
[   13.597945] EXT3-fs: mounted filesystem with ordered data mode.
[   14.752526] udevd version 125 started
[   15.196351] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[   15.224511] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   15.280870] EDAC MC: Ver: 2.1.0 May 12 2010
[   15.292884] EDAC i82875p: i82875p init one
[   15.292884] pci :00:06.0: device not available because of BAR 0 
[fecf:fecf0fff] collisions
[   15.292884] EDAC i82875p: i82875p_setup_overfl_dev(): Failed to enable 
overflow device
[   15.330543] Linux agpgart interface v0.103
[   15.335232] agpgart: Detected an Intel i875 Chipset.
[   15.335232] agpgart: AGP aperture is 4M @ 0xfe80
[   15.854979] input: Power Button (FF) as /class/input/input0
[   15.871446] ACPI: Power Button (FF) [PWRF]
[   15.871651] input: 

Bug#583870: Acknowledgement (linux-image-2.6.26-2-686: inconsistencies in ext3 file systems)

2010-05-31 Thread Toni Mueller


Hi,

the problem only surfaced when the machine did not come up after an
attempt to reboot (shutdown -r now).
Trying to check the affected file system yields tons of these (almost
2000 lines):


# fsck -p /dev/mapper/uv0-srv
fsck 1.41.3 (12-Oct-2008)
/dev/mapper/uv0-srv contains a file system with errors, check forced.
/dev/mapper/uv0-srv: Problem in HTREE directory inode 20742394: node (5) has 
invalid depth (2)
/dev/mapper/uv0-srv: Problem in HTREE directory inode 20742394: node (5) has 
bad max hash
/dev/mapper/uv0-srv: Problem in HTREE directory inode 20742394: node (5) not 
referenced
/dev/mapper/uv0-srv: Problem in HTREE directory inode 20742394: node (23) has 
invalid depth (2)
/dev/mapper/uv0-srv: Problem in HTREE directory inode 20742394: node (23) has 
bad max hash
/dev/mapper/uv0-srv: Problem in HTREE directory inode 20742394: node (23) not 
referenced
/dev/mapper/uv0-srv: Problem in HTREE directory inode 20742394: node (37) has 
invalid depth (2)
/dev/mapper/uv0-srv: Problem in HTREE directory inode 20742394: node (37) has 
bad max hash
/dev/mapper/uv0-srv: Problem in HTREE directory inode 20742394: node (37) not 
referenced
/dev/mapper/uv0-srv: Problem in HTREE directory inode 20742394: node (47) has 
invalid depth (2)
/dev/mapper/uv0-srv: Problem in HTREE directory inode 20742394: node (47) has 
bad max hash
/dev/mapper/uv0-srv: Problem in HTREE directory inode 20742394: node (47) not 
referenced
/dev/mapper/uv0-srv: Problem in HTREE directory inode 20742394: node (70) has 
invalid depth (2)
/dev/mapper/uv0-srv: Problem in HTREE directory inode 20742394: node (70) has 
bad max hash
/dev/mapper/uv0-srv: Problem in HTREE directory inode 20742394: node (70) not 
referenced
/dev/mapper/uv0-srv: Problem in HTREE directory inode 20742394: node (83) has 
invalid depth (2)
/dev/mapper/uv0-srv: Problem in HTREE directory inode 20742394: node (83) has 
bad max hash
/dev/mapper/uv0-srv: Problem in HTREE directory inode 20742394: node (83) not 
referenced
/dev/mapper/uv0-srv: Problem in HTREE directory inode 20742394: node (87) has 
invalid depth (2)
/dev/mapper/uv0-srv: Problem in HTREE directory inode 20742394: node (87) has 
bad max hash
/dev/mapper/uv0-srv: Problem in HTREE directory inode 20742394: node (87) not 
referenced
/dev/mapper/uv0-srv: Problem in HTREE directory inode 20742394: node (113) has 
invalid depth (2)
/dev/mapper/uv0-srv: Problem in HTREE directory inode 20742394: node (113) has 
bad max hash
/dev/mapper/uv0-srv: Problem in HTREE directory inode 20742394: node (113) not 
referenced
/dev/mapper/uv0-srv: Problem in HTREE directory inode 20742394: node (137) has 
invalid depth (2)
...
/dev/mapper/uv0-srv: Problem in HTREE directory inode 20742394: node (7580) not 
referenced
/dev/mapper/uv0-srv: Problem in HTREE directory inode 20742394: node (7585) has 
invalid depth (2)
/dev/mapper/uv0-srv: Problem in HTREE directory inode 20742394: node (7585) has 
bad max hash
/dev/mapper/uv0-srv: Problem in HTREE directory inode 20742394: node (7585) not 
referenced
/dev/mapper/uv0-srv: Problem in HTREE directory inode 20742394: node (7605) has 
invalid depth (2)
/dev/mapper/uv0-srv: Problem in HTREE directory inode 20742394: node (7605) has 
bad max hash
/dev/mapper/uv0-srv: Problem in HTREE directory inode 20742394: node (7605) not 
referenced
/dev/mapper/uv0-srv: Invalid HTREE directory inode 20742394 
(/qmailscan/archives/new).  

/dev/mapper/uv0-srv: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY.
(i.e., without -a or -p options)




Kind regards,
--Toni++



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#583942: e2fsprogs: option -p not properly documented

2010-05-31 Thread Toni Mueller
Package: e2fsprogs
Version: 1.41.3-1
Severity: minor


Hi,

the -p option is not properly documented. Imho, every option deserves
a top-level entry in a man page, and all other options seem to have it.
I didn't check too thorougly, though.

While you are at it, please mention that -p cannot be used if the file
system is known-unclean.


Kind regards,
--Toni++


-- System Information:
Debian Release: 5.0.4
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'proposed-updates'), (450, 'testing'), 
(250, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages e2fsprogs depends on:
ii  e2fslibs1.41.3-1 ext2 filesystem libraries
ii  libblkid1   1.41.3-1 block device id library
ii  libc6   2.7-18lenny2 GNU C Library: Shared libraries
ii  libcomerr2  1.41.3-1 common error description library
ii  libss2  1.41.3-1 command-line interface parsing lib
ii  libuuid11.41.3-1 universally unique id library

e2fsprogs recommends no packages.

Versions of packages e2fsprogs suggests:
pn  e2fsck-static  none(no description available)
pn  gpart  none(no description available)
ii  parted 1.8.8.git.2008.03.24-11.1 The GNU Parted disk partition resi

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#583870: Acknowledgement (linux-image-2.6.26-2-686: inconsistencies in ext3 file systems)

2010-05-31 Thread Toni Mueller

Hi,

On Mon, 31.05.2010 at 20:27:02 +0200, Toni Mueller supp...@oeko.net wrote:
 the problem only surfaced when the machine did not come up after an
 attempt to reboot (shutdown -r now).
 Trying to check the affected file system yields tons of these (almost
 2000 lines):
 
 
 # fsck -p /dev/mapper/uv0-srv
 fsck 1.41.3 (12-Oct-2008)
 /dev/mapper/uv0-srv contains a file system with errors, check forced.
 /dev/mapper/uv0-srv: Problem in HTREE directory inode 20742394: node (5) has 
 invalid depth (2)
 /dev/mapper/uv0-srv: Problem in HTREE directory inode 20742394: node (5) has 
 bad max hash
 /dev/mapper/uv0-srv: Problem in HTREE directory inode 20742394: node (5) not 
 referenced

it turns out that only one directory was affected. This directory
contains 488984 files. I don't think that having many files in a
directory should be an error, only (possibly) a performance problem.
But in no case should the file system become corrupted, imho.


Kind regards,
--Toni++



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#582373: psi: status notification flood the screen

2010-05-20 Thread Toni Mueller
Package: psi
Version: 0.11-9
Severity: wishlist


Hi,

I want to see status notifications, but they often occur in floods, and
they take up much too much screen real estate. Esp. with GTalk 
friends, useless status notifications are apparently being sent
periodically, instead of only on actual status changes. This results in
my often seeing overly large boxen stacked in the bottom right corner of
the screen, obscuring the windows that I have there.

It would be really nice if the status notification could be re-worked to
require only a fixed amount of screen real estate, eg. in a scrollable
window, that I can control via configuration and/or place where I see
fit.


Kind regards,
--Toni++


-- System Information:
Debian Release: 5.0.4
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'proposed-updates'), (450, 'testing'), 
(250, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages psi depends on:
ii  libaspell150.60.6-1  GNU Aspell spell-checker runtime l
ii  libc6  2.7-18lenny2  GNU C Library: Shared libraries
ii  libgcc11:4.3.2-1.1   GCC support library
ii  libqca22.0.2~bpo50+1 libraries for the Qt Cryptographic
ii  libqt4-network 4.4.3-1+lenny1Qt 4 network module
ii  libqt4-qt3support  4.4.3-1+lenny1Qt 3 compatibility library for Qt 
ii  libqt4-xml 4.4.3-1+lenny1Qt 4 XML module
ii  libqtcore4 4.4.3-1+lenny1Qt 4 core module
ii  libqtgui4  4.4.3-1+lenny1Qt 4 GUI module
ii  libstdc++6 4.3.2-1.1 The GNU Standard C++ Library v3
ii  libx11-6   2:1.1.5-2 X11 client-side library
ii  libxss11:1.1.3-1 X11 Screen Saver extension library
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

Versions of packages psi recommends:
ii  libqca2-plugin-ossl   0.1~20070904-3 QCA OSSL plugin for libqca2
ii  sox   14.0.1-2+b1Swiss army knife of sound processi

Versions of packages psi suggests:
ii  libqca2-plugin-gnupg 2.0.0~beta3~bpo50+1 QCA gnupg plugin for libqca2
ii  psi-translations 1.9 Translations for psi
ii  xdg-utils1.0.2-6.1   desktop integration utilities from

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#582324: cfengine2: package does not include html documentation

2010-05-19 Thread Toni Mueller
Package: cfengine2
Version: 2.2.10-2
Severity: normal
Tags: squeeze



Hi,

the latest versions of the package no longer generate the HTML docs,
which are imho much more useful in everyday's life than the generated
info files.

It would be good to re-enable building other formats again.


Kind regards,
--Toni++



-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (250, 'unstable'), (50, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-4-686-bigmem (SMP w/4 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages cfengine2 depends on:
ii  debconf [debconf-2.0] 1.5.32 Debian configuration management sy
ii  dpkg  1.15.7.1   Debian package management system
ii  install-info  4.13a.dfsg.1-5 Manage installed documentation in 
ii  libc6 2.10.2-6   Embedded GNU C Library: Shared lib
ii  libdb4.7  4.7.25-9   Berkeley v4.7 Database Libraries [
ii  libssl0.9.8   0.9.8n-1   SSL shared libraries

cfengine2 recommends no packages.

cfengine2 suggests no packages.

-- debconf information excluded



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#577270: ETA?

2010-05-08 Thread Toni Mueller


Hi,

I'm looking forward to your package, and really not only want to use it
myself, but see it in Squeeze, too.

Can you please tell me when the package will be ready?

TIA!


Kind regards,
--Toni++



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#577270: ETA?

2010-05-08 Thread Toni Mueller

Hi Nikolai,

On Sat, 08.05.2010 at 22:49:15 +1000, Nikolai Lusan niko...@lusan.id.au wrote:
 sponsor to have it uploaded to the archives. My problematic health means
 I am not able to devote the time I would like to this, I am hoping to
 have these last few things done in the next fortnight. 

I hope you recover soonish. If you need help, please ask.


Kind regards,
--Toni++




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#579927: Xapian 1.2 compatibility

2010-05-03 Thread Toni Mueller
Hi Olly,

On Mon, 03.05.2010 at 01:40:14 +0100, Olly Betts o...@survex.com wrote:
 Making use of transactions would presumably be better for roundup, but is also
 more likely to introduce a bug than the single line change to eliminate the 
 use
 of a deprecated and removed feature.  So if you want to pick up the change to
 use transactions, my thoughts would be to get the minimal patch in first, and
 start testing the transactions change locally.

I'm no Xapian user myself, so this will need some fiddling. But you
have a point in doing the minimal change first, so I'll probably do
that and not wait for a new upstream release.


Kind regards,
--Toni++




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#579922: libapache2-mod-php5: change allow_url_fopen = Off

2010-05-02 Thread Toni Mueller
Package: libapache2-mod-php5
Severity: wishlist


Hi,

while revisiting the latest Typo3 problem, I found that Debian ships
with

allow_url_fopen = On


I suggest that this be changed to


allow_url_fopen = Off


to reduce the change of PHP applications being exploited, and, if you
really need to, place a big flashing warning around it to warn users
from changing it to On again.




Kind regards,
--Toni++



-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (250, 'unstable'), (50, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-4-686-bigmem (SMP w/4 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages libapache2-mod-php5 depends on:
pn  apache2-mpm-pre none   (no description available)
ii  apache2.2-commo 2.2.15-3 Apache HTTP Server common files
ii  libbz2-1.0  1.0.5-4  high-quality block-sorting file co
ii  libc6   2.10.2-6 Embedded GNU C Library: Shared lib
ii  libcomerr2  1.41.11-1common error description library
ii  libdb4.64.6.21-16Berkeley v4.6 Database Libraries [
ii  libkrb531.6.dfsg.4~beta1-5lenny2 MIT Kerberos runtime libraries
ii  libmagic1   5.04-2   File type determination library us
ii  libpcre37.8-3Perl 5 Compatible Regular Expressi
ii  libssl0.9.8 0.9.8n-1 SSL shared libraries
ii  libxml2 2.7.7.dfsg-2 GNOME XML library
ii  mime-support3.48-1   MIME files 'mime.types'  'mailcap
ii  php5-common 5.3.2-1  Common files for packages built fr
ii  tzdata  2010i-1  time zone and daylight-saving time
ii  ucf 3.0025   Update Configuration File: preserv
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

libapache2-mod-php5 recommends no packages.

Versions of packages libapache2-mod-php5 suggests:
ii  php-pear  5.3.2-1PEAR - PHP Extension and Applicati



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#579927: Xapian 1.2 compatibility

2010-05-02 Thread Toni Mueller


Hi Olly,

On Mon, 03.05.2010 at 00:02:40 +1200, Olly Betts o...@survex.com wrote:
 Sorry, I managed to attach the wrong patch.  This is the patch for roundup.

I've viewed the patch at upstream's tracker, which does several other
things as well, and eg. suggests that Xapian has now acquired
transactional capabilities?


Kind regards,
--Toni++




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#544481: Bug#557209: Bug#544481: apticron: apt-get dist-upgrade pulling required packages from unstable

2010-04-28 Thread Toni Mueller

Hi,

On Wed, 28.04.2010 at 21:14:52 +0200, David Kalnischkies 
kalnischkies+deb...@gmail.com wrote:
 2010/4/28 Matt Taggart tagg...@debian.org:
  2) diffutils and dash are Priority: required/Essential: yes in
  unstable, but weren't in lenny.
 Every time we talk about the problem outlined here it boils down to:
 Why the user still have the (old)stable repository in his sources?

this is easy to answer: Some people, like me, run a mostly stable
system, but need a few bits from up to unstable, ***NOT*** the other
way round, as you suggest.

 If (s)he has no package left from this old archive it is as obsolete as the
 now obsolete transition packages (s)he want to remove.

We're talking about stable, not oldstable, here. So please calm down
instead of flaming users for running obsolete stuff. Also, the
package handling should be easy enough for users who are not deities
themselves.

 If the user don't want to see it (s)he can e.g. put the not installed
 package on hold and will be done with it?

This does not seem to work in all cases. I've recently struggled with a
system that was trying to remove or upgrade packages that I had
explicitly set on hold immediately before. But I made no recordings,
so...


Kind regards,
--Toni++




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#579125: linux-headers-2.6.32-4-amd64: problem initializing LSI controller

2010-04-25 Thread Toni Mueller
Package: linux-headers-2.6.32-4-amd64
Version: 2.6.32-11~bpo50+1
Severity: normal


Hi,

I'm not quite sure that this is the right package to report against.
Please reassign as you see fit.



I have an LSI dual-channel SCSI PCI/X card in my PC. Older kernels
recognize it as

[1.685438] Fusion MPT base driver 3.04.06
[1.685476] Copyright (c) 1999-2007 LSI Corporation
[1.689241] Fusion MPT SPI Host driver 3.04.06
[   10.431564] ioc0: LSI53C1030 B2: Capabilities={Initiator}
[   10.759811] scsi6 : ioc0: LSI53C1030 B2, FwRev=01013d00h, Ports=1, MaxQ=255, 
IRQ=16
[   11.167696] ACPI: PCI Interrupt Link [APC6] enabled at IRQ 16
[   11.167696] ACPI: PCI Interrupt :04:02.1[B] - Link [APC6] - GSI 16 
(level, low) - IRQ 16
[   11.167696] mptbase: ioc1: Initiating bringup
[   11.245420] ieee1394: Host added: ID:BUS[0-00:1023]  GUID[0011d8d44bac]
[   21.258989] mptbase: ioc0: Initiating recovery
[   26.001939] ioc1: LSI53C1030 B2: Capabilities={Initiator}
[   26.330665] scsi7 : ioc1: LSI53C1030 B2, FwRev=01013d00h, Ports=1, MaxQ=255, 
IRQ=16
[   26.333100] ACPI: PCI Interrupt Link [APC8] enabled at IRQ 16
[   26.333141] ACPI: PCI Interrupt :07:00.0[A] - Link [APC8] - GSI 16 
(level, low) - IRQ 16


This kernel, however, logs this during boot:

[3.143057] scsi: waiting for bus probes to complete ...
[   17.928029] mptbase: ioc0: WARNING - Issuing Reset from mpt_config!!
[   17.928077] mptbase: ioc0: Initiating recovery
[   22.688019] ioc1: LSI53C1030 B2: Capabilities={Initiator}
[   23.160064] scsi9 : ioc1: LSI53C1030 B2, FwRev=01013d00h, Ports=1, MaxQ=255, 
IRQ=16
[   23.160221] [ cut here ]
[   23.160269] WARNING: at 
/tmp/buildd/linux-2.6-2.6.32/debian/build/source_amd64_none/mm/page_alloc.c:1806
 __alloc_pages_nodemask+0x167/0x5ce()
[   23.160328] Hardware name: System Product Name
[   23.160371] Modules linked in: sata_nv pata_amd usbhid hid mptspi(+) 
mptscsih e1000e ata_generic mptbase scsi_transport_spi firewire_ohci 
firewire_core crc_itu_t forcedeth lib
ata ohci_hcd ehci_hcd scsi_mod usbcore nls_base thermal fan thermal_sys
[   23.161207] Pid: 709, comm: scsi_scan_9 Not tainted 2.6.32-bpo.4-amd64 #1
[   23.161252] Call Trace:
[   23.161297]  [810b9169] ? __alloc_pages_nodemask+0x167/0x5ce
[   23.161343]  [810b9169] ? __alloc_pages_nodemask+0x167/0x5ce
[   23.161390]  [8104dbd8] ? warn_slowpath_common+0x77/0xa3
[   23.161436]  [810b9169] ? __alloc_pages_nodemask+0x167/0x5ce
[   23.161486]  [81015af6] ? dma_generic_alloc_coherent+0x9a/0x120
[   23.161536]  [a007a3e5] ? mptspi_write_spi_device_pg1+0xa1/0x1ce 
[mptspi]
[   23.161592]  [a007a576] ? mptspi_write_width+0x64/0x69 [mptspi]
[   23.161640]  [a007adb5] ? mptspi_target_alloc+0x18c/0x1a1 [mptspi]
[   23.161691]  [a0056cfb] ? scsi_alloc_target+0x1e5/0x260 [scsi_mod]
[   23.161741]  [a0057f47] ? __scsi_scan_target+0x5a/0x593 [scsi_mod]
[   23.161790]  [81041508] ? select_task_rq_fair+0x4fd/0x8ca
[   23.161837]  [8100f5e7] ? __switch_to+0xd0/0x297
[   23.161882]  [81040559] ? set_next_entity+0x34/0x56
[   23.161928]  [81041afd] ? pick_next_task_fair+0xcd/0xd8
[   23.161976]  [a00584cd] ? scsi_scan_channel+0x4d/0x7a [scsi_mod]
[   23.162025]  [a00585d7] ? scsi_scan_host_selected+0xdd/0x11d 
[scsi_mod]
[   23.162083]  [a0058688] ? do_scan_async+0x0/0x12f [scsi_mod]
[   23.162132]  [a005869e] ? do_scan_async+0x16/0x12f [scsi_mod]
[   23.162181]  [a0058688] ? do_scan_async+0x0/0x12f [scsi_mod]
[   23.162228]  [81064765] ? kthread+0x79/0x81
[   23.162272]  [81011baa] ? child_rip+0xa/0x20
[   23.162317]  [810646ec] ? kthread+0x0/0x81
[   23.162362]  [81011ba0] ? child_rip+0x0/0x20
[   23.162406] ---[ end trace 91bf743ea3c11ed6 ]---
[   23.162450] scsi target9:0:0: mptspi: ioc1: dma_alloc_coherent for 
parameters failed
[   24.676020] mptbase: ioc0: Attempting Retry Config request type 0x4, page 
0x1, action 2
[   24.676085] scsi target9:0:0: mptspi: ioc1: dma_alloc_coherent for 
parameters failed
[   24.676143] mptbase: ioc0: Retry completed ret=0x0 timeleft=3750


This renders the card unusable.


Kind regards,
--Toni++


-- System Information:
Debian Release: 5.0.4
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'proposed-updates'), (450, 'testing'), 
(250, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-bpo.4-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#579126: linux-headers-2.6.32-4-amd64: Need NFS support

2010-04-25 Thread Toni Mueller
Package: linux-headers-2.6.32-4-amd64
Version: 2.6.32-11~bpo50+1
Severity: normal


Hi,

I'd like to use this kernel on an NFS server, but although the
configuration file (/boot/config-2.6.32-bpo.4-amd64) mentions NFS being
a module, I get:

# /etc/init.d/nfs-kernel-server start
Not starting NFS kernel daemon: no support in current kernel. (warning).


Consequently, I also can't see my exported file systems:


# showmount -e
portmap getport: RPC: Success
#


This is quite confusing, as I also get:

# lsmod|grep nfs
nfsd  252966  2 
exportfs3138  1 nfsd
nfs   239738  0 
lockd  57411  2 nfsd,nfs
fscache29562  1 nfs
nfs_acl 2031  2 nfsd,nfs
auth_rpcgss33396  2 nfsd,nfs
sunrpc160727  6 nfsd,nfs,lockd,nfs_acl,auth_rpcgss
#


which suggests that all required NFS modules are loaded.
/etc/init.d/nfs-common starts without a problem, but I don't see much in
the process list, and only this with rpcinfo:

# rpcinfo -p
   program vers proto   port
102   tcp111  portmapper
102   udp111  portmapper
3910022   tcp962  sgi_fam
1000241   udp  43620  status
1000241   tcp  52123  status


FWIW, NFS worked fine with 2.6.26.



Kind regards,
--Toni++



-- System Information:
Debian Release: 5.0.4
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'proposed-updates'), (450, 'testing'), 
(250, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-bpo.4-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#579022: audacity: cannot record stuff

2010-04-24 Thread Toni Mueller
Package: audacity
Version: 1.3.12-2
Severity: important


Hello,

I'm trying out audacity, and encounter the following problem:

At startup:

$ audacity 
Expression 'stream-capture.pcm' failed in 'src/hostapi/alsa/pa_linux_alsa.c', 
line: 3653
Expression 'stream-capture.pcm' failed in 'src/hostapi/alsa/pa_linux_alsa.c', 
line: 3653
Expression 'stream-capture.pcm' failed in 'src/hostapi/alsa/pa_linux_alsa.c', 
line: 3653

When the GUI is up, I cannot easily chose a recording device, and the
only sound that I'm able to record, if anything, is some jittering noise
that sounds much like an artifact, and remotely resembles a running
electric engine. The wave in the monitor remains flat, however.


Kind regards,
--Toni++


-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (250, 'unstable'), (50, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-4-686-bigmem (SMP w/4 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages audacity depends on:
ii  audacity-data1.3.12-2A fast, cross-platform audio edito
ii  libasound2   1.0.22-2shared library for ALSA applicatio
ii  libc62.10.2-6Embedded GNU C Library: Shared lib
ii  libexpat12.0.1-7 XML parsing C library - runtime li
ii  libflac++6   1.2.1-2+b1  Free Lossless Audio Codec - C++ ru
ii  libflac8 1.2.1-2+b1  Free Lossless Audio Codec - runtim
ii  libgcc1  1:4.4.2-9   GCC support library
ii  libglib2.0-0 2.24.0-1The GLib library of C routines
ii  libgtk2.0-0  2.20.0-2The GTK+ graphical user interface 
ii  libid3tag0   0.15.1b-10  ID3 tag reading library from the M
ii  libjack0 0.118+svn3796-2 JACK Audio Connection Kit (librari
ii  libmad0  0.15.1b-5   MPEG audio decoder library
ii  libogg0  1.2.0~dfsg-1Ogg bitstream library
ii  libsamplerate0   0.1.7-3 Audio sample rate conversion libra
ii  libsndfile1  1.0.21-2Library for reading/writing audio 
ii  libsoundtouch1c2 1.3.1-2 sound stretching library
ii  libstdc++6   4.4.2-9 The GNU Standard C++ Library v3
ii  libtwolame0  0.3.12-1MPEG Audio Layer 2 encoding librar
ii  libvamp-hostsdk3 2.1-1   helper library for Vamp hosts writ
ii  libvorbis0a  1.3.1-1 The Vorbis General Audio Compressi
ii  libvorbisenc21.3.1-1 The Vorbis General Audio Compressi
ii  libvorbisfile3   1.3.1-1 The Vorbis General Audio Compressi
ii  libwxbase2.8-0   2.8.10.1-3  wxBase library (runtime) - non-GUI
ii  libwxgtk2.8-02.8.10.1-3  wxWidgets Cross-platform C++ GUI t

Versions of packages audacity recommends:
ii  libavcodec52  4:0.5.1-3  ffmpeg codec library
ii  libavformat52 4:0.5.1-3  ffmpeg file format library

Versions of packages audacity suggests:
ii  amb-plugins [ladspa-plugin]   0.6.1-1ambisonics LADPSA plugins
ii  caps [ladspa-plugin]  0.4.2-1C* Audio Plugin Suite
pn  libmp3lame0   none (no description available)
ii  tap-plugins [ladspa-plugin]   0.7.0-2Tom's Audio Processing LADSPA plug

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#572784: qemu-kvm: networking does not come up, take #2

2010-04-19 Thread Toni Mueller

Hi,

I can't say whether this problem is related, but after the most recent
upgrades as per your directions, I got this in my logs:

debian kernel: [67410.957676] tun: Universal TUN/TAP device driver, 1.6
debian kernel: [67410.957680] tun: (C) 1999-2004 Max Krasnyansky 
m...@qualcomm.com
debian kernel: [67410.971285] device tap0 entered promiscuous mode
debian kernel: [67410.971294] br0: port 2(tap0) entering learning state
debian kernel: [67416.697973] kvm: 23290: cpu0 unhandled rdmsr: 0x417
debian kernel: [67420.459195] br0: topology change detected, propagating
debian kernel: [67420.459200] br0: port 2(tap0) entering forwarding state
debian kernel: [67422.065974] tap0: no IPv6 routers present
debian kernel: [67463.483374] br0: port 2(tap0) entering disabled state
debian kernel: [67463.494830] device tap0 left promiscuous mode
debian kernel: [67463.494835] br0: port 2(tap0) entering disabled state
debian kernel: [67465.652634] device tap0 entered promiscuous mode
debian kernel: [67465.652643] br0: port 2(tap0) entering learning state
debian kernel: [67470.219679] kvm: 23366: cpu0 kvm_set_msr_common: 
MSR_IA32_MC0_STATUS 0x0, nop
debian kernel: [67470.223683] kvm: emulating exchange as write
debian kernel: [67475.404783] br0: topology change detected, propagating
debian kernel: [67475.404788] br0: port 2(tap0) entering forwarding state
debian kernel: [67476.686667] tap0: no IPv6 routers present
debian kernel: [67867.633293] device br0 entered promiscuous mode
debian kernel: [67869.617175] device br0 left promiscuous mode
debian kernel: [67874.187981] device br0 entered promiscuous mode
debian kernel: [67879.033415] device br0 left promiscuous mode
debian kernel: [67886.797121] device br0 entered promiscuous mode
debian kernel: [67916.480988] device br0 left promiscuous mode
debian kernel: [67928.746786] device br0 entered promiscuous mode
debian kernel: [67957.554007] device br0 left promiscuous mode
debian kernel: [68019.030733] device tap0 left promiscuous mode
debian kernel: [68019.030740] br0: port 2(tap0) entering disabled state
debian kernel: [68024.255871] device tap0 entered promiscuous mode
debian kernel: [68024.255871] br0: port 2(tap0) entering learning state
debian kernel: [68032.007266] device br0 entered promiscuous mode
debian kernel: [68034.601860] br0: topology change detected, propagating
debian kernel: [68034.601865] br0: port 2(tap0) entering forwarding state
debian kernel: [68048.244230] device br0 left promiscuous mode
debian kernel: [68106.220029] kvm: 23366: cpu0 kvm_set_msr_common: 
MSR_IA32_MC0_STATUS 0x0, nop
debian kernel: [68969.104298] br0: port 2(tap0) entering disabled state
debian kernel: [68969.114532] device tap0 left promiscuous mode
debian kernel: [68969.114538] br0: port 2(tap0) entering disabled state
debian kernel: Kernel logging (proc) stopped.

The entered/left promiscuous mode statements result from my trying
to use tcpdump.


Kind regards,
--Toni++




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#572784: qemu-kvm: networking does not come up, take #2

2010-04-19 Thread Toni Mueller


Hi Michael,

I just see that the following bugs seem to be relevant:

#518643, #568293 (mine)

$ p kvm
kvm:
  Installed: 1:0.12.3+dfsg-5tls

$ p qemu-kvm
qemu-kvm:
  Installed: 0.12.3+dfsg-5tls




Kind regards,
--Toni++



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#577723: wireshark: understand OpenBSD's pcap files

2010-04-14 Thread Toni Mueller

Hi,

On Wed, 14.04.2010 at 00:50:36 +0200, Bálint Réczey bal...@balintreczey.hu 
wrote:
 How did you generate the pcap file?

there are two ways how I get these pcap files:

1. tcpdump -s 1500 -w some-file.pcap more options

2. using isakmpd's -L option

 Could you please provide a link to a sample file?

I'll try to generate a file that I can ship to you.


Kind regards,
--Toni++




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#577760: taxbird: Please provide an update via volatile

2010-04-14 Thread Toni Mueller
Package: taxbird
Version: 0.15-1~bpo50+1
Severity: wishlist


Hello,

please provide updates to taxbird via 'volatile'. Since Debian's release
cycles don't match our legislator's burp rhythms, the latter prevailing
in real life, users of taxbird need to find ways to comply with the
latter. Currently, this is impossible within Debian, so this package is
being rendered mostly unusable due to external factors that Debian
cannot change.


Kind regards,
--Toni++


-- System Information:
Debian Release: 5.0.4
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'proposed-updates'), (450, 'testing'), 
(250, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages taxbird depends on:
ii  guile-1.8-libs  1.8.5+1-4.1  Main Guile libraries
ii  libart-2.0-22.3.20-2 Library of functions for 2D graphi
ii  libatk1.0-0 1.22.0-1 The ATK accessibility toolkit
ii  libbonobo2-02.22.0-1 Bonobo CORBA interfaces library
ii  libbonoboui2-0  2.22.0-1 The Bonobo UI library
ii  libc6   2.7-18lenny2 GNU C Library: Shared libraries
ii  libcairo2   1.6.4-7  The Cairo 2D vector graphics libra
ii  libgconf2-4 2.22.0-1 GNOME configuration database syste
ii  libgeier0   0.11-1~bpo50+1   Elster client library (German tax 
ii  libglade2-0 1:2.6.2-1library to load .glade files at ru
ii  libglib2.0-02.16.6-3 The GLib library of C routines
ii  libgmp3c2   2:4.2.2+dfsg-3   Multiprecision arithmetic library
ii  libgnome2-0 2.20.1.1-1   The GNOME 2 library - runtime file
ii  libgnomecanvas2-0   2.20.1.1-1   A powerful object-oriented display
ii  libgnomeui-02.20.1.1-2   The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0  1:2.22.0-5   GNOME Virtual File System (runtime
ii  libgtk2.0-0 2.12.12-1~lenny1 The GTK+ graphical user interface 
ii  libgtkhtml3.14-19   3.18.3-1 HTML rendering/editing library - r
ii  libice6 2:1.0.4-1X11 Inter-Client Exchange library
ii  libltdl31.5.26-4+lenny1  A system independent dlopen wrappe
ii  liborbit2   1:2.14.13-0.1libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0   1.20.5-5+lenny1  Layout and rendering of internatio
ii  libpopt01.14-4   lib for parsing cmdline parameters
ii  libsm6  2:1.0.3-2X11 Session Management library
ii  libxml2 2.6.32.dfsg-5+lenny1 GNOME XML library

Versions of packages taxbird recommends:
ii  lprng [lpr]   3.8.A-1.1  lpr/lpd printer spooling system

Versions of packages taxbird suggests:
ii  html2ps   1.0b5-5HTML to PostScript converter
ii  html2text 1.3.2a-5   advanced HTML to text converter

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#486211: Problem still present in Lenny

2010-04-13 Thread Toni Mueller

Hi Luigi,

On Mon, 12.04.2010 at 16:47:19 +0200, Toni Mueller supp...@oeko.net wrote:
 On Mon, 12.04.2010 at 13:54:07 +0200, Luigi Gangitano lu...@debian.org 
 wrote:
  - cache.log (in /var/log/squid) lines preceding segfault,
 
 I'm sorry, but no, I can't provide you with this log file because I
 don't have it any longer. I ran Lenny's version of squid3 for only very
 few days until I *had* to replace it.

I just found this on another squid3, with similar configuration:

Apr 13 03:15:29 nw2 squid[11017]: assertion failed: client_side.cc:2479: 
conn-in.abortedSize == (size_t)conn-bodySizeLeft() 



HTH,
--Toni++



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#577723: wireshark: understand OpenBSD's pcap files

2010-04-13 Thread Toni Mueller
Package: wireshark
Version: 1.0.2-3+lenny8
Severity: wishlist


Hello,

I frequently work with pcap files obtained on OpenBSD servers, but when
I load them into wireshark, I only see packets marked as raw data.
This reduces the usefulness of wireshark quite a bit for me.

It would be great if you could fully understand OpenBSD-generated pcap
files.


Kind regards,
--Toni++



-- System Information:
Debian Release: 5.0.4
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'proposed-updates'), (450, 'testing'), 
(250, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages wireshark depends on:
ii  libadns11.4-2Asynchronous-capable DNS client li
ii  libatk1.0-0 1.22.0-1 The ATK accessibility toolkit
ii  libc6   2.7-18lenny2 GNU C Library: Shared libraries
ii  libcairo2   1.6.4-7  The Cairo 2D vector graphics libra
ii  libcomerr2  1.41.3-1 common error description library
ii  libgcrypt11 1.4.1-1  LGPL Crypto library - runtime libr
ii  libglib2.0-02.16.6-3 The GLib library of C routines
ii  libgnutls26 2.4.2-6+lenny2   the GNU TLS library - runtime libr
ii  libgtk2.0-0 2.12.12-1~lenny1 The GTK+ graphical user interface 
ii  libkrb531.6.dfsg.4~beta1-5lenny3 MIT Kerberos runtime libraries
ii  libpango1.0-0   1.20.5-5+lenny1  Layout and rendering of internatio
ii  libpcap0.8  0.9.8-5  system interface for user-level pa
ii  libpcre37.6-2.1  Perl 5 Compatible Regular Expressi
ii  libportaudio2   19+svn20071022-3 Portable audio I/O - shared librar
ii  wireshark-commo 1.0.2-3+lenny8   network traffic analyser (common f
ii  zlib1g  1:1.2.3.3.dfsg-12compression library - runtime

Versions of packages wireshark recommends:
ii  gksu  2.0.0-8graphical frontend to su

wireshark suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#576464: xserver-xorg-video-radeon: X unusable while KMS enabled

2010-04-04 Thread Toni Mueller


Package: xserver-xorg-video-radeon
Version: 1:6.12.192-2
Severity: normal

*** Please type your report below this line ***

Hello,

after the recent upgrade, my X immediately became unusable. The symptoms
were:

1. After reboot, everything looked normal.
2. After exiting X for the first time (I use console + 'startx'), I
didn't get my 80x24 console back, but instead something like 170x50 or
so (don't know how to figure it out exactly).
3. Trying to start X again yielded a screen that had a pointer that
could be moved, but a screen that was black at the upper half, and
digital noise in the lower half, and required killing by SSH session
for the console to come back. No way to get out of X from the local
keyboard or mouse.

I had to disable KMS to get back to a working setup.

I'm running this kernel:

ii  linux-image-2.6.32-trunk-686-bigmem 2.6.32-5

which is in 'testing'. I specified severity = normal because I finally
found the config file to disable this behaviour (otherwise it would
have been grave).


Kind regards,
--Toni++



#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type man xorg.conf at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg


Section ServerLayout
Identifier manually Configured
Screen  0  Screen0 0 0
#InputDeviceKeyboard0 CoreKeyboard
InputDeviceMouse0 CorePointer
EndSection


Section Files
ModulePath   /usr/lib/xorg/modules
FontPath /usr/share/fonts/X11/misc
FontPath /usr/share/fonts/X11/cyrillic
FontPath /usr/share/fonts/X11/100dpi/:unscaled
FontPath /usr/share/fonts/X11/75dpi/:unscaled
FontPath /usr/share/fonts/X11/Type1
FontPath /usr/share/fonts/X11/100dpi
FontPath /usr/share/fonts/X11/75dpi
FontPath /var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType
FontPath built-ins

#   FontPath /usr/share/fonts/X11/Type1
#   FontPath /usr/share/fonts/X11/misc
#   FontPath /usr/share/fonts/X11/75dpi
#   FontPath /usr/share/fonts/X11/100dpi
EndSection

Section InputDevice
Identifier  Generic Keyboard X
Driver  kbd
Option  XkbRules  xorg
Option  XkbModel  pc105
Option  XkbLayout us #,DE
EndSection

Section InputDevice
Identifier  Mouse0
Driver  mouse
Option  Protocol auto
Option  Device /dev/input/mice
Option  ZAxisMapping 4 5 6 7
Option  Buttons 4
Option  ButtonMapping 1 2 3 2
EndSection

Section Device
Identifier  Configured Video Device
# Driverradeonhd
Driver  radeon
### rely on default values instead:
#Option  AccelMethod EXA
#Option  DRI 
EndSection

Section Monitor
ModelName   Fujitsu LCD
Identifier  Monitor0
#HorizSync  28.0 - 130.0 # Warning: This may fry old Monitors
#VertRefresh50.0 - 91.0 # Very conservative. May flicker.
#DisplaySize517 322
EndSection

Section Screen
# IdentifierDefault Screen
# Monitor   Configured Monitor
Identifier  Screen1
Monitor Monitor0
EndSection


# PS/2 Mouse using /dev/input/mice in Kernel 2.6
# Serial Mouse not detected

Section ServerFlags
Option AllowMouseOpenFail  true

EndSection

Section Module
#Load  ddc  # ddc probing of monitor
Load  dbe
Load  dri
Load  extmod
Load  glx
Load  bitmap # bitmap-fonts
# Load  type1
Load  freetype
Load  record
EndSection

Section InputDevice
Identifier  Keyboard0
Driver  keyboard
Option  CoreKeyboard
Option  XkbRules xfree86
Option  XkbModel pc105
Option  XkbLayout us,de
EndSection

Section InputDevice
Identifier  Serial Mouse
Driver  mouse
Option  Protocol Microsoft
Option  Device /dev/ttyS0
Option  Emulate3Buttons true
Option  Emulate3Timeout 70
Option  SendCoreEvents  true
EndSection

#Section InputDevice
#   Identifier  PS/2 Mouse
#   Driver  mouse
#   Option  Protocol auto
#   #Option  ZAxisMapping  4 5
#   Option  Device /dev/psaux
#   Option  Emulate3Buttons true
#   Option  Emulate3Timeout 70
#   Option  SendCoreEvents  true
#EndSection

Section InputDevice
Identifier  USB Mouse
Driver  mouse
Option 

Bug#576147: memory corruption in PHP

2010-04-01 Thread Toni Mueller

Package: php5-cgi
Version: 5.2.6.dfsg.1-1+lenny8
Severity: normal


Hi,

I've written to the TYPO3 folks in order to get the problem described
below fixed, but they say I should turn to you instead. FWIW, I'm
running a pretty vanilla TYPO3 4.2.12 from upstream's source code,
along with some add-ons that the customer implemented (but I don't know
which, some are his creation).

On Thu, 01.04.2010 at 05:20:39 +0200, TYPO3 Security Team secur...@typo3.org 
wrote:
 Toni Mueller supp...@oeko.net wrote:
  I forgot to send another error message that makes me feel uneasy. So
  here goes:
   Mar 23 14:19:29 debian suhosin[15099]: ALERT - canary mismatch on efree() 
   - heap overflow detected (attacker '80.142.175.180', file 
   '/webserverroot/typo3_src-4.2.12/t3lib/class.t3lib_htmlmail.php', line 
   718)
 
 According to a blog post [1] this is caused by a memory corruption of PHP or
 one of its extension. This is not related to TYPO3 Security.
 
  Mar 29 13:15:47 debian suhosin[11070]: ALERT - linked list corrupt on efree 
  ()
  - heap corruption detected (attacker '88.116.33.10', file
  '/webserverroot/www.example.com/index.php')
 
 This again seems to be a bug in PHP or its extension (memory related). This is
 not related to any kind of TYPO3 attack.
 Both events seem to be unable to trigger by intention from remote - so
 there's no real attacker.
 
 These bugs aren't causes by or able to mitigate by TYPO3 source code.
 
 To fix these bugs, you have to use bug infrastructure of your OS distributor!

It would be great if someone could fix the problem, and/or backport PHP
5.2.13 to Lenny. If you want to discuss the issue with the TYPO3 folks,
their ticket number for this issue is [Ticket#201003311014].

I leave the severity as normal because the TYPO3 folks claim that the
error occurs at random, and cannot be provoked by a user, and that this
is not really a security problem (see [1] for details), although I'm
not quite sure about that because there are only exactly these two
locations where the error occurs, often several times a day.


Kind regards,
--Toni++

[1] 
http://www.suspekt.org/2008/10/12/suhosin-canary-mismatch-on-efree-heap-overflow-detected/




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#575860: apt-cacher-ng: access repository with a regular web browser

2010-03-29 Thread Toni Mueller
Package: apt-cacher-ng
Version: 0.4.6-1
Severity: wishlist


Hi,

trying to get up to speed with apt-cacher-ng and to debug my settings,
I'd much appreciate if the web interface could provide an URI space to
inspect the repositories' contents. The contents should be presented in
exactly the same way than it is presented to apt(itude) clients.
Ideally, information about files can be displayed, too, eg.
(precomputed?) checksums, or the source of a particular file.

Kind regards,
--Toni++



-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (250, 'unstable'), (50, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-trunk-686-bigmem (SMP w/4 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages apt-cacher-ng depends on:
ii  adduser 3.112add and remove users and groups
ii  debconf [debconf-2.0]   1.5.28   Debian configuration management sy
ii  libbz2-1.0  1.0.5-4  high-quality block-sorting file co
ii  libc6   2.10.2-6 Embedded GNU C Library: Shared lib
ii  libfuse22.8.1-1.2Filesystem in USErspace library
ii  libgcc1 1:4.4.2-9GCC support library
ii  libstdc++6  4.4.2-9  The GNU Standard C++ Library v3
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

Versions of packages apt-cacher-ng recommends:
ii  ed1.4-1  The classic UNIX line editor
ii  perl  5.10.1-11  Larry Wall's Practical Extraction 

apt-cacher-ng suggests no packages.

-- debconf information excluded



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#562200: ITP: fuzzyocr -- interface SpamAssassin to various OCR packages

2010-03-25 Thread Toni Mueller


On Sun, 14.03.2010 at 14:31:31 +0100, Philipp Kern pk...@debian.org wrote:
 On Wed, Dec 23, 2009 at 07:58:01PM +0100, Toni Mueller wrote:
  * Package name: fuzzyocr
  * URL : http://fuzzyocr.own-hero.net/
  * License : Apache 2.0
Programming Lang: Perl
Description : Interface SpamAssassin to various OCR packages
 
 That's already in Debian as source package fuzzyocr.  Still I doubt its
 usefulness today because there's not that much picture spam left anymore,
 isn't it?

Thanks for pointing the presence of the package out to me.

As for the usefulness, I think that it can't hurt much, but I'd rather
not let down my guards and then be hit by a new wave of an old spamming
technique. My personal impression is that spammers cycle through an
ever-increasing arsenal of methods to slip their spam by user's
filters. I don't have statistical evidence to back up this statement,
however.


-- 
Kind regards,
--Toni++




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#568293: qemu-kvm: vm dies after a few days, consuming 100% cpu on the host until killed

2010-03-22 Thread Toni Mueller


Hi Michael,

On Mon, 22.03.2010 at 10:59:06 +0100, Toni Mueller supp...@oeko.net wrote:
 and then I tried again, but nothing changed (and no logs, too).

just to clarify, since I may have reported against the wrong bug:

The virtual machines do not boot with the 2.6.32* kernel, but hang with
an 'unstable clocksource' message. With the 2.6.26 kernel(s), I get the
same error message, but only after the machine is fully booted, and it
otherwise seems to have no impact on basic operation. I didn't try load
testing or something difficult, only login, ls, logout, however.


Kind regards,
--Toni++



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#568293: qemu-kvm: vm dies after a few days, consuming 100% cpu on the host until killed

2010-03-22 Thread Toni Mueller

Hi Michael,

On Fri, 12.03.2010 at 21:58:44 +0300, Michael Tokarev m...@tls.msk.ru wrote:
 Toni, please verify if this bug is present in the current
 version of qemu-kvm in unstable (0.12.3+dfsg-4).  If you
 don't like using unstable, try out qemu-kvm from my page
 (http://www.corpit.ru/debian/tls/kvm/ - grab the qemu-kvm.deb
 for your arch)

I've installed this package, just fetched from your site:

qemu-kvm_0.12.3-tls0_amd64.deb

With this command line:

# kvm -localtime -m 512 -net nic,model=e1000,macaddr=52:54:00:12:34:56,vlan=0 
-net tap,vlan=0 /mounts/vmachines/kvm/d-sid/sid2.img

and this kernel package:

linux-image-2.6-686, implying linux-image-2.6.32-3-686 (2.6.32-9), I
was able to reproduce the problem. I was also able to reproduce the
problem with the other VM, sid1.img, so I think it's unlikely to hit
two otherwise undetected physical disk surface problems at the same
time.

The system log shows this:

kvm: 7842: cpu0 unhandled rdmsr: 0x417

But otherwise, there are no error messages present.

I then proceeded to install a backport of libasound2 to gain the
ability to use these packages:

kvm_0.12.3+dfsg-5tls_amd64.deb and
qemu-kvm_0.12.3+dfsg-5tls_amd64.deb

and then I tried again, but nothing changed (and no logs, too).



Kind regards,
--Toni++




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#568293: qemu-kvm: vm dies after a few days, consuming 100% cpu on the host until killed

2010-03-22 Thread Toni Mueller

Hi Michael,

On Mon, 22.03.2010 at 14:00:30 +0300, Michael Tokarev m...@tls.msk.ru wrote:
 Toni, yet again, please, pretty please, read what I wrote.  I refer to
 _virtual_ disk error, not to _physical_ disk error.

I read what you wrote, and I only wanted to say that I'm confident that
the physical disks are ok. In case you haven't had the unfortunate
experience yet, I experienced a mysterious crash on a different machine
that could only be explained by assuming an unreported surface problem
of the disk involved.

I'll answer the other questions later.


Kind regards,
--Toni++



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#574793: mnemosyne: importing Jmemorize's 'jml' files should be supported

2010-03-20 Thread Toni Mueller
Package: mnemosyne
Version: 1.2.1-2.1
Severity: wishlist



Hello,

JMemorize is a popular flash card program. mnemosyne should support this
file format for im- and export.

TIA!


Kind regards,
--Toni++


-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'proposed-updates'), (500, 'stable'), 
(250, 'unstable'), (50, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-trunk-686-bigmem (SMP w/4 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages mnemosyne depends on:
ii  python   2.5.4-9 An interactive high-level object-o
ii  python-pygame1.8.1release-1.1+b1 SDL bindings for games development
ii  python-qt3   3.18.1-2Qt3 bindings for Python
ii  python-support   1.0.6   automated rebuilding support for P

mnemosyne recommends no packages.

mnemosyne suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#568293: qemu-kvm: vm dies after a few days, consuming 100% cpu on the host until killed

2010-03-17 Thread Toni Mueller

Hi,

On Tue, 16.03.2010 at 20:01:20 +0300, Michael Tokarev m...@tls.msk.ru wrote:
 Toni Mueller wrote:
  Umm... I thought acpi was asking for trouble. But what you said - I
  retried without the -noacpi, and it still hangs with the 2.6.32-3 from
  unstable (I just dist-upgraded the whole vm today before testing).
 
 That's just insane... :(

yes, it is.

 Are you sure it is the kernel who hangs?

I'm pretty sure about that, because:

* It hangs while there are kernel messages scrolling by.
* The exactly same VM boots just fine, together with network
  and everthing, with the 2.6.26-something kernel that I didn't
  remove from it yet. It's just a matter of selecting 2.6.26
  in the grub menu to get the machine to boot to full
  operationality, and the 2.6.32 hangs always at exactly the
  same point with this 'clocksource unstable' message.

 something on the host, like some kvm message (try w/o -daemon? Look

That's how I found out that, and where, it hangs - I removed
'-nographics' and saw the error messages on the (virtual) console.

 By the way, by other platforms, what do you mean?  Different
 architectures or another host operating system?  Curious...

I mean both: For my daily work, I need the machine to run all sorts of
Linux for testing purposes, as well as all sorts of BSDs and most sorts
of modern Windows, starting at Windows XP or maybe earlier, and maybe
some more (eg. OpenSolaris). I also really want/need to run really
foreign machines, like eg. the emulator for my OpenMoko.

The Linux/Windows/BSD/Solaris stuff needs to be sufficiently reliable
and efficient for a hosting operation and/or inhouse use (server
consolidation), as an alternative to Xen and friends.


Kind regards,
--Toni++



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#568293: qemu-kvm: vm dies after a few days, consuming 100% cpu on the host until killed

2010-03-16 Thread Toni Mueller

Hi Michael,

On Fri, 12.03.2010 at 21:58:44 +0300, Michael Tokarev m...@tls.msk.ru wrote:
 From what you provided above it sounds like some sort of i/o
 problem, but without much more details (exact kvm command line,
 kinds of disk devices you use, and some sorts of traces it is
 impossible to say what's going on.

although my interest in KVM is waning quickly, as I really need support
for other platforms as well, I've produced two dmesg files for my Lenny
and Sid machines. I've done both with the old qemu-kvm package, though,
and have to note that the Sid kvm does not start with the
2.6.32-3 kernel (but hangs at the tsc clocksource unstable message that
you declared benign).

The command lines are:

--- cut
kvm -localtime -no-acpi -m 512 \
-net nic,model=rtl8139,macaddr=52:54:00:12:34:56,vlan=0 \
-daemonize \
-net tap,vlan=0 /mounts/vmachines/kvm/d-sid/sid1.img 
--- cut

for the Sid kvm, often including '-nographic', and

--- cut
$DEBUG kvm ${IMAGE} -no-acpi -m ${RAM} -usb -localtime \
-net nic,model=rtl8139,macaddr=${MACADDR},vlan=0 \
-daemonize -nographic \
-net tap,vlan=0 $CDROM 
--- cut

for the Lenny kvm. You see some shell variables there, which I use to
point to images, set the MAC address etc, but nothing magic.


I'll ship more info as I make progress.


Kind regards,
--Toni++

[0.00] Initializing cgroup subsys cpuset
[0.00] Initializing cgroup subsys cpu
[0.00] Linux version 2.6.26-2-686 (Debian 2.6.26-17) (da...@debian.org) 
(gcc version 4.1.3 20080704 (prerelease) (Debian 4.1.2-25)) #1 SMP Sun Jun 21 
04:57:38 UTC 2009
[0.00] BIOS-provided physical RAM map:
[0.00]  BIOS-e820:  - 0009f000 (usable)
[0.00]  BIOS-e820: 0009f000 - 000a (reserved)
[0.00]  BIOS-e820: 000e8000 - 0010 (reserved)
[0.00]  BIOS-e820: 0010 - 1fff (usable)
[0.00]  BIOS-e820: 1fff - 2000 (ACPI data)
[0.00]  BIOS-e820: fffbc000 - 0001 (reserved)
[0.00] 0MB HIGHMEM available.
[0.00] 511MB LOWMEM available.
[0.00] found SMP MP-table at [c00fbc90] 000fbc90
[0.00] kvm-clock: cpu 0, msr 0:3baf81, boot clock
[0.00] Entering add_active_range(0, 0, 131056) 0 entries of 256 used
[0.00] Zone PFN ranges:
[0.00]   DMA 0 - 4096
[0.00]   Normal   4096 -   131056
[0.00]   HighMem131056 -   131056
[0.00] Movable zone start PFN for each node
[0.00] early_node_map[1] active PFN ranges
[0.00] 0:0 -   131056
[0.00] On node 0 totalpages: 131056
[0.00]   DMA zone: 32 pages used for memmap
[0.00]   DMA zone: 0 pages reserved
[0.00]   DMA zone: 4064 pages, LIFO batch:0
[0.00]   Normal zone: 992 pages used for memmap
[0.00]   Normal zone: 125968 pages, LIFO batch:31
[0.00]   HighMem zone: 0 pages used for memmap
[0.00]   Movable zone: 0 pages used for memmap
[0.00] DMI 2.4 present.
[0.00] ACPI Error (tbxfroot-0218): A valid RSDP was not found [20080321]
[0.00] Intel MultiProcessor Specification v1.4
[0.00] Virtual Wire compatibility mode.
[0.00] MPTABLE: OEM ID: QEMUCPU  Product ID: 0.1  6MPTABLE: 
Product ID: 0.1  6MPTABLE: APIC at: 0xFEE0
[0.00] Processor #0 (Bootup-CPU)
[0.00] I/O APIC #1 Version 17 at 0xFEC0.
[0.00] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[0.00] Processors: 1
[0.00] Allocating PCI resources starting at 3000 (gap: 
2000:dffbc000)
[0.00] PM: Registered nosave memory: 0009f000 - 000a
[0.00] PM: Registered nosave memory: 000a - 000e8000
[0.00] PM: Registered nosave memory: 000e8000 - 0010
[0.00] SMP: Allowing 8 CPUs, 7 hotplug CPUs
[0.00] PERCPU: Allocating 37960 bytes of per cpu data
[0.00] NR_CPUS: 8, nr_cpu_ids: 8
[0.00] kvm-clock: cpu 0, msr 0:1409f81, primary cpu clock
[0.00] Built 1 zonelists in Zone order, mobility grouping on.  Total 
pages: 130032
[0.00] Kernel command line: root=/dev/hda1 ro quiet 
[0.00] mapped APIC to b000 (fee0)
[0.00] mapped IOAPIC to a000 (fec0)
[0.00] Enabling fast FPU save and restore... done.
[0.00] Enabling unmasked SIMD FPU exception support... done.
[0.00] Initializing CPU#0
[0.00] PID hash table entries: 2048 (order: 11, 8192 bytes)
[0.00] Detected 2310.574 MHz processor.
[0.004000] Console: colour VGA+ 80x25
[0.004000] console [tty0] enabled
[0.004000] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
[0.004000] Inode-cache hash table 

Bug#568293: qemu-kvm: vm dies after a few days, consuming 100% cpu on the host until killed

2010-03-16 Thread Toni Mueller


On Tue, 16.03.2010 at 17:44:05 +0300, Michael Tokarev m...@tls.msk.ru wrote:
 Toni Mueller wrote:
  and Sid machines. I've done both with the old qemu-kvm package, though,
  and have to note that the Sid kvm does not start with the
  2.6.32-3 kernel (but hangs at the tsc clocksource unstable message that
  you declared benign).
  
  --- cut
  kvm -localtime -no-acpi -m 512 \
  -net nic,model=rtl8139,macaddr=52:54:00:12:34:56,vlan=0 \
  -daemonize \
  -net tap,vlan=0 /mounts/vmachines/kvm/d-sid/sid1.img 
  --- cut
 
 Ugh, can you retry without -no-acpi?  -no-acpi is basically asking
 for one or another trouble...

Umm... I thought acpi was asking for trouble. But what you said - I
retried without the -noacpi, and it still hangs with the 2.6.32-3 from
unstable (I just dist-upgraded the whole vm today before testing).

Let's see what the other qemu-kvm package brings...


Kind regards,
--Toni++




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#573714: imagemagick: display shows format strings instead of pathnames in Visual Directory

2010-03-13 Thread Toni Mueller

Package: imagemagick
Version: 7:6.3.7.9.dfsg2-1~lenny1
Severity: normal

*** Please type your report below this line ***

Hello,

using 'display' to show an index of images in a directory shows the
images, but instead of the path names, it shows format strings. So, one
doesn't know which image is shown in a certain tile.

Just verified with imagemagick 7:6.3.7.9.dfsg2-1~lenny3 on a Lenny
5.0.4 box (amd64).


Kind regards,
--Toni++

-- System Information:
Debian Release: 5.0.2
  APT prefers proposed-updates
  APT policy: (500, 'proposed-updates'), (500, 'stable'), (350, 'testing'), 
(250, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-2-686 (SMP w/1 CPU core)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages imagemagick depends on:
ii  libbz2-1.0  1.0.5-1  high-quality block-sorting file co
ii  libc6   2.7-18   GNU C Library: Shared libraries
ii  libfontconfig1  2.6.0-3  generic font configuration library
ii  libfreetype62.3.7-2+lenny1   FreeType 2 font engine, shared lib
ii  libice6 2:1.0.4-1X11 Inter-Client Exchange library
ii  libjpeg62   6b-14The Independent JPEG Group's JPEG 
ii  liblcms11.17.dfsg-1+lenny2   Color management library
ii  libmagick10 7:6.3.7.9.dfsg2-1~lenny1 image manipulation library
ii  libsm6  2:1.0.3-2X11 Session Management library
ii  libtiff43.8.2-11 Tag Image File Format (TIFF) libra
ii  libx11-62:1.1.5-2X11 client-side library
ii  libxext62:1.0.4-1X11 miscellaneous extension librar
ii  libxt6  1:1.0.5-3X11 toolkit intrinsics library
ii  zlib1g  1:1.2.3.3.dfsg-12compression library - runtime

imagemagick recommends no packages.

imagemagick suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#573715: openerp-client: ui hangs after switching virtual desktop

2010-03-13 Thread Toni Mueller

Package: openerp-client
Version: 5.0.6-3
Severity: important

*** Please type your report below this line ***

Hi,

recently I switched to a different virtual desktop (in fvwm) after
starting an action that might have taken some time. The action wasn't
complete when I switched, but when I came back, all two windows, the
main window plus a modal dialogue, were completely blank, after saying
next configuration step. I killed and restarted the client, and
things seemed to be back in working order.

It would be great if the client could behave in the face of virtual
desktops.


Kind regards,
--Toni++


-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'proposed-updates'), (500, 'stable'), 
(250, 'unstable'), (50, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-trunk-686-bigmem (SMP w/4 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages openerp-client depends on:
ii  python2.5.4-9An interactive high-level object-o
ii  python-egenix-mxdatetime  3.1.3-2date and time handling routines fo
ii  python-glade2 2.16.0-2   GTK+ bindings: Glade support
ii  python-gtk2   2.16.0-2   Python bindings for the GTK+ widge

Versions of packages openerp-client recommends:
ii  evince [pdf-viewer] 2.28.2-1 Document (postscript, pdf) viewer
ii  gv [pdf-viewer] 1:3.6.8-1PostScript and PDF viewer for X
ii  kghostview [pdf-viewer] 4:3.5.9-3+lenny2 PostScript viewer for KDE
ii  kpdf [pdf-viewer]   4:3.5.9-3+lenny2 PDF viewer for KDE
ii  okular [pdf-viewer] 4:4.3.4-1+b1 document viewer for KDE 4
ii  openoffice.org-writer   1:3.1.1-14   full-featured office productivity 
ii  python-hippocanvas  0.3.0-3+b1   Python bindings to hippo-canvas
ii  python-matplotlib   0.99.1.2-3   Python based plotting system in a 
ii  xpdf-reader [pdf-viewer 3.02-1.4+lenny1  Portable Document Format (PDF) sui

Versions of packages openerp-client suggests:
ii  openerp-server5.0.6-4Enterprise Resource Management (se

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#573716: openerp-server: 5.0.7 has a looong changelog

2010-03-13 Thread Toni Mueller
Package: openerp-server
Version: 5.0.6-4
Severity: wishlist


Hi,

reading upstream's website I found that the recently published version
5.0.7 has a very long list of allegedly fixed bugs, more than enough to
want to have that version. ;}

But you are probably working on it already, so...


Kind regards,
--Toni++


-- System Information:
Debian Release: 5.0.4
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'proposed-updates'), (450, 'testing'), 
(250, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages openerp-server depends on:
ii  adduser   3.110  add and remove users and groups
ii  debconf [debconf-2.0] 1.5.24 Debian configuration management sy
ii  python2.5.2-3An interactive high-level object-o
ii  python-libxslt1   1.1.24-2   Python bindings for libxslt1
ii  python-lxml   2.1.1-2.1  pythonic binding for the libxml2 a
ii  python-psycopg2   2.0.7-4Python module for PostgreSQL
ii  python-pychart1.39-6 Python library for creating high q
ii  python-pydot  1.0.2-1Python interface to Graphviz's dot
ii  python-reportlab  2.1dfsg-2  ReportLab library to create PDF do
ii  python-tz 2008c-2Python version of the Olson timezo

Versions of packages openerp-server recommends:
ii  ghostscript8.62.dfsg.1-3.2lenny1 The GPL Ghostscript PostScript/PDF
ii  graphviz   2.20.2-3  rich set of graph drawing tools
ii  postgresql 8.3.9-0lenny1 object-relational SQL database (su
ii  postgresql-client  8.3.9-0lenny1 front-end programs for PostgreSQL 
ii  postgresql-client- 8.2.7-1~bpo40+2   front-end programs for PostgreSQL 
ii  postgresql-client- 8.3.9-0lenny1 front-end programs for PostgreSQL 
ii  python-imaging 1.1.6-3   Python Imaging Library
ii  python-matplotlib  0.98.1-1+lenny4   Python based plotting system in a 
ii  python-openssl 0.7-2 Python wrapper around the OpenSSL 
ii  python-pyparsing   1.5.0-1   Python parsing module

Versions of packages openerp-server suggests:
ii  openerp-client5.0.6-3Enterprise Resource Management (cl

-- debconf information excluded



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



<    1   2   3   4   5   6   7   8   9   >