Bug#696573: backup-manager: Monthly backups on the 7th day (and higher) of the month don't work

2012-12-22 Thread Thorsten Gunkel

Package: backup-manager
Version: 0.7.9-4
Severity: normal
Tags: patch

Hi,
I had configured backup-manager to do incremental backups with a full backup
on the 23th of each month. I noticed that this did not work because
backup-manager:

- expects the value to be between 0 and 6 (this is only reasonable for 
weekly

  backups)
- tries to fix this by setting the value to 0 (which also only works for
  weekly backups)

Here is the relevant configuration which did not work

# Which frequency to use for the master tarball?
# possible values: weekly, monthly
export BM_TARBALLINC_MASTERDATETYPE=monthly

# Number of the day, in the BM_TARBALLINC_MASTERDATETYPE frequency
# when master tarballs should be made
export BM_TARBALLINC_MASTERDATEVALUE=23

And here is a small patch which adjusts the limits for monthly backups

--- /usr/share/backup-manager/sanitize.sh   2012-12-23 
01:09:31.460859354 +0100
+++ /usr/share/backup-manager/sanitize.sh   2012-12-23 
01:18:15.100111361 +0100

@@ -160,11 +160,22 @@
[[ -z $BM_TARBALLINC_MASTERDATETYPE ]]; then
 confkey_require BM_TARBALLINC_MASTERDATETYPE weekly
 fi
+
+# check if the date on which the backup is supposed to run is a valid one
 if [[ -n $BM_TARBALLINC_MASTERDATEVALUE ]]; then
+# if we have a monthly backup the limit is 31 and the fallback 1
+if [[ $BM_TARBALLINC_MASTERDATETYPE = monthly ]]; then
+ if [[ $BM_TARBALLINC_MASTERDATEVALUE -gt 31 ]]; then
+warning BM_TARBALLINC_MASTERDATEVALUE should not be greater 
than 31 (or 29 to be safe), falling back to 1

+export BM_TARBALLINC_MASTERDATEVALUE=1
+fi
+   else
+# if we have a weekly backup the limit is 6 and the fallback 0
 if [[ $BM_TARBALLINC_MASTERDATEVALUE -gt 6 ]]; then
 warning BM_TARBALLINC_MASTERDATEVALUE should not be greater 
than 6, falling back to 0

 export BM_TARBALLINC_MASTERDATEVALUE=0
 fi
+   fi
 fi

 if [[ $BM_ARCHIVE_METHOD = tarball ]] ||





Kind regards
 Thorsten

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

