Bug#401164: hoichess: the opening-book is missing

2006-12-11 Thread Folkert van Heusden
> > the opening book is missing because I can't let debian redistribute any 
> > binary 
> > opening book.
> > Point 1: I have got no source!
> > Point 2: Moves/Games in the opening book might be copyrighted!
> 
> I just got this message. Since I haven't seen the previous ones can 
> anyone give me details ? Are you trying to use crafty books with 
> another chess engine ?

No: I was looking for a Debian package of an opening-book for
'hoichess'.

> I packaged some opening books for Debian to be used with crafty. 
> AFAICT, there are no copyrights over chess moves (it would be like 
> trying to copyright football goals). If there were that'd be a great 
> problem for all tournament chess players: if one wanted to play one 
> particular variant of an opening during a match, he'd first write the 
> author to have his permission and/or pay rights to play such 
> variant...

:-)


Folkert van Heusden

-- 
Looking for a cheap but fast webhoster with an excellent helpdesk?
http://keetweej.vanheusden.com/redir.php?id=1001
--
Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com


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



Bug#402481: apt-proxy: '500'-error still exists/has returned in version 1.9.35

2006-12-12 Thread Folkert van Heusden
> > When doing something like apt-get update && apt-get upgrade I get
> > frequent 500-errors:
> > Get: 288 http://192.168.64.99 testing/contrib msttcorefonts 1.5 [29.1kB]
> > Errhttp://192.168.64.99 testing/main myspell-en-gb 1:2.0.4~rc1-3
> >   500 Could not list directory
> 
> Could you attach your /var/log/apt-proxy.log please?

Here it is!


Folkert van Heusden

-- 
www.vanheusden.com/multitail - win een vlaai van multivlaai! zorg
ervoor dat multitail opgenomen wordt in Fedora Core, AIX, Solaris of
HP/UX en win een vlaai naar keuze
--
Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com


apt-proxy.log.bz2
Description: Binary data


Bug#401600: constructor/de-constructor never found for all testprograms build against boinc-dev

2006-12-04 Thread Folkert van Heusden
Package: boinc-dev
Version: 5.4.11-3
Severity: grave
Justification: renders package unusable

Nothing builds with this library.
For example:
---
#include 
#include 
int main(int argc, char *argv[])
{
APP_INIT_DATA aid;
return 0;
}

Compile with: g++ -lstdc++ -lboinc_api -lboinc test.cpp
gives:
/tmp/ccxYULhN.o: In function `main':
test.cpp:(.text+0x1f): undefined reference to `APP_INIT_DATA::APP_INIT_DATA()'
test.cpp:(.text+0x32): undefined reference to `APP_INIT_DATA::~APP_INIT_DATA()'
collect2: ld returned 1 exit status

Other example:
-
#include 
int main(int argc, char *argv[])
{
RPC_CLIENT  test;
return 0;
}

Compile with: g++ -I /usr/include/BOINC/ -lstdc++ -lboinc_api -lboinc 
rpctest.cpp
gives:
/tmp/ccfemaKV.o: In function `main':
rpctest.cpp:(.text+0x19): undefined reference to `RPC_CLIENT::RPC_CLIENT()'
rpctest.cpp:(.text+0x29): undefined reference to `RPC_CLIENT::~RPC_CLIENT()'
collect2: ld returned 1 exit status


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

Versions of packages boinc-dev depends on:
ii  libc6-dev [libc-dev] 2.3.6.ds1-6 GNU C Library: Development Librari
ii  libmysqlclient15-dev 5.0.24a-9   mysql database development files
ii  libssl-dev   0.9.8c-3SSL development libraries, header 
ii  libstdc++5-3.3-dev [libstdc+ 1:3.3.6-13  The GNU Standard C++ Library v3 (d
ii  libstdc++6-4.0-dev [libstdc+ 4.0.3-7 The GNU Standard C++ Library v3 (d
ii  libstdc++6-4.1-dev [libstdc+ 4.1.1-19The GNU Standard C++ Library v3 (d
ii  libstdc++6-dev [libstdc++-de 3.4.6-4 The GNU Standard C++ Library v3 (d

boinc-dev recommends no packages.

-- no debconf information


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



Bug#401600: constructor/de-constructor never found for all testprograms build against boinc-dev

2006-12-04 Thread Folkert van Heusden
> package boinc-dev
> severity 401600 normal
> thanks
> > Package: boinc-dev
> > Version: 5.4.11-3
> > Severity: grave
> > Justification: renders package unusable
> >
> > Nothing builds with this library.
> That's not true. The boinc-app-seti package builds with this package 
> (therefore I'm downgrading the severity of this bug). Maybe you should have a 
> look at boinc-app-seti's makefiles to figure out how to use BOINC libraries 
> and headers.

I.m.h.o. if just doing something like -lboinc (or whatever), it should
be in the (at least Debian-) documentation of that library.

If a library is only usable for 1 application, it doesn't make sense to
have a seperate -dev library.


> > For example:
> > ---
> > #include 
> > #include 
> > int main(int argc, char *argv[])
> > {
> > APP_INIT_DATA aid;
> > return 0;
> > }
> >
> > Compile with: g++ -lstdc++ -lboinc_api -lboinc test.cpp
> > gives:
> > /tmp/ccxYULhN.o: In function `main':
> > test.cpp:(.text+0x1f): undefined reference to
> > `APP_INIT_DATA::APP_INIT_DATA()' test.cpp:(.text+0x32): undefined reference
> > to `APP_INIT_DATA::~APP_INIT_DATA()' collect2: ld returned 1 exit status
> >
> > Other example:
> > -
> > #include 
> > int main(int argc, char *argv[])
> > {
> > RPC_CLIENT  test;
> > return 0;
> > }
> >
> > Compile with: g++ -I /usr/include/BOINC/ -lstdc++ -lboinc_api -lboinc
> > rpctest.cpp gives:
> > /tmp/ccfemaKV.o: In function `main':
> > rpctest.cpp:(.text+0x19): undefined reference to `RPC_CLIENT::RPC_CLIENT()'
> > rpctest.cpp:(.text+0x29): undefined reference to
> > `RPC_CLIENT::~RPC_CLIENT()' collect2: ld returned 1 exit status




Folkert van Heusden

-- 
Feeling generous? -> http://www.vanheusden.com/wishlist.php
--
Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com


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



Bug#401600: problem can be closed

2006-12-06 Thread Folkert van Heusden
Hi,

The problem can be closed.
The solutions was:
do NOT do:
g++ -lboinc file.cpp
but to
g++ file.cpp -lboinc
instead (which puzzles me but hey it works).

Sorry for the nuisance!
(and Steffen thanks for pointing me to the right direction)


Folkert van Heusden

-- 
www.vanheusden.com/recoverdm/ - got an unreadable cd with scratches?
recoverdm might help you recovering data

Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com


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



Bug#401164: hoichess: the opening-book is missing

2006-12-01 Thread folkert van heusden
Package: hoichess
Version: 0.5.1-1
Severity: important

The opening-book for hoichess is missing. There's also no package for the
opening-book in debian testing.

[EMAIL PROTECTED]:~$ hoichess
HoiChess 0.5.1 (Sep 15 2006 11:20:50, GCC 4.1.2 20060901 (prerelease) (Debian 
4.1.1-13))
Copyright (C) 2004-2006 Holger Ruckdeschel <[EMAIL PROTECTED]>
This program is free software and comes with ABSOLUTELY NO WARRANTY.
See the GNU General Public License for more details.

Error (bla): Cannot open book.dat for reading: No such file or directory
Opening book disabled.
Hash table size: 1677721 entries (32.0 MiB)


-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.17-2-686
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages hoichess depends on:
ii  libc62.3.6.ds1-8 GNU C Library: Shared libraries
ii  libgcc1  1:4.1.1-19  GCC support library
ii  libreadline5 5.2-1   GNU readline and history libraries
ii  libstdc++6   4.1.1-19The GNU Standard C++ Library v3

-- no debconf information


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



Bug#401177: arasan: ipr

2006-12-01 Thread Folkert van Heusden
Package: arasan
Version: 9.5
Severity: wishlist

This is a packaging request of the Arasan Chess program.
The sourcecode can be found here: http://www.arasanchess.org/downld.html

license:
Copyright, distribution
Arasan 9.5 copyright 1994-2006 by Jon Dart. All Rights Reserved.
Tablebase code is copyright Eugene Nalimov and Andrew Kadatch.
Used by permission.
This program may be freely distributed, provided that:
1. It is distributed in unmodified form.
2. No more than a nominal fee is charged for copying or media.


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


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



Bug#410074: motion: frequent crashes

2007-02-07 Thread Folkert van Heusden
Package: motion
Version: 3.2.3-2
Severity: important

motion crashes/exists frequently
no reason for this can be found as the exact same config was used in a 
different motion configuration (not debian)

-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.18-3-686
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages motion depends on:
ii  debconf [debconf-2 1.5.11Debian configuration management sy
ii  liba52-0.7.4   0.7.4-7   Library for decoding ATSC A/52 str
ii  libavcodec0d   0.cvs20060823-4   ffmpeg codec library
ii  libavformat0d  0.cvs20060823-4   ffmpeg file format library
ii  libc6  2.3.6.ds1-10  GNU C Library: Shared libraries
ii  libdc1394-13   1.1.0-3+b1high level programming interface f
ii  libgsm11.0.10-13 Shared libraries for GSM speech co
ii  libjpeg62  6b-13 The Independent JPEG Group's JPEG 
ii  libmysqlclient15of 5.0.32-3  mysql database client library
ii  libogg01.1.3-2   Ogg Bitstream Library
ii  libpq4 8.1.6-1   PostgreSQL C client library
ii  libraw1394-8   1.2.1-2   library for direct access to IEEE 
ii  libtheora0 0.0.0.alpha7.dfsg-1.1 The Theora Video Compression Codec
ii  libvorbis0a1.1.2.dfsg-1.2The Vorbis General Audio Compressi
ii  libvorbisenc2  1.1.2.dfsg-1.2The Vorbis General Audio Compressi
ii  zlib1g 1:1.2.3-13compression library - runtime

-- debconf information:
  motion/moved_conf_dir:


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



Bug#416498: lmbench: complains about all kinds of missing files

2007-03-28 Thread Folkert van Heusden
Package: lmbench
Version: 2.0-patch2-9
Severity: grave
Justification: renders package unusable


When invoking lmbench, it gives all kinds of errors about missing files.
See output:
keetweej:/home/folkert/t# lmbench-run
=

L M B E N C H   C ON F I G U R A T I O N


You need to configure some parameters to lmbench.  Once you have configured
these parameters, you may do multiple runs by saying

"make rerun"

in the src subdirectory.

NOTICE: please do not have any other activity on the system if you can
help it.  Things like the second hand on your xclock or X perfmeters
are not so good when benchmarking.  In fact, X is not so good when
benchmarking.

=

Hang on, we are calculating your timing granularity.
./config-run: line 39: ../bin/i686-pc-linux-gnu/msleep: No such file or 
directory
./config-run: line 40: ../bin/i686-pc-linux-gnu/enough: No such file or 
directory
OK, it looks like you can time stuff down to  usec resolution.

Hang on, we are calculating your timing overhead.
./config-run: line 45: ../bin/i686-pc-linux-gnu/msleep: No such file or 
directory
./config-run: line 46: ../bin/i686-pc-linux-gnu/timing_o: No such file or 
directory
OK, it looks like your gettimeofday() costs  usecs.

Hang on, we are calculating your loop overhead.
./config-run: line 51: ../bin/i686-pc-linux-gnu/msleep: No such file or 
directory
./config-run: line 52: ../bin/i686-pc-linux-gnu/loop_o: No such file or 
directory
OK, it looks like your benchmark loop costs  usecs.

=

Several benchmarks operate on a range of memory.  This memory should be
sized such that it is at least 4 times as big as the external cache[s]
on your system.   It should be no more than 80% of your physical memory.

The bigger the range, the more accurate the results, but larger sizes
take somewhat longer to run the benchmark.

MB [default 619]
Checking to see if you have 512 MB; please wait for a moment...
./config-run: line 107: ../bin/i686-pc-linux-gnu/memsize: No such file or 
directory
./config-run: line 108: ../bin/i686-pc-linux-gnu/memsize: No such file or 
directory
./config-run: line 109: ../bin/i686-pc-linux-gnu/memsize: No such file or 
directory
./config-run: line 110: [: -lt: unary operator expected
./config-run: line 114: [: -lt: unary operator expected
expr: syntax error
=

This benchmark measures, by default, memory latency for a number of
different strides.  That can take a long time and is most useful if you
are trying to figure out your cache line size or if your cache line size
is greater than 128 bytes.

If you are planning on sending in these results, please don't do a fast
run.

If you are measuring software only, you probably want to do a fast run,
so answer yes below.  Answering yes means that we measure memory latency
with a 128 byte stride.

...
=

Calculating mhz, please wait for a moment...
./config-run: line 224: ../bin/i686-pc-linux-gnu/mhz: No such file or directory
I think your CPU mhz is



but I am frequently wrong.  If that is the wrong Mhz, type in your
best guess as to your processor speed.  It doesn't have to be exact,
but if you know it is around 800, say 800.

Type in just the Mhz part, like 3060 or 2800 for 3.06GHz or 2.8GHz P4s.
..
OK, no results mailed.
=

Configuration done, thanks.

There is a mailing list for discussing lmbench hosted at BitMover.
Send mail to [EMAIL PROTECTED] to join the list.

./config-run: line 471: ../bin/i686-pc-linux-gnu/CONFIG.keetweej: No such file 
or directory
./config-run: line 472: ../bin/i686-pc-linux-gnu/CONFIG.keetweej: No such file 
or directory
./config-run: line 473: ../bin/i686-pc-linux-gnu/CONFIG.keetweej: No such file 
or directory
./config-run: line 474: ../bin/i686-pc-linux-gnu/CONFIG.keetweej: No such file 
or directory
./config-run: line 475: ../bin/i686-pc-linux-gnu/CONFIG.keetweej: No such file 
or directory
./config-run: line 476: ../bin/i686-pc-linux-gnu/CONFIG.keetweej: No such file 
or directory
./config-run: line 477: ../bin/i686-pc-linux-gnu/CONFIG.keetweej: No such file 
or directory
./config-run: line 478: ../bin/i686-pc-linux-gnu/CONFIG.keetweej: No such file 
or directory
./config-run: line 479: ../bin/i686-pc-linux-gnu/CONFIG.keetweej: No such file 
or directory
./config-run: line 480: ../bin/i686-pc-linux-gnu/CONFIG.keetweej: No such file 
or directory
./config-run: line 481: ../bin/i686-pc-linux-gnu/CONFIG.keetweej: No such file 
or directory
./config-run: line 482: ../bin/i686-pc-linux-gnu/CONFIG.keetweej: No such file 
or directory
./config-run: line 483: ../bin/i68

Bug#416502: squid fails with Squid Parent: child process 17587 exited due to signal 6

2007-03-28 Thread Folkert van Heusden
Package: squid
Version: 2.6.5-5
Severity: grave
Justification: renders package unusable


In the default configuration of squid it won't start.

In the syslogging one gets:
Squid Parent: child process 17587 exited due to signal 6
a few times then it dies.
No cache.log is written.

-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.4.27-3-386
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages squid depends on:
ii  adduser 3.63 Add and remove users and groups
ii  coreutils   5.97-5   The GNU core utilities
ii  debconf [debconf-2.0]   1.5.8Debian configuration management sy
ii  libc6   2.3.6.ds1-8  GNU C Library: Shared libraries
ii  libdb4.44.4.20-8 Berkeley v4.4 Database Libraries [
ii  libldap22.1.30-13+b1 OpenLDAP libraries
ii  libpam0g0.79-4   Pluggable Authentication Modules l
ii  logrotate   3.7.1-3  Log rotation utility
ii  lsb-base3.1-22   Linux Standard Base 3.1 init scrip
ii  netbase 4.25 Basic TCP/IP networking system
ii  squid-common2.6.5-5  Internet Object Cache (WWW proxy c

-- debconf information:
  squid/fix_cachedir_perms: false
  squid/largefiles_warning:
  squid/anonymize_headers:
  squid/authenticate_program:
  squid-cgi/cachemgr:
  squid/fix_lines: true
  squid/old_version: false
  squid/http_anonymizer:


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



Bug#417339: crashes when reporting for mutt and then pressing 's' for skip remaining bugreports

2007-04-02 Thread Folkert van Heusden
Package: reportbug
Version: 3.33
Severity: normal

--- Please enter the report below this line. ---

I was installing a new version of mutt.
A list of bugreports was shown (by reportbug).
Then I pressed 's' to skip the remainders.
I was then presented with the following backtrace:

Outstanding bugs -- Important bugs; Unclassified (1 bug)
   47) #402284: mutt: %O doesn't seem to behave properly in fcc-hook
(1-47/269) Is the bug you found listed above [y|N|m|r|q|s|f|?]? s
Traceback (most recent call last):
  File "/usr/bin/reportbug", line 1750, in ?
main()
  File "/usr/bin/reportbug", line 779, in main
return iface.user_interface()
  File "/usr/bin/reportbug", line 1340, in user_interface
ewrite("Maintainer for %s is '%s'.\n", package, maintainer)
  File "/usr/bin/reportbug", line 73, in ewrite
return quietly or ui.log_message(*args)
  File "/usr/share/reportbug/reportbug_ui_text.py", line 49, in ewrite
message = message % args
UnicodeDecodeError: 'ascii' codec can't decode byte 0xf3 in position 12: 
ordinal not in range(128)


--- System information. ---
Architecture: i386
Kernel:   Linux 2.6.19.1

Debian Release: 4.0
  500 unstableftp.nerim.net 
  500 testing ftp.nerim.net 
  500 testing 192.168.64.99 
  500 stable  ftp.nerim.net 
  500 stable  192.168.64.99 

--- Package information. ---
Depends (Version) | Installed
=====-+-=======
python-central (>= 0.5.8) | 0.5.12
python   (>= 2.4) | 2.4.4-2



Folkert van Heusden

-- 
MultiTail is a versatile tool for watching logfiles and output of
commands. Filtering, coloring, merging, diff-view, etc.
http://www.vanheusden.com/multitail/
--
Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com


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



Bug#417341: invalid dependency: it tries to remove(!) postfix for exim which I don't want

2007-04-02 Thread Folkert van Heusden
Package: mutt
Version: 1.5.13-1
Severity: grave

--- Please enter the report below this line. ---

Tried to upgrade mutt.
I had postfix installed.
Then the upgrade tried to install exim and remove postfix.
I don't want that.
So my guess is that the dependencies are broken.

keetweej:/home/folkert/site/atari_st# apt-get install mutt
Reading package lists... Done
Building dependency tree... Done
The following extra packages will be installed:
  courier-authlib exim4 exim4-base exim4-config exim4-daemon-light expect 
libsasl2-2 maildrop
Suggested packages:
  eximon4 exim4-doc-html exim4-doc-info expectk urlview
The following packages will be REMOVED:
  postfix
The following NEW packages will be installed:
  courier-authlib exim4 exim4-base exim4-config exim4-daemon-light expect 
libsasl2-2
The following packages will be upgraded:
  maildrop mutt
2 upgraded, 7 newly installed, 1 to remove and 230 not upgraded.
Need to get 4336kB of archives.
After unpacking 2794kB of additional disk space will be used.
Do you want to continue [Y/n]?



--- System information. ---
Architecture: i386
Kernel:   Linux 2.6.19.1

Debian Release: 4.0
  500 unstableftp.nerim.net 
  500 testing ftp.nerim.net 
  500 testing 192.168.64.99 
  500 stable  ftp.nerim.net 
  500 stable  192.168.64.99 

--- Package information. ---
Depends  (Version) | Installed
==-+-==
libc6 (>= 2.3.6-6) | 2.3.6.ds1-13
libdb4.4   | 4.4.20-8
libgnutls13   (>= 1.4.0-0) | 1.4.4-3
libidn11   (>= 0.5.18) | 0.6.5-1
libncursesw5(>= 5.4-5) | 5.5-5
libsasl2 (>= 2.1.19.dfsg1) | 2.1.19.dfsg1-0.5
exim4  | 
 OR mail-transport-agent           | 



Folkert van Heusden

-- 
Ever wonder what is out there? Any alien races? Then please support
the [EMAIL PROTECTED] project: setiathome.ssl.berkeley.edu
--
Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com


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



Bug#410481: Fw: Re: [multitail] upcoming 4.3.1 - anyone missing anything new? fixes, new functionality

2007-02-22 Thread Folkert van Heusden
I think we can close this one: the regexp is not correct.
If I try the regexp from the bugreport with an example string from the
bugreport I get no match:

0 [EMAIL PROTECTED]:~$ echo "-xx-xx xx:xx  fooo" | egrep 
'^-..-.. ..:.. <([[:alnum:]\-_\^]+)>'
1 [EMAIL PROTECTED]:~$

notice the '1' before my prompt: that's the returncode of the last
invoked command. so egrep explicitly says it has no match


Folkert van Heusden

-- 
www.vanheusden.com/recoverdm/ - got an unreadable cd with scratches?
recoverdm might help you recovering data

Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com


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



Bug#384298: RFP: cca -- CIL - Infrastructure for C Program Analysis and Transformation

2006-08-23 Thread Folkert van Heusden
Package: wnpp
Severity: wishlist


* Package name: cca
  Version : 1.3.5
  Upstream Author : George Necula <[EMAIL PROTECTED]>
* URL : http://manju.cs.berkeley.edu/cil/
* License : ?
  Programming Lang: (C, C++, C#, Perl, Python, etc.)
  Description : CIL - Infrastructure for C Program Analysis and 
Transformation

CIL (C Intermediate Language) is a high-level representation along with
a set of tools that permit easy analysis and source-to-source
transformation of C programs.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17.7
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#660017: fglrx: no support for 7970 chipset

2012-02-15 Thread Folkert van Heusden
Package: fglrx-driver
Version: 1:11-12-1
Severity: normal
File: fglrx


Hi,

It seems there's no support for ATI 7970 chipset in the current debian packages.
This can be seen by the "unsupporterd hardware"-thingy in the lower right 
corner of the XORG display.
>From what I've seen the fglrx driver for linux of ati themselves does support 
>this card.



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



Bug#658184: znc: suddenly no longer connects two irc servers

2012-01-31 Thread Folkert van Heusden
Package: znc
Version: 0.204-1
Severity: normal


Hi,

Suddenly after a restart znc won't connect to irc.oftc.net 6667 and 
irc.eu.rizon.net.
So I did an strace on the process to see what was going on and saw this:

connect(3, {sa_family=AF_INET, sin_port=htons(53), 
sin_addr=inet_addr("127.0.0.1")}, 16) = 0
sendto(3, "\212\264\1\0\0\1\0\0\0\0\0\0\3irc\2eu\5rizon\3net\0\0\34"..., 34, 
MSG_NOSIGNAL, NULL, 0) = 34
poll([{fd=3, events=POLLIN}, {fd=4, events=POLLIN}, {fd=5, events=POLLIN}, 
{fd=6, events=POLLIN}, {fd=7, events=POLLIN}, {fd=8, events=POLLIN}, {fd=9, 
events=POLLIN}, {fd=10, events=POLLIN}, {fd=11, events=POLLIN}, {fd=12, )
recvfrom(3, "\212\264\201\200\0\1\0\0\0\0\0\0\3irc\2eu\5rizon\3net\0\0\34"..., 
513, 0, {sa_family=AF_INET, sin_port=htons(53), 
sin_addr=inet_addr("127.0.0.1")}, [16]) = 34
sendto(3, "c\304\1\0\0\1\0\0\0\0\0\0\3irc\2eu\5rizon\3net\10in"..., 58, 
MSG_NOSIGNAL, NULL, 0) = 58
recvfrom(3, 0x7fff5f4d0af0, 513, 0, 0x7fff5f4d0d00, 0x7fff5f4d0d1c) = -1 EAGAIN 
(Resource temporarily unavailable)
poll([{fd=3, events=POLLIN}, {fd=4, events=POLLIN}, {fd=5, events=POLLIN}, 
{fd=6, events=POLLIN}, {fd=7, events=POLLIN}, {fd=8, events=POLLIN}, {fd=9, 
events=POLLIN}, {fd=10, events=POLLIN}, {fd=11, events=POLLIN}, {fd=12, )
recvfrom(3, "c\304\205\203\0\1\0\0\0\1\0\0\3irc\2eu\5rizon\3net\10in"..., 513, 
0, {sa_family=AF_INET, sin_port=htons(53), sin_addr=inet_addr("127.0.0.1")}, 
[16]) = 99
close(3)= 0
recvfrom(4294967295, 0x7fff5f4d0af0, 513, 0, 0x7fff5f4d0d00, 0x7fff5f4d0d1c) = 
-1 EBADF (Bad file descriptor)

It looks if it tries to retrieve the dns information on a wildly wrong 
filedescriptor: recvfrom(4294967295,

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

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

Versions of packages znc depends on:
ii  libc-ares21.7.5-1library for asyncronous name resol
ii  libc6 2.13-23Embedded GNU C Library: Shared lib
ii  libgcc1   1:4.6.1-4  GCC support library
ii  libssl1.0.0   1.0.0e-3   SSL shared libraries
ii  libstdc++64.6.1-4GNU Standard C++ Library v3

Versions of packages znc recommends:
ii  znc-extra 0.204-1extra modules for znc
ii  znc-perl  0.204-1advanced modular IRC bouncer (Perl
pn  znc-python (no description available)
ii  znc-tcl   0.204-1advanced modular IRC bouncer (Tcl 

znc 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#658658: fglrx-driver: won't install due to "Package glx-alternative-fglrx isconfigured to not write apport reports" error

2012-02-04 Thread Folkert van Heusden
Package: fglrx-driver
Version: 1:11-12-1
Severity: important


Hi,

Updating to the new fglrx-driver fails:

Reading package lists...
Building dependency tree...
Reading state information...
The following packages were automatically installed and are no longer required:
...
  xutils-dev gcc-3.4-base
Use 'apt-get autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 723 not upgraded.
8 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Setting up glx-diversions (0.2.0) ...

Removing `diversion of /usr/lib/debug/usr/lib/xorg/modules/extensions/libglx.so 
to /usr/lib/mesa-diverted/libglx.so.dbg by glx-diversions'

dpkg-divert: error checking 
`/usr/lib/debug/usr/lib/xorg/modules/extensions/libglx.so': No such file or 
directory

dpkg: error processing glx-diversions (--configure):

 subprocess installed post-installation script returned error exit status 2

dpkg: dependency problems prevent configuration of glx-alternative-mesa:

 glx-alternative-mesa depends on glx-diversions (= 0.2.0); however:

  Package glx-diversions is not configured yet.

dpkg: error processing glx-alternative-mesa (--configure):

 dependency problems - leaving unconfigured

dpkg: dependency problems prevent configuration of glx-alternative-fglrx:

 glx-alternative-fglrx depends on glx-diversions (= 0.2.0); however:

  Package glx-diversions is not configured yet.

 glx-alternative-fglrx depends on glx-alternative-mesa; however:

  Package glx-alternative-mesa is not configured yet.

dpkg: error processing glx-alternative-fglrx (--configure):

 dependency problems - leaving unconfigured

dpkg: dependency problems prevent configuration of libgl1-fglrx-glx:

 libgl1-fglrx-glx depends on glx-alternative-fglrx (>= 0.2); however:

  Package glx-alternative-fglrx isconfigured to not write apport reports
configured to not write apport reports
configured to not write apport reports
configured to not write apport reports
configured to not write apport reports
configured to not write apport reports
configured to not write apport reports
configured to not write apport reports
 not configured yet.

dpkg: error processing libgl1-fglrx-glx (--configure):

 dependency problems - leaving unconfigured

dpkg: dependency problems prevent configuration of libxvbaw1:

 libxvbaw1 depends on libgl1-fglrx-glx (= 1:11-12-1); however:

  Package libgl1-fglrx-glx is not configured yet.

dpkg: error processing libxvbaw1 (--configure):

 dependency problems - leaving unconfigured

dpkg: dependency problems prevent configuration of fglrx-driver:

 fglrx-driver depends on glx-alternative-fglrx (>= 0.2); however:

  Package glx-alternative-fglrx is not configured yet.

dpkg: error processing fglrx-driver (--configure):

 dependency problems - leaving unconfigured

dpkg: dependency problems prevent configuration of fglrx-glx-ia32:

 fglrx-glx-ia32 depends on fglrx-driver (= 1:11-12-1); however:

  Package fglrx-driver is not configured yet.

dpkg: error processing fglrx-glx-ia32 (--configure):

 dependency problems - leaving unconfigured

dpkg: dependency problems prevent configuration of fglrx-glx:

 fglrx-glx depends on libgl1-fglrx-glx; however:

  Package libgl1-fglrx-glx is not configured yet.

dpkg: error processing fglrx-glx (--configure):

 dependency problems - leaving unconfigured

Errors were encountered while processing:

 glx-diversions

 glx-alternative-mesa

 glx-alternative-fglrx

 libgl1-fglrx-glx

 libxvbaw1

 fglrx-driver

 fglrx-glx-ia32

 fglrx-glx

E: Sub-process /usr/bin/dpkg returned an error code (1)

-- Package-specific info:
VGA-compatible devices on PCI bus:
01:00.0 VGA compatible controller: ATI Technologies Inc Barts LE [AMD Radeon HD 
6700 Series]

DRM and fglrx Informations from dmesg:
[ 3947.276693] fglrx: module license 'Proprietary. (C) 2002 - ATI Technologies, 
Starnberg, GERMANY' taints kernel.
[ 3947.373451] [fglrx] Maximum main memory to use for locked dma buffers: 7708 
MBytes.
[ 3947.373605] [fglrx]   vendor: 1002 device: 673e count: 1
[ 3947.374277] [fglrx] ioport: bar 4, base 0x3000, size: 0x100
[ 3947.374845] [fglrx] Kernel PAT support is enabled
[ 3947.374867] [fglrx] module loaded - fglrx 8.92.6 [Nov  9 2011] with 1 minors
[ 4026.864848] [fglrx] module unloaded - fglrx 8.92.6 [Nov  9 2011]
[ 4036.402909] [fglrx] Maximum main memory to use for locked dma buffers: 7708 
MBytes.
[ 4036.403079] [fglrx]   vendor: 1002 device: 673e count: 1
[ 4036.403765] [fglrx] ioport: bar 4, base 0x3000, size: 0x100
[ 4036.404362] [fglrx] Kernel PAT support is enabled
[ 4036.404384] [fglrx] module loaded - fglrx 8.92.6 [Nov  9 2011] with 1 minors
[ 4093.639180] [fglrx] module unloaded - fglrx 8.92.6 [Nov  9 2011]
[ 4096.721843] [fglrx] Maximum main memory to use for locked dma buffers: 7708 
MBytes.
[ 4096.721998] [fglrx]   vendor: 1002 device: 673e count: 1
[ 4096.722668] [fglrx] ioport: bar 4, base 0x3000, size: 0x100
[ 4096.723235] [fglrx] Kernel PAT support is enabled
[ 40

Bug#686118: gdm3: error when failing to start is not too helpfull

2012-08-29 Thread Folkert van Heusden
>> Currently when I start gdm3 it gives me the following error:
>>
>>   Starting GNOME Display Manager: gdm3 failed!
>>
>> (using /etc/init.d/gdm3 start).
>> This is not very helpfull. It should give some hints where to look to see 
>> what is failing.
>
> This is pretty much standard behavior. You might want to look at logs in
> order to find out what went wrong.

Ok, but what logs?
gdm? xorg?
It might be standard behaviour, but it is not helping the user
determine what is wrong.


Regards,
Folkert.


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



Bug#686196: httping: Segmentation fault (after slow responses?)

2012-08-30 Thread Folkert van Heusden
In a not entirely unrelated note: yesterday evening Coverity did a
scan of httping and found nothing alarming!
That's great news.

On Thu, Aug 30, 2012 at 1:16 PM, Nico Golde  wrote:
> Hi,
> * Olaf van der Spek  [2012-08-29 22:41]:
>> On Wed, Aug 29, 2012 at 10:29 PM, folkert  wrote:
>> >> Maybe it's simpler if you run gdb yourself. ;)
>> >
>> > Yes but then I cannot reproduce it.
>>
>> Hmm, did you try?
>
> I can also not reproduce the problem :/
>
> Cheers
> Nico
> --
> Nico Golde - http://www.ngolde.de - n...@jabber.ccc.de - GPG: 0xA0A0


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



Bug#703687: smstools: inefficient polling of directories should be replaced by inotify interface

2013-03-22 Thread Folkert van Heusden
Package: smstools
Version: 3.1.14-1
Severity: minor


Hi,

Smstools currently checks a couple of directories every x seconds.
That is inefficient:
 1. it doesn't react immediately on new outgoing sms messages, delaying their 
transmission
 2. it polls when it is not neccessary, using system resources

Regarding point 2: this is a real problem in situations where for example a 
simple server like a raspberry pi is used.

I suggest to use inotify: smstools can then sleep forever and as soon as a new 
file appears in its outbound directory, it is woken up immediately.
Of course it needs to explicitly scan the outbound directory when it starts up 
as new files may have appeared while it was not running.


-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.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/dash

Versions of packages smstools depends on:
ii  adduser  3.113   add and remove users and groups
ii  debconf  1.5.41  Debian configuration management sy
ii  libc62.13-24 Embedded GNU C Library: Shared lib
ii  libmm14  1.4.2-4 Shared memory library - runtime
ii  ucf  3.0025+nmu2 Update Configuration File: preserv

smstools recommends no packages.

smstools suggests no packages.

-- Configuration Files:
/etc/logrotate.d/smstools changed:
/var/log/smstools/smsd.log {
rotate 2
weekly
compress
missingok
postrotate
invoke-rc.d smstools reload > /dev/null
endscript
}


-- debconf information:
  smstools/modems/deviceincoming1: true
  smstools/deviceincoming: true
  smstools/devicebaudrateother:
  smstools/modems/devicename1: GSM1
  smstools/devicebaudrate: 19200
  smstools/devicenodeother:
  smstools/configureanothermodem1: false
  smstools/modems/devicebaudrate1: 19200
* smstools/config_exist:
  smstools/devicename: GSM1
  smstools/configure: true
  smstools/devicenode:
  smstools/modems/devicenode1: /dev/ttyS0
  smstools/configureanothermodem: false
  smstools/deviceinit:
  smstools/modems/deviceinit1:
  smstools/eventhandler: /usr/local/sbin/sms_eventhandler


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



Bug#639867: kvm: gets unstable when disconnecting and reconnecting block device

2011-09-12 Thread Folkert van Heusden
tags 639867 + moreinfo unreproducible
> > KVM/Qemu gets unstable when a blockdevice is removed when the vm is not 
> > running.
> > - connect nbd device to nbd-server
> > - start windows xp in vm
> > - stop windows xp
> > - disconnect nbd device
> > - reconnect nbd-device
> > - restart vm
> > now you'll see hangups and for example vnc-sessions displaying the virtual 
> > display but totally ignoring e.g. keypresses
>
> I'm not sure this makes any sense at all.  You reconnect a device
> while some application is not running, you start that application
> and it starts behaving badly.  If that's really the case, the bug
> is in the device not the application.

I did some more testing and found that the windows xp session also
crashes occasionally when I do not fiddle with the nbd-server behind
it.

> Note that nbd in linux is single-threaded, ie, it can't handle
> multiple concurrent requests, and linux nbd client can't submit
> multiple requests too, so it may be quite slow - like "old good"
> IDE without command queuing support.

That is somewhat true: the current version also seems to send a couple
of requests without waiting explicit for the reply.



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



Bug#711821: nfs-common: segfaults during mount

2013-06-09 Thread Folkert van Heusden
Package: nfs-common
Version: 1:1.2.2-5
Severity: important

mount.nfs segfaults for all mount actions attempted:

mauer:/home/folkert# mount belle:/data3/mp3/music/mp3 -o defaults 
mauer:/home/folkert# dmesg
[48069.392279] mount.nfs[15614]: segfault at 0 ip 0031d923ac13 sp 
7fff6b7a85d0 error 4 in libc-2.17.so[31d920+1a4000]
mauer:/home/folkert# grep data3/mp3 /etc/fstab
belle:/data3/mp3/music/mp3nfs defaults,bg,ro,vers=3  0 0

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

Kernel: Linux 3.9-1-amd64 (SMP w/5 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 nfs-common depends on:
ii  adduser 3.113+nmu3   add and remove users and groups
ii  initscripts 2.88dsf-13.13scripts for initializing and shutt
ii  libc6   2.17-3   Embedded GNU C Library: Shared lib
ii  libcap2 1:2.22-1.2   support for getting/setting POSIX.
ii  libcomerr2  1.42.5-1.1   common error description library
ii  libevent-1.4-2  1.4.14b-stable-1 asynchronous event notification li
ii  libgssapi-krb5-21.10.1+dfsg-5MIT Kerberos runtime libraries - k
ii  libgssglue1 0.4-2mechanism-switch gssapi library
ii  libk5crypto31.10.1+dfsg-5MIT Kerberos runtime libraries - C
ii  libkrb5-3   1.10.1+dfsg-5MIT Kerberos runtime libraries
ii  libnfsidmap20.25-4   NFS idmapping library
ii  librpcsecgss3   0.19-5   allows secure rpc communication us
ii  libwrap07.6.q-24 Wietse Venema's TCP wrappers libra
ii  lsb-base4.1+Debian9  Linux Standard Base 4.1 init scrip
ii  netbase 4.47 Basic TCP/IP networking system
ii  rpcbind [portmap]   0.2.0-8  converts RPC program numbers into 
ii  ucf 3.0025+nmu3  Update Configuration File: preserv

nfs-common recommends no packages.

nfs-common suggests no packages.

-- no debconf information


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



Bug#669184: Fwd: guest-vm frequently (2 times a day at least) loses networking

2013-07-22 Thread Folkert van Heusden
Hi,

At least two times a day one of the vms on my server loses all
networking to 1 interface.
This vm has 3 virtual interfaces connected to 3 bridges and 1
interface to a virtual network.
Now one bridge-connection keeps falling of the network.
The only thing that helps is rebooting the vm.
I tried e1000 but that did not help at all.
The other 3 VMs don't have this problem.
No logging in the kernel logging (dmesg) and none in any other logfile.
A ping from within that VM complains about "no buffer space
available". I verified that at most 800 sockets are opened by +/- 100
processes. This setup had previously running fine for years on real
hardware.
This happens with 3.2, 3.8, 3.9 and 3.10 in both the host as well as the guest.

When this problems happens, every packet send out increases the
"dropped packets" counter in the guest. All other guests using this
bridge work fine, including the host itself.
I verified that it is not a firewall problem (disabled the iptables script).
I did some googling and found the suggestion of installing vhost_net
on the host and the suggestion to use the e1000 emulation but both did
not help.

pxe-qemu 1.0.0+git-20120202.f6840ba-3
kvm 1:1.1.2+dfsg-6
qemu 1.1.2+dfsg-6a
qemu-keymaps 1.1.2+dfsg-6a
qemu-kvm 1.1.2+dfsg-6
qemu-system 1.1.2+dfsg-6a
qemu-user 1.1.2+dfsg-6a
qemu-utils 1.1.2+dfsg-6a

I also tried disabling STP on the bridge (did not help).

The mac address of the interface in the guest does not show up in the
brctl showmacs br1 output.

It is not likely to be a memory problem as the guest vm has 5.5GB out
of 8GB of free ram (free, not buffers).
The host system has 16GB free ram.

Last night the problem happened in 5 minutens. Then after I rebooted
the host(!) it was fine for half a day but then it got back again.


--
www.vanheusden.com


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



Bug#726067: linux-image-3.10-1-amd64: perf functionality missing

2013-10-11 Thread Folkert van Heusden
Package: src:linux
Version: 3.10.3-1
Severity: important

Hi,

I'm trying to debug a networking problem with a KVM guest: it looses all
connectivity every couple of days and an rmmod virtio_net / modprobe fixes
that.
To further dig into this problem, I need to do the following on the host:

  (host)$ sudo perf probe --module vhost_net handle_tx
  (host)$ sudo perf record --pid 24306 -e probe:handle_tx -R

the first one fails with:

root@neo:/home/folkert# perf probe --module vhost_net handle_tx
/sys/kernel/debug/tracing/kprobe_events file does not exist - please rebuild
kerrnel with CONFIG_KPROBE_EVENTS.
  Error: Failed to add events. (-1)

So I would like to ask to include kprobe_events.



-- Package-specific info:
** Version:
Linux version 3.10-1-amd64 (debian-ker...@lists.debian.org) (gcc version 4.7.3 
(Debian 4.7.3-6) ) #1 SMP Debian 3.10.3-1 (2013-07-27)

** Command line:
BOOT_IMAGE=/vmlinuz-3.10-1-amd64 root=/dev/mapper/VGNEO-LVROOT ro

** Tainted: W (512)
 * Taint on warning.

** Kernel log:
[1102838.036016] xhci_hcd :07:00.0: Timeout while waiting for stop endpoint 
command
[1103429.968027] xhci_hcd :07:00.0: Timeout while waiting for stop endpoint 
command
[1107311.060285] usb 5-1.4: USB disconnect, device number 21
[1107311.288158] usb 5-1.4: new low-speed USB device number 22 using ehci-pci
[1107311.386161] usb 5-1.4: New USB device found, idVendor=0c45, idProduct=7401
[1107311.386165] usb 5-1.4: New USB device strings: Mfr=1, Product=2, 
SerialNumber=0
[1107311.386167] usb 5-1.4: Product: TEMPerV1.4
[1107311.386168] usb 5-1.4: Manufacturer: RDing
[1107311.389445] input: RDing TEMPerV1.4 as 
/devices/pci:00/:00:1a.0/usb5/5-1/5-1.4/5-1.4:1.0/input/input271
[1107311.389537] hid-generic 0003:0C45:7401.01FB: input,hidraw4: USB HID v1.10 
Keyboard [RDing TEMPerV1.4] on usb-:00:1a.0-1.4/input0
[1107311.391670] hid-generic 0003:0C45:7401.01FC: hiddev0,hidraw5: USB HID 
v1.10 Device [RDing TEMPerV1.4] on usb-:00:1a.0-1.4/input1
[1107334.820041] xhci_hcd :07:00.0: Timeout while waiting for stop endpoint 
command
[1107358.948022] xhci_hcd :07:00.0: Timeout while waiting for stop endpoint 
command
[810.764302] usb 5-1.4: USB disconnect, device number 22
[811.000178] usb 5-1.4: new low-speed USB device number 23 using ehci-pci
[811.098179] usb 5-1.4: New USB device found, idVendor=0c45, idProduct=7401
[811.098183] usb 5-1.4: New USB device strings: Mfr=1, Product=2, 
SerialNumber=0
[811.098185] usb 5-1.4: Product: TEMPerV1.4
[811.098186] usb 5-1.4: Manufacturer: RDing
[811.101577] input: RDing TEMPerV1.4 as 
/devices/pci:00/:00:1a.0/usb5/5-1/5-1.4/5-1.4:1.0/input/input272
[811.101683] hid-generic 0003:0C45:7401.01FD: input,hidraw4: USB HID v1.10 
Keyboard [RDing TEMPerV1.4] on usb-:00:1a.0-1.4/input0
[811.104099] hid-generic 0003:0C45:7401.01FE: hiddev0,hidraw5: USB HID 
v1.10 Device [RDing TEMPerV1.4] on usb-:00:1a.0-1.4/input1
[850.196020] xhci_hcd :07:00.0: Timeout while waiting for stop endpoint 
command
[1113929.220033] xhci_hcd :07:00.0: Timeout while waiting for stop endpoint 
command
[1116029.664014] xhci_hcd :07:00.0: Timeout while waiting for stop endpoint 
command
[1116310.212327] usb 5-1.4: USB disconnect, device number 23
[1116310.432060] usb 5-1.4: new low-speed USB device number 24 using ehci-pci
[1116310.530184] usb 5-1.4: New USB device found, idVendor=0c45, idProduct=7401
[1116310.530188] usb 5-1.4: New USB device strings: Mfr=1, Product=2, 
SerialNumber=0
[1116310.530190] usb 5-1.4: Product: TEMPerV1.4
[1116310.530191] usb 5-1.4: Manufacturer: RDing
[1116310.533586] input: RDing TEMPerV1.4 as 
/devices/pci:00/:00:1a.0/usb5/5-1/5-1.4/5-1.4:1.0/input/input273
[1116310.533719] hid-generic 0003:0C45:7401.01FF: input,hidraw4: USB HID v1.10 
Keyboard [RDing TEMPerV1.4] on usb-:00:1a.0-1.4/input0
[1116310.535810] hid-generic 0003:0C45:7401.0200: hiddev0,hidraw5: USB HID 
v1.10 Device [RDing TEMPerV1.4] on usb-:00:1a.0-1.4/input1
[1116341.720023] xhci_hcd :07:00.0: Timeout while waiting for stop endpoint 
command
[1120229.612019] xhci_hcd :07:00.0: Timeout while waiting for stop endpoint 
command
[1120810.940240] usb 5-1.4: USB disconnect, device number 24
[1120811.192111] usb 5-1.4: new low-speed USB device number 25 using ehci-pci
[1120811.290242] usb 5-1.4: New USB device found, idVendor=0c45, idProduct=7401
[1120811.290246] usb 5-1.4: New USB device strings: Mfr=1, Product=2, 
SerialNumber=0
[1120811.290248] usb 5-1.4: Product: TEMPerV1.4
[1120811.290249] usb 5-1.4: Manufacturer: RDing
[1120811.293895] input: RDing TEMPerV1.4 as 
/devices/pci:00/:00:1a.0/usb5/5-1/5-1.4/5-1.4:1.0/input/input274
[1120811.294004] hid-generic 0003:0C45:7401.0201: input,hidraw4: USB HID v1.10 
Keyboard [RDing TEMPerV1.4] on usb-:00:1a.0-1.4/input0
[1120811.296518] hid-generic 0003:0C45:7401.0202: hiddev0,hidraw5: USB HID 
v1.10 Device [RDing TEMPerV1.4] on usb-:00:1a.0-1.4/i

Bug#458739: vgrabbj crashes frequently

2013-09-07 Thread Folkert van Heusden
Hi

What did you expect?

Regards
Op 7 sep. 2013 14:47 schreef "Ludovic Rousseau" 
het volgende:

> Hello,
>
> You have not sent any new information to this bug report.
> I am now closing it.
>
> If you still have crashes with the latest version 0.9.7-1 then open a new
> bug.
>
> Thanks
>
> Le 02/01/08 15:18, Folkert van Heusden a écrit :
>
>> Package: vgrabbj
>> Version: 0.9.6-3
>> Severity: normal
>>
>>
>> vgrabbj crashes frequently (multiple times per day):
>>
>> Output in dmesg:
>> vgrabbj[12737]: segfault at 000f rip 2b935ff24020 rsp
>> 7fff4ba30be8 error 4
>>
>> Startup command-line:
>> /usr/bin/vgrabbj -l 30 -f /home/appel/webcam/lastsnap_**new.jpg -C -d
>> /dev/video0 -a 3 -n -i cif -t /usr/share/ircmarkers/fixed_**01.ttf
>>
>>
>> -- System Information:
>> Debian Release: lenny/sid
>>APT prefers testing
>>APT policy: (500, 'testing'), (500, 'stable')
>> Architecture: amd64 (x86_64)
>>
>> Kernel: Linux 2.6.22-3-amd64 (SMP w/4 CPU cores)
>> Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
>> Shell: /bin/sh linked to /bin/bash
>>
>> Versions of packages vgrabbj depends on:
>> ii  ftplib3 3.1-1-6  Library of callable ftp
>> routines
>> ii  libc6   2.7-3GNU C Library: Shared
>> libraries
>> ii  libjpeg62   6b-14The Independent JPEG Group's
>> JPEG
>> ii  libpng12-0  1.2.15~beta5-3   PNG library - runtime
>> ii  libttf2 1.4pre.cvs20060210-1 Old FreeType 1 TrueType font
>> engin
>> ii  zlib1g  1:1.2.3.3.dfsg-7 compression library - runtime
>>
>> vgrabbj recommends no packages.
>>
>> -- no debconf information
>>
>>
>>
>>
>>
>
> --
>  Dr. Ludovic Rousseau
>
>


Bug#458739: vgrabbj crashes frequently

2013-09-07 Thread Folkert van Heusden
Hmm did i miss those messages? Odd.
Well yeah close it. I solved it by writing something myself ("grabby" and
its successor "koudevoeten").
Op 7 sep. 2013 19:07 schreef "Ludovic Rousseau" 
het volgende:

> Le 07/09/13 16:35, Folkert van Heusden a écrit :
>
>> Hi
>>
>> What did you expect?
>>
>
> A gdb backtrace ?
> A run inside valgrind as requested in http://bugs.debian.org/cgi-**
> bin/bugreport.cgi?bug=458739#**10<http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=458739#10>?
>
> Or anything that would be informative enough to find the problem.
>
> It is OK if you do not know how to use gdb. Is it the case?
>
> Bye
>
> --
>  Dr. Ludovic Rousseau
>
>


Bug#676215: rsyslog logrotate-script does not work: rsyslog keeps using the .1-file

2012-06-05 Thread Folkert van Heusden
Package: rsyslog
Version: 5.8.11-1
Severity: normal


After logrotate did its work, rsyslog keeps writing to the previous file, e.g. 
messages.1
When rsyslogd is explicitly stopped and restarted, it starts to use the correct 
file.

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

Kernel: Linux 3.2.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/dash

Versions of packages rsyslog depends on:
ii  initscripts 2.88dsf-13.13scripts for initializing and shutt
ii  libc6   2.13-24  Embedded GNU C Library: Shared lib
ii  lsb-base3.2-28   Linux Standard Base 3.2 init scrip
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

Versions of packages rsyslog recommends:
ii  logrotate 3.8.1-1Log rotation utility

Versions of packages rsyslog suggests:
pn  rsyslog-doc(no description available)
pn  rsyslog-gnutls (no description available)
pn  rsyslog-gssapi (no description available)
ii  rsyslog-mysql 5.8.11-1   MySQL output plugin for rsyslog
pn  rsyslog-relp   (no description available)

-- Configuration Files:
/etc/logrotate.d/rsyslog changed:
/var/log/syslog
{
rotate 2
daily
missingok
notifempty
delaycompress
compress
postrotate
invoke-rc.d rsyslog reload > /dev/null
endscript
}
/var/log/mail.log
{
rotate 14
daily
missingok
notifempty
compress
delaycompress
sharedscripts
postrotate
invoke-rc.d rsyslog reload > /dev/null
endscript
}
/var/log/mail.info
/var/log/mail.warn
/var/log/mail.err
/var/log/daemon.log
/var/log/kern.log
/var/log/auth.log
/var/log/user.log
/var/log/lpr.log
/var/log/cron.log
/var/log/debug
/var/log/messages
{
rotate 2
daily
missingok
notifempty
compress
delaycompress
sharedscripts
postrotate
invoke-rc.d rsyslog reload > /dev/null
endscript
}

/etc/rsyslog.conf changed:
$ModLoad imuxsock # provides support for local system logging
$ModLoad imklog   # provides kernel logging support (previously done by rklogd)
$ModLoad imudp
$UDPServerRun 514
$ModLoad imtcp
$InputTCPServerRun 514
$ActionFileDefaultTemplate RSYSLOG_TraditionalFileFormat
$FileOwner root
$FileGroup adm
$FileCreateMode 0640
$DirCreateMode 0755
$Umask 0022
$IncludeConfig /etc/rsyslog.d/*.conf
auth,authpriv.* -/var/log/auth.log
*.*;auth,authpriv.none  -/var/log/syslog
daemon.*-/var/log/daemon.log
kern.*  -/var/log/kern.log
lpr.*   -/var/log/lpr.log
mail.*  -/var/log/mail.log
user.*  -/var/log/user.log
mail.info   -/var/log/mail.info
mail.warn   -/var/log/mail.warn
mail.err-/var/log/mail.err
news.crit   -/var/log/news/news.crit
news.err-/var/log/news/news.err
news.notice -/var/log/news/news.notice
*.=debug;\
auth,authpriv.none;\
news.none;mail.none -/var/log/debug
*.=info;*.=notice;*.=warn;\
auth,authpriv.none;\
cron,daemon.none;\
mail,news.none  -/var/log/messages
*.emerg *
daemon.*;mail.*;\
news.err;\
*.=debug;*.=info;\
*.=notice;*.=warn   |/dev/xconsole
*.* |/usr/local/var/rsyslog.all


-- 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#775779: tip

2017-02-27 Thread Folkert van Heusden
Hi,
 
 I also got this problem with polyglot failing on invalid pgn-files.
 I found "pgn-extract" to be the solution for this.

 Please note that you need at least pgn-extract 17-37 for this.
 

Bug#758868: crash

2014-08-22 Thread Folkert van Heusden
The problem can fairly easy be triggered using this test-code: 
http://vps001.vanheusden.com/~folkert/pango-crash.tgz



Bug#758871: rrdtool-dbg: does not contain debug symbols for librrd_th

2015-07-27 Thread Folkert van Heusden
I'm sorry I can't help; i'm not using rrdtool anymore.



-Original message-
From: Jean-Michel Vourgère 
Sent: Friday 24th July 2015 17:53
To: Folkert van Heusden 
Cc: 758...@bugs.debian.org
Subject: Re: rrdtool-dbg: does not contain debug symbols for librrd_th


Control: tags -1 moreinfo

Hello Folkert

Your wrote:
> rrdtool-dbg: does not contain debug symbols for librrd_th


I rebuilt version 1.4.8-1.1 and here's an extract of the build logs with
DH_VERBOSE=1 :

> dh_strip -a --dbg-package=rrdtool-dbg
> (...)
> install -d debian/rrdtool-dbg/usr/lib/debug/.build-id/86
> 
> objcopy --only-keep-debug --compress-debug-sections 
> debian/librrd4/usr/lib/librrd_th.so.4.2.1 
> debian/rrdtool-dbg/usr/lib/debug/.build-id/86/53ea4714da9eaf4abe6b19532bf7685483e383.debug
> 
> chmod 644 
> debian/rrdtool-dbg/usr/lib/debug/.build-id/86/53ea4714da9eaf4abe6b19532bf7685483e383.debug
> 
> strip --remove-section=.comment --remove-section=.note --strip-unneeded 
> debian/librrd4/usr/lib/librrd_th.so.4.2.1
> 
> objcopy --add-gnu-debuglink 
> debian/rrdtool-dbg/usr/lib/debug/.build-id/86/53ea4714da9eaf4abe6b19532bf7685483e383.debug
>  debian/librrd4/usr/lib/librrd_th.so.4.2.1

So it looks like the symbols are in the -dbg package.

Running valgrind, I find the same level of information in rrdtools that
in other libraries.

Valgrind is not a tool I know much about.

Can you explain what you expected?

Here, if I run
> valgrind -d -v -v --leak-check=full rrdtool graph temperature.png
DEF:t=temperature.rrd:temp:AVERAGE LINE1:t#FF:"temperature\l"
(should work with any command), I get:
> (...)
> --20065-- Reading syms from /usr/bin/rrdtool
> --20065--svma 0x401620, avma 0x401620
> --20065--   Considering 
> /usr/lib/debug/.build-id/d3/910add213ad29a1b3f751982fe540a21f76987.debug ..
> --20065--   .. build-id is valid
> (...)
> --20065-- Reading syms from /usr/lib/librrd.so.4.2.1
> --20065--svma 0x0072b0, avma 0x0004e3c2b0
> --20065--   Considering 
> /usr/lib/debug/.build-id/ab/17988d14073d564daf60499867b0cbb018b2f5.debug ..
> --20065--   .. build-id is valid

And so on.

Can you try it with "-d -v -v" and post the "Reading syms from" blocks,
please?

If I uninstall rrdtool-dbg, I have errors like
> --20198-- Reading syms from /usr/lib/librrd.so.4.2.1
> --20198--svma 0x0072b0, avma 0x0004e3c2b0
> --20198--object doesn't have a symbol table

so I guess this is working ok.



Reading other bug repports, I can see that there are issue with valgrind
not showing the line numbers. Is that your issue?

See:
https://bugs.debian.org/701480
https://bugs.debian.org/780173

Please keep us informed if this is it.



Bug#793940: ntp: does not use pps

2015-07-29 Thread Folkert van Heusden
Package: ntp
Version: 1:4.2.8p3+dfsg-1
Severity: normal

Hi,

Ntpd no longer opens pps-device.
This greatly affects the accuracy of the time-keeping.

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

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

Versions of packages ntp depends on:
ii  adduser  3.113+nmu3
ii  dpkg 1.17.25
ii  libc62.19-18
ii  libcap2  1:2.24-8
ii  libedit2 3.1-20150325-1
ii  libgcc1  1:4.9.2-10
ii  libopts251:5.18.6~pre3-3
ii  libssl1.0.0  1.0.1k-3
ii  lsb-base 4.1+Debian13+nmu1
ii  netbase  5.3

Versions of packages ntp recommends:
ii  perl  5.20.2-3

Versions of packages ntp suggests:
ii  ntp-doc  1:4.2.6.p5+dfsg-7

-- Configuration Files:
/etc/ntp.conf changed:
driftfile /var/lib/ntp/ntp.drift
server 127.127.20.1 minpoll 4 prefer
fudge  127.127.20.1 flag3 1
disable monitor
peer hetlicht
peer detijd
peer clara
peer nanosg20
peer china
server ntp.xs4all.nl iburst
server ntp.nmi.nl iburst prefer
server chime1.surfnet.nl iburst
server ntp0.nl.uu.net iburst
restrict -4 default kod notrap nomodify
restrict -6 default kod notrap nomodify
restrict 127.0.0.1
restrict ::1
broadcast 224.0.1.1
broadcast 192.168.39.255
broadcast 192.168.64.255
broadcast 192.168.178.255


-- 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#753602: bfgminer: won't connect; some kind of issue with libcurl

2014-07-03 Thread Folkert van Heusden
Package: bfgminer
Version: 4.2.0+dfsg-1
Severity: grave
Justification: renders package unusable

Hi,

I try to mine at btcguild. I use the command-line they suggest (apart from the 
--api* of course):

/usr/bin/bfgminer --syslog -o 
stratum+tcp://eu-stratum.btcguild.com: -u flok_1 -p 123 -S erupter:all 
--api-listen --api-network --icarus-options 115200:1:1 --icarus-timing 3.0=100

This doesn't work:

Jul  3 15:37:18 neo bfgminer: Found BES 0 at /dev/ttyUSB4
...
Jul  3 15:37:18 neo bfgminer: Found BES 7 at /dev/ttyUSB3
Jul  3 15:37:19 neo bfgminer[24326]: Probing for an alive pool
Jul  3 15:37:19 neo bfgminer[24326]: Testing pool 
stratum+tcp://eu-stratum.btcguild.com:
Jul  3 15:37:19 neo bfgminer[24326]: HTTP request failed: Protocol 
stratum+tcp not supported or disabled in libcurl
Jul  3 15:37:19 neo bfgminer[24326]: pool 0 JSON stratum auth failed: 
(null)
Jul  3 15:37:20 neo bfgminer[24326]: Pool: 0  URL: 
stratum+tcp://eu-stratum.btcguild.com:  User: flok_1  Password: 123
Jul  3 15:37:36 neo bfgminer[24326]: Pool: 0  URL: 
stratum+tcp://eu-stratum.btcguild.com:  User: flok_1  Password: 123


-- System Information:
Debian Release: 7.3
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'unstable'), (500, 'testing'), 
(500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.11-rc7-amd64 (SMP w/12 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 bfgminer depends on:
ii  libblkmaker-0.1-0  0.4.0-1
ii  libc6  2.17-7
ii  libcurl3-gnutls7.32.0-1
ii  libevent-2.0-5 2.0.19-stable-3
ii  libjansson42.5-1
ii  libmicrohttpd100.9.33-1
ii  libncurses55.9+20130608-1
ii  libsensors41:3.3.3-1
ii  libtinfo5  5.9+20130608-1
ii  libudev1   204-5
ii  libusb-1.0-0   2:1.0.17-1+b1

Versions of packages bfgminer recommends:
ii  amd-opencl-icd-legacy [opencl-icd]  8.97.100.7-4
ii  ocl-icd-libopencl1  2.1.3-4

bfgminer 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#785665: ntp: support for atom driver not included

2015-05-18 Thread Folkert van Heusden
Package: ntp
Version: 1:4.2.6.p5+dfsg-7
Severity: normal

When trying to use the atom driver, the following error appears:

May 18 23:32:52 neo ntpd[12749]: refclock_newpeer: clock type 22 invalid  
May 18 23:32:52 neo ntpd[12749]: 127.127.22.1 interface 127.0.0.1 -> (none)

This means that atom support is not included.

There are situations where it is preferred (e.g. when the gps nmea time 
sentences are way off so that you only want to use its pps signal with a 
regular ntp sources as a base).

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

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

Versions of packages ntp depends on:
ii  adduser  3.113+nmu3
ii  dpkg 1.17.25
ii  libc62.19-18
ii  libcap2  1:2.24-8
ii  libedit2 3.1-20140620-2
ii  libopts251:5.18.4-3
ii  libssl1.0.0  1.0.1k-3
ii  lsb-base 4.1+Debian13+nmu1
ii  netbase  5.3

Versions of packages ntp recommends:
ii  perl  5.20.2-3

Versions of packages ntp suggests:
pn  ntp-doc  

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

-- 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#785263: gpsd: ignores serial devices

2015-05-13 Thread Folkert van Heusden
Package: gpsd
Version: 3.12-1
Severity: grave
Justification: renders package unusable

Hi,

gpsd in jessie no longer works for serial devices.
In /etc/default/gpsd I usually configure /dev/ttyS1 with the -n flag but since 
jessie this is ignored.
The device is not openend at start, and also not if I explicitly start a client 
(e.g. gpsmon).
Tried the version of experimental as well but that version doesn't work either.

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

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

Versions of packages gpsd depends on:
ii  adduser  3.113+nmu3
ii  init-system-helpers  1.22
ii  libbluetooth35.23-2+b1
ii  libc62.19-18
ii  libdbus-1-3  1.8.16-1
ii  libgps22 3.12-1
ii  libusb-1.0-0 2:1.0.19-1
ii  lsb-base 4.1+Debian13+nmu1
ii  netbase  5.3
ii  systemd-sysv 215-17

Versions of packages gpsd recommends:
ii  python  2.7.9-1
ii  udev215-17

Versions of packages gpsd suggests:
ii  dbus  1.8.16-1
ii  gpsd-clients  3.12-1

-- Configuration Files:
/etc/default/gpsd changed:
START_DAEMON="true"
USBAUTO="false"
DEVICES="/dev/ttyS1"
GPSD_OPTIONS="-n"


-- debconf information:
  gpsd/daemon_options: -n
  gpsd/socket: /var/run/gpsd.sock
  gpsd/device: /dev/ttyS1
  gpsd/start_daemon: true
  gpsd/autodetection: false


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



Bug#772129: dpkg-build: silently ignores lines it does not understand

2014-12-05 Thread Folkert van Heusden
Package: dpkg-build
Version: any
Severity: important

For example debian/control with:

package: bla

This is silently ignored. You just don't find any resulting package.

-- System Information:
Debian Release: jessie/sid
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.16-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/dash


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



Bug#790973: ntp: does not do PPS sync

2015-07-03 Thread Folkert van Heusden
Package: ntp
Version: 1:4.2.6.p5+dfsg-7
Severity: normal

Dear Maintainer,

Ntpd is not using PPS.

As you can see in the attached cfg, I configured a nmea time source with pps 
support (flag3 set to 1).

root@neo:/home/folkert# lsof -n | grep ntp | grep dev
ntpd  18641   root0u  CHR1,3  
0t0   1028 /dev/null
ntpd  18641   root1u  CHR1,3  
0t0   1028 /dev/null
ntpd  18641   root2u  CHR1,3  
0t0   1028 /dev/null
ntpd  18641   root5u  CHR   4,65  
0t0   1114 /dev/ttyS1

root@neo:/home/folkert# ls -l /dev/pps*
crw--- 1 root root 251, 0 May 18 23:46 /dev/pps0
lrwxrwxrwx 1 root root  9 May 18 23:47 /dev/pps1 -> /dev/pps0

 remote   refid  st t when poll reach   delay   offset  jitter
==
x127.127.20.1.GPS.0 l7   16  3770.000  -687.34   7.630

This is a somewhat serious defficiency.


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

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

Versions of packages ntp depends on:
ii  adduser  3.113+nmu3
ii  dpkg 1.17.25
ii  libc62.19-18
ii  libcap2  1:2.24-8
ii  libedit2 3.1-20150325-1
ii  libopts251:5.18.4-3
ii  libssl1.0.0  1.0.1k-3
ii  lsb-base 4.1+Debian13+nmu1
ii  netbase  5.3

Versions of packages ntp recommends:
ii  perl  5.20.2-3

Versions of packages ntp suggests:
ii  ntp-doc  1:4.2.6.p5+dfsg-7

-- Configuration Files:
/etc/ntp.conf changed:
driftfile /var/lib/ntp/ntp.drift
server 127.127.20.1 minpoll 4 prefer
fudge  127.127.20.1 flag3 1 flag2 0
disable monitor
peer hetlicht
peer detijd
peer clara
peer nanosg20
peer china
server ntp.xs4all.nl iburst
server ntp.nmi.nl iburst prefer
server chime1.surfnet.nl iburst
server ntp0.nl.uu.net iburst
restrict -4 default kod notrap nomodify
restrict -6 default kod notrap nomodify
restrict 127.0.0.1
restrict ::1
broadcast 224.0.1.1
broadcast 192.168.39.255
broadcast 192.168.64.255
broadcast 192.168.178.255


-- 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#688451: solution for high cpu usage

2014-11-17 Thread Folkert van Heusden
I got frusted a bit by this problem (smsd using incredible much cpu
even when idle) so I ran smsd through valgrind (well, callgrind).
It looks like tons of time is spend in an usleep(100); (yes, hundred).
I always thought that Linux would just round it up to the next
scheduling interval but it looks like that is a busy loop these days?
I changed it from 100us to 10ms and now the cpu usage dropped from on
average > 8% to < 1%. And that is on a "Intel(R) Core(TM) i7-3930K CPU
@ 3.20GHz".
Really something that communicates with a device at 19.2kBps should
not use that much cpu.
So please apply.
Thanks.
Oh and I think there maybe other possibilities of optimizing smsd left.



Regards,


Folkert van Heusden

www.smartwinning.info
diff -uNrBbd smstools-3.1.15.org/src/extras.c smstools-3.1.15/src/extras.c
--- smstools-3.1.15.org/src/extras.c2013-11-08 10:16:02.0 +0100
+++ smstools-3.1.15/src/extras.c2014-11-17 14:01:44.915072505 +0100
@@ -1436,7 +1436,7 @@
   struct timezone tz;
   unsigned long long now;
 
-  do
+  for(;;)
   {
 gettimeofday(&tv, &tz);
 now = (unsigned long long)tv.tv_sec *100 +tv.tv_usec;
@@ -1444,10 +1444,11 @@
 if (terminate == 1)
   return 1;
 
-if (now < target_time)
-  usleep(100);
+if (now >= target_time)
+  break;
+
+usleep(1);
   }
-  while (now < target_time);
 
   return 0;
 }


Bug#843638: same problem

2016-12-16 Thread Folkert van Heusden
On Fri, Dec 16, 2016 at 10:15 AM, Fabian Greffrath  wrote:
>
> apt-get build-dep


You mean build-essential?
That I have installed. Also libtool.


-- 
www.vanheusden.com
www.slimwinnen.nl



Bug#438134: libphp-jpgraph: would be nice if SetScale('datlin'); as well as $graph -> xaxis -> scale -> SetDateFormat('Y/m/d'); got backported

2007-08-15 Thread Folkert van Heusden
Package: libphp-jpgraph
Version: 1.5.2-11
Severity: wishlist


Hi,

It would be nice if the
$graph -> SetScale('datlin');
as well as the
$graph -> xaxis -> scale -> SetDateFormat('Y/m/d');
functionality from the payed version got backported as I would like to
use unix-timestamps for the x-axis.


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

Kernel: Linux 2.6.22-1-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 libphp-jpgraph depends on:
ii  libapache2-mod-php5   5.2.3-1+b1 server-side, HTML-embedded scripti
ii  php5-gd   5.2.3-1+b1 GD module for php5

libphp-jpgraph recommends no packages.

-- no debconf information


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



Bug#436112: apt-proxy: Failed to load application: /usr/lib/python2.4/site-packages/apt_pkg.so: undefined symbol: pkgCPU

2007-08-19 Thread Folkert van Heusden
> > Nope, problem persists.
> > Failed to load application: /usr/lib/python2.4/site-packages/apt_pkg.so: 
> > undefined symbol: pkgCPU
> That's a problem with python-apt loading the apt library and would be a
> bug in python-apt so I'm surprised its not been spotted already. Maybe
> you forced a particular package version or have upgraded apt without
> upgrading python-apt? In any case, upgrading your python-apt version
> should fix this.

Ah yes, it does. Thanks!


Folkert van Heusden

-- 
Multitail es una herramienta flexible que permite visualizar los "log
file" y seguir la ejecución de comandos. Permite filtrar, añadir
colores, combinar archivos, la visualización de diferencias (diff-
view), etc.  http://www.vanheusden.com/multitail/
--
Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com



Bug#436112: closed by Chris Halls <[EMAIL PROTECTED]> (Bug#436011: fixed in apt-proxy 1.9.36.1)

2007-08-19 Thread Folkert van Heusden
That version did not fix the problem unfortunately:

belle:/home/folkert/www/peach# /etc/init.d/apt-proxy start
Starting apt-proxy
Failed to load application: /usr/lib/python2.4/site-packages/apt_pkg.so: 
undefined symbol: pkgCPU


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



Bug#426317: mutt ignores umask

2007-05-27 Thread Folkert van Heusden
Package: mutt
Version: 1.5.13-3
Severity: wishlist


It seems mutt ignores umask and always saves attachments with in an
certain situations way to restrictive mode. It would be nice if a
default umask could be set in the configuration file or that mutt just
obeys the external umask.


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

Kernel: Linux 2.6.18-4-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 mutt depends on:
ii  libc6 2.5-5  GNU C Library: Shared libraries
ii  libdb4.4  4.4.20-8   Berkeley v4.4 Database Libraries [
ii  libgnutls13   1.4.4-3the GNU TLS library - runtime libr
ii  libidn11  0.6.5-1GNU libidn library, implementation
ii  libncursesw5  5.5-5  Shared libraries for terminal hand
ii  libsasl2-22.1.22.dfsg1-8 Authentication abstraction library
ii  postfix [mail-transport-a 2.4.0-2A high-performance mail transport 

Versions of packages mutt recommends:
ii  locales   2.5-5  GNU C Library: National Language (
ii  mime-support  3.39-1 MIME files 'mime.types' & 'mailcap

-- no debconf information


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



Bug#426317: mutt ignores umask

2007-05-28 Thread Folkert van Heusden
> > It seems mutt ignores umask and always saves attachments with in an
> > certain situations way to restrictive mode. It would be nice if a
> > default umask could be set in the configuration file or that mutt just
> > obeys the external umask.
> Hello Folkert. This was recently added to Mutt (via a $umask config
> option), which is present in the version of mutt in experimental.

Great to hear!
But in experimental I find no new version, not newer then 1.5.13-3.


Folkert van Heusden

-- 
MultiTail è uno flexible tool per seguire di logfiles e effettuazione
di commissioni. Feltrare, provedere da colore, merge, 'diff-view',
etc. http://www.vanheusden.com/multitail/
--
Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com



Bug#426601: libgpgme-dev is way too old

2007-05-29 Thread Folkert van Heusden
Package: libgpgme-dev
Version: 0.3.16-2
Severity: grave
Justification: renders package unusable


Hi,

The current version of libgpgme-dev in Debian is way too old. The
current version is 1.1.4(!) while Debian still has version 0.3.16.


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

Kernel: Linux 2.6.18-4-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 libgpgme-dev depends on:
ii  libc6-dev 2.5-5  GNU C Library: Development Librari
ii  libgpgme6 0.3.16-2   GPGME - GnuPG Made Easy

libgpgme-dev recommends no packages.

-- no debconf information


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



Bug#426601: ignore this bugreport

2007-05-29 Thread Folkert van Heusden
Hi,

Please close and ignore this bugreport, I found libgpgme11-dev.


Folkert van Heusden

-- 
Looking for a cheap but fast webhoster with an excellent helpdesk?
http://keetweej.vanheusden.com/redir.php?id=1001
--
Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com


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



Bug#427403: gnupg: gpg tries to interact with the user even when started from a script and with the --expert switch

2007-06-03 Thread Folkert van Heusden
Package: gnupg
Version: 1.4.6-2
Severity: important


Hi,

When I invoke gnupg from a script, it always wants to interact with the
user if the uid has an experiation date (while signing). This is tricky
for a non-interactive script.

I do this:

$cmd = "--cert-notation '$NOTATION' --default-cert-level $CERT_LEVEL 
--sig-policy-url '$POLICY' --no-ask-cert-level --no-force-v3-sigs
--no-ask-sig-expire --expert --edit-key $long_key 'uid $found_uid_num'
sign save quit";

As you see I added the --expert switch which should prevent questions
like that.


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

Kernel: Linux 2.6.21-1-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 gnupg depends on:
ii  gpgv 1.4.6-2 GNU privacy guard - signature veri
ii  libbz2-1.0   1.0.3-6 high-quality block-sorting file co
ii  libc62.5-5   GNU C Library: Shared libraries
ii  libldap2 2.1.30-13.4 OpenLDAP libraries
ii  libreadline5 5.2-2   GNU readline and history libraries
ii  libusb-0.1-4 2:0.1.12-6  userspace USB programming library
ii  makedev  2.3.1-83creates device files in /dev
ii  zlib1g   1:1.2.3-13  compression library - runtime

gnupg recommends no packages.

-- no debconf information


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



Bug#427415: sysklogd: syslogd opening listen-socket even WITHOUT the -r switch in "/etc/default/syslogd"

2007-06-03 Thread Folkert van Heusden
Package: sysklogd
Version: 1.4.1-20
Severity: normal


syslogd opening listen-socket even WITHOUT the -r switch in 
"/etc/default/syslogd"

belle:/home/folkert/Personal/src/multitail/devel# cat /etc/default/syslogd | 
grep -v -e "^$" -v -e "^#"
SYSLOGD=""

belle:/home/folkert/Personal/src/multitail/devel# netstat -nap | grep 514
udp   128744  0 0.0.0.0:514 0.0.0.0:* 4812/syslogd


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

Kernel: Linux 2.6.21-1-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 sysklogd depends on:
ii  klogd [linux-kernel-log-daemo 1.4.1-20   Kernel Logging Daemon
ii  libc6 2.5-5  GNU C Library: Shared libraries

sysklogd recommends no packages.

-- no debconf information


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



Bug#465654: mutella: not finding any files

2008-02-13 Thread Folkert van Heusden
Package: mutella
Version: 0.4.5-7
Severity: normal


it does not find any files, at all
not even for very common words

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable')
Architecture: amd64 (x86_64)

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

Versions of packages mutella depends on:
ii  libc6  2.7-6 GNU C Library: Shared libraries
ii  libgcc11:4.3-20080116-1  GCC support library
ii  libncurses55.6+20080119-1Shared libraries for terminal hand
ii  libreadline5   5.2-3 GNU readline and history libraries
ii  libstdc++6 4.3-20080116-1The GNU Standard C++ Library v3
ii  zlib1g 1:1.2.3.3.dfsg-11 compression library - runtime

mutella recommends no packages.

-- no debconf information



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



Bug#461558: octave fails to invoke gnuplot

2008-02-14 Thread Folkert van Heusden
> > Just tried 3.0 and it gives the same errors:
> > gnuplot> set terminal aqua 1 enhanced
> >   ^
> >  line 0: unknown or ambiguous terminal type; type just 'set 
> > terminal' for a list
> > 
> > 
> > gnuplot> plot "-" using ($1):($2) axes x1y1 title "" with lines linestyle 1 
> > ;
> >   ^
> >  line 0: use 'set term' to set terminal type first
> 
> Have you by any chance set the environment variable GNUTERM?  What does the
> follow yield for you?
> 
> $ echo $GNUTERM
> $ GNUTERM=x11 /usr/bin/octave3.0 -qf
> octave:1> plot (randn (10, 1));

Tried it under X11 and then things work. So it seems X11 is required for
it to run. I thought and hoped it would emit a png/gif/jpg-file.
So the bug can be closed.


Thanks a lot,

Folkert van Heusden

-- 

Multitail - gibkaja utilita po sledovaniju log-fajlov i vyvoda
kommand. Fil'trovanie, raskra?ivanie, slijanie, vizual'noe sravnenie,
i t.d.  http://www.vanheusden.com/multitail/
--
Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com



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



Bug#422526: lm-sensors: sensors-detect successfully found the devices but 'sensors' says it has no sensors

2007-05-06 Thread Folkert van Heusden
Package: lm-sensors
Version: 1:2.10.1-3
Severity: grave
Justification: renders package unusable


sensors-detect is able to figure out what sensors are in the device but sensors 
says 'no sensors found'
modules are loaded(!)

sensors-detect output:
---
Driver `eeprom' (should be inserted):
  Detects correctly:
  * Bus `SMBus I801 adapter at 0500'
Busdriver `i2c-i801', I2C address 0x50
Chip `eeprom' (confidence: 6)
  * Bus `SMBus I801 adapter at 0500'
Busdriver `i2c-i801', I2C address 0x52
Chip `eeprom' (confidence: 6)

  EEPROMs are *NOT* sensors! They are data storage chips commonly
  found on memory modules (SPD), in monitors (EDID), or in some
  laptops, for example.

Driver `it87' (should be inserted):
  Detects correctly:
  * ISA bus address 0x0290 (Busdriver `i2c-isa')
Chip `ITE IT8718F Super IO Sensors' (confidence: 9)

I will now generate the commands needed to load the required modules.
Just press ENTER to continue:

To make the sensors modules behave correctly, add these lines to
/etc/modules:

#cut here
# I2C adapter drivers
i2c-i801
# Chip drivers
eeprom
it87
#cut here
--

output of lsmod:
keetweej:/data3/test# lsmod | grep -e i2c  -e it87
it87   28708  0
hwmon_vid   7424  1 it87
i2c_isa10752  1 it87
i2c_dev15496  0
i2c_i801   13076  0
i2c_core   27776  5 it87,i2c_isa,eeprom,i2c_dev,i2c_i801


output of sensors:
keetweej:/data3/test# sensors
No sensors found!
Make sure you loaded all the kernel drivers you need.
Try sensors-detect to find out which these are.


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

Kernel: Linux 2.6.18-4-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 lm-sensors depends on:
ii  libc6   2.3.6.ds1-13 GNU C Library: Shared libraries
ii  libsensors3 1:2.10.1-3   library to read temperature/voltag
ii  perl5.8.8-7  Larry Wall's Practical Extraction 
ii  sed 4.1.5-1  The GNU sed stream editor
ii  ucf 2.0021   Update Configuration File: preserv

lm-sensors recommends no packages.

-- no debconf information


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



Bug#422528: boinc-app-seti: x86_64 package does not work: seti says no such platform

2007-05-06 Thread Folkert van Heusden
Package: boinc-app-seti
Version: 5.13+cvs20060510-1
Severity: grave
Justification: renders package unusable


2007-05-06 11:38:42 [http://setiathome.berkeley.edu/] Sending scheduler request 
to http://setiboinc.ssl.berkeley.edu/sah_cgi/cgi
2007-05-06 11:38:42 [http://setiathome.berkeley.edu/] Reason: Requested by user
2007-05-06 11:38:42 [http://setiathome.berkeley.edu/] Requesting 17280 seconds 
of new work
2007-05-06 11:40:21 [http://setiathome.berkeley.edu/] Scheduler request 
succeeded
2007-05-06 11:40:21 [EMAIL PROTECTED] Message from server: platform 
'x86_64-pc-linux-gnu' not found
2007-05-06 11:40:21 [EMAIL PROTECTED] New host venue: home
2007-05-06 11:40:21 [EMAIL PROTECTED] Successfully attached to [EMAIL PROTECTED]


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

Kernel: Linux 2.6.18-4-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 boinc-app-seti depends on:
ii  boinc-client5.4.11-5 core client for the BOINC distribu
ii  fftw3   3.1.2-1  library for computing Fast Fourier
ii  libc6   2.3.6.ds1-13 GNU C Library: Shared libraries
ii  libgcc1 1:4.1.1-21   GCC support library
ii  libssl0.9.8 0.9.8e-4 SSL shared libraries
ii  libstdc++6  4.1.1-21 The GNU Standard C++ Library v3
ii  zlib1g  1:1.2.3-13   compression library - runtime

boinc-app-seti recommends no packages.

-- no debconf information


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



Bug#423010: vncserver not working at all

2007-05-09 Thread Folkert van Heusden
Package: vncserver
Version: 3.3.7-14
Severity: grave
Justification: renders package unusable


When vncserver is invoked, it says it starts a new session on
host:number but in fact nothing is listening.

[EMAIL PROTECTED]:~$ vncserver -geometry 1024x768

New 'X' desktop is belle:1

Starting applications specified in /etc/X11/Xsession
Log file is /home/folkert/.vnc/belle:1.log

[EMAIL PROTECTED]:~$ netstat -na | grep 590
[EMAIL PROTECTED]:~$ ps -deaf | grep -e vnc -e X
folkert  26404 16078  0 14:09 pts/800:00:00 grep -e vnc -e X
[EMAIL PROTECTED]:~$

so it seems it doesn't work. Maybe it needs extra packages which are not
included in the dependencies?


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

Kernel: Linux 2.6.18-4-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 vncserver depends on:
ii  dpkg 1.13.25 package maintenance system for Deb
ii  libc62.5-5   GNU C Library: Shared libraries
ii  libgcc1  1:4.1.2-6   GCC support library
ii  libice6  1:1.0.3-2   X11 Inter-Client Exchange library
ii  libsm6   1:1.0.2-2   X11 Session Management library
ii  libstdc++6   4.1.2-6 The GNU Standard C++ Library v3
ii  libx11-6 2:1.0.3-7   X11 client-side library
ii  libxext6 1:1.0.1-2   X11 miscellaneous extension librar
ii  perl 5.8.8-7 Larry Wall's Practical Extraction 
ii  vnc-common   3.3.7-14Virtual network computing server s
ii  x11-common   1:7.1.0-18  X Window System (X.Org) infrastruc
ii  xbase-clients1:7.1.ds1-2 miscellaneous X clients
ii  zlib1g   1:1.2.3-13  compression library - runtime

Versions of packages vncserver recommends:
pn  xfonts-base(no description available)

-- no debconf information


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



Bug#423010: vncserver not working at all

2007-05-10 Thread Folkert van Heusden
> Hi
> You have some major permission problem.

I did not see any E[permission denied] in the strace output?

> When vnc tries to connect to the local port and open that, you
> get connection refused...
> port 6001 ip 192.168.64.100

yes that is because nothing is listening on that port

> You do not happen to have some security function activated
> anywhere?

none
default debian

> How did you get the strace output?

strace -f vncserver
and
strace -f vnc4server

> And have you tried to run with only Xvnc :5 instead of vncserver?
> So my conclusion is that this is not a problem in vnc, but
> rather the host system of yours. Do you have SE-linux activated?

no se-linux

found the problem: vnc[4]server incorrectly _recomends_ the installation
of the xfonts-base package while it is actually required (or at least A
font package?) to be able to run


Folkert van Heusden

-- 
MultiTail is een flexibele tool voor het volgen van logfiles en
uitvoer van commando's. Filteren, van kleur voorzien, mergen,
'diff-view', etc. http://www.vanheusden.com/multitail/
--
Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com


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



Bug#423886: coreutils: tail very ineffecient

2007-05-14 Thread Folkert van Heusden
Package: coreutils
Version: 5.97-5.3
Severity: normal


Hi,

I noticed that tail does not react as snappy to changes in a file it
monitors (using 'tail -f') as is technically possible. So I did an
strace on it and found the following
fstat(3, {st_mode=S_IFREG|0644, st_size=3559, ...}) = 0
nanosleep({1, 0}, NULL) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3559, ...}) = 0
nanosleep({1, 0}, NULL) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3559, ...}) = 0
nanosleep({1, 0}, NULL) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3559, ...}) = 0
nanosleep({1, 0}, NULL) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3559, ...}) = 0
nanosleep({1, 0}, NULL) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3559, ...}) = 0
nanosleep({1, 0}, NULL) = 0
...
as you can see it sleeps for a second between each check. Causing a
delay of maximum 1 second before a change in the file monitored is
reflected in the output of tail. Furthermore: it is not efficient to use
fstat to see what has changed to the file. I propose a change to tail
that either uses directly the inotify kernel-interface or via de sgi
FAM-daemon. I once already implemented this using the older dnotify
interface.


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

Kernel: Linux 2.6.18-4-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 coreutils depends on:
ii  libacl1   2.2.42-1   Access control list shared library
ii  libc6 2.5-5  GNU C Library: Shared libraries
ii  libselinux1   1.32-3 SELinux shared libraries

coreutils recommends no packages.

-- no debconf information


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



Bug#461558: [Pkg-octave-devel] Bug#461558: octave fails to invoke gnuplot

2008-02-16 Thread Folkert van Heusden
> | > > Just tried 3.0 and it gives the same errors:
> | > > gnuplot> set terminal aqua 1 enhanced
> | > >   ^
> | > >  line 0: unknown or ambiguous terminal type; type just 'set 
> terminal' for a list
> | > > 
> | > > 
> | > > gnuplot> plot "-" using ($1):($2) axes x1y1 title "" with lines 
> linestyle 1 ;
> | > >   ^
> | > >  line 0: use 'set term' to set terminal type first
> | > 
> | > Have you by any chance set the environment variable GNUTERM?  What does 
> the
> | > follow yield for you?
> | > 
> | > $ echo $GNUTERM
> | > $ GNUTERM=x11 /usr/bin/octave3.0 -qf
> | > octave:1> plot (randn (10, 1));
> | 
> | Tried it under X11 and then things work. So it seems X11 is required for
> | it to run. I thought and hoped it would emit a png/gif/jpg-file.
> | So the bug can be closed.
> 
> To generate graphics files without displaying them on the screen, try
> something like
>   figure (1, 'visible', 'off');
>   plot (randn (10, 1));
>   print -dpng foo.png

Ah ok! Thanks a lot!


Folkert van Heusden

-- 
Multi tail barnamaj mowahib li mora9abat attasjilat wa nataij awamir
al 7asoub. damj, talwin, mora9abat attarchi7 wa ila akhirih.
http://www.vanheusden.com/multitail/
--
Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com



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



Bug#463113: login: delay when password was typed incorrectly is security measure of the past

2008-01-29 Thread Folkert van Heusden
Package: login
Version: 1:4.0.18.1-11
Severity: wishlist


login: delay when password was typed incorrectly is security measure of the past
please make this delay configurable


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

Kernel: Linux 2.6.23pps-nodeb.pps-nodeb (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 login depends on:
ii  libc6 2.7-5  GNU C Library: Shared libraries
ii  libpam-modules0.99.7.1-5 Pluggable Authentication Modules f
ii  libpam-runtime0.99.7.1-5 Runtime support for the PAM librar
ii  libpam0g  0.99.7.1-5 Pluggable Authentication Modules l

login recommends no packages.

-- no debconf information



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



Bug#463113: closed by Nicolas François <[EMAIL PROTECTED]> (Re: [Pkg-shadow-devel] Bug#463113: login: delay when password was typed incorrectly is security measure of the past)

2008-01-30 Thread Folkert van Heusden
> > login: delay when password was typed incorrectly is security measure of the 
> > past
> > please make this delay configurable
> 
> The delay is not set by login, but by PAM.
> It can be disabled by adding the nodelay option to the pam_unix auth module.

Ah, ok, thanks!

> However, I do not recommend to use this.
> A delay when a password is incorrect is a very efficient security
> measure against password brute force.
> I was very efficient, and with the time (and CPU resources or bandwidth
> being more and more cheap for the attacker and for an attacked server) it
> is more and more efficient.

What about parallel logins?


Folkert van Heusden

-- 
Feeling generous? -> http://www.vanheusden.com/wishlist.php
--
Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com



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



Bug#463461: /usr/sbin/inetd: time/daytime does not work for UDP

2008-01-31 Thread Folkert van Heusden
Package: openbsd-inetd
Version: 0.20050402-6
Severity: normal
File: /usr/sbin/inetd


inetd: time/daytime does not work for UDP
especially for 'time' this is rather unfortunate

this used to work:
daytime dgram   udp waitrootinternal
timedgram   udp waitrootinternal

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable')
Architecture: amd64 (x86_64)

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

Versions of packages openbsd-inetd depends on:
ii  libc6 2.7-5  GNU C Library: Shared libraries
ii  libwrap0  7.6.dbs-14 Wietse Venema's TCP wrappers libra
ii  lsb-base  3.1-24 Linux Standard Base 3.1 init scrip
ii  tcpd  7.6.dbs-14 Wietse Venema's TCP wrapper utilit
ii  update-inetd  4.27-0.6   inetd.conf updater

openbsd-inetd recommends no packages.

-- no debconf information



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



Bug#464127: dante-server: 'UDP associate' (command 0x03) returns external ip address(!) and also does not listen on that address

2008-02-05 Thread Folkert van Heusden
Package: dante-server
Version: 1.1.18-2.1
Severity: normal


'UDP associate' (command 0x03) returns external ip address(!) and also does not 
listen on that address

in /etc/danted.conf:
internal: eth2 port = 1080
external: eth0

eth2=192.168.64.1, eth0=213.84.46.114

tcpdump: client (192.168.64.100) connects to proxy (192.168.64.1) and
gets bind to external ip address:

here an udp associate with the bind-to-any is sent:
10:38:57.488117 IP 192.168.64.100.38790 > 192.168.64.1.socks: P 7:17(10) ack 3 
win 46 
0x:  4500 003e be1a 4000 4006 7ae9 c0a8 4064  E..>[EMAIL 
PROTECTED]@[EMAIL PROTECTED]
0x0010:  c0a8 4001 9786 0438 22f3 4c7b 09ff 6fa1  [EMAIL 
PROTECTED]".L{..o.
0x0020:  8018 002e cb86  0101 080a 1bba f263  ...c
0x0030:  182f f921 0503 0001      ./.!..

reply:
10:38:57.495454 IP 192.168.64.1.socks > 192.168.64.100.38790: P 3:13(10) ack 17 
win 46 
0x:  4500 003e 96c1 4000 4006 a242 c0a8 4001  E..>[EMAIL 
PROTECTED]@[EMAIL PROTECTED]
0x0010:  c0a8 4064 0438 9786 09ff 6fa1 22f3 4c85  [EMAIL PROTECTED]".L.
0x0020:  8018 002e 01e7  0101 080a 182f f922  ./."
0x0030:  1bba f263 0500 0001 d554 2e72 b595   ...c.T.r..
 ^
external ip address!
Also: it then is not listening on that ip address:
mauer:/home/folkert# netstat -nap | grep 46485
mauer:/home/folkert#


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable')
Architecture: amd64 (x86_64)

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

Versions of packages dante-server depends on:
ii  libc6 2.7-5  GNU C Library: Shared libraries
ii  libpam0g  0.99.7.1-5 Pluggable Authentication Modules l
ii  libwrap0  7.6.dbs-14 Wietse Venema's TCP wrappers libra

dante-server recommends no packages.

-- no debconf information



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



Bug#456002: ample doesn't put itself into /etc/init.d and such

2007-12-12 Thread Folkert van Heusden
Package: ample
Version: 0.5.7-4
Severity: normal


in case one wants to use it unattended as well


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable')
Architecture: amd64 (x86_64)

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

Versions of packages ample depends on:
ii  libc6 2.7-3  GNU C Library: Shared libraries
ii  libwrap0  7.6.dbs-14 Wietse Venema's TCP wrappers libra

ample recommends no packages.

-- no debconf information



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



Bug#457166: mtop: fails to install due to trying to connect while no useraccount is known

2007-12-20 Thread Folkert van Heusden
Package: mtop
Version: 0.6.6-1.2
Severity: normal


fails to install due to trying to connect while no useraccount is known

Setting up mtop (0.6.6-1.2) ...
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using
password: NO)
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using
password: NO)
dpkg: error processing mtop (--configure):
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 mtop
 E: Sub-process /usr/bin/dpkg returned an error code (1)


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable')
Architecture: amd64 (x86_64)

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

Versions of packages mtop depends on:
ii  debconf [debconf-2.0] 1.5.17 Debian configuration management sy
ii  libcurses-perl1.13-1 Curses interface for Perl
ii  libdbd-mysql-perl 4.005-1A Perl5 database interface to the 
ii  mysql-client  5.0.45-1   MySQL database client (meta packag
ii  mysql-client-5.0 [mysql-clien 5.0.45-1   MySQL database client binaries
ii  perl  5.8.8-12   Larry Wall's Practical Extraction 
ii  perl-modules [libnet-perl]5.8.8-12   Core Perl modules

Versions of packages mtop recommends:
ii  mysql-server  5.0.45-1   MySQL database server (meta packag
ii  mysql-server-5.0 [mysql-serve 5.0.45-1   MySQL database server binaries

-- debconf information:
  mtop/root: root
  mtop/mysql_port: 3306
  mtop/mysql_server: localhost



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



Bug#436112: apt-proxy: Failed to load application: /usr/lib/python2.4/site-packages/apt_pkg.so: undefined symbol: pkgCPU

2007-08-05 Thread Folkert van Heusden
Package: apt-proxy
Version: 1.9.36
Severity: normal


Suddenly apt-proxy fails to start:
Failed to load application: /usr/lib/python2.4/site-packages/apt_pkg.so:
undefined symbol: pkgCPU

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

Kernel: Linux 2.6.22-1-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 apt-proxy depends on:
ii  adduser   3.104  add and remove users and groups
ii  bzip2 1.0.3-7high-quality block-sorting file co
ii  debconf [debconf-2.0] 1.5.14 Debian configuration management sy
ii  logrotate 3.7.1-3Log rotation utility
ii  python2.4.4-6An interactive high-level object-o
ii  python-apt0.7.3  Python interface to libapt-pkg
ii  python-central0.5.14 register and build utility for Pyt
ii  python-twisted-web0.7.0-1An HTTP protocol implementation to

apt-proxy recommends no packages.

-- debconf information:
  apt-proxy/upgrading-v2:
  apt-proxy/upgrading-v2-result:


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



Bug#436112: apt-proxy: Failed to load application: /usr/lib/python2.4/site-packages/apt_pkg.so: undefined symbol: pkgCPU

2007-08-05 Thread Folkert van Heusden
> severity 436112 grave
> merge 436112 436011
> thanks
> > 
> > Suddenly apt-proxy fails to start:
> > Failed to load application: /usr/lib/python2.4/site-packages/apt_pkg.so:
> > undefined symbol: pkgCPU
> 
> Ha die flok,
> At http://bugs.debian.org/436011 is a workaround for this bug,
> it boils down to commenting out line 106
> in /usr/lib/python2.4/site-packages/apt_proxy/packages.py

Nope, problem persists.

I now have:

Makes a fake configuration for python-apt for each backend.
"""
DEFAULT_APT_CONFIG = {
#'APT' : '',
#'APT::Architecture' : apt_pkg.CPU,
#'APT::Default-Release' : 'unstable',

'Dir':'.', # /
'Dir::State' : 'apt/', # var/lib/apt/


belle:/home/folkert/Personal/src/pov# /etc/init.d/apt-proxy restart
Stopping apt-proxy.
Starting apt-proxy
Failed to load application: /usr/lib/python2.4/site-packages/apt_pkg.so: 
undefined symbol: pkgCPU


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



Bug#436112: apt-proxy: Failed to load application: /usr/lib/python2.4/site-packages/apt_pkg.so: undefined symbol: pkgCPU

2007-08-06 Thread Folkert van Heusden
> > 'Dir':'.', # /
> > 'Dir::State' : 'apt/', # var/lib/apt/
> > 
> > belle:/home/folkert/Personal/src/pov# /etc/init.d/apt-proxy restart
> > Stopping apt-proxy.
> > Starting apt-proxy
> > Failed to load application: /usr/lib/python2.4/site-packages/apt_pkg.so: 
> > undefined symbol: pkgCPU
> 
> Strange ...
> Could/Would please execute these actions
>  /etc/init.d/apt-proxy stop
>  > /var/log/apt-proxy.log
>  /etc/init.d/apt-proxy start
> and then mail /var/log/apt-proxy.log

Here it is:

2007/08/06 10:08 +0200 [-] Log opened.
2007/08/06 10:08 +0200 [-] twistd 2.5.0 (/usr/bin/python 2.4.4) starting up
2007/08/06 10:08 +0200 [-] reactor class: 
2007/08/06 10:08 +0200 [-] Loading /usr/sbin/apt-proxy...
2007/08/06 10:08 +0200 [-] 
/usr/lib/python2.4/site-packages/twisted/manhole/telnet.py:8: 
exceptions.DeprecationWarning: As of Twisted 2.1, twisted.protocols.telnet is 
deprecated.  See twisted.conch.telnet for the current, supported API.
2007/08/06 10:08 +0200 [-] Traceback (most recent call last):
2007/08/06 10:08 +0200 [-]   File 
"/usr/lib/python2.4/site-packages/twisted/application/app.py", line 218, in 
getApplication
2007/08/06 10:08 +0200 [-] application = service.loadApplication(filename, 
style, passphrase)
2007/08/06 10:08 +0200 [-]   File 
"/usr/lib/python2.4/site-packages/twisted/application/service.py", line 341, in 
loadApplication
2007/08/06 10:08 +0200 [-] application = sob.loadValueFromFile(filename, 
'application', passphrase)
2007/08/06 10:08 +0200 [-]   File 
"/usr/lib/python2.4/site-packages/twisted/persisted/sob.py", line 215, in 
loadValueFromFile
2007/08/06 10:08 +0200 [-] exec fileObj in d, d
2007/08/06 10:08 +0200 [-]   File "/usr/sbin/apt-proxy", line 19, in ?
2007/08/06 10:08 +0200 [-] from apt_proxy.apt_proxy_conf import apConfig
2007/08/06 10:08 +0200 [-]   File 
"/usr/lib/python2.4/site-packages/apt_proxy/apt_proxy_conf.py", line 17, in ?
2007/08/06 10:08 +0200 [-] from apt_proxy import Backend
2007/08/06 10:08 +0200 [-]   File 
"/usr/lib/python2.4/site-packages/apt_proxy/apt_proxy.py", line 26, in ?
2007/08/06 10:08 +0200 [-] import fetchers, cache, packages
2007/08/06 10:08 +0200 [-]   File 
"/usr/lib/python2.4/site-packages/apt_proxy/packages.py", line 17, in ?
2007/08/06 10:08 +0200 [-] import apt_pkg, apt_inst, sys, os, stat
2007/08/06 10:08 +0200 [-] ImportError: 
/usr/lib/python2.4/site-packages/apt_pkg.so: undefined symbol: pkgCPU
2007/08/06 10:08 +0200 [-] Failed to load application: 
/usr/lib/python2.4/site-packages/apt_pkg.so: undefined symbol: pkgCPU
2007/08/06 10:08 +0200 [-] Unhandled Error
Traceback (most recent call last):
  File "/usr/lib/python2.4/site-packages/twisted/application/app.py", 
line 379, in run
runApp(config)
  File "/usr/lib/python2.4/site-packages/twisted/scripts/twistd.py", 
line 23, in runApp
_SomeApplicationRunner(config).run()
  File "/usr/lib/python2.4/site-packages/twisted/application/app.py", 
line 157, in run
self.application = self.createOrGetApplication()
  File "/usr/lib/python2.4/site-packages/twisted/application/app.py", 
line 207, in createOrGetApplication
application = getApplication(self.config, passphrase)
---  ---
  File "/usr/lib/python2.4/site-packages/twisted/application/app.py", 
line 218, in getApplication
application = service.loadApplication(filename, style, passphrase)
  File 
"/usr/lib/python2.4/site-packages/twisted/application/service.py", line 341, in 
loadApplication
application = sob.loadValueFromFile(filename, 'application', 
passphrase)
  File "/usr/lib/python2.4/site-packages/twisted/persisted/sob.py", 
line 215, in loadValueFromFile
exec fileObj in d, d
  File "/usr/sbin/apt-proxy", line 19, in ?
from apt_proxy.apt_proxy_conf import apConfig
  File "/usr/lib/python2.4/site-packages/apt_proxy/apt_proxy_conf.py", 
line 17, in ?
from apt_proxy import Backend
  File "/usr/lib/python2.4/site-packages/apt_proxy/apt_proxy.py", line 
26, in ?
import fetchers, cache, packages
  File "/usr/lib/python2.4/site-packages/apt_proxy/packages.py", line 
17, in ?
import apt_pkg, apt_inst, sys, os, stat
exceptions.ImportError: /usr/lib/python2.4/site-packages/apt_pkg.so: 
undefined symbol: pkgCPU

2007/08/06 10:08 +0200 [-]


Folkert van Heusden

-- 
MultiTail è uno flexible tool per seguire di logfiles e effettuazione
di commissioni. Feltrare, provedere da colore, merge, 'diff-view',
etc. http://www.vanheusden.com/multitail/
--
Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com



Bug#436200: since last update motion suddenly won't store motion-triggered movies

2007-08-06 Thread Folkert van Heusden
Package: motion
Version: 3.2.3-2.1+b3
Severity: grave
Justification: renders package unusable


since last update motion suddenly won't store motion-triggered movies
when run with -n -d 255 it gives the following output:

[0] Processing thread 0 - config file /etc/motion/motion.conf
[0] Unknown config option "always_changes": No such file or directory
[0] Unknown config option "debug_parameter": No such file or directory
[1] Thread is from /etc/motion/motion.conf
[1] Thread started
[1] motion-httpd/3.2.3 running, accepting connections
[1] motion-httpd: waiting for data on port TCP 8080
[1] Started stream webcam server in port 8000
[1] File of type 2 saved to: /data/webcam/snapshot.jpg
[1] File of type 32 saved to: /data/webcam/20070806-timelapse.mpg
[1] File of type 2 saved to: /data/webcam/snapshot.jpg
[1] File of type 2 saved to: /data/webcam/snapshot.jpg
[1] Codec not found: Success


mpeg1 support is not included it says and msmpeg4 and mpeg4 give the logging as 
seen above.

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

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

Versions of packages motion depends on:
ii  debconf [debconf-2.0 1.5.13  Debian configuration management sy
ii  liba52-0.7.4 0.7.4-11library for decoding ATSC A/52 str
ii  libavcodec1d 0.cvs20070307-6 ffmpeg codec library
ii  libavformat1d0.cvs20070307-6 ffmpeg file format library
ii  libavutil1d  0.cvs20070307-6 ffmpeg utility library
ii  libc62.6-2   GNU C Library: Shared libraries
ii  libdc1394-13 1.1.0-3+b1  high level programming interface f
ii  libgsm1  1.0.10-13   Shared libraries for GSM speech co
ii  libjpeg626b-13   The Independent JPEG Group's JPEG 
ii  libmysqlclient15off  5.0.41a-1   MySQL database client library
ii  libogg0  1.1.3-2 Ogg Bitstream Library
ii  libpq5   8.2.4-2 PostgreSQL C client library
ii  libraw1394-8 1.2.1-2 library for direct access to IEEE 
ii  libtheora0   0.0.0.alpha7.dfsg-2 The Theora Video Compression Codec
ii  libvorbis0a  1.1.2.dfsg-2The Vorbis General Audio Compressi
ii  libvorbisenc21.1.2.dfsg-2The Vorbis General Audio Compressi
ii  zlib1g   1:1.2.3.3.dfsg-5compression library - runtime

Versions of packages motion recommends:
ii  ffmpeg   0.cvs20070307-6 multimedia player, server and enco

-- debconf information:
  motion/moved_conf_dir:


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



Bug#436239: libid3tag0-dev: header file "/usr/include/id3tag.h" does not contain definition for struct id3_file altough it references it

2007-08-06 Thread Folkert van Heusden
Package: libid3tag0-dev
Version: 0.15.1b-10
Severity: normal


See subject
libid3tag0-dev: header file "/usr/include/id3tag.h" does not contain definition 
for struct id3_file altough it references it

[EMAIL PROTECTED]:~/Personal/src/acpitail$ grep id3_file /usr/include/id3tag.h 
| grep -v "^enum id3_file_mode"
struct id3_file *id3_file_open(char const *, enum id3_file_mode);
struct id3_file *id3_file_fdopen(int, enum id3_file_mode);
int id3_file_close(struct id3_file *);
struct id3_tag *id3_file_tag(struct id3_file const *);
int id3_file_update(struct id3_file *);

as you can see some functions require this structure but it is not defined 
anywhere



-- System Information:
Debian Release: lenny/sid
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.22-1-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 libid3tag0-dev depends on:
ii  libid3tag0  0.15.1b-10   ID3 tag reading library from the M
ii  pkg-config  0.22-1   manage compile and link flags for 
ii  zlib1g-dev  1:1.2.3.3.dfsg-5 compression library - development

libid3tag0-dev recommends no packages.

-- no debconf information


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



Bug#436243: mutt ignores ~/.mailcap when type is already set in global (/etc/mailcap) file

2007-08-06 Thread Folkert van Heusden
Package: mutt
Version: 1.5.16-3
Severity: normal


mutt ignores ~/.mailcap when type is already set in global (/etc/mailcap) file

e.g. in ~/.mailcap I have:
audio/mp3; /usr/local/bin/mp3info -v -f %s ; copiousoutput
audio/x-mp3; /usr/local/bin/mp3info -v -f %s ; copiousoutput
audio/mpeg; /usr/local/bin/mp3info -v -f %s ; copiousoutput

and in /etc/mailcap I got:
audio/mpeg; mpg123 -q '%s'; needsterminal
audio/mpeg; /usr/bin/gmplayer '%s'; description="MPEG Audio Format"
audio/mpeg; noatun --nofork '%s';   nametemplate=%s.mpg;test=test 
"$DISPLAY" != ""
audio/x-mp2;noatun --nofork '%s';   nametemplate=%s.mp2;test=test 
"$DISPLAY" != ""
audio/x-mp3;noatun --nofork '%s';   nametemplate=%s.mp3;test=test 
"$DISPLAY" != ""

now I would expect mutt to invoke mp3info when it finds an mp3-attachment but 
it does not
(in fact it runs mpg123 when I press enter on it)


-- System Information:
Debian Release: lenny/sid
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.22-1-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 mutt depends on:
ii  libc6 2.6-5  GNU C Library: Shared libraries
ii  libgdbm3  1.8.3-3GNU dbm database routines (runtime
ii  libgnutls13   1.6.3-1the GNU TLS library - runtime libr
ii  libidn11  0.6.5-1GNU libidn library, implementation
ii  libncursesw5  5.6+20070716-1 Shared libraries for terminal hand
ii  libsasl2-22.1.22.dfsg1-8 Authentication abstraction library

Versions of packages mutt recommends:
ii  locales   2.6-5  GNU C Library: National Language (
ii  mime-support  3.39-1 MIME files 'mime.types' & 'mailcap
ii  postfix [mail-transport-agent 2.4.5-1High-performance mail transport ag

-- no debconf information


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



Bug#436239: [pkg-mad-maintainers] Bug#436239: libid3tag0-dev: header file "/usr/include/id3tag.h" does not contain definition for struct id3_file altough it references it

2007-08-06 Thread Folkert van Heusden
> > See subject
> > libid3tag0-dev: header file "/usr/include/id3tag.h" does not contain 
> > definition for struct id3_file altough it references it
> > [EMAIL PROTECTED]:~/Personal/src/acpitail$ grep id3_file 
> > /usr/include/id3tag.h | grep -v "^enum id3_file_mode"
> > struct id3_file *id3_file_open(char const *, enum id3_file_mode);
> > struct id3_file *id3_file_fdopen(int, enum id3_file_mode);
> > int id3_file_close(struct id3_file *);
> > struct id3_tag *id3_file_tag(struct id3_file const *);
> > int id3_file_update(struct id3_file *);
> > as you can see some functions require this structure but it is not defined 
> > anywhere
> 
> Looks to me like this is an opaque data type.   Its only ever referenced
> as a pointer type so the user of the API never needs to know what the
> layout of the type really is.

Hmmm, I could do (tested and it compiles):

        void *handle = (void *)id3_file_open(...);

but I wonder if that is guaranteed to work.


Folkert van Heusden

-- 
To MultiTail einai ena polymorfiko ergaleio gia ta logfiles kai tin
eksodo twn entolwn. Prosferei: filtrarisma, xrwmatismo, sygxwneysi,
diaforetikes provoles. http://www.vanheusden.com/multitail/
--
Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com


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



Bug#436290: RFP: open64 -- Open64 is the final result of research contributions from a number of compiler groups around the world. Formerly known as Pro64, Open64 was initially created by SGI and lice

2007-08-06 Thread Folkert van Heusden
Package: wnpp
Severity: wishlist


Hi,

It would be nice if the open64 compiler package would be packaged for
Debian. A few years ago it was released in GPL.


* Package name: open64
  Version : x.y.z
  Upstream Author : Name <[EMAIL PROTECTED]>
* URL : http://www.example.org/
* License : (GPL, LGPL, BSD, MIT/X, etc.)
  Programming Lang: (C, C++, C#, Perl, Python, etc.)
  Description : Open64 is the final result of research contributions from a 
number of compiler groups around the world. Formerly known as Pro64, Open64 was 
initially created by SGI and licensed under the Opens external link in new 
windowGNU Public License (GPL). It was derived from SGI's MIPSPro compiler.

(Include the long description here.)

-- System Information:
Debian Release: lenny/sid
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.22-1-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


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



Bug#502732: pidgin: adding animated smiley from chatpartner gives a still smiley instead of the animated original one

2008-10-19 Thread Folkert van Heusden
Package: pidgin
Version: 2.5.0-1
Severity: normal


adding animated smiley from chatpartner gives a still smiley instead of the 
animated original one


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

Kernel: Linux 2.6.25-2-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 pidgin depends on:
ii  gconf22.22.0-1   GNOME configuration database syste
ii  libatk1.0-0   1.22.0-1   The ATK accessibility toolkit
ii  libc6 2.7-13 GNU C Library: Shared libraries
ii  libcairo2 1.6.4-6The Cairo 2D vector graphics libra
ii  libdbus-1-3   1.2.1-3simple interprocess messaging syst
ii  libdbus-glib-1-2  0.76-1 simple interprocess messaging syst
ii  libglib2.0-0  2.16.5-1   The GLib library of C routines
ii  libgstreamer0.10-00.10.19-3  Core GStreamer libraries and eleme
ii  libgtk2.0-0   2.12.11-3  The GTK+ graphical user interface 
ii  libgtkspell0  2.0.13-1   a spell-checking addon for GTK's T
ii  libice6   2:1.0.4-1  X11 Inter-Client Exchange library
ii  libpango1.0-0 1.20.5-2   Layout and rendering of internatio
ii  libpurple02.5.0-1multi-protocol instant messaging l
ii  libsm62:1.0.3-2  X11 Session Management library
ii  libstartup-notification0  0.9-1  library for program launch feedbac
ii  libx11-6  2:1.1.5-1  X11 client-side library
ii  libxss1   1:1.1.3-1  X11 Screen Saver extension library
ii  perl  5.10.0-14  Larry Wall's Practical Extraction 
ii  perl-base [perlapi-5.10.0]5.10.0-14  minimal Perl system
ii  pidgin-data   2.5.0-1multi-protocol instant messaging c

Versions of packages pidgin recommends:
ii  gstreamer0.10-plugins-base0.10.19-2  GStreamer plugins from the "base" 
ii  gstreamer0.10-plugins-good0.10.8-4   GStreamer plugins from the "good" 

Versions of packages pidgin suggests:
ii  evolution-data-server 2.22.3-1   evolution database backend server
ii  gnome-panel   2.20.3-5   launcher and docking facility for 
ii  libsqlite3-0  3.5.9-3SQLite 3 shared library

-- no debconf information



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



Bug#502731: pidgin lets you select a (too) large image for custom smileys but real msn will then only show upper left corner

2008-10-19 Thread Folkert van Heusden
Package: pidgin
Version: 2.5.0-1
Severity: normal


pidgin lets you select a (too) large image for custom smileys but real msn will 
then only show upper left corner

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

Kernel: Linux 2.6.25-2-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 pidgin depends on:
ii  gconf22.22.0-1   GNOME configuration database syste
ii  libatk1.0-0   1.22.0-1   The ATK accessibility toolkit
ii  libc6 2.7-13 GNU C Library: Shared libraries
ii  libcairo2 1.6.4-6The Cairo 2D vector graphics libra
ii  libdbus-1-3   1.2.1-3simple interprocess messaging syst
ii  libdbus-glib-1-2  0.76-1 simple interprocess messaging syst
ii  libglib2.0-0  2.16.5-1   The GLib library of C routines
ii  libgstreamer0.10-00.10.19-3  Core GStreamer libraries and eleme
ii  libgtk2.0-0   2.12.11-3  The GTK+ graphical user interface 
ii  libgtkspell0  2.0.13-1   a spell-checking addon for GTK's T
ii  libice6   2:1.0.4-1  X11 Inter-Client Exchange library
ii  libpango1.0-0 1.20.5-2   Layout and rendering of internatio
ii  libpurple02.5.0-1multi-protocol instant messaging l
ii  libsm62:1.0.3-2  X11 Session Management library
ii  libstartup-notification0  0.9-1  library for program launch feedbac
ii  libx11-6  2:1.1.5-1  X11 client-side library
ii  libxss1   1:1.1.3-1  X11 Screen Saver extension library
ii  perl  5.10.0-14  Larry Wall's Practical Extraction 
ii  perl-base [perlapi-5.10.0]5.10.0-14  minimal Perl system
ii  pidgin-data   2.5.0-1multi-protocol instant messaging c

Versions of packages pidgin recommends:
ii  gstreamer0.10-plugins-base0.10.19-2  GStreamer plugins from the "base" 
ii  gstreamer0.10-plugins-good0.10.8-4   GStreamer plugins from the "good" 

Versions of packages pidgin suggests:
ii  evolution-data-server 2.22.3-1   evolution database backend server
ii  gnome-panel   2.20.3-5   launcher and docking facility for 
ii  libsqlite3-0  3.5.9-3SQLite 3 shared library

-- no debconf information



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



Bug#502735: when other end sends around 65 maximum sized animated smileys, pidgin becomes unusable slow; mouseclicks are ignored

2008-10-19 Thread Folkert van Heusden
Package: pidgin
Version: 2.5.0-1
Severity: normal


when other end sends around 65 maximum sized animated smileys, pidgin becomes 
unusable slow; mouseclicks are ignored

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

Kernel: Linux 2.6.25-2-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 pidgin depends on:
ii  gconf22.22.0-1   GNOME configuration database syste
ii  libatk1.0-0   1.22.0-1   The ATK accessibility toolkit
ii  libc6 2.7-13 GNU C Library: Shared libraries
ii  libcairo2 1.6.4-6The Cairo 2D vector graphics libra
ii  libdbus-1-3   1.2.1-3simple interprocess messaging syst
ii  libdbus-glib-1-2  0.76-1 simple interprocess messaging syst
ii  libglib2.0-0  2.16.5-1   The GLib library of C routines
ii  libgstreamer0.10-00.10.19-3  Core GStreamer libraries and eleme
ii  libgtk2.0-0   2.12.11-3  The GTK+ graphical user interface 
ii  libgtkspell0  2.0.13-1   a spell-checking addon for GTK's T
ii  libice6   2:1.0.4-1  X11 Inter-Client Exchange library
ii  libpango1.0-0 1.20.5-2   Layout and rendering of internatio
ii  libpurple02.5.0-1multi-protocol instant messaging l
ii  libsm62:1.0.3-2  X11 Session Management library
ii  libstartup-notification0  0.9-1  library for program launch feedbac
ii  libx11-6  2:1.1.5-1  X11 client-side library
ii  libxss1   1:1.1.3-1  X11 Screen Saver extension library
ii  perl  5.10.0-14  Larry Wall's Practical Extraction 
ii  perl-base [perlapi-5.10.0]5.10.0-14  minimal Perl system
ii  pidgin-data   2.5.0-1multi-protocol instant messaging c

Versions of packages pidgin recommends:
ii  gstreamer0.10-plugins-base0.10.19-2  GStreamer plugins from the "base" 
ii  gstreamer0.10-plugins-good0.10.8-4   GStreamer plugins from the "good" 

Versions of packages pidgin suggests:
ii  evolution-data-server 2.22.3-1   evolution database backend server
ii  gnome-panel   2.20.3-5   launcher and docking facility for 
ii  libsqlite3-0  3.5.9-3SQLite 3 shared library

-- no debconf information



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



Bug#503106: openarena-server: does not include startup script

2008-10-22 Thread Folkert van Heusden
Package: openarena-server
Version: 0.7.7+dfsg1-1
Severity: normal


openarena-server does not include a startup script 

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable')
Architecture: amd64 (x86_64)

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

Versions of packages openarena-server depends on:
ii  libc6 2.7-14 GNU C Library: Shared libraries
ii  openarena-data0.7.7-1OpenArena game data

openarena-server recommends no packages.

openarena-server suggests no packages.

-- no debconf information



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



Bug#503106: openarena-server: does not include startup script

2008-10-24 Thread Folkert van Heusden
> do you mean an init-script, so that the server package can be configured
> to launch the openarena server binary while the system is booting?

Yes, that's the one.
And then have probably a /etc/default/openarena.conf or so file in which
the commandline parameters can be given.


Folkert van Heusden

-- 
Multitail es una herramienta flexible que permite visualizar los "log
file" y seguir la ejecución de comandos. Permite filtrar, añadir
colores, combinar archivos, la visualización de diferencias (diff-
view), etc.  http://www.vanheusden.com/multitail/
--
Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com



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



Bug#495928: debian-installer: does not add line to /etc/inittab to enable logins via virtual console

2008-08-21 Thread Folkert van Heusden
Package: debian-installer
Version: debian stable: 4.0r4a
Severity: normal


Situation:
- IBM p52a
- LPAR with diskspace served via VIOS 1.5 (an LV, not a physical disk)
- virtual console accessed via HMC

The debian-installer does not add the following line to /etc/inittab:
co:2345:respawn:/sbin/getty hvc0 38400
Without it, one cannot login via the virtual console.


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable')
Architecture: powerpc (ppc64)

Kernel: Linux 2.6.25-2-powerpc64 (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#495930: yaboot: debian stable: 4.0r4a

2008-08-21 Thread Folkert van Heusden
Package: yaboot
Version: 1.3.13a-1
Severity: normal


Situation:
- IBM p52a
- LPAR with diskspace served via VIOS 1.5 (an LV, not a physical disk)
- virtual console accessed via HMC

The problem is that the yaboot configuration-file is installed in /etc. /etc 
can be in a logical volume: in that case yaboot fails to find its 
configurationfile at boottime and so fails to boot 
the Debian system. Solution would be putting that configfile in /boot like grub 
does. Current workaround is not to use LVM at all.

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable')
Architecture: powerpc (ppc64)

Kernel: Linux 2.6.25-2-powerpc64 (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 yaboot depends on:
ii  libc6 2.7-13 GNU C Library: Shared libraries

Versions of packages yaboot recommends:
pn  hfsutils   (no description available)
ii  powerpc-utils 1.1.3-22   Various utilities for Linux/PowerP

yaboot suggests no packages.

-- no debconf information



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



Bug#495929: debian-installer: can not use a virtual optical drive (with VIOS 1.5) to install from

2008-08-21 Thread Folkert van Heusden
Package: debian-installer
Version: debian stable: 4.0r4a
Severity: normal


Situation:
- IBM p52a
- LPAR with diskspace served via VIOS 1.5 (an LV, not a physical disk)
- CD-ROM is a virtual optical drive served by VIOS LPAR, backed by iso-image of 
debian install
- virtual console accessed via HMC

The LPAR always succeeds in booting from the CD, e.g. the installer-screen 
appears.
In most of the cases during the CD-ROM detecting phase the installer says that 
it cannot use this CD-ROM to install from. Please note: NOT in ALL cases: in 
some cases it proceeds and starts to 
install packages but then after a few fails with read errors.


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable')
Architecture: powerpc (ppc64)

Kernel: Linux 2.6.25-2-powerpc64 (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#495928: debian-installer: does not add line to /etc/inittab to enable logins via virtual console

2008-08-29 Thread Folkert van Heusden
> > Package: debian-installer
> > Version: debian stable: 4.0r4a
> > Severity: normal
> > 
> > Situation:
> > - IBM p52a
> > - LPAR with diskspace served via VIOS 1.5 (an LV, not a physical disk)
> > - virtual console accessed via HMC
> > 
> > The debian-installer does not add the following line to /etc/inittab:
> > co:2345:respawn:/sbin/getty hvc0 38400
> > Without it, one cannot login via the virtual console.
> 
> Could you test if the issue is still present when installing with a
> daily build that will be starting by tomorrow (the 29th)?
> [1] http://people.debian.org/~wouter/d-i/powerpc/daily/

Will the buildproces produce an .ISO-file? Then I'll definately give it
a goal!


Folkert van Heusden

-- 
MultiTail è uno flexible tool per seguire di logfiles e effettuazione
di commissioni. Feltrare, provedere da colore, merge, 'diff-view',
etc. http://www.vanheusden.com/multitail/
--
Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com



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



Bug#502732: pidgin: adding animated smiley from chatpartner gives a still smiley instead of the animated original one

2008-10-26 Thread Folkert van Heusden
> Could you describe the exact actions you perform to reproduce this behavior?

other end sends an animated smiley
i click on it and selected add
then I send it and it won't animate


Folkert van Heusden

-- 
www.biglumber.com <- site where one can exchange PGP key signatures 
--
Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com



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



Bug#503923: apt-proxy: fails retrieving due to 'unknown extension for file' error dists/testing/main/i18n/Translation-en_US.bz2

2008-10-29 Thread Folkert van Heusden
Package: apt-proxy
Version: 1.9.36.3+nmu1
Severity: normal


apt-proxy: fails retrieving  due to 'unknown extension for file' error 
dists/testing/main/i18n/Translation-en_US.bz2

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

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

Versions of packages apt-proxy depends on:
ii  adduser   3.110  add and remove users and groups
ii  bzip2 1.0.5-1high-quality block-sorting file co
ii  debconf [debconf-2.0] 1.5.22 Debian configuration management sy
ii  logrotate 3.7.1-5Log rotation utility
ii  python2.5.2-2An interactive high-level object-o
ii  python-apt0.7.7.1Python interface to libapt-pkg
ii  python-central0.6.8  register and build utility for Pyt
ii  python-twisted-web8.1.0-1An HTTP protocol implementation to

apt-proxy recommends no packages.

Versions of packages apt-proxy suggests:
ii  rsync 3.0.3-2fast remote file copy program (lik

-- debconf information:
  apt-proxy/upgrading-v2:
  apt-proxy/upgrading-v2-result:



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



Bug#503923: fix

2008-10-29 Thread Folkert van Heusden
It seems that the naming of the file got changed. The following patch
seems to fix it:

belle:/# diff -uNrBbd /usr/share/pyshared/apt_proxy/cache.py.org 
/usr/share/pyshared/apt_proxy/cache.py
--- /usr/share/pyshared/apt_proxy/cache.py.org  2008-10-29 11:57:00.0 
+0100
+++ /usr/share/pyshared/apt_proxy/cache.py  2008-10-29 11:47:42.0 
+0100
@@ -503,7 +503,7 @@
 
 FileType(r"(?:^|/)Packages.gz$", "text/plain", 1, 
decompressor=clients.GzUncompressClient),
 FileType(r"(?:^|/)Packages.bz2$", "text/plain", 1, 
decompressor=clients.Bz2UncompressClient),
-
FileType(r"(?:^|/)(?:Packages|Release(?:\.gpg)?|Sources|(?:Contents|Translation)-[a-z0-9_]+)"
+
FileType(r"(?:^|/)(?:Packages|Release(?:\.gpg)?|Sources|(?:Contents|Translation)-[A-Za-z0-9_]+)"
 r"(?:\.(?:gz|bz2))?$",
  "text/plain", 1),
 FileType(r"(?:^|/)(?:Packages|Sources|Contents-[a-z0-9]+)\.diff/Index$",


Folkert van Heusden

-- 
MultiTail är en flexibel redskap för att fälja logfilar, utför av
commandoer, filtrera, ge färg, sammanfoga, o.s.v. följa.
http://www.vanheusden.com/multitail/
--
Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com



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



Bug#485661: [Pkg-alsa-devel] Bug#485661: udevsettle takes 28 seconds to complete, stalling the bootprocess

2008-11-02 Thread Folkert van Heusden
> > reassign 485661 alsa-utils
> > thanks
> > 
> > > udevsettle takes 28 seconds to complete, stalling the bootprocess
> > > see http://keetweej.vanheusden.com/bootchart.svg.bz2
> > Thinking again about this, I think it's alsa-related.
> > The alsa-utils script is not supposed to take so long (net.agent is,
> > because it has to wait for /etc/init.d/networking).
> 
> Is this still relevant?

Definately.
No news though.


Folkert van Heusden

-- 
MultiTail is een flexibele tool voor het volgen van logfiles en
uitvoer van commando's. Filteren, van kleur voorzien, mergen,
'diff-view', etc. http://www.vanheusden.com/multitail/
--
Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com



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



Bug#506532: libcurl3-openssl-dev: broken dependency

2008-11-22 Thread Folkert van Heusden
Package: libcurl3-openssl-dev
Version: testing
Severity: normal


The following packages have unmet dependencies:
  libcurl3-openssl-dev: Depends: libcurl3 (= 7.15.5-1etch1) but 7.18.2-7 is to 
be installed
E: Broken packages

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

Kernel: Linux 2.6.25-2-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



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



Bug#506532: libcurl3-openssl-dev: broken dependency

2008-11-27 Thread Folkert van Heusden
Hi,

> > Package: libcurl3-openssl-dev
> > 
> > The following packages have unmet dependencies:
> >   libcurl3-openssl-dev: Depends: libcurl3 (= 7.15.5-1etch1) but 7.18.2-7 is 
> > to be installed
> > E: Broken packages
> 
> this is a common problem, you want package libcurl4-openssl-dev.

Yes, that works!
I was compiling quake2world.

> libcurl3-openssl-dev is not present in Lenny, so you are trying to
> install the one of Etch which wants an older libcurl3.
> How did you come to this situation? During an upgrade from Etch or
> _after_ such upgrade?

After such upgrade. A few months ago i did a dist-upgrade.


Folkert van Heusden

MultiTail è uno flexible tool per seguire di logfiles e effettuazione
di commissioni. Feltrare, provedere da colore, merge, 'diff-view',
etc. http://www.vanheusden.com/multitail/
--
Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com



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



Bug#507138: kerneloops: please include in installer-menu (together with the current popularity-contest package)

2008-11-28 Thread Folkert van Heusden
Package: kerneloops
Version: 0.10-2
Severity: normal


please include in installer-menu, together with the current popularity-contest 
package
that way more people will install it so helping the kernel developers greatly

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

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

Versions of packages kerneloops depends on:
ii  libc6 2.7-15 GNU C Library: Shared libraries
ii  libcurl3-gnutls   7.18.2-5   Multi-protocol file transfer libra
ii  libdbus-1-3   1.2.1-4simple interprocess messaging syst
ii  libdbus-glib-1-2  0.76-1 simple interprocess messaging syst
ii  libglib2.0-0  2.16.6-1   The GLib library of C routines
ii  libgtk2.0-0   2.12.11-4  The GTK+ graphical user interface 
ii  libnotify1 [libnotify1-gtk2.1 0.4.4-3sends desktop notifications to a n

kerneloops recommends no packages.

kerneloops suggests no packages.

-- no debconf information



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



Bug#501444: gnome-screensaver: ignores external keyboard/mouse

2008-10-07 Thread Folkert van Heusden
Package: gnome-screensaver
Version: 2.22.2-1
Severity: normal


When my laptop (IBM R60) is in its docking station and I'm then using an
external keyboard/mouse, the screensaver kicks in every 15 minutes (time
configured for the screensaver to start) eventough I'm constantly
typing/moving the mouse. Odd thing is that it wakes-up again when a key
is pressed on the external keyboard.

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

Kernel: Linux 2.6.25-2-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 gnome-screensaver depends on:
ii  dbus   1.2.1-3   simple interprocess messaging syst
ii  gconf2 2.22.0-1  GNOME configuration database syste
ii  gnome-icon-theme   2.22.0-1  GNOME Desktop icon theme
ii  libatk1.0-01.22.0-1  The ATK accessibility toolkit
ii  libc6  2.7-13GNU C Library: Shared libraries
ii  libcairo2  1.6.4-6   The Cairo 2D vector graphics libra
ii  libdbus-1-31.2.1-3   simple interprocess messaging syst
ii  libdbus-glib-1-2   0.76-1simple interprocess messaging syst
ii  libfontconfig1 2.6.0-1   generic font configuration library
ii  libfreetype6   2.3.7-2   FreeType 2 font engine, shared lib
ii  libgconf2-42.22.0-1  GNOME configuration database syste
ii  libgl1-mesa-glx [libgl 7.0.3-5   A free implementation of the OpenG
ii  libglade2-01:2.6.2-1 library to load .glade files at ru
ii  libglib2.0-0   2.16.5-1  The GLib library of C routines
ii  libgnome-menu2 2.22.2-4  an implementation of the freedeskt
ii  libgnomekbd2   2.22.0-1  GNOME library to manage keyboard c
ii  libgnomekbdui2 2.22.0-1  User interface library for libgnom
ii  libgtk2.0-02.12.11-3 The GTK+ graphical user interface 
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  libnotify1 [libnotify1 0.4.4-3   sends desktop notifications to a n
ii  libpam0g   1.0.1-4   Pluggable Authentication Modules l
ii  libpango1.0-0  1.20.5-2  Layout and rendering of internatio
ii  libpng12-0 1.2.27-1  PNG library - runtime
ii  libsm6 2:1.0.3-2 X11 Session Management library
ii  libx11-6   2:1.1.5-1 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  libxfixes3 1:4.0.3-2 X11 miscellaneous 'fixes' extensio
ii  libxi6 2:1.1.3-1 X11 Input extension library
ii  libxinerama1   2:1.0.3-2 X11 Xinerama extension library
ii  libxklavier12  3.5-2 X Keyboard Extension high-level AP
ii  libxml22.6.32.dfsg-4 GNOME XML library
ii  libxrandr2 2:1.2.3-1 X11 RandR extension library
ii  libxrender11:0.9.4-2 X Rendering Extension client libra
ii  libxss11:1.1.3-1 X11 Screen Saver extension library
ii  libxxf86misc1  1:1.0.1-3 X11 XFree86 miscellaneous extensio
ii  libxxf86vm11:1.0.2-1 X11 XFree86 video mode extension l
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

Versions of packages gnome-screensaver recommends:
ii  gnome-power-manager   2.22.1-2   frontend for gnome-powermanager
ii  libpam-gnome-keyring  2.22.3-1   PAM module to unlock the GNOME key
pn  rss-glx(no description available)

gnome-screensaver suggests no packages.

-- no debconf information



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



Bug#501550: kerneloops: send an e-mail to root with the report as well

2008-10-08 Thread Folkert van Heusden
Package: kerneloops
Version: 0.10-2
Severity: wishlist


kerneloops: send an e-mail to root with the report as well

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

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

Versions of packages kerneloops depends on:
ii  libc6 2.7-13 GNU C Library: Shared libraries
ii  libcurl3-gnutls   7.18.2-5   Multi-protocol file transfer libra
ii  libdbus-1-3   1.2.1-3simple interprocess messaging syst
ii  libdbus-glib-1-2  0.76-1 simple interprocess messaging syst
ii  libglib2.0-0  2.16.5-1   The GLib library of C routines
ii  libgtk2.0-0   2.12.11-3  The GTK+ graphical user interface 
ii  libnotify1 [libnotify1-gtk2.1 0.4.4-3sends desktop notifications to a n

kerneloops recommends no packages.

kerneloops suggests no packages.

-- no debconf information



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



Bug#501486: [Linux-wlan-ng-devel] Bug#501486: kernel version in testing is 2.6.26(+16) while linux-wlan-ng-source only supports < 2.6.24.x

2008-10-08 Thread Folkert van Heusden
Hi,

> > Package: linux-wlan-ng-source
> > Version: 0.2.9+dfsg-2
> > Severity: grave
> > Justification: renders package unusable
> > 
> > During compilation (via module-assistant) the message comes up that the 
> > package only supports 2.6.24.x and older. Compilation then fails.
> > Kernel-version in testing is 2.6.26(+16).
> 
> Are you sure you are using version 0.2.9+dfsg-2? I just successfully run
> m-a a-i linux-wlan-ng on my sid box, and revision -2 added a specific
> patch to fix build against 2.6.26.

Definately:
thegate:/usr/src/linux-source-2.6.27-rc7# dpkg --list | grep linux-wlan
ii  linux-wlan-ng  0.2.9+dfsg-2 
 utilities for wireless prism2 cards
ii  linux-wlan-ng-source   0.2.9+dfsg-2 
 linux-wlan-ng driver

Can you tell me where I can find the build-log that is generated? I
looked for it but could not find it. Maybe it'll clarify things.


Folkert van Heusden

-- 
--
Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com



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



Bug#501486: [Linux-wlan-ng-devel] Bug#501486: kernel version in testing is 2.6.26(+16) while linux-wlan-ng-source only supports < 2.6.24.x

2008-10-08 Thread Folkert van Heusden
> > > Package: linux-wlan-ng-source
> > > Version: 0.2.9+dfsg-2
> > > Severity: grave
> > > Justification: renders package unusable
> > > 
> > > During compilation (via module-assistant) the message comes up that the 
> > > package only supports 2.6.24.x and older. Compilation then fails.
> > > Kernel-version in testing is 2.6.26(+16).
> > 
> > Are you sure you are using version 0.2.9+dfsg-2? I just successfully run
> > m-a a-i linux-wlan-ng on my sid box, and revision -2 added a specific
> > patch to fix build against 2.6.26.
> 
> Definately:
> thegate:/usr/src/linux-source-2.6.27-rc7# dpkg --list | grep linux-wlan
> ii  linux-wlan-ng  0.2.9+dfsg-2   
>utilities for wireless prism2 cards
> ii  linux-wlan-ng-source   0.2.9+dfsg-2   
>linux-wlan-ng driver
> 
> Can you tell me where I can find the build-log that is generated? I
> looked for it but could not find it. Maybe it'll clarify things.

Found it, you'll find the buildlog attached to this mail.

Oh darn, I'm using the rc version of 2.6.27. My bad! (but support for
that version would still be nice :-])


Folkert van Heusden

-- 
To MultiTail einai ena polymorfiko ergaleio gia ta logfiles kai tin
eksodo twn entolwn. Prosferei: filtrarisma, xrwmatismo, sygxwneysi,
diaforetikes provoles. http://www.vanheusden.com/multitail/
--
Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com
cat debian/control.modules.in | \
sed 's/${lwnversmajor}/0.2.9+dfsg-2/g' | \
sed 's/${lwnvers}/0.2.9+dfsg-2/g' | \
sed 's/${kvers}/2.6.27-rc6-c7-c7temp-100hz-ch341/g' | \
sed 's/${arch}/i386/g' \
> debian/control
cp debian/install.modules.in \

debian/linux-wlan-ng-modules-2.6.27-rc6-c7-c7temp-100hz-ch341.install
touch prepare_all-stamp
dh_testdir
dh_testroot
/usr/bin/make mrproper 
make[1]: Entering directory `/usr/src/modules/linux-wlan-ng'
set -e; for d in src doc man etc; do /usr/bin/make -C $d clean ; done
make[2]: Entering directory `/usr/src/modules/linux-wlan-ng/src'
set -e; for d in mkmeta  p80211 prism2 ; do /usr/bin/make WLAN_SRC= -C $d clean 
; done
make[3]: Entering directory `/usr/src/modules/linux-wlan-ng/src/mkmeta'
rm -f core core.* *.o .*.o *.s *.a .depend tmp_make *~ tags
rm -f ../shared/*.o
rm -fr obj
rm -f mkmetadef mkmetastruct
rm -f ../include/wlan/p80211metastruct.h
rm -f ../include/wlan/p80211metadef.h
make[3]: Leaving directory `/usr/src/modules/linux-wlan-ng/src/mkmeta'
make[3]: Entering directory `/usr/src/modules/linux-wlan-ng/src/p80211'
rm -Rf *.o *.ko .*.cmd *.mod.c *.flags .*.flags .tmp_versions Module*.symvers
make[3]: Leaving directory `/usr/src/modules/linux-wlan-ng/src/p80211'
make[3]: Entering directory `/usr/src/modules/linux-wlan-ng/src/prism2'
set -e; for d in driver ridlist ; do /usr/bin/make -C $d clean ; done
make[4]: Entering directory `/usr/src/modules/linux-wlan-ng/src/prism2/driver'
rm -Rf *.o *.ko .*.cmd *.mod.c *.flags .*.flags .tmp_versions Module*.symvers
make[4]: Leaving directory `/usr/src/modules/linux-wlan-ng/src/prism2/driver'
make[4]: Entering directory `/usr/src/modules/linux-wlan-ng/src/prism2/ridlist'
rm -f .depend
rm -f core core.* *.o .*.o *.s *.a *.sort tmp_make *~ tags
rm -fr obj
rm -f mkridlist
make[4]: Leaving directory `/usr/src/modules/linux-wlan-ng/src/prism2/ridlist'
rm -f core core.* *.o .*.o *.s *.a .depend tmp_make *~ tags
for i in *_obj; do if [ -d $i ]; then rm -fr $i; fi; done
make[3]: Leaving directory `/usr/src/modules/linux-wlan-ng/src/prism2'
rm -f core core.* *.o .*.o *.s *.a .depend tmp_make *~ tags
set -e; for i in *_obj; do if [ -d $i ]; then rm -fr $i; fi; done
rm -rf .tmp_versions
make[2]: Leaving directory `/usr/src/modules/linux-wlan-ng/src'
make[2]: Entering directory `/usr/src/modules/linux-wlan-ng/doc'
rm -f core core.* *.o .*.o *.s *.a .depend tmp_make *~ tags
for i in *_obj; do if [ -d $i ]; then rm -fr $i; fi; done
make[2]: Leaving directory `/usr/src/modules/linux-wlan-ng/doc'
make[2]: Entering directory `/usr/src/modules/linux-wlan-ng/man'
rm -f core core.* *.o .*.o *.s *.a .depend tmp_make *~ tags
for i in *_obj; do if [ -d $i ]; then rm -fr $i; fi; done
# prism2dl man
if [ -f prism2dl.1.no ]; then mv prism2dl.1.no prism2dl.1; fi
make[2]: Leaving directory `/usr/src/modules/linux-wlan-ng/man'
make[2]: Entering directory `/usr/src/modules/linux-wlan-ng/etc'
set -e; for d in pcmcia wlan; do /usr/bin/make -C $d clean; done
make[3]: Entering directory `/usr/src/modules/linux-wlan-ng/etc/pcmcia'
Nothing to do
make[3]: L

Bug#501444: gnome-screensaver: ignores external keyboard/mouse

2008-10-09 Thread Folkert van Heusden
> > Tried it a few days but it seems that if I start gnome-screensaver later
> > on from a terminal, the problem doesn't appear.
> 
> Interesting. Could you compare the environment of the gnome-screensaver
> process in both cases? You can have a look at
> /proc/$(pidof gnome-screensaver)/environ.

The difference is (diff -auNrBbd normal.txt debug.txt):

--- gs.1t   2008-10-09 14:52:14.0 +0200
+++ gs.2t   2008-10-09 14:52:18.0 +0200
@@ -1,5 +1,122 @@
-HOME=/home/folkertLOGNAME=folkertXDG_DATA_DIRS=/usr/local/share/:/usr/share/:/usr/share/gdm/WINDOWPATH=7DISPLAY=:
-XAUTHORITY=/home/folkert/.XauthorityDBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-QwEdfqqgGU,guid=68d94359
+
+
+
+
+
+
+
+
+
+
+
+
+
+/USER=folkertLS_COLORS=no=
 .
-a4162c651dc36ae48edbeedGPG_AGENT_INFO=/tmp/seahorse-ldtgq9/S.gpg-agent:4539:1GTK_RC_FILES=/etc/gtk/gtkrc:/home/folkert/.gtkrc-1.2-gnome2GTK_MODULES=gnomebreakpadSESSION_MANAGER=local/debianfvhbps:/tmp/.
ICE-unix/4476
-SHELL=/bin/bashUSER=folkertSSH_AUTH_SOCK=/tmp/keyring-1gg3vg/sshGNOME_KEYRING_SOCKET=/tmp/keyring-1gg3vg/socketUSERNAME=folkertPATH=/usr/local/bin:/usr/bin:/bin:/usr/gamesDESKTOP_SESSION=gnomeGDM_XSERVE
R_LOCATION=localPWD=/home/folkertGNOME_KEYRING_PID=4471LANG=en_USGDM_LANG=en_USGDMSESSION=gnomeSHLVL=
+.
+.
+.
+.
+.
+.1
+.1LESSCLOSE=/usr/bin/lesspipe %s 
%sCOLORTERM=gnome-terminalXAUTHORITY=/home/folkert/.Xauthority_=/usr/bin/gnome-screensaver
+1;31:*.7z=
+1;31:*.ace=
+1;31:*.arj=
+1;31:*.bz=
+1;31:*.bz2=
+1;31:*.cpio=
+1;31:*.deb=
+1;31:*.dz=
+1;31:*.gz=
+1;31:*.jar=
+1;31:*.jpg=
+1;31:*.lzh=
+1;31:*.lzma=
+1;31:*.rar=
+1;31:*.rpm=
+1;31:*.rz=
+1;31:*.svgz=
+1;31:*.taz=
+1;31:*.tbz2=
+1;31:*.tgz=
+1;31:*.tz=
+1;31:*.z=
+1;31:*.Z=
+1;31:*.zip=
+1;31:*.zoo=
+1;32:*.tar=
+1;34:ln=
+1;35:*.aac=
+1;35:*.asf=
+1;35:*.avi=
+1;35:bd=4
+1;35:*.bmp=
+1;35:*.dl=
+1;35:do=
+1;35:*.flc=
+1;35:*.fli=
+1;35:*.gif=
+1;35:*.gl=
+1;35:*.jpeg=
+1;35:*.m2v=
+1;35:*.m4v=
+1;35:*.mkv=
+1;35:*.mng=
+1;35:*.mov=
+1;35:*.mp4=
+1;35:*.mp4v=
+1;35:*.mpeg=
+1;35:*.mpg=
+1;35:*.nuv=
+1;35:*.ogm=
+1;35:*.pbm=
+1;35:*.pcx=
+1;35:*.pgm=
+1;35:*.png=
+1;35:*.ppm=
+1;35:*.qt=
+1;35:*.rm=
+1;35:*.rmvb=
+1;35:*.svg=
+1;35:*.tga=
+1;35:*.tif=
+1;35:*.tiff=
+1;35:*.vob=
+1;35:*.wmv=
+1;35:*.xbm=
+1;35:*.xcf=
+1;35:*.xpm=
+1;35:*.xwd=
+1;35:*.yuv=
+1;36:pi=4
+/16,1
+1:cd=4
+1:or=4
+1:su=37;41:sg=3
+;31;
+3119GTK_MODULES=gnomebreakpadhttp_proxy=http://192.168.
+;33;
+;33;
+;33:so=
+;36:SSH_AUTH_SOCK=/tmp/keyring-1gg3vg/sshGNOME_KEYRING_SOCKET=/tmp/keyring-1gg3vg/socketSESSION_MANAGER=local/debianfvhbps:/tmp/.ICE-unix/4476USERNAME=folkertDESKTOP_SESSION=gnomePATH=/usr/local/bin:/us
r/bin:/bin:/usr/games:/home/folkert/binGDM_XSERVER_LOCATION=localPWD=/home/folkertLANG=en_USGNOME_KEYRING_PID=4471GDM_LANG=en_USGDMSESSION=gnomeHISTCONTROL=ignoredupsHOME=/home/folkertSHLVL=1no_proxy=loc
alhost,127.
+;36:*.au=
+;36:*.flac=
+;36:*.mid=
+;36:*.midi=
+;36:*.mka=
+;36:*.mp3=
+;36:*.mpc=
+;36:*.ogg=
+;36:*.ra=
+;36:*.wav=
+;42:ow=34;42:st=37;44:ex=
+;43:tw=3
+8
+:8
+/8GNOME_DESKTOP_SESSION_ID=DefaultLOGNAME=folkertXDG_DATA_DIRS=/usr/local/share/:/usr/share/:/usr/share/gdm/DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-QwEdfqqgGU,guid=68d94359
+/8,192.168.
+a4162c651dc36ae48edbeedLESSOPEN=| /usr/bin/lesspipe %sWINDOWPATH=7DISPLAY=:
+:di=
+:fi=
+GPG_AGENT_INFO=/tmp/seahorse-ldtgq9/S.gpg-agent:4539:1SHELL=/bin/bashDESKTOP_STARTUP_ID=TERM=xtermGTK_RC_FILES=/etc/gtk/gtkrc:/home/folkert/.gtkrc-1.2-gnome2WINDOWID=441


Folkert van Heusden

-- 
MultiTail ist eine flexible Applikation um Logfiles und Kommando
Eingaben zu überprüfen. Inkl. Filter, Farben, Zusammenführen,
Ansichten etc. http://www.vanheusden.com/multitail/
--
Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com
GPG_AGENT_INFO=/tmp/seahorse-ldtgq9/S.gpg-agent:4539:1SHELL=/bin/bashDESKTOP_STARTUP_ID=TERM=xtermGTK_RC_FILES=/etc/gtk/gtkrc:/home/folkert/.gtkrc-1.2-gnome2WINDOWID=44103119GTK_MODULES=gnomebreakpadhttp_proxy=http://192.168.0.10:8080/USER=folkertLS_COLORS=no=00:fi=00:di=01;34:ln=01;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:su=37;41:sg=30;43:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.svgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.lzma=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.bz2=01;31:*.bz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.rar=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.gl=01;35

Bug#500126: xserver-xorg-input-all: screensaver timeout: ignores external (usb-)keyboard and mouse

2008-10-09 Thread Folkert van Heusden
> > Situation is that I have a laptop with an external keyboard and mouse
> > connected via USB. Now every 10 minutes the screensaver kicks in even
> > though I'm constantly typing and moving the mouse.
> > 
> That doesn't happen if you're using the laptop's keyboard?  This seems

That's correct.

> weird, considering X doesn't see the difference between the internal and
> external keyboards.

I also opened a bug for gnome-screensaver. F.y.i.: if one stops and
restarts the gnome-screenaver from a gnome-terminal, the problem doesn't
come up anymore.


Folkert van Heusden

-- 
MultiTail è uno flexible tool per seguire di logfiles e effettuazione
di commissioni. Feltrare, provedere da colore, merge, 'diff-view',
etc. http://www.vanheusden.com/multitail/
--
Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com



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



Bug#501444: gnome-screensaver: ignores external keyboard/mouse

2008-10-13 Thread Folkert van Heusden
> > > > Tried it a few days but it seems that if I start gnome-screensaver later
> > > > on from a terminal, the problem doesn't appear.
> > > 
> > > Interesting. Could you compare the environment of the gnome-screensaver
> > > process in both cases? You can have a look at
> > > /proc/$(pidof gnome-screensaver)/environ.
> > 
> > The difference is (diff -auNrBbd normal.txt debug.txt):
> 
> -DISPLAY=:0.0
> +DISPLAY=:0.1
> 
> Looks like a bad interaction with your multi-head setup. What happens if
> you launch ???DISPLAY=:0.0 gnome-screensaver --debug??? instead?

Attached you'll find the requested logfile.


Folkert van Heusden

-- 
MultiTail is een flexibele tool voor het volgen van logfiles en
uitvoer van commando's. Filteren, van kleur voorzien, mergen,
'diff-view', etc. http://www.vanheusden.com/multitail/
--
Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com
[gs_debug_init] gs-debug.c:106 (16:38:31):   Debugging enabled
[main] gnome-screensaver.c:87 (16:38:31):initializing gnome-screensaver 
2.22.2
[query_session_id] gs-listener-dbus.c:2033 (16:38:31):   
org.freedesktop.DBus.Error.ServiceUnknown raised:
 The name org.freedesktop.ConsoleKit was not provided by any .service files


[init_session_id] gs-listener-dbus.c:2051 (16:38:31):Got session-id: (null)
[gs_fade_init] gs-fade.c:679 (16:38:31): Fade type: 2
[gamma_info_init] gs-fade.c:352 (16:38:31):  Initialized gamma ramp fade
[gamma_info_init] gs-fade.c:352 (16:38:31):  Initialized gamma ramp fade
[initialize_server_extensions] gs-watcher-x11.c:903 (16:38:31):  Not using 
server's MIT-SCREEN-SAVER extension.
[gs_watcher_set_active] gs-watcher-x11.c:731 (16:38:31): turning 
watcher: ON
[_gs_watcher_set_active_internal] gs-watcher-x11.c:718 (16:38:32):   
Starting idle watcher
[listener_dbus_handle_system_message] gs-listener-dbus.c:1481 (16:38:32):   
 obj_path=/org/freedesktop/DBus interface=org.freedesktop.DBus 
method=NameAcquired destination=:1.3967
[listener_dbus_handle_system_message] gs-listener-dbus.c:1481 (16:38:32):   
 obj_path=(null) interface=(null) method=(null) destination=:1.3967
[listener_dbus_handle_system_message] gs-listener-dbus.c:1481 (16:38:32):   
 obj_path=(null) interface=(null) method=(null) destination=:1.3967
[listener_dbus_handle_system_message] gs-listener-dbus.c:1481 (16:38:32):   
 obj_path=(null) interface=(null) method=(null) destination=:1.3967
[listener_dbus_handle_system_message] gs-listener-dbus.c:1481 (16:38:32):   
 obj_path=(null) interface=(null) method=(null) destination=:1.3967
[_gs_watcher_notice_window_created] gs-watcher-x11.c:568 (16:38:45): Window 
created: noticing activity on 0x120BF5E
[power_timer] gs-watcher-x11.c:1080 (16:39:02):  in power timer
[power_timer] gs-watcher-x11.c:1098 (16:39:02):  Setting power notice elapsed: 
30008
[watcher_power_notice_cb] gs-monitor.c:139 (16:39:02):   Power notice signal 
detected: 1
[_gs_watcher_set_session_power_notice] gs-watcher-x11.c:478 (16:39:02):  
Changing power notice state: 1
[idle_timer] gs-watcher-x11.c:1115 (16:39:22):   in idle timer
[watcher_idle_notice_cb] gs-monitor.c:170 (16:39:22):Idle notice signal 
detected: 1
[gs_grab_grab_offscreen] gs-grab-x11.c:500 (16:39:22):   Grabbing an offscreen 
window
[gs_grab_get_keyboard] gs-grab-x11.c:166 (16:39:22): Grabbing keyboard 
widget=E4
[gs_grab_get_mouse] gs-grab-x11.c:193 (16:39:22):Grabbing mouse 
widget=E4
[_gs_watcher_set_session_idle_notice] gs-watcher-x11.c:501 (16:39:22):   
Changing idle notice state: 1
[watcher_power_notice_cb] gs-monitor.c:139 (16:39:28):   Power notice signal 
detected: 0
[_gs_watcher_set_session_power_notice] gs-watcher-x11.c:478 (16:39:28):  
Changing power notice state: 0
[watcher_idle_notice_cb] gs-monitor.c:170 (16:39:28):Idle notice signal 
detected: 0
[watcher_idle_notice_cb] gs-monitor.c:194 (16:39:28):manager not active, 
performing fade cancellation
[gs_fade_reset] gs-fade.c:635 (16:39:28):Resetting fade
[_gs_watcher_set_session_idle_notice] gs-watcher-x11.c:501 (16:39:28):   
Changing idle notice state: 0
[gs_grab_release] gs-grab-x11.c:388 (16:39:29):  Releasing all grabs
[gs_grab_release_mouse] gs-grab-x11.c:237 (16:39:29):Ungrabbing pointer
[gs_grab_release_keyboard] gs-grab-x11.c:219 (16:39:29): Ungrabbing 
keyboard
[xorg_lock_smasher_set_active] gs-grab-x11.c:124 (16:39:29): Enabling the 
x.org grab smasher
[xorg_lock_smasher_set_active] gs-grab-x11.c:146 (16:39:29): 
XF86MiscSetGrabKeysState(on) returned MiscExtGrabStateSuccess

[_gs_watcher_notice_window_created] gs-watcher-x11.c:568 (16:39:37): Window 
created: noticing activity on 0x120BFA7
[_gs_watcher_notice_window_created] gs-watcher-x11.c:568 (16:39:37): Window 
created:

Bug#510868: RFP: OpenPegasus WBEM server -- OpenPegasus WBEM server

2009-01-05 Thread Folkert van Heusden
Package: wnpp
Severity: wishlist


* Package name: tog-pegasus
  Version : 2.5.1
  Upstream Author : Pegasus Team 
* URL : http://www.openpegasus.org/
* License : BSD
  Description : OpenPegasus WBEM server

WBEM (Web Based Enterprise Management) is a platform and resource
independent standard that defines a common information model and
communication protocol for monitoring and controlling resources from
diverse sources.  It is considered a peer and sucessor to the popular
SNMP protocol.

OpenPegasus is an open source implementation of a WBEM server and client 
tools.  The WBEM standard is managed by the DMTF (Distributed Management 
Task Force) at http://www.dmtf.org/


This would help introducing Debian in an IBM environment as IBM Director
does not include an agent for Debian (only RPM-distros) but does seem to
support monitoring WBEM systems (according to 
http://www.clipper.com/research/TCG2005063.pdf ).

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



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



Bug#452841: zaptel-source: on a 2.6.26-1-amd64 system the driver fills dmesg with "FXO PCI Master abort"

2009-01-05 Thread Folkert van Heusden
Package: zaptel-source
Version: 1:1.4.11~dfsg-3
Followup-For: Bug #452841


zaptel-source: on a 2.6.26-1-amd64 system the driver fills dmesg with "FXO PCI 
Master abort"

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

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

Versions of packages zaptel-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  module-assistant  0.10.11.0  tool to make module package creati

Versions of packages zaptel-source recommends:
pn  zaptel (no description available)

zaptel-source 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#461487: linux-image-2.6-amd64: HZ is set to 250 (for contextswitches) - please consider using 100Hz as 250Hz affects timekeeping (with NTPd) badly

2009-01-06 Thread Folkert van Heusden
> > > Package: linux-image-2.6-amd64
> > > Version: 2.6.22+11
> > > Severity: normal
> > > 
> > > HZ is set to 250 (for contextswitches) - please consider using 100Hz as
> > > 250Hz affects timekeeping (with NTPd) badly see thread at:
> > > http://groups.google.com/group/comp.protocols.time.ntp/browse_thread/thread/6c4645ac82c1c013
> > 
> > quite a lot happened since in the timer code,
> > thanks to tickless kernels, test 2.6.24-rc8 trunk builds
> > http://wiki.debian.org/DebianKernel
> 
> Folkert, did you test NTPD with more recent kernels?

Hi,

Unfortunately I don't have the hardware (scope?) and such to verify
this. I was reporting it as a 'bug' from what I read on the linux-pps
mailinglist (which talks about the pulse-per-second infrastructure
patch, which is for connecting an atomic clock or gps with pps
signal).


Folkert van Heusden

-- 
MultiTail è uno flexible tool per seguire di logfiles e effettuazione
di commissioni. Feltrare, provedere da colore, merge, 'diff-view',
etc. http://www.vanheusden.com/multitail/
--
Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com



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



Bug#433640: linux-image-2.6.22-1-amd64: time runs too slow

2008-11-12 Thread Folkert van Heusden
> > When using this kernel, the time of the system runs too slow. Minutes to
> > slow in a couple of hours. This also confuses the ntp daemon.
> 
> Is this issue still reproducible with the current Lenny kernel?

can be closed
thanks

Folkert van Heusden

-- 
Multi tail barnamaj mowahib li mora9abat attasjilat wa nataij awamir
al 7asoub. damj, talwin, mora9abat attarchi7 wa ila akhirih.
http://www.vanheusden.com/multitail/
--
Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com



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



Bug#469287: linux-image-2.6.22-3-amd64: WD360ADFD-00 harddisk should probably put in libata blacklist due to "spurious completions during NCQ" errors

2008-12-17 Thread Folkert van Heusden
> > Package: linux-image-2.6.22-3-amd64
> > Version: 2.6.22-6
> > Severity: normal
> > Loads of "spurious completions during NCQ" errors. See the logging
> > below:
> 
> Does this error still occur with more recent kernel versions?

Nope, seems to be fixed.


Folkert van Heusden

-- 
MultiTail är en flexibel redskap för att fälja logfilar, utför av
commandoer, filtrera, ge färg, sammanfoga, o.s.v. följa.
http://www.vanheusden.com/multitail/
--
Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com



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



Bug#508201: RFP: ezquake -- free models and graphics for quake

2008-12-22 Thread Folkert van Heusden
> Even if can also provide just the ezquake binary and a tutorial to explain
> how to install the .pak from the shareware.
> Do you know a map pak we a free license that we can deliver in Debian?

I dug around on forums and someone suggested to me:

| Currently there is no complete free pak for Quake I that doesn't suck.
| You can, however, include a shell script which will download the shareware
| distribution and extract pak0.pak from it, like nQuake does:
| http://nquake.com/download_linux.html

http://www.quakeworld.nu/forum/viewtopic.php?pid=43479#p43479




Folkert van Heusden

-- 
Ever wonder what is out there? Any alien races? Then please support
the s...@home project: setiathome.ssl.berkeley.edu
--
Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com



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



Bug#510139: libmysql-java: package not in default java library path so all programs using will fail

2008-12-29 Thread Folkert van Heusden
Package: libmysql-java
Version: 5.1.6+dfsg-1
Severity: normal


libmysql-java: package not in default java library path so all programs using 
will fail
one now needs to explicit some environment variable to get it to work which is 
unfortunate
as then one needs scripts specific to the linux distribution it runs on

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

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

Versions of packages libmysql-java depends on:
ii  gij-4.1 [java2-runtime]   4.1.2-16   The GNU Java bytecode interpreter
ii  sun-java6-jre [java2-runtime] 6-07-4 Sun Java(TM) Runtime Environment (

libmysql-java recommends no packages.

Versions of packages libmysql-java suggests:
ii  gij [java-virtual-machine]4:4.3.2-2  The GNU Java bytecode interpreter
ii  gij-4.1 [java-virtual-machine 4.1.2-16   The GNU Java bytecode interpreter
ii  gij-4.3 [java-virtual-machine 4.3.2-2The GNU Java bytecode interpreter
pn  libcommons-logging-java(no description available)
pn  liblog4j1.2-java   (no description available)
ii  sun-java6-jre [java-virtual-m 6-07-4 Sun Java(TM) Runtime Environment (

-- 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#510150: sun-java6-jre: -classpath is ignored

2008-12-29 Thread Folkert van Heusden
Package: sun-java6-jre
Version: 6-07-4
Severity: normal


Hi,

It seems as if the latest version of the JRE ignores the -classpath.

folk...@mauer:~$ java -classpath /usr/share/java/mysql-connector-java-5.1.6.jar 
 -jar testmysql.jar
exception: java.lang.ClassNotFoundException: com.mysql.jdbc.Driver
Library path: 
/usr/lib/jvm/java-6-sun-1.6.0.07/jre/lib/amd64/server:/usr/lib/jvm/java-6-sun-1.6.0.07/jre/lib/amd64:/usr/lib/jvm/java-6-sun-1.6.0.07/jre/../lib/amd64:/usr/java/packages/lib/amd64:/lib:/usr/lib

if -classpath expects a path, it doesn't work either:

folk...@mauer:~$ java -classpath /usr/share/java  -jar testmysql.jar
exception: java.lang.ClassNotFoundException: com.mysql.jdbc.Driver
Library path: 
/usr/lib/jvm/java-6-sun-1.6.0.07/jre/lib/amd64/server:/usr/lib/jvm/java-6-sun-1.6.0.07/jre/lib/amd64:/usr/lib/jvm/java-6-sun-1.6.0.07/jre/../lib/amd64:/usr/java/packages/lib/amd64:/lib:/usr/lib

testmysql.java:
--
import java.util.*;
import java.sql.*;

class testmysql
{
static public void main(String [] args)
{
try
{
Class.forName("com.mysql.jdbc.Driver");

System.out.println("  mysql connect");
Connection con = 
DriverManager.getConnection("jdbc:mysql://mauer:3306/posbook", "pos", "pospw");
System.out.println("  mysql connected!");

String query = "SELECT (avg(white) + avg(black)) / 2.0 
AS scaler FROM book";
Statement stmt = 
con.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, 
ResultSet.CONCUR_READ_ONLY);
ResultSet rs = stmt.executeQuery(query);
if (rs.next())
System.out.println("result: " + 
rs.getDouble("scaler"));
else
System.out.println("nothing returned");
}
catch(Exception e)
{
System.out.println("exception: " + e);
System.out.println("Library path: " + 
System.getProperty("java.library.path"));
}
}
}

testmysql-manifest.txt:
--
Main-Class: testmysql

jar creation commandline:

jar cmf testmysql-manifest.txt testmysql.jar testmysql.class


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

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

Versions of packages sun-java6-jre depends on:
ii  debconf [debconf-2.0] 1.5.24 Debian configuration management sy
ii  java-common   0.30   Base of all Java packages
ii  locales   2.7-16 GNU C Library: National Language (
ii  sun-java6-bin 6-07-4 Sun Java(TM) Runtime Environment (

Versions of packages sun-java6-jre recommends:
pn  gsfonts-x11(no description available)

Versions of packages sun-java6-jre suggests:
pn  sun-java6-fonts(no description available)
pn  sun-java6-plugin | ia32-sun-j  (no description available)
pn  ttf-arphic-uming   (no description available)
pn  ttf-baekmuk | ttf-unfonts | t  (no description available)
pn  ttf-kochi-gothic | ttf-sazana  (no description available)
pn  ttf-kochi-mincho | ttf-sazana  (no description available)

-- debconf information:
  sun-java6-jre/stopthread: true
* shared/accepted-sun-dlj-v1-1: true
  sun-java6-jre/jcepolicy:
  shared/error-sun-dlj-v1-1:
* shared/present-sun-dlj-v1-1:



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



  1   2   3   >