Bug#1024709: asterisk: Calls fail after 120 seconds with 'lack of video RTP activity in 120 seconds'

2023-02-24 Thread Philipp Kolmann

Hi,

I have found the reason for the disconnects.

I have set the pjsip rtp_timeout to 120 and after the update this 
setting suddenly became active.


I futher investigated this issue and found the the default value for 
this setting is 0 and I have changed the value now to 0 and the issue is 
gone now.


Seems still that there is an issue with the rtp timeout, because I have 
rtp traffice but it can be avoided with removing the setting.


Bug can be closed

thanks
Philipp



Bug#1024709: asterisk: Calls fail after 120 seconds with 'lack of video RTP activity in 120 seconds'

2022-11-23 Thread Philipp Kolmann
Package: asterisk
Version: 1:16.28.0~dfsg-0+deb11u1
Severity: important

Dear Maintainer,

   * What led up to the situation?

After installing the security fix in bullseye (16.16.1~dfsg-1+deb11u1 to
16.28.0~dfsg-0+deb11u1) calls with fail after 120 seconds with the
following error on the console:

res_pjsip_sdp_rtp.c:145 rtp_check_timeout: Disconnecting channel for lack of 
video RTP activity in 120 seconds

After downgrading back to 16.16 calls keep up longer then 2 minutes
again.

-- System Information:
Debian Release: 11.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable-security'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 5.10.0-19-amd64 (SMP w/4 CPU threads)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_GB:en
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages asterisk depends on:
ii  adduser  3.118
ii  asterisk-config  1:16.28.0~dfsg-0+deb11u1
ii  asterisk-core-sounds-en  1.6.1-1
ii  asterisk-modules 1:16.28.0~dfsg-0+deb11u1
ii  libc62.31-13+deb11u5
ii  libcap2  1:2.44-1
ii  libcrypt11:4.4.18-4
ii  libedit2 3.1-20191231-2+b1
ii  libjansson4  2.13.1-1.1
ii  libpopt0 1.18-2
ii  libsqlite3-0 3.34.1-3
ii  libssl1.11.1.1n-0+deb11u3
ii  libsystemd0  247.3-7+deb11u1
ii  liburiparser10.9.4+dfsg-1+deb11u1
ii  libuuid1 2.36.1-8+deb11u1
ii  libxml2  2.9.10+dfsg-6.7+deb11u3
ii  libxslt1.1   1.1.34-4+deb11u1
ii  lsb-base 11.1.0

Versions of packages asterisk recommends:
ii  asterisk-moh-opsound-gsm 2.03-1.1
ii  asterisk-voicemail [asterisk-voicemail-storage]  1:16.28.0~dfsg-0+deb11u1
ii  sox  14.4.2+git20190427-2

Versions of packages asterisk suggests:
pn  asterisk-dahdi   
pn  asterisk-dev 
pn  asterisk-doc 
pn  asterisk-ooh323  
ii  asterisk-opus13.7+20171009-2
pn  asterisk-vpb 

-- no debconf information



Bug#1019556: sse3-support: version 14 fails to install where version 13 installs fine due to different binary capitalization: test-sse3 vs test-SSE3

2022-09-12 Thread Philipp Kolmann

Hi,

I was able to get the package installed by symlinking the test-SSE3 
binary to test-sse3


ln -s /usr/libexec/x86_64-linux-gnu/isa-support/test-SSE3 
/usr/libexec/x86_64-linux-gnu/isa-support/test-sse3


hope that helps someone else as well...

cheers
Philipp



Bug#1012627: Patch for 5.18 Issue

2022-06-29 Thread Philipp Kolmann

Hi,

I have faced the same issue and was also only on 5.18 anymore.

I used the Suse Patch Henrik provided in his mail, stripped it from the 
VBoxNetFlt-linux.c chunck, since this has already been added to the 
debian package in the 020-linux518.patch file.


I have now used the attached patch file and virtual box is now running 
with these changes on 2 AMD64 machines without issues again.


Hope that this patch can be included until 6.1.35 will be released into sid.

thanks
PhilippDescription: 
 TODO: Put a short summary on the line above and replace this paragraph
 with a longer explanation of this change. Complete the meta-information
 with other relevant fields (see below for details). To make it easier, the
 information below has been extracted from the changelog. Adjust it or drop
 it.
 .
 virtualbox (6.1.34-dfsg-3) unstable; urgency=medium
 .
   * Add patch from archlinux to fix a build failure with kernel 5.18
 (Closes: #1012122)
Author: Gianfranco Costamagna 
Bug-Debian: https://bugs.debian.org/1012122

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: , 
Bug: 
Bug-Debian: https://bugs.debian.org/
Bug-Ubuntu: https://launchpad.net/bugs/
Forwarded: 
Reviewed-By: 
Last-Update: 2022-06-28

--- virtualbox-6.1.34-dfsg.orig/include/VBox/sup.h
+++ virtualbox-6.1.34-dfsg/include/VBox/sup.h
@@ -2142,7 +2142,25 @@ RT_IPRT_FORMAT_ATTR(1, 2) SUPR0Printf(co
  */
 SUPR0DECL(uint32_t) SUPR0GetKernelFeatures(void);
 
-/** @copydoc RTLogGetDefaultInstanceEx
+/**
+ * Notification from R0 VMM prior to loading the guest-FPU register state.
+ *
+ * @returns Whether the host-FPU register state has been saved by the host 
kernel.
+ * @param   fCtxHookWhether thread-context hooks are enabled.
+ *
+ * @remarks Called with preemption disabled.
+ */
+SUPR0DECL(bool) SUPR0FpuBegin(bool fCtxHook);
+
+/**
+ * Notification from R0 VMM prior to saving the guest-FPU register state (and
+ * potentially restoring the host-FPU register state) in ring-0.
+ *
+ * @param   fCtxHookWhether thread-context hooks are enabled.
+ *
+ * @remarks Called with preemption disabled.
+ */
+SUPR0DECL(void) SUPR0FpuEnd(bool fCtxHook); /** @copydoc 
RTLogGetDefaultInstanceEx
  * @remarks To allow overriding RTLogGetDefaultInstanceEx locally. */
 SUPR0DECL(struct RTLOGGER *) SUPR0GetDefaultLogInstanceEx(uint32_t 
fFlagsAndGroup);
 /** @copydoc RTLogRelGetDefaultInstanceEx
--- virtualbox-6.1.34-dfsg.orig/src/VBox/Additions/linux/sharedfolders/regops.c
+++ virtualbox-6.1.34-dfsg/src/VBox/Additions/linux/sharedfolders/regops.c
@@ -3823,7 +3823,9 @@ struct address_space_operations vbsf_reg
 .readpage   = vbsf_readpage,
 .writepage  = vbsf_writepage,
 /** @todo Need .writepages if we want msync performance...  */
-#if RTLNX_VER_MIN(2,5,12)
+#if RTLNX_VER_MIN(5,18,0)
+.dirty_folio= block_dirty_folio,
+#elif RTLNX_VER_MIN(2,5,12)
 .set_page_dirty = __set_page_dirty_buffers,
 #endif
 #if RTLNX_VER_MIN(5,14,0)
--- virtualbox-6.1.34-dfsg.orig/src/VBox/HostDrivers/Support/SUPDrv.cpp
+++ virtualbox-6.1.34-dfsg/src/VBox/HostDrivers/Support/SUPDrv.cpp
@@ -98,7 +98,18 @@
 # endif
 #endif
 
-
+#if defined(RT_OS_LINUX) && !defined(__NO_FORTIFY) && defined(__OPTIMIZE__) && 
defined(CONFIG_FORTIFY_SOURCE)
+/* In Linux 5.18-rc1, memcpy became a wrapper which does fortify checks
+ * before triggering __underlying_memcpy() call. We do not pass these checks 
here,
+ * so bypass them for now.  */
+# if RTLNX_VER_MIN(5,18,0)
+#  define SUPDRV_MEMCPY __underlying_memcpy
+# else
+# define SUPDRV_MEMCPY  memcpy
+# endif
+#else
+# define SUPDRV_MEMCPY  memcpy
+#endif
 /*
  * Logging assignments:
  *  Log - useful stuff, like failures.
@@ -267,6 +278,8 @@ static SUPFUNC g_aFunctions[] =
 SUPEXP_STK_BACK(2,  SUPR0ChangeCR4),
 SUPEXP_STK_BACK(1,  SUPR0EnableVTx),
 SUPEXP_STK_BACK(0,  SUPR0SuspendVTxOnCpu),
+SUPEXP_STK_OKAY(1,  SUPR0FpuBegin),
+SUPEXP_STK_OKAY(1,  SUPR0FpuEnd),
 SUPEXP_STK_BACK(1,  SUPR0ResumeVTxOnCpu),
 SUPEXP_STK_OKAY(1,  SUPR0GetCurrentGdtRw),
 SUPEXP_STK_OKAY(0,  SUPR0GetKernelFeatures),
@@ -1742,7 +1755,7 @@ static int supdrvIOCtlInnerUnrestricted(
 
 /* execute */
 pReq->u.Out.cFunctions = RT_ELEMENTS(g_aFunctions);
-memcpy(>u.Out.aFunctions[0], g_aFunctions, 
sizeof(g_aFunctions));
+   SUPDRV_MEMCPY(>u.Out.aFunctions[0], g_aFunctions, 
sizeof(g_aFunctions));
 pReq->Hdr.rc = VINF_SUCCESS;
 return 0;
 }
--- virtualbox-6.1.34-dfsg.orig/src/VBox/HostDrivers/Support/SUPLib.cpp
+++ virtualbox-6.1.34-dfsg/src/VBox/HostDrivers/Support/SUPLib.cpp
@@ -505,7 +505,7 @@ static int supInitFake(PSUPDRVSESSION *p
 if (g_pSupFunctions)
 {
 g_pSupFunctions->u.Out.cFunctions = 

Bug#1011200: wpasupplicant linked with libssl3 can't connect to wifi (both MSCHAPv2 and WPA)

2022-05-18 Thread Philipp Kolmann
Package: wpasupplicant
Followup-For: Bug #1011121

Hi,

I have tested the suggested changes to set 

> You can try to workaround by creating a /etc/wpa_supplicant/openssl.cnf 
> config with DEFAULT@SECLEVEL=0 as described on the launchpad report

and also tried to set 

> MinProtocol = TLSv1.0

but wpasupplicant with SSL3.0 still fails with the same error.

I have now also downgraded to 2:2.10-9 and the connection works again...

Thanks for any help, I can test this easy at work...

thanks
Philipp

-- System Information:
Debian Release: bookworm/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 5.17.0-2-amd64 (SMP w/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_GB:en
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages wpasupplicant depends on:
ii  adduser3.121
ii  libc6  2.33-7
ii  libdbus-1-31.14.0-1
ii  libnl-3-2003.5.0-0.1
ii  libnl-genl-3-200   3.5.0-0.1
ii  libnl-route-3-200  3.5.0-0.1
ii  libpcsclite1   1.9.7-1
ii  libreadline8   8.1.2-1.2
ii  libssl1.1  1.1.1o-1
ii  lsb-base   11.1.0

wpasupplicant recommends no packages.

Versions of packages wpasupplicant suggests:
pn  libengine-pkcs11-openssl  
pn  wpagui

-- no debconf information



Bug#1000757: sssd-ldap: Backport Fix from Bug 991274 to Bullseye

2021-11-28 Thread Philipp Kolmann

Package: sssd-ldap
Version: 2.4.1-2
Severity: important

Dear Maintainer,

I have came accross the same issue as described in Debian Bug #991274
(1). I have found a patch there and also a request to backport the patch
into bullseye because currently sssd isn't working in bullseye.

The original report was closed but for me I have not found a working
package in bullseye. I was able to fix it for myself by applying the
patch found in (2).

Would it be possible to either apply this patch for the next bullseye
update or maybe provide a backport of a newer version for bullseye?

thanks
Philipp


(1) https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=991274
(2) https://github.com/SSSD/sssd/pull/5743

-- System Information:
Debian Release: 11.1
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable-security'), (500, 
'stable')

Architecture: amd64 (x86_64)

Kernel: Linux 5.10.0-9-amd64 (SMP w/4 CPU threads)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_GB:en

Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages sssd-ldap depends on:
ii  libc6 2.31-13+deb11u2
ii  libsss-idmap0 2.4.1-2
ii  libtalloc2    2.3.1-2+b1
ii  libtevent0    0.10.2-1
ii  sssd-common   2.4.1-2
ii  sssd-krb5-common  2.4.1-2

Versions of packages sssd-ldap recommends:
ii  ldap-utils  2.4.57+dfsg-3

Versions of packages sssd-ldap suggests:
pn  libsasl2-modules-ldap  

-- no debconf information



Bug#980561: Fix für Bullseye

2021-06-20 Thread Philipp Kolmann

Hi,

I have faced the same issue and with several sources across the internet 
I was able to fix it for me.


1.) Adding a wwsympa.service
2.) Changing the apache config.

Maybe this helps someone facing the issues while updating to bullseye.

cheers
Philipp
--- /etc/apache2/conf-available/sympa.conf_ORIG	2021-03-12 14:55:03.799536684 +0100
+++ /etc/apache2/conf-available/sympa.conf	2021-06-20 13:24:42.543000224 +0200
@@ -18,8 +18,8 @@
 Require all granted
 
 
-ScriptAlias /sympa /usr/lib/cgi-bin/sympa/wwsympa-wrapper.fcgi
-
+
+SetHandler "proxy:unix:/run/sympa/wwsympa.socket|fcgi://"
 Require all granted
-
+
 
[Unit]
Description=WWSympa - Web interface for Sympa mailing list manager
After=syslog.target sympa.service
 
[Service]
Type=forking
PIDFile=/run/sympa/wwsympa.pid
ExecStart=/usr/bin/spawn-fcgi -F $FCGI_CHILDREN \
-P /run/sympa/wwsympa.pid \
-s /run/sympa/wwsympa.socket \
-u $FCGI_USER -g $FCGI_GROUP $FCGI_OPTS -- \
/usr/lib/cgi-bin/sympa/wwsympa.fcgi
Environment="FCGI_CHILDREN=5"
Environment="FCGI_USER=sympa"
Environment="FCGI_GROUP=sympa"
Environment="FCGI_OPTS=-M 0600 -U www-data"
Restart=always

[Install]
WantedBy=multi-user.target



Bug#926509: keepassxc: Please update to Version 2.4.0

2019-04-06 Thread Philipp Kolmann
Package: keepassxc
Version: 2.3.4+dfsg.1-1
Severity: wishlist

Hi,

could you please update keepassxc to the latest release 2.4.0.

https://keepassxc.org/blog/2019-03-19-2.4.0-released/

Thanks
Philipp


-- System Information:
Debian Release: buster/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.19.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages keepassxc depends on:
ii  libargon2-1   0~20171227-0.2
ii  libc6 2.28-8
ii  libgcrypt20   1.8.4-5
ii  libqt5core5a  5.11.3+dfsg1-1
ii  libqt5dbus5   5.11.3+dfsg1-1
ii  libqt5gui55.11.3+dfsg1-1
ii  libqt5network55.11.3+dfsg1-1
ii  libqt5widgets55.11.3+dfsg1-1
ii  libqt5x11extras5  5.11.3-2
ii  libsodium23   1.0.17-1
ii  libstdc++68.3.0-5
ii  libx11-6  2:1.6.7-1
ii  libxi62:1.7.9-1
ii  libxtst6  2:1.2.3-1
ii  libykpers-1-1 1.19.3-2
ii  libzxcvbn02.4+dfsg-2
ii  zlib1g1:1.2.11.dfsg-1

keepassxc recommends no packages.

keepassxc suggests no packages.

-- no debconf information



Bug#893957: libapache2-mod-auth-mellon: Add mellon_create_metadata.sh to the package

2018-03-24 Thread Philipp Kolmann
Package: libapache2-mod-auth-mellon
Version: 0.14.0-1
Severity: normal

Hi,

to create the certificate and the metadata for the Service Provider, there is a 
shell script that helps the user. It is in the main repo at:

https://github.com/UNINETT/mod_auth_mellon/blob/master/mellon_create_metadata.sh

Could you please also include this into this package.

thanks
Philipp


-- System Information:
Debian Release: buster/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.15.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages libapache2-mod-auth-mellon depends on:
ii  apache2-bin [apache2-api-20120211]  2.4.29-2
ii  libc6   2.27-2
ii  libcurl37.58.0-2
ii  libglib2.0-02.56.0-4
ii  liblasso3   2.5.0-5+b4
ii  libssl1.1   1.1.0g-2

libapache2-mod-auth-mellon recommends no packages.

libapache2-mod-auth-mellon suggests no packages.

-- no debconf information



Bug#882043: Firefox wont open from thunderbird

2017-11-24 Thread Philipp Kolmann

Hi,

I found this bugreport because I have the same issue:

ii  thunderbird  1:52.4.0-2~exp1 amd64   
mail/news client with RSS, chat and integrated spam filter su
ii  firefox  57.0-1 amd64   Mozilla 
Firefox web browser


When I click a link in an email I get the following error in journalctl:

Nov 24 09:09:27 wspk audit[11225]: AVC apparmor="DENIED" 
operation="exec" profile="thunderbird" name="/usr/lib/firefox/firefox" 
pid=11225 comm="thunderbird" requested_mask="x" denied_mask="x" 
fsuid=22677 ouid=0
Nov 24 09:09:27 wspk kernel: audit: type=1400 audit(1511510967.408:270): 
apparmor="DENIED" operation="exec" profile="thunderbird" 
name="/usr/lib/firefox/firefox" pid=11225 comm="thunderbird" 
requested_mask="x" denied_mask="x" fsuid=22677 ouid=0


Adding

  /usr/lib/firefox/firefox Cx -> sanitized_helper,

to /etc/apparmor.d/usr.bin.thunderbird didn't help. (after restarting 
thunderbird. or do I need to do something else?)


thanks
Philipp



Bug#825170: First Patch had issues

2016-05-25 Thread Philipp Kolmann

Please ignore the first patch and use this one now.

thanks
Philipp
>From bd832c1fd6c4159914777a1ccf67b09902285ccc Mon Sep 17 00:00:00 2001
From: Philipp Kolmann <phil...@kolmann.at>
Date: Wed, 25 May 2016 11:40:29 +0200
Subject: [PATCH 2/2] fix first patch

Signed-off-by: Philipp Kolmann <phil...@kolmann.at>
---
 rulefiles/linux/ignore.d.server/bind | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/rulefiles/linux/ignore.d.server/bind b/rulefiles/linux/ignore.d.server/bind
index 6e7e2ae..9c391ca 100644
--- a/rulefiles/linux/ignore.d.server/bind
+++ b/rulefiles/linux/ignore.d.server/bind
@@ -11,5 +11,6 @@
 ^\w{3} [ :[:digit:]]{11} [._[:alnum:]-]+ named\[[[:digit:]]+\]: zone [-._[:alnum:]]+/IN: notify from [.:[:xdigit:]]+#[[:digit:]]+: zone is up to date$
 ^[[:alpha:]]{3} [ :[:digit:]]{11} [._[:alnum:]-]+ named\[[0-9]+\]: success resolving '[^[:space:]]+' \(in '[.[:alnum:]-]+'\?\) after (disabling EDNS|reducing the advertised EDNS UDP packet size to 512 octets)$
 ^[[:alpha:]]{3} [ :[:digit:]]{11} [._[:alnum:]-]+ named\[[[:digit:]]+\]: error \((FORMERR|connection refused|unexpected RCODE (REFUSED|SERVFAIL)|(network|host) unreachable)\) resolving '[^[:space:]]+': [.:[:xdigit:]]+#[[:digit:]]+$
-^\w{3} [ :[:digit:]]{11} [._[:alnum:]-]+ named\[[[:digit:]]+\]: zone [._[:alnum:]-]+/IN (signed): reconfiguring zone keys$
-^\w{3} [ :[:digit:]]{11} [._[:alnum:]-]+ named\[[[:digit:]]+\]: zone [._[:alnum:]-]+/IN (signed): next key event: [:digit:]]{3}-\w{3}-[:digit:]{4} [.:[:digit:]]{12}$
+^\w{3} [ :[:digit:]]{11} [._[:alnum:]-]+ named\[[[:digit:]]+\]: zone [._[:alnum:]-]+/IN \(signed\): reconfiguring zone keys$
+^\w{3} [ :[:digit:]]{11} [._[:alnum:]-]+ named\[[[:digit:]]+\]: zone [._[:alnum:]-]+/IN \(signed\): next key event: [[:digit:]]{2}-\w{3}-[[:digit:]]{4} [.:[:digit:]]{12}$
+
-- 
2.8.1



Bug#825170: logcheck: Ignore DNSSEC rekeying

2016-05-24 Thread Philipp Kolmann
Package: logcheck
Version: 1.3.17
Severity: minor
Tags: patch

After enabling bind inline-signing the logfile sees every hour a 'reconfiguring 
zone keys' and 'next key event' line. These could be ignored.

-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.5.0-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

Versions of packages logcheck depends on:
ii  adduser3.114
ii  cron   3.0pl1-128
ii  exim4-daemon-heavy [mail-transport-agent]  4.87-3
ii  lockfile-progs 0.1.17
ii  logtail1.3.17
ii  mime-construct 1.11+nmu2
ii  rsyslog [system-log-daemon]8.16.0-1+b3

Versions of packages logcheck recommends:
ii  logcheck-database  1.3.17

Versions of packages logcheck suggests:
pn  syslog-summary  

-- Configuration Files:
/etc/logcheck/logcheck.conf [Errno 13] Permission denied: 
u'/etc/logcheck/logcheck.conf'
/etc/logcheck/logcheck.logfiles [Errno 13] Permission denied: 
u'/etc/logcheck/logcheck.logfiles'

-- debconf information:
* logcheck/install-note:
  logcheck/changes:
>From d3450966f68a2221a4155868a9beed524478feca Mon Sep 17 00:00:00 2001
From: Philipp Kolmann <phil...@kolmann.at>
Date: Tue, 24 May 2016 11:27:19 +0200
Subject: [PATCH] commit d180391d2a0f71f4f91a39a8b2b55fb676fdb3bc Author:
 Philipp Kolmann <phil...@kolmann.at> Date:   Tue May 24 11:25:10 2016 +0200

After enabling bind inline-signing the logfile sees every hour a 'reconfiguring
zone keys' and 'next key event' line. These could be ignored.

Signed-off-by: Philipp Kolmann <phil...@kolmann.at>
---
 rulefiles/linux/ignore.d.server/bind | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/rulefiles/linux/ignore.d.server/bind b/rulefiles/linux/ignore.d.server/bind
index 88e1989..6e7e2ae 100644
--- a/rulefiles/linux/ignore.d.server/bind
+++ b/rulefiles/linux/ignore.d.server/bind
@@ -11,3 +11,5 @@
 ^\w{3} [ :[:digit:]]{11} [._[:alnum:]-]+ named\[[[:digit:]]+\]: zone [-._[:alnum:]]+/IN: notify from [.:[:xdigit:]]+#[[:digit:]]+: zone is up to date$
 ^[[:alpha:]]{3} [ :[:digit:]]{11} [._[:alnum:]-]+ named\[[0-9]+\]: success resolving '[^[:space:]]+' \(in '[.[:alnum:]-]+'\?\) after (disabling EDNS|reducing the advertised EDNS UDP packet size to 512 octets)$
 ^[[:alpha:]]{3} [ :[:digit:]]{11} [._[:alnum:]-]+ named\[[[:digit:]]+\]: error \((FORMERR|connection refused|unexpected RCODE (REFUSED|SERVFAIL)|(network|host) unreachable)\) resolving '[^[:space:]]+': [.:[:xdigit:]]+#[[:digit:]]+$
+^\w{3} [ :[:digit:]]{11} [._[:alnum:]-]+ named\[[[:digit:]]+\]: zone [._[:alnum:]-]+/IN (signed): reconfiguring zone keys$
+^\w{3} [ :[:digit:]]{11} [._[:alnum:]-]+ named\[[[:digit:]]+\]: zone [._[:alnum:]-]+/IN (signed): next key event: [:digit:]]{3}-\w{3}-[:digit:]{4} [.:[:digit:]]{12}$
-- 
2.8.1



Bug#813451: Update with 4.4

2016-02-22 Thread Philipp Kolmann

Hi,

I tried to boot with 4.4 again. My Lilo.conf still fails to boot the box:

large-memory
lba32

boot=/dev/md0
raid-extra-boot=mbr-only
root=/dev/md0

install=menu
prompt
timeout=50

map=/boot/map

image=/boot/vmlinuz
label="Linux"
initrd=/boot/initrd.img
vga=791
read-only

image=/boot/vmlinuz.old
label="Linux.old"
initrd=/boot/initrd.img.old
vga=791
read-only
optional

image=/boot/memtest86+.bin
label="Memtest"



If I specify 'Linux root=/dev/md0' at the lilo promt, the system boots 
and works now with Linux wspk 4.4.0-1-amd64 #1 SMP Debian 4.4.2-3 
(2016-02-21) x86_64 GNU/Linux.


Somehow the system doesn't find the root partition.

thanks
Philipp



Bug#788541: Fixed with fixed in openssl 1.0.2c-1

2015-06-15 Thread Philipp Kolmann

Hi,

with todays update to openssl 1.0.2c-1 the issue is fixed again (see 
Bug#788511).


Thanks
Philipp


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



Bug#788541: freerdp-x11: *** stack smashing detected ***: xfreerdp terminated

2015-06-12 Thread Philipp Kolmann
Package: freerdp-x11
Version: 1.1.0~git20140921.1.440916e+dfsg1-4
Severity: normal

When I start xfreerdp since todays upgrade of sid, it crashes:

xfreerdp /kbd:0x0407 /size:1850x1060 /bpp:32 +clipboard /cert-ignore 
/u:pkolmann /v:wspk2
loading channel cliprdr
connected to wspk2:3389
Password: 
*** stack smashing detected ***: xfreerdp terminated
=== Backtrace: =
/lib/i386-linux-gnu/i686/cmov/libc.so.6(+0x6c6f3)[0xb6ebb6f3]
/lib/i386-linux-gnu/i686/cmov/libc.so.6(__fortify_fail+0x45)[0xb6f492d5]
/lib/i386-linux-gnu/i686/cmov/libc.so.6(+0xfa28a)[0xb6f4928a]
/usr/lib/i386-linux-gnu/libwinpr-sspi.so.0.1(_fini+0x0)[0xb74fbe94]
/usr/lib/i386-linux-gnu/libwinpr-sspi.so.0.1(+0x7df3)[0xb74f4df3]
/usr/lib/i386-linux-gnu/libwinpr-sspi.so.0.1(ntlm_write_AuthenticateMessage+0x3fa)[0xb74f6cfa]
/usr/lib/i386-linux-gnu/libwinpr-sspi.so.0.1(ntlm_InitializeSecurityContextW+0x238)[0xb74f8688]
/usr/lib/i386-linux-gnu/libwinpr-sspi.so.0.1(ntlm_InitializeSecurityContextA+0x106)[0xb74f8796]
/usr/lib/i386-linux-gnu/libwinpr-sspi.so.0.1(InitializeSecurityContextA+0x9f)[0xb74fb64f]
/usr/lib/i386-linux-gnu/libfreerdp-core.so.1.1(credssp_client_authenticate+0x1b6)[0xb75d3ae6]
/usr/lib/i386-linux-gnu/libfreerdp-core.so.1.1(credssp_authenticate+0x21)[0xb75d43a1]
/usr/lib/i386-linux-gnu/libfreerdp-core.so.1.1(transport_connect_nla+0x71)[0xb75fc6b1]
/usr/lib/i386-linux-gnu/libfreerdp-core.so.1.1(nego_security_connect+0x8b)[0xb75d46bb]
/usr/lib/i386-linux-gnu/libfreerdp-core.so.1.1(nego_connect+0x11e)[0xb75d56be]
/usr/lib/i386-linux-gnu/libfreerdp-core.so.1.1(rdp_client_connect+0x292)[0xb75f5742]
/usr/lib/i386-linux-gnu/libfreerdp-core.so.1.1(freerdp_connect+0x148)[0xb75ea6c8]
/usr/lib/i386-linux-gnu/libxfreerdp-client.so.1.1(xf_thread+0x90)[0xb76d6ce0]
/lib/i386-linux-gnu/i686/cmov/libpthread.so.0(+0x6efb)[0xb701aefb]
/lib/i386-linux-gnu/i686/cmov/libc.so.6(clone+0x5e)[0xb6f3862e]
=== Memory map: 
08048000-0804a000 r-xp  09:00 325867 /usr/bin/xfreerdp
0804a000-0804b000 r--p 1000 09:00 325867 /usr/bin/xfreerdp
0804b000-0804c000 rw-p 2000 09:00 325867 /usr/bin/xfreerdp
08765000-087d3000 rw-p  00:00 0  [heap]
b629f000-b62bb000 r-xp  09:00 1612546
/lib/i386-linux-gnu/libgcc_s.so.1
b62bb000-b62bc000 rw-p 0001b000 09:00 1612546
/lib/i386-linux-gnu/libgcc_s.so.1
b62bc000-b62cf000 r-xp  09:00 1613215
/lib/i386-linux-gnu/i686/cmov/libresolv-2.19.so
b62cf000-b62d r--p 00012000 09:00 1613215
/lib/i386-linux-gnu/i686/cmov/libresolv-2.19.so
b62d-b62d1000 rw-p 00013000 09:00 1613215
/lib/i386-linux-gnu/i686/cmov/libresolv-2.19.so
b62d1000-b62d3000 rw-p  00:00 0 
b630-b633e000 rw-p  00:00 0 
b633e000-b640 ---p  00:00 0 
b6405000-b641 r-xp  09:00 1613199
/lib/i386-linux-gnu/i686/cmov/libnss_files-2.19.so
b641-b6411000 r--p a000 09:00 1613199
/lib/i386-linux-gnu/i686/cmov/libnss_files-2.19.so
b6411000-b6412000 rw-p b000 09:00 1613199
/lib/i386-linux-gnu/i686/cmov/libnss_files-2.19.so
b6412000-b6413000 ---p  00:00 0 
b6413000-b6c13000 rw-p  00:00 0  [stack:8646]
b6c13000-b6e13000 r--p  09:00 423527 /usr/lib/locale/locale-archive
b6e13000-b6e16000 rw-p  00:00 0 
b6e16000-b6e1b000 r-xp  09:00 636897 
/usr/lib/i386-linux-gnu/libXdmcp.so.6.0.0
b6e1b000-b6e1c000 r--p 4000 09:00 636897 
/usr/lib/i386-linux-gnu/libXdmcp.so.6.0.0
b6e1c000-b6e1d000 rw-p 5000 09:00 636897 
/usr/lib/i386-linux-gnu/libXdmcp.so.6.0.0
b6e1d000-b6e1f000 r-xp  09:00 636284 
/usr/lib/i386-linux-gnu/libXau.so.6.0.0
b6e1f000-b6e2 r--p 1000 09:00 636284 
/usr/lib/i386-linux-gnu/libXau.so.6.0.0
b6e2-b6e21000 rw-p 2000 09:00 636284 
/usr/lib/i386-linux-gnu/libXau.so.6.0.0
b6e21000-b6e45000 r-xp  09:00 636066 
/usr/lib/i386-linux-gnu/libxcb.so.1.1.0
b6e45000-b6e46000 r--p 00023000 09:00 636066 
/usr/lib/i386-linux-gnu/libxcb.so.1.1.0
b6e46000-b6e47000 rw-p 00024000 09:00 636066 
/usr/lib/i386-linux-gnu/libxcb.so.1.1.0
b6e47000-b6e48000 rw-p  00:00 0 
b6e48000-b6e4d000 r-xp  09:00 635989 
/usr/lib/i386-linux-gnu/libXfixes.so.3.1.0
b6e4d000-b6e4e000 r--p 4000 09:00 635989 
/usr/lib/i386-linux-gnu/libXfixes.so.3.1.0
b6e4e000-b6e4f000 rw-p 5000 09:00 635989 
/usr/lib/i386-linux-gnu/libXfixes.so.3.1.0
b6e4f000-b6ff3000 r-xp  09:00 1613131
/lib/i386-linux-gnu/i686/cmov/libc-2.19.so
b6ff3000-b6ff5000 r--p 001a4000 09:00 1613131
/lib/i386-linux-gnu/i686/cmov/libc-2.19.so
b6ff5000-b6ff6000 rw-p 001a6000 09:00 1613131
/lib/i386-linux-gnu/i686/cmov/libc-2.19.so
b6ff6000-b6ffa000 rw-p  00:00 0 
b6ffa000-b6ffc000 r-xp  09:00 636496 
/usr/lib/i386-linux-gnu/libwinpr-environment.so.0.1.0
b6ffc000-b6ffd000 r--p 1000 09:00 636496 
/usr/lib/i386-linux-gnu/libwinpr-environment.so.0.1.0
b6ffd000-b6ffe000 rw-p 2000 

Bug#702358: Looking for a SRS + Exim Solution

2014-11-03 Thread Philipp Kolmann

Hi,

I have the same issue here and really need a solution here. I would 
really love to see this bug addressed.


Thanks
Philipp


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



Bug#751745: pcscd doesn't work with systemd

2014-06-24 Thread Philipp Kolmann

Salut,

it seems that pcscd doens't work with systemd.

I changed the file /lib/systemd/system/pcscd.service to enable 
debugging to the logfile and now I get this when starting:


Please attach your modified /lib/systemd/system/pcscd.service file.



Sorry for the late reply. Here is the file:

pkolmann@wspk:~$ cat /lib/systemd/system/pcscd.service
[Unit]
Description=PC/SC Smart Card Daemon
Requires=pcscd.socket

[Service]
ExecStart=/usr/sbin/pcscd --debug
ExecReload=/usr/sbin/pcscd

[Install]
Also=pcscd.socket
pkolmann@wspk:~$


thanks
Philipp


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



Bug#751745: pcscd doesn't work with systemd

2014-06-16 Thread Philipp Kolmann
Package: pcscd
Version: 1.8.11-3
Severity: normal

Hi,

it seems that pcscd doens't work with systemd.

I changed the file /lib/systemd/system/pcscd.service to enable debugging to the 
logfile and now I get this when starting:

Jun 16 11:17:44 wspk systemd[1]: Starting PC/SC Smart Card Daemon...
Jun 16 11:17:44 wspk systemd[1]: Started PC/SC Smart Card Daemon.
Jun 16 11:17:44 wspk pcscd: debuglog.c:295:DebugLogSetLevel() debug level=debug
Jun 16 11:17:44 wspk pcscd: pcscdaemon.c:375:main() Started by systemd
Jun 16 11:17:44 wspk pcscd: utils.c:87:GetDaemonPid() Can't open 
/var/run/pcscd/pcscd.pid: No such file or directory
Jun 16 11:17:44 wspk pcscd: configfile.l:286:DBGetReaderListDir() Parsing conf 
directory: /etc/reader.conf.d
Jun 16 11:17:44 wspk pcscd: configfile.l:298:DBGetReaderListDir() Skipping non 
regular file: .
Jun 16 11:17:44 wspk pcscd: configfile.l:298:DBGetReaderListDir() Skipping non 
regular file: ..
Jun 16 11:17:44 wspk pcscd: configfile.l:339:DBGetReaderList() Parsing conf 
file: /etc/reader.conf.d/0comments
Jun 16 11:17:44 wspk pcscd: configfile.l:339:DBGetReaderList() Parsing conf 
file: /etc/reader.conf.d/libccidtwin
Jun 16 11:17:44 wspk pcscd: pcscdaemon.c:571:main() pcsc-lite 1.8.11 daemon 
ready.
Jun 16 11:17:44 wspk pcscd: hotplug_libudev.c:295:get_driver() Looking for a 
driver for VID: 0x1D6B, PID: 0x0001, path: /dev/bus/usb/003/001
Jun 16 11:17:44 wspk pcscd: hotplug_libudev.c:295:get_driver() Looking for a 
driver for VID: 0x1D6B, PID: 0x0001, path: /dev/bus/usb/004/001
Jun 16 11:17:44 wspk pcscd: hotplug_libudev.c:295:get_driver() Looking for a 
driver for VID: 0x1D6B, PID: 0x0001, path: /dev/bus/usb/005/001
Jun 16 11:17:44 wspk pcscd: hotplug_libudev.c:295:get_driver() Looking for a 
driver for VID: 0x1D6B, PID: 0x0001, path: /dev/bus/usb/005/001
Jun 16 11:17:44 wspk pcscd: hotplug_libudev.c:295:get_driver() Looking for a 
driver for VID: 0x0C4B, PID: 0x0400, path: /dev/bus/usb/005/005
Jun 16 11:17:44 wspk pcscd: hotplug_libudev.c:295:get_driver() Looking for a 
driver for VID: 0x0C4B, PID: 0x0400, path: /dev/bus/usb/005/005
Jun 16 11:17:44 wspk pcscd: hotplug_libudev.c:347:HPAddDevice() Adding USB 
device: REINER SCT cyberJack ecom_a
Jun 16 11:17:44 wspk pcscd: readerfactory.c:1015:RFInitializeReader() 
Attempting startup of REINER SCT cyberJack ecom_a (3547493553) 00 00 using 
/usr/lib/pcsc/drivers/libifd-cyberjack.bundle/Contents/Linux/libifd-cyberjack.so
Jun 16 11:17:44 wspk pcscd: readerfactory.c:900:RFBindFunctions() Loading IFD 
Handler 3.0
Jun 16 11:17:44 wspk pcscd: readerfactory.c:353:RFAddReader() Using the pcscd 
polling thread
Jun 16 11:17:44 wspk pcscd: hotplug_libudev.c:295:get_driver() Looking for a 
driver for VID: 0x1D6B, PID: 0x0002, path: /dev/bus/usb/001/001
Jun 16 11:17:44 wspk pcscd: hotplug_libudev.c:295:get_driver() Looking for a 
driver for VID: 0x1D6B, PID: 0x0002, path: /dev/bus/usb/001/001
Jun 16 11:17:44 wspk pcscd: hotplug_libudev.c:295:get_driver() Looking for a 
driver for VID: 0x0424, PID: 0x2514, path: /dev/bus/usb/001/026
Jun 16 11:17:44 wspk pcscd: hotplug_libudev.c:295:get_driver() Looking for a 
driver for VID: 0x1D6B, PID: 0x0002, path: /dev/bus/usb/001/001
Jun 16 11:17:44 wspk pcscd: hotplug_libudev.c:295:get_driver() Looking for a 
driver for VID: 0x0424, PID: 0x2514, path: /dev/bus/usb/001/025
Jun 16 11:17:44 wspk pcscd: hotplug_libudev.c:295:get_driver() Looking for a 
driver for VID: 0x1D6B, PID: 0x0002, path: /dev/bus/usb/001/001
Jun 16 11:17:44 wspk pcscd: hotplug_libudev.c:295:get_driver() Looking for a 
driver for VID: 0x2040, PID: 0x7070, path: /dev/bus/usb/001/004
Jun 16 11:17:44 wspk pcscd: hotplug_libudev.c:295:get_driver() Looking for a 
driver for VID: 0x1D6B, PID: 0x0002, path: /dev/bus/usb/001/001
Jun 16 11:17:44 wspk pcscd: hotplug_libudev.c:295:get_driver() Looking for a 
driver for VID: 0x046D, PID: 0x0990, path: /dev/bus/usb/001/006
Jun 16 11:17:44 wspk pcscd: hotplug_libudev.c:295:get_driver() Looking for a 
driver for VID: 0x046D, PID: 0x0990, path: /dev/bus/usb/001/006
Jun 16 11:17:44 wspk pcscd: hotplug_libudev.c:295:get_driver() Looking for a 
driver for VID: 0x046D, PID: 0x0990, path: /dev/bus/usb/001/006
Jun 16 11:17:44 wspk pcscd: hotplug_libudev.c:295:get_driver() Looking for a 
driver for VID: 0x046D, PID: 0x0990, path: /dev/bus/usb/001/006
Jun 16 11:17:44 wspk pcscd: hotplug_libudev.c:295:get_driver() Looking for a 
driver for VID: 0x1D6B, PID: 0x0001, path: /dev/bus/usb/006/001
Jun 16 11:17:44 wspk pcscd: hotplug_libudev.c:295:get_driver() Looking for a 
driver for VID: 0x1D6B, PID: 0x0001, path: /dev/bus/usb/006/001
Jun 16 11:17:44 wspk pcscd: hotplug_libudev.c:295:get_driver() Looking for a 
driver for VID: 0x046D, PID: 0xC050, path: /dev/bus/usb/006/002
Jun 16 11:17:44 wspk pcscd: hotplug_libudev.c:295:get_driver() Looking for a 
driver for VID: 0x1D6B, PID: 0x0001, path: /dev/bus/usb/007/001
Jun 16 11:17:44 wspk pcscd: hotplug_libudev.c:295:get_driver() Looking for a 
driver for VID: 0x1D6B, 

Bug#726323: [Pkg-haproxy-maintainers] Bug#726323: Bug#726323: Bug#726323: haproxy doesn't start on boot due to missing IPv6 address on interface

2013-10-16 Thread Philipp Kolmann

On 2013-10-15 20:13, Apollon Oikonomopoulos wrote:

Hi Philipp,

On 16:41 Tue 15 Oct , Philipp Kolmann wrote:

The IPv6 addresses which are balanced with keepalived are all
configured with transparent. There I don't have any issues.

I have the issue with the fixed IPv6 Address of the interface,
specified in /etc/network/interfaces

iface eth0 inet6 static
 address 2001:629:1005:30::11
 netmask 64

As Vincent pointed out, you're probably hit by IPv6 Duplicate Address
Detection (DAD). Unfortunately it also seems that Optimistic DAD does
not work at this stage. This has nothing to do with HAProxy, it's the
Linux kernel delaying to make the address available to userspace. If
this is a 100% controllable environment, you can turn DAD off on the
specified interface, with:

   pre-up echo 0  /proc/sys/net/ipv6/conf/$IFACE/accept_dad

It's dirty, but it should get you up and running without delays. I'm not
suggesting you should do it, just make sure you understand the
implications of this.

In my view, the proper solution would be for ifupdown to wait for the
address to become available (i.e. leave the tentative state). The only
thing we can do is warn about this in README.Debian I guess.


Hi Apollon,

thanks for the update. I solved the issue for me with a sleep 10 at the 
head of the htproxy init.d startfile. It's ugly, but it works for me so far.


I just wanted to raise this issue, so others can find a solution. I have 
also subscribed to the ifupdown BR regarding this issue.


thanks
Philipp


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



Bug#726323: [Pkg-haproxy-maintainers] Bug#726323: Bug#726323: haproxy doesn't start on boot due to missing IPv6 address on interface

2013-10-15 Thread Philipp Kolmann

On 2013-10-14 23:52, Apollon Oikonomopoulos wrote:

On 19:54 Mon 14 Oct , Vincent Bernat wrote:

  ❦ 14 octobre 2013 16:07 CEST, Philipp Kolmann phil...@kolmann.at :

Also I have changed to init.d file to source a second config file,
where I have
the config which both nodes share, so I can easily copy one file.
If you need the config of the global file, please tell me.

Well, there is little we can do. I suppose the address is setup in
network/interfaces but not available until it passes the DAD check. With
IPv4, you could circumvent the problem by setting
net.ipv4.ip_nonlocal_bind but there is no such setting for IPv6 and
kernel maintainers do not want to have such a setting.

I was thinking either that, or the address is managed by keepalived and
subject to all sorts of master election delays. In either case,
additionally assigning the address to a dummy interface could make
things work (dummy interfaces do not perform DAD).


The IPv6 addresses which are balanced with keepalived are all configured 
with transparent. There I don't have any issues.


I have the issue with the fixed IPv6 Address of the interface, specified 
in /etc/network/interfaces


iface eth0 inet6 static
address 2001:629:1005:30::11
netmask 64


This address takes some seconds to become available.

And I have in my global file following peers:

peers ha-cluster-v6
peer ha1 2001:629:1005:30::11:1024
peer ha2 2001:629:1005:30::12:1024


and here haproxy tries to bind the port to the IPv6 address but it isn't 
available.


Thanks
Philipp


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



Bug#726323: haproxy doesn't start on boot due to missing IPv6 address on interface

2013-10-14 Thread Philipp Kolmann
Package: haproxy
Version: 1.5~dev19-2
Severity: normal
Tags: ipv6

Dear Maintainer,

I have haproxy to do some TCP HA forwarding to LDAP and Exchange Servers. I
also have deployed native IPv6 which works nicely with keepalived and haproxy.

When the system runs and I restart haproxy I never see any issues.
When I reboot the system (kernel update), I see that haproxy fails to start due
to 2 failures:

* haproxy logs to a socket, rsyslogd provides. rsyslogd isn't running, when
  haproxy is started per default. I needed to add $syslogto the Required-Start
  section of the init.d file.

* haproxy doesn't start due to IPv6 host address not set when haproxy is 
starting.
  I have IPv6 running in production and when haproxy tries to start, it needs
  the host IPv6 address to configure the stick-table. This fails, and haproxy
  fails to start.
  
  my fast-solution is now to add a sleep 10 to the top of the init.d file,
  but I think a more proper solution would be better.


Also I have changed to init.d file to source a second config file, where I have
the config which both nodes share, so I can easily copy one file.
If you need the config of the global file, please tell me.

thanks
Philipp



-- System Information:
Debian Release: 7.2
  APT prefers stable
  APT policy: (900, 'stable'), (800, 'unstable'), (500, 'stable-updates'), (1, 
'experimental')
Architecture: amd64 (x86_64)

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

Versions of packages haproxy depends on:
ii  adduser  3.113+nmu3
ii  init-system-helpers  1.11
ii  libc62.17-93
ii  libpcre3 1:8.30-5
ii  libssl1.0.0  1.0.1e-2
ii  zlib1g   1:1.2.7.dfsg-13

haproxy recommends no packages.

Versions of packages haproxy suggests:
pn  vim-haproxy  none

-- Configuration Files:
/etc/default/haproxy changed:
ENABLED=1

/etc/haproxy/haproxy.cfg changed:
global
log /dev/loglocal0
log /dev/loglocal1 notice
chroot /var/lib/haproxy
user haproxy
group haproxy
daemon
stats socket /var/run/haproxy.sock user root group nagios mode 0660
stats socket /var/run/haproxy-admin.sock user root group root mode 0600 
level admin
stats bind-process 1
maxconn 4
tune.bufsize24576
tune.chksize24576
defaults
log global
modehttp
option  httplog
option  dontlognull
option  socket-stats
option  redispatch  # Try another server in case of 
connection failure
option  contstats   # Enable continuous traffic statistics 
updates
option  abortonclose
timeout client 7200s #alctl: client inactivity
timeout server 7200s #alctl: server inactivity 
timeout
timeout connect 5s  # 5 seconds max to connect or to stay 
in queue
timeout queue 30s   # 30 seconds max queued on load balancer
errorfile 400 /etc/haproxy/errors/400.http
errorfile 403 /etc/haproxy/errors/403.http
errorfile 408 /etc/haproxy/errors/408.http
errorfile 500 /etc/haproxy/errors/500.http
errorfile 502 /etc/haproxy/errors/502.http
errorfile 503 /etc/haproxy/errors/503.http
errorfile 504 /etc/haproxy/errors/504.http
listen stats 
bind 128.130.30.11:80 name IPv4
bind 2001:629:1005:30::11:80 transparent name IPv6
mode http
stats enable
stats realm Haproxy\ Statistics
stats uri /
acl stats-access src 127.0.0.1
acl stats-access src 128.130.30.11
acl stats-access src 128.130.30.12
acl stats-access src 128.130.36.60
acl stats-access src 128.130.36.61
acl stats-access src 128.131.225.234
acl stats-access src 128.131.35.153
acl stats-access src 2001:629:3800:36:82ee:73ff:fe00:b11c
block if ! stats-access

/etc/init.d/haproxy changed:
sleep 10
PATH=/sbin:/usr/sbin:/bin:/usr/bin
PIDFILE=/var/run/haproxy.pid
CONFIG=/etc/haproxy/haproxy.cfg
GLOBALCONFIG=/etc/haproxy/haproxy-global.cfg
HAPROXY=/usr/sbin/haproxy
EXTRAOPTS=
ENABLED=0
test -x $HAPROXY || exit 0
if [ -e /etc/default/haproxy ]; then
. /etc/default/haproxy
fi
test -f $CONFIG || exit 0
test -f $GLOBALCONFIG || exit 0
test $ENABLED != 0 || exit 0
[ -f /etc/default/rcS ]  . /etc/default/rcS
. /lib/lsb/init-functions
haproxy_start()
{
start-stop-daemon --start --pidfile $PIDFILE \
--exec $HAPROXY -- -f $CONFIG -f $GLOBALCONFIG -D -p 
$PIDFILE \
$EXTRAOPTS || return 2
return 0
}
haproxy_stop()
{
if [ ! -f $PIDFILE ] ; then
# This is a success according to LSB
return 0
fi
for pid in $(cat $PIDFILE) ; do
/bin/kill $pid || return 4
 

Bug#704523: fixed IPv6 Configuration only in installer fails

2013-04-03 Thread Philipp Kolmann

On 2013-04-03 03:09, Ben Hutchings wrote:

Control: tag -1 unreproducible

On Wed, 2013-04-03 at 00:59 +0200, Samuel Thibault wrote:

Philipp Kolmann, le Tue 02 Apr 2013 13:33:23 +0200, a écrit :

On console 4 I see the following logmessage looping:

nc_v6_interface_configured(eth0, scope global)
Running ip addr show eth0 to look for address
ip line: 2: eth0:BROADCAST,MULTICAST,UP,LOWER_UP   mtu 1500 qd isc pfifo_fast 
qlen 1000
ip line: link/ether 00:50:56:be:XX:XX brd ff:ff:ff:ff:ff:ff
ip line: inet6 2001:629:1005:323:250:56ff:febe:/64 scope global dynamic
ip line:   valid_lft 2591972sec preffered_lft 604772sec
ip line: inet6 2001:629:1005:323::161/64 scope global tentative flags 08
ip line:   valid_lft forever preffered_lft forever
ip line: inet6 fe80::250:56ff:febe:/64 scope link
ip line:   valid_lft forever preffered_lft forever

And the tentative flag never disappears?  You should probably check why
that doesn't happen, as that's what netcfg is waiting for AIUI.

I just tested this configuration and as expected the tentative status
goes away after 2 seconds.

Your ip output includes 'flags 08' which corresponds to IFA_F_DADFAILED
(duplicate address detection failed).  Which means either someone else
is already using the address you selected, or else a switch is
reflecting the packets sent during DAD.


Sorry for bothering. I had the IPv6 Address already in use, but not 
pingable, so I thought it was not in use.


Everything works fine now.

thanks
Philipp


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



Bug#704523: fixed IPv6 Configuration only in installer fails

2013-04-02 Thread Philipp Kolmann

Package: installation-reports

Boot method: iso mounted into virtual machine
Image version: 
http://cdimage.debian.org/cdimage/wheezy_di_rc1/amd64/iso-cd/debian-wheezy-DI-rc1-amd64-netinst.iso
Date: 2013-04-02 12:50:00 CEST

Machine: VMware ESX 5.1 Virtual Machine, configured to run Debian 6.0 AMD 64
Processor: Intel Xeon E5-26500 (1vCPU)
Memory: 1024MB
Partitions: none specified

Output of lspci -knn (or lspci -nn):

Base System Installation Checklist:
[O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it

Initial boot:   [O]
Detect network card:[O]
Configure network:  [E]
Detect CD:  [ ]
Load installer modules: [ ]
Detect hard drives: [ ]
Partition hard drives:  [ ]
Install base system:[ ]
Clock/timezone setup:   [ ]
User/password setup:[ ]
Install tasks:  [ ]
Install boot loader:[ ]
Overall install:[ ]

Comments/Problems:

On my network we have IPv6 enabled. I wanted to configure the new box IPv6 only 
with a fixed Address to test.

Booting off the RC1 ISO, I set following options

Regular install
Language: English
Country: Austria
Default Setting: en_US.UTF-8
Keymap: German

At the nameserver screen I go back twice to specify a fixed IPv6 Address.

IP Address: 2001:629:1005:323::161
Netmask: :::::
Gateway: 2001:629:1005:323::1
Nameservers: 2001:629:1001:1::53 2001:629:1001:2::53

Then the screen stays blue and never goes on.

On console 4 I see the following logmessage looping:

nc_v6_interface_configured(eth0, scope global)
Running ip addr show eth0 to look for address
ip line: 2: eth0:BROADCAST,MULTICAST,UP,LOWER_UP  mtu 1500 qd isc pfifo_fast 
qlen 1000
ip line: link/ether 00:50:56:be:XX:XX brd ff:ff:ff:ff:ff:ff
ip line: inet6 2001:629:1005:323:250:56ff:febe:/64 scope global dynamic
ip line:   valid_lft 2591972sec preffered_lft 604772sec
ip line: inet6 2001:629:1005:323::161/64 scope global tentative flags 08
ip line:   valid_lft forever preffered_lft forever
ip line: inet6 fe80::250:56ff:febe:/64 scope link
ip line:   valid_lft forever preffered_lft forever



On console 2 I can ping both nameservers but the installer hangs at a blue 
screen.

Thanks
Philipp


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



Bug#646123: FTBS: javascriptcoregtk-1.0 missing

2011-10-21 Thread Philipp Kolmann
Package: surf
Version: 0.4.1-4.1
Severity: normal
Tags: patch

Hi,

I wanted to rebuild surf with a little modification but was not able to:

pkolmann@wspk:~/test/weg/WebKit/surf/deb$ fakeroot apt-get -b source surf
Reading package lists... Done
Building dependency tree   
Reading state information... Done
NOTICE: 'surf' packaging is maintained in the 'Git' version control system at:
git://webconverger.org/git/public/surf
Need to get 15.9 kB of source archives.
Get:1 http://gd.tuwien.ac.at/linux/debian/ unstable/main surf 0.4.1-4.1 (dsc) 
[1782 B]
Get:2 http://gd.tuwien.ac.at/linux/debian/ unstable/main surf 0.4.1-4.1 (tar) 
[10.1 kB]
Get:3 http://gd.tuwien.ac.at/linux/debian/ unstable/main surf 0.4.1-4.1 (diff) 
[4003 B]
Fetched 15.9 kB in 0s (900 kB/s)
dpkg-source: info: extracting surf in surf-0.4.1
dpkg-source: info: unpacking surf_0.4.1.orig.tar.gz
dpkg-source: info: unpacking surf_0.4.1-4.1.debian.tar.gz
dpkg-source: info: applying debian-changes-0.4.1-3
dpkg-source: info: applying X11.diff
dpkg-buildpackage: source package surf
dpkg-buildpackage: source version 0.4.1-4.1
dpkg-buildpackage: source changed by Bart Martens ba...@debian.org
dpkg-buildpackage: host architecture i386
 dpkg-source --before-build surf-0.4.1
dpkg-source: info: using options from surf-0.4.1/debian/source/options: 
--compression=gzip --compression-level=9
 debian/rules clean
dh clean
   dh_testdir
   dh_auto_clean
make[1]: Entering directory `/home/pkolmann/test/weg/WebKit/surf/deb/surf-0.4.1'
cleaning
make[1]: Leaving directory `/home/pkolmann/test/weg/WebKit/surf/deb/surf-0.4.1'
   dh_clean
 debian/rules build
dh build
   dh_testdir
   dh_auto_configure
   dh_auto_build
make[1]: Entering directory `/home/pkolmann/test/weg/WebKit/surf/deb/surf-0.4.1'
surf build options:
CFLAGS   = -std=c99 -pedantic -Wall -Os -I. -I/usr/include -pthread 
-I/usr/include/gtk-2.0 -I/usr/lib/i386-linux-gnu/gtk-2.0/include 
-I/usr/include/atk-1.0 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 
-I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 
-I/usr/include/cairo -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/usr/include/webkit-1.0 
-I/usr/include/libsoup-2.4 -I/usr/include/libxml2   -DVERSION=0.4.1
LDFLAGS  = -g -L/usr/lib -lc -pthread -lwebkitgtk-1.0 -lgtk-x11-2.0 -lsoup-2.4 
-lgdk-x11-2.0 -latk-1.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 
-lcairo -lpango-1.0 -lfreetype -lfontconfig -lgio-2.0 -lgobject-2.0 
-lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0   -lgthread-2.0
CC   = cc
CC surf.c
surf.c: In function 'gotheaders':
surf.c:318:11: warning: variable 'uri' set but not used 
[-Wunused-but-set-variable]
CC -o surf
/usr/bin/ld: surf.o: undefined reference to symbol 'JSEvaluateScript'
/usr/bin/ld: note: 'JSEvaluateScript' is defined in DSO 
/usr/lib/libjavascriptcoregtk-1.0.so.0 so try adding it to the linker command 
line
/usr/lib/libjavascriptcoregtk-1.0.so.0: could not read symbols: Invalid 
operation
collect2: ld returned 1 exit status
make[1]: *** [surf] Error 1
make[1]: Leaving directory `/home/pkolmann/test/weg/WebKit/surf/deb/surf-0.4.1'
dh_auto_build: make -j1 returned exit code 2
make: *** [build] Error 2
dpkg-buildpackage: error: debian/rules build gave error exit status 2
Build command 'cd surf-0.4.1  dpkg-buildpackage -b -uc' failed.
E: Child process failed
pkolmann@wspk:~/test/weg/WebKit/surf/deb$ 


Adding javascriptcoregtk-1.0 to the include- and lib-paths solved the problem 
for me. Patch attached.

thanks
Philipp


-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 3.0.0-2-686-pae (SMP w/8 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages surf depends on:
ii  libatk1.0-0 2.2.0-2   
ii  libc6   2.13-21   
ii  libcairo2   1.10.2-6.1
ii  libfontconfig1  2.8.0-3   
ii  libfreetype62.4.6-2   
ii  libgdk-pixbuf2.0-0  2.24.0-1  
ii  libglib2.0-02.28.8-1  
ii  libgtk2.0-0 2.24.7-1  
ii  libpango1.0-0   1.29.4-1  
ii  libsoup2.4-12.36.0-1  
ii  libwebkitgtk-1.0-0  1.6.1-2   
ii  libx11-62:1.4.4-2 
ii  suckless-tools  38-1  
ii  wget1.13-1
ii  x11-utils   7.6+3 
ii  xterm   276-1 

surf recommends no packages.

surf suggests no packages.

-- no debconf information
--- orig/config.mk	2011-10-21 15:52:29.0 +0200
+++ surf/config.mk	2011-10-21 15:51:23.0 +0200
@@ -7,8 +7,8 @@
 PREFIX = /usr/local
 MANPREFIX = ${PREFIX}/share/man
 
-GTKINC=$(shell pkg-config --cflags gtk+-2.0 webkit-1.0)
-GTKLIB=$(shell pkg-config --libs gtk+-2.0 webkit-1.0)
+GTKINC=$(shell pkg-config --cflags gtk+-2.0 webkit-1.0 javascriptcoregtk-1.0)
+GTKLIB=$(shell pkg-config --libs gtk+-2.0 webkit-1.0 javascriptcoregtk-1.0)
 
 
 # includes 

Bug#586063: Config

2011-02-28 Thread Philipp Kolmann

Hello,

sorry, somehow I forgot about this bug.

Here is my config:

pkolmann@wspk:~$ cat .fbpanel/default
Global {
edge = bottom
allign = left
margin = 0
widthtype = pixel
width = 200
heighttype = pixel
height = 32
roundcorners = false
Transparent = true
TintColor = 0xFF00
Alpha = 255
}

Plugin {
type = tray
}


Started in FVWM2 it is via post.hook:

pkolmann@wspk:~$ grep fbpanel .fvwm/*
.fvwm/init-restart.hook:+ I  Exec killall fbpanel
.fvwm/menudefs.hook:+ fbpanel Exec exec /usr/bin/fbpanel
.fvwm/post.hook:*FvwmButtons(3x1,Swallow fbpanel Exec /usr/bin/fbpanel)

If needed, I can also provide full fvwm configs.

regards
Philipp




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



Bug#595225: cups: Wronk hostname in link of RSS feed items

2010-09-02 Thread Philipp Kolmann
Package: cups
Version: 1.4.4-3
Severity: normal

Hi,

I added a RSS feed for cups the other day and added it to my RSS reader. I get 
the items but I can't click on them, because they have the wrong hostname:

?xml version=1.0?
rss version=2.0
  channel
titleCUPS RSS Feed/title
linkhttp://localhost:631/rss/printstat.rss/link
descriptionCUPS RSS Feed/description
generatorCUPS v1.4.4/generator
ttl1/ttl
pubDateThu, 02 Sep 2010 06:24:34 GMT/pubDate
item
  titlePrinter: Brother stopped/title
  descriptionPrinter Brother state changed to none./description
  linkhttp://wspk/printers/Brother/link
  pubDateThu, 02 Sep 2010 06:24:34 GMT/pubDate
  guid15/guid
/item
[...]

As you can see above, in the channel section, the link is correct:

linkhttp://localhost:631/rss/printstat.rss/link

but in the item section, it falls back to the hostname without the port (Apache 
listening there, but without knowledge of Cups):

  linkhttp://wspk/printers/Brother/link

I would like to see those links also with localhost:631 or whereever cups 
listens to.

thanks
Philipp


-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)

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

Versions of packages cups depends on:
ii  adduser   3.112  add and remove users and groups
ii  bc1.06.95-2  The GNU bc arbitrary precision cal
ii  cups-client   1.4.4-3Common UNIX Printing System(tm) - 
ii  cups-common   1.4.4-3Common UNIX Printing System(tm) - 
ii  debconf [debconf-2.0] 1.5.35 Debian configuration management sy
ii  ghostscript   8.71~dfsg2-6   The GPL Ghostscript PostScript/PDF
ii  libavahi-client3  0.6.27-2   Avahi client library
ii  libavahi-common3  0.6.27-2   Avahi common library
ii  libc6 2.11.2-2   Embedded GNU C Library: Shared lib
ii  libcups2  1.4.4-3Common UNIX Printing System(tm) - 
ii  libcupscgi1   1.4.4-3Common UNIX Printing System(tm) - 
ii  libcupsdriver11.4.4-3Common UNIX Printing System(tm) - 
ii  libcupsimage2 1.4.4-3Common UNIX Printing System(tm) - 
ii  libcupsmime1  1.4.4-3Common UNIX Printing System(tm) - 
ii  libcupsppdc1  1.4.4-3Common UNIX Printing System(tm) - 
ii  libdbus-1-3   1.2.24-3   simple interprocess messaging syst
ii  libgcc1   1:4.4.4-11 GCC support library
ii  libgnutls26   2.8.6-1the GNU TLS library - runtime libr
ii  libgssapi-krb5-2  1.8.3+dfsg~beta1-1 MIT Kerberos runtime libraries - k
ii  libijs-0.35   0.35-7 IJS raster image transport protoco
ii  libkrb5-3 1.8.3+dfsg~beta1-1 MIT Kerberos runtime libraries
ii  libldap-2.4-2 2.4.23-4   OpenLDAP libraries
ii  libpam0g  1.1.1-4Pluggable Authentication Modules l
ii  libpaper1 1.1.24 library for handling paper charact
ii  libpoppler5   0.12.4-1.1 PDF rendering library
ii  libslp1   1.2.1-7.8  OpenSLP libraries
ii  libstdc++64.4.4-11   The GNU Standard C++ Library v3
ii  libusb-0.1-4  2:0.1.12-15userspace USB programming library
ii  lsb-base  3.2-23.1   Linux Standard Base 3.2 init scrip
ii  perl-modules  5.10.1-14  Core Perl modules
ii  poppler-utils 0.12.4-1.1 PDF utilitites (based on libpopple
ii  procps1:3.2.8-9  /proc file system utilities
ii  ssl-cert  1.0.26 simple debconf wrapper for OpenSSL
ii  ttf-freefont  20090104-7 Freefont Serif, Sans and Mono True
ii  zlib1g1:1.2.3.4.dfsg-3   compression library - runtime

Versions of packages cups recommends:
pn  cups-driver-gutenprintnone (no description available)
ii  foomatic-filters  4.0.5-2OpenPrinting printer support - fil
pn  ghostscript-cups  none (no description available)

Versions of packages cups suggests:
ii  cups-bsd  1.4.4-3Common UNIX Printing System(tm) - 
pn  cups-pdf  none (no description available)
ii  cups-ppdc 1.4.4-3Common UNIX Printing System(tm) - 
ii  foomatic-db   20100804-1 OpenPrinting printer support - dat
ii  foomatic-db-engine4.0.4-2OpenPrinting printer support - pro
pn  hplip none (no description available)
ii  smbclient 2:3.4.8~dfsg-2 command-line SMB/CIFS clients for 
ii  udev  161-1   

Bug#586063: fbpanel in FVWM2 doesn't show anymore in FvwmButtons

2010-06-22 Thread Philipp Kolmann

On 06/22/2010 04:59 PM, Dererk wrote:

On -10/01/37 16:59, Philipp Kolmann wrote:
   

*FvwmButtons(3x1,Swallow fbpanel Exec /usr/bin/fbpanel)

This worked for the last years. Now it seems that fbpanel doesn't allow to be 
swallowed anymore. I am not sure if this is a fbpanel or FVWM2 bug.

 

Have you launch fbpanel from a terminal, to see if it throws any error?
   


It launches fine from a terminal and I see the systray then.

even when I restart fvwm it get's started again but just doesn't appear 
in the box as the 4.x version does..


if needed, I can send you .fvwm config files.

thanks
philipp



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



Bug#586063: fbpanel in FVWM2 doesn't show anymore in FvwmButtons

2010-06-16 Thread Philipp Kolmann
Package: fbpanel
Version: 6.0-1
Severity: normal

Hi,

since the update of fbpanel I don't see it anymore in my FvwmButtons.

I have only the trayer in use:

pkolm...@wspk:~$ cat /home/pkolmann/.config/fbpanel/default 
Global {
edge = bottom
allign = left
margin = 0
widthtype = pixel
width = 200
heighttype = pixel
height = 32
roundcorners = false
Transparent = true
TintColor = 0xFF00
Alpha = 255
}

Plugin {
type = tray
} 


in FVWM I add fbpanel as following:

*FvwmButtons(3x1,Swallow fbpanel Exec /usr/bin/fbpanel)

This worked for the last years. Now it seems that fbpanel doesn't allow to be 
swallowed anymore. I am not sure if this is a fbpanel or FVWM2 bug.

Thanks for any help
Philipp


-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686-bigmem (SMP w/4 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages fbpanel depends on:
ii  libatk1.0-0   1.30.0-1   The ATK accessibility toolkit
ii  libc6 2.11.2-1   Embedded GNU C Library: Shared lib
ii  libcairo2 1.8.10-4   The Cairo 2D vector graphics libra
ii  libfontconfig12.8.0-2.1  generic font configuration library
ii  libfreetype6  2.3.11-1   FreeType 2 font engine, shared lib
ii  libglib2.0-0  2.24.1-1   The GLib library of C routines
ii  libgtk2.0-0   2.20.1-1   The GTK+ graphical user interface 
ii  libpango1.0-0 1.28.0-1   Layout and rendering of internatio
ii  librsvg2-common   2.26.3-1   SAX-based renderer library for SVG
ii  libx11-6  2:1.3.3-3  X11 client-side library

fbpanel recommends no packages.

Versions of packages fbpanel suggests:
ii  hicolor-icon-theme0.11-1 default fallback theme for FreeDes
ii  menu  2.1.43 generates programs menu for all me

-- 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#579631: gnutls-bin: gnutls fails to base64 decode cert if header has additional space at EOL

2010-04-29 Thread Philipp Kolmann
Package: gnutls-bin
Version: 2.8.6-1
Severity: normal
Tags: lenny sid

Hi,

I got a new cert for my servers and updated also the certs for exim for TLS.
With dovecot and Apache I never had any issues but exim failed to start tls:

2010-04-29 09:43:26 TLS error on connection from xxx.tuwien.ac.at ()
 [128.130.xx.xx] (cert/key setup: cert=/etc/exim4/exim.crt key=/etc/exim4/exim.k
 ey): Base64 decoding error.

in the end I found out, that the header of the cert has an additional space
after the -BEGIN CERTIFICATE- and before the newline.

gnutls fail then to decode the cert. openssl has no issues with the additinal
blank. Would it be possible to ignore this whitespace in gnutls as well?

thanks
Philipp Kolmann

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-3-686-bigmem (SMP w/4 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages gnutls-bin depends on:
ii  libc6   2.10.2-6 Embedded GNU C Library: Shared lib
ii  libgcrypt11 1.4.5-2  LGPL Crypto library - runtime libr
ii  libgnutls26 2.8.6-1  the GNU TLS library - runtime libr
ii  libreadline66.1-2GNU readline and history libraries
ii  libtasn1-3  2.5-1Manage ASN.1 structures (runtime)
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

gnutls-bin recommends no packages.

gnutls-bin 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#538247: skysentials: Segmentation Fault when run as user

2009-07-24 Thread Philipp Kolmann

Arnaud Battistella wrote:

Package: skysentials
Version: 1.0.1-4
Severity: normal

Skysentials only runs as root... running it as a normal user gives a 
segmentation fault.
Thanks,

  


Hi,

I know about this problem. It has been fixed quite some time ago already 
in SVN Trunk of skysentials and skype4py. sadly, skype4py hasn't 
released the new version, I neither did I.


Maybe the package maintainer can update the package from svn until we 
can release.


philipp



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



Bug#529751: gkrellxmms2 for libxmmsclient5 available in git

2009-07-01 Thread Philipp Kolmann

Hi,

I just tried to compile and use the work-in-progress version of 
gkrellxmms2 from:


http://git.xmms.se/?p=gxmms2.git;a=tree;hb=HEAD

It just worked. It would be very nice, if you could update the debian 
package with this wip git-head so that it becomes useable again.


Thanks a lot
Philipp



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



Bug#524607: Works now again after update of synaptics driver yesterday

2009-06-14 Thread Philipp Kolmann

Mattia Dongili wrote:

On Thu, Jun 11, 2009 at 05:56:29PM +0200, Philipp Kolmann wrote:
  

Mattia Dongili wrote:


On Wed, Jun 10, 2009 at 07:42:43AM +0200, Philipp Kolmann wrote:
  
  
Yesterday the synaptic driver got updated here to 1.1.2-1 and now   
suspend and switching to console works again.

Might that bug be actually a bug in synaptics?



don't know, from which version to which version did you upgrade?
(check in /var/log/dpkg.log)

thanks
  
  

2009-06-09 09:32:45 upgrade xserver-xorg-input-synaptics  1.1.1~git20090510-1 
1.1.2-1



hummm, very unlikely then. There where no significant changes in
upstream code between 1.1.1~git20090510-1 and 1.1.2-1:

b46ea23ab9f8db40880d294733debbe7a5ebcab7 synaptics 1.1.2
d4c64483f75af56f0b989798adb28487a76d926f Add model-specific edges for 
appletouch.
3b2c023ca64c20203973fc3e606ab91dfc65c16f synaptics 1.1.1
553106362973f4938e0a03a4178c97b0ce0ff0f1 synclient: up max value for 
AccelFactor to 1.0

Anyway, does downgrading to the previous version bring the problem back?
  


Is the .deb still somewhere available? On my mirror, I can't find it 
anymore.

Thanks
Philipp



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



Bug#524607: Works now again after update of synaptics driver yesterday

2009-06-11 Thread Philipp Kolmann

Mattia Dongili wrote:

On Wed, Jun 10, 2009 at 07:42:43AM +0200, Philipp Kolmann wrote:
  
Yesterday the synaptic driver got updated here to 1.1.2-1 and now  
suspend and switching to console works again.

Might that bug be actually a bug in synaptics?



don't know, from which version to which version did you upgrade?
(check in /var/log/dpkg.log)

thanks
  
2009-06-09 09:32:45 upgrade xserver-xorg-input-synaptics 
1.1.1~git20090510-1 1.1.2-1
2009-06-09 09:32:45 status half-configured xserver-xorg-input-synaptics 
1.1.1~git20090510-1
2009-06-09 09:32:45 status unpacked xserver-xorg-input-synaptics 
1.1.1~git20090510-1
2009-06-09 09:32:45 status half-installed xserver-xorg-input-synaptics 
1.1.1~git20090510-1
2009-06-09 09:32:45 status half-installed xserver-xorg-input-synaptics 
1.1.1~git20090510-1
2009-06-09 09:32:45 status half-installed xserver-xorg-input-synaptics 
1.1.1~git20090510-1
2009-06-09 09:32:45 status half-installed xserver-xorg-input-synaptics 
1.1.1~git20090510-1

2009-06-09 09:32:45 status unpacked xserver-xorg-input-synaptics 1.1.2-1
2009-06-09 09:32:45 status unpacked xserver-xorg-input-synaptics 1.1.2-1
2009-06-09 09:33:47 configure xserver-xorg-input-synaptics 1.1.2-1 1.1.2-1
2009-06-09 09:33:47 status unpacked xserver-xorg-input-synaptics 1.1.2-1
2009-06-09 09:33:47 status half-configured xserver-xorg-input-synaptics 
1.1.2-1

2009-06-09 09:33:47 status installed xserver-xorg-input-synaptics 1.1.2-1



HTH,
thanks, Philipp



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



Bug#524607: Works now again after update of synaptics driver yesterday

2009-06-09 Thread Philipp Kolmann
Yesterday the synaptic driver got updated here to 1.1.2-1 and now 
suspend and switching to console works again.

Might that bug be actually a bug in synaptics?

Thanks
Philipp



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



Bug#522937: krfb: Asks to accept connection, although configured to not ask

2009-04-07 Thread Philipp Kolmann
Package: krfb
Version: 4:4.2.2-1
Severity: important


Hi,

I just updated my test-workbox to kde 4.2.2 and now have a new krfb running
there. Since I usually don't work on this box I xtighvnc into the box.

After some fiddling around I found the required options to have uninvited vnc
sessions. The only thing still bugging me is that krfb always asks whether to
allow the connection request or not, albeit I have set to no ask in options.

I'd expect that it doesn't ask and just let's me connect.

Thanks
Philipp

-- System Information:
Debian Release: squeeze/sid
  APT prefers oldstable
  APT policy: (500, 'oldstable'), (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

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

Versions of packages krfb depends on:
ii  kdebase-runtime   4:4.2.2-1  runtime components from the offici
ii  kdelibs5  4:4.2.2-2  core libraries for all KDE 4 appli
ii  libc6 2.9-6  GNU C Library: Shared libraries
ii  libqt4-network4.4.3-2Qt 4 network module
ii  libqtcore44.4.3-2Qt 4 core module
ii  libqtgui4 4.4.3-2Qt 4 GUI module
ii  libstdc++64.3.3-7The GNU Standard C++ Library v3
ii  libvncserver0 0.9.3.dfsg.1-1 API to write one's own vnc server
ii  libx11-6  2:1.2-1X11 client-side library
ii  libxdamage1   1:1.1.1-4  X11 damaged region extension libra
ii  libxext6  2:1.0.4-1  X11 miscellaneous extension librar
ii  libxtst6  2:1.0.3-1  X11 Testing -- Resource extension 

krfb recommends no packages.

Versions of packages krfb suggests:
ii  khelpcent 4:4.0.0.really.3.5.10.dfsg.1-2 help center for KDE
ii  krdc  4:4.2.2-1  Remote Desktop Connection client f

-- 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#515503: exim4: dovecot_plain authenticator failed: 435 Unable to authenticate at present: authentication socket read error or premature eof

2009-02-22 Thread Philipp Kolmann

Hi,

afaict this is basically cosmetic error. Is this correct? If yes a fix
for lenny will not happen, the only thing fixable in lenny post-release
are rc-bugs and security issues.

  


well, it's not completely cosmetic. Problem is, that if I enter the 
password wrongly I need to stop the smtp session and start all over 
again. In one session after a wrongly entered password, even if you 
enter the right password, the authentication fails.


I can understand that this is too small for a lenny upload alone, but 
maybe if you can add it, when you do an update.


thanks
Philipp




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



Bug#418975: Still an issue with lenny

2009-02-20 Thread Philipp Kolmann

Good Morning!

Sam Roberts wrote:

On Thu, Feb 19, 2009 at 12:31 PM, Philipp Kolmann phil...@kolmann.at wrote:
  

Now I did. I have not seen this crash with your patch anymore.



You're just lucky (or unlucky?). :-) What's your machine architecture?
  

Machine arch is amd64.

I applied both your patches to libnet1 src and I don't see the bug anymore.


Thanks for the source. It was easy to reproduce.

Attached is a stand-alone reproduction (put in sample/), and a patch.

The patch contains a printf that should be stripped, but it shows how
without the patch, the ICMP checksum algorithm thinks the end of the
packet is the begining of the IP packet. It uses random data after the
packet as the ip header length, calculates the checksum over that
garbage, then writes the checksum to what is essentially a random
offset, depending on what it read as that ip header length.

Anyhow, you might want to try the sample code with/without the patch,
to make sure its right.

And now I can see why you though the ip_offset is from the beginning
of the packet. There isn't any aligner with raw link6, and since IPv6
left the ip_offset as zero, and your IPv6 header is always at the
front of the packet, it would look like ip_offset was from the front
of the packet, even though its supposed to be from the back.


with both patches applied:

r...@test33-12:~/test# ./test_ipv6_icmpv4
 tag 1 flags 1 type   icmpv4 echo header/0x6 buf 0x1e49210 b_len 32 
h_len 32 ip_offset 72, copied 32
 tag 2 flags 0 type  ipv6 header/0x2f buf 0x1e49280 b_len 40 
h_len 40 ip_offset 72, copied 40

 link_offset 0 aligner 0 total_size 72 nblocks 2
pkt 0x1e492b0 aligner 0 totalsize 72 tag 1 ip_offset 72 h_len 32

00  0060  2000 ff3a    
10         
20     0100

00  0088 eef6 0020     
10      0102 0c00 da29 67ce
pkt 0x1e492b0 aligner 0 totalsize 72 tag 1 ip_offset 72 h_len 32



without your last patch:

This GDB was configured as x86_64-linux-gnu...
(gdb) run
Starting program: /root/test/test_ipv6_icmpv4
 tag 1 flags 1 type   icmpv4 echo header/0x6 buf 0x206f210 b_len 32 
h_len 32 ip_offset  0, copied 32
 tag 2 flags 0 type  ipv6 header/0x2f buf 0x206f280 b_len 40 
h_len 40 ip_offset  0, copied 40

 link_offset 0 aligner 0 total_size 72 nblocks 2

00  0060  2000 ff3a    
10         
20     0100

00  0088  0020     
10      0102 0c00 da29 67ce
*** glibc detected *** /root/test/test_ipv6_icmpv4: free(): invalid next 
size (fast): 0x0206f2b0 ***

=== Backtrace: =
/lib/libc.so.6[0x7f858b678948]
/lib/libc.so.6(cfree+0x76)[0x7f858b67aa56]
/root/test/test_ipv6_icmpv4[0x400e89]
/lib/libc.so.6(__libc_start_main+0xe6)[0x7f858b6231a6]
/root/test/test_ipv6_icmpv4[0x4009f9]
=== Memory map: 
0040-00402000 r-xp  08:01 10069  
/root/test/test_ipv6_icmpv4
00601000-00602000 rw-p 1000 08:01 10069  
/root/test/test_ipv6_icmpv4
0206f000-0209 rw-p 0206f000 00:00 0  
[heap]

7f858400-7f8584021000 rw-p 7f858400 00:00 0
7f8584021000-7f858800 ---p 7f8584021000 00:00 0
7f858b3ee000-7f858b404000 r-xp  08:01 24572  
/lib/libgcc_s.so.1
7f858b404000-7f858b604000 ---p 00016000 08:01 24572  
/lib/libgcc_s.so.1
7f858b604000-7f858b605000 rw-p 00016000 08:01 24572  
/lib/libgcc_s.so.1
7f858b605000-7f858b74f000 r-xp  08:01 24546  
/lib/libc-2.7.so
7f858b74f000-7f858b94e000 ---p 0014a000 08:01 24546  
/lib/libc-2.7.so
7f858b94e000-7f858b951000 r--p 00149000 08:01 24546  
/lib/libc-2.7.so
7f858b951000-7f858b953000 rw-p 0014c000 08:01 24546  
/lib/libc-2.7.so

7f858b953000-7f858b958000 rw-p 7f858b953000 00:00 0
7f858b958000-7f858b96d000 r-xp  08:01 65645  
/usr/lib/libnet.so.1.3.0
7f858b96d000-7f858bb6d000 ---p 00015000 08:01 65645  
/usr/lib/libnet.so.1.3.0
7f858bb6d000-7f858bb6e000 rw-p 00015000 08:01 65645  
/usr/lib/libnet.so.1.3.0

7f858bb6e000-7f858bb7 rw-p 7f858bb6e000 00:00 0
7f858bb7-7f858bb8c000 r-xp  08:01 24549  
/lib/ld-2.7.so

7f858bd8-7f858bd82000 rw-p 7f858bd8 00:00 0
7f858bd87000-7f858bd8b000 rw-p 7f858bd87000 00:00 0
7f858bd8b000-7f858bd8d000 rw-p 0001b000 08:01 24549  
/lib/ld-2.7.so
7fff93d78000-7fff93d8d000 rw-p 7ffea000 00:00 0  
[stack]
7fff93dff000-7fff93e0 r-xp 7fff93dff000 00:00 0  
[vdso]
ff60-ff601000 r-xp  00:00 0  
[vsyscall]


Program received signal SIGABRT, Aborted

Bug#418975: Still an issue with lenny

2009-02-19 Thread Philipp Kolmann

Hi @ll,

I have just upgraded to Lenny and wanted to set an IPv6 adress via 
heartbeat's IPv6addr tool:


scs1:/etc/heartbeat/resource.d# ./IPv6addr 2001:629:3800:33::122 start
*** glibc detected *** /usr/lib/ocf/resource.d//heartbeat/IPv6addr: 
free(): invalid next size (fast): 0x006042b0 ***

=== Backtrace: =
/lib/libc.so.6[0x2b1f3250d948]
/lib/libc.so.6(cfree+0x76)[0x2b1f3250fa56]
/usr/lib/libnet.so.1(libnet_write+0x10b)[0x2b1f31c0cb6b]
/usr/lib/ocf/resource.d//heartbeat/IPv6addr[0x401fce]
/usr/lib/ocf/resource.d//heartbeat/IPv6addr[0x402710]
/lib/libc.so.6(__libc_start_main+0xe6)[0x2b1f324b81a6]
/usr/lib/ocf/resource.d//heartbeat/IPv6addr[0x401539]
=== Memory map: 
0040-00404000 r-xp  09:00 1824348
/usr/lib/ocf/resource.d/heartbeat/IPv6addr
00603000-00604000 rw-p 3000 09:00 1824348
/usr/lib/ocf/resource.d/heartbeat/IPv6addr
00604000-00625000 rw-p 00604000 00:00 0  
[heap]
2b1f314ef000-2b1f3150b000 r-xp  09:00 1910263
/lib/ld-2.7.so

2b1f3150b000-2b1f3150e000 rw-p 2b1f3150b000 00:00 0
2b1f3170a000-2b1f3170c000 rw-p 0001b000 09:00 1910263
/lib/ld-2.7.so
2b1f3170c000-2b1f31738000 r-xp  09:00 1705902
/usr/lib/libplumb.so.1.0.0
2b1f31738000-2b1f31938000 ---p 0002c000 09:00 1705902
/usr/lib/libplumb.so.1.0.0
2b1f31938000-2b1f3193a000 rw-p 0002c000 09:00 1705902
/usr/lib/libplumb.so.1.0.0

2b1f3193a000-2b1f3193b000 rw-p 2b1f3193a000 00:00 0
2b1f3193b000-2b1f319fc000 r-xp  09:00 1702678
/usr/lib/libglib-2.0.so.0.1600.6
2b1f319fc000-2b1f31bfb000 ---p 000c1000 09:00 1702678
/usr/lib/libglib-2.0.so.0.1600.6
2b1f31bfb000-2b1f31bfd000 rw-p 000c 09:00 1702678
/usr/lib/libglib-2.0.so.0.1600.6
2b1f31bfd000-2b1f31c13000 r-xp  09:00 1694160
/usr/lib/libnet.so.1.3.0
2b1f31c13000-2b1f31d13000 ---p 00016000 09:00 1694160
/usr/lib/libnet.so.1.3.0
2b1f31d13000-2b1f31d14000 rw-p 00016000 09:00 1694160
/usr/lib/libnet.so.1.3.0

2b1f31d14000-2b1f31d16000 rw-p 2b1f31d14000 00:00 0
2b1f31d16000-2b1f31d25000 r-xp  09:00 1905849
/lib/libbz2.so.1.0.4
2b1f31d25000-2b1f31f24000 ---p f000 09:00 1905849
/lib/libbz2.so.1.0.4
2b1f31f24000-2b1f31f26000 rw-p e000 09:00 1905849
/lib/libbz2.so.1.0.4

2b1f31f26000-2b1f31f27000 rw-p 2b1f31f26000 00:00 0
2b1f31f27000-2b1f31f3d000 r-xp  09:00 1697969
/usr/lib/libz.so.1.2.3.3
2b1f31f3d000-2b1f3213d000 ---p 00016000 09:00 1697969
/usr/lib/libz.so.1.2.3.3
2b1f3213d000-2b1f3213e000 rw-p 00016000 09:00 1697969
/usr/lib/libz.so.1.2.3.3
2b1f3213e000-2b1f3229 r-xp  09:00 1694808
/usr/lib/libxml2.so.2.6.32
2b1f3229-2b1f3248f000 ---p 00152000 09:00 1694808
/usr/lib/libxml2.so.2.6.32
2b1f3248f000-2b1f32499000 rw-p 00151000 09:00 1694808
/usr/lib/libxml2.so.2.6.32

2b1f32499000-2b1f3249a000 rw-p 2b1f32499000 00:00 0
2b1f3249a000-2b1f325e4000 r-xp  09:00 1909044
/lib/libc-2.7.so
2b1f325e4000-2b1f327e3000 ---p 0014a000 09:00 1909044
/lib/libc-2.7.so
2b1f327e3000-2b1f327e6000 r--p 00149000 09:00 1909044
/lib/libc-2.7.so
2b1f327e6000-2b1f327e8000 rw-p 0014c000 09:00 1909044
/lib/libc-2.7.so

2b1f327e8000-2b1f327ee000 rw-p 2b1f327e8000 00:00 0
2b1f327ee000-2b1f327f1000 r-xp  09:00 1905788
/lib/libuuid.so.1.2
2b1f327f1000-2b1f329f1000 ---p 3000 09:00 1905788
/lib/libuuid.so.1.2
2b1f329f1000-2b1f329f2000 rw-p 3000 09:00 1905788
/lib/libuuid.so.1.2
2b1f329f2000-2b1f329fd000 r-xp  09:00 1909518
/lib/libpam.so.0.81.12
2b1f329fd000-2b1f32bfc000 ---p b000 09:00 1909518
/lib/libpam.so.0.81.12
2b1f32bfc000-2b1f32bfd000 rw-p a000 09:00 1909518
/lib/libpam.so.0.81.12
2b1f32bfd000-2b1f32c05000 r-xp  09:00 1910266
/lib/librt-2.7.so
2b1f32c05000-2b1f32e04000 ---p 8000 09:00 1910266
/lib/librt-2.7.so
2b1f32e04000-2b1f32e06000 rw-p 7000 09:00 1910266
/lib/librt-2.7.so

2b1f32e06000-2b1f32e07000 rw-p 2b1f32e06000 00:00 0
2b1f32e07000-2b1f32e09000 r-xp  09:00 1910264
/lib/libdl-2.7.so
2b1f32e09000-2b1f33009000 ---p 2000 09:00 1910264
/lib/libdl-2.7.so
2b1f33009000-2b1f3300b000 rw-p 2000 09:00 1910264
/lib/libdl-2.7.so
2b1f3300b000-2b1f33012000 r-xp  09:00 1694802
/usr/lib/libltdl.so.3.1.6
2b1f33012000-2b1f33211000 

Bug#418975: Still an issue with lenny

2009-02-19 Thread Philipp Kolmann

Sam Roberts wrote:

On Thu, Feb 19, 2009 at 4:47 AM, Philipp Kolmann phil...@kolmann.at wrote:
  

I have just upgraded to Lenny and wanted to set an IPv6 adress via
heartbeat's IPv6addr tool:


Did you apply my patch?
  


Now I did. I have not seen this crash with your patch anymore.


scs1:/etc/heartbeat/resource.d# ./IPv6addr 2001:629:3800:33::122 start
*** glibc detected *** /usr/lib/ocf/resource.d//heartbeat/IPv6addr: free():
invalid next size (fast): 0x006042b0 ***
=== Backtrace: =
/lib/libc.so.6[0x2b1f3250d948]
/lib/libc.so.6(cfree+0x76)[0x2b1f3250fa56]
/usr/lib/libnet.so.1(libnet_write+0x10b)[0x2b1f31c0cb6b]



This isn't enough information to debug.

I can give you information about how to modify the libnet source to
more clearly see what is happening if my patch doesn' work for you. I
fixed ipv4 related code, but your executable name suggests you're
using ipv6, so the specific patch might not help.

Easiest for me would be if you can show me how to reproduce this, or
where the code is thats constructing the pblock chain being passed to
libnet_write.
  


The program triggering this bug is IPv6addr:

http://hg.vergenet.net/linux-ha/dev/file/774ee922abe7/resources/OCF/IPv6addr.c

with gdb I see the following BT:
#0  0x7fbcaa244ed5 in raise () from /lib/libc.so.6
#1  0x7fbcaa2463f3 in abort () from /lib/libc.so.6
#2  0x7fbcaa2813a8 in ?? () from /lib/libc.so.6
#3  0x7fbcaa286948 in ?? () from /lib/libc.so.6
#4  0x7fbcaa288a56 in free () from /lib/libc.so.6
#5  0x7fbcab2e1b6b in libnet_write () from /usr/lib/libnet.so.1
#6  0x00401fce in send_ua (src_ip=0x7fffb33f5560, if_name=value 
optimized out) at IPv6addr.c:418
#7  0x00402710 in main (argc=value optimized out, argv=value 
optimized out) at IPv6addr.c:309



send_ua is here:
/* Send an unsolicited advertisement packet
* Please refer to rfc2461
*/
int
send_ua(struct in6_addr* src_ip, char* if_name)
{
   int status = -1;
   libnet_t *l;
   char errbuf[LIBNET_ERRBUF_SIZE];

   struct libnet_in6_addr dst_ip;
   struct libnet_ether_addr *mac_address;
   char payload[24];


   if ((l=libnet_init(LIBNET_RAW6, if_name, errbuf)) == NULL) {
   cl_log(LOG_ERR, libnet_init failure on %s, if_name);
   goto err;
   }

   mac_address = libnet_get_hwaddr(l);
   if (!mac_address) {
   cl_log(LOG_ERR, libnet_get_hwaddr: %s, errbuf);
   goto err;
   }

   dst_ip = libnet_name2addr6(l, BCAST_ADDR, LIBNET_DONT_RESOLVE);

   memcpy(payload,src_ip-s6_addr,16);
   payload[16] = 2; /* 2 for Target Link-layer Address */
   payload[17] = 1; /* The length of the option */
   memcpy(payload+18,mac_address-ether_addr_octet, 6);

   libnet_seed_prand(l);
   /* 0x2000: RSO */
   libnet_build_icmpv4_echo(136,0,0,0x2000,0,(u_int8_t *)payload
   ,sizeof(payload), l, LIBNET_PTAG_INITIALIZER);
   libnet_build_ipv6(0,0,LIBNET_ICMPV6_H + 
sizeof(payload),IPPROTO_ICMP6,

   255,*(struct libnet_in6_addr*)src_ip,
   dst_ip,NULL,0,l,0);

   if (libnet_write(l) == -1)

here happens the crash

   {
   cl_log(LOG_ERR, libnet_write: %s, libnet_geterror(l));
   goto err;
   }

   status = 0;
err:
   libnet_destroy(l);
   return status;
}


thanks
Philipp



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



Bug#515966: gdm has wrong keymap

2009-02-18 Thread Philipp Kolmann
Package: gdm
Version: 2.20.7-5
Severity: normal

Hi,

I had to reboot my sid box today and suddenly couldn't login anymore with gdm.
It appears that gdm suddenly has switched to english keymap. In xorg.conf I
have:

Section InputDevice
Identifier  Generic Keyboard
#Driver evdev
Driver  kbd
Option  CoreKeyboard
#Option  Device/dev/input/event1
Option  XkbRules  xorg
#Option XkbModel  evdev
Option  XkbModel  pc105
Option  XkbLayout de
Option  XkbVariantnodeadkeys
EndSection

It used to be german layout but now it's english. After login, the german
layout is back again.

Do you have any clue what to set?

thanks
Philipp

-- System Information:
Debian Release: 5.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-1-686-bigmem (SMP w/4 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages gdm depends on:
ii  adduser3.110 add and remove users and groups
ii  aterm [x-terminal-emul 1.0.1-4   Afterstep XVT - a VT102 emulator f
ii  debconf [debconf-2.0]  1.5.24Debian configuration management sy
ii  eterm [x-terminal-emul 0.9.5-2   Enlightened Terminal Emulator
ii  fvwm [x-window-manager 1:2.5.26-2F(?) Virtual Window Manager
ii  gksu   2.0.0-8   graphical frontend to su
ii  gnome-session [x-sessi 2.22.3-2  The GNOME 2 Session Manager
ii  gnome-terminal [x-term 2.22.3-3  The GNOME 2 terminal emulator appl
ii  ion2 [x-window-manager 20040729-3Keyboard-friendly window manager w
ii  ion3 [x-window-manager 20090110-1tiling tabbed window manager desig
ii  kde-window-manager [x- 4:4.1.1-1 the KDE 4 window manager (KWin)
ii  konsole [x-terminal-em 4:4.2.0-1 X terminal emulator for KDE 4
ii  libart-2.0-2   2.3.20-2  Library of functions for 2D graphi
ii  libatk1.0-01.22.0-1  The ATK accessibility toolkit
ii  libattr1   1:2.4.43-2Extended attribute shared library
ii  libc6  2.8+20080809-1GNU C Library: Shared libraries
ii  libcairo2  1.8.6-2   The Cairo 2D vector graphics libra
ii  libdbus-1-31.2.12-1  simple interprocess messaging syst
ii  libdbus-glib-1-2   0.80-3simple interprocess messaging syst
ii  libdmx11:1.0.2-3 X11 Distributed Multihead extensio
ii  libfontconfig1 2.6.0-3   generic font configuration library
ii  libfreetype6   2.3.7-2   FreeType 2 font engine, shared lib
ii  libglade2-01:2.6.3-1 library to load .glade files at ru
ii  libglib2.0-0   2.18.4-2  The GLib library of C routines
ii  libgnomecanvas2-0  2.20.1.1-1A powerful object-oriented display
ii  libgtk2.0-02.12.12-1 The GTK+ graphical user interface 
ii  libpam-modules 1.0.1-5   Pluggable Authentication Modules f
ii  libpam-runtime 1.0.1-5   Runtime support for the PAM librar
ii  libpam0g   1.0.1-5   Pluggable Authentication Modules l
ii  libpango1.0-0  1.21.3-1  Layout and rendering of internatio
ii  librsvg2-2 2.22.2-4  SAX-based renderer library for SVG
ii  librsvg2-common2.22.2-4  SAX-based renderer library for SVG
ii  libselinux12.0.65-5  SELinux shared libraries
ii  libwrap0   7.6.q-16  Wietse Venema's TCP wrappers libra
ii  libx11-6   2:1.1.5-2 X11 client-side library
ii  libxau61:1.0.4-2 X11 authorisation library
ii  libxdmcp6  1:1.0.2-3 X11 Display Manager Control Protoc
ii  libxext6   2:1.0.4-1 X11 miscellaneous extension librar
ii  libxi6 2:1.2.0-2 X11 Input extension library
ii  libxinerama1   2:1.0.3-2 X11 Xinerama extension library
ii  libxml22.6.32.dfsg-5 GNOME XML library
ii  lsb-base   3.2-20Linux Standard Base 3.2 init scrip
ii  metacity [x-window-man 1:2.22.0-2A lightweight GTK2 based Window Ma
ii  sawfish [x-window-mana 1:1.3.3-1 a window manager for X11
ii  twm [x-window-manager] 1:1.0.4-2 Tab window manager
ii  xterm [x-terminal-emul 241-1 X terminal emulator
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

Versions of packages gdm recommends:
ii  dialog1.1-20080819-1 Displays user-friendly dialog boxe
ii  gdm-themes0.6.2  Themes for the GNOME Display Manag
ii  whiptail  0.52.2-11.3Displays 

Bug#515966: Locale

2009-02-18 Thread Philipp Kolmann

Hi,

as my system locale I use

$ echo $LANG
C
$


so it seems that gdm now prefers the LANG for it's keyboard setting.

Philipp



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



Bug#515662: heartbeat: IPv6addr fails on lenny

2009-02-17 Thread Philipp Kolmann

Hi Simon,

with some help of a collegue at work I looked into the problem more in 
detail.


In row 486 following of heartbeat-2.1.3/resources/OCF/IPv6addr.c the 
mask is determined. We have played around quite some time. I have a plen 
of 0x40 (64) and so it should shift to 0 in row 490. Somehow if s is 32 
in this line, it doesn't shift at all and the value stays at 0x.


More desturbing, if I specify s=32; above this line by hand it works. 
Maybe the compiler is optimizing something here, but removing -O2 from 
the compiler didn't solve this mystery.


I am running this on amd64. I am not sure if it is an amd64 bug or 
something.


I have solved this mystery by the following patch for now:

--- IPv6addr.c_ORIG 2009-02-17 14:28:45.0 +0100
+++ IPv6addr.c 2009-02-17 14:29:24.0 +0100
@@ -487,7 +487,10 @@
n = plen / 32;
memset(mask.s6_addr32 + n + 1, 0, (3 - n) * 4);
s = 32 - plen % 32;
- mask.s6_addr32[n] = 0x  s;
+ if (s == 32)
+ mask.s6_addr32[n] = 0x0;
+ else
+ mask.s6_addr32[n] = 0x  s;
mask.s6_addr32[n] = htonl(mask.s6_addr32[n]);
}

I know it's ugly, but it solves this issue for me.

If you come up with a proper solution, I'd really appreciate it.

thanks
Philipp



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



Bug#515662: Info on shifting 32 bit on a 32bit value

2009-02-17 Thread Philipp Kolmann

Hi,

we found some discussion about this issue here:

http://www.velocityreviews.com/forums/t283343-shifting-bits-shift-32-bits-on-32-bit-int.html

In post #4 it reads:
The behaviour of shifts defined only if the value of the right operand 
is less than the number of bits in the left operand. So shifting a 
32-bit value by 32 or more is undefined...


further info in #7:

Better yet, read the first part of section 5.8 of the ISO/IEC 14882:2003
standard:

The behavior is undefined if the right operand is negative,
or greater than or equal to the length in bits of the
promoted left operand.

So it seems that my patch is the proper fix in the end after all. 
Attached as file, since BT distroyed the formatting.


Thanks
Philipp
--- IPv6addr.c_ORIG	2009-02-17 14:28:45.0 +0100
+++ IPv6addr.c	2009-02-17 14:29:24.0 +0100
@@ -487,7 +487,10 @@
 			n = plen / 32;
 			memset(mask.s6_addr32 + n + 1, 0, (3 - n) * 4);
 			s = 32 - plen % 32;
-			mask.s6_addr32[n] = 0x  s;
+			if (s == 32) 
+mask.s6_addr32[n] = 0x0;
+			else
+mask.s6_addr32[n] = 0x  s;
 			mask.s6_addr32[n] = htonl(mask.s6_addr32[n]);
 		}
 


Bug#416266: Still an issue with lenny

2009-02-17 Thread Philipp Kolmann

Hi,

I just wanted to followup on this BR.

I updated the server to lenny (freeradius 2.0.4+dfsg-6) and I still have 
the same issue.


LD_PRELOAD=/usr/lib/libperl.so.5.10 freeradius -X

resolves the issue.

thanks
Philipp



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



Bug#515662: Info on shifting 32 bit on a 32bit value

2009-02-17 Thread Philipp Kolmann

Simon Horman wrote:

--- IPv6addr.c_ORIG 2009-02-17 14:28:45.0 +0100
+++ IPv6addr.c  2009-02-17 14:29:24.0 +0100
@@ -487,7 +487,10 @@
n = plen / 32;
memset(mask.s6_addr32 + n + 1, 0, (3 - n) * 4);
s = 32 - plen % 32;
-   mask.s6_addr32[n] = 0x  s;
+			if (s == 32) 
+mask.s6_addr32[n] = 0x0;

+   else
+   mask.s6_addr32[n] = 0x  s;
mask.s6_addr32[n] = htonl(mask.s6_addr32[n]);
}
 


this looks like a good fix to me, how well tested is it?

I'm embarrassed to say that this problem was introduced by me the last time
that I tried to fix this code [1].

http://hg.vergenet.net/linux-ha/dev/rev/774ee922abe7

  


We tested it yesterday and I switched my cluster to the lenny node 
yesterday. This patch works for me in my production environment and I 
plan to use it. It would be great if you could get this into 5.0.1.


Since I only have one /64 network, I can't tell about other masks, but 
since those shouldn't interfere with my change, it shouldn't do any harm.


Thanks

Philipp



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



Bug#515662: heartbeat: IPv6addr fails on lenny

2009-02-16 Thread Philipp Kolmann
Package: heartbeat
Version: 2.1.3-6lenny0
Severity: normal

Hi Simon,

it seems I am the one unlucky guy who uses heartbeat with IPv6

I started updateing my cluster today to lenny and IPv6addr fails again:

scs1:/etc/heartbeat/resource.d# ./IPv6addr 2001:629:3800:33:0:0:0:122 start
2009/02/16_20:19:50 ERROR:  Generic error
ERROR:  Generic error


I dug into the source of IPv6addr.c and it seems that the mask is too long and 
therefore the scan_if isn't matching.

I have a 2001:629:3800:33::/64 subnet but it seems from my debug output that 
IPv6addr tries to match /96 bits of the IP address which fails.

My C knowledge is sadly too little to fix this myself.

I would greatly be happy if you could help me with that.

thanks
Philipp

-- System Information:
Debian Release: 5.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.18-6-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages heartbeat depends on:
ii  adduser3.110 add and remove users and groups
ii  gawk   1:3.1.5.dfsg-4.1  GNU awk, a pattern scanning and pr
ii  iproute20080725-2networking and traffic control too
ii  iputils-ping   3:20071127-1  Tools to test the reachability of 
ii  libbz2-1.0 1.0.5-1   high-quality block-sorting file co
ii  libc6  2.7-18GNU C Library: Shared libraries
ii  libcurl3   7.18.2-8  Multi-protocol file transfer libra
ii  libglib2.0-0   2.16.6-1  The GLib library of C routines
ii  libgnutls262.4.2-6   the GNU TLS library - runtime libr
ii  libltdl3   1.5.26-4  A system independent dlopen wrappe
ii  libncurses55.7+20081213-1shared libraries for terminal hand
hi  libnet11.1.2.1-2 library for the construction and h
ii  libopenhpi22.12.0-1  OpenHPI libraries (runtime and sup
ii  libpam-runtime 1.0.1-5   Runtime support for the PAM librar
ii  libpam0g   1.0.1-5   Pluggable Authentication Modules l
ii  libsnmp15  5.4.1~dfsg-12 SNMP (Simple Network Management Pr
ii  libssl0.9.80.9.8g-15 SSL shared libraries
ii  libuuid1   1.41.3-1  universally unique id library
ii  libwrap0   7.6.q-16  Wietse Venema's TCP wrappers libra
ii  libxml22.6.32.dfsg-5 GNOME XML library
ii  libxml2-utils  2.6.32.dfsg-5 XML utilities
ii  mawk   1.3.3-11.1a pattern scanning and text proces
ii  psmisc 22.6-1Utilities that use the proc filesy
ii  python 2.5.2-3   An interactive high-level object-o
ii  python-central 0.6.8 register and build utility for Pyt
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

Versions of packages heartbeat recommends:
ii  iptables  1.4.2-6administration tools for packet fi
ii  logrotate 3.7.1-5Log rotation utility
ii  sysklogd [system-log-daemon]  1.5-5  System Logging Daemon

heartbeat 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#515662: heartbeat: IPv6addr fails on lenny

2009-02-16 Thread Philipp Kolmann

Simon Horman wrote:

On Mon, Feb 16, 2009 at 08:22:18PM +0100, Philipp Kolmann wrote:
  

Package: heartbeat
Version: 2.1.3-6lenny0
Severity: normal

Hi Simon,

it seems I am the one unlucky guy who uses heartbeat with IPv6

I started updateing my cluster today to lenny and IPv6addr fails again:

scs1:/etc/heartbeat/resource.d# ./IPv6addr 2001:629:3800:33:0:0:0:122 start
2009/02/16_20:19:50 ERROR:  Generic error
ERROR:  Generic error


I dug into the source of IPv6addr.c and it seems that the mask is too long and 
therefore the scan_if isn't matching.

I have a 2001:629:3800:33::/64 subnet but it seems from my debug output that 
IPv6addr tries to match /96 bits of the IP address which fails.

My C knowledge is sadly too little to fix this myself.

I would greatly be happy if you could help me with that.



Hi Philipp,

that is very regrettable. I seem to recall spending some time
on a very similar bug quite a while back, but I guess that
something has slipped through the cracks. I'll try and track it down.

Did you have a previous heartbeat setup that worked in this case?
If only for bug tracking purposes it would be nice to know.
  


Hi Simon,

yea, I have only upgraded one server of the cluster. So I have etch 
heartbeat still installed on the currenlty active clusterserver.


Etch heartbeat worked after your help 2 years ago flawlessly ;)

If needed I can also setup an etch cluster to help you...

Thanks
Philipp



Bug#515279: mdadm fails to reassemble RAID1 after upgrade etch-lenny

2009-02-15 Thread Philipp Kolmann
Package: mdadm
Version: 2.6.7.2-1
Severity: normal

Hi,

I just upgraded one of my servers from etch to lenny. Everything went well but
the restart. It hung while starting the root-raid1 and couldn't find any raid
devices anymore.

I managed to bring the server back up with bulding the raid with specifying
the partitons.

I see now that if I do a mdadm --examine --scan that it doens't show any
raidsets anymore. If I do a mdadm --examine --scan --config=partitions it
works ok.

r...@wkx:~# mdadm --examine --scan
r...@wkx:~# mdadm --examine --scan --config=partitions
ARRAY /dev/md0 level=raid1 num-devices=2
UUID=f19f0a12:58279226:0e55279a:bf9f3d58

I am not sure what went wrong here. I'd be very glad if you could help me
here.

thanks
Philipp


-- Package-specific info:
--- mount output
/dev/md0 on / type ext3 (rw,errors=remount-ro)
tmpfs on /lib/init/rw type tmpfs (rw,nosuid,mode=0755)
proc on /proc type proc (rw,noexec,nosuid,nodev)
sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
procbususb on /proc/bus/usb type usbfs (rw)
udev on /dev type tmpfs (rw,mode=0755)
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=620)
/dev/sdb1 on /exchangebackup type ext3 (rw)

--- mdadm.conf
# mdadm.conf
#
# Please refer to mdadm.conf(5) for information about this file.
#

# by default, scan all partitions (/proc/partitions) for MD superblocks.
# alternatively, specify devices to scan, using wildcards if desired.
DEVICE /dev/hd[a-z] /dev/sd*[a-z]

# auto-create devices with Debian standard permissions
CREATE owner=root group=disk mode=0660 auto=yes

# automatically tag new arrays as belonging to the local system
HOMEHOST system

# instruct the monitoring daemon where to send mail alerts
MAILADDR root

# definitions of existing MD arrays
ARRAY /dev/md0 level=raid1 num-devices=2 
UUID=f19f0a12:58279226:0e55279a:bf9f3d58
devices=/dev/sda1,/dev/sdc1

--- /proc/mdstat:
Personalities : [raid1] 
md0 : active raid1 sda1[0] sdc1[1]
  72605632 blocks [2/2] [UU]
  
unused devices: none

--- /proc/partitions:
major minor  #blocks  name

   8 0   72613056 sda
   8 1   72605736 sda1
   816  293036184 sdb
   817  293033601 sdb1
   832   72613056 sdc
   833   72605736 sdc1
   9 0   72605632 md0

--- initrd.img-2.6.26-1-686:
27838 blocks
etc/mdadm
etc/mdadm/mdadm.conf
lib/modules/2.6.26-1-686/kernel/drivers/md/md-mod.ko
lib/modules/2.6.26-1-686/kernel/drivers/md/raid1.ko
lib/modules/2.6.26-1-686/kernel/drivers/md/linear.ko
lib/modules/2.6.26-1-686/kernel/drivers/md/multipath.ko
lib/modules/2.6.26-1-686/kernel/drivers/md/raid0.ko
lib/modules/2.6.26-1-686/kernel/drivers/md/raid456.ko
lib/modules/2.6.26-1-686/kernel/drivers/md/raid10.ko
sbin/mdadm
scripts/local-top/mdadm

--- /proc/modules:
raid1 18016 1 - Live 0xf881a000
md_mod 67036 2 raid1, Live 0xf882a000

--- /var/log/syslog:
Feb 15 13:04:08 wkx kernel: md: md driver 0.90.3 MAX_MD_DEVS=256, MD_SB_DISKS=27
Feb 15 13:04:08 wkx kernel: md: bitmap version 4.39
Feb 15 13:04:08 wkx kernel: md: raid1 personality registered for level 1
Feb 15 13:04:08 wkx kernel: md: md0 stopped.
Feb 15 13:04:08 wkx kernel: md: bindsdc1
Feb 15 13:04:08 wkx kernel: md: bindsda1
Feb 15 13:11:19 wkx kernel: md: md driver 0.90.3 MAX_MD_DEVS=256, MD_SB_DISKS=27
Feb 15 13:11:19 wkx kernel: md: bitmap version 4.39
Feb 15 13:11:19 wkx kernel: md: raid1 personality registered for level 1
Feb 15 13:11:19 wkx kernel: md: md0 stopped.
Feb 15 13:11:19 wkx kernel: md: bindsdc1
Feb 15 13:11:19 wkx kernel: md: bindsda1
Feb 15 13:35:37 wkx kernel: md: md driver 0.90.3 MAX_MD_DEVS=256, MD_SB_DISKS=27
Feb 15 13:35:37 wkx kernel: md: bitmap version 4.39
Feb 15 13:35:37 wkx kernel: md: raid1 personality registered for level 1
Feb 15 13:35:37 wkx kernel: md: md0 stopped.
Feb 15 13:35:37 wkx kernel: md: bindsdc1
Feb 15 13:35:37 wkx kernel: md: bindsda1
Feb 15 13:40:22 wkx kernel: md: md driver 0.90.3 MAX_MD_DEVS=256, MD_SB_DISKS=27
Feb 15 13:40:22 wkx kernel: md: bitmap version 4.39
Feb 15 13:40:22 wkx kernel: md: raid1 personality registered for level 1
Feb 15 13:40:22 wkx kernel: md: md0 stopped.
Feb 15 13:40:22 wkx kernel: md: bindsdc1
Feb 15 13:40:22 wkx kernel: md: bindsda1

--- volume detail:

--- /proc/cmdline
BOOT_IMAGE=.26_PK ro root=900

--- lilo:
lilo.conf file not readable.


-- System Information:
Debian Release: 5.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-1-686 (SMP w/2 CPU cores)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages mdadm depends on:
ii  debconf   1.5.24 Debian configuration management sy
ii  libc6 2.7-18 GNU C Library: Shared libraries
ii  lsb-base  3.2-20 Linux Standard Base 3.2 init scrip
ii  makedev   2.3.1-88   creates device files in /dev
ii  udev  0.125-7

Bug#482404: exim4-daemon-heavy: Issues happened after etch-lenny upgrade

2009-02-15 Thread Philipp Kolmann
Package: exim4-daemon-heavy
Version: 4.69-9
Followup-For: Bug #482404

Hi,

I just upgraded one of my servers and got hit by this bug.

I just wanted to confirm, that removing nearly all ca-certs solved this issue
for now for me.

I hope for a proper fix with 5.0.1.

Thanks
Philipp

-- Package-specific info:
Exim version 4.69 #1 built 30-Sep-2008 18:26:44
Copyright (c) University of Cambridge 2006
Berkeley DB: Berkeley DB 4.6.21: (September 27, 2007)
Support for: crypteq iconv() IPv6 PAM Perl Expand_dlfunc GnuTLS 
move_frozen_messages Content_Scanning Old_Demime
Lookups: lsearch wildlsearch nwildlsearch iplsearch cdb dbm dbmnz dnsdb dsearch 
ldap ldapdn ldapm mysql nis nis0 passwd pgsql sqlite
Authenticators: cram_md5 cyrus_sasl dovecot plaintext spa
Routers: accept dnslookup ipliteral iplookup manualroute queryprogram redirect
Transports: appendfile/maildir/mailstore/mbx autoreply lmtp pipe smtp
Fixed never_users: 0
Size of off_t: 8
Configuration file is /var/lib/exim4/config.autogenerated
# /etc/exim4/update-exim4.conf.conf
#
# Edit this file and /etc/mailname by hand and execute update-exim4.conf
# yourself or use 'dpkg-reconfigure exim4-config'
#
# Please note that this is _not_ a dpkg-conffile and that automatic changes
# to this file might happen. The code handling this will honor your local
# changes, so this is usually fine, but will break local schemes that mess
# around with multiple versions of the file.
#
# update-exim4.conf uses this file to determine variable values to replace
# the DEBCONFsomethingDEBCONF strings in the configuration template files.
#
# Most settings found in here do have corresponding questions in the
# Debconf configuration, but not all of them.
#
# This is a Debian specific file

dc_eximconfig_configtype='internet'
dc_other_hostnames='eacpc4.tuwien.ac.at'
dc_local_interfaces=''
dc_readhost=''
dc_relay_domains=''
dc_minimaldns='false'
dc_relay_nets=''
dc_smarthost=''
CFILEMODE='644'
dc_use_split_config='true'
dc_hide_mailname=''
dc_mailname_in_oh='true'
#dc_localdelivery=maildir_home
dc_localdelivery='maildir_home'
mailname:wkx.zid.tuwien.ac.at

-- System Information:
Debian Release: 5.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-1-686 (SMP w/2 CPU cores)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages exim4-daemon-heavy depends on:
ii  debconf [debconf-2.0]1.5.24  Debian configuration management sy
ii  exim4-base   4.69-9  support files for all Exim MTA (v4
ii  libc62.7-18  GNU C Library: Shared libraries
ii  libdb4.6 4.6.21-11   Berkeley v4.6 Database Libraries [
ii  libgnutls26  2.4.2-6 the GNU TLS library - runtime libr
ii  libldap-2.4-22.4.11-1OpenLDAP libraries
ii  libmysqlclient15off  5.0.51a-24  MySQL database client library
ii  libpam0g 1.0.1-5 Pluggable Authentication Modules l
ii  libpcre3 7.6-2.1 Perl 5 Compatible Regular Expressi
ii  libperl5.10  5.10.0-19   Shared Perl library
ii  libpq5   8.3.6-1 PostgreSQL C client library
ii  libsasl2-2   2.1.22.dfsg1-23 Cyrus SASL - authentication abstra
ii  libsqlite3-0 3.5.9-6 SQLite 3 shared library

exim4-daemon-heavy recommends no packages.

exim4-daemon-heavy suggests no packages.

-- debconf information:
  exim4-daemon-heavy/drec:



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



Bug#515503: exim4: dovecot_plain authenticator failed: 435 Unable to authenticate at present: authentication socket read error or premature eof

2009-02-15 Thread Philipp Kolmann
Package: exim4
Version: 4.69-9
Severity: normal

I have setup exim 4.69 with dovecot auth and saw this error when the password
was entered wrong:

2009-02-15 20:49:52 dovecot_login authenticator failed for [xxx]:
435 Unable to authenticate at present: authentication socket read error or
premature eof

I found that this bug is fixed for 4.70 here:

http://bugs.exim.org/show_bug.cgi?id=667

Would it be possible to add this fix to lenny for 5.0.1.

thanks
Philipp

-- Package-specific info:
Exim version 4.69 #1 built 30-Sep-2008 18:26:44
Copyright (c) University of Cambridge 2006
Berkeley DB: Berkeley DB 4.6.21: (September 27, 2007)
Support for: crypteq iconv() IPv6 PAM Perl Expand_dlfunc GnuTLS 
move_frozen_messages Content_Scanning Old_Demime
Lookups: lsearch wildlsearch nwildlsearch iplsearch cdb dbm dbmnz dnsdb dsearch 
ldap ldapdn ldapm mysql nis nis0 passwd pgsql sqlite
Authenticators: cram_md5 cyrus_sasl dovecot plaintext spa
Routers: accept dnslookup ipliteral iplookup manualroute queryprogram redirect
Transports: appendfile/maildir/mailstore/mbx autoreply lmtp pipe smtp
Fixed never_users: 0
Size of off_t: 8
Configuration file is /var/lib/exim4/config.autogenerated
# /etc/exim4/update-exim4.conf.conf
#
# Edit this file and /etc/mailname by hand and execute update-exim4.conf
# yourself or use 'dpkg-reconfigure exim4-config'
#
# Please note that this is _not_ a dpkg-conffile and that automatic changes
# to this file might happen. The code handling this will honor your local
# changes, so this is usually fine, but will break local schemes that mess
# around with multiple versions of the file.
#
# update-exim4.conf uses this file to determine variable values to replace
# the DEBCONFsomethingDEBCONF strings in the configuration template files.
#
# Most settings found in here do have corresponding questions in the
# Debconf configuration, but not all of them.
#
# This is a Debian specific file

dc_eximconfig_configtype='internet'
dc_other_hostnames='eacpc4.tuwien.ac.at'
dc_local_interfaces=''
dc_readhost=''
dc_relay_domains=''
dc_minimaldns='false'
dc_relay_nets=''
dc_smarthost=''
CFILEMODE='644'
dc_use_split_config='true'
dc_hide_mailname=''
dc_mailname_in_oh='true'
#dc_localdelivery=maildir_home
dc_localdelivery='maildir_home'
mailname:wkx.zid.tuwien.ac.at

-- System Information:
Debian Release: 5.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-1-686 (SMP w/2 CPU cores)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages exim4 depends on:
ii  debconf [debconf-2.0] 1.5.24 Debian configuration management sy
ii  exim4-base4.69-9 support files for all Exim MTA (v4
ii  exim4-daemon-heavy4.69-9 Exim MTA (v4) daemon with extended

exim4 recommends no packages.

exim4 suggests no packages.

-- debconf information:
  exim4/drec:



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



Bug#512650: Build failed with linux-headers-2.6-amd64 2.6.26+17

2009-01-22 Thread Philipp Kolmann
Package: open-vm-source
Version: 2008.11.18-130226-1
Severity: serious

I have just updated a lenny system on an ESX host and wanted to rebuild the 
open-vm-source modules. But compilation failed:

[...]
/usr/bin/make -C modules/linux/vmhgfs
Using 2.6.x kernel build system.
make[3]: Entering directory `/usr/src/modules/open-vm/modules/linux/vmhgfs'
make -C /lib/modules/2.6.26-1-amd64/build/include/.. SUBDIRS=$PWD 
SRCROOT=$PWD/. modules
make[4]: Entering directory `/usr/src/linux-headers-2.6.26-1-amd64'
  CC [M]  /usr/src/modules/open-vm/modules/linux/vmhgfs/backdoor.o
  CC [M]  /usr/src/modules/open-vm/modules/linux/vmhgfs/backdoorGcc64.o
  CC [M]  /usr/src/modules/open-vm/modules/linux/vmhgfs/bdhandler.o
  CC [M]  /usr/src/modules/open-vm/modules/linux/vmhgfs/cpName.o
  CC [M]  /usr/src/modules/open-vm/modules/linux/vmhgfs/cpNameLinux.o
  CC [M]  /usr/src/modules/open-vm/modules/linux/vmhgfs/cpNameLite.o
  CC [M]  /usr/src/modules/open-vm/modules/linux/vmhgfs/dentry.o
  CC [M]  /usr/src/modules/open-vm/modules/linux/vmhgfs/dir.o
  CC [M]  /usr/src/modules/open-vm/modules/linux/vmhgfs/file.o
  CC [M]  /usr/src/modules/open-vm/modules/linux/vmhgfs/filesystem.o
  CC [M]  /usr/src/modules/open-vm/modules/linux/vmhgfs/fsutil.o
  CC [M]  /usr/src/modules/open-vm/modules/linux/vmhgfs/hgfsBd.o
  CC [M]  /usr/src/modules/open-vm/modules/linux/vmhgfs/hgfsEscape.o
  CC [M]  /usr/src/modules/open-vm/modules/linux/vmhgfs/hgfsEscapeLinux.o
  CC [M]  /usr/src/modules/open-vm/modules/linux/vmhgfs/hgfsUtil.o
  CC [M]  /usr/src/modules/open-vm/modules/linux/vmhgfs/inode.o
  CC [M]  /usr/src/modules/open-vm/modules/linux/vmhgfs/kernelStubsLinux.o
  CC [M]  /usr/src/modules/open-vm/modules/linux/vmhgfs/link.o
  CC [M]  /usr/src/modules/open-vm/modules/linux/vmhgfs/messageBackdoor.o
  CC [M]  /usr/src/modules/open-vm/modules/linux/vmhgfs/message.o
  CC [M]  /usr/src/modules/open-vm/modules/linux/vmhgfs/module.o
  CC [M]  /usr/src/modules/open-vm/modules/linux/vmhgfs/page.o
  CC [M]  /usr/src/modules/open-vm/modules/linux/vmhgfs/request.o
  CC [M]  /usr/src/modules/open-vm/modules/linux/vmhgfs/rpcout.o
  CC [M]  /usr/src/modules/open-vm/modules/linux/vmhgfs/staticEscape.o
  CC [M]  /usr/src/modules/open-vm/modules/linux/vmhgfs/stubs.o
  CC [M]  /usr/src/modules/open-vm/modules/linux/vmhgfs/super.o
  LD [M]  /usr/src/modules/open-vm/modules/linux/vmhgfs/vmhgfs.o
/usr/src/modules/open-vm/modules/linux/vmhgfs/hgfsEscapeLinux.o: In function 
`HgfsEscape_Undo':
hgfsEscapeLinux.c:(.text+0x0): multiple definition of `HgfsEscape_Undo'
/usr/src/modules/open-vm/modules/linux/vmhgfs/hgfsEscape.o:hgfsEscape.c:(.text+0xe0):
 first defined here
/usr/src/modules/open-vm/modules/linux/vmhgfs/hgfsEscapeLinux.o: In function 
`HgfsEscape_Do':
hgfsEscapeLinux.c:(.text+0xf): multiple definition of `HgfsEscape_Do'
/usr/src/modules/open-vm/modules/linux/vmhgfs/hgfsEscape.o:hgfsEscape.c:(.text+0x2b5):
 first defined here
make[5]: *** [/usr/src/modules/open-vm/modules/linux/vmhgfs/vmhgfs.o] Error 1
make[4]: *** [_module_/usr/src/modules/open-vm/modules/linux/vmhgfs] Error 2
make[4]: Leaving directory `/usr/src/linux-headers-2.6.26-1-amd64'
make[3]: *** [vmhgfs.ko] Error 2
make[3]: Leaving directory `/usr/src/modules/open-vm/modules/linux/vmhgfs'
make[2]: *** [build] Error 2
make[2]: Leaving directory `/usr/src/modules/open-vm'
make[1]: *** [binary-modules] Error 2
make[1]: Leaving directory `/usr/src/modules/open-vm'
make: *** [kdist_build] Error 2


with the last release (2008.09.03-114782) I didn't have any build problems.
Thanks
Philipp



-- System Information:
Debian Release: 5.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

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

Versions of packages open-vm-source depends on:
ii  bzip2 1.0.5-1high-quality block-sorting file co
ii  debhelper 7.0.15 helper programs for debian/rules
ii  dpatch2.0.30 patch maintenance system for Debia
ii  make  3.81-5 The GNU version of the make util

Versions of packages open-vm-source recommends:
ii  module-assistant 0.10.11.0   tool to make module package creati
ii  open-vm-tools2008.11.18-130226-1 tools and components for VMware gu

Versions of packages open-vm-source suggests:
pn  open-vm-toolbox   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#507669: libwww-perl: Authen::NTLM missing

2008-12-03 Thread Philipp Kolmann
Package: libwww-perl
Version: 5.820-1
Severity: wishlist

Hi,

I am currently trying to do a SOAP:lite connection to an MS Server. There I'd
like to authenticate via LWP::Authen::Ntlm.

LWP::Authen::Ntlm is in libwww-perl but it depends on Authen::NTLM which isn't
available as debian package.

I'd like to see a Authen::NTLM debian package sometime in the future.

Thanks
Philipp 

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-1-686-bigmem (SMP w/4 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages libwww-perl depends on:
ii  libhtml-parser-perl3.59-1A collection of modules that parse
ii  libhtml-tagset-perl3.20-2Data tables pertaining to HTML
ii  libhtml-tree-perl  3.23-1represent and create HTML syntax t
ii  liburi-perl1.35.dfsg.1-1 Manipulates and accesses URI strin
ii  netbase4.34  Basic TCP/IP networking system
ii  perl [libdigest-md5-perl]  5.10.0-18 Larry Wall's Practical Extraction 

Versions of packages libwww-perl recommends:
ii  libcompress-zlib-perl 2.015-1Perl module for creation and manip
ii  libhtml-format-perl   2.04-2 format HTML syntax trees into text
ii  libmailtools-perl 2.04-1 Manipulate email in perl programs

Versions of packages libwww-perl suggests:
ii  libio-socket-ssl-perl 1.18-1 Perl module implementing object or

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#433568: Second that request

2008-10-24 Thread Philipp Kolmann

Hi,

I would really love to see vlan support in DI.

I just had a box with vlans connected already and wanted to install 
debian with latest lenny installer but couldn't because of the lack of 
vlan support.


I'd prefer to have proper deb-conf vlan support, if possible. Shouldn't 
be too hard.


Probably you only need to say which interface and which vlan, add this 
interface and then start the network dlg.


Thanks
Philipp Kolmann



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#502288: acpi-support: On startup, after Vesa State is saved, screen is white on white

2008-10-15 Thread Philipp Kolmann
Package: acpi-support
Version: 0.109-9
Severity: normal


I just got an HP 2133 MiniNotebook and removed SuSE. I installed Debian
Lenny and after the reboot (also with 2.6.26) the screen goes well until
the /etc/init.d/vbesave is started. After this the screen goes white on
white. I only see the cursor a bit blinking. Everyting works, but I just
can't see anything.

It helped to turn the vbesave off. Now I can work on the console, but
still if I start it, I don't see anything anymore.

Tell me, if you need anything to solve this issue.
Thanks
Philipp

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-1-486
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages acpi-support depends on:
ii  acpi-support-base 0.109-9scripts for handling base ACPI eve
ii  acpid 1.0.6-13   Utilities for using ACPI power man
ii  dmidecode 2.9-1  Dump Desktop Management Interface 
ii  finger0.17-12user information lookup program
ii  hdparm8.9-2  tune hard disk parameters for high
ii  laptop-detect 0.13.6 attempt to detect a laptop
ii  libc6 2.7-14 GNU C Library: Shared libraries
ii  lsb-base  3.2-20 Linux Standard Base 3.2 init scrip
ii  powermgmt-base1.30   Common utils and configs for power
ii  vbetool   1.0-3  run real-mode video BIOS code to a
ii  x11-xserver-utils 7.3+5  X server utilities

Versions of packages acpi-support recommends:
ii  dbus  1.2.1-3simple interprocess messaging syst
ii  hal   0.5.11-3   Hardware Abstraction Layer
ii  nvclock   0.8b3-1Allows you to overclock your nVidi
ii  pm-utils  1.1.2.4-1  utilities and scripts for power ma
ii  radeontool1.5-5  utility to control ATI Radeon back
ii  toshset   1.73-2 Access much of the Toshiba laptop 

Versions of packages acpi-support suggests:
pn  laptop-mode-tools none (no description available)

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#491227: Short shell script to get rid of compress

2008-07-26 Thread Philipp Kolmann

Hi,

just for the reference of others, who do not want to recompile hugin or 
enblend:


I have created a ~/bin/enblend script:

= CUT HERE =
#!/bin/sh

X=$@

Y=`echo $X | sed s/--compression\ NONE//`
/usr/bin/enblend $Y
= CUT HERE =

If you configure this script in Hugin (Files - Prefs - Enblend) then 
it works for me for now.


HTH
Philipp



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#482954: libxine1: Crash with yuv444_to_yuy2_mmx at color.c:370

2008-05-25 Thread Philipp Kolmann
Package: libxine1
Version: 1.1.12-2
Severity: normal


Hi,

I started to test a DVB-T stick with kaffeine on my laptop (ATI with fglrx
graphics) and kept getting kaffeine crashes. The DVB-T stick works on both my
workstations with nvidia graphics drivers and cards.

On my laptop I traced the problem down to a xine problem:

[EMAIL PROTECTED]:~$ gdb gxine
[...]
(gdb) start
Function main not defined.
Make breakpoint pending on future shared library load? (y or [n]) 
Starting program: /usr/bin/gxine 
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
[Thread debugging using libthread_db enabled]
[New Thread 0xb73c9940 (LWP 19761)]
[New Thread 0xb68f3b90 (LWP 19764)]
bind: No such file or directory
[New Thread 0xb5f3fb90 (LWP 19766)]
[New Thread 0xb553db90 (LWP 19767)]
[New Thread 0xb4d3cb90 (LWP 19768)]
[Thread 0xb553db90 (LWP 19767) exited]
[Thread 0xb4d3cb90 (LWP 19768) exited]
[Thread 0xb5f3fb90 (LWP 19766) exited]
[New Thread 0xb5f3fb90 (LWP 19769)]
[New Thread 0xb4d3cb90 (LWP 19770)]
[New Thread 0xb553db90 (LWP 19771)]
[New Thread 0xb3d3bb90 (LWP 19772)]
[New Thread 0xb336db90 (LWP 19773)]
gtkvideo: failed to get a proxy for gnome-screensaver
[New Thread 0xb204db90 (LWP 19774)]
warning: configuration item media.audio_cd.cddb_cachedir points to a 
non-existent location /home/philipp/.xine/cddbcache
warning: configuration item media.capture.save_dir points to a non-existent 
location 
warning: configuration item media.video4linux.radio_device points to a 
non-existent location /dev/radio0
warning: configuration item media.video4linux.video_device points to a 
non-existent location /dev/video0
warning: configuration item media.wintv_pvr.device points to a non-existent 
location /dev/video0
warning: configuration item subtitles.separate.font_freetype points to a 
non-existent location 
[New Thread 0xb184cb90 (LWP 19775)]
[New Thread 0xb0bebb90 (LWP 19777)]
[New Thread 0xb03eab90 (LWP 19778)]
[New Thread 0xafa3db90 (LWP 19779)]
lirc: cannot initialise - disabling remote control
lirc: maybe lircd isn't running or you can't connect to the socket?
[Thread 0xafa3db90 (LWP 19779) exited]
[New Thread 0xaf9efb90 (LWP 19780)]
[New Thread 0xaf961b90 (LWP 19781)]

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0xb3d3bb90 (LWP 19772)]
yuv444_to_yuy2_mmx (yuv_planes=0xb3d3b2b4, yuy2_map=0x0, pitch=-640) at 
color.c:370
370 color.c: No such file or directory.
in color.c
(gdb) thread apply all bt

Thread 17 (Thread 0xaf961b90 (LWP 19781)):
#0  0xb7fd8424 in __kernel_vsyscall ()
#1  0xb783e871 in select () from /lib/i686/cmov/libc.so.6
#2  0xb7fa35dd in xine_usec_sleep (usec=0) at utils.c:453
#3  0xb7f92b43 in demux_loop (stream_gen=0x9385358) at demux.c:312
#4  0xb7a304fb in start_thread () from /lib/i686/cmov/libpthread.so.0
#5  0xb7845e8e in clone () from /lib/i686/cmov/libc.so.6

Thread 16 (Thread 0xaf9efb90 (LWP 19780)):
#0  0xb7fd8424 in __kernel_vsyscall ()
#1  0xb7a34dd2 in pthread_cond_timedwait@@GLIBC_2.3.2 () from 
/lib/i686/cmov/libpthread.so.0
#2  0xb7f737f8 in xine_play (stream=0x9385358, start_pos=0, start_time=0) at 
xine.c:1285
#3  0x0806e5f1 in ?? ()
#4  0x09385358 in ?? ()
#5  0x in ?? ()

Thread 14 (Thread 0xb03eab90 (LWP 19778)):
#0  0xb7fd8424 in __kernel_vsyscall ()
#1  0xb7a34aa5 in pthread_cond_wait@@GLIBC_2.3.2 () from 
/lib/i686/cmov/libpthread.so.0
#2  0xb7f88ff8 in ao_loop (this_gen=0x9f496d0) at audio_out.c:346
#3  0xb7a304fb in start_thread () from /lib/i686/cmov/libpthread.so.0
#4  0xb7845e8e in clone () from /lib/i686/cmov/libc.so.6

Thread 13 (Thread 0xb0bebb90 (LWP 19777)):
#0  0xb7fd8424 in __kernel_vsyscall ()
#1  0xb783e871 in select () from /lib/i686/cmov/libc.so.6
#2  0xb7fa35dd in xine_usec_sleep (usec=0) at utils.c:453
#3  0xb7f85a15 in video_out_loop (this_gen=0x9f47fd8) at video_out.c:1246
#4  0xb7a304fb in start_thread () from /lib/i686/cmov/libpthread.so.0
#5  0xb7845e8e in clone () from /lib/i686/cmov/libc.so.6

Thread 12 (Thread 0xb184cb90 (LWP 19775)):
#0  0xb7fd8424 in __kernel_vsyscall ()
#1  0xb7a34aa5 in pthread_cond_wait@@GLIBC_2.3.2 () from 
/lib/i686/cmov/libpthread.so.0
#2  0xb7f8ca70 in xine_event_wait (queue=0x9b43c60) at events.c:56
---Type return to continue, or q return to quit---
#3  0xb7f8cb04 in listener_loop (queue_gen=0x9b43c60) at events.c:214
#4  0xb7a304fb in start_thread () from /lib/i686/cmov/libpthread.so.0
#5  0xb7845e8e in clone () from /lib/i686/cmov/libc.so.6

Thread 11 (Thread 0xb204db90 (LWP 19774)):
#0  0xb7fd8424 in __kernel_vsyscall ()
#1  0xb783e871 in select () from /lib/i686/cmov/libc.so.6
#2  0xb7fa35dd in xine_usec_sleep (usec=0) at utils.c:453
#3  0xb7f85a15 in video_out_loop (this_gen=0x957f880) at video_out.c:1246
#4  0xb7a304fb in start_thread () from /lib/i686/cmov/libpthread.so.0
#5  0xb7845e8e in clone () from /lib/i686/cmov/libc.so.6

Thread 10 (Thread 0xb336db90 (LWP 19773)):
#0  0xb7fd8424 in __kernel_vsyscall ()
#1  0xb7a34aa5 in 

Bug#481161: linux-image-2.6.25-2-686-bigmem: Non xen kernels have XEN enabled now? On purpose or bug

2008-05-14 Thread Philipp Kolmann
Package: linux-image-2.6.25-2-686-bigmem
Version: 2.6.25-2
Severity: normal

Hi,

I just installed latest 2.6.25 kernel and wanted to compile nvidia graphics
drivers for this kernel. This fails, because xen is enabled in this kernel. Is
this on purpose now, that all kernels have xen enabled? If so, then please
change this BR to nvidia-graphics-drivers to fix xen support in there.

Thanks
Philipp

-- Package-specific info:

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.25-1-686-bigmem (SMP w/4 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages linux-image-2.6.25-2-686-bigmem depends on:
ii  debconf [debconf-2.0] 1.5.21 Debian configuration management sy
ii  initramfs-tools [linux-initra 0.92a  tools for generating an initramfs
ii  module-init-tools 3.4-1  tools for managing Linux kernel mo

Versions of packages linux-image-2.6.25-2-686-bigmem recommends:
ii  libc6-i6862.7-11 GNU C Library: Shared libraries [i

-- debconf information:
  linux-image-2.6.25-2-686-bigmem/postinst/kimage-is-a-directory:
  linux-image-2.6.25-2-686-bigmem/preinst/lilo-has-ramdisk:
  
linux-image-2.6.25-2-686-bigmem/postinst/create-kimage-link-2.6.25-2-686-bigmem:
 true
  
linux-image-2.6.25-2-686-bigmem/prerm/would-invalidate-boot-loader-2.6.25-2-686-bigmem:
 true
  
linux-image-2.6.25-2-686-bigmem/postinst/old-system-map-link-2.6.25-2-686-bigmem:
 true
  linux-image-2.6.25-2-686-bigmem/preinst/lilo-initrd-2.6.25-2-686-bigmem: true
  linux-image-2.6.25-2-686-bigmem/preinst/abort-overwrite-2.6.25-2-686-bigmem:
  shared/kernel-image/really-run-bootloader: true
  
linux-image-2.6.25-2-686-bigmem/postinst/depmod-error-initrd-2.6.25-2-686-bigmem:
 false
  linux-image-2.6.25-2-686-bigmem/postinst/bootloader-error-2.6.25-2-686-bigmem:
  
linux-image-2.6.25-2-686-bigmem/preinst/failed-to-move-modules-2.6.25-2-686-bigmem:
  linux-image-2.6.25-2-686-bigmem/preinst/elilo-initrd-2.6.25-2-686-bigmem: true
  linux-image-2.6.25-2-686-bigmem/preinst/abort-install-2.6.25-2-686-bigmem:
  
linux-image-2.6.25-2-686-bigmem/prerm/removing-running-kernel-2.6.25-2-686-bigmem:
 true
  
linux-image-2.6.25-2-686-bigmem/postinst/old-dir-initrd-link-2.6.25-2-686-bigmem:
 true
  
linux-image-2.6.25-2-686-bigmem/postinst/bootloader-test-error-2.6.25-2-686-bigmem:
  linux-image-2.6.25-2-686-bigmem/preinst/initrd-2.6.25-2-686-bigmem:
  linux-image-2.6.25-2-686-bigmem/postinst/old-initrd-link-2.6.25-2-686-bigmem: 
true
  linux-image-2.6.25-2-686-bigmem/postinst/depmod-error-2.6.25-2-686-bigmem: 
false
  
linux-image-2.6.25-2-686-bigmem/preinst/bootloader-initrd-2.6.25-2-686-bigmem: 
true
  
linux-image-2.6.25-2-686-bigmem/preinst/overwriting-modules-2.6.25-2-686-bigmem:
 true



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#478656: vdr-plugin-xine: Plugin misses noSignal.mpg file

2008-04-30 Thread Philipp Kolmann
Package: vdr-plugin-xine
Version: 0.8.2-1
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

I just updated to vdr 1.6 to get the xine plugin working. But with this
plugin vdr exits, because a file is missing:

Apr 30 07:59:52 chief vdr: [13652] VDR version 1.6.0 started
Apr 30 07:59:52 chief vdr: [13652] switched to user 'vdr'
Apr 30 07:59:52 chief vdr: [13652] codeset is 'ANSI_X3.4-1968' - unknown
Apr 30 07:59:54 chief vdr: [13652] found 0 locales in /usr/share/locale
Apr 30 07:59:54 chief vdr: [13652] loading plugin: 
/usr/lib/vdr/plugins/libvdr-xine.so.1.6.0
Apr 30 07:59:54 chief vdr: [13652] loading /var/lib/vdr/setup.conf
Apr 30 07:59:54 chief vdr: [13652] ERROR: unknown config parameter: 
MenuButtonCloses = 0
Apr 30 07:59:54 chief vdr: [13652] unknown locale: '0'
Apr 30 07:59:54 chief vdr: [13652] loading /var/lib/vdr/sources.conf
Apr 30 07:59:54 chief vdr: [13652] loading /var/lib/vdr/diseqc.conf
Apr 30 07:59:54 chief vdr: [13652] loading /var/lib/vdr/channels.conf
Apr 30 07:59:54 chief vdr: [13652] loading /var/lib/vdr/timers.conf
Apr 30 07:59:54 chief vdr: [13652] loading /var/lib/vdr/commands.conf
Apr 30 07:59:54 chief vdr: [13652] loading /var/lib/vdr/reccmds.conf
Apr 30 07:59:54 chief vdr: [13652] loading /var/lib/vdr/svdrphosts.conf
Apr 30 07:59:54 chief vdr: [13652] loading /var/lib/vdr/keymacros.conf
Apr 30 07:59:54 chief vdr: [13654] video directory scanner thread started 
(pid=13652, tid=13654)
Apr 30 07:59:54 chief vdr: [13654] video directory scanner thread ended 
(pid=13652, tid=13654)
Apr 30 07:59:54 chief vdr: [13655] video directory scanner thread started 
(pid=13652, tid=13655)
Apr 30 07:59:54 chief vdr: [13655] video directory scanner thread ended 
(pid=13652, tid=13655)
Apr 30 07:59:54 chief vdr: [13652] reading EPG data from /var/cache/vdr/epg.data
Apr 30 07:59:54 chief vdr: [13652] probing /dev/dvb/adapter0/frontend0
Apr 30 07:59:55 chief vdr: [13659] tuner on device 1 thread started (pid=13652, 
tid=13659)
Apr 30 07:59:55 chief vdr: [13660] section handler thread started (pid=13652, 
tid=13660)
Apr 30 07:59:55 chief vdr: [13652] found 1 video device
Apr 30 07:59:55 chief vdr: [13652] initializing plugin: xine (0.8.2): Software 
based playback using xine
Apr 30 07:59:55 chief vdr: [13661] XineRemote control thread started 
(pid=13652, tid=13661)
Apr 30 07:59:55 chief vdr: [13661] Entering cXineRemote thread 
Apr 30 07:59:55 chief vdr: [13652] vdr-xine: error: couldn't open 
'/var/lib/vdr/plugins/xine/noSignal.mpg'! 
Apr 30 07:59:55 chief vdr: [13661] Leaving cXineRemote thread 
Apr 30 07:59:55 chief vdr: [13661] XineRemote control thread ended (pid=13652, 
tid=13661)
Apr 30 07:59:56 chief vdr: [13660] section handler thread ended (pid=13652, 
tid=13660)
Apr 30 07:59:56 chief vdr: [13659] tuner on device 1 thread ended (pid=13652, 
tid=13659)
Apr 30 07:59:56 chief vdr: [13652] deleting plugin: xine
Apr 30 07:59:56 chief vdr: [13652] max. latency time 0 seconds
Apr 30 07:59:56 chief vdr: [13652] exiting, exit code 2
Apr 30 07:59:56 chief runvdr: stopping after fatal fail (vdr-xine: error: 
couldn't open '/var/lib/vdr/plugins/xine/noSignal.mpg'!)


[EMAIL PROTECTED]:/etc/vdr# ls -al /var/lib/vdr/plugins/xine/noSignal.mpg 
lrwxrwxrwx 1 root root 39 Apr 30 07:59 /var/lib/vdr/plugins/xine/noSignal.mpg 
- /usr/share/vdr-plugin-xine/noSignal.mpg

[EMAIL PROTECTED]:/etc/vdr# ls -al /usr/share/vdr-plugin-xine  
ls: cannot access /usr/share/vdr-plugin-xine: No such file or directory


It seems that this dirctory is missing.

thanks
Philipp

- -- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.24-1-686 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages vdr-plugin-xine depends on:
ii  libc6   2.7-10   GNU C Library: Shared libraries
ii  libgcc1 1:4.3.0-3GCC support library
ii  libstdc 4.3.0-3  The GNU Standard C++ Library v3
ii  libxine 1.1.90hg+20080402+f29350241e48-1 VDR-related plugins for libxine2
ii  vdr 1.6.0-1  Video Disk Recorder for DVB cards

vdr-plugin-xine recommends no packages.

- -- no debconf information

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFIGAy/b3w5kbZgJjQRAn/ZAKDebgHUbvBbHaYdAZR/fU7tiTvSowCfRS3I
Z/eL21okqnQQjqAsq4raAzA=
=l6S0
-END PGP SIGNATURE-



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#473010: fvwm: FVWM crashes when started in tightvncserver

2008-03-27 Thread Philipp Kolmann
Package: fvwm
Version: 1:2.5.25-1
Severity: normal

Hi,

while debugging another issue with FVWM in a tightvncserver instance, I came
accross a SIGSEGV of FVWM when starting. It happens to the 2.5.25 debian
package, but not the the latest CVS HEAD.

Here is the gdb bt of a self compiled apt-get source fvwm:

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0xb7ba88c0 (LWP 23041)]
AddWindow (exc=0x889c2a8, ReuseWin=0x0, win_opts=0xbfbbd390)
at add_window.c:842
842 if (format-type==PictTypeDirect 
(gdb) bt
#0  AddWindow (exc=0x889c2a8, ReuseWin=0x0, win_opts=0xbfbbd390)
at add_window.c:842
#1  0x0806d6db in HandleMapRequestKeepRaised (ea=0xbfbbd424, KeepRaised=0, 
ReuseWin=0x0, win_opts=0xbfbbd390) at events.c:2943
#2  0x0806da40 in HandleMapRequest (ea=0x0) at events.c:2866
#3  0x0806bf7e in dispatch_event (e=0xbfbbd454) at events.c:4041
#4  0x0806c68f in HandleEvents () at events.c:4084
#5  0x0808ceaf in main (argc=1, argv=0xbfbbdf04) at fvwm.c:2570

I hope someone can tell me why this happens.

thanks
Philipp

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.24-1-686-bigmem (SMP w/4 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages fvwm depends on:
ii  libc6  2.7-9 GNU C Library: Shared libraries
ii  libcairo2  1.4.14-1  The Cairo 2D vector graphics libra
ii  libfontconfig1 2.5.0-2   generic font configuration library
ii  libfreetype6   2.3.5-1+b1FreeType 2 font engine, shared lib
ii  libfribidi00.10.9-1  Free Implementation of the Unicode
ii  libglib1.2ldbl 1.2.10-19 The GLib library of C routines
ii  libglib2.0-0   2.16.1-2  The GLib library of C routines
ii  libgtk1.2  1.2.10-18.1   The GIMP Toolkit set of widgets fo
ii  libgtk2.0-02.12.9-2  The GTK+ graphical user interface 
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  libncurses55.6+20080308-1Shared libraries for terminal hand
ii  libpng12-0 1.2.15~beta5-3PNG library - runtime
ii  libreadline5   5.2-3 GNU readline and history libraries
ii  librplay3  3.3.2-11  Shared libraries for the rplay net
ii  librsvg2-2 2.22.2-2  SAX-based renderer library for SVG
ii  libsm6 2:1.0.3-1+b1  X11 Session Management library
ii  libstroke0 0.5.1-6   mouse strokes library -- runtime f
ii  libx11-6   2:1.0.3-7 X11 client-side library
ii  libxcursor11:1.1.9-1 X cursor management library
ii  libxext6   2:1.0.4-1 X11 miscellaneous extension librar
ii  libxft22.1.12-2  FreeType-based font drawing librar
ii  libxi6 2:1.1.3-1 X11 Input extension library
ii  libxinerama1   2:1.0.3-1 X11 Xinerama extension library
ii  libxpm41:3.5.7-1 X11 pixmap library
ii  libxrender11:0.9.4-1 X Rendering Extension client libra
ii  zlib1g 1:1.2.3.3.dfsg-11 compression library - runtime

Versions of packages fvwm recommends:
ii  fvwm-icons  2001.08.13-6 XPMs icons from fvwm development s

-- debconf information:
* fvwm/upgrade/pre_2.5.8: true



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#472761: fvwm: Skype's profile viewer window won't appear since 2.5.25-1

2008-03-25 Thread Philipp Kolmann
Package: fvwm
Version: 1:2.5.25-1
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

I am running Skype 2.0.0.63 and never had problems with FVWM but with
the upgrade to 2.5.25 I don't get Skype's profile viewer window anymore.
I can click on the info and the window should appear, but nothing comes.

I don't think that it is an issue with skype, since the same binary
works without hassle in KDE. I haven't changed anything in my fvwm
config. The only parameter that changed was the new fvwm package.

Could it be with the fix for:

- - - Fixed problem with windows disappearing when created unless the style
  Unmanaged was used. Closes: #443573


Thanks
Philipp


- -- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.24-1-686 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages fvwm depends on:
ii  libc6  2.7-9 GNU C Library: Shared libraries
ii  libcairo2  1.4.14-1  The Cairo 2D vector graphics libra
ii  libfontconfig1 2.5.0-2   generic font configuration library
ii  libfreetype6   2.3.5-1+b1FreeType 2 font engine, shared lib
ii  libfribidi00.10.9-1  Free Implementation of the Unicode
ii  libglib1.2ldbl 1.2.10-19 The GLib library of C routines
ii  libglib2.0-0   2.16.1-2  The GLib library of C routines
ii  libgtk1.2  1.2.10-18.1   The GIMP Toolkit set of widgets fo
ii  libgtk2.0-02.12.9-2  The GTK+ graphical user interface 
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  libncurses55.6+20080308-1Shared libraries for terminal hand
ii  libpng12-0 1.2.15~beta5-3PNG library - runtime
ii  libreadline5   5.2-3 GNU readline and history libraries
ii  librplay3  3.3.2-11  Shared libraries for the rplay net
ii  librsvg2-2 2.22.2-2  SAX-based renderer library for SVG
ii  libsm6 2:1.0.3-1+b1  X11 Session Management library
ii  libstroke0 0.5.1-6   mouse strokes library -- runtime f
ii  libx11-6   2:1.0.3-7 X11 client-side library
ii  libxcursor11:1.1.9-1 X cursor management library
ii  libxext6   2:1.0.4-1 X11 miscellaneous extension librar
ii  libxft22.1.12-2  FreeType-based font drawing librar
ii  libxi6 2:1.1.3-1 X11 Input extension library
ii  libxinerama1   2:1.0.3-1 X11 Xinerama extension library
ii  libxpm41:3.5.7-1 X11 pixmap library
ii  libxrender11:0.9.4-1 X Rendering Extension client libra
ii  zlib1g 1:1.2.3.3.dfsg-11 compression library - runtime

Versions of packages fvwm recommends:
ii  fvwm-icons  2001.08.13-6 XPMs icons from fvwm development s

- -- debconf information:
  fvwm/upgrade/pre_2.5.8: false

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFH6dNdb3w5kbZgJjQRAsrQAJ4kjqebPEU1nMIcOF8JLSgiQLCw8wCghdBb
qm98md115fwUIVkkunRGNSI=
=e1R7
-END PGP SIGNATURE-



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#463384: fvwm: SIGSEGV in ewmh_events.c:194

2008-01-31 Thread Philipp Kolmann
Package: fvwm
Version: 1:2.5.23-2
Severity: normal
Tags: patch

Hi,

I reported a FVWM crash to the FVWM-ML which got fixed already upstream:
http://www.mail-archive.com/[EMAIL PROTECTED]/msg16265.html

Could you add the patch, since this bug crashes FVWM for me, when the
situation happens. I am not sure, when a new upstream release will get out.

Thanks
Philipp

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.24-1-686-bigmem (SMP w/4 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages fvwm depends on:
ii  debconf [debconf-2.0]  1.5.19Debian configuration management sy
ii  gdk-imlib111.9.15-5  imaging library for use with gtk
ii  libc6  2.7-6 GNU C Library: Shared libraries
ii  libcairo2  1.4.14-1  The Cairo 2D vector graphics libra
ii  libfontconfig1 2.5.0-2   generic font configuration library
ii  libfreetype6   2.3.5-1+b1FreeType 2 font engine, shared lib
ii  libfribidi00.10.9-1  Free Implementation of the Unicode
ii  libglib1.2ldbl 1.2.10-19 The GLib library of C routines
ii  libglib2.0-0   2.14.5-2  The GLib library of C routines
ii  libgtk1.2  1.2.10-18.1   The GIMP Toolkit set of widgets fo
ii  libgtk2.0-02.12.5-2  The GTK+ graphical user interface 
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  libncurses55.6+20080119-1Shared libraries for terminal hand
ii  libpng12-0 1.2.15~beta5-3PNG library - runtime
ii  libreadline5   5.2-3 GNU readline and history libraries
ii  librplay3  3.3.2-11  Shared libraries for the rplay net
ii  librsvg2-2 2.20.0-1  SAX-based renderer library for SVG
ii  libsm6 2:1.0.3-1+b1  X11 Session Management library
ii  libstroke0 0.5.1-6   mouse strokes library -- runtime f
ii  libx11-6   2:1.0.3-7 X11 client-side library
ii  libxcursor11:1.1.9-1 X cursor management library
ii  libxext6   1:1.0.3-2 X11 miscellaneous extension librar
ii  libxft22.1.12-2  FreeType-based font drawing librar
ii  libxi6 2:1.1.3-1 X11 Input extension library
ii  libxinerama1   1:1.0.2-1 X11 Xinerama extension library
ii  libxpm41:3.5.7-1 X11 pixmap library
ii  libxrender11:0.9.4-1 X Rendering Extension client libra
ii  zlib1g 1:1.2.3.3.dfsg-11 compression library - runtime

Versions of packages fvwm recommends:
ii  fvwm-icons  2001.08.13-6 XPMs icons from fvwm development s

-- debconf information:
* fvwm/upgrade/pre_2.5.8: true
Index: fvwm/ewmh_events.c
===
RCS file: /home/cvs/fvwm/fvwm/fvwm/ewmh_events.c,v
retrieving revision 1.57
retrieving revision 1.59
diff -u -r1.57 -r1.59
--- fvwm/ewmh_events.c	7 Aug 2007 20:17:43 -	1.57
+++ fvwm/ewmh_events.c	31 Jan 2008 09:09:45 -	1.59
@@ -185,23 +185,35 @@
 int ewmh_MoveResizeWindow(EWMH_CMD_ARGS)
 {
 	XConfigureRequestEvent cre;
-	int func;
+	int do_reconfigure;
 
 	if (ev == NULL)
 	{
 		return 0;
 	}
-	if (
-		ev-xclient.data.l[3] == fw-g.normal.width 
-		ev-xclient.data.l[4] == fw-g.normal.height)
+	if (fw == NULL)
 	{
-		func = F_MOVE;
+		/* unmanaged window */
+		do_reconfigure = 1;
 	}
 	else
 	{
-		func = F_RESIZE;
+		int func;
+
+		if (
+			ev-xclient.data.l[3] == fw-g.normal.width 
+			ev-xclient.data.l[4] == fw-g.normal.height)
+		{
+			func = F_MOVE;
+		}
+		else
+		{
+			func = F_RESIZE;
+		}
+		do_reconfigure = !!is_function_allowed(
+			func, NULL, fw, RQORIG_PROGRAM, False);
 	}
-	if (!is_function_allowed(func, NULL, fw, RQORIG_PROGRAM, False))
+	if (do_reconfigure == 1)
 	{
 		cre.value_mask = ev-xclient.data.l[0];
 		cre.x = ev-xclient.data.l[1];
@@ -218,12 +230,22 @@
 int ewmh_RestackWindow(EWMH_CMD_ARGS)
 {
 	XConfigureRequestEvent cre;
+	int do_restack;
 
 	if (ev == NULL)
 	{
 		return 0;
 	}
-	if (DO_EWMH_USE_STACKING_HINTS(fw))
+	if (fw == NULL)
+	{
+		/* unmanaged window */
+		do_restack = 1;
+	}
+	else
+	{
+		do_restack = !!DO_EWMH_USE_STACKING_HINTS(fw);
+	}
+	if (do_restack == 1)
 	{
 		cre.value_mask = CWSibling | CWStackMode;
 		cre.above = ev-xclient.data.l[1];


Bug#459761: nvidia-kernel-source: nks 169.07-1 doesn't build with module-assistant

2008-01-08 Thread Philipp Kolmann
Package: nvidia-kernel-source
Version: 169.07-1
Severity: normal

Hi,

it seems that module-assistant doesn't find the archive to build from:

[EMAIL PROTECTED]:/usr/src# module-assistant -t auto-install 
nvidia-kernel-source 
..
Updated infos about 1 packages
Getting source for kernel version: 2.6.23-1-686-bigmem
Kernel headers available in /lib/modules/2.6.23-1-686-bigmem/build
apt-get install build-essential 
Reading package lists... Done
Building dependency tree   
Reading state information... Done
build-essential is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 3 not upgraded.

Done!
unpack 
The source tarball could not be found!
Package nvidia-kernel-source not installed?
Running m-a -f get nvidia-kernel-source may help.
/usr/share/modass/packages/default.sh build KVERS=2.6.23-1-686-bigmem 
KSRC=/lib/modules/2.6.23-1-686-bigmem/build KDREV=2.6.23-2 kdist_image
The source tarball could not be found!
Package nvidia-kernel-source not installed?
Running m-a -f get nvidia-kernel-source may help.
Build failed. Press Return to continue...

Philipp


-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.23-1-686-bigmem (SMP w/4 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages nvidia-kernel-source depends on:
ii  debhelper 5.0.63 helper programs for debian/rules
ii  dpatch2.0.28 patch maintenance system for Debia
ii  make  3.81-3 The GNU version of the make util
ii  sed   4.1.5-5The GNU sed stream editor

Versions of packages nvidia-kernel-source recommends:
ii  devscripts   2.10.12 Scripts to make the life of a Debi
ii  kernel-package   11.001  A utility for building Linux kerne
ii  nvidia-glx   100.14.19-1 NVIDIA binary Xorg driver

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#458563: rssh: Add suggest to makejail

2008-01-01 Thread Philipp Kolmann
Package: rssh
Version: 2.3.2-2
Severity: wishlist

Hi,

I just started to play around with rssh. Now I found a posting, where makejail
is suggested.

Would it be possible to add this as a Suggestion to the rssh package.


thanks
Philipp

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-5-amd64
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages rssh depends on:
ii  debconf [debconf-2.0]  1.5.11etch1   Debian configuration management sy
ii  libc6  2.3.6.ds1-13etch4 GNU C Library: Shared libraries
ii  openssh-server 1:4.3p2-9 Secure shell server, an rshd repla

rssh recommends no packages.

-- debconf information:
* rssh/secnote:
  rssh/update-10:
  rssh/update-config-pre-2.2:
* rssh/chroot_helper_setuid: false



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#454263: xserver-xorg-input-vmmouse: vmmouse not used if specified in xorg.conf

2007-12-05 Thread Philipp Kolmann
On Tue, Dec 04, 2007 at 08:41:19PM +0100, Brice Goglin wrote:
 What if you add a ServerLayout section such as the following?
 
 Section ServerLayout
 Identifier  Default Layout
 Screen  Default Screen
 InputDevice Generic Keyboard
 InputDevice Configured Mouse
 EndSection

I have added it, and now X loades both vmmouse and mouse drivers, unloads them
and defaults back to generic input.

Attached see both xorg.conf and Xorg.0.log

Thanks
Philipp

-- 
The more I learn about people, the more I like my dog!

X.Org X Server 1.4.0
Release Date: 5 September 2007
X Protocol Version 11, Revision 0
Build Operating System: Linux Debian (xorg-server 2:1.4.1~git20071119-1)
Current Operating System: Linux pkt8 2.6.22-3-686 #1 SMP Mon Nov 12 08:32:57 
UTC 2007 i686
Build Date: 20 November 2007  01:48:55AM
 
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/Xorg.0.log, Time: Wed Dec  5 09:36:46 2007
(==) Using config file: /etc/X11/xorg.conf
(==) ServerLayout Default Layout
(**) |--Screen Default Screen (0)
(**) |   |--Monitor Configured Monitor
(==) No device specified for screen Default Screen.
Using the first device section listed.
(**) |   |--Device VMware Inc [VMware SVGA II] PCI Display Adapter
(**) |--Input Device Generic Keyboard
(**) |--Input Device Configured Mouse
(==) Automatically adding devices
(==) Automatically enabling devices
(==) No FontPath specified.  Using compiled-in default.
(WW) The directory /usr/share/fonts/X11/cyrillic does not exist.
Entry deleted from font path.
(WW) `fonts.dir' not found (or not valid) in 
/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType.
Entry deleted from font path.
(Run 'mkfontdir' on /var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType).
(==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi
(==) RgbPath set to /etc/X11/rgb
(==) ModulePath set to /usr/lib/xorg/modules
(==) |--Input Device default pointer
(==) |--Input Device Generic Keyboard
(==) The core pointer device wasn't specified explicitly in the layout.
Using the default mouse configuration.
(==) The core keyboard device wasn't specified explicitly in the layout.
Using the first keyboard device.
(II) Open ACPI successful (/var/run/acpid.socket)
(II) Loader magic: 0x81d7500
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.3
X.Org Video Driver: 2.0
X.Org XInput driver : 2.0
X.Org Server Extension : 0.3
X.Org Font Renderer : 0.5
(II) Loader running on linux
(II) LoadModule: pcidata
(II) Loading /usr/lib/xorg/modules//libpcidata.so
(II) Module pcidata: vendor=X.Org Foundation
compiled for 1.4.0, module version = 1.0.0
ABI class: X.Org Video Driver, version 2.0
(++) using VT number 7

(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,7190 card 15ad,1976 rev 01 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 8086,7191 card , rev 01 class 06,04,00 hdr 01
(II) PCI: 00:07:0: chip 8086,7110 card 15ad,1976 rev 08 class 06,01,00 hdr 80
(II) PCI: 00:07:1: chip 8086,7111 card 15ad,1976 rev 01 class 01,01,8a hdr 00
(II) PCI: 00:07:2: chip 8086,7112 card 15ad,1976 rev 00 class 0c,03,00 hdr 00
(II) PCI: 00:07:3: chip 8086,7113 card 15ad,1976 rev 08 class 06,80,00 hdr 80
(II) PCI: 00:0f:0: chip 15ad,0405 card 15ad,0405 rev 00 class 03,00,00 hdr 00
(II) PCI: 00:10:0: chip 1000,0030 card , rev 01 class 01,00,00 hdr 00
(II) PCI: 00:11:0: chip 15ad,0790 card , rev 02 class 06,04,01 hdr 01
(II) PCI: 02:00:0: chip 1022,2000 card 1022,2000 rev 10 class 02,00,00 hdr 00
(II) PCI: 02:01:0: chip 1274,1371 card 1274,1371 rev 02 class 04,01,00 hdr 00
(II) PCI: 02:02:0: chip 15ad,0770 card 15ad,0770 rev 00 class 0c,03,20 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,2), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
[0] -1  0   0x - 0x (0x1) IX[B]
(II) Bus 0 non-prefetchable memory range:
[0] -1  0   0x - 0x (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
[0] -1  0   0x - 0x (0x0) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x0080 (VGA_EN is cleared)
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:7:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(II) Subtractive PCI-to-PCI bridge:
(II) Bus 2: bridge is at (0:17:0), (0,2,2), BCTRL: 0x0004 

Bug#454263: xserver-xorg-input-vmmouse: vmmouse not used if specified in xorg.conf

2007-12-04 Thread Philipp Kolmann
Package: xserver-xorg-input-vmmouse
Version: 1:12.4.3-1
Severity: normal

Hi,

I just installed a plain new Debian Sid in a vmware and wanted to change
the mouse to vmmouse. But since the new X Server is in Sid, it doesn't
take the vmmouse anymore.

I'd appreciate any hint, what is wrong here.

Additionally, it would be nice, if the vmware as screen driver is
detected, to ask if vmmouse want's to be chosen as mouse in
dpkg-reconfigure xserver-xorg.

Thanks
Philipp Kolmann

-- Package-specific info:
Contents of /var/lib/x11/X.roster:
xserver-xorg

/var/lib/x11/X.md5sum does not exist.

X server symlink status:
lrwxrwxrwx 1 root root 13 2007-12-04 13:03 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1672732 2007-11-20 03:03 /usr/bin/Xorg

Contents of /var/lib/x11/xorg.conf.roster:
xserver-xorg

VGA-compatible devices on PCI bus:
00:0f.0 VGA compatible controller: VMware Inc [VMware SVGA II] PCI Display 
Adapter

/etc/X11/xorg.conf does not match checksum in /var/lib/x11/xorg.conf.md5sum.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 1348 2007-12-04 13:17 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
#  (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the  manual page.
# (Type man  at the shell prompt.)
#
# This file is automatically updated on  package upgrades *only*
# if it has not been modified since the last upgrade of the 
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh 

Section InputDevice
Identifier  Generic Keyboard
Driver  kbd
Option  XkbRules  xorg
Option  XkbModel  pc105
Option  XkbLayout de
Option  XkbVariantnodeadkeys
EndSection

Section InputDevice
Identifier  Configured Mouse
Driver  vmmouse
EndSection

Section Device
Identifier  VMware Inc [VMware SVGA II] PCI Display Adapter
Driver  vmware
BusID   PCI:0:15:0
EndSection

Section Monitor
Identifier  Configured Monitor
Option  DPMS
HorizSync   28-64
VertRefresh 43-60
EndSection

Section Screen
Identifier  Default Screen
Monitor Configured Monitor
DefaultDepth24
SubSection Display
Modes   1280x1024 1280x960 1280x854 1280x800 
1280x768 1200x800 1152x864 1152x768 1024x768 800x600 640x480
EndSubSection
EndSection


Xorg X server log files on system:
-rw-r--r-- 1 root root 28462 2007-12-04 13:29 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file
/var/log/Xorg.0.log:

X.Org X Server 1.4.0
Release Date: 5 September 2007
X Protocol Version 11, Revision 0
Build Operating System: Linux Debian (xorg-server 2:1.4.1~git20071119-1)
Current Operating System: Linux pkt8 2.6.22-3-686 #1 SMP Mon Nov 12 08:32:57 
UTC 2007 i686
Build Date: 20 November 2007  01:48:55AM
 
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/Xorg.0.log, Time: Tue Dec  4 13:29:00 2007
(==) Using config file: /etc/X11/xorg.conf
(==) No Layout section.  Using the first Screen section.
(**) |--Screen Default Screen (0)
(**) |   |--Monitor Configured Monitor
(==) No device specified for screen Default Screen.
Using the first device section listed.
(**) |   |--Device VMware Inc [VMware SVGA II] PCI Display Adapter
(==) |--Input Device default pointer
(==) |--Input Device Generic Keyboard
(==) The core pointer device wasn't specified explicitly in the layout.
Using the default mouse configuration.
(==) The core keyboard device wasn't specified explicitly in the layout.
Using the first keyboard device.
(==) Automatically adding devices
(==) Automatically enabling devices
(==) No FontPath specified.  Using compiled-in default.
(WW) The directory /usr/share/fonts/X11/cyrillic does not exist.
Entry deleted from font path.
(WW) `fonts.dir' not found (or not valid) in 
/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType.
Entry deleted from font path.
(Run 'mkfontdir' on /var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType).
(==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi
(==) RgbPath set to /etc/X11/rgb
(==) ModulePath set to /usr

Bug#454263: xserver-xorg-input-vmmouse: vmmouse not used if specified in xorg.conf

2007-12-04 Thread Philipp Kolmann
On Tue, Dec 04, 2007 at 07:43:43PM +0100, Brice Goglin wrote:
 Philipp Kolmann wrote:
  I just installed a plain new Debian Sid in a vmware and wanted to change
  the mouse to vmmouse. But since the new X Server is in Sid, it doesn't
  take the vmmouse anymore.

 
 Do you mean the vmmouse doesn't move? If so, that would be #442853.

No, I have seen this BR. But as you can see in my log-file, the vmmouse module
is never used but the normal mouse module is loaded. So I have to click into
vmware window each time to catch the mouse in the vmware and press crtl-alt to
release the mouse. It's like you would not have the vmware-tools installed.

Thanks
Philipp

-- 
The more I learn about people, the more I like my dog!



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#451892: Only UTC as timezone

2007-11-26 Thread Philipp Kolmann
Hi,

I have the same problem here on my machine. Since the libc6 update, my machine
always sticks to UTC as time. /etc/timezone got removed and I added it by
hand, but the machine still won't change to MET.

tzselect only prompts me to add a TZ env variable.

looking for any hint,
thanks
Philipp

-- 
The more I learn about people, the more I like my dog!



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#441226: Wishlist: Enable CONFIG_IPV6_MULTIPLE_TABLES to have IPv6 Multihome possibility

2007-09-08 Thread Philipp Kolmann
On Fri, Sep 07, 2007 at 05:55:49PM +0200, maximilian attems wrote:
 On Fri, Sep 07, 2007 at 04:20:40PM +0200, Philipp Kolmann wrote:
  I have 2 Sixxs IPv6 tunnels and would like to do simple source policy
  routing for those 2 interfaces. Therefore I need the
  CONFIG_IPV6_MULTIPLE_TABLES enabled and also CONFIG_IPV6_SUBTREES.
 
 please report back that it works for you ;)

Thanks for your support. Installed latest kernel and it works.

I add a little howto i have written together for reference to others.

Danke nochmals,
Philipp

-- 
The more I learn about people, the more I like my dog!
Howto have 2 or more IPv6 tunnels on one machine
(Multihomed IPv6 Setup)

Since 2.6.19 linux has support for CONFIG_IPV6_MULTIPLE_TABLES (Support
multiple routing tables) and since 2.6.20 CONFIG_IPV6_SUBTREES (Enable routing
by source address or prefix).

With this infrastructure it is possible to have multiple IPv6 addresses on
different subnets (read differnet SixxS tunnels to different POPs) working.
With a normal setup, you would end up with one default route and route all
traffic through this link.

My setup is the following:

One SixxS tunnel Maribor, Slovenia (sixxs-si), and one to Hamburg, Germany
(sixxs-de).

First added a new table to /etc/iproute2/rt_tables:
echo 100 sixxs  /etc/iproute2/rt_tables


In /etc/network/interfaces I have the following setup (Static IPv4 Adress):

auto sixxs-si
iface sixxs-si inet6 v4tunnel
  address 2001:1::2
  netmask 64
  endpoint 212.18.63.73
  ttl 64
  up ip link set mtu 1280 dev sixxs-si
  up ip route add default via 2001:1::1 dev sixxs-si

auto sixxs-de
iface sixxs-de inet6 v4tunnel
  address 2001:::2
  netmask 64
  endpoint 212.224.0.188
  ttl 64
  up ip link set mtu 1280 dev sixxs-de
  up ip -6 rule add from 2001:::2 table sixxs
  up ip -6 route add default via 2001:::1 table sixxs
  down ip -6 rule del table sixxs
  down ip -6 route flush table sixxs


IPv6 adresses are not the actual ones.



Bug#441226: Wishlist: Enable CONFIG_IPV6_MULTIPLE_TABLES to have IPv6 Multihome possibility

2007-09-07 Thread Philipp Kolmann
Package: linux-2.6
Severity: wishlist

Hi,

I saw that 2.6.22 has support for CONFIG_IPV6_MULTIPLE_TABLES which allows you
to specify the routing based on the source address.

I have 2 Sixxs IPv6 tunnels and would like to do simple source policy routing
for those 2 interfaces. Therefore I need the CONFIG_IPV6_MULTIPLE_TABLES enabled
and also CONFIG_IPV6_SUBTREES.

It would be very nice, if you could enable these switches for some next kernel
builds.

Thanks for listening
Philipp Kolmann

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.22-1-686-bigmem (SMP w/4 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#317511: xawtv: No image after playing a .mov file with mplayer

2007-08-14 Thread Philipp Kolmann
On Mon, Aug 13, 2007 at 10:30:10AM +0200, Krzysztof Burghardt wrote:
 Two years ago you have reported bug to Debian package xawtv [1].
 
 I'd like to ask you to check if this problem still exists.
 Thanks in advance.

Since I have switched to tvtime now, I just checked, if xawtv would work.
Seems to work again.

Thanks
Philipp

-- 
The more I learn about people, the more I like my dog!


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#433931: libqt4-gui: with Xinerama: every non-embedded object is displayed on first screen

2007-07-20 Thread Philipp Kolmann
Package: libqt4-gui
Version: 4.3.0-4
Severity: normal

Hi,

Using Skype 1.4 with latest qt4 libs and having 2 screens connected by xinerama 
in nvidia driver, I get all balloon-helps on the first screen only (skype is on 
the second screen).

Tested with qdbusviewer and there (if qdbusviewer is on the second screen) even 
the menudropdowns appear on the first screen.

Might this be related to the following change:

  * Apply qt-copy patches:
* 00_0172-prefer-xrandr-over-xinerama: only trust libxinerama if it is not
  the emulated information coming from xrandr 1.2.

If you need any help in testing this issue, I am very happy to test stuff.

Thanks
Philipp

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.22-1-686-bigmem (SMP w/2 CPU cores)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages libqt4-gui depends on:
ii  fontconfig  2.4.2-1.2generic font configuration library
ii  libaudio2   1.9-2+b1 The Network Audio System (NAS). (s
ii  libc6   2.6-2GNU C Library: Shared libraries
ii  libfontconfig1  2.4.2-1.2generic font configuration library
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libgcc1 1:4.2-20070712-1 GCC support library
ii  libgl1-mesa-glx [libgl1 6.5.2-7  A free implementation of the OpenG
ii  libglib2.0-02.12.13-1The GLib library of C routines
ii  libglu1-mesa [libglu1]  6.5.2-7  The OpenGL utility library (GLU)
ii  libice6 1:1.0.3-2X11 Inter-Client Exchange library
ii  libjpeg62   6b-13The Independent JPEG Group's JPEG 
ii  libmng1 1.0.9-1  Multiple-image Network Graphics li
ii  libpng12-0  1.2.15~beta5-2   PNG library - runtime
ii  libqt4-core 4.3.0-4  Qt 4 core non-GUI functionality ru
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libstdc++6  4.2-20070712-1   The GNU Standard C++ Library v3
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxcursor1 1:1.1.8-2X cursor management library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxfixes3  1:4.0.3-2X11 miscellaneous 'fixes' extensio
ii  libxi6  2:1.1.1-1X11 Input extension library
ii  libxinerama11:1.0.2-1X11 Xinerama extension library
ii  libxrandr2  2:1.2.1-1X11 RandR extension library
ii  libxrender1 1:0.9.2-1X Rendering Extension client libra
ii  libxt6  1:1.0.5-3X11 toolkit intrinsics library
ii  zlib1g  1:1.2.3.3.dfsg-5 compression library - runtime

Versions of packages libqt4-gui recommends:
ii  qt4-qtconfig  4.3.0-4Qt 4 configuration tool

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#424881: linux-image-2.6.18-4-686-bigmem: kernel BUG at mm/slab.c:1572

2007-05-17 Thread Philipp Kolmann
Package: linux-image-2.6.18-4-686-bigmem
Version: 2.6.18.dfsg.1-12
Severity: normal

Hi,

since my machine crashed for the third time with this slab.c bug on the 
console, I thought I post this now:


[ cut here ]
kernel BUG at mm/slab.c:1572!
invalid opcode:  [#1]
SMP 
Modules linked in: vmnet parport_pc parport vmblock vmmon binfmt_misc 
ipt_recent xt_tcpudp ipt_TOS ipt_TCPMSS ipt_LOG ipt_REJECT iptable_nat ip_nat 
iptable_mangle iptable_filter xt_multiport xt_state xt_limit xt_conntrack 
ip_conntrack_ftp ip_conntrack nfnetlink ip_tables x_tables dm_snapshot 
dm_mirror dm_mod it87 ds1621 lm85 hwmon_vid i2c_isa cpufreq_userspace 
powernow_k8 freq_table snd_seq_midi snd_seq_midi_event snd_seq snd_usb_audio 
snd_usb_lib snd_rawmidi snd_seq_device snd_hwdep fuse loop ipv6 sysv i2c_dev 
eeprom rtc sr_mod vfat fat isofs nvidiafb i2c_algo_bit psmouse nvidia 
snd_hda_intel snd_hda_codec serio_raw i2c_nforce2 pcspkr agpgart snd_pcm 
snd_timer snd soundcore i2c_core eth1394 snd_page_alloc tsdev evdev ext3 jbd 
mbcache raid1 md_mod ide_generic ide_cd cdrom usbhid amd74xx generic ohci1394 
ieee1394 ehci_hcd ohci_hcd floppy usbcore forcedeth sata_nv thermal processor 
fan ata_piix libata piix ide_core sd_mod scsi_mod
CPU:1
EIP:0060:[c0155cf5]Tainted: P  VLI
EFLAGS: 00010002   (2.6.18-4-686-bigmem #1) 
EIP is at kmem_freepages+0x4b/0xa4
eax: 8004   ebx: c10cf880   ecx:    edx: 
esi: f7986280   edi: 0001   ebp: c67c4000   esp: f71dfe64
ds: 007b   es: 007b   ss: 0068
Process umount (pid: 22918, ti=f71de000 task=f7f52550 task.ti=f71de000)
Stack: f7986280 ca7c4000 c67c4000  c0155f5a f79072c0 0002 f7986280 
   f79854d4 c0156027 c2851900 001b 0010 f78b4400 f7986280 eb88342c 
   f79072c0 c0155dc4  f7985480 001b f7985480 0246 eb88342c 
Call Trace:
 [c0155f5a] slab_destroy+0x62/0x81
 [c0156027] free_block+0xae/0xed
 [c0155dc4] cache_flusharray+0x76/0xa2
 [c0155ee9] kmem_cache_free+0x5e/0x6d
 [c016df92] destroy_inode+0x36/0x45
 [c016e4cc] dispose_list+0x9c/0xc4
 [c016e766] invalidate_inodes+0xb5/0xca
 [c015eb69] generic_shutdown_super+0x5c/0x109
 [c015ec33] kill_block_super+0x1d/0x2d
 [c015ecdb] deactivate_super+0x52/0x65
 [c0171582] sys_umount+0x1f0/0x218
 [c0161209] sys_stat64+0xf/0x23
 [c014cacc] remove_vma+0x31/0x36
 [c014d37c] do_munmap+0x181/0x19b
 [c01715b5] sys_oldumount+0xb/0xe
 [c0102c0d] sysenter_past_esp+0x56/0x79
Code: 0c c1 e3 05 03 1d f0 b2 36 c0 d3 e7 89 f9 8b 03 f7 d9 c1 e8 1e 8b 04 85 
34 46 31 c0 e8 68 26 ff ff 89 fa eb 15 8b 03 84 c0 78 08 0f 0b 24 06 2f ad 29 
c0 0f ba 33 07 83 c3 20 4a 83 fa ff 75 e5 
EIP: [c0155cf5] kmem_freepages+0x4b/0xa4 SS:ESP 0068:f71dfe64
 BUG: warning at kernel/exit.c:854/do_exit()
 [c011fd42] do_exit+0x44/0x71b
 [c0103f91] die+0x1e2/0x28a
 [c0104014] die+0x265/0x28a
 [c010482d] do_invalid_op+0x0/0x9d
 [c01048be] do_invalid_op+0x91/0x9d
 [c0155cf5] kmem_freepages+0x4b/0xa4
 [c0125c51] run_timer_softirq+0x39/0x151
 [c0143316] free_pages_bulk+0x1b/0x1eb
 [c0155dc4] cache_flusharray+0x76/0xa2
 [c01436af] __pagevec_free+0x14/0x1a
 [c01456b1] release_pages+0x133/0x13b
 [c01037f5] error_code+0x39/0x40
 [c0155cf5] kmem_freepages+0x4b/0xa4
 [c0155f5a] slab_destroy+0x62/0x81
 [c0156027] free_block+0xae/0xed
 [c0155dc4] cache_flusharray+0x76/0xa2
 [c0155ee9] kmem_cache_free+0x5e/0x6d
 [c016df92] destroy_inode+0x36/0x45
 [c016e4cc] dispose_list+0x9c/0xc4
 [c016e766] invalidate_inodes+0xb5/0xca
 [c015eb69] generic_shutdown_super+0x5c/0x109
 [c015ec33] kill_block_super+0x1d/0x2d
 [c015ecdb] deactivate_super+0x52/0x65
 [c0171582] sys_umount+0x1f0/0x218
 [c0161209] sys_stat64+0xf/0x23
 [c014cacc] remove_vma+0x31/0x36
 [c014d37c] do_munmap+0x181/0x19b
 [c01715b5] sys_oldumount+0xb/0xe


I am not sure, how to trigger this, but has happened before already.

Please tell me, if I can be of any help figuring out, whats happening here.

thanks
Philipp Kolmann

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.18-4-686-bigmem (SMP w/2 CPU cores)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages linux-image-2.6.18-4-686-bigmem depends on:
ii  coreutils 5.97-5.3   The GNU core utilities
ii  debconf [debconf-2.0] 1.5.13 Debian configuration management sy
ii  initramfs-tools [linux-initra 0.87b  tools for generating an initramfs
ii  module-init-tools 3.3-pre4-2 tools for managing Linux kernel mo

Versions of packages linux-image-2.6.18-4-686-bigmem recommends:
ii  libc6-i6862.5-7  GNU C Library: Shared libraries [i

-- debconf information:
  
linux-image-2.6.18-4-686-bigmem/postinst/depmod-error-initrd-2.6.18-4-686-bigmem:
 false
  linux-image-2.6.18-4-686-bigmem/preinst/abort-overwrite-2.6.18-4-686-bigmem:
  
linux-image-2.6.18-4-686-bigmem/preinst/bootloader-initrd

Bug#419654: libqt4-core: Please fix QListView bug in 4.2.3

2007-04-17 Thread Philipp Kolmann
Package: libqt4-core
Version: 4.2.3-1
Severity: important
Tags: patch

Hi,

with 4.2.3 QT has a known bug with the QListView:

http://www.trolltech.com/developer/task-tracker/index_html?method=entryid=153635

Could you please add the patch from trolltech to fix this issue.

thanks
Philipp

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.18-4-k7 (SMP w/2 CPU cores)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages libqt4-core depends on:
ii  libc6 2.5-1  GNU C Library: Shared libraries
ii  libdbus-1-3   1.0.2-2simple interprocess messaging syst
ii  libfontconfig12.4.2-1.2  generic font configuration library
ii  libgcc1   1:4.1.1-21 GCC support library
ii  libglib2.0-0  2.12.11-3  The GLib library of C routines
ii  libstdc++64.1.1-21   The GNU Standard C++ Library v3
ii  zlib1g1:1.2.3-13 compression library - runtime

libqt4-core recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#418870: setpwc: Please package new version

2007-04-12 Thread Philipp Kolmann
Package: setpwc
Version: 1.1-4
Severity: wishlist

Hi,

there is a new version available:
http://www.vanheusden.com/setpwc/

Please update the package.

thanks
Philipp

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.18-4-686-bigmem (SMP w/2 CPU cores)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages setpwc depends on:
ii  libc6 2.5-1  GNU C Library: Shared libraries

setpwc recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#417835: IPv6addr fails advertisement

2007-04-11 Thread Philipp Kolmann
Hi Simon,

did you find any time to look into the failing free call during advertisement
of the IPv6 update?

Do you think, there is any chance to fix this?

thanks
Philipp

-- 
The more I learn about people, the more I like my dog!


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#418749: heartbeat-2: IPv6addr fails on unsolicited advertisement packet (libnet_write)

2007-04-11 Thread Philipp Kolmann
Package: heartbeat-2
Version: 2.0.7-2
Severity: important

Hi Simon,

since I have problems with heartbeat-1 and IPv6 I decided I might as well
update to HB-2.

Well it seems that there is the same problem with the IPv6 unsolicited
advertisement packet:

scs2:/etc/heartbeat/resource.d# ./IPv6addr 2001:629:3800:33::2103 start
*** glibc detected *** free(): invalid next size (fast): 0x00504340 ***
/etc/ha.d/resource.d//hto-mapfuncs: line 39: 13610 Aborted $RAOCFPATH start
0
2007/04/11_19:38:24 ERROR: IPv6addr Unknown error
ERROR: IPv6addr Unknown error

I am not sure if this is a heartbeat problem or a libnet one. But since
libnet1 wasn't changed since 3 Jan 2005 I am not too sure on this.

I am very much looking into a solution and am willing to help however I can.

Thanks
Philipp

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-4-amd64
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages heartbeat-2 depends on:
ii  adduser  3.102   Add and remove users and groups
ii  iproute  20061002-3  Professional tools to control the 
ii  iputils- 3:20020927-6Tools to test the reachability of 
ii  libbz2-1 1.0.3-6 high-quality block-sorting file co
ii  libc62.3.6.ds1-13GNU C Library: Shared libraries
ii  libcurl3 7.15.5-1Multi-protocol file transfer libra
ii  libgcryp 1.2.3-2 LGPL Crypto library - runtime libr
ii  libglib2 2.12.4-2The GLib library of C routines
ii  libgnutl 1.4.4-3 the GNU TLS library - runtime libr
ii  libgpg-e 1.4-1   library for common error values an
ii  libltdl3 1.5.22-4A system independent dlopen wrappe
ii  libncurs 5.5-5   Shared libraries for terminal hand
ii  libnet1  1.1.2.1-2   library for the construction and h
ii  libopeni 2.0.7-1 Intelligent Platform Management In
ii  libpam0g 0.79-4  Pluggable Authentication Modules l
ii  libsenso 1:2.10.1-3  library to read temperature/voltag
ii  libsnmp9 5.2.3-7 NET SNMP (Simple Network Managemen
ii  libssl0. 0.9.8c-4SSL shared libraries
ii  libtasn1 0.3.6-2 Manage ASN.1 structures (runtime)
ii  libuuid1 1.39+1.40-WIP-2006.11.14+dfsg-2 universally unique id library
ii  libwrap0 7.6.dbs-13  Wietse Venema's TCP wrappers libra
ii  libxml2  2.6.27.dfsg-1   GNOME XML library
ii  psmisc   22.3-1  Utilities that use the proc filesy
ii  python   2.4.4-2 An interactive high-level object-o
ii  python-c 0.5.12  register and build utility for Pyt
ii  zlib1g   1:1.2.3-13  compression library - runtime

Versions of packages heartbeat-2 recommends:
ii  iptables1.3.6.0debian1-5 administration tools for packet fi
ii  logrotate   3.7.1-3  Log rotation utility
ii  sysklogd [system-log-da 1.4.1-18 System Logging Daemon

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#418749: Problem with amd64?

2007-04-11 Thread Philipp Kolmann
Hi Simon,

since this issue doesn't let me sleep ;-) I dug a bit more into it and it
seems that it's only problematic on amd64 architecture.

Can you verify this?

thanks
Philipp


-- 
The more I learn about people, the more I like my dog!


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#418749: Problem with amd64?

2007-04-11 Thread Philipp Kolmann
On Thu, Apr 12, 2007 at 11:50:02AM +0900, Simon Horman wrote:
 On Wed, Apr 11, 2007 at 09:54:21PM +0200, Philipp Kolmann wrote:
  Hi Simon,
  
  since this issue doesn't let me sleep ;-) I dug a bit more into it and it
  seems that it's only problematic on amd64 architecture.
  
  Can you verify this?
 
 Ok, that would explain why I can't reproduce it on my i386 machine :)
 Its actually a little tricky for me to get access to an amd64 box.
 But perhaps you will have some luck if you recompile both heartbeat
 and libnet with debug.
 
   DEB_BUILD_OPTIONS=nostrip,debug dpkg-buildpackage -us -uc -rfakeroot

Just rebuilt libnet1 with debugging and HB-2 for the moment.
I have set up all Variables to suite the program.

(gdb) run start
Starting program: /usr/lib/ocf/resource.d/heartbeat/IPv6addr start
[Thread debugging using libthread_db enabled]
[New Thread 47516858579680 (LWP 22349)]
*** glibc detected *** free(): invalid next size (fast): 0x00504340
***

Program received signal SIGABRT, Aborted.
[Switching to Thread 47516858579680 (LWP 22349)]
0x2b3760ee107b in raise () from /lib/libc.so.6
(gdb) bt
#0  0x2b3760ee107b in raise () from /lib/libc.so.6
#1  0x2b3760ee284e in abort () from /lib/libc.so.6
#2  0x2b3760f17629 in __fsetlocking () from /lib/libc.so.6
#3  0x2b3760f1e193 in mallopt () from /lib/libc.so.6
#4  0x2b3760f1e21e in free () from /lib/libc.so.6
#5  0x2b37607a9b26 in libnet_write (l=0x5040a0) at libnet_write.c:122
#6  0x00401ccf in send_ua (src_ip=0x7fff4a655df0, if_name=value
optimized out) at IPv6addr.c:418
#7  0x004027a6 in main (argc=value optimized out, argv=value
optimized out) at IPv6addr.c:310

Would it help, if I provide you with access to a amd64 machine?

thanks
Philipp

-- 
The more I learn about people, the more I like my dog!


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#417835: heartbeat: IPv6addr fails on etch

2007-04-05 Thread Philipp Kolmann
On Wed, Apr 04, 2007 at 04:47:32PM -0700, Simon Horman wrote:
 On Wed, Apr 04, 2007 at 09:10:02PM +0200, Philipp Kolmann wrote:
  Package: heartbeat
  Version: 1.2.5-3
  Severity: important
  
  Hi,
  
  today I upgraded my cluster to etch and wanted to test the failover settings
  but this completely failed. After some debugging I found out, that the
  IPv6addr script fails.
  
  Looking deeper into this issue, it seems that the function 
  is_addr6_available
  checks the reply for a ICMPV6_ECHO_REQUEST but fails here:
  
  if (0 != memcmp(local, addr.sin6_addr,sizeof(local))) {
  
  It seems that in etch addr.sin6_addr isn't '::1'.
  
  I tried it with a sarge test system and there it works. (addr.sin6_addr ==
  '::1').
  
  I am not sure if this is a heartbeat or kernel problem, but a fix would be
  very welcome.
  
  Tell me, if you need any info to help fix this issue.
 
 Hi Philipp,
 
 thanks for pointing this out. I did a quick check of
 is_addr6_available() in the linux-ha 2.0 tree and it seems that this
 local check has been removed all together - though I am not sure why. I
 wonder if this would also be a good apprach to take to side-step the
 problem that you have found in 1.2.5.
 
 The (untested) patch belows shows what I am thinking about.
 Is it possible for you to see if this solves the problem that you are
 seeing?
 
 I have CCed the linux-ha-dev list, so the linux-ha developers can
 pass their eyes over this. Its a subscriber only list.
 
 For the linux-ha people, this (Debian) bug can be seen at 
 http://bugs.debian.org/417835, and posting to
 [EMAIL PROTECTED] will log against it.

Hi Simon,

thanks for looking into this. I did some more testing yesterday and today and
found the same like you.

My problem now after disabling the local check is, that in send_ua at if
(libnet_write(l) == -1) I get the following glibc error:

*** glibc detected *** free(): invalid next size (fast): 0x005042e0
***
Aborted

in gdb I get the following bt:

*** glibc detected *** free(): invalid next size (fast): 0x005042e0
***

Program received signal SIGABRT, Aborted.
[Switching to Thread 47816971899424 (LWP 27541)]
0x2b7d413c907b in raise () from /lib/libc.so.6
(gdb) bt
#0  0x2b7d413c907b in raise () from /lib/libc.so.6
#1  0x2b7d413ca84e in abort () from /lib/libc.so.6
#2  0x2b7d413ff629 in __fsetlocking () from /lib/libc.so.6
#3  0x2b7d41406193 in mallopt () from /lib/libc.so.6
#4  0x2b7d4140621e in free () from /lib/libc.so.6
#5  0x2b7d41290b6b in libnet_write () from /usr/lib/libnet.so.1
#6  0x00401c74 in send_ua (src_ip=0x7fff69b7f360, if_name=value
optimized out) at IPv6addr.c:372
#7  0x004026a9 in main (argc=value optimized out, argv=value
optimized out) at IPv6addr.c:261

The IP Adress is set correctly, but the checks to verify fail.

For your information the ldd of the binary:

ldd .libs/IPv6addr 
libplumb.so.0 = /usr/lib/libplumb.so.0 (0x2b43ed141000)
libglib-1.2.so.0 = /usr/lib/libglib-1.2.so.0 (0x2b43ed255000)
libnet.so.1 = /usr/lib/libnet.so.1 (0x2b43ed38)
libc.so.6 = /lib/libc.so.6 (0x2b43ed499000)
libuuid.so.1 = /lib/libuuid.so.1 (0x2b43ed6d6000)
librt.so.1 = /lib/librt.so.1 (0x2b43ed7da000)
libdl.so.2 = /lib/libdl.so.2 (0x2b43ed8e3000)
/lib64/ld-linux-x86-64.so.2 (0x2b43ed029000)
libpthread.so.0 = /lib/libpthread.so.0 (0x2b43ed9e6000)

Thanks for any help
Philipp Kolmann

-- 
The more I learn about people, the more I like my dog!


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#417835: heartbeat: IPv6addr fails on etch

2007-04-04 Thread Philipp Kolmann
Package: heartbeat
Version: 1.2.5-3
Severity: important

Hi,

today I upgraded my cluster to etch and wanted to test the failover settings
but this completely failed. After some debugging I found out, that the
IPv6addr script fails.

Looking deeper into this issue, it seems that the function is_addr6_available
checks the reply for a ICMPV6_ECHO_REQUEST but fails here:

if (0 != memcmp(local, addr.sin6_addr,sizeof(local))) {

It seems that in etch addr.sin6_addr isn't '::1'.

I tried it with a sarge test system and there it works. (addr.sin6_addr ==
'::1').

I am not sure if this is a heartbeat or kernel problem, but a fix would be
very welcome.

Tell me, if you need any info to help fix this issue.

thanks
Philipp Kolmann

-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-4-amd64
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages heartbeat depends on:
ii  adduser  3.102   Add and remove users and groups
ii  iproute  20061002-3  Professional tools to control the 
ii  iputils- 3:20020927-6Tools to test the reachability of 
ii  libc62.3.6.ds1-13GNU C Library: Shared libraries
ii  libglib1 1.2.10-17   The GLib library of C routines
ii  libnet1  1.1.2.1-2   library for the construction and h
ii  libpils0 1.2.5-3 Plugin and Interface Loading Syste
ii  libsenso 1:2.10.1-3  library to read temperature/voltag
ii  libsnmp9 5.2.3-7 NET SNMP (Simple Network Managemen
ii  libssl0. 0.9.8c-4SSL shared libraries
ii  libstoni 1.2.5-3 Interface for remotely powering do
ii  libuuid1 1.39+1.40-WIP-2006.11.14+dfsg-2 universally unique id library
ii  libwrap0 7.6.dbs-13  Wietse Venema's TCP wrappers libra
ii  psmisc   22.3-1  Utilities that use the proc filesy
ii  python   2.4.4-2 An interactive high-level object-o
ii  python-c 0.5.12  register and build utility for Pyt

Versions of packages heartbeat recommends:
ii  iptables1.3.6.0debian1-5 administration tools for packet fi
ii  logrotate   3.7.1-3  Log rotation utility
ii  sysklogd [system-log-da 1.4.1-18 System Logging Daemon

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#417835: Additional Info

2007-04-04 Thread Philipp Kolmann
Additional checking into this issue, I found out, that the difference in sarge
and etch is, that in sarge the ICMPv6 Echo Request ist sent from ::1 and in
etch it's sent from argv[1] (=IPv6 address I want to set).

Therefore the last check in is_addr6_available is failing, since it checks the
ICMPv6 Echo Reply to come from ::1 which it doesn't.

I tried rewriting this check, but didn't succeed. Would you have a patch
available, so that I can rebuild the binary.

Thanks
Philipp Kolmann


-- 
The more I learn about people, the more I like my dog!


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#416266: freeradius: rlm_perl has symbol lookup errors when loading additional perl modules

2007-03-26 Thread Philipp Kolmann
Package: freeradius
Version: 1.1.3-3
Severity: important

Hi,

I am trying to get freeradius to do some post-auth stuff with an
external perl script I wrote. This script uses LWP::Simple to check if
the User is allowed access or denied.

Also using Data::Dumper raises the same problem:

moria:~# freeradius -X
[...]
Module: Loaded perl 
 perl: module = /etc/freeradius/dtcheck.pm
 perl: func_authorize = authorize
 perl: func_authenticate = authenticate
 perl: func_accounting = accounting
 perl: func_preacct = preacct
 perl: func_checksimul = checksimul
 perl: func_detach = detach
 perl: func_xlat = xlat
 perl: func_pre_proxy = pre_proxy
 perl: func_post_proxy = post_proxy
 perl: func_post_auth = post_auth
 perl: perl_flags = (null)
 perl: func_start_accounting = (null)
 perl: func_stop_accounting = (null)
Can't load '/usr/lib/perl/5.8/auto/Data/Dumper/Dumper.so' for module 
Data::Dumper: /usr/lib/perl/5.8/auto/
Data/Dumper/Dumper.so: undefined symbol: Perl_sv_cmp at 
/usr/lib/perl/5.8/XSLoader.pm line 70.
 at /usr/lib/perl/5.8/Data/Dumper.pm line 36
Compilation failed in require at /etc/freeradius/dtcheck.pm line 6.
BEGIN failed--compilation aborted at /etc/freeradius/dtcheck.pm line 6.
rlm_perl: perl_parse failed: /etc/freeradius/dtcheck.pm not found or has syntax 
errors.  
radiusd.conf[1719]: dtcheck: Module instantiation failed. 
radiusd.conf[2133] Unknown module dtcheck.
radiusd.conf[2093] Failed to parse post-auth section. 

The Problem seems to be, that /usr/lib/freeradius/rlm_perl.so is linked
against /usr/lib/libperl.so.5.8 but perl uses another libperl:

perl -V | grep libperl:
libperl=libperl.so.5.8.8

When I start freeradius with
LD_PRELOAD=/usr/lib/libperl.so.5.8.8 freeradius -X 
it starts and works.

Could you please check this issue. Searching the web it seems that this
has been a Problem in Sarge as well.

thanks
Philipp

-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-4-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages freeradius depends on:
ii  adduser 3.102Add and remove users and groups
ii  libc6   2.3.6.ds1-13 GNU C Library: Shared libraries
ii  libgdbm31.8.3-3  GNU dbm database routines (runtime
ii  libltdl31.5.22-4 A system independent dlopen wrappe
ii  libpam0g0.79-4   Pluggable Authentication Modules l
ii  libperl5.8  5.8.8-7  Shared Perl library
ii  lsb-base3.1-23.1 Linux Standard Base 3.1 init scrip

freeradius recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#416266: freeradius: rlm_perl has symbol lookup errors when loading additional perl modules

2007-03-26 Thread Philipp Kolmann
On Mon, Mar 26, 2007 at 01:06:43PM +0100, Stephen Gran wrote:
 This one time, at band camp, Philipp Kolmann said:
  The Problem seems to be, that /usr/lib/freeradius/rlm_perl.so is linked
  against /usr/lib/libperl.so.5.8 but perl uses another libperl:
  
  perl -V | grep libperl:
  libperl=libperl.so.5.8.8
  
  When I start freeradius with
  LD_PRELOAD=/usr/lib/libperl.so.5.8.8 freeradius -X 
  it starts and works.
 
 lrwxrwxrwx 1 root root 16 2007-03-18 13:25 /usr/lib/libperl.so.5.8 - 
 libperl.so.5.8.8
 
 They are the same file, here.

lrwxrwxrwx 1 root root  14 Mar 26 12:56 /usr/lib/libperl.so - 
libperl.so.5.8
lrwxrwxrwx 1 root root  16 Mar 26 09:36 /usr/lib/libperl.so.5.8 - 
libperl.so.5.8.8
-rw-r--r-- 1 root root 1153524 Dec  7 00:30 /usr/lib/libperl.so.5.8.8

Here as well. That's what really disturbs me.

 Please send the output of 
 ldd /usr/bin/perl 
 and 
 ldd /usr/lib/freeradius/rlm_perl.so

moria:~# ldd /usr/bin/perl
linux-gate.so.1 =  (0xe000)
libdl.so.2 = /lib/tls/libdl.so.2 (0xb7fa6000)
libm.so.6 = /lib/tls/libm.so.6 (0xb7f81000)
libpthread.so.0 = /lib/tls/libpthread.so.0 (0xb7f6e000)
libc.so.6 = /lib/tls/libc.so.6 (0xb7e3c000)
libcrypt.so.1 = /lib/tls/libcrypt.so.1 (0xb7e0e000)
/lib/ld-linux.so.2 (0xb7fb3000)

moria:~# ldd /usr/lib/freeradius/rlm_perl.so
linux-gate.so.1 =  (0xe000)
libradius-1.1.3.so = /usr/lib/freeradius/libradius-1.1.3.so 
(0xb7fbc000)
libperl.so.5.8 = /usr/lib/libperl.so.5.8 (0xb7e99000)
libdl.so.2 = /lib/tls/libdl.so.2 (0xb7e95000)
libm.so.6 = /lib/tls/libm.so.6 (0xb7e7)
libc.so.6 = /lib/tls/libc.so.6 (0xb7d3e000)
libcrypt.so.1 = /lib/tls/libcrypt.so.1 (0xb7d1)
libnsl.so.1 = /lib/tls/libnsl.so.1 (0xb7cf9000)
libresolv.so.2 = /lib/tls/libresolv.so.2 (0xb7ce6000)
libpthread.so.0 = /lib/tls/libpthread.so.0 (0xb7cd4000)
/lib/ld-linux.so.2 (0x8000)

moria:~# ldd /usr/lib/libperl.so.5.8.8 
linux-gate.so.1 =  (0xe000)
libdl.so.2 = /lib/tls/libdl.so.2 (0xb7e2f000)
libm.so.6 = /lib/tls/libm.so.6 (0xb7e09000)
libpthread.so.0 = /lib/tls/libpthread.so.0 (0xb7df7000)
libc.so.6 = /lib/tls/libc.so.6 (0xb7cc5000)
libcrypt.so.1 = /lib/tls/libcrypt.so.1 (0xb7c97000)
/lib/ld-linux.so.2 (0x8000)

Thanks for looking into this issue.
Philipp


-- 
The more I learn about people, the more I like my dog!


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#416266: freeradius: rlm_perl has symbol lookup errors when loading additional perl modules

2007-03-26 Thread Philipp Kolmann
On Mon, Mar 26, 2007 at 01:56:40PM +0100, Stephen Gran wrote:
 This one time, at band camp, Philipp Kolmann said:
 Huh.  Interestingly, etch's perl doesn't seem to be linked against
 libperl.  I wonder if that's intended.

Also sid's perl isn't linked to libperl Installed freeradius on my
workstation running sid and there I have the same problem.

 Well, just to be sure that you
 actually have the symbol that is failing to be found, please post the
 output of:
 
 [EMAIL PROTECTED]:~$ objdump -T /usr/lib/libperl.so | grep Perl_sv_cmp
 0009b030 gDF .text  038d  BasePerl_sv_cmp
 0009b3c0 gDF .text  0104  BasePerl_sv_cmp_locale
 [EMAIL PROTECTED]:~$ objdump -T /usr/bin/perl | grep Perl_sv_cmp
 080d4ba0 gDF .text  0372  BasePerl_sv_cmp
 080d4f20 gDF .text  00f4  BasePerl_sv_cmp_locale

moria:~# objdump -T /usr/lib/libperl.so | grep Perl_sv_cmp
0009b030 gDF .text  038d  BasePerl_sv_cmp
0009b3c0 gDF .text  0104  BasePerl_sv_cmp_locale
moria:~# objdump -T /usr/bin/perl | grep Perl_sv_cmp
080d4ba0 gDF .text  0372  BasePerl_sv_cmp
080d4f20 gDF .text  00f4  BasePerl_sv_cmp_locale

You can check with the following config:

/etc/freeradius/radiusd.conf:
modules {
[...]
perl dtcheck {
module = /etc/freeradius/dtcheck.pm
func_post_auth = post_auth

max_clones = 32
start_clones = 32
min_spare_clones = 0
max_spare_clones = 32
cleanup_delay = 5
max_request_per_clone = 0
}
}
[...]
post-auth {
[...]
dtcheck
}
}

and a minimal /etc/freeradius/dtcheck.pm:


use strict;

# This is very important ! Without this script will not get the filled
# hashesh from main.
use vars qw(%RAD_REQUEST %RAD_REPLY %RAD_CHECK);
use Data::Dumper;



should crash.

Thanks
Philipp

-- 
The more I learn about people, the more I like my dog!


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#412784: vpnc: New Version has a little bug with Target networks

2007-02-27 Thread Philipp Kolmann
Package: vpnc
Version: 0.4.0-1
Severity: normal
Tags: patch

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

with the recent update to 0.4.0 there is a little bug in the vpnc-setup
script. 

Attached find a patch, that fixes it for me.

thanks
Philipp Kolmann

- -- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-4-686
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages vpnc depends on:
ii  libc6   2.3.6.ds1-13 GNU C Library: Shared libraries
ii  libgcrypt11 1.2.3-2  LGPL Crypto library - runtime libr
ii  libgpg-error0   1.4-2library for common error values an

vpnc recommends no packages.

- -- no debconf information

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFF5Rv7b3w5kbZgJjQRAr9rAKDauKhPX3585jjUwvAiFYlWgdcX1QCeJhpG
SWl/8hfBTK8fsO/X1Sk2zDs=
=I3EG
-END PGP SIGNATURE-
--- vpnc-script_orig2007-02-28 07:00:41.0 +0100
+++ vpnc-script 2007-02-28 07:02:57.0 +0100
@@ -377,12 +377,12 @@
 if test $TARGET_NETWORKS ; then
i=0
for network in $TARGET_NETWORKS ; do
-  eval CISCO_SPLIT_INC_$i_ADDR=`echo $network | cut -f1 -d/`
-  eval CISCO_SPLIT_INC_$i_MASKLEN=`echo $network | cut -f2 -d/`
+  eval CISCO_SPLIT_INC_${i}_ADDR=`echo $network | cut -f1 -d/`
+  eval CISCO_SPLIT_INC_${i}_MASKLEN=`echo $network | cut -f2 -d/`
   # missing, code is for iproute path only: 
CISCO_SPLIT_INC_0_MASK=255.255.255.255
-  eval CISCO_SPLIT_INC_$i_PROTOCOL=0
-  eval CISCO_SPLIT_INC_$i_SPORT=0
-  eval CISCO_SPLIT_INC_$i_DPORT=0
+  eval CISCO_SPLIT_INC_${i}_PROTOCOL=0
+  eval CISCO_SPLIT_INC_${i}_SPORT=0
+  eval CISCO_SPLIT_INC_${i}_DPORT=0
   i=`expr $i + 1`
done
CISCO_SPLIT_INC=$i


Bug#398454: distributed-net: on AMD64 restart doesn't work because stop exits non zero

2006-11-13 Thread Philipp Kolmann
Package: distributed-net
Version: 2.9012.497-3
Severity: normal

hi,

running on an Opteron or Xeon with amd64 distributed-net stops every
sunday during log-rotiation, because it exists non-zero, but exit-code
143.

If the bug can't be solved, at the moment, please do a set +e and set -e
around the stop command.

thanks
Philipp

-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17-2-amd64
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages distributed-net depends on:
ii  bind9-host [host] 1:9.3.2-P1.0-1 Version of 'host' bundled with BIN
ii  libc6 2.3.6.ds1-7GNU C Library: Shared libraries

Versions of packages distributed-net recommends:
ii  logrotate 3.7.1-3Log rotation utility

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#256285: rdesktop and xinerama support

2006-10-20 Thread Philipp Kolmann
Hi,

thanks for the update. But rdesktop still spans over the whole screen.

It may be interesting to have it span accross, so I think it might be useful
to add a new option for xinerama to only span accross one screen.

thanks
Philipp

-- 
The more I learn about people, the more I like my dog!


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#388805: libapache2-mod-auth-radius missing

2006-09-22 Thread Philipp Kolmann
Package: apache2
Severity: wishlist

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

I want to use the mod-auth-radius module for apache2 but can't find a package
with this module. There is only libapache-mod-auth-radius for apache 1.3.

Would it be possible to package this module as well for apache 2.0?

thanks
Philipp Kolmann

- -- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17-2-k7
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)

iD8DBQFFFAlkb3w5kbZgJjQRAgwdAKCs15bLm0puusLaRzWgopHpwVlpMACgvuRP
tn0rjqvYSrERyzTYpgs/3ho=
=HVBB
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#388373: gdebi: In Xinerama mode only first display is darkened for root-password entry box

2006-09-20 Thread Philipp Kolmann
Package: gdebi
Version: 0.1.6
Severity: normal

I have a two-monitor setup using nvidia-drivers with xinerama support. When I
install a package with gdebi-gtk and get prompted for the root password, the
first screen is darkened, but the second stays the same.

I think it would make sense to also darken the second (and third, etc) monitor
as well.

Thanks
Philipp

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17-2-k7
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages gdebi depends on:
ii  gksu  1.9.4-1graphical frontend to su
ii  gnome-icon-theme  2.14.2-2   GNOME Desktop icon theme
ii  python2.4.3-11   An interactive high-level object-o
ii  python-apt0.6.19 Python interface to libapt-pkg
ii  python-glade2 2.8.6-5GTK+ bindings: Glade support
ii  python-gtk2   2.8.6-5Python bindings for the GTK+ widge
ii  python-support0.5.1  automated rebuilding support for p
ii  python-vte1:0.12.2-4 Python bindings for the VTE widget

gdebi recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#386971: libswt-gtk-3.2-java: Needs a rebuild since libswt-gtk-3.2-jni 3.2-1+b1 hit unstable

2006-09-11 Thread Philipp Kolmann
Package: libswt-gtk-3.2-java
Version: 3.2-1
Severity: important

hi,

I want to install azureus and it depends on libswt-gtk-3.2-java but there are
dependency problems:

apt-get install libswt-gtk-3.2-java
[...]
The following packages have unmet dependencies:
  libswt-gtk-3.2-java: Depends: libswt-gtk-3.2-jni (= 3.2-1) but 3.2-1+b1 is
  to be installed

Please rescadule a build of libswt-gtk-3.2-java to update the versioned
dependency.

Thanks
Philipp

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17-2-k7
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#332228: New ipt_recent module released; please backport

2006-07-06 Thread Philipp Kolmann
Hi,

Patrick McHardy rewrote the ipt_recent module and the new module code got
accepted for 2.6.18-rc1.

Would it be possible to backport it for 2.6.8?

attached is the new module code.

thanks
Philipp


-- 
A byte walks into a bar and orders a pint. Bartender asks him What's wrong?
Byte says Parity error. Bartender nods and says Yeah, I thought you looked
a bit off.
/*
 * Copyright (c) 2006 Patrick McHardy [EMAIL PROTECTED]
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 *
 * This is a replacement of the old ipt_recent module, which carried the
 * following copyright notice:
 *
 * Author: Stephen Frost [EMAIL PROTECTED]
 * Copyright 2002-2003, Stephen Frost, 2.5.x port by [EMAIL PROTECTED]
 */
#include linux/init.h
#include linux/moduleparam.h
#include linux/proc_fs.h
#include linux/seq_file.h
#include linux/string.h
#include linux/ctype.h
#include linux/list.h
#include linux/random.h
#include linux/jhash.h
#include linux/bitops.h
#include linux/skbuff.h
#include linux/inet.h

#include linux/netfilter_ipv4/ip_tables.h
#include linux/netfilter_ipv4/ipt_recent.h

MODULE_AUTHOR(Patrick McHardy [EMAIL PROTECTED]);
MODULE_DESCRIPTION(IP tables recently seen matching module);
MODULE_LICENSE(GPL);

static unsigned int ip_list_tot = 100;
static unsigned int ip_pkt_list_tot = 20;
static unsigned int ip_list_hash_size = 0;
static unsigned int ip_list_perms = 0644;
module_param(ip_list_tot, uint, 0400);
module_param(ip_pkt_list_tot, uint, 0400);
module_param(ip_list_hash_size, uint, 0400);
module_param(ip_list_perms, uint, 0400);
MODULE_PARM_DESC(ip_list_tot, number of IPs to remember per list);
MODULE_PARM_DESC(ip_pkt_list_tot, number of packets per IP to remember (max. 255));
MODULE_PARM_DESC(ip_list_hash_size, size of hash table used to look up IPs);
MODULE_PARM_DESC(ip_list_perms, permissions on /proc/net/ipt_recent/* files);


struct recent_entry {
	struct list_head	list;
	struct list_head	lru_list;
	u_int32_t		addr;
	u_int8_t		ttl;
	u_int8_t		index;
	u_int16_t		nstamps;
	unsigned long		stamps[0];
};

struct recent_table {
	struct list_head	list;
	char			name[IPT_RECENT_NAME_LEN];
#ifdef CONFIG_PROC_FS
	struct proc_dir_entry	*proc;
#endif
	unsigned int		refcnt;
	unsigned int		entries;
	struct list_head	lru_list;
	struct list_head	iphash[0];
};

static LIST_HEAD(tables);
static DEFINE_SPINLOCK(recent_lock);
static DEFINE_MUTEX(recent_mutex);

#ifdef CONFIG_PROC_FS
static struct proc_dir_entry	*proc_dir;
static struct file_operations	recent_fops;
#endif

static u_int32_t hash_rnd;
static int hash_rnd_initted;

static unsigned int recent_entry_hash(u_int32_t addr)
{
	if (!hash_rnd_initted) {
		get_random_bytes(hash_rnd, 4);
		hash_rnd_initted = 1;
	}
	return jhash_1word(addr, hash_rnd)  (ip_list_hash_size - 1);
}

static struct recent_entry *
recent_entry_lookup(const struct recent_table *table, u_int32_t addr, u_int8_t ttl)
{
	struct recent_entry *e;
	unsigned int h;

	h = recent_entry_hash(addr);
	list_for_each_entry(e, table-iphash[h], list)
		if (e-addr == addr  (ttl == e-ttl || !ttl || !e-ttl))
			return e;
	return NULL;
}

static void recent_entry_remove(struct recent_table *t, struct recent_entry *e)
{
	list_del(e-list);
	list_del(e-lru_list);
	kfree(e);
	t-entries--;
}

static struct recent_entry *
recent_entry_init(struct recent_table *t, u_int32_t addr, u_int8_t ttl)
{
	struct recent_entry *e;

	if (t-entries = ip_list_tot) {
		e = list_entry(t-lru_list.next, struct recent_entry, lru_list);
		recent_entry_remove(t, e);
	}
	e = kmalloc(sizeof(*e) + sizeof(e-stamps[0]) * ip_pkt_list_tot,
		GFP_ATOMIC);
	if (e == NULL)
		return NULL;
	e-addr  = addr;
	e-ttl   = ttl;
	e-stamps[0] = jiffies;
	e-nstamps   = 1;
	e-index = 1;
	list_add_tail(e-list, t-iphash[recent_entry_hash(addr)]);
	list_add_tail(e-lru_list, t-lru_list);
	t-entries++;
	return e;
}

static void recent_entry_update(struct recent_table *t, struct recent_entry *e)
{
	e-stamps[e-index++] = jiffies;
	if (e-index  e-nstamps)
		e-nstamps = e-index;
	e-index %= ip_pkt_list_tot;
	list_move_tail(e-lru_list, t-lru_list);
}

static struct recent_table *recent_table_lookup(const char *name)
{
	struct recent_table *t;

	list_for_each_entry(t, tables, list)
		if (!strcmp(t-name, name))
			return t;
	return NULL;
}

static void recent_table_flush(struct recent_table *t)
{
	struct recent_entry *e, *next;
	unsigned int i;

	for (i = 0; i  ip_list_hash_size; i++) {
		list_for_each_entry_safe(e, next, t-iphash[i], list)
			recent_entry_remove(t, e);
	}
}

static int
ipt_recent_match(const struct sk_buff *skb,
		 const struct net_device *in, const struct net_device *out,
		 const struct xt_match *match, const void *matchinfo,
		 int offset, unsigned int protoff, int *hotdrop)
{
	const struct ipt_recent_info *info = matchinfo;
	struct recent_table *t;
	struct recent_entry *e;
	u_int32_t addr;
	u_int8_t ttl;
	

Bug#256285: I can provide testing

2006-06-08 Thread Philipp Kolmann
hi,

just came across this bug and I thought that I might offer testing.

I have a xinerama setup and a W2k3 server availeable.

I have tested it with Version 1.4.1 and -f and it spans across the whole
screen on both monitors.

thanks
Philipp


-- 
A byte walks into a bar and orders a pint. Bartender asks him What's wrong?
Byte says Parity error. Bartender nods and says Yeah, I thought you looked
a bit off.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#366144: xawtv doesn't work since xorg 7

2006-05-05 Thread Philipp Kolmann
Package: xawtv
Version: 3.94-1.1
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

xawtv 3.94 doesn't work anymore with xorg 7. The picture is just garbage.

Tried xawtv 4 shnapshot xawtv-20060317-134453 and this works. tvtime works as
well.

thanks
Philipp

- -- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-1-k7
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages xawtv depends on:
ii  debconf 1.5.0Debian configuration management sy
ii  libasound2  1.0.11-3 ALSA library
ii  libc6   2.3.6-7  GNU C Library: Shared libraries
ii  libfontconfig1  2.3.2-5.1generic font configuration library
ii  libfreetype62.1.10-3 FreeType 2 font engine, shared lib
ii  libgl1-mesa-glx [libgl1]6.4.1-0.4A free implementation of the OpenG
ii  libice6 1:1.0.0-3X11 Inter-Client Exchange library
ii  libjpeg62   6b-12The Independent JPEG Group's JPEG 
ii  liblircclient0  0.7.2-2  LIRC client library
ii  libncurses5 5.5-2Shared libraries for terminal hand
ii  libpng12-0  1.2.8rel-5.1 PNG library - runtime
ii  libsm6  1:1.0.0-4X11 Session Management library
ii  libx11-62:1.0.0-6X11 client-side library
ii  libxaw7 1:1.0.1-5X11 Athena Widget library
ii  libxext61:1.0.0-4X11 miscellaneous extension librar
ii  libxft2 2.1.8.2-7FreeType-based font drawing librar
ii  libxinerama11:1.0.1-4X11 Xinerama extension library
ii  libxmu6 1:1.0.1-3X11 miscellaneous utility library
ii  libxpm4 1:3.5.4.2-3  X11 pixmap library
ii  libxrandr2  2:1.1.0.2-4  X11 RandR extension library
ii  libxrender1 1:0.9.0.2-4  X Rendering Extension client libra
ii  libxt6  1:1.0.0-4X11 toolkit intrinsics library
ii  libxv1  1:1.0.1-3X11 Video extension library
ii  libxxf86dga12:1.0.0-3X11 Direct Graphics Access extensi
ii  libxxf86vm1 1:1.0.0-4X11 XFree86 video mode extension l
ii  libzvbi00.2.19-1 video Blank Interval decoder (VBI)
ii  pia 3.94-1.1 movie player
ii  scantv  3.94-1.1 scan TV channels for stations
ii  v4l-conf3.94-1.1 tool to configure video4linux driv
ii  xawtv-plugins   3.94-1.1 plugins for xawtv and motv
ii  xlibmesa-gl 1:7.0.16 transitional package for Debian et
ii  xutils  1:7.0.0-3X Window System utility programs
ii  zlib1g  1:1.2.3-11   compression library - runtime

xawtv recommends no packages.

- -- debconf information:
  xawtv/freqtab:
  xawtv/channel-scan: true
  xawtv/tvnorm:
  xawtv/makedev: true
  xawtv/build-config: false

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.3 (GNU/Linux)

iD8DBQFEW2zrb3w5kbZgJjQRAjnNAKD4eUq4sqY+/ZucqgMhOXL+LjqBdACgsh01
YdrZwPbuNbosR+kzv7/zusw=
=9iq4
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#362560: xserver-xorg: xorg 7: v4l module not available

2006-04-14 Thread Philipp Kolmann
Package: xserver-xorg
Version: 1:7.0.10
Severity: important

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

since xorg7 hit unstable I can't use xawtv anymore, since v4l module is not
available.

Please add this module.

thanks
Philipp Kolmann

- -- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-1-k7
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages xserver-xorg depends on:
ii  debconf1.4.72Debian configuration management sy
ii  discover1  1.7.18hardware identification system
ii  laptop-detect  0.12.1attempt to detect a laptop
ii  mdetect0.5.2.1   mouse device autodetection tool
ii  nvidia-glx [xserver-xorg-v 1.0.8756-4NVIDIA binary XFree86 4.x driver
ii  x11-common 1:7.0.10  X Window System (X.Org) infrastruc
ii  xresprobe  0.4.23debian1 X Resolution Probe
ii  xserver-xorg-core  1:1.0.2-3 X.Org X server -- core server
ii  xserver-xorg-input-all 1:7.0.10  the X.Org X server -- input driver
ii  xserver-xorg-input-evdev [ 1:1.0.0.5-2   X.Org X server -- evdev input driv
ii  xserver-xorg-input-kbd [xs 1:1.0.1.3-2   X.Org X server -- keyboard input d
ii  xserver-xorg-input-mouse [ 1:1.0.4-2 X.Org X server -- mouse input driv

Versions of packages xserver-xorg recommends:
ii  xkb-data  0.8-4  X Keyboard Extension (XKB) configu

- -- debconf information:
  xserver-xorg/multiple_possible_x-drivers:
* xserver-xorg/config/monitor/use_sync_ranges: true
* xserver-xorg/config/inputdevice/mouse/port: /dev/input/mice
  xserver-xorg/config/monitor/lcd: false
  xserver-xorg/config/doublequote_in_string_error:
  xserver-xorg/config/monitor/screen-size: 17 inches (430 mm)
* shared/default-x-server: xserver-xorg
* xserver-xorg/autodetect_monitor: true
* xserver-xorg/config/inputdevice/mouse/protocol: ImPS/2
  shared/no_known_x-server:
* xserver-xorg/config/display/default_depth: 24
* xserver-xorg/config/display/modes: 1600x1200
  xserver-xorg/config/device/bus_id_error:
  xserver-xorg/config/inputdevice/keyboard/internal:
* xserver-xorg/config/monitor/vert-refresh: 56-75
* xserver-xorg/config/inputdevice/keyboard/options:
* xserver-xorg/autodetect_keyboard: false
* xserver-xorg/config/inputdevice/mouse/zaxismapping: true
* xserver-xorg/config/device/use_fbdev: false
* xserver-xorg/config/inputdevice/keyboard/variant: nodeadkeys
  xserver-xorg/config/nonnumeric_string_error:
  xserver-xorg/config/fontpath/fontserver:
* xserver-xorg/config/inputdevice/keyboard/layout: de
* xserver-xorg/config/modules: bitmap, dbe, ddc, extmod, freetype, glx, int10, 
record, type1, v4l, vbe
* xserver-xorg/config/monitor/identifier: Generic Monitor
* xserver-xorg/config/inputdevice/mouse/emulate3buttons: false
* xserver-xorg/autodetect_mouse: true
* xserver-xorg/config/monitor/horiz-sync: 30-81
* xserver-xorg/config/device/video_ram:
  xserver-xorg/config/monitor/range_input_error:
* xserver-xorg/config/write_dri_section: true
* xserver-xorg/config/inputdevice/keyboard/model: pc105
* xserver-xorg/config/device/driver: nvidia
* xserver-xorg/config/device/identifier: NVIDIA Corporation NV34 [GeForce FX 
5200]
* xserver-xorg/config/monitor/selection-method: Advanced
  xserver-xorg/config/null_string_error:
  shared/multiple_possible_x-servers:
* xserver-xorg/config/device/bus_id: PCI:3:0:0
* xserver-xorg/config/write_files_section: true
* xserver-xorg/autodetect_video_card: true
* xserver-xorg/config/monitor/mode-list: 1600x1200 @ 60Hz
* xserver-xorg/config/inputdevice/keyboard/rules: xorg

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.3 (GNU/Linux)

iD8DBQFEP0gcb3w5kbZgJjQRAoYsAJsECwcDrEFmgZ1Swj3YXPdWVRrhcwCdEK8z
7n9QMfI9kIx9RnyZtQrMGMI=
=XQ/c
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#350710: [Yaird-devel] Bug#350710: yaird: With degenerated RAID1 boot fails trying to access second raid disk

2006-02-01 Thread Philipp Kolmann
On Tue, Jan 31, 2006 at 11:06:05AM -0500, RobRoy Kelly wrote:
 goto Template.cfg  find the mdadm -assemble line and add --add that should
 start a degraded raid 1 on boot

I know I can do that and also boot with ydebug and do it by hand. What I would
like to see is fairlure proof code that can handle such things because I think
that Debian should be able to handle such occasions without hassling with dash
etc...

just my 2 cents,
if you don't think so, please close this report

Philipp

-- 
A byte walks into a bar and orders a pint. Bartender asks him What's wrong?
Byte says Parity error. Bartender nods and says Yeah, I thought you looked
a bit off.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#350710: yaird: With degenerated RAID1 boot fails trying to access second raid disk

2006-01-31 Thread Philipp Kolmann
Package: yaird
Version: 0.0.12-3
Severity: normal


hi,

I have a raid1 /root and a disk failed. I rebooted and took the faild disk out
to get it replaced. I wanted to use my box with only one disk but the
init-image fails to boot, because it want's to access the second disk which is
not available.

There should be some possibility to overcome this situation since it may occur
more often.

This bug might be related to #336514

thanks
Philipp Kolmann

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-k7-smp
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages yaird depends on:
ii  cpio 2.6-10  GNU cpio -- a program to manage ar
ii  dash 0.5.3-2 The Debian Almquist Shell
ii  libc62.3.5-12GNU C Library: Shared libraries an
ii  libhtml-template-perl2.8-1   HTML::Template : A module for usin
ii  libparse-recdescent-perl 1.94.free-1 Generates recursive-descent parser
ii  perl 5.8.7-10Larry Wall's Practical Extraction 

yaird recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#350404: sensors-detect: recommend i2c-dev module

2006-01-29 Thread Philipp Kolmann
Package: lm-sensors
Version: 1:2.9.2-7
Severity: wishlist
Tags: patch

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

when using sensors-detect without the i2c-dev module loaded and udev, you
don't get any results, since the /dev/i2c* nodes are missing. 

Attached a patch, which recommends to load the i2c-dev module.
Please include
Thanks
Philipp Kolmann

- -- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-k7
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages lm-sensors depends on:
ii  libc62.3.5-12GNU C Library: Shared libraries an
ii  libsensors3  1:2.9.2-7   library to read temperature/voltag
ii  makedev  2.3.1-79creates device files in /dev
ii  perl 5.8.7-10Larry Wall's Practical Extraction 
ii  sed  4.1.4-5 The GNU sed stream editor
ii  sysvinit 2.86.ds1-11 System-V-like init utilities
ii  ucf  2.005   Update Configuration File: preserv

Versions of packages lm-sensors recommends:
ii  kernel-image-2.6.14 [kernel 10.00.Custom Linux kernel binary image for vers
ii  linux-image-2.6.14-2-k7 [li 2.6.14-7 Linux kernel 2.6.14 image on AMD K
ii  linux-image-2.6.15-1-k7 [li 2.6.15-3 Linux kernel 2.6.15 image on AMD K

- -- no debconf information

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2 (GNU/Linux)

iD8DBQFD3NT4b3w5kbZgJjQRApmBAKD1MBYw/tU6HRL2Ho8veqXFfL+lxgCguD8H
Xz8Nu4XnhgOfYHU5xw83mgE=
=g4Os
-END PGP SIGNATURE-
--- sensors-detect.orig 2006-01-29 15:39:32.0 +0100
+++ sensors-detect  2006-01-29 15:40:25.0 +0100
@@ -2031,6 +2031,7 @@
   $dev_i2c = '/dev/i2c-';
 } else { # default
   print No i2c device files found. Use prog/mkdev/mkdev.sh to create 
them.\n;
+  print Try loading i2c-dev module.\n;
   exit -1;
 }
   }


Bug#347384: xterm: Colon (:) isn't handled as seperator of words with mouse-doubleclick anymore

2006-01-10 Thread Philipp Kolmann
Package: xterm
Version: 208-2
Severity: normal

Hi,

xterm used to interpret a colon in a word or end of word as next word when
double-clicking on a word to select it.

With the new version now in unstable the colon isn't treated as seperator
anymore and is now marked as well.

Could you please restore the old behavior if it is possible.

thanks
Philipp Kolmann

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-686-smp
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages xterm depends on:
ii  libc6 2.3.5-11   GNU C Library: Shared libraries an
ii  libfontconfig12.3.2-1.1  generic font configuration library
ii  libfreetype6  2.1.10-1   FreeType 2 font engine, shared lib
ii  libice6   6.9.0.dfsg.1-2 Inter-Client Exchange library
ii  libncurses5   5.5-1  Shared libraries for terminal hand
ii  libsm66.9.0.dfsg.1-2 X Window System Session Management
ii  libx11-6  6.9.0.dfsg.1-2 X Window System protocol client li
ii  libxaw8   6.9.0.dfsg.1-2 X Athena widget set library
ii  libxext6  6.9.0.dfsg.1-2 X Window System miscellaneous exte
ii  libxft2   2.1.7-1FreeType-based font drawing librar
ii  libxmu6   6.9.0.dfsg.1-2 X Window System miscellaneous util
ii  libxrender1   1:0.9.0.2-1X Rendering Extension client libra
ii  libxt66.9.0.dfsg.1-2 X Toolkit Intrinsics
ii  xlibs-data6.9.0.dfsg.1-2 X Window System client data
ii  zlib1g1:1.2.3-9  compression library - runtime

Versions of packages xterm recommends:
ii  xutils6.9.0.dfsg.1-2 X Window System utility programs

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#317511: Fixed for me

2006-01-10 Thread Philipp Kolmann
hi,

just found the solution for me for this problem. Seems that if mplayer is
called with vo=xv that it overlays xawtv's picture.

I have now changed to vo=gl2 and now both work.

HTH
Philipp

-- 
A byte walks into a bar and orders a pint. Bartender asks him What's wrong?
Byte says Parity error. Bartender nods and says Yeah, I thought you looked
a bit off.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#317511: xawtv: Happens here also since about 2-3 weeks

2006-01-09 Thread Philipp Kolmann
Package: xawtv
Version: 3.94-1.0
Followup-For: Bug #317511

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

I have this problem also since short time. Gerd, can you say anything to this
issue?

thanks
Philipp Kolmann

- -- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-k7
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages xawtv depends on:
ii  debconf   1.4.67 Debian configuration management sy
ii  libasound21.0.10-2   ALSA library
ii  libc6 2.3.5-11   GNU C Library: Shared libraries an
ii  libfontconfig12.3.2-1.1  generic font configuration library
ii  libfreetype6  2.1.10-1   FreeType 2 font engine, shared lib
ii  libice6   6.9.0.dfsg.1-2 Inter-Client Exchange library
ii  libjpeg62 6b-11  The Independent JPEG Group's JPEG 
ii  liblircclient00.7.1pre2-11   LIRC client library
ii  libncurses5   5.5-1  Shared libraries for terminal hand
ii  libpng12-01.2.8rel-5 PNG library - runtime
ii  libsm66.9.0.dfsg.1-2 X Window System Session Management
ii  libx11-6  6.9.0.dfsg.1-2 X Window System protocol client li
ii  libxaw7   6.9.0.dfsg.1-2 X Athena widget set library
ii  libxext6  6.9.0.dfsg.1-2 X Window System miscellaneous exte
ii  libxft2   2.1.7-1FreeType-based font drawing librar
ii  libxinerama1  6.9.0.dfsg.1-2 X Window System multi-head display
ii  libxmu6   6.9.0.dfsg.1-2 X Window System miscellaneous util
ii  libxpm4   6.9.0.dfsg.1-2 X pixmap library
ii  libxrandr26.9.0.dfsg.1-2 X Window System Resize, Rotate and
ii  libxrender1   1:0.9.0.2-1X Rendering Extension client libra
ii  libxt66.9.0.dfsg.1-2 X Toolkit Intrinsics
ii  libxv16.9.0.dfsg.1-2 X Window System video extension li
ii  libxxf86dga1  6.9.0.dfsg.1-2 X Direct Graphics Access extension
ii  libxxf86vm1   6.9.0.dfsg.1-2 X Video Mode selection library
ii  libzvbi0  0.2.17-4   video Blank Interval decoder (VBI)
ii  pia   3.94-1.0   movie player
ii  scantv3.94-1.0   scan TV channels for stations
ii  v4l-conf  3.94-1.0   tool to configure video4linux driv
ii  xawtv-plugins 3.94-1.0   plugins for xawtv and motv
ii  xlibmesa-gl [libgl1]  6.9.0.dfsg.1-2 Mesa 3D graphics library [X.Org]
ii  xlibs 6.9.0.dfsg.1-2 X Window System client libraries m
ii  xutils6.9.0.dfsg.1-2 X Window System utility programs
ii  zlib1g1:1.2.3-9  compression library - runtime

xawtv recommends no packages.

- -- debconf information:
  xawtv/freqtab:
  xawtv/channel-scan: true
  xawtv/tvnorm:
  xawtv/makedev: true
  xawtv/build-config: false

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2 (GNU/Linux)

iD8DBQFDwsOXb3w5kbZgJjQRAlF7AKCpaR/t2yiQcYmBESn82s7T6Al/HwCfWxuY
iqxQmcZHJbhlbJmDzhcelCQ=
=ZucF
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



  1   2   >