Kernel: Linux 2.6.32-5-vserver-amd64 (SMP w/3 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages backup-manager depends on:
ii  debconf [debconf-2.0]1.5.36.1Debian configuration 
management sy
ii  findutils4.4.2-1+b1  utilities for finding 
files--find,
ii  ucf  3.0025+nmu1 Update Configuration File: 
preserv


backup-manager recommends no packages.

Versions of packages backup-manager suggests:
ii  anacron   2.3-14 cron-like program that 
doesn't go

pn  backup-manager-doc none (no description available)
pn  dar none (no description available)
ii  dvd+rw-tools  7.1-6  DVD+-RW/R tools
ii  genisoimage   9:1.1.11-1 Creates ISO-9660 CD-ROM 
filesystem
ii  gettext-base  0.18.1.1-3 GNU Internationalization 
utilities

pn  libfile-slurp-perl none (no description available)
pn  libnet-amazon-s3-perl none (no description available)
ii  openssh-client1:5.5p1-6+squeeze2 secure shell (SSH) client, 
for sec
ii  perl  5.10.1-17squeeze3  Larry Wall's Practical 
Extraction

pn  wodim none (no description available)
pn  zip none (no description available)

-- debconf information excluded


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



Bug#608237: backup-manager: BM_TARBALL_BLACKLIST is ignored if you backup /

2010-12-28 Thread Thorsten Gunkel
Package: backup-manager
Severity: normal
Tags: patch

I had some trouble trying to backup the whole system (starting at /)
excluding some folders. I finally found out what the problem is:

backup-manager tries to use BM_TARBALL_BLACKLIST options only if they are
below the currently used BM_TARBALL_DIRECTORIES folder. So the exclude
/var/tmp is used for /var but not for /bin because /bin is no prefix of
/var/tmp

The test which is used for this fails for BM_TARBALL_DIRECTORIES, for which
all excludes have to be applied.

Attached you'll find a patch to fix this.

kind regards
 Thorsten

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

Kernel: Linux 2.6.32-5-vserver-amd64 (SMP w/3 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
--- backup-methods.sh   2010-03-18 18:45:59.0 +0100
+++ backup-methods.sh   2010-12-29 02:39:23.0 +0100
@@ -246,6 +246,10 @@
 char=$(expr substr $pattern 1 1)
 if [[ $char = / ]]; then
 
+  # if you backup / any path is relative to you
+  if [[ X${target} = X ]]; then
+blacklist=$blacklist ${switch}${pattern}
+  else
# we blacklist only absolute paths related to $target
if [[ ${pattern#$target} != $pattern ]]; then
 
@@ -257,6 +261,7 @@
 # ...and blacklisting it
 blacklist=$blacklist ${switch}${pattern}
fi
+  fi
 
 # relative path are blindly appended to the blacklist
 else


signature.asc
Description: Digital signature


Bug#511161: /sbin/cfdisk: FATAL ERROR: Cannot seek on disk drive with partitions at the end of larger drives

2009-01-07 Thread Thorsten Gunkel
Package: util-linux
Version: 2.13.1.1-1
Severity: normal
File: /sbin/cfdisk
Tags: patch

I used cfdisk to partition a 1,5 TB disk. The result looks fine e.g. with
parted, however cfdisk refuses to deal with the disk

# /sbin/cfdisk /dev/sdb
  FATAL ERROR: Cannot seek on disk drive
   Press any key to exit cfdisk

The error message is from

static void read_sector(unsigned char *buffer, long long sect_num)

which calls

lseek(fd, sect_num*SECTOR_SIZE, SEEK_SET);

and happened in my case while SECTOR_SIZE==512 and sect_name==-2047891486
(please note the negative number).

The caller is at cfdisk.c:1772
read_sector(buffer.c.b, logical_sectors[logical++]);

And here we already have the problem. logical_sectors is an int array, and
logical_sectors[logical] = ext_info.first_sector + ext_info.offset + bs;
   2246095845  0 2246095845
is 2247075810 which is too large for int on amd64 (and i386).

At a first glance, fix seems to be very trivial, just change it to an long
long array (see attached patch). The resulting binary now seems to handle the
disk without any problems.

Please consider to push this into Lenny, as larger disk will probably get
very popular while Lenny is stable.

kind regards
 Thorsten

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

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

Versions of packages util-linux depends on:
ii  libc6  2.7-16GNU C Library: Shared libraries
ii  libncurses55.7+20081213-1shared libraries for terminal hand
ii  libselinux12.0.65-5  SELinux shared libraries
ii  libslang2  2.1.3-3   The S-Lang programming library - r
ii  libuuid1   1.41.3-1  universally unique id library
ii  lsb-base   3.2-20Linux Standard Base 3.2 init scrip
ii  tzdata 2008h-2   time zone and daylight-saving time
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

util-linux recommends no packages.

Versions of packages util-linux suggests:
ii  console-tools1:0.2.3dbs-65.1 Linux console and font utilities
ii  dosfstools   3.0.1-1 utilities for making and checking 
pn  util-linux-locales   none  (no description available)

-- no debconf information

Mfg
 Thorsten
--- a/fdisk/cfdisk.c
+++ b/fdisk/cfdisk.c
@@ -295,7 +295,7 @@ partition_info ext_info;
 int num_parts = 0;
 
 int logical = 0;
-int logical_sectors[MAXIMUM_PARTS];
+long long logical_sectors[MAXIMUM_PARTS];
 
 __sighandler_t old_SIGINT, old_SIGTERM;
 


pgpYTVqL3Db4K.pgp
Description: PGP signature


Bug#497400: munin-node: hddtemp_smartctl should also find SATA drives

2008-09-01 Thread Thorsten Gunkel
Package: munin-node
Version: 1.2.5-1
Severity: wishlist
Tags: patch

I just found out that munin does not list the HD temperature of my SATA
drives. I just duplicated the IDE section in hddtemp_smartctl and changed it
for sd* drives. Seems to work fine on my etch box (witch recent smartmontools
installed). I applied my change to the hddtemp_smartctl.in file I found in
munin-1.2.6 and attached the resulting patch (untested for this version).

This issue was once discussed upstream
http://munin.projects.linpro.no/ticket/530
and rejected due to breakage of SCSI drives. But I guess this was a result of
the change to the smartctl parameters which seems unnecessary for recent
smartmontools. Therefore I like to ask you to consider to add this patch to
future versions of munin-node.

regards
 Thorsten

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.22.6-vs2.2.0.3-dirty
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages munin-node depends on:
ii  adduser3.102 Add and remove users and groups
ii  libnet-server-perl 0.94-1An extensible, general perl server
ii  lsb-base   3.1-23.2etch1 Linux Standard Base 3.1 init scrip
ii  perl   5.8.8-7etch3  Larry Wall's Practical Extraction 
ii  procps 1:3.2.7-3 /proc file system utilities

Versions of packages munin-node recommends:
ii  libnet-snmp-perl  5.2.0-1Script SNMP connections

-- no debconf information

--- hddtemp_smartctl.in 2008-09-01 16:59:54.233200924 +0200
+++ hddtemp_smartctl.in 2008-09-01 17:03:21.101901641 +0200
@@ -92,14 +92,25 @@
 
 # Try to get a default set of drives
 if ($^O eq 'linux') {
-  # On Linux, we know how to enumerate ide drives. SCSI is not as easy
+  # On Linux, we know how to enumerate ide drives.
+  my @drivesIDE;
   if (-d '/proc/ide') {
 opendir(IDE, '/proc/ide');
-@drives = grep /hd[a-z]/, readdir IDE;
+@drivesIDE = grep /hd[a-z]/, readdir IDE;
 closedir(IDE);
   }
-  # SCSI disks could be both SCSI or SATA - we can't know which
-  # without probing them.
+
+  # Look for SCSI / SATA drives in /sys
+  my @drivesSCSI;
+  if (-d '/sys/block/') {
+opendir(SCSI, '/sys/block/');
+@drivesSCSI = grep /sd[a-z]/, readdir SCSI;
+closedir(SCSI);
+   }
+
+  # Get list of all drives we found
+  @drives=(@drivesIDE,@drivesSCSI);
+  
 } elsif ($^O eq 'freebsd') {
   opendir(DEV, '/dev');
   @drives = grep /^ad[0-9]+$/, readdir DEV;


pgpla641n31wK.pgp
Description: PGP signature


Bug#423865: Youtube videos do not play on my computer

2007-09-23 Thread Thorsten Gunkel
On [Mon, 14.05.2007 17:46], Nicolas DEGAND wrote:
 Package: gnash
 Version: 0.7.2+cvs20070512.1554-1
 Severity: normal
 
 According to the changelog the new version is able to read youtube videos. I 
 then tested it with 
 the following command-line :
 gnash -j 450 -k 370 
 http://www.youtube.com/player2.swf?video_id=IpVWZePn1Y8l=150t=OEgsToPDskIqzhmEKDDl-rNOf3v4yP7qsoff=1sk=5qdorp44QwfJl5CqSPPw0wC


You need to escape all the  in your command line. Try for example:

gnash -j 450 -k 370 
'http://www.youtube.com/player2.swf?video_id=IpVWZePn1Y8l=150t=OEgsToPDskIqzhmEKDDl-rNOf3v4yP7qsoff=1sk=5qdorp44QwfJl5CqSPPw0wC'

(note the ' around the link).

 The youtube end-of-video interface loads (with some corrupted fonts). The 
 console outputs the following messages
 [1] 5244
 [2] 5245
 [3] 5246
 [4] 5247

For each  you forgot to escape a new process started and died immediately.

Beside this, while the firefox gnash plugin seems to work for
me on youtube, the gnash command you tried does not. Maybe the link is wrong or
the syntax must be different...

regards
 Thorsten



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



Bug#212872: passwd: adduser should ask for password again if there is a mismatch

2006-11-24 Thread Thorsten Gunkel
I just tried to add a test user in a fresh sid debootstrap and had a typo in
the re-typed password:

,
| # adduser test2
| perl: warning: Setting locale failed.
| perl: warning: Please check that your locale settings:
| LANGUAGE = (unset),
| LC_ALL = (unset),
| LANG = en_US.UTF-8
| are supported and installed on your system.
| perl: warning: Falling back to the standard locale (C).
| Adding user `test2' ...
| Adding new group `test2' (1001) ...
| Adding new user `test2' (1001) with group `test2' ...
| Creating home directory `/home/test2' ...
| Copying files from `/etc/skel' ...
| Enter new UNIX password: 
| Retype new UNIX password: 
| Sorry, passwords do not match
| passwd: Authentication information cannot be recovered
| passwd: password unchanged
| Undefined subroutine main::NOEXPR called at /usr/sbin/adduser line 509, 
FIND line 4.
`

I would also prefer it if adduser would ask me again. Additionally please
notice the last line in the output about the missing subroutine.

regards
 Thorsten


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



Bug#400098: FTBFS on etch if /etc/emacs-snapshot/site-start.d is not there

2006-11-24 Thread Thorsten Gunkel
On [Thu, 23.11.2006 22:28], Romain Francoise wrote:
 Weird.
 There must be something odd about your build environment; emacs-snapshot
 has built fine with this check for almost three months now on all build
 daemons, and in my own chroots.

OK, I just tried a fresh sid debootstrap and autoconf created
/etc/emacs/site-start.d/50autoconf.el, the build works fine. Don't know why
the folder was no longer on my system, maybe I removed it manually.
Close the bug and sorry for the noise?

regards
 Thorsten


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



Bug#212872: [Adduser-devel] Bug#212872: passwd: adduser should ask for password again if there is a mismatch

2006-11-24 Thread Thorsten Gunkel
On [Sat, 25.11.2006 02:18], Stephen Gran wrote:
 This one time, at band camp, Thorsten Gunkel said:
  I just tried to add a test user in a fresh sid debootstrap and had a typo in
  the re-typed password:
  | Enter new UNIX password: 
  | Retype new UNIX password: 
  | Sorry, passwords do not match
  | passwd: Authentication information cannot be recovered
  | passwd: password unchanged
  | Undefined subroutine main::NOEXPR called at /usr/sbin/adduser line 509, 
  FIND line 4.

 I think I've got the problem fixed.  I have applied the patch below in
 svn - can you test to make sure it fixes it for you?

I changed the lines in the current unstable version and I seems to work
without problems:
,
| Enter new UNIX password: 
| Retype new UNIX password: 
| Sorry, passwords do not match
| passwd: Authentication information cannot be recovered
| passwd: password unchanged
| Try again? [Y/n] y
| Enter new UNIX password: 
| Retype new UNIX password: 
| passwd: password updated successfully
`

Thanks,
 Thorsten

pgpTX81JDZgav.pgp
Description: PGP signature


Bug#400098: FTBFS on etch if /etc/emacs-snapshot/site-start.d is not there

2006-11-23 Thread Thorsten Gunkel
Package: emacs-snapshot
Version: 1:20061117-1
Severity: normal

Hi,
I just tried to build emacs-snapshot on Etch. It fails with:

,
...
| Checking /tmp/e4/emacs-snapshot-20061117/leim/quail/PY.el ...
| Checking /tmp/e4/emacs-snapshot-20061117/leim/quail/ZIRANMA.el ...
| Wrote /tmp/e4/emacs-snapshot-20061117/leim/leim-list.el
| Updating /tmp/e4/emacs-snapshot-20061117/leim/leim-list.el ... done
| sed -n '/^[^;]/ p'  /tmp/e4/emacs-snapshot-20061117/leim/leim-ext.el  
leim-list.el
| make[2]: Leaving directory `/tmp/e4/emacs-snapshot-20061117/leim'
| make[1]: Leaving directory `/tmp/e4/emacs-snapshot-20061117'
| # Check for pure space overflow
| src/emacs -batch --eval (print pure-space-overflow) 2/dev/null | grep -qx 
nil
| make: *** [emacs-stamp] Error 1
`

I tried to issue:
,
| # src/emacs -batch --eval (print pure-space-overflow)
| Opening directory: no such file or directory, /etc/emacs-snapshot/site-start.d
`

After I created that folder
,
| mkdir -p /etc/emacs-snapshot/site-start.d
`

everything seems to work without problems.

regards
 Thorsten

-- Package-specific info:
-- Emacs odds and ends:
Loading 00debian-vars...
Loading /etc/emacs/site-start.d/50a2ps.el (source)...
Loading a2ps-print...
Loading /etc/emacs/site-start.d/50autoconf.el (source)...
Loading /etc/emacs/site-start.d/50dictionaries-common.el (source)...
Skipping dictionaries-common setup for emacs-snapshot
Loading /etc/emacs/site-start.d/50emacs-color-themes.el (source)...
Loading /etc/emacs/site-start.d/50emacs-goodies-el.el (source)...
Loading /etc/emacs/site-start.d/50post-el.el (source)...
Loading /etc/emacs/site-start.d/50psvn.el (source)...
Version is: GNU Emacs 22.0.90.1 (i486-pc-linux-gnu, X toolkit, Xaw3d scroll 
bars)
 of 2006-11-23 on thorsten, modified by Debian
System load-path: (/usr/share/emacs-snapshot/site-lisp/emacs-color-themes 
/usr/share/emacs-snapshot/site-lisp/a2ps 
/usr/share/emacs-snapshot/site-lisp/post-el 
/usr/share/emacs-snapshot/site-lisp/emacs-goodies-el 
/usr/share/emacs/site-lisp/autoconf /etc/emacs-snapshot /etc/emacs 
/usr/local/share/emacs/22.0.90/site-lisp /usr/local/share/emacs/site-lisp 
/usr/share/emacs/22.0.90/site-lisp /usr/share/emacs/22.0.90/site-lisp/a2ps 
/usr/share/emacs/22.0.90/site-lisp/emacs-color-themes 
/usr/share/emacs/22.0.90/site-lisp/emacs-goodies-el 
/usr/share/emacs/22.0.90/site-lisp/post-el /usr/share/emacs/site-lisp 
/usr/share/emacs/22.0.90/leim /usr/share/emacs/22.0.90/lisp 
/usr/share/emacs/22.0.90/lisp/url /usr/share/emacs/22.0.90/lisp/textmodes 
/usr/share/emacs/22.0.90/lisp/progmodes /usr/share/emacs/22.0.90/lisp/play 
/usr/share/emacs/22.0.90/lisp/obsolete /usr/share/emacs/22.0.90/lisp/net 
/usr/share/emacs/22.0.90/lisp/mh-e /usr/share/emacs/22.0.90/lisp/mail 
/usr/share/emacs/22.0.90/lisp/language 
/usr/share/emacs/22.0.90/lisp/international /usr/share/emacs/22.0.90/lisp/gnus 
/usr/share/emacs/22.0.90/lisp/eshell /usr/share/emacs/22.0.90/lisp/erc 
/usr/share/emacs/22.0.90/lisp/emulation 
/usr/share/emacs/22.0.90/lisp/emacs-lisp /usr/share/emacs/22.0.90/lisp/calendar 
/usr/share/emacs/22.0.90/lisp/calc /usr/share/emacs/22.0.90/leim)

-- /usr/share/emacs-snapshot/:
/usr/share/emacs-snapshot:
total 4
drwxr-xr-x 6 root root 4096 2006-11-23 21:16 site-lisp

/usr/share/emacs-snapshot/site-lisp:
total 24
drwxr-xr-x 2 root root 4096 2006-11-23 21:16 a2ps
-rw-r--r-- 1 root root 3051 2006-11-23 21:16 debian-startup.elc
drwxr-xr-x 2 root root 4096 2006-11-23 21:16 emacs-color-themes
drwxr-xr-x 2 root root 4096 2006-11-23 21:16 emacs-goodies-el
drwxr-xr-x 2 root root 4096 2006-11-23 21:16 post-el
-rw-r--r-- 1 root root  106 2006-11-23 21:07 subdirs.el

/usr/share/emacs-snapshot/site-lisp/a2ps:
total 12
-rw-r--r-- 1 root root 5060 2006-11-23 21:16 a2ps.elc
-rw-r--r-- 1 root root 1953 2006-11-23 21:16 a2ps-print.elc

/usr/share/emacs-snapshot/site-lisp/emacs-color-themes:
total 768
-rw-r--r-- 1 root root 778249 2006-11-23 21:16 color-theme.elc

/usr/share/emacs-snapshot/site-lisp/emacs-goodies-el:
total 2288
lrwxrwxrwx 1 root root 59 2006-11-23 21:16 align-string.el - 
/usr/share/emacs/site-lisp/emacs-goodies-el/align-string.el
-rw-r--r-- 1 root root   1846 2006-11-23 21:16 align-string.elc
lrwxrwxrwx 1 root root 50 2006-11-23 21:16 all.el - 
/usr/share/emacs/site-lisp/emacs-goodies-el/all.el
-rw-r--r-- 1 root root   4715 2006-11-23 21:16 all.elc
lrwxrwxrwx 1 root root 58 2006-11-23 21:16 apache-mode.el - 
/usr/share/emacs/site-lisp/emacs-goodies-el/apache-mode.el
-rw-r--r-- 1 root root  10429 2006-11-23 21:16 apache-mode.elc
lrwxrwxrwx 1 root root 52 2006-11-23 21:16 ascii.el - 
/usr/share/emacs/site-lisp/emacs-goodies-el/ascii.el
-rw-r--r-- 1 root root  26096 2006-11-23 21:16 ascii.elc
lrwxrwxrwx 1 root root 64 2006-11-23 21:16 auto-fill-inhibit.el - 
/usr/share/emacs/site-lisp/emacs-goodies-el/auto-fill-inhibit.el
-rw-r--r-- 1 root root   1629 2006-11-23 21:16 auto-fill-inhibit.elc
lrwxrwxrwx 1 root root 57 2006-11-23 21:16 

Bug#400101: util-vserver: Link to the FAQ about procfs-security is outdated

2006-11-23 Thread Thorsten Gunkel
Package: util-vserver
Version: 0.30.211-2
Severity: minor

The vserver script contains the following error message:
,
| # vserver FOO start
| vc_new_s_context(): Function not implemented
| /proc/uptime can not be accessed. Usually, this is caused by
| procfs-security. Please read the FAQ for more details
| http://www.linux-vserver.org/index.php?page=Linux-Vserver+FAQ
| 
| 
| Failed to start vserver 'FOO'
`

However the URL is no longer valid. It seems a copy of the old text can be
found here:
http://oldwiki.linux-vserver.org/Proc-Security
the new FAQ is here:
http://linux-vserver.org/Frequently_Asked_Questions

Please check if you have additional URL to the vserver website which might be
also broken.

regards
 Thorsten

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

Versions of packages util-vserver depends on:
ii  debconf  1.5.8   Debian configuration management sy
ii  iproute  20061002-2  Professional tools to control the 
ii  libbeecrypt6 4.1.2-6 open source C library of cryptogra
ii  libc62.3.6.ds1-8 GNU C Library: Shared libraries
ii  make 3.81-2  The GNU version of the make util
ii  net-tools1.60-17 The NET-3 networking toolkit

Versions of packages util-vserver recommends:
ii  binutils  2.17-3 The GNU assembler, linker and bina
ii  debootstrap   0.3.3  Bootstrap a basic Debian system

-- debconf information excluded



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



Bug#347456: subversion: svn doesn't like it if folders already exist

2006-01-12 Thread Thorsten Gunkel
On [Thu, 12.01.2006 01:18], Peter Samuelson wrote:
 [Thorsten Gunkel]
  However when I want to do a checkout on another machine svn will complain
  because etc already exists:
  
   # svn update
   svn: Working copy 'etc' is missing or not locked
 
# cd /etc
# svn checkout http://your.server/your/etc .
 This will store the files directly in /etc as you wish.  However, it
 may not be quite what you want, because it will refuse to overwrite any
 files you may already have in /etc.  (I'm guessing you would want it to
 do so.)

No, I can live with that. If I want to overwrite that files anyway I can
delete them manually if svn complains.

So in short the solution to my problem is
URL:http://subversion.tigris.org/faq.html#in-place-import?

 There have been some requests for upstream to deal with this situation
 more gracefully, but from what I can recall, the discussions haven't
 ever ended conclusively and nobody has stepped up to do the work.

Maybe it would be enough to modify the error message to explain what can be
done to make the folder a working copy?

thanks
 Thorsten


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



Bug#347456: subversion: svn doesn't like it if folders already exist

2006-01-10 Thread Thorsten Gunkel
Package: subversion
Version: 1.1.4-2
Severity: wishlist

Hi, I (mis-)use subversion to store some parts of my filesystem.
e.g.
 # svn add --non-recursive /etc/
 # svn add /etc/fstab

to add (only) /etc/fstab but not for example /etc/passwd

However when I want to do a checkout on another machine svn will complain
because etc already exists:

 # svn update
 svn: Working copy 'etc' is missing or not locked

I know of at least two possibilities* to convince svn to accept etc as one of
'his' folders but I would find it very convenient if svn would integrate
folders that already exists automatically or if it would offer an option to
do so.

regards
 Thorsten

*) 1. Move the folder temporary away and let svn recreate it
  (however you probably don't want to move /etc away, even temporary)
   2. Get the /etc/.svn subfolder from somewhere else and copy it into your
  etc folder

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.12.2
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8)

Versions of packages subversion depends on:
ii  db4.2-util 4.2.52-18 Berkeley v4.2 Database Utilities
ii  libapr02.0.54-5  the Apache Portable Runtime
ii  libc6  2.3.2.ds1-22  GNU C Library: Shared libraries an
ii  libdb4.2   4.2.52-18 Berkeley v4.2 Database Libraries [
ii  libexpat1  1.95.8-3  XML parsing C library - runtime li
ii  libldap2   2.1.30-8  OpenLDAP libraries
ii  libneon24  0.24.7.dfsg-2 An HTTP and WebDAV client library
ii  libssl0.9.70.9.7e-3sarge1SSL shared libraries
ii  libsvn01.1.4-2   shared libraries used by Subversio
ii  libxml22.6.16-7  GNOME XML library
ii  patch  2.5.9-2   Apply a diff file to an original
ii  zlib1g 1:1.2.2-4.sarge.2 compression library - runtime

-- no debconf information


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



Bug#340902: john: /usr/sbin/mailer does not ignore comments

2005-11-26 Thread Thorsten Gunkel
Package: john
Version: 1.6-38
Severity: normal
Tags: patch

Hi,
in /usr/sbin/mailer you find lines like this one:
,
| MAILCMD=`grep  -e mailcmd[ ]*=[ ]* /etc/john/john-mail.conf | sed s/.*=[ 
]*//`
`

So if you change /etc/john/john-mail.conf from something like this:

,
| mailcmd=/usr/bin/sendmail
`

to something like this:

,
| #mailcmd=/usr/bin/sendmail
| mailcmd=/usr/local/my_script
`

Your mailcommand is (a) unchanged (still sendmail) and (b) $MAILCMD will
contain two lines which will lead to *very* unexpected behaviour.

Suggested fix:

- Ensure that there's no other character than   at the beginning of lines
  we like to parse
- Stop grep after the first match

--- /usr/sbin/mailer2005-11-20 01:40:57.0 +0100
+++ /tmp/mailer 2005-11-26 21:23:00.835850153 +0100
@@ -24,9 +24,9 @@
 JOHNDIR=/usr/sbin
 
 # Let's get stuff from conf file:
-SHELLS=`grep   -e shells[ ]*=[ ]*  /etc/john/john-mail.conf | sed s/.*=[ 
]*//`
-MAILCMD=`grep  -e mailcmd[ ]*=[ ]* /etc/john/john-mail.conf | sed s/.*=[ 
]*//`
-MAILARGS=`grep -e mailargs[ ]*=[ ]* /etc/john/john-mail.conf | sed s/.*=[ 
]*//`
+SHELLS=`grep   -m1 -e ^ *shells[ ]*=[ ]*  /etc/john/john-mail.conf | sed 
s/.*=[ ]*//`
+MAILCMD=`grep  -m1 -e ^ *mailcmd[ ]*=[ ]* /etc/john/john-mail.conf | sed 
s/.*=[ ]*//`
+MAILARGS=`grep -m1 -e ^ *mailargs[ ]*=[ ]* /etc/john/john-mail.conf | sed 
s/.*=[ ]*//`
 
 # Let's start
 $JOHNDIR/john -show $1 -shells:$SHELLS | sed -n 's/:.*//p' |




I would have found this bug earlier but I assumed that /usr/sbin/mailer would
be a generic mailer and no john related stuff. This was already requested in
bug #114059 by Taketoshi Sano (Cc'ed) and I totally agree with him. Please talk 
to
upstream and ask them to rename it to john-mailer or something similar.

regards
 Thorsten


-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.12.2
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8)

Versions of packages john depends on:
ii  debconf 1.4.30.13Debian configuration management sy
ii  dpkg1.10.28  Package maintenance system for Deb
ii  libc6   2.3.2.ds1-22 GNU C Library: Shared libraries an


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



Bug#330020: log-watching pipeline example from beep man-page does not work

2005-10-15 Thread Thorsten Gunkel
On [Fri, 14.10.2005 11:46], Gerfried Fuchs wrote:
  I see... From the link you sent it seems like grep should use some
 unbuffered output switch. Can you try if adding --line-buffered as
 option to grep solves the problem? If so I'll update the manpage
 accordingly. Works for me if I use --line-buffered with grep.

Yes, seems so. Thanks.
 
  So long, and thanks for the hint.
 Alfie

regards
 Thorsten


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



Bug#330020: log-watching pipeline example from beep man-page does not work

2005-09-25 Thread Thorsten Gunkel
Package: beep
Version: 1.2.2-15
Severity: minor

Hi,
 my beep man-page has this paragraph:

,
| As part of a log-watching pipeline
| 
|  tail -f /var/log/xferlog | grep 'passwd' | beep -f 1000 -r 5 -s
`

However that does not work until I remove the -f from the tail command (but
this is pointless because then you aren't watching the file any longer) or
if I remove the grep (which is probably also no solution in most cases).

To show that it is no beep problem check that

,
| tail -f /var/log/xferlog | grep passwd
`

will output something, this won't:

,
| tail -f /var/log/xferlog | grep passwd | grep passwd
`

So beep will not receive anything (or at least not immediately)

This has already been discussed here:
http://lists.debian.org/debian-isp/2001/05/msg3.html 

regards
 Thorsten

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.12.2
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8)

Versions of packages beep depends on:
ii  debconf 1.4.30.13Debian configuration management sy
ii  libc6   2.3.2.ds1-22 GNU C Library: Shared libraries an

-- debconf information excluded


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



Bug#328829: esvn drops the last character of a path

2005-09-17 Thread Thorsten Gunkel
Package: esvn
Version: 0.6.8+1-1
Severity: normal

Start esvn like this:

# strace esvn 21 | grep \/

Click on 
File - Open working directory

Select a path (I selected /tmp/12345/tgunkel_de)

A window appears with this error message:
Workspace/Directory does not exist

In the strace you can see why:
,
| getcwd(/tmp, 4096)= 5
| lstat64(/tmp, {st_mode=S_IFDIR|S_ISVTX|0777, st_size=280, ...}) = 0
| lstat64(/tmp/12345, {st_mode=S_IFDIR|0755, st_size=60, ...}) = 0
| lstat64(/tmp/12345/tgunkel_de, {st_mode=S_IFDIR|0755, st_size=120, ...}) = 0
| chdir(/tmp)   = 0
| access(/tmp/12345, F_OK)  = 0
| lstat64(/tmp/12345, {st_mode=S_IFDIR|0755, st_size=60, ...}) = 0
| access(/tmp/12345/tgunkel_d, F_OK)= -1 ENOENT (No such file or 
directory)
`

esvn dropped the last e.

Workaround: Select File - Workaround - New  and manually enter the
path with a trailing / character. This will also be dropped but that
doesn't harm.

With the version from unstable (0.6.11+1-1) this seems to be fixed.

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.12.2
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8)

Versions of packages esvn depends on:
ii  libc62.3.2.ds1-22GNU C Library: Shared libraries an
ii  libgcc1  1:4.0-0pre10GCC support library
ii  libqt3c102-mt3:3.3.4-3   Qt GUI Library (Threaded runtime v
ii  libstdc++5   1:3.3.5-13  The GNU Standard C++ Library v3
ii  libx11-6 4.3.0.dfsg.1-14 X Window System protocol client li
ii  libxext6 4.3.0.dfsg.1-14 X Window System miscellaneous exte
ii  subversion   1.1.4-2 advanced version control system (a
ii  xlibs4.3.0.dfsg.1-14 X Keyboard Extension (XKB) configu

-- no debconf information


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



Bug#328895: xclock: man page does not document how to show the time of different timezones

2005-09-17 Thread Thorsten Gunkel
Package: xbase-clients
Version: 6.8.2.dfsg.1-7
Severity: minor
File: /usr/X11R6/bin/xclock
Tags: patch

I just tried to find out how to let xclock show the time of different
timezones and didn't find anything at first. Please consider the attached
patch to the xclock man page to document that you can use the TZ variable for
that.

regards
 Thorsten
--- ./xc/programs/xclock/xclock.man 2005-02-28 18:35:18.0 +0100
+++ ./xclock_new.man2005-09-18 00:58:56.005911518 +0200
@@ -244,6 +244,13 @@
 .B XENVIRONMENT
 to get the name of a resource file that overrides the global resources
 stored in the RESOURCE_MANAGER property.
+.TP 8
+.B TZ
+to get the timezone that should be used. You may for example issue
+.IB TZ=Europe/London xclock 
+or 
+.IB TZ=UTC-8 xclock
+to manipulate the time xclock shows. For more details see tzselect(1) and 
tzset(3).
 .SH FILES
 .TP
 .I __apploaddir__/XClock


signature.asc
Description: Digital signature


Bug#305464: kphone: Alsa does not work for me

2005-06-09 Thread Thorsten Gunkel
On [Wed, 08.06.2005 22:38], Mark Purcell wrote:
 Thorsten,
 With the release of kphone-4.1.1 is this issue resolved?

I just installed kphone 1:4.1.1-1 from testing
(build with fakeroot apt-get source -b kphone on a sarge system) and
it seems to work with Alsa.

 Mark  

Thanks
 Thorsten


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



Bug#247787: kphone should capture S16_BE samples on big-endian (like powerpc) systems

2005-05-08 Thread Thorsten Gunkel
Package: kphone
Version: 1:4.1.1-1
Followup-For: Bug #247787

Hi *,
 may I ask what's the current status of this bug?
I tried the version that is currently in sarge (1:4.1.0-2) and only got loud
noise like Derrik described. Mark are you sure the severity of this bug is
high enough? As far as I understood kphone in sarge won't be usable on (at
least) powerpc at all, right?

Because Derrik claimed that he had fixed this issue I tried the current
version in unstable to see if the problem may has been fixed unnoticed. And
indeed, the ring-tone works flawlessly and no more loud noise. However during
calls sound doesn't seem to work at all. Nobody hears me and I hear
nobody.

TIA for further information
 Thorsten

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: powerpc (ppc)
Kernel: Linux 2.6.11.5
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8)

Versions of packages kphone depends on:
ii  libc62.3.2.ds1-21GNU C Library: Shared libraries an
ii  libgcc1  1:3.4.3-12  GCC support library
ii  libice6  4.3.0.dfsg.1-12 Inter-Client Exchange library
ii  libpng12-0   1.2.8rel-1  PNG library - runtime
ii  libqt3c102-mt3:3.3.4-3   Qt GUI Library (Threaded runtime v
ii  libsm6   4.3.0.dfsg.1-12 X Window System Session Management
ii  libssl0.9.7  0.9.7e-3SSL shared libraries
ii  libstdc++5   1:3.3.5-12  The GNU Standard C++ Library v3
ii  libx11-6 4.3.0.dfsg.1-12 X Window System protocol client li
ii  libxext6 4.3.0.dfsg.1-12 X Window System miscellaneous exte
ii  libxt6   4.3.0.dfsg.1-12 X Toolkit Intrinsics
ii  xlibs4.3.0.dfsg.1-12 X Keyboard Extension (XKB) configu

-- no debconf information


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



Bug#306549: util-vserver: vhashify is still broken

2005-05-04 Thread Thorsten Gunkel
reopen #306549
thanks

Hi Ola,
 thanks for adding the missing build-dependency. However, as I already
mentioned in my original bugreport, libvserver.so seems to be mandatory:

# dpkg -l util-vserver | grep ii
ii  util-vserver   0.30.207-3 tools for Virtual private servers and contex

# vserver test1 hashify
/usr/lib/util-vserver/vhashify: error while loading shared libraries: 
libvserver.so.0: cannot open shared object file: No such file or directory


http://buildd.debian.org/fetch.php?pkg=util-vserverver=0.30.207-2arch=powerpcstamp=1114989526file=logas=raw
(I didn't found the 207-3 link yet)
...
dh_installdeb
dh_shlibdeps -L util-vserver -l debian/util-vserver/usr/lib
dpkg-shlibdeps: warning: could not find path for libvserver.so.0
dpkg-shlibdeps: warning: could not find path for libvserver.so.0
dpkg-shlibdeps: warning: could not find any packages for  (libvserver.so.0)
dpkg-shlibdeps: warning: unable to find dependency information for shared 
library libvserver (soname 0, path , dependency field Depends)
dpkg-shlibdeps: warning: could not find any packages for  (libvserver.so.0)
dpkg-shlibdeps: warning: unable to find dependency information for shared 
library libvserver (soname 0, path , dependency field Depends)
dh_gencontrol
...


regards
 Thorsten


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



Bug#307536: kphone: Should left a notice if you missed a call

2005-05-03 Thread Thorsten Gunkel
Package: kphone
Version: 1:4.1.0-2
Severity: wishlist

If you're not at your computer while someone calls you kphone won't inform
you that you missed a call. Please open a window containing all calls you
missed or write an email to the user for every call.

TIA
 Thorsten

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.11.7
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8)

Versions of packages kphone depends on:
ii  libasound2   1.0.8-3 ALSA library
ii  libc62.3.2.ds1-21GNU C Library: Shared libraries an
ii  libgcc1  1:4.0-0pre10GCC support library
ii  libice6  4.3.0.dfsg.1-12.0.1 Inter-Client Exchange library
ii  libpng12-0   1.2.8rel-1  PNG library - runtime
ii  libqt3c102-mt3:3.3.4-3   Qt GUI Library (Threaded runtime v
ii  libsm6   4.3.0.dfsg.1-12.0.1 X Window System Session Management
ii  libssl0.9.7  0.9.7e-3SSL shared libraries
ii  libstdc++5   1:3.3.5-12  The GNU Standard C++ Library v3
ii  libx11-6 4.3.0.dfsg.1-12.0.1 X Window System protocol client li
ii  libxext6 4.3.0.dfsg.1-12.0.1 X Window System miscellaneous exte
ii  libxt6   4.3.0.dfsg.1-12.0.1 X Toolkit Intrinsics
ii  xlibs4.3.0.dfsg.1-12 X Keyboard Extension (XKB) configu

-- no debconf information


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



Bug#307539: kphone: Please display nickname from phone-book instead of the phone-number for incoming calls

2005-05-03 Thread Thorsten Gunkel
Package: kphone
Version: 1:4.1.0-2
Severity: wishlist

When you get a call kphone will only show the number of the caller. It would
be nice if kphone would check if the number is in the phone-book to display a
userfirendly name.

TIA
 Thorsten

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.11.7
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8)

Versions of packages kphone depends on:
ii  libasound2   1.0.8-3 ALSA library
ii  libc62.3.2.ds1-21GNU C Library: Shared libraries an
ii  libgcc1  1:4.0-0pre10GCC support library
ii  libice6  4.3.0.dfsg.1-12.0.1 Inter-Client Exchange library
ii  libpng12-0   1.2.8rel-1  PNG library - runtime
ii  libqt3c102-mt3:3.3.4-3   Qt GUI Library (Threaded runtime v
ii  libsm6   4.3.0.dfsg.1-12.0.1 X Window System Session Management
ii  libssl0.9.7  0.9.7e-3SSL shared libraries
ii  libstdc++5   1:3.3.5-12  The GNU Standard C++ Library v3
ii  libx11-6 4.3.0.dfsg.1-12.0.1 X Window System protocol client li
ii  libxext6 4.3.0.dfsg.1-12.0.1 X Window System miscellaneous exte
ii  libxt6   4.3.0.dfsg.1-12.0.1 X Toolkit Intrinsics
ii  xlibs4.3.0.dfsg.1-12 X Keyboard Extension (XKB) configu

-- no debconf information


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



Bug#306549: util-vserver: missing build dependency for vhashify

2005-04-27 Thread Thorsten Gunkel
Package: util-vserver
Version: 0.30.204-5
Severity: normal

configure: WARNING:

 'beecrypt' could not be found;
 this will disable the build of 'vhashify'


apt-get install beecrypt2-dev seems to fix this. So I suggest that you add a 
build dependency for it.

regards
 Thorsten

-- System Information:
Debian Release:3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.11.5-vs1.9.5
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages util-vserver depends on:
ii  iproute 20041019-3   Professional tools to control the 
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  libgcc1 1:3.4.3-12   GCC support library
ii  libstdc++5  1:3.3.5-8The GNU Standard C++ Library v3
ii  net-tools   1.60-10  The NET-3 networking toolkit

-- no debconf information


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



Bug#306549: util-vserver: missing build dependency for vhashify

2005-04-27 Thread Thorsten Gunkel
On [Wed, 27.04.2005 15:05], Ola Lundqvist wrote:
 severity 306549 wishlist
 tags 306549 + moreinfo
 thanks

Hi Ola,
 
 On Wed, Apr 27, 2005 at 01:33:22PM +0200, Thorsten Gunkel wrote:
  configure: WARNING:
  
   'beecrypt' could not be found;
   this will disable the build of 'vhashify'
  
 What is vhashify?

It's the successor of vunify. You need it to reduce the space your vservers
need. See http://linux-vserver.org/alpha+util-vserver

 Do the same thing happen on util-vserver 0.30.206 (unstable) ?

Sure, just do a apt-get remove beecrypt2-dev to test it.

Please also note that


1) the vserver scripts outputs wrong usage informations:

# vserver
Usage: /usr/sbin/vserver 
{start|stop|suexec|restart|condrestart|exec|enter|chkconfig|running|status}

Right would be
/usr/sbin/vserver VSERVER_ID {start|stop| 

Additionally at least the options unify and hashify are missing.
see less `which vserver` for the full list at the bottom.

This should probably also reported upstream.



2) Please make sure that libvserver.so is included in your package.


regards
 Thorsten


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



Bug#305464: kphone: Alsa does not work for me

2005-04-19 Thread Thorsten Gunkel
Package: kphone
Version: 1:4.1.0-2
Severity: normal

Hi,
when I try to use Alsa instead of OSS kphone terminates as soon as it tries
to output sound. The last lines are:

,
| ...
| CallAudio: Opening ALSA device for Input 
| The rate 8018 Hz is not supported by your hardware.
| == Using 0 Hz instead.
`

regards
 Thorsten

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.11.7
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8)

Versions of packages kphone depends on:
ii  libasound2   1.0.8-3 ALSA library
ii  libc62.3.2.ds1-20GNU C Library: Shared libraries an
ii  libgcc1  1:4.0-0pre10GCC support library
ii  libice6  4.3.0.dfsg.1-12.0.1 Inter-Client Exchange library
ii  libpng12-0   1.2.8rel-1  PNG library - runtime
ii  libqt3c102-mt3:3.3.4-2   Qt GUI Library (Threaded runtime v
ii  libsm6   4.3.0.dfsg.1-12.0.1 X Window System Session Management
ii  libssl0.9.7  0.9.7e-3SSL shared libraries
ii  libstdc++5   1:3.3.5-8   The GNU Standard C++ Library v3
ii  libx11-6 4.3.0.dfsg.1-12.0.1 X Window System protocol client li
ii  libxext6 4.3.0.dfsg.1-12.0.1 X Window System miscellaneous exte
ii  libxt6   4.3.0.dfsg.1-12.0.1 X Toolkit Intrinsics
ii  xlibs4.3.0.dfsg.1-12 X Keyboard Extension (XKB) configu

-- no debconf information


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



Bug#299577: console-data: syntax error in mac-ibook-de.kmap.gz

2005-03-15 Thread Thorsten Gunkel
 Additionally the iBook keyboard has a return key and an enter key but no
 delete key. IMHO one can live without an enter key:

Sorry, obviously it has a delete key but no remove key.
With the remove key it is now also possible to define a working boot
sequence:

 
-keycode  96 = KP_Enter
-   altgr   keycode  96 = Hex_F   
+#keycode  96 = KP_Enter
+#  altgr   keycode  96 = Hex_F   
+keycode  96 = Remove
+ altgr   control keycode 96 = Boot
+ control alt keycode 96 = Boot


 
regards
 Thorsten
--- mac-ibook-de.kmap   2005-03-15 12:43:20.0 +0100
+++ mac-ibook-de.kmap_new   2005-03-15 12:42:29.0 +0100
@@ -212,8 +212,11 @@
 keycode  93 =
 keycode  94 =
 keycode  95 =
-keycode  96 = KP_Enter
-   altgr   keycode  96 = Hex_F   
+#keycode  96 = KP_Enter
+#  altgr   keycode  96 = Hex_F   
+keycode  96 = Remove
+ altgr   control keycode 96 = Boot
+ control alt keycode 96 = Boot
 keycode  97 = Control 
 keycode  98 = KP_Divide   
altgr   keycode  98 = Hex_B   
@@ -307,141 +310,3 @@
 string Next = \033[6~
 string Macro = \033[M
 string Pause = \033[P
-compose '`' 'A' to 'À'
-compose '`' 'a' to 'à'
-compose '\'' 'A' to 'Á'
-compose '\'' 'a' to 'á'
-compose '^' 'A' to 'Â'
-compose '^' 'a' to 'â'
-compose '~' 'A' to 'Ã'
-compose '~' 'a' to 'ã'
-compose '' 'A' to 'Ä'
-compose '' 'a' to 'ä'
-compose 'O' 'A' to 'Å'
-compose 'o' 'a' to 'å'
-compose '0' 'A' to 'Å'
-compose '0' 'a' to 'å'
-compose 'A' 'A' to 'Å'
-compose 'a' 'a' to 'å'
-compose '°' 'A' to 'Å'
-compose '°' 'a' to 'å'
-compose 'A' 'E' to 'Æ'
-compose 'a' 'e' to 'æ'
-compose ',' 'C' to 'Ç'
-compose ',' 'c' to 'ç'
-compose '^' 'C' to 'Ç'
-compose '^' 'c' to 'ç'
-compose '`' 'E' to 'È'
-compose '`' 'e' to 'è'
-compose '\'' 'E' to 'É'
-compose '\'' 'e' to 'é'
-compose '^' 'E' to 'Ê'
-compose '^' 'e' to 'ê'
-compose '' 'E' to 'Ë'
-compose '' 'e' to 'ë'
-compose '`' 'I' to 'Ì'
-compose '`' 'i' to 'ì'
-compose '\'' 'I' to 'Í'
-compose '\'' 'i' to 'í'
-compose '^' 'I' to 'Î'
-compose '^' 'i' to 'î'
-compose '' 'I' to 'Ï'
-compose '' 'i' to 'ï'
-compose '-' 'D' to 'Ð'
-compose '-' 'd' to 'ð'
-compose '^' 'D' to 'Ð'
-compose '^' 'd' to 'ð'
-compose '~' 'N' to 'Ñ'
-compose '~' 'n' to 'ñ'
-compose '^' 'N' to 'Ñ'
-compose '^' 'n' to 'ñ'
-compose '`' 'O' to 'Ò'
-compose '`' 'o' to 'ò'
-compose '\'' 'O' to 'Ó'
-compose '\'' 'o' to 'ó'
-compose '^' 'O' to 'Ô'
-compose '^' 'o' to 'ô'
-compose '~' 'O' to 'Õ'
-compose '~' 'o' to 'õ'
-compose '' 'O' to 'Ö'
-compose '' 'o' to 'ö'
-compose '/' 'O' to 'Ø'
-compose '/' 'o' to 'ø'
-compose '`' 'U' to 'Ù'
-compose '`' 'u' to 'ù'
-compose '\'' 'U' to 'Ú'
-compose '\'' 'u' to 'ú'
-compose '^' 'U' to 'Û'
-compose '^' 'u' to 'û'
-compose '' 'U' to 'Ü'
-compose '' 'u' to 'ü'
-compose '\'' 'Y' to 'Ý'
-compose '\'' 'y' to 'ý'
-compose 'T' 'H' to 'Þ'
-compose 't' 'h' to 'þ'
-compose 's' 's' to 'ß'
-compose '' 'y' to 'ÿ'
-compose 's' 'z' to 'ß'
-compose 'n' 'n' to 'ñ'
-compose 'n' 'h' to 'ñ'
-compose 'N' 'Y' to 'Ñ'
-compose 'N' 'N' to 'Ñ'
-compose 'N' 'H' to 'Ñ'
-compose 'N' 'y' to 'Ñ'
-compose 'N' 'n' to 'Ñ'
-compose 'N' 'h' to 'Ñ'
-compose '-' 'L' to '£'
-compose '' '' to '«'
-compose '' '' to '»'
-compose '?' '?' to '¿'
-compose '^' '?' to '¿'
-compose '!' '!' to '¡'
-compose '^' '!' to '¡'
-compose '^' '1' to '¹'
-compose '^' '2' to '²'
-compose '^' '3' to '³'
-compose '+' '-' to '±'
-compose 'c' '=' to '¢'
-compose 'c' '/' to '¢'
-compose '/' 'c' to '¢'
-compose '-' 'c' to '¢'
-compose '-' 'C' to '¢'
-compose 'L' '=' to '£'
-compose '-' 'L' to '£'
-compose '-' 'l' to '£'
-compose '^' '*' to '×'
-compose '^' 'x' to '×'
-compose 'x' 'x' to '×'
-compose '^' '.' to '·'
-compose '.' '.' to '·'
-compose '^' '/' to '÷'
-compose '^' ':' to '÷'
-compose '-' ':' to '÷'
-compose ':' '-' to '÷'
-compose 'e' '=' to '¤'
-compose 'E' '=' to '¤'
-compose 'Y' '=' to '¥'
-compose '-' 'Y' to '¥'
-compose '-' 'l' to '¥'
-compose 'v' 'S' to '¦'
-compose '^' 'S' to '¦'
-compose 'v' 's' to '¨'
-compose '^' 's' to '¨'
-compose '(' 'c' to '©'
-compose '' 'c' to '©'
-compose '-' 'a' to 'ª'
-compose '-' 'A' to 'ª'
-compose '-' 'o' to 'º'
-compose '-' 'O' to 'º'
-compose '(' 'r' to '®'
-compose '' 'r' to '®'
-compose 'v' 'Z' to '´'
-compose '^' 'Z' to '´'
-compose 'v' 'z' to '¸'
-compose '^' 'z' to '¸'
-compose 'O' 'E' to '¼'
-compose 'O' 'e' to '¼'
-compose 'o' 'e' to '½'
-compose '' 'Y' to '¾'
-compose 'm' 'u' to 'µ'
-compose '.' '.' to '·'


Bug#299577: console-data: syntax error in mac-ibook-de.kmap.gz

2005-03-14 Thread Thorsten Gunkel
Package: console-data
Version: 2002.12.04dbs-49
Severity: normal
File: /usr/share/keymaps/mac/mac-ibook-de.kmap.gz

I just found out that there already is a useful keymap for an iBook G4 with
German keyboard layout shipped with Sarge. Saved me a lot of time - thank you
very much!

However console-data refuses to load it because of syntax errors:

,
| # dpkg-reconfigure console-data
| Looking for keymap to install:
| mac-ibook-de
| /usr/share/keymaps/mac/mac-ibook-de.kmap.gz:310: syntax error
| syntax error in map file
| key bindings not changed
| Loading /etc/console/boottime.kmap.gz
`

Line 310 (and the following lines) all start with compose ...
I removed all this lines and now it works like a charm (without the compose
keys I guess - haven't tried yet).

Additionally the iBook keyboard has a return key and an enter key but no
delete key. IMHO one can live without an enter key:

-keycode  96 = KP_Enter
-   altgr   keycode  96 = Hex_F   
+#keycode  96 = KP_Enter
+#  altgr   keycode  96 = Hex_F   
+keycode  96 = Delete

Attached is a diff to show what I changed in 
/usr/share/keymaps/mac/mac-ibook-de.kmap.gz

Please let me know if you need additional informations.


regards
 Thorsten

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: powerpc (ppc)
Kernel: Linux 2.6.11.3
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages console-data depends on:
ii  console-common0.7.49 Basic infrastructure for text cons
ii  debconf   1.4.30.11  Debian configuration management sy

-- debconf information excluded


--- /tmp/mac-ibook-de.kmap  2005-03-15 03:48:58.0 +0100
+++ /tmp/mac-ibook-de.kmap_new  2005-03-15 03:48:29.0 +0100
@@ -212,8 +212,9 @@
 keycode  93 =
 keycode  94 =
 keycode  95 =
-keycode  96 = KP_Enter
-   altgr   keycode  96 = Hex_F   
+#keycode  96 = KP_Enter
+#  altgr   keycode  96 = Hex_F   
+keycode  96 = Delete
 keycode  97 = Control 
 keycode  98 = KP_Divide   
altgr   keycode  98 = Hex_B   
@@ -307,141 +308,3 @@
 string Next = \033[6~
 string Macro = \033[M
 string Pause = \033[P
-compose '`' 'A' to 'À'
-compose '`' 'a' to 'à'
-compose '\'' 'A' to 'Á'
-compose '\'' 'a' to 'á'
-compose '^' 'A' to 'Â'
-compose '^' 'a' to 'â'
-compose '~' 'A' to 'Ã'
-compose '~' 'a' to 'ã'
-compose '' 'A' to 'Ä'
-compose '' 'a' to 'ä'
-compose 'O' 'A' to 'Å'
-compose 'o' 'a' to 'å'
-compose '0' 'A' to 'Å'
-compose '0' 'a' to 'å'
-compose 'A' 'A' to 'Å'
-compose 'a' 'a' to 'å'
-compose '°' 'A' to 'Å'
-compose '°' 'a' to 'å'
-compose 'A' 'E' to 'Æ'
-compose 'a' 'e' to 'æ'
-compose ',' 'C' to 'Ç'
-compose ',' 'c' to 'ç'
-compose '^' 'C' to 'Ç'
-compose '^' 'c' to 'ç'
-compose '`' 'E' to 'È'
-compose '`' 'e' to 'è'
-compose '\'' 'E' to 'É'
-compose '\'' 'e' to 'é'
-compose '^' 'E' to 'Ê'
-compose '^' 'e' to 'ê'
-compose '' 'E' to 'Ë'
-compose '' 'e' to 'ë'
-compose '`' 'I' to 'Ì'
-compose '`' 'i' to 'ì'
-compose '\'' 'I' to 'Í'
-compose '\'' 'i' to 'í'
-compose '^' 'I' to 'Î'
-compose '^' 'i' to 'î'
-compose '' 'I' to 'Ï'
-compose '' 'i' to 'ï'
-compose '-' 'D' to 'Ð'
-compose '-' 'd' to 'ð'
-compose '^' 'D' to 'Ð'
-compose '^' 'd' to 'ð'
-compose '~' 'N' to 'Ñ'
-compose '~' 'n' to 'ñ'
-compose '^' 'N' to 'Ñ'
-compose '^' 'n' to 'ñ'
-compose '`' 'O' to 'Ò'
-compose '`' 'o' to 'ò'
-compose '\'' 'O' to 'Ó'
-compose '\'' 'o' to 'ó'
-compose '^' 'O' to 'Ô'
-compose '^' 'o' to 'ô'
-compose '~' 'O' to 'Õ'
-compose '~' 'o' to 'õ'
-compose '' 'O' to 'Ö'
-compose '' 'o' to 'ö'
-compose '/' 'O' to 'Ø'
-compose '/' 'o' to 'ø'
-compose '`' 'U' to 'Ù'
-compose '`' 'u' to 'ù'
-compose '\'' 'U' to 'Ú'
-compose '\'' 'u' to 'ú'
-compose '^' 'U' to 'Û'
-compose '^' 'u' to 'û'
-compose '' 'U' to 'Ü'
-compose '' 'u' to 'ü'
-compose '\'' 'Y' to 'Ý'
-compose '\'' 'y' to 'ý'
-compose 'T' 'H' to 'Þ'
-compose 't' 'h' to 'þ'
-compose 's' 's' to 'ß'
-compose '' 'y' to 'ÿ'
-compose 's' 'z' to 'ß'
-compose 'n' 'n' to 'ñ'
-compose 'n' 'h' to 'ñ'
-compose 'N' 'Y' to 'Ñ'
-compose 'N' 'N' to 'Ñ'
-compose 'N' 'H' to 'Ñ'
-compose 'N' 'y' to 'Ñ'
-compose 'N' 'n' to 'Ñ'
-compose 'N' 'h' to 'Ñ'
-compose '-' 'L' to '£'
-compose '' '' to '«'
-compose '' '' to '»'
-compose '?' '?' to '¿'
-compose '^' '?' to '¿'
-compose '!' '!' to '¡'
-compose '^' '!' to '¡'
-compose '^' '1' to '¹'
-compose '^' '2' to '²'
-compose '^' '3' to '³'
-compose '+' '-' to '±'
-compose 'c' '=' to '¢'
-compose 'c' '/' to '¢'
-compose '/' 'c' to '¢'
-compose '-' 'c' to '¢'
-compose '-' 'C' to '¢'
-compose 'L' '=' to '£'
-compose '-' 'L' to '£'
-compose '-' 'l' to '£'
-compose '^' '*' to '×'
-compose '^' 'x' to '×'
-compose 'x' 'x' to '×'
-compose '^' '.' to '·'
-compose '.' '.' to '·'
-compose '^' '/' to '÷'
-compose '^' ':' to '÷'
-compose '-' ':' to '÷'
-compose ':' '-' to '÷'
-compose 'e' '=' to '¤'
-compose 'E' '=' to '¤'
-compose 'Y' 

Bug#291291: /usr/bin/fvwm2: Click into windows doesn't raise them / FPClickRaisesFocused broken?

2005-01-19 Thread Thorsten Gunkel
Package: fvwm
Version: 2.5.12-4
Severity: normal
File: /usr/bin/fvwm2

Hi,
I tried to configure my fvwm to raise windows if I click into them.

This config works with fvwm-snap-20050119.tar.gz but not with the debian
version of fvwm I installed:


,[ ~/.fvwm2rc
| Style * SloppyFocus
| Style * FPClickRaisesFocused
`

(quoting fvwm(): The styles FPClickRaisesFocused, FPClickDecorRaisesFocused
  and FPClickIconRaisesFocused allow to raise  the  window
  when the interior or the decorations or the icon of the
  window is clicked while the window is already focused.)

While I can raise windows by clicking the decor clicking into them seems to
be ignored.

Can you reproduce this?

regards
 Thorsten


-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.10
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8)

Versions of packages fvwm depends on:
ii  libc62.3.2.ds1-20GNU C Library: Shared libraries an
ii  libfontconfig1   2.2.3-4 generic font configuration library
ii  libfreetype6 2.1.7-2.3   FreeType 2 font engine, shared lib
ii  libfribidi0  0.10.4-woody6   Free Implementation of the Unicode
ii  libglib1.2   1.2.10-9The GLib library of C routines
ii  libgtk1.21.2.10-17   The GIMP Toolkit set of widgets fo
ii  libice6  4.3.0.dfsg.1-10 Inter-Client Exchange library
ii  libncurses5  5.4-4   Shared libraries for terminal hand
ii  libpng12-0   1.2.8rel-1  PNG library - runtime
ii  libreadline4 4.3-11  GNU readline and history libraries
ii  librplay33.3.2-8 Shared libraries for the rplay net
ii  libsm6   4.3.0.dfsg.1-10 X Window System Session Management
ii  libstroke0   0.5.1-4 support for mouse strokes like tho
ii  libx11-6 4.3.0.dfsg.1-10 X Window System protocol client li
ii  libxext6 4.3.0.dfsg.1-10 X Window System miscellaneous exte
ii  libxft2  2.1.2-6 FreeType-based font drawing librar
ii  libxi6   4.3.0.dfsg.1-10 X Window System Input extension li
ii  libxpm4  4.3.0.dfsg.1-10 X pixmap library
ii  libxrender1  0.8.3-7 X Rendering Extension client libra
ii  xlibs4.3.0.dfsg.1-10 X Keyboard Extension (XKB) configu
ii  zlib1g   1:1.2.2-3   compression library - runtime

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


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