Strange error on burning cdrom

2003-06-19 Thread Markus Grunwald
Hello,

suddenly, I can't burn CDs without a strange error message anymore. 
I have no idea why, so I hope you can help me, because I don't like
error messages without reason.

Now the details:

Shortly before something went wrong I burned the first pile of CDs for
my thesis with this command perfectly fine (i.e. without error Message):

[EMAIL PROTECTED]: > cdrecord speed=4 diplomarbeit-01.img 

If I do it now, this is the result (I added the -v because I hoped to
get more relevant information, but the error message at the end is
exactly the same without -v). I marked the offending place with " | ":

---


[EMAIL PROTECTED]: > cdrecord speed=4 -v diplomarbeit-01.img 
Cdrecord 2.01a10 (i686-pc-linux-gnu) Copyright (C) 1995-2003 Jörg
Schilling TOC Type: 1 = CD-ROM
scsidev: '4,0'
scsibus: 0 target: 4 lun: 0
Linux sg driver version: 3.1.22
Using libscg version 'schily-0.7'
atapi: 0
Device type: Removable CD-ROM
Version: 2
Response Format: 2
Capabilities   : SYNC LINKED 
Vendor_info: 'PLEXTOR '
Identifikation : 'CD-R   PX-W1210S'
Revision   : '1.02'
Device seems to be: Generic mmc CD-RW.
Using generic SCSI-3/mmc CD-R driver (mmc_cdr).
Driver flags   : MMC SWABAUDIO BURNFREE 
Supported modes: TAO PACKET SAO SAO/R96P SAO/R96R RAW/R16 RAW/R96P
RAW/R96R Drive buf size : 2394336 = 2338 KB
FIFO size  : 4194304 = 4096 KB
Track 01: data 2 MB
Total size:2 MB (00:17.09) = 1282 sectors
Lout start:3 MB (00:19/07) = 1282 sectors
Current Secsize: 2048
ATIP info from disk:
  Indicated writing power: 6
  Is not unrestricted
  Is not erasable
  Disk sub type: Medium Type C, low Beta category (C-) (6)
  ATIP start of lead in:  -11231 (97:32/19)
  ATIP start of lead out: 335100 (74:30/00)
Disk type:Short strategy type (Phthalocyanine or similar)
Manuf. index: 27
Manufacturer: Prodisc Technology Inc.
Blocks total: 335100 Blocks current: 335100 Blocks remaining: 333818
RBlocks total: 343921 RBlocks current: 343921 RBlocks remaining: 342639
Starting to write CD/DVD at speed 4 in real TAO mode for single session.
Last chance to quit, starting real write0 seconds. Operation starts.
Waiting for reader process to fill input buffer ... input buffer ready.
BURN-Free is ON.
Turning BURN-Free off
Performing OPC...
Starting new track at sector: 0
Track 01:2 of2 MB written (fifo 100%) [buf  97%]   5.2x.
Track 01: Total bytes read/written: 2621440/2621440 (1280 sectors).
Writing  time:   10.420s
Average write speed   2.6x.
Fixating...
Fixating time:   61.237s
 | cdrecord: Input/output error. plextor get speedlist: scsi sendcmd: no
error | CDB:  EB 00 00 00 00 00 00 00 00 0A 00 00
 | status: 0x2 (CHECK CONDITION)
 | Sense Bytes: 70 00 05 00 00 00 00 0A 00 00 00 00 20 00 00 00
 | Sense Key: 0x5 Illegal Request, Segment 0
 | Sense Code: 0x20 Qual 0x00 (invalid command operation code) Fru 0x0
 | Sense flags: Blk 0 (not valid) 
resid: 10
cmd finished after 0.001s timeout 40s
cdrecord: fifo had 42 puts and 42 gets.
cdrecord: fifo was 0 times empty and 0 times full, min fill was 100%.

---


I _can_ read data from the cd without problem. But I don't like the
line

cdrecord: Input/output error. plextor get speedlist: scsi sendcmd: no
error

I didn't have this "error" earlier and strangely enough, I don't have
this error if I copy CDs on the fly with cdrdao:

cdrdao copy --speed 10  --on-the-fly

Works perfectly fine, while I get exactly the same error if I burn a
cd image with cdrdao...

I have another cd writer in my system. If I do the same with the other
writer, I get exactly the same error, too...

Further information about my system:

Linux Kernel 2.4.18
cat /etc/debian_version 
testing/unstable

My scsi host adapter:
scsi0 : Adaptec AIC7XXX EISA/VLB/PCI SCSI HBA DRIVER, Rev 6.2.4

aic7892: Ultra160 Wide Channel A, SCSI Id=7, 32/253 SCBs

The cd writer I used with the example above:
  Vendor: PLEXTOR   Model: CD-R   PX-W1210S  Rev: 1.02
  Type:   CD-ROM ANSI SCSI revision: 02
(scsi0:A:4): 20.000MB/s transfers (20.000MHz, offset 16)

The "other" writer:
  Vendor: PLEXTOR   Model: CD-R   PX-W8220T  Rev: 1.01
  Type:   CD-ROM ANSI SCSI revision: 02
(scsi0:A:6): 10.000MB/s transfers (10.000MHz, offset 8)

I really hope you can help me.

Many thanks in advance,

-- 
Markus Grunwald

Registered Linux User Nr 101577
http://counter.li.org


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



cant start xsession with xdm :(

2002-09-19 Thread Markus Grunwald

Hello,

I have a strange problem with xdm:
When I login via xdm, the xsession does not start. But I get an error
message in /var/log/xdm: Xsession: unable to create X session log/error
file

I changed the file /etc/X11/Xsession, which gives the error message to
get some debug output:

[...]
# attempt to create an error file; abort if we cannot
echo $ERRFILE
if touch $ERRFILE 2> /dev/null && [ -w $ERRFILE ]; then
  echo "(1) touching"
  chmod 600 "$ERRFILE"
elif ERRFILE=$(tempfile 2> /dev/null); then
  echo "(2) elif"
  if ! ln -sf "$ERRFILE" "${TMPDIR:=/tmp}/xsession-$USER"; then
echo "(3) message"
message "Xsession: unable to symlink \"$TMPDIR/xsession-$USER\" to"
\ "\"$ERRFILE\"."
  fi
else
  echo "(4) errormsg"
  errormsg "Xsession: unable to create X session log/error file. 
Aborting." fi
[...]

$ERRFILE is "/home/markus/.xsession-errors".
The "touch" line fails. I tried to touch /home/markus/.xsession-error
myself and got no error (neither in $?). I tried [ -w
/home/markus/.xsession-error ] && echo "true" : it passed this test as
well. I deleted ~markus/.xsession-error, tried to login again and failed
again: The file was not touched...

I have no idea why. I edited the script to ignore the error (commented
out an "exit 1" in the errormsg func), then I get the error

/usr/X11R6/lib/X11/xdm/Xsession: line 82: : Datei oder Verzeichnis nicht
gefunden

(file or directory not found)

with the line:

exec >  2>&1

I don't have any clue what this should do and I am quite helpless with
all of this :(

BTW: Starting X with startx from the console works fine...

Can someone help me, please ? TIA !
-- 
Markus Grunwald

Registered Linux User Nr 101577  http://www.grunwald.2xs.de
http://counter.li.org(hier pgp/gpg public key)



msg02552/pgp0.pgp
Description: PGP signature


Re: setting default compiler version

2005-05-12 Thread Markus . Grunwald
Hello,

> > >I wish g++ was handled as an alternative too.
> > 
> > That does seem a good idea. Is there any reason that nobody's filed it 

> > as a wishlist bug?
> 
> I wanted to give you a chance. :p

Not much hope:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=115353

cu

Markus Grunwald
Softwareentwicklung

PRÜFTECHNIK Condition Monitoring GmbH
Oskar-Messter-Straße 19-21
85737 Ismaning
www.pruftechnik.com
Tel: +49 (0)89 99616177
Fax: +49 (0)89 99616200



Bash script problem

2005-05-17 Thread Markus . Grunwald
Hello,

I have a problem with a bash script. The script (example) is very simple:

script.sh---
#!/bin/bash

echo hello
ssh PT-AGCMLX1 "while true; do date; sleep 10s; done" 


When I start script.sh, look up its pid via ps and kill it, the ssh keeps 
running:

 9311 pts/4S+ 0:00 /bin/bash ./script.sh
 9312 pts/4S+ 0:00 ssh PT-AGCMLX1 while true; do date; sleep 10s; 
done

> kill 9311

 9312 pts/4S  0:00 ssh PT-AGCMLX1 while true; do date; sleep 10s; 
done


How can I change my script so that it kills all its child processes, if it 
is killed itself ? I tried to use the "trap" function of bash, but it 
never used the correct pid...

Many thanks for your help,

Markus Grunwald
Softwareentwicklung

PRÜFTECHNIK Condition Monitoring GmbH
Oskar-Messter-Straße 19-21
85737 Ismaning
www.pruftechnik.com
Tel: +49 (0)89 99616177
Fax: +49 (0)89 99616200



Re: Bash script problem

2005-05-17 Thread Markus . Grunwald
Hello,

 
> > I have a problem with a bash script. The script (example) is very 
simple:
> > 
> > #!/bin/bash
> > 
> > echo hello
> > ssh PT-AGCMLX1 "while true; do date; sleep 10s; done" 
> [..] 
> > How can I change my script so that it kills all its child processes, 
if it 
> > is killed itself ? I tried to use the "trap" function of bash, but it 
> > never used the correct pid...
> 
> Have you tried to use "exec ssh PT-..." instead? 

No, I didn't know that. It's interesting, but unfortunately I can't use 
that. I need to be able to kill the script via "killall script.sh" and 
after the exec, script.sh isn't there anymore. I could use 'exec -a 
script.sh', but the killall command won't work either...

But thanks for the 'exec' tip, I learned something new :)

Markus Grunwald
Softwareentwicklung

PRÜFTECHNIK Condition Monitoring GmbH
Oskar-Messter-Straße 19-21
85737 Ismaning
www.pruftechnik.com
Tel: +49 (0)89 99616177
Fax: +49 (0)89 99616200




"foreign" fonts for X11 ?

2005-05-20 Thread Markus . Grunwald
Hello,

We have one SuSE (8.2 ?) machine here, where I can see all kinds of 
"foreign" fonts in X11 (e.g. chinese, japanese, greek and so on). I didn't 
manage to teach this to the new debian machines that I set up. We need 
this urgently, because our software is very international. Until now, we 
can test this only on this one SuSE machine, which I wantet to turn into a 
debian machine soon...

Could you help me find out why my debian machines cant display "foreign" 
fonts ?

Many thanks,

Markus Grunwald
Softwareentwicklung

PRÜFTECHNIK Condition Monitoring GmbH
Oskar-Messter-Straße 19-21
85737 Ismaning
www.pruftechnik.com
Tel: +49 (0)89 99616177
Fax: +49 (0)89 99616200



cvs pserver drives me crazy :(

2005-05-20 Thread Markus . Grunwald
Hello,

Can someone please explain to me, why cvs-pserver isn't working on my 
debian testing box ?
I configured cvs with "dpkg-reconfigure cvs" to use /srv/cvs for the 
repository and to use cvspserver.

This happens when I try to login:

[EMAIL PROTECTED] >cvs  -d :pserver:[EMAIL PROTECTED]:/srv/cvs login
Logging in to :pserver:[EMAIL PROTECTED]:2401/srv/cvs
CVS password: 
/srv/cvs: no such repository

/var/log/syslog says:

May 20 16:06:28 PT-AGCMLX1 cvs-pserver[18724]: connect from 172.17.5.44 
(172.17.5.44)
May 20 16:06:28 PT-AGCMLX1 cvs: login refused for /srv/cvs

I inserted strace in the cvspserver- line of inetd.conf. According to its 
output, /etc/passwd is read, but neither /etc/shadow nor 
/srv/cvs/CVSROOT/passwd

I have no idea whats going wrong here...

cu

Markus Grunwald
Softwareentwicklung

PRÜFTECHNIK Condition Monitoring GmbH
Oskar-Messter-Straße 19-21
85737 Ismaning
www.pruftechnik.com
Tel: +49 (0)89 99616177
Fax: +49 (0)89 99616200



What happened to non-us.debian.org/debian-non-US/dists/testing

2005-06-07 Thread Markus . Grunwald
Hello,

Yesterday, my apt-get update failed:

Failed to fetch 
http://non-us.debian.org/debian-non-US/dists/testing/non-US/main/binary-i386/Packages.gz
 
 404 Not Found

What happened ? First victim of sarge getting stable ?

cu

Markus Grunwald
Softwareentwicklung

PRÜFTECHNIK Condition Monitoring GmbH
Oskar-Messter-Straße 19-21
85737 Ismaning
www.pruftechnik.com
Tel: +49 (0)89 99616177
Fax: +49 (0)89 99616200



Re: what is using my swap

2005-06-09 Thread Markus . Grunwald
Hello,

> I have a program that suspect is cause my swap to grow to almost a 
> gig, but it would be nice to verify without restarting a very 
> mission critical program.

Start "top" and press "M". Top sorts the processes by memory consumption 
now. If you have 2GB RAM + 2GB Swap, a program that eats 1GB, it should be 
the topmost entry...

cu

Markus Grunwald
Softwareentwicklung

PRÜFTECHNIK Condition Monitoring GmbH
Oskar-Messter-Straße 19-21
85737 Ismaning
www.pruftechnik.com
Tel: +49 (0)89 99616177
Fax: +49 (0)89 99616200



S: Sound editor

2001-11-20 Thread Markus Grunwald
Hello !

Since there now is a "multimedia"-Debian distri, I start getting hope again: is 
there SOME reasonable sound editor for Linux ? I am searching since my Linux 
start (2.0.??) for something as powerful as Cool Edit but everything I get is 
MixViews which is just horrible to use :(

Can you point me to something ?
Thanks !
-- 
Markus Grunwald

Registered Linux User Nr 101577  PGP Key:
http://counter.li.orghttp://www.grunwald.2xs.de



Tuxracer is slideshow on Matrox G550

2001-12-01 Thread Markus Grunwald
Hi !

I tried tuxracer on my Athlon 1.4GHz/ Matrox G550 with XFree4. I use Debian 
(testing)

ii  xserver-xfree8 4.1.0-7the XFree86 X server

but exchanged the /usr/X11R6/lib/modules/drivers/mga_drv.o by hand with the one 
that is on the matrox driver cdrom. 2D works great.
Now for 3D: glxinfo shows

[EMAIL PROTECTED]: > glxinfo
name of display: :0.0
display: :0  screen: 0
direct rendering: Yes
server glx vendor string: Brian Paul
server glx version string: 1.1 Mesa 3.1
server glx extensions:
GLX_MESA_pixmap_colormap, GLX_EXT_visual_info, GLX_MESA_release_buffers, 
GLX_MESA_copy_sub_buffer, GLX_SGI_video_sync, GLX_ARB_get_proc_address
client glx vendor string: Brian Paul
client glx version string: 1.1 Mesa 3.1
client glx extensions:
GLX_MESA_pixmap_colormap, GLX_EXT_visual_info, GLX_MESA_release_buffers, 
GLX_MESA_copy_sub_buffer, GLX_SGI_video_sync, GLX_ARB_get_proc_address
GLX extensions:
GLX_MESA_pixmap_colormap, GLX_EXT_visual_info, GLX_MESA_release_buffers, 
GLX_MESA_copy_sub_buffer, GLX_SGI_video_sync, GLX_ARB_get_proc_address
OpenGL vendor string: Brian Paul
OpenGL renderer string: Mesa X11
OpenGL version string: 1.2 Mesa 3.1
OpenGL extensions:
GL_EXT_blend_color, GL_EXT_blend_minmax, GL_EXT_blend_logic_op, 
GL_EXT_blend_subtract, GL_EXT_paletted_texture, GL_EXT_point_parameters, 
GL_EXT_polygon_offset, GL_EXT_vertex_array, GL_EXT_texture_object, 
GL_EXT_texture3D, GL_MESA_window_pos, GL_MESA_resize_buffers, 
GL_EXT_shared_texture_palette, GL_EXT_rescale_normal, GL_EXT_abgr, 
GL_SGIS_texture_edge_clamp, GL_EXT_stencil_wrap, 
GL_INGR_blend_func_separate, GL_ARB_multitexture, GL_NV_texgen_reflection, 
GL_PGI_misc_hints, GL_EXT_compiled_vertex_array, GL_EXT_clip_volume_hint
glu version: 1.2 Mesa 3.1
glu extensions:
GL_EXT_abgr

   visual  x  bf lv rg d st colorbuffer ax dp st accumbuffer  ms  cav
 id dep cl sp sz l  ci b ro  r  g  b  a bf th cl  r  g  b  a ns b eat
--
0x23 24 tc  0 24  0 r  y  .  8  8  8  0  0 16  8 16 16 16  0  0 0 None
0x24 24 tc  0 24  0 r  y  .  8  8  8  0  0 16  8 16 16 16  0  0 0 None

(which tells me allmost nothing, sorry ;)


When I start tuxracer, it is only a slideshow and unplayable...
What do I have to change ?
Will I have to compile my own X11 with the drivers from the matrox homepage ?
Please help me, I would love to play games like unreal or quake on my linux 
box...

TIA!
-- 
Markus Grunwald

Registered Linux User Nr 101577  
http://counter.li.orghttp://www.grunwald.2xs.de



Any GOOD bttv grabbers ?

2001-12-08 Thread Markus Grunwald
Hi !

Does anyone know any _good_ bttv grabbers ? Up to now I know only bad ones:
- bttvgrab which crashes after start with a segfault lots of times.
  After trying several times, it works but can write only single pictures
  or one big file in a propriatary file format (i.e. no mjpeg avi)
- xawtv or streamer: too many lost frames which don't appear in bttvgrab
  and it has a FIXED aspect ratio so that I cant grab in 352x288 which is
  the vcd standard
- MainActor - forget it. Costs $99, cant handle files >2GB and has as well
  a fixed aspect ratio for grabbing. In fact, it knows only 4 resolutions :(
  Not what I would expect for 99$...
- Broadcast 2000: Didn't work either, cant remember why anymore...

Isn't there any usable tool ? Sorry, I'm a bit angry - hope it doesn't come 
through too much ;)

-- 
Markus Grunwald

Registered Linux User Nr 101577  
http://counter.li.orghttp://www.grunwald.2xs.de



Re: Any GOOD bttv grabbers ?

2001-12-10 Thread Markus Grunwald

> > > Does anyone know any _good_ bttv grabbers ? Up to now I know only
> > > bad ones:

> Maybe what he (the original poster)
That would be me :)
> really needs is a good $$$ card.
No. My wintv delivers video in vcd resolution as I want it to do. There only 
seems to be no single capture program that is really working good :(
 
-- 
Markus Grunwald

Registered Linux User Nr 101577  
http://counter.li.orghttp://www.grunwald.2xs.de



Re: Any GOOD bttv grabbers ?

2001-12-10 Thread Markus Grunwald
Hi !
> > Does anyone know any _good_ bttv grabbers ? Up to now I know only bad ones:
> 
> On woody and unstable: 
> 
> apt-get install vcr
Thank you, but this one is not good either: it has a fixed aspect ratio, even 
worse: it has only fixed resolutions, without the VCD standard 352x288 :(

Why do they do such nonsense ???

-- 
Markus Grunwald

Registered Linux User Nr 101577  
http://counter.li.orghttp://www.grunwald.2xs.de



Found GOOD bttv grabber !

2001-12-12 Thread Markus Grunwald
Hi!

Some time ago I wrote:
> - xawtv or streamer: too many lost frames which don't appear in bttvgrab
>   and it has a FIXED aspect ratio so that I cant grab in 352x288 which is
>   the vcd standard
thats not true. streamer CAN grab with any aspect ratio (while xawtv can't...).
Sorry for that !


-- 
Markus Grunwald

Registered Linux User Nr 101577  
http://counter.li.orghttp://www.grunwald.2xs.de



Re: program balks at 3.9GB file

2001-12-13 Thread Markus Grunwald
Hi !

> > > lav2wav +p /xb/base/input-20011207-1948.avi | mp2enc -o audio.mp2
> > >INFO: Norm set to PAL
> > > **ERROR: Error opening /xb/base/input-20011207-1948.avi: File too
> > > large **ERROR: EOF in WAV header
> > > **ERROR: failure reading WAV file
> 
> Let me see. I tried something like (actual bash session is now fuzzy):
> 
> mkfifo movie.avi
> dd if=original-4GB-capture.avi of=movie.avi
> ffmpeg [option, options] movie.avi
> 
> [ffmpeg encodes only half]
> 
> What may be of further interest: applying ffmpeg on the raw file 
> (original-4GB-capture.avi) results in an error message (to the effect) 
> that the file can't be found.

Thats a big hint that ffmpeg doesn't support big files. I had the same 
situation here with several tools. One common thing was, that programs which 
cant't handle long files, they can't see them, too.

In my opinion, that is a big pain in the ... :(
EVERY program concerning video should be capable of handling long files. There 
is even a commercial tool ( you have to pay $99 for...) named "Main Actor" 
(V3.65) which can't handle large files :( 
-- 
Markus Grunwald

Registered Linux User Nr 101577  
http://counter.li.orghttp://www.grunwald.2xs.de



Re: Consensus on best tools to convert LPs&tapes to CDs ?.............

2001-12-13 Thread Markus Grunwald
Hi !
 
> What is the collective experience of Debian users regarding the
> conversion of LPs, reel-to-reel tapes and cassette tapes to CDs ?

I recently used gramofile which is very nice: it detects track boundaries and 
can filter ticks and cracks from LP sources.

The author loves his user interface which in my opinion is only a bad excuse. 
But nevertheless, functionality is good.

P.S.: I would love to have cool edit for linux, but no program can approach it. 
Thank goodness, there's wine ;)
-- 
Markus Grunwald

Registered Linux User Nr 101577  
http://counter.li.orghttp://www.grunwald.2xs.de



Re: Printing HOWTOs a problem. Newbie #61

2001-12-16 Thread Markus Grunwald
Hi !

> I print out some of the HOWTOs for reading.
>   
> say ...
> 
> $ zless /usr/share/doc/HOWTO/en-txt/Net-HOWTO.txt.gz | pr -o4 | lpr

Excuse my silly question, but why don't you print the postscript versions of 
the HOWTOs ? 

-- 
Markus Grunwald

Registered Linux User Nr 101577  
http://counter.li.orghttp://www.grunwald.2xs.de



Re: What's a debian kid look like?

2001-12-23 Thread Markus Grunwald
Hi!

26 years, german, student of computer science at university, scuba diver. I run 
linux because of its beauty ;) in contrary to Windows. Debian, because it 
doesn't bother me with bad working tools for dummies.

-- 
Markus Grunwald

Registered Linux User Nr 101577  
http://counter.li.orghttp://www.grunwald.2xs.de



Re: What hppened to vhctime?

2002-02-21 Thread Markus Grunwald
Hi !

On Wed, 13 Feb 2002 13:00:59 +1030
Tom Cook <[EMAIL PROTECTED]> wrote:
> > > discovered a neat little utility called vcstime.

> Hehehe... or set PS1 to the escape codes to move to the top of the
> screen and back, displaying the time on the way...  this was actually
> the recommended method in DOS (if anyone remembers what that stands
for> ;-)

It's the better way for me, too: If I use vcstime, the screen jumps back
to the bottom after I tried to scroll up with shift-pgup. This makes
that tool completely useless for me... 


-- 
Markus Grunwald

Registered Linux User Nr 101577  
http://counter.li.orghttp://www.grunwald.2xs.de



strange "sensors" readings

2002-02-26 Thread Markus Grunwald
Hello !

At last, with Kernel 2.4.17 I got sensors to work.

But the results are a bit strange :

as99127f-i2c-1-2d
Adapter: SMBus Via Pro adapter at e800
Algorithm: Non-I2C SMBus adapter
VCore 1:   +1.77 V  (min =  +1.74 V, max =  +1.93 V)  
VCore 2:   +0.11 V  (min =  +1.74 V, max =  +1.93 V)   ALARM  
+3.3V: +3.28 V  (min =  +3.13 V, max =  +3.45 V)  
+5V:   +4.84 V  (min =  +4.72 V, max =  +5.24 V)  
+12V: +12.01 V  (min = +10.79 V, max = +13.19 V)  
-12V: -12.08 V  (min = -10.73 V, max = -13.19 V)   ALARM  
-5V:   -4.76 V  (min =  -4.74 V, max =  -5.24 V)   ALARM  
fan1:0 RPM  (min = 3000 RPM, div = 2)  ALARM  
temp1:   +41°C  (limit =  +60°C, hysteresis =  +50°C)
temp2: +47.0°C  (limit =  +67°C, hysteresis =  +60°C)(beep)
temp3:+112.2°C  (limit =  +60°C, hysteresis =  +50°C)
vid:  +1.85 V
alarms:   Chassis intrusion detection 
beep_enable:
  Sound alarm enabled

Read my ASUS A7V266 User's Manual back and forth, but could not figure
out what "VCore 2" could mean. I can't imagine the 0.11V to be wrong
since my machine works really fine :)

The -12V are swinging strongly. Here are the values, taken each 5
seconds:

[EMAIL PROTECTED]: > for i in `seq 120`; do sensors | awk '/-12V/ { print $2
}'; sleep 5; done | tee 12V-.log-14.15
-12.08
-13.83
-12.12
-13.83
-12.44
-13.03
-14.23

and so on... I dared to attach a tiny xfig that shows these horrible
values...-5V behave the same way. This does not look good. The positive
Voltages are solid and OK.

The worst is the Fan: Most of the time, there is a "0 RPM", but the fan
is working (i can SEE it ;) ). Sometimes, for a few readings there are
29xx RPM as it should be.

I compared the values to those I can see in the BIOS Dialogs. There was

Motherboard Temp: 41°C
CPU Voltage: 63°C

Fan: 2636 RPM

VCore: 1.77v
+3.3V: 3.28v
+5V:   4.83v
+12V: 11.97v

No other readings are supported in the BIOS.
So only the CPU Voltage differs a lot, but that may be OK. The Fan
reading is OK most of the time, only sometimes 0 - inverse to the
sensors output.

This behaviour makes the sensors tool quite unusable for me...


Is this known for my chipset or do I have some strange mainboard ?
Oh, BTW:
[EMAIL PROTECTED]: > cat /proc/cpuinfo 
processor   : 0
vendor_id   : AuthenticAMD
cpu family  : 6
model   : 4
model name  : AMD Athlon(tm) Processor
stepping    : 4
cpu MHz : 1410.205

-- 
Markus Grunwald

Registered Linux User Nr 101577  
http://counter.li.orghttp://www.grunwald.2xs.de


12V-.fig.bz2
Description: Binary data


Re: mpeg encoder

2002-03-02 Thread Markus Grunwald
Hello !

> > I am looking for a simple, no-frills mpeg encoder that will allow me
to> > make mpegs of a sequence of images.

I can recommend sampeg (search google) IF it doesn't segfault
immediately onyour machine. I had the trouble once and the author sent
me a static binary. Now it's my favourite encoder :)

-- 
Markus Grunwald

Registered Linux User Nr 101577  
http://counter.li.orghttp://www.grunwald.2xs.de



From apt-move to apt-proxy

2002-03-06 Thread Markus Grunwald
Hi !

I have some local mirrors, made with apt-move. Since today, I use
apt-proxy which is better for me.

Now I do have a lot of files on the apt-move mirrors, wich I would like
to reuse for apt-proxy. Is this possible?

-- 
Markus Grunwald

Registered Linux User Nr 101577  
http://counter.li.orghttp://www.grunwald.2xs.de



apt-move .exclude file question

2001-09-14 Thread Markus Grunwald
Hi !

I'd like to bild my own little Debian mirror using apt-move. The way to do this 
is clear, but I have trouble with the .exclude file.
I took several looks at the included example but I dont get how to exclude all 
kde directories.

I tried for example

...
**/kdetoys/eyesapplet*
**/kdebase-crypto/kdm-krb*
**/kdeutils/kab*
**/kdegames/kabalone*
**/kdesdk/kapptemplate*
...

But an apt-move exclude doesn't show any kde entries :(
A testrun with -t shows that really all the kde files would be fetched.
I know I edited the right file, because once i accidentally entered a blank 
line: now nothing would have been getched ;)

I'm using debian testing

Thanks for your help !
-- 
Markus Grunwald

Registered Linux User Nr 101577  PGP Key:
http://counter.li.orghttp://www.grunwald.2xs.de



Wrong Newsgroup ?

2001-09-17 Thread Markus Grunwald
Hi there !

Some Days ago I had a question about the apt-mirror .exclude file. Since there 
wasn't the slightest reaction I wonder whether I am in the wrong Newsgroup ?

Could you direct me to the right one in this case or give some hints to relieve 
(?) helping ?
I attached the old mail...


Thank you !
-- 
Markus Grunwald

Registered Linux User Nr 101577  PGP Key:
http://counter.li.orghttp://www.grunwald.2xs.de
--- Begin Message ---
Hi !

I'd like to bild my own little Debian mirror using apt-move. The way to do this 
is clear, but I have trouble with the .exclude file.
I took several looks at the included example but I dont get how to exclude all 
kde directories.

I tried for example

...
**/kdetoys/eyesapplet*
**/kdebase-crypto/kdm-krb*
**/kdeutils/kab*
**/kdegames/kabalone*
**/kdesdk/kapptemplate*
...

But an apt-move exclude doesn't show any kde entries :(
A testrun with -t shows that really all the kde files would be fetched.
I know I edited the right file, because once i accidentally entered a blank 
line: now nothing would have been getched ;)

I'm using debian testing

Thanks for your help !
-- 
Markus Grunwald

Registered Linux User Nr 101577  PGP Key:
http://counter.li.orghttp://www.grunwald.2xs.de


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


dhelp_parse: can't open /var/lib/dhelp/titles

2001-09-17 Thread Markus Grunwald
Hi !

using apt-get install ... (or dhelp_parse by myself) gives me the error:
dhelp_parse: can't open /var/lib/dhelp/titles

since my last dist-upgrade on friday.
Strace says:

open("/var/lib/dhelp/titles", O_RDWR|O_CREAT|O_EXCL, 0644) = -1 EEXIST
(File exists)
open("/var/lib/dhelp/titles", O_RDWR)   = 7
fcntl(7, F_SETFD, FD_CLOEXEC)   = 0
read(7, "", 512)= 0
close(7)= 0
select(0, NULL, NULL, NULL, {1, 0}) = 0 (Timeout)
open("/var/lib/dhelp/titles", O_RDWR)   = 7
fcntl(7, F_SETFD, FD_CLOEXEC)   = 0
read(7, "", 512)= 0
close(7)= 0
select(0, NULL, NULL, NULL, {1, 0}) = 0 (Timeout)
open("/var/lib/dhelp/titles", O_RDWR)   = 7
fcntl(7, F_SETFD, FD_CLOEXEC)   = 0
read(7, "", 512)= 0
close(7)= 0
select(0, NULL, NULL, NULL, {1, 0}) = 0 (Timeout)
open("/var/lib/dhelp/titles", O_RDWR)   = 7
fcntl(7, F_SETFD, FD_CLOEXEC)   = 0
read(7, "", 512)= 0
close(7)= 0
write(2, "dhelp_parse: can\'t open /var/lib"..., 47dhelp_parse: can't open
/var/lib/dhelp/titles

Version: dhelp 0.3.23.2
Debian testing.

Any hints ? TIA!
-- 
Markus Grunwald

Registered Linux User Nr 101577  PGP Key:
http://counter.li.orghttp://www.grunwald.2xs.de



Re: ssh braindamage (protocols, RSA auth) FIXED

2001-09-18 Thread Markus Grunwald
Hi !

First of all: congrats to your success :)

> meh. keeping this short. I'm an idiot, kinda. :)
> SSH is a complicated mess, that's my excuse.

Thats the point.
I tried to do some things with ssh as well and was desperately searching
for some understandable manual. The manpages may handle everything but as
so often with no or bad examples ( no offense meant - I know writing
manuals isn't easy ).

I did not find any good other literature either. So: can someone recommend
me some good literature for beginners and/or advanced users ?

Thanks !
-- 
Markus Grunwald

Registered Linux User Nr 101577  PGP Key:
http://counter.li.orghttp://www.grunwald.2xs.de



apt-get problem with testing

2001-09-25 Thread Markus Grunwald
Hi !

my youngest dist-upgrade gave me the following error:

Entpacke Ersatz-xlibs ...
dpkg: Fehler beim Bearbeiten von
/var/cache/apt/archives/xlibs_4.1.0-6_i386.deb (--unpack):
 versuche »/usr/X11R6/lib/X11/app-defaults« zu überschreiben, welches auch
in Paket tgif ist

I removed tgif, now everything is fine. In fact better then before,
because I never liked tgif and forgot to remove it ;)

Whom shall I send the bug-report ?

-- 
Markus Grunwald

Registered Linux User Nr 101577  PGP Key:
http://counter.li.orghttp://www.grunwald.2xs.de



no ` (Backtick) witch iso8859-15 (Euro) Fonts ?

2001-09-26 Thread Markus Grunwald
Hi !

I followd the instructions on 
http://channel.debian.de/faq/DebianDE-13.html
to get the Euro symbol working.

Well, that worked well, but now I have some chechian Symbol like

 V
 Z

(accent above the 'z') on the Backtick key :( I looked into xmodmap /
xkeycaps but there was the setting for the backtick all right.
Now I am unable to get the backtick on my keyboard :(

Can someone please help me ?
-- 
Markus Grunwald

Registered Linux User Nr 101577  PGP Key:
http://counter.li.orghttp://www.grunwald.2xs.de



no ` (Backtick) witch iso8859-15 (Euro) Fonts ?

2001-09-26 Thread Markus Grunwald
Hi !

(sorry if you get this mail twice, but I got a strange error sending it.
So i try it again...)

I followd the instructions on 
http://channel.debian.de/faq/DebianDE-13.html
to get the Euro symbol working.

Well, that worked well, but now I have some chechian Symbol like

 V
 Z

(accent above the 'z') on the Backtick key :( I looked into xmodmap /
xkeycaps but there was the setting for the backtick all right.
Now I am unable to get the backtick on my keyboard :(

Can someone please help me ?
-- 
Markus Grunwald

Registered Linux User Nr 101577  PGP Key:
http://counter.li.orghttp://www.grunwald.2xs.de


-- 
Markus Grunwald

Registered Linux User Nr 101577  PGP Key:
http://counter.li.orghttp://www.grunwald.2xs.de



Re:

2002-01-02 Thread Markus Grunwald
Hi !

On Wed, 2 Jan 2002 23:34:39 +0800
"steven" <[EMAIL PROTECTED]> wrote:

> hello debian my noot book driver d no in said my pc how to do.
 
That's exactly the mail I expect from a Microsoft user ;)
SCNR...
-- 
Markus Grunwald

Registered Linux User Nr 101577  
http://counter.li.orghttp://www.grunwald.2xs.de



Re: The right way to power off a computer as non-root

2002-01-02 Thread Markus Grunwald
Hi,

> I use my computer as a workstation and thus I think it would be a good idea
> to be able to switch it of as user without being root.
> [.1).]make it sudo-able
> [.2).]put the executable into a special group
AFAIR, putting shutdown in a group will not work. You'll have to add the SUID 
Bit as well, which is quite never a good idea.

I use the sudo approach and am quite lucky with it.
Therefore i have these lines in /etc/sudoers:

User_Alias  SHUTDOWNERS=markus
# Cmnd alias specification
Cmnd_Alias  SHUTDOWN=/sbin/shutdown -[hkr] now
# User privilege specification
SHUTDOWNERS ALL=SHUTDOWN,NOPASSWD: ALL


-- 
Markus Grunwald

Registered Linux User Nr 101577  
http://counter.li.orghttp://www.grunwald.2xs.de



segfault on one debian, but not on the other ?

2002-01-09 Thread Markus Grunwald
Hi !

I have problems compiling & running a program on one of my debian/testing 
systems.
I have two machines:
1) "Eddie", a not-very-up-to-date woody machine (Athlon) with new libc6
2) "Zaphod", a very old woody P100 system. Last dist-upgrade was in september, 
I think...

The program is "sampeg3" an (IMHO) excellent mpeg encoder. You can find it on 
www.linuxtv.org.

My Problem is: after compiling without any errors (on each machine), the 
program immediately segfaults on Eddie, but runs perfectly on Zaphod. I tried 
to debug, but the segfault occurs even before the first line of main()...

I asked the author who said (I'll try to translate:)
"Quite a lot C++ Comiplers seem to have problems to call the constructor of 
global objects. I had the problem with Solaris, too. But on Linux it worked 
allways."

I tried it with gcc 2.95.4 and 3.0.2, but no difference.

ldd says: 
libvideogfx-0.0.so.1 => /usr/local/lib/libvideogfx-0.0.so.1 (0x4002)
libjpeg.so.62 => /usr/lib/libjpeg.so.62 (0x4006a000)
libXext.so.6 => /usr/X11R6/lib/libXext.so.6 (0x40089000)
libX11.so.6 => /usr/X11R6/lib/libX11.so.6 (0x40098000)
libm.so.6 => /lib/libm.so.6 (0x40173000)
libstdc++-libc6.2-2.so.3 => /usr/lib/libstdc++-libc6.2-2.so.3 
(0x40195000)
libc.so.6 => /lib/libc.so.6 (0x401e)
/lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x4000)

Version information:
src/sampeg:
libc.so.6 (GLIBC_2.1.3) => /lib/libc.so.6
libc.so.6 (GLIBC_2.0) => /lib/libc.so.6
libm.so.6 (GLIBC_2.0) => /lib/libm.so.6
/usr/local/lib/libvideogfx-0.0.so.1:
libc.so.6 (GLIBC_2.1.3) => /lib/libc.so.6
libc.so.6 (GLIBC_2.2) => /lib/libc.so.6
libc.so.6 (GLIBC_2.1) => /lib/libc.so.6
libc.so.6 (GLIBC_2.0) => /lib/libc.so.6
/usr/lib/libjpeg.so.62:
libc.so.6 (GLIBC_2.0) => /lib/libc.so.6
/usr/X11R6/lib/libXext.so.6:
libc.so.6 (GLIBC_2.1.3) => /lib/libc.so.6
libc.so.6 (GLIBC_2.0) => /lib/libc.so.6
/usr/X11R6/lib/libX11.so.6:
libc.so.6 (GLIBC_2.1.3) => /lib/libc.so.6
libc.so.6 (GLIBC_2.2) => /lib/libc.so.6
libc.so.6 (GLIBC_2.1) => /lib/libc.so.6
libc.so.6 (GLIBC_2.1.2) => /lib/libc.so.6
libc.so.6 (GLIBC_2.0) => /lib/libc.so.6
/lib/libm.so.6:
libc.so.6 (GLIBC_2.1.3) => /lib/libc.so.6
libc.so.6 (GLIBC_2.0) => /lib/libc.so.6
/usr/lib/libstdc++-libc6.2-2.so.3:
libm.so.6 (GLIBC_2.0) => /lib/libm.so.6
libc.so.6 (GLIBC_2.1.3) => /lib/libc.so.6
libc.so.6 (GLIBC_2.1) => /lib/libc.so.6
libc.so.6 (GLIBC_2.0) => /lib/libc.so.6
/lib/libc.so.6:
ld-linux.so.2 (GLIBC_2.1.1) => /lib/ld-linux.so.2
ld-linux.so.2 (GLIBC_2.2.3) => /lib/ld-linux.so.2
ld-linux.so.2 (GLIBC_2.1) => /lib/ld-linux.so.2
ld-linux.so.2 (GLIBC_2.2) => /lib/ld-linux.so.2
ld-linux.so.2 (GLIBC_2.0) => /lib/ld-linux.so.2

Can anyone help me, please ? I like that encoder so much and am sad, the newer 
Versions don't run...
-- 
Markus Grunwald

Registered Linux User Nr 101577  
http://counter.li.orghttp://www.grunwald.2xs.de



Multihead on Console ?

2002-01-16 Thread Markus Grunwald
Hi!


With X11, I can use the two screens, that my Matrox G550 supports. But on the 
text-console, both screens show the same.
Can I change this console-behaviour ? How ?

TIA!
-- 
Markus Grunwald

Registered Linux User Nr 101577  
http://counter.li.orghttp://www.grunwald.2xs.de



name resolving doesn't work

2002-01-25 Thread Markus Grunwald
Hi !

I have a big problem with the name resolving in my tiny network:

One of my computers (debian, woody with no update since ages, named
"marvin", ip 192.168.42.99 ) connects via dial up (analog modem) to the
internet. On this computer, everything works fine.

My "domain" is called "galaxy.home" (you get the picture ;) )

My other to linux boxes ("eddie", 192.168.42.103, slightly newer woody
and "zaphod", 192.168.42.102, woody as on marvin) use marvin as a
gateway to the internet:


Eddie: # route
Kernel IP routing table
Destination Gateway Genmask Flags Metric RefUse
Iface localnet*   255.255.255.0   U 0  0
   0 eth0 default Marvin.galaxy.h 0.0.0.0 UG0  0
   0 eth0

Eddie: # cat /etc/resolv.conf
search galaxy.home
domain galaxy.home
nameserver 192.168.42.99


Until yesterday, everything worked fine. But now, on both eddie and
zaphod name resolving doesn't work anymore :(

[EMAIL PROTECTED]: > ping www.fhm.edu
ping: unknown host www.fhm.edu

[EMAIL PROTECTED]: > ping 129.187.244.84
PING 129.187.244.84 (129.187.244.84): 56 data bytes
64 bytes from 129.187.244.84: icmp_seq=0 ttl=251 time=181.3 ms
64 bytes from 129.187.244.84: icmp_seq=1 ttl=251 time=164.4 ms

--- 129.187.244.84 ping statistics ---
2 packets transmitted, 2 packets received, 0% packet loss
round-trip min/avg/max = 164.4/172.8/181.3 ms

I am quite sure I didn't change anything on eddie, rock-solid sure I
didn't change anything on marvin and zaphod.

Now the really annoying thing: I have one WinNT box which uses marvin as
gateway as well. Now guess: there everything works just fine :(

Unfortunately I am far away from beeing a network guru but need the
internet access urgently.

Can you please help me: BIG thanks !
-- 
Markus Grunwald

Registered Linux User Nr 101577  
http://counter.li.orghttp://www.grunwald.2xs.de



Re: name resolving doesn't work

2002-01-29 Thread Markus Grunwald
Hi !

> > I have a big problem with the name resolving in my tiny network:
> Does it work when it is *not* connected to your ISP? 
I don't use dns for my internal network. All of my computers have
/etc/hosts files for name resolving. DNS is only used for the internet.

Next bad thing: I know nearly nothing about dns. Sorry :(

> > Eddie: # route
> > Kernel IP routing table
> > Destination Gateway Genmask Flags Metric Ref   
Use Iface> > localnet*   255.255.255.0   U 0
 00 eth0 > > default Marvin.galaxy.h 0.0.0.0 UG 
  0  00 eth0> 
> Hm. The uppercase hostname is a bit unusual.. Both Eddie and Marvin in
> initcaps!?
"initcaps" means "initial captial letters" ? Thats the way they stand in
/etc/hosts... If that's unusual, i'll change that...
... Did so, no effect. 

> > Eddie: # cat /etc/resolv.conf
> > search galaxy.home
> > domain galaxy.home
> > nameserver 192.168.42.99
 
> Hm. According to "man resolv.conf", specifying both "search" and
> "domain" with the same value is redundant. But it shouldn't cause a
> breakage though... (actually seems to work fine for me!)
> 
> I presume that you have a nameserver of sorts running on marvin?
Me too ;) Well, ps says:
Marvin: # ps ax | grep name
  181 ?S  0:07 /usr/sbin/named
 
 
> > Until yesterday, everything worked fine. But now, on both eddie and
> > zaphod name resolving doesn't work anymore :(
> > 
> > [EMAIL PROTECTED]: > ping www.fhm.edu
> > ping: unknown host www.fhm.edu
> 
> Did this take a long time? I.e. is the response instant or does it
seem> to "time out"?
It took a long time -> timeout I think.

> There may be local caching involved, try a hostname that
> you haven't tried before, e.g. "host somemachine.non-existent-domain"
Never was before. But I'll try...
 
> Also: Was marwin connected to your ISP at the time?
Yes, it was. All experiments were with marvin online. I tried the ping
(quoted below) alternating with name and ip.

> > [EMAIL PROTECTED]: > ping 129.187.244.84
> > PING 129.187.244.84 (129.187.244.84): 56 data bytes
> > 64 bytes from 129.187.244.84: icmp_seq=0 ttl=251 time=181.3 ms

> But does WinNT use marwin for DNS? Double-check (is it
> the "winipcfg" that is used on windows? dunno..)
Never heard "winipcfg"...

> I would expect DNS lookups to fail when marvin is not connected, and
> succeed once marvin's link to the outside world is up.
No. The "ip-ping" was working (= connection is up), but the "name-ping"
didn't.

> I am far away from beeing a network guru
> Neither am I. Please take the above with a suitable amount of salt.

The whole thing is strange:

Everything works fine on wednesday.
Name resolving is broken on thursday.
Nothing changed on at least one of the computers where it doesn't work
=> Error should be on server side
Nothing changed on the server and everything's perfect on a different
client=> Error should be on client side.

That's a behaviour I expect from windows, not from linux.
Still need help, plase!
-- 
Markus Grunwald

Registered Linux User Nr 101577  
http://counter.li.orghttp://www.grunwald.2xs.de



Cant access my nameserver

2002-01-29 Thread Markus Grunwald
Hi !

This is kind of follow-up to an earlier message "name resolving doesn't
work", but now I can provide a bit more info...

I have a big problem with the name resolving in my tiny network:

One of my computers (debian, woody with no update since ages, named
"marvin", ip 192.168.42.99 ) connects via dial up (analog modem) to the
internet. On this computer, everything works fine.
All the following test were made with marvin "on-line"

Until yesterday, everything worked fine. I did not change anything on
marvin. But now, on both of my linux-boxes (eddie and zaphod) name
resolving doesn't work anymore, maybe because I can't access the
nameserver on marvin (?)...

Eddie: # cat /etc/resolv.conf
search galaxy.home
domain galaxy.home
nameserver 192.168.42.99

[EMAIL PROTECTED]: > ping www.fhm.edu
ping: unknown host www.fhm.edu

[EMAIL PROTECTED]: > ping 129.187.244.84
PING 129.187.244.84 (129.187.244.84): 56 data bytes
64 bytes from 129.187.244.84: icmp_seq=0 ttl=251 time=181.3 ms
64 bytes from 129.187.244.84: icmp_seq=1 ttl=251 time=164.4 ms

I can telnet to the nameserver port on marvin from marvin:
Marvin: # telnet localhost 53
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.

This works from everywhere in the net, but it takes a long time until
the Telnet promt comes up from eddie or zaphod.

The named logfile on marvin does not complain about anything but shows:
Jan 29 18:28:44 Marvin named[7989]: USAGE 1012325324 1012323707
CPU=0.1u/0.05s CHILDCPU Jan 29 18:28:44 Marvin named[7989]: NSTATS
1012325324 1012323707 A=12 PTR=14 Jan 29 18:28:44 Marvin named[7989]:
XSTATS 1012325324 1012323707 RR=0 RNXD=0 RFwdR=0 RD Jan 29 18:28:44
Marvin named[8484]: starting (/etc/bind/named.conf).  named 8.2.4-REL-N
Jan 29 18:28:44 Marvin named[8484]: hint zone "" (IN) loaded (serial 0)
Jan 29 18:28:44 Marvin named[8484]: master zone "localhost" (IN) loaded
(serial 1) Jan 29 18:28:44 Marvin named[8484]: master zone
"127.in-addr.arpa" (IN) loaded (serial Jan 29 18:28:44 Marvin
named[8484]: master zone "0.in-addr.arpa" (IN) loaded (serial 1) Jan 29
18:28:44 Marvin named[8484]: master zone "255.in-addr.arpa" (IN) loaded
(serial Jan 29 18:28:44 Marvin named[8484]: listening on [127.0.0.1].53
(lo) Jan 29 18:28:44 Marvin named[8484]: listening on [192.168.42.99].53
(eth0) Jan 29 18:28:44 Marvin named[8484]: listening on
[129.187.31.161].53 (ppp0) Jan 29 18:28:44 Marvin named[8484]:
Forwarding source address is [0.0.0.0].1038 Jan 29 18:28:44 Marvin
named[8485]: Ready to answer queries.

I never set up bind, just used pppconfig on marvin to set "static" dns
and made the resolv.conf file mentioned above on eddie.

The last thing I can provide is a tdpdump during my failed ping on
eddie:

tcpdump: listening on eth0
18:16:59.052479 eddie.galaxy.home.32775 > marvin.galaxy.home.domain: 
5123+ A? w ww.fhm.edu. (29) (DF)
18:17:00.007744 eddie.galaxy.home.32772 > 202.12.27.33.domain:  39127
NS? . (17) (DF)
18:17:00.009962 eddie.galaxy.home.32776 > marvin.galaxy.home.domain: 
23464+ PTR? 33.27.12.202.in-addr.arpa. (43) (DF)
18:17:04.057724 eddie.galaxy.home.32775 > marvin.galaxy.home.domain: 
5123+ A? w ww.fhm.edu. (29) (DF)
18:17:05.017641 eddie.galaxy.home.32776 > marvin.galaxy.home.domain: 
23464+ PTR? 33.27.12.202.in-addr.arpa. (43) (DF)
18:17:08.007752 eddie.galaxy.home.32772 > 198.41.0.4.domain:  39127 NS?
. (17) ( DF)
18:17:09.368497 marvin.galaxy.home.domain > eddie.galaxy.home.32775: 
34128 Serv Fail 0/0/0 (29)
18:17:09.368525 eddie.galaxy.home > marvin.galaxy.home: icmp:
eddie.galaxy.home udp port 32775 unreachable [tos 0xc0] 
18:17:10.028629 eddie.galaxy.home.32776 > marvin.galaxy.home.domain: 
23465+ PTR? 4.0.41.198.in-addr.arpa. (41) (DF)
18:17:15.037642 eddie.galaxy.home.32776 > marvin.galaxy.home.domain: 
23465+ PTR? 4.0.41.198.in-addr.arpa. (41) (DF)
18:17:16.007949 eddie.galaxy.home.32772 > 192.36.148.17.domain:  39127
NS? . (17) (DF)
18:17:19.369187 marvin.galaxy.home.domain > eddie.galaxy.home.32775: 
34129 Serv Fail 0/0/0 (41)
18:17:19.369214 eddie.galaxy.home > marvin.galaxy.home: icmp:
eddie.galaxy.home udp port 32775 unreachable [tos 0xc0] 
~

I have a little firewall on marvin but get no log entries during the
ping.

Now you know all I know... Can you please help me ?

-- 
Markus Grunwald

Registered Linux User Nr 101577  
http://counter.li.orghttp://www.grunwald.2xs.de



xdg-open drives me crazy

2018-07-26 Thread Markus Grunwald
Hello,

A few programs that I use, in turn use xdg-open. With web-pages, it gets
it completely wrong, no matter what I do:

% xdg-settings get default-web-browser
chromium.desktop
% echo $BROWSER
chromium


 % grep -i bin /usr/share/xfce4/helpers/chromium.desktop
/usr/share/applications/chromium.desktop
/usr/share/xfce4/helpers/chromium.desktop:X-XFCE-Binaries=chromium;chromium-browser;
/usr/share/applications/chromium.desktop:Exec=/usr/bin/chromium %U


But what does that damn thing open? Firefox...

What can I do ...?

-- 
Markus Grunwald
https://www.the-grue.de/~markus/markus_grunwald.gpg



Re: xdg-open drives me crazy

2018-07-26 Thread Markus Grunwald
Hello,

> Look at update-alternatives


Thanks for the hint, but the alternatives are configured correctly:

# ll /usr/bin/x-www-browser
lrwxrwxrwx 1 root root 31 Jul 22  2009 /usr/bin/x-www-browser ->
/etc/alternatives/x-www-browser

# ll /etc/alternatives/x-www-browser
lrwxrwxrwx 1 root root 17 Mär 28 21:21 /etc/alternatives/x-www-browser
-> /usr/bin/chromium
# ll /usr/bin/chromium
-rwxr-xr-x 1 root root 3754 Jun 19 14:13 /usr/bin/chromium


-- 
Markus Grunwald
https://www.the-grue.de/~markus/markus_grunwald.gpg



Re: xdg-open drives me crazy

2018-07-26 Thread Markus Grunwald
Hello,

> It looks in your output like you are using Xfce - what is set in
> "Preferred Applications" under Web Browser?

Xfce is only installed on the computer. I'm using i3.

-- 
Markus Grunwald
https://www.the-grue.de/~markus/markus_grunwald.gpg



Re: xdg-open drives me crazy

2018-07-27 Thread Markus Grunwald
Hello Curt,

> xdg-mime default chromium.desktop text/html
> xdg-mime default chromium.desktop x-scheme-handler/http
> xdg-mime default chromium.desktop x-scheme-handler/https
> xdg-mime default chromium.desktop x-scheme-handler/about

That did the trick! Thank you very much :)

cu
-- 
Markus Grunwald
https://www.the-grue.de/~markus/markus_grunwald.gpg



What's missing for wake on wlan?

2018-07-30 Thread Markus Grunwald
Hello,

While wake on lan works well on my T570 with debian buster, I'm not able
get wake on WLAN working...

% sudo iw phy0 wowlan show
WoWLAN is enabled:
 * wake up on disconnect
 * wake up on magic packet

% /sbin/ifconfig wlp4s0 | grep ether
ether e4:70:b8:fb:25:89  txqueuelen 1000  (Ethernet)


So I send the machine to suspend-to-ram and try to wake it up with:

wakeonlan e4:70:b8:fb:25:89

But nothing happens...

I'm using Wicd 1.7.4

Any ideas?
-- 
Markus Grunwald
https://www.the-grue.de/~markus/markus_grunwald.gpg



Dovecot and zlib: Mails arrive compressed

2018-09-03 Thread Markus Grunwald
Hello,

to save some precious space on my server, I wanted to enable zlib
compression in dovecot. I followed these instructions:

https://wiki2.dovecot.org/Plugins/Zlib

The relevant parts of my dovecot.conf

protocol imap {
 # Support for dynamically loadable plugins. mail_plugins is a space
separated
  # list of plugins to load.
  mail_plugins = $mail_plugins imap_zlib
...
}

plugin {
  # Used by both the Sieve plugin and the ManageSieve protocol
  sieve = ~/.dovecot.sieve
  sieve_dir = ~/sieve
  zlib_save_level = 6 # 1...9
  zlib_save = gz # gz or bz2
}

protocol lda {
  # Support for dynamically loadable plugins. mail_plugins is a space
separated
  # list of plugins to load.
  mail_plugins = $mail_plugins sieve zlib
  mail_plugin_dir = /usr/lib/dovecot/modules
  ...
}

doveconf -n showed no error, I restarted dovecot.
Now when I receive a new mail, it is compressed - but it stays
compressed :( Meaning: It arrives in Thunderbird, but it's not readable.
If I look at the mail sources in Thunderbird, it looks like zlib
compressed text...

What have I missed?

-- 
Markus Grunwald
https://www.the-grue.de/~markus/markus_grunwald.gpg



Re: Dovecot and zlib: Mails arrive compressed

2018-09-04 Thread Markus Grunwald
Hello,

> Stupid question: How do you acces your emails?
> 1. Using dovecot imap
> 2. reading mbox(maildir?) files by thunderbird?

Not a stupid question at all: via dovecot imap


-- 
Markus Grunwald
https://www.the-grue.de/~markus/markus_grunwald.gpg



Why does sound encoded with mencoder crackle in debian stretch but not in buster?

2018-10-19 Thread Markus Grunwald
I'm transcoding some TV Series with mencoder. I wrote a script where the
core is:

mencoder 1.ts -o 1.avi -passlogfile /tmp/tmp.VQ6WZm1tSo/pass.log
-demuxer lavf -nosub -vf softskip,harddup -aspect 16:9 -aid 0 -oac lavc
-lavcopts acodec=ac3:abitrate=128 -ovc x264 -x264encopts
pass=1:bitrate=800:nointerlaced:force_cfr:frameref=3:mixed_refs:bframes=4:b_adapt=2:b_pyramid=normal:weight_b:weightp=1:direct_pred=auto:aq_mode=1:me=umh:me_range=16:subq=7:nombtree:psy_rd=0.8,0.2:chroma_me:trellis=1:cabac:deblock:8x8dct:partitions=p8x8,b8x8,i8x8,i4x4:nofast_pskip:nodct_decimate:threads=auto:keyint=250:keyint_min=25

This is probably the only interesting part for this post:

-oac lavc -lavcopts acodec=ac3:abitrate=128

I wrote that script on my laptop, a debian buster machine. Everything is
fine here. But when I let the script run on the machine where all the
recordings are stored (a debian stretch machine), the sound is
disturbed. Some kind of ~6Hz crackle. Video is ok.

IMHO it has to do with some different version of a binary or library.
That's why I tried it with different audio encoder:

-oac mp3lame -lameopts preset=medium

Still the same.

The versions for mencoder differ a tiny bit on both machines:

ii  mencoder   2:1.3.0-6amd64MPlayer's Movie Encoder
ii  mencoder   2:1.3.0-8+b4 amd64MPlayer's Movie Encoder

But the differences seem quite minor:

https://metadata.ftp-master.debian.org/changelogs//main/m/mplayer/mplayer_1.3.0-8_changelog

Any ideas how I get that working on the stretch machine?
-- 
Markus Grunwald
https://www.the-grue.de/~markus/markus_grunwald.gpg



Re: Why does sound encoded with mencoder crackle in debian stretch but not in buster?

2018-10-19 Thread Markus Grunwald
Hello Dan,

> Does
> -oac copy
> do the same thing?
No, that works!

Strange.


-- 
Markus Grunwald
https://www.the-grue.de/~markus/markus_grunwald.gpg



Emacs font size off by factor 2

2019-01-05 Thread Markus Grunwald
Hello,

after the dist-upgrade yesterday, emacs font size is twice as large as
it should be.

'(default ((t (:inherit nil :stipple nil :background "#3f3f3f"
:foreground "#dcdccc" :inverse-video nil :box nil :strike-through nil
:overline nil :underline nil :slant normal :weight normal :height 128
:width normal :foundry "outline" :family "DejaVu Sans Mono"

With this setting, I got a 12pt sized default font until yesterday.
After the update, I have to use :height 64 to get the same size...

As far as I can see, no dpi settings have been changed.

Can you tell me what happened there?
-- 
Markus Grunwald
https://www.the-grue.de/~markus/markus_grunwald.gpg



Gnucash broken after Update

2019-12-16 Thread Markus Grunwald
Hi,

a few days ago, I ran an apt update of my debian/desting machine and got
a new gnucash version. Apt DID tell me that there was something to do to
keep gnucash working. I had no time to do that, then, but I was used to
getting the instructions per e-mail. But at the time my e-mail setup was
broken and I didn't notice. Bummer.

Now I need to use gnucash and online banking is completely broken. I
searched everywhere, found the hint in
/usr/share/doc/aqbanking-tools/README.keyfile-update, but that didn't
help...

I /think/ the message had something to do with moved configuration files
for gnucash, but am not sure.

Do you have any hint for me? I urgendly need gnucash for my homebanking...

TIA,
-- 
Markus Grunwald
https://www.the-grue.de/~markus/markus_grunwald.gpg



signature.asc
Description: OpenPGP digital signature


Giveaway-Laptop: sending system mails

2019-12-31 Thread Markus Grunwald
Dear List Participants,

An elder friend of mine uses his 10 year old Sony Vayo with Windows 7
mainly for browsing the net, homebanking, E-Mails. Due to several
reasons, I want to give him a Laptop with Debian Linux that I will support.

Several things should work to keep my active involvement low. One of the
basics is: I want to get mails whenever "something" happens. I think
that msmtp is the right tool for me, but correct me if I'm wrong, please.

But, there is a problem: I have to put the plain mail password in
/etc/msmtprc, because the normal user won't be there to unlock a gpg
file or give msmtp the password in any other way. That means, I want
/etc/msmtprc to be only readable by root (440). But then, users other
than root (nobody maybe?) won't be able to send mails...

I wonder if that could be solved in a better way? I don't want to miss
anything from unattended-upgrades or logcheck or apt-listchanges...

I would love to get your thoughts on that.
-- 
Markus Grunwald
https://www.the-grue.de/~markus/markus_grunwald.gpg



signature.asc
Description: OpenPGP digital signature


Re: No sound with Pulseaudio

2020-01-05 Thread Markus Grunwald

Hello


[...] I can not get any sound and in



Pavucontrol I can only see a virtual sound output.
Does anyone have an idea to solve this problem?


I had the same experience for (almost) every new or old 
installation
that I made. Fresh install of testing or stable, never mind: each 
time,
Sound didn't work from scratch with Pulseaudio. I deinstalled it, 
and

voila, everything worked fine.

There is only one exception and that's my home theatre/gaming 
PC. I
don't remember the details now, but to get kodi run along with 
steam
nicely, I hat to get Pulseaudio to work. And in /this/ case, the 
PA
tools were a blessing because I could very easily switch between a 
7.2 and a

5.1 setup. That was necessary, because one game crashed with 7.2 🤦

So whenever I do a fresh installation now, I check if Pulseaudio 
works

and if not I immediately uninstall it. It's usually not worth the
hassle.

cu
--
Markus Grunwald
https://www.the-grue.de/~markus/markus_grunwald.gpg


signature.asc
Description: PGP signature


Re: Giveaway-Laptop: sending system mails

2020-01-05 Thread Markus Grunwald
Hi Reco,

> NEWS.Debian.gz have this to say on the issue:


That was the hint I needed :) Thanks a lot! I sometimes read the files
in /usr/share/doc/${PACKAGE}, but not often enough, it seems.

Now I have a working E-Mail setup and the guy who got the computer is
happy with it. He doesn't even know he's using Linux instead of window$
:p

Thanks again,
--
Markus Grunwald
https://www.the-grue.de/~markus/markus_grunwald.gpg


signature.asc
Description: PGP signature


Audacity: display broken

2020-03-03 Thread Markus Grunwald
Hello,

After a while, I wanted to edit some audio files with
audacity. Unfortunately, it is impossible because the display is broken:
The Menus work, but that's about it. The waveform display is never
updated, nor are the various meters.

I have not found any hint that someone besides me is experiencing these
issues :/ So it might be something about my setup. But that shouldn't be
so special: Its a Lenovo T570 with debian testing. I started audacity in
i3 (my usual wm) and xfce4 (just in case) but got the same results.

That's the setup:

ii  audacity   2.3.3-1  amd64fast, cross-platform audio editor
ii  audacity-data  2.3.3-1  all  fast, cross-platform audio editor 
(data)

00:02.0 VGA compatible controller: Intel Corporation HD Graphics 620 (rev 02)

[ 34018.801] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[ 34018.801] (II) Module intel: vendor="X.Org Foundation"
[ 34018.801]compiled for 1.20.4, module version = 2.99.917
[ 34018.801]Module class: X.Org Video Driver
[ 34018.801]ABI class: X.Org Video Driver, version 24.0
[ 34018.801] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
GM45, 4 Series, G45/G43, Q45/Q43, G41, B43
[ 34018.801] (II) intel: Driver for Intel(R) HD Graphics
[ 34018.801] (II) intel: Driver for Intel(R) Iris(TM) Graphics
[ 34018.801] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics
[ 34018.802] (II) intel(0): Using Kernel Mode Setting driver: i915, version 
1.6.0 20190822

Can anyone replicate my problem? Or even better knows how to fix it?

Thanks,


--
Markus Grunwald
https://www.the-grue.de/~markus/markus_grunwald.gpg


signature.asc
Description: PGP signature


How to get newer kdevelop in my etch installation ?

2007-03-05 Thread Markus . Grunwald
Hello,

currently, I have a problem with frozen etch: In mid november, I filed a 
bug report to kdevelop (the bug was about debugging problems) which was 
fixed at the end of january. Thanks to the maintainer for that !

But the bug is fixed in kdevelop 4:3.4.0-1 which won't come into etch 
(Quote from debian-release) :
"As this is a new minor upstream release, we will not unfreeze this 
package."

Great. So I have a bugfix for a problem that really drives us crazy here 
but it won't come into the etch distribution. As I see it, I have these 
possibilities:

1) Don't insist on etch (stable). Just stay with testing and wait until 
testing isn't frozen anymore.
  I won't do this because of several reasons (takes too long, I don't want 
testing any more and so on )
2) Use apt pinning.
  I have no experience with this. Won't that mean that in the long run I 
will draw the whole KDE stuff from testing into stable ?
3) Compile from source.
  Hmmm. No problem. Would (IMHO) mean to install lots of *-dev packages, 
but that's ok...
4) Anything I didn't think of...

Now I'm sure that some people here have similar problems. What would you 
do, what advice can you give ?

Regards,

Markus Grunwald
Softwaredevelopment

PRÜFTECHNIK Condition Monitoring GmbH
Oskar-Messter-Straße 19-21
85737 Ismaning
www.pruftechnik.com
Tel: +49 (0)89 99616177
Fax: +49 (0)89 99616200

PRÜFTECHNIK Condition Monitoring GmbH
Sitz Ismaning / HRB 145655 München 
Geschäftsführer: Johann Lösl, Roland Schühle

Ein Unternehmen der PRÜFTECHNIK-Gruppe



Re: How to get newer kdevelop in my etch installation ?

2007-03-05 Thread Markus . Grunwald
Hello,

> > 2) Use apt pinning.
> >   I have no experience with this. Won't that mean that in the long run 
I 
> > will draw the whole KDE stuff from testing into stable ?
> 
> Actually, apt-pinning is a lot easier than you think. Just google
> "apt-pinning" and the first result should be a HowTo for apt-pinning.

Ok, I'm just starting to read the howto(s). I still wonder what will 
happen on later upgrades, when kdevelop will depend on new kde libraries. 
As I understand it, they will come in, too. Of course, I could just "hold" 
kdevelop after I got it from unstable ...


Regards,

Markus Grunwald
Softwaredevelopment

PRÜFTECHNIK Condition Monitoring GmbH
Oskar-Messter-Straße 19-21
85737 Ismaning
www.pruftechnik.com
Tel: +49 (0)89 99616177
Fax: +49 (0)89 99616200

PRÜFTECHNIK Condition Monitoring GmbH
Sitz Ismaning / HRB 145655 München 
Geschäftsführer: Johann Lösl, Roland Schühle

Ein Unternehmen der PRÜFTECHNIK-Gruppe



Apt Pinning: Way of no return ?

2007-03-06 Thread Markus . Grunwald
Hello,

As you might have read here, I have a little trouble getting kdevelop from 
unstable into testing. Apt pinning seems to be quite an easy solution. I 
read (among others) http://wiki.debian.org/AptPinning, it looks quite 
easy.

But as cautious admin, I still have one question (maybe I didn't exactly 
understand the man page ... ):

What if I don't like kdevelop from unstable and want kdevelop from testing 
again ? How can I undo all the changes that may have been made while 
installing kdevelop from unstable ? Will a simple "aptitude install -t 
testing kdevelop" work ? I suspect I'll have to adjust 
/etc/apt/preferences ...

Many thanks for your patience...

Markus Grunwald
Softwaredevelopment

PRÜFTECHNIK Condition Monitoring GmbH
Oskar-Messter-Straße 19-21
85737 Ismaning
www.pruftechnik.com
Tel: +49 (0)89 99616177
Fax: +49 (0)89 99616200

PRÜFTECHNIK Condition Monitoring GmbH
Sitz Ismaning / HRB 145655 München 
Geschäftsführer: Johann Lösl, Roland Schühle

Ein Unternehmen der PRÜFTECHNIK-Gruppe



Re: Apt Pinning: Way of no return ?

2007-03-07 Thread Markus . Grunwald
> > What if I don't like kdevelop from unstable and want kdevelop from 
testing 
> > again ? How can I undo all the changes that may have been made while 
> > installing kdevelop from unstable ?

> AFAIK, remove kdvelop, change the pin, then reinstall it, or you can
> leave the pin and specify the specific version you want with apt-get.

Doesn't sound bad. Any experiences from people who have already done this 
?

Mit freundlichen Grüßen

Markus Grunwald
Softwareentwicklung

PRÜFTECHNIK Condition Monitoring GmbH
Oskar-Messter-Straße 19-21
85737 Ismaning
www.pruftechnik.com
Tel: +49 (0)89 99616177
Fax: +49 (0)89 99616200

PRÜFTECHNIK Condition Monitoring GmbH
Sitz Ismaning / HRB 145655 München 
Geschäftsführer: Johann Lösl, Roland Schühle

Ein Unternehmen der PRÜFTECHNIK-Gruppe



Samba mountpoint hangs after server crash

2006-12-11 Thread Markus . Grunwald
Hello,

We have some trouble with samba together with a flaky windows NT 4.0 
Server: Quite often the server crashes and can't be reached again until it 
is rebooted. We mount some smb shares from that server and when the server 
crashes, we can't access the shares until root unmounts and remounts these 
shares.

This is a bit annoying, since root is not always available and has better 
things to do then remounting smb shares ;) I know, the best thing would be 
to fix the server, but nobody maintains this old machine...

Does the bug that is mentioned in the manpage "Mounts  sometimes stop 
working. ..." strike here ? I don't think so, because the mountpoint 
doesn't stop just like that, but because the server dies.

Some additional data:
Distribution: Debian testing
Kernel: 2.6.17-2-686

dpkg -l smb\*
ii  smbclient  3.0.23d-1  a 
LanManager-like simple client for Unix
ii  smbfs  3.0.23d-1  mount and umount 
commands for the smbfs (for kernels >= than 2.2.x)

log.smbmount shortly after the server failed:
[2006/12/09 06:26:33, 1] libsmb/cliconnect.c:cli_connect(1369)
  Error connecting to xxx.xxx.xxx.xxx (Keine Route zum Zielrechner)
[2006/12/09 06:26:33, 0] client/smbmount.c:do_connection(155)
  23909: Connection to server failed
[2006/12/09 06:27:03, 1] libsmb/cliconnect.c:cli_connect(1369)
  Error connecting to xxx.xxx.xxx.xxx (Keine Route zum Zielrechner)
[2006/12/09 06:27:03, 0] client/smbmount.c:do_connection(155)
  969: Connection to server failed

Best regards,

Markus Grunwald
Softwareentwicklung

PRÜFTECHNIK Condition Monitoring GmbH
Oskar-Messter-Straße 19-21
85737 Ismaning
www.pruftechnik.com
Tel: +49 (0)89 99616177
Fax: +49 (0)89 99616200



Scilab in etch ?

2006-12-14 Thread Markus . Grunwald
Hello,

Is there a chance that we will get scilab in etch ?
We work quite a lot with it and it would be much nicer to install a .deb 
then to install it from source...

cu

Markus Grunwald
Softwareentwicklung

PRÜFTECHNIK Condition Monitoring GmbH
Oskar-Messter-Straße 19-21
85737 Ismaning
www.pruftechnik.com
Tel: +49 (0)89 99616177
Fax: +49 (0)89 99616200



where is the bash documentation in info format ?

2007-01-18 Thread Markus . Grunwald
Hello,

until a few weeks ago, I was able to view the bash documentation in info 
format. As I wanted to look at it today, I noticed that the info files for 
bash are gone...

I apt-cache searched for bash and info and found nothing that contains the 
info files...

Where has the information gone and how can I get it back ?

TIA,

Markus Grunwald
Softwareentwicklung

PRÜFTECHNIK Condition Monitoring GmbH
Oskar-Messter-Straße 19-21
85737 Ismaning
www.pruftechnik.com
Tel: +49 (0)89 99616177
Fax: +49 (0)89 99616200



Re: where is the bash documentation in info format ?

2007-01-18 Thread Markus . Grunwald
Hello,

> It looks like another case of the Debian/GNU policy conflict.
> http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=357260

Oh dear
As a engineer, all this legal stuff is quite !"%£$" for me :(

'The first thing we do, let's kill all the lawyers'
 (Henry VI, Act IV, Scene II)

Many thanks for your information, Tyler !


Markus Grunwald
Softwaredevelopment

PRÜFTECHNIK Condition Monitoring GmbH
Oskar-Messter-Straße 19-21
85737 Ismaning
www.pruftechnik.com
Tel: +49 (0)89 99616177
Fax: +49 (0)89 99616200



Bug in cups-pdf or in samba ?

2007-01-19 Thread Markus . Grunwald
Hello,

I'm about to write a bug report to cups-pdf, yet I'm not really sure if it 
is the right address. Do you know the following problem?

I use cups-pdf together with samba. cups-pdf works just fine on the linux 
pc, but there is a problem, when the printer is accessed via samba. Since 
the windows users have account names like "markus.grunwald" and the linux 
server uses other names ( "gru" in my case ), I have to map the users with 
the smbusers file. This works perfectly, except when using cups-pdf. 
cups-pdf thinks, his ${USER} is the unmapped "markus.grunwald", so that I 
can't use ${HOME} or ${USER} for the pdf files.

Samba seems to do the right thing:
  pc-cm-grunwald (172.17.5.34) connect to service PDF Drucker initially as 
user gru (uid=510, gid=100) (pid 22585)

Do you have any comments or suggestions before I reportbug cups-pdf ?

Many thanks,

Markus Grunwald
Softwareentwicklung

PRÜFTECHNIK Condition Monitoring GmbH
Oskar-Messter-Straße 19-21
85737 Ismaning
www.pruftechnik.com
Tel: +49 (0)89 99616177
Fax: +49 (0)89 99616200



Can't get to a console from gdm screen

2007-02-15 Thread Markus . Grunwald
Hello,

I have a problem on a debian etch machine: When the gdm screen comes, 
Ctrl-Alt-Fn doesn't take me to any console. I have to log in as user, then 
it works. Is this some "special" kind of security setting ???

I have this problem since a long, long time and could live with it, but 
now one of my colleagues has the same problem and asks for advice...

TIA,

Markus Grunwald
Softwaredevelopment

PRÜFTECHNIK Condition Monitoring GmbH
Oskar-Messter-Straße 19-21
85737 Ismaning
www.pruftechnik.com
Tel: +49 (0)89 99616177
Fax: +49 (0)89 99616200



Re: Can't get to a console from gdm screen

2007-02-16 Thread Markus . Grunwald
Hello,

> According to http://www.debianhelp.org/node/1619:

Thanks, I'll try this on the weekend.

Mit freundlichen Grüßen

Markus Grunwald
Softwareentwicklung

PRÜFTECHNIK Condition Monitoring GmbH
Oskar-Messter-Straße 19-21
85737 Ismaning
www.pruftechnik.com
Tel: +49 (0)89 99616177
Fax: +49 (0)89 99616200



nfs permission problem

2009-08-29 Thread Markus Grunwald
Hello,

there is a strange permission problem with a NFS share on my system.
Somehow, it is not recognized that my user "markus" is in the group
"wir", when I do changes on a NFS mount. If I do the changes local on
the server, everything is fine... Let me go into the details:

That's "me" on the server:

mar...@server:~$ echo $UID
1000
mar...@server:~$ groups
markus adm mail dialout cdrom floppy audio www-data src video plugdev
users fuse wir

mar...@server:~$ grep markus /etc/passwd /etc/group
/etc/passwd:markus:x:1000:1000:Markus Grunwald,,,:/home/markus:/bin/bash
/etc/group:markus:x:1000:
/etc/group:wir:x:1008:markus,bibi

An that's "me" on the nfs client:

mar...@haktar % echo $UID
1000
mar...@haktar % groups
markus dialout cdrom floppy audio dip src video plugdev games netdev
powerdev scanner fuse nvram smbusers wir
mar...@haktar % grep markus /etc/passwd /etc/group
/etc/passwd:markus:x:1000:1000:markus,,,:/home/markus:/bin/zsh
/etc/group:markus:x:1000:
/etc/group:wir:x:1008:markus,bibi

So everything matches.
The nfs share is exported like this on server:

mar...@server:~$ grep media /etc/exports
/srv/share/media192.168.0.0/16(sync,rw,no_root_squash,no_subtree_check)

On the client, it is mounted with the automounter:

mar...@haktar % mount | grep /srv/share/media
server:/srv/share/media on /var/autofs/net/server/srv/share/media type
nfs (rw,nosuid,nodev,hard,intr,sloppy,addr=192.168.178.21)


This is the data I want to change, as seen on the server:

mar...@server$ pwd
/srv/share/media/pictures/Originale


mar...@server$ ls -ld 2009-08-29_1251536114/
drwxrwx--- 2 markus wir 4096 29. Aug 10:58 2009-08-29_1251536114/
mar...@server:$ ls -ldn 2009-08-29_1251536114/
drwxrwx--- 2 1000 1008 4096 29. Aug 10:58 2009-08-29_1251536114/

mar...@server:$ ls -l 2009-08-29_1251536114/dsc08183.jpg
-rw--- 1 markus markus 2349369 29. Aug 10:55
2009-08-29_1251536114/dsc08183.jpg

mar...@server:$ ls -ln 2009-08-29_1251536114/dsc08183.jpg
-rw--- 1 1000 1000 2349369 29. Aug 10:55
2009-08-29_1251536114/dsc08183.jpg


Now I want to change the ownership of the jpg file, on the client:
mar...@haktar % chown markus.wir dsc08183.jpg
chown: changing ownership of `dsc08183.jpg': Operation not permitted

Hmm. On the sever:

mar...@server:$ chown markus.wir dsc08183.jpg
mar...@server:$ echo $?
0
mar...@server:$ ls -l dsc08183.jpg
-rw--- 1 markus wir 2349369 29. Aug 10:55 dsc08183.jpg
mar...@server:$ ls -ln dsc08183.jpg
-rw--- 1 1000 1008 2349369 29. Aug 10:55 dsc08183.jpg


I was working with nfs for years, but I have not the slightest idea what
the problem is here...

Could you please help me?

-- 
Markus Grunwald http://the-grue.de

Registered Linux User Nr 101577
http://counter.li.org

gpg/pgp fingerprint: 7E01F5FE15CEDD0A
(gpg --recv-keys 7E01F5FE15CEDD0A)


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



Re: nfs permission problem

2009-08-30 Thread Markus Grunwald
Hello Frank,
>> I was working with nfs for years, but I have not the slightest idea what
>> the problem is here...
> 
> I know this :)

Yes, NFS sometimes seems to cause stange problems ...

> Just a thought... has the group wir the same gid on the server?

Yes, gid is 1008 on both computers. I think I mentioned it somewhere in
my post.

>  Whats in
> the logs if you get the error? Does it work if you mount without autofs?

Which log? I found no message in /var/log/messages, syslog or daemon.log...
I didn't try to mount without autofs, but I'll catch up on this.

Thanks for your help!
-- 
Markus Grunwald http://the-grue.de

Registered Linux User Nr 101577
http://counter.li.org

gpg/pgp fingerprint: 7E01F5FE15CEDD0A
(gpg --recv-keys 7E01F5FE15CEDD0A)


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



Differences in gnome speed

2009-02-10 Thread Markus Grunwald
Hello,

my wife and me both use the gnome desktop environment of our up to date
lenny system. When my wife starts her session, everything is up and
working in a few seconds. When I log in, the login process takes much
longer (about 20 seconds, more or less) and I have to wait "ages" when I
click on the "foot" menu (or press Alt-F2) for the first time. After the
first time, the menu opens quickly.

The difference between my wife's and my session is that I have customized
much more settings than my wife. Almost all she has done is changed the
background picture and maybe the windowmanager theme and that's it. I have
added some menu items to the foot some time ago, but later I have undone
these changes.

I would like to find out what I have done that my foot menu opens so
slowly. Is there a way to wipe out all my menu customisations without
loosing all the other gnome settings I've changed ?

Thanks,
-- 
Markus Grunwaldhttp://the-grue.de

Registered Linux User Nr 101577
http://counter.li.org




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



libsane-extras: epson perfection 4490 PHOTO doesn't work on amd64

2007-12-26 Thread Markus Grunwald
Hello,

After making sure that the epson 4490 photo is supported by linux (debian 
package libsane-extras, epkowa backend) I bought this fine scanner. Works like 
a charm on ... you know ;)

But on my debian lenny tp61 (Linux haktar 2.6.22.5gru #4 SMP Sun Nov 18 
17:58:05 CET 2007 x86_64 GNU/Linux) with 64 bit linux, I can't get the scanner 
to work. I followed the instructions in 
/usr/share/doc/libsane-extras/README.Debian, added myself to the scanner group 
and tried scanimage -L, but the scanner didn't appear.

lsusb shows the scanner:

[EMAIL PROTECTED]:/usr/lib$ lsusb | grep -i epson
Bus 002 Device 003: ID 04b8:0119 Seiko Epson Corp. Perfection 4490 Photo

lshal shows something about the scanner, too, mainly that the device is located 
at  /dev/bus/usb/002/003

I straced scanimage but didn't find anything special. Maybe I overlook 
something. All I see is that the firmware, located in 
/usr/share/iscan/esfw54.bin isn't touched. Hmm

I tried installing the packages from 
http://www.avasys.jp/english/linux_e/dl_scan.html without success. I tried to 
compile the sources, but the frontend will compile only for IA32.

As you can imagine, google didn't help me, neither. So I am out of ideas and 
have to double boot for the first time since almost 4 years. Have to get used 
to windows again :(

I hope that you can help me

-- 
Markus Grunwald

Registered Linux User Nr 101577  gpg/pgp fingerprint: 7E01F5FE15CEDD0A
http://counter.li.org(gpg --recv-keys 7E01F5FE15CEDD0A)
 icq 314331831


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



Re: libsane-extras: epson perfection 4490 PHOTO doesn't work on amd64

2007-12-26 Thread Markus Grunwald
Hello,

on http://en.opensuse.org/SDB:Configuring_Scanners_from_SUSE_LINUX_9.3 I found 
out, that my 64 bit sane won't work with the binary only libraries from epson. 
They propose to install 32 bit sane...

I have the ia32 libs installed, but how can I install 32 bit debian packages 
with (or without...) aptitude ?

-- 
Markus Grunwald

Registered Linux User Nr 101577  gpg/pgp fingerprint: 7E01F5FE15CEDD0A
http://counter.li.org(gpg --recv-keys 7E01F5FE15CEDD0A)
 icq 314331831


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



Tuning boot time of my server

2017-04-08 Thread Markus Grunwald
Hello,

just for sports, I tried to minimise the boot time of my server, which
is running systemd. I have one mayor blocker:

 % systemd-analyze blame
 10.746s srv-share-backup.mount
 10.258s nfs-kernel-server.service
  3.311s mysql.service
  1.444s apache2.service
  1.344s epgd.service
  1.012s privoxy.service


/srv/share/backup lives on a Western Digital WD RED, and this device
takes ages to spin up. So I'd rather /not/ spin this disk, if it is
not necessary - which it isn't. That's why I've set up an automount
unit for it.
Now I don't understand why it is mounted on booting. /srv/share/backup
is exported via NFS, which might be the reason for the slow
nfs-kernel-server.service. But I have other exports on WD REDs as
well, and they are not mounted while booting.

So why is srv-share-backup.mount started at boot-time? It's not wanted
or directly enabled:

% find /etc/systemd -type l -iname \*.mount
/etc/systemd/system/local-fs.target.requires/-.mount
/etc/systemd/system/local-fs.target.wants/boot.mount
/etc/systemd/system/dev-disk-by\x2duuid-10ad4727\x2d658c\x2d4559\x2d90b3\x2dfd966f8dbf96.device.wants/boot.mount

Can you give me a hint? I've attached the tiny output of
"systemd-analyze plot " for your reference.

--
Markus Grunwald
http://www.the-grue.de/~markus/markus_grunwald.gpg


zem-boot.svg.xz
Description: application/xz


Re: Tuning boot time of my server

2017-04-08 Thread Markus Grunwald
Hello Erwan,

> Debian
> boot time with or without systemd can be neglected, especially for
> servers who boot not more than twice a year.

That's why I wrote:

> > just for sports, I tried to minimise the boot time of my server, which
> > is running systemd. I have one mayor blocker:

--
Markus Grunwald
http://www.the-grue.de/~markus/markus_grunwald.gpg



Nitrokey: OpenPGP card not working

2017-07-16 Thread Markus Grunwald
Hello,

Recently, I bought a Nitrokey Storage: https://www.nitrokey.com

I did so, amongst other reasons, because of its OpenPGP card support,
but I don't manage to get it working:

markus@haktar % gpg --card-status
gpg: error getting version from 'scdaemon': Not supported
gpg: OpenPGP card not available: Not supported

Unfortunately, the troubleshooting on their homepage doesn't help me:
https://www.nitrokey.com/documentation/frequently-asked-questions#openpgp-card-not-available

2 markus@haktar % ps ax | grep keyring
 1491 ?Sl 0:00 /usr/bin/gnome-keyring-daemon --daemonize --login
 1923 ?Sl 0:00 /usr/bin/gnome-keyring-daemon --start --foreground 
--components=secrets

markus@haktar % pkill -f gnome-keyring-daemon

markus@haktar % ps ax | grep keyring
19454 pts/2S+ 0:00 grep --color=auto keyring

2 markus@haktar % gpg --card-status
gpg: error getting version from 'scdaemon': Not supported
gpg: OpenPGP card not available: Not supported

So, that's not enough. I have the scdaemon installed:
markus@haktar % dpkg -l \*scdaemon\*
ii  scdaemon  2.1.18-8  amd64   
  GNU privacy guard - smart card support

But it seems, it is not loaded:

markus@haktar % ps ax | grep [s]cd  # nothing found

lsusb lists it:
markus@haktar % lsusb | grep 4109
Bus 002 Device 009: ID 20a0:4109 Clay Log

markus@haktar % grep 4109 /lib/udev/rules.d/60-scdaemon.rules
ATTR{idVendor}=="20a0", ATTR{idProduct}=="4109", ENV{ID_SMARTCARD_READER}="1", 
ENV{ID_SMARTCARD_READER_DRIVER}="gnupg"

I have no idea what's wrong - please help me.


P.S. : I almost forgot: It's an up to date debian testing.
--
Markus Grunwald
http://www.the-grue.de/~markus/markus_grunwald.gpg


pgp6x3VLr5ptk.pgp
Description: Digitale Signatur von OpenPGP


Re: Nitrokey: OpenPGP card not working

2017-07-17 Thread Markus Grunwald
Hello,

> > I did so, amongst other reasons, because of its OpenPGP card support,
> > but I don't manage to get it working:
>
> I have a Nitrokey Pro and it definitely works in Debian 9. But indeed,
> you need get your scdaemon working. It all depends on it. Gpg-agent
> should load scdaemon automatically.
>
>
> $ systemctl --user status gpg-agent
>
> ● gpg-agent.service - GnuPG cryptographic agent and passphrase cache
>Loaded: loaded (/usr/lib/systemd/user/gpg-agent.service; static; vendor 
> preset: enabled)
>Active: active (running) since Sun 2017-07-16 15:31:38 EEST; 5h 32min ago
>  Docs: man:gpg-agent(1)
>  Main PID: 1630 (gpg-agent)
>CGroup: /user.slice/user-1000.slice/user@1000.service/gpg-agent.service
>├─1630 /usr/bin/gpg-agent --supervised
>└─1632 scdaemon --multi-server
>

Thank you very much for the hint! Unfortunately, my output looks
different, the scdaemon is missing (quel surprise!):

 % systemctl --user status gpg-agent
● gpg-agent.service - GnuPG cryptographic agent and passphrase cache
   Loaded: loaded (/usr/lib/systemd/user/gpg-agent.service; static; vendor pres
   Active: active (running) since Wed 2017-07-12 21:07:38 CEST; 4 days ago
 Docs: man:gpg-agent(1)
 Main PID: 1749 (gpg-agent)
   CGroup: /user.slice/user-1000.slice/user@1000.service/gpg-agent.service
   └─1749 /usr/bin/gpg-agent --supervised

Is there some special configuration to activate it?

cu
--
Markus Grunwald
http://www.the-grue.de/~markus/markus_grunwald.gpg



Re: Nitrokey: OpenPGP card not working

2017-07-17 Thread Markus Grunwald
Hello

> Thank you very much for the hint! Unfortunately, my output looks
> different, the scdaemon is missing (quel surprise!):
>
> Is there some special configuration to activate it?

Ouch. Found it:

markus@haktar % rgrep scd ~/.gnupg
/home/markus/.gnupg/gpg-agent.conf:disable-scdaemon

No idea how that got there...

--
Markus Grunwald
http://www.the-grue.de/~markus/markus_grunwald.gpg


pgpgp0cWMVQeq.pgp
Description: Digitale Signatur von OpenPGP


Thunderbird font broken

2018-01-12 Thread Markus Grunwald
Hello,

Thunderbird seems to handle fontsizes different than all the other
programs I'm using. I had to install the extension "Theme Font & Size
Changer for Thunderbird" (62.0) to fix that broken behaviour, then all
was fine.

Until yesterday. I started Thunderbird and the UI-Fonts were   H U G E
again :( The Icon for the Theme Font & Size Changer is gone. I tried to
reinstall the  extension, no success. I restored ~/.mozilla and
~/.icedove (where .thunderbird links to) from backup, still no success.

Can you help me to get a non-screaming thunderbird again?
-- 
Markus Grunwald
http://www.the-grue.de/~markus/markus_grunwald.gpg



signature.asc
Description: OpenPGP digital signature


How to use Debian for a HTPC/Gaming combination?

2018-03-03 Thread Markus Grunwald
Hello,

Currently, I'm using libreelec as distribution for the HTPC in my home
cinema. It does its job very good, but is inflexible. For example, I
would like to use the same computer as a steam machine or to play other
games using wine or, of course, native linux games which is not possible
witch libreelec.

To do that, I would like to use Debian. I know, use and administer
Debian machines since potato and I think its flexibility is great. In
fact, I only used libreelec because it had a driver for the quite new
nvidia graphics card and Debian didn't - at least not in last summer.

Now I've seen that Debian supports my graphics card and I would like to
start my HTPC/Gaming PC from scratch. What I would like to have:

- Very quick (and maybe beautiful, for the WAF ;) ) start up.
- No surplus services.
- Some minimal window manager
- Boot to Kodi (or Steam) and easy switch to the other.

I know that Linux is not the optimal gaming OS. Never mind. There is a
good bit idealism involved :)

Now, I could get this running, but I never installed a Debian machine
with focus on the first two items. I hope to get your help and advice
especially on the quick and lean start up. Any further Ideas are greatly
appreciated ;)

As I said, some amount of Idealism is involved. So advice like "use
windows" or maybe "use another Linux distribution" will not be very helpful.

Oh, by the way: the hardware is more or less fixed for now, and it is
old (except for the SSD and the Graphics card). So no monster
performance for the games, but it does the HTPC job excellently. But I
will upgrade the machine in the future. Yet, I think the exact hardware
spec is not so important for this topic...

Let's see, how far we get and thanks for your input!

cu
-- 
Markus Grunwald
http://www.the-grue.de/~markus/markus_grunwald.gpg



Wine doesn't start

2018-03-28 Thread Markus Grunwald
Hello,

to play some old games, I wanted to start wine, but it always fails with
errors like that in the attached gna.txt :(

Not even winecfg is starting (I created gna.txt with starting winecfg).

It used to work so well a while ago...


That's what I have installed (debian testing, upgraded today):

 % dpkg -l wine\* | egrep '^ii'
ii  wine 3.0-1  all  Windows API
implementation - standard suite
ii  wine32:i386  3.0-1  i386 Windows API
implementation - 32-bit binary loader
ii  wine64   3.0-1  amd64Windows API
implementation - 64-bit binary loader
ii  winetricks   0.0+20180217-1 all  package manager for
Wine to install software easily



Can you help me with that, please?

-- 
Markus Grunwald
http://www.the-grue.de/~markus/markus_grunwald.gpg
000d:err:module:load_builtin_dll failed to load .so lib for builtin 
L"version.dll": /usr/lib/wine/../i386-linux-gnu/wine/version.dll.so: failed to 
map segment from shared object
000d:err:module:import_dll Loading library version.dll (which is needed by 
L"C:\\windows\\system32\\user32.dll") failed (error c07a).
000d:err:module:import_dll Library user32.dll (which is needed by 
L"C:\\windows\\system32\\ole32.dll") not found
000d:err:module:import_dll Library ole32.dll (which is needed by 
L"C:\\windows\\system32\\windowscodecs.dll") not found
000d:err:module:load_builtin_dll failed to load .so lib for builtin 
L"version.dll": /usr/lib/wine/../i386-linux-gnu/wine/version.dll.so: failed to 
map segment from shared object
000d:err:module:import_dll Loading library version.dll (which is needed by 
L"C:\\windows\\system32\\user32.dll") failed (error c07a).
000d:err:module:import_dll Library user32.dll (which is needed by 
L"C:\\windows\\system32\\ole32.dll") not found
000d:err:module:import_dll Library ole32.dll (which is needed by 
L"C:\\windows\\system32\\oleaut32.dll") not found
000d:err:module:load_builtin_dll failed to load .so lib for builtin 
L"version.dll": /usr/lib/wine/../i386-linux-gnu/wine/version.dll.so: failed to 
map segment from shared object
000d:err:module:import_dll Loading library version.dll (which is needed by 
L"C:\\windows\\system32\\user32.dll") failed (error c07a).
000d:err:module:import_dll Library USER32.dll (which is needed by 
L"C:\\windows\\system32\\oleaut32.dll") not found
000d:err:module:import_dll Library oleaut32.dll (which is needed by 
L"C:\\windows\\system32\\windowscodecs.dll") not found
000d:err:module:load_builtin_dll failed to load .so lib for builtin 
L"version.dll": /usr/lib/wine/../i386-linux-gnu/wine/version.dll.so: failed to 
map segment from shared object
000d:err:module:import_dll Loading library version.dll (which is needed by 
L"C:\\windows\\system32\\user32.dll") failed (error c07a).
000d:err:module:import_dll Library user32.dll (which is needed by 
L"C:\\windows\\system32\\ole32.dll") not found
000d:err:module:import_dll Library ole32.dll (which is needed by 
L"C:\\windows\\system32\\propsys.dll") not found
000d:err:module:load_builtin_dll failed to load .so lib for builtin 
L"version.dll": /usr/lib/wine/../i386-linux-gnu/wine/version.dll.so: failed to 
map segment from shared object
000d:err:module:import_dll Loading library version.dll (which is needed by 
L"C:\\windows\\system32\\user32.dll") failed (error c07a).
000d:err:module:import_dll Library user32.dll (which is needed by 
L"C:\\windows\\system32\\ole32.dll") not found
000d:err:module:import_dll Library ole32.dll (which is needed by 
L"C:\\windows\\system32\\oleaut32.dll") not found
000d:err:module:load_builtin_dll failed to load .so lib for builtin 
L"version.dll": /usr/lib/wine/../i386-linux-gnu/wine/version.dll.so: failed to 
map segment from shared object
000d:err:module:import_dll Loading library version.dll (which is needed by 
L"C:\\windows\\system32\\user32.dll") failed (error c07a).
000d:err:module:import_dll Library USER32.dll (which is needed by 
L"C:\\windows\\system32\\oleaut32.dll") not found
000d:err:module:import_dll Library oleaut32.dll (which is needed by 
L"C:\\windows\\system32\\propsys.dll") not found
000d:err:module:import_dll Library propsys.dll (which is needed by 
L"C:\\windows\\system32\\windowscodecs.dll") not found
000d:err:module:load_builtin_dll failed to load .so lib for builtin 
L"version.dll": /usr/lib/wine/../i386-linux-gnu/wine/version.dll.so: failed to 
map segment from shared object
000d:err:module:import_dll Loading library version.dll (which is needed by 
L"C:\\windows\\system32\\user32.dll") failed (error c07a).
000d:err:module:import_dll Library user32.dll (which is needed by 
L"C:\\windows\\system32\\shlwapi.dll") not

Old gpg password when using gpg-agent

2016-10-01 Thread Markus Grunwald
Hello,

After I have changed the password for my gpg key, there is something
very strange:

When I try to sign my mail, the new password is rejected, while the
old one is still valid. Even after I killed the gpg-agent, rebooted my
machine or sacrificed a cpu to the gods of linux...

When I sign a file from commandline, it works just fine:

 % gpg --sign test.txt

 You need a passphrase to unlock the secret key for
 user: "Markus Grunwald "
 4096-bit RSA key, ID 79D7E890, created 2012-05-31

This is somehow scary, because it means my mail program has some
copy/cache/whatever which seems to be my key, but can be unlocked with
the wrong password...

My mail program is sylpheed-claws:

 % dpkg -l claws-mail | egrep '^ii'
 ii  claws-mail 3.14.0-1+b1  amd64Fast, lightweight and
 user-friendly GTK+2 based email client


I even configured claws to use the key 79D7E890 manually, but still
the old password is valid.



I hope you have a hint what could be wrong...
--
Markus Grunwald

Fragen zur Mail? http://www.the-grue.de/mail_und_co
http://www.the-grue.de/~markus/markus_grunwald.gpg



Re: Recommendation: Backup system

2016-10-03 Thread Markus Grunwald
Hello Teemu,

> > rsync, whilst an awesome piece of software, is not, on its own, a
> > backup system.
>
> Yes. With some scripting I think "rsync" with "--link-dest" is quite
> ideal for incremental backups. Unchanged files are created as hard links
> for the previous backup files. Every backup generation is just a normal
> and complete file system tree.

I haven't followed this thread closely, but:

To everybody who ponders using rsync for backup, I strongly suggest a
closer look at "dirvish". I'm using it to backup servers, laptops,
raspberries. It is not hard to configure, uses rsync with hard links
for "incremental" backups and keeps older versions of the backups.

--
Markus Grunwald

Fragen zur Mail? http://www.the-grue.de/mail_und_co
http://www.the-grue.de/~markus/markus_grunwald.gpg



Installing mariadb fails in post-install script

2016-10-08 Thread Markus Grunwald
DEFAULT '\'''\'' NOT NULL;'
++ /bin/echo -e 'USE mysql;\n' 'SET sql_mode='\'''\'';\n' 'REPLACE INTO user 
SET ' '  host='\''localhost'\'', user='\''debian-sys-maint'\'', 
password=password('\''ovVKCuwwrT9XbSrm'\''), ' '  Select_priv='\''Y'\'', 
Insert_priv='\''Y'\'', Update_priv='\''Y'\'', Delete_priv='\''Y'\'', ' '  
Create_priv='\''Y'\'', Drop_priv='\''Y'\'', Reload_priv='\''Y'\'', 
Shutdown_priv='\''Y'\'', ' '  Process_priv='\''Y'\'',  File_priv='\''Y'\'', 
Grant_priv='\''Y'\'', References_priv='\''Y'\'', ' '  Index_priv='\''Y'\'', 
Alter_priv='\''Y'\'', Super_priv='\''Y'\'', Show_db_priv='\''Y'\'', ' '  
Create_tmp_table_priv='\''Y'\'', Lock_tables_priv='\''Y'\'', 
Execute_priv='\''Y'\'', ' '  Repl_slave_priv='\''Y'\'', 
Repl_client_priv='\''Y'\'', Create_view_priv='\''Y'\'', ' '  
Show_view_priv='\''Y'\'', Create_routine_priv='\''Y'\'', 
Alter_routine_priv='\''Y'\'', ' '  Create_user_priv='\''Y'\'', 
Event_priv='\''Y'\'', Trigger_priv='\''Y'\'',' '  ssl_cipher='\'''\'', 
x509_issuer='\'''\'', x509_subject='\'''\'';'
+ replace_query='USE mysql;
 SET sql_mode='\'''\'';
 REPLACE INTO user SEThost='\''localhost'\'', 
user='\''debian-sys-maint'\'', password=password('\''ovVKCuwwrT9XbSrm'\''),
Select_priv='\''Y'\'', Insert_priv='\''Y'\'', Update_priv='\''Y'\'', 
Delete_priv='\''Y'\'',Create_priv='\''Y'\'', Drop_priv='\''Y'\'', 
Reload_priv='\''Y'\'', Shutdown_priv='\''Y'\'',Process_priv='\''Y'\'',  
File_priv='\''Y'\'', Grant_priv='\''Y'\'', References_priv='\''Y'\'',
Index_priv='\''Y'\'', Alter_priv='\''Y'\'', Super_priv='\''Y'\'', 
Show_db_priv='\''Y'\'',Create_tmp_table_priv='\''Y'\'', 
Lock_tables_priv='\''Y'\'', Execute_priv='\''Y'\'',
Repl_slave_priv='\''Y'\'', Repl_client_priv='\''Y'\'', 
Create_view_priv='\''Y'\'',Show_view_priv='\''Y'\'', 
Create_routine_priv='\''Y'\'', Alter_routine_priv='\''Y'\'',
Create_user_priv='\''Y'\'', Event_priv='\''Y'\'', Trigger_priv='\''Y'\'',   
ssl_cipher='\'''\'', x509_issuer='\'''\'', x509_subject='\'''\'';'
++ /bin/echo -e 'USE mysql;\n' 'CREATE TABLE IF NOT EXISTS plugin (name 
char(64) COLLATE utf8_bin NOT NULL DEFAULT '\'''\'', ' '  dl char(128) COLLATE 
utf8_bin NOT NULL DEFAULT '\'''\'', ' '  PRIMARY KEY (name)) ENGINE=MyISAM 
DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='\''MySQL plugins'\'';'
+ install_plugins='USE mysql;
 CREATE TABLE IF NOT EXISTS plugin (name char(64) COLLATE utf8_bin NOT NULL 
DEFAULT '\'''\'',dl char(128) COLLATE utf8_bin NOT NULL DEFAULT '\'''\'',   
 PRIMARY KEY (name)) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin 
COMMENT='\''MySQL plugins'\'';'
+ echo 'USE mysql;
 ALTER TABLE user CHANGE Password Password char(41) character set latin1 
collate latin1_bin DEFAULT '\'''\'' NOT NULL;'
+ /usr/sbin/mysqld --bootstrap --user=mysql --disable-log-bin 
--skip-grant-tables --default-storage-engine=myisam
+ logger -p daemon.err -t mysqld_safe -i
dpkg: error processing package mariadb-server-10.0 (--configure):


--
Markus Grunwald
http://www.the-grue.de

Fragen zur Mail? http://www.the-grue.de/mail_und_co
http://www.the-grue.de/~markus/markus_grunwald.gpg



Re: Resume From Hibernation Failing With Automatic Reboot - Debian Testing

2016-10-13 Thread Markus Grunwald
Hello Sicelo,

> I am running Debian Testing, and for the last two weeks or so, it is
> impossible to successfully resume the system from hibernation.

Sorry that I can't help you, but I have the same problem. Although, I
can provide an error from the logfile:

Okt 12 19:13:22 haktar kernel: PM: Starting manual resume from disk
Okt 12 19:13:22 haktar kernel: PM: Hibernation image partition 8:2 present
Okt 12 19:13:22 haktar kernel: PM: Looking for hibernation image.
Okt 12 19:13:22 haktar kernel: PM: Image not found (code -22)
Okt 12 19:13:22 haktar kernel: PM: Hibernation image not present or could not 
be loaded.

I'm hibernating to a swapfile and double-checked that the grub
commandline is correct.

> The hardware is a ThinkPad X40 (yes, old), running Debian testing with
> the 4.7.0-1-686 #1 SMP Debian 4.7.5-1 kernel. It has 1GB RAM, and a 60GB
> SSD.

Mine is a Thinkpad T61:
Linux haktar 4.7.0-1-amd64 #1 SMP Debian 4.7.5-1 (2016-09-26) x86_64 GNU/Linux
4GB RAM
-rw--- 1 root root 5,0G Jan 31  2016 /swap.0
GRUB_CMDLINE_LINUX_DEFAULT="init=/bin/systemd resume=/dev/sda2 
resume_offset=4898816"

cu
--
Markus Grunwald

Fragen zur Mail? http://www.the-grue.de/mail_und_co
http://www.the-grue.de/~markus/markus_grunwald.gpg



Middle mouse button stopped panning in gimp

2016-10-22 Thread Markus Grunwald
Hello,

Usually I could press the middle mouse button (of my synaptics
touchpad) to pan an image around in gimp. This stopped working today
:(

What can I do?

% gimp --version
GNU Image Manipulation Program Version 2.8.18

ii  gimp  2.8.18-1  amd64   
  GNU Image Manipulation Program

cu
--
Markus Grunwald



Re: new pc and swap

2016-10-30 Thread Markus Grunwald
Hello Pol,

> Does swap still useful?

It migh be. Don't forget that you need some swap space if you want to
hibernate your System!

(You can configure extra hibernation space. I never managed to get
that right...)

--
Markus Grunwald



Re: new pc and swap

2016-10-30 Thread Markus Grunwald
Servus Pascal,

> > I once read that it was possible to swap to a named file, rather than a
> > swap partition.
> > Is that possible with Jessie?

Creating (and using) a swapfile is easy, no problem in Jessie:

sudo mkswap /swap.0
sudo swapon /swap.0
grep swap /etc/fstab
/swap.0 swapswapdefaults0

> Swap to a file is possible but IIRC hibernate to a file is not possible.

It is. In fact, I do it on my machine. Configuring it is not so easy,
but again: google is your friend.

Unfortunately, a few weeks ago, hibernating stopped working reliably
here. I wrote to this list a few days ago, without any response :(

So, hibernating to a swapfile (or a separate hibernation file) is
possible, but it doesn't seem to be a good idea. I would recommend a
swap partition. On my T61 with 4GB RAM and 128GB SSD, I have a 5GB
swapfile. As gparted works very reliably, misjudging the size of the
partition is only a small problem...

So I consider switching from swapfile to a swappartition.

cu
--
Markus Grunwald



Chromium: all apps gone, reinstalling fails

2017-02-12 Thread Markus Grunwald
Hello,

Just now I noticed, that all the apps/extensions from my chromium are
gone :(
I tried to reinstall them, but everything that I get is a non-helpfull
message that installing the app didn't work...

% dpkg -l chromium\* | egrep '^ii'
ii  chromium  55.0.2883.75-6 amd64web broser
ii  chromium-l10n 55.0.2883.75-6 all  web browser - language packs


Panic?
--
Markus Grunwald
http://www.the-grue.de/~markus/markus_grunwald.gpg



Re: Chromium: all apps gone, reinstalling fails

2017-02-13 Thread Markus Grunwald
Hello Sven,

> Quoting from News.Debian of chromium:
>
> chromium-browser (55.0.2883.75-4) unstable; urgency=medium
>
>   * External extensions are now disabled by default.

> My advise: please install apt-listchanges if you follow Testing/Unstable
> to get notifications of such important changes.

Many thanks, Svan! I'll do this right now.

--
Markus Grunwald
http://www.the-grue.de/~markus/markus_grunwald.gpg



After update to debian jessie: 404 on all drupal sub-pages

2015-09-27 Thread Markus Grunwald
Hello,

when updating from wheezy to jessie, I had some trouble. I followed the release
notes, but since I'm not a php developer, I didn't understand everything. Now,
there's trouble:

The release notes mention something about php 5.6, but as a simple user of
drupal I don't understand the meaning:
https://www.debian.org/releases/stable/amd64/release-notes/ch-informatio...

First, I thought all is fine, as these drupal pages of mine worked ok:

http://www.goldschmiede-grunwald.de/
http://www.maennerchor-kirchseeon.de/

Today came the panic, as I recognized that every drupal-page below / gives me a
404, for example:

http://www.goldschmiede-grunwald.de/impressum
http://www.maennerchor-kirchseeon.de/impressum

Pages that are not drupal-related work ok, too:
http://www.goldschmiede-grunwald.de/gna.php
http://www.maennerchor-kirchseeon.de/download/

Owncloud, another php software works perfectly on the same server.

Static pages from the same server are ok, too:
https://www.the-grue.de/mail_und_co/komischer_anhang.html

I put the log output of my apache to debug level, but everything I see is just
the 404 message:

178.26.130.51 - - [27/Sep/2015:14:51:49 +0200] "GET /impressum HTTP/1.1" 404
518 "http://www.goldschmiede-grunwald.de/"; "Mozilla/5.0 (X11; Linux x86_64)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.107 Safari/537.36"

I already tried for a few hours, but now I've completely run out of ideas.
Could you please help me?
-- 
Markus Grunwald
https://www.the-grue.de

Fragen zur Mail? https://www.the-grue.de/mail_und_co
https://www.the-grue.de/~markus/markus_grunwald.gpg



No systemd after update wheezy -> jessie?

2015-09-27 Thread Markus Grunwald
Hello,

after the update from wheezy to jessie, there is no systemd running on my
machine. I had the impression, that systemd is installed automatically...?

% dpkg -l \*systemd\* | egrep \^ii
ii  libsystemd0:amd64215-17+deb8u2 amd64systemd utility library

% ps ax | grep system
 3441 ?Ss 0:00 /usr/bin/dbus-daemon --system
16669 pts/1S+ 0:00 grep --color=auto system

% ps ax | head -n 2
  PID TTY  STAT   TIME COMMAND
1 ?Ss 0:02 init [2] 

 % dpkg -S /sbin/init
sysvinit-core: /sbin/init

I have to add that  the machine is a vserver where I have influence on the
kernel

% cat /proc/cmdline
root=/dev/xvda1
ip=95.129.55.223:127.0.255.255:95.129.55.193:255.255.255.192:vsrv28769.customer.xenway.de:eth0:off
 

-- 
Markus Grunwald
https://www.the-grue.de

Fragen zur Mail? https://www.the-grue.de/mail_und_co
https://www.the-grue.de/~markus/markus_grunwald.gpg



Re: No system d after update wheezy -> jessie?

2015-09-28 Thread Markus Grunwald
Hello Brian,

> Actually, the decision was the opposite of this. A dist-upgrade will
> install systemd-sysv unless steps are taken to prevent it happening.

I'm the original poster. I did nothing to prevent systemd-sysv being installed
(no pinning, no hold or the like), yet there's no systemd after my update...

Strange, really.
-- 
Markus Grunwald
https://www.the-grue.de

Fragen zur Mail? https://www.the-grue.de/mail_und_co
https://www.the-grue.de/~markus/markus_grunwald.gpg



Re: No system d after update wheezy -> jessie?

2015-09-28 Thread Markus Grunwald
Hello,

> Did you use "aptitude upgrade" when upgrading your system from wheezy to
> jessie?


Yes, I did. I'm using aptitude since it was the preferred method ages ago and
didn't see any reason to change this.

Well, now it has changed ;)

Thanks for your help!
-- 
Markus Grunwald
https://www.the-grue.de

Fragen zur Mail? https://www.the-grue.de/mail_und_co
https://www.the-grue.de/~markus/markus_grunwald.gpg



Re: After update to debian jessie: 404 on all drupal sub-pages

2015-09-28 Thread Markus Grunwald
Hello,

The drupal guys have found out, that apaches mod_rewrite is not working any
more.

This uses rewrite and fails:
http://www.goldschmiede-grunwald.de/impressum

This doesn't use rewrite and works:
http://www.goldschmiede-grunwald.de/?q=impressum

mod_rewrite is enabled. What could be wrong?

-- 
Markus Grunwald
https://www.the-grue.de

Fragen zur Mail? https://www.the-grue.de/mail_und_co
https://www.the-grue.de/~markus/markus_grunwald.gpg



Re: After update to debian jessie: 404 on all drupal sub-pages

2015-09-28 Thread Markus Grunwald

That helped:
https://www.drupal.org/node/2143621

-- 
Markus Grunwald
https://www.the-grue.de

Fragen zur Mail? https://www.the-grue.de/mail_und_co
https://www.the-grue.de/~markus/markus_grunwald.gpg



Loosing my mind with sending an E-Mail...

2017-10-06 Thread Markus Grunwald
Hello,

I'd like to send an E-Mail via commandline:

/bin/echo "Die Speisekammertuer steht offen Ist" | /usr/bin/mailx -s
"Offene Tuer" "mar...@irgendwo.de"

This mail is sent to my server, processed with postfix, dovecot and
sieve and I receive it in my E-Mail program. Fine.

This E-Mail just disappears:

/bin/echo "Die Speisekammertuer steht offen Ist das" | /usr/bin/mailx -s
"Offene Tuer" "mar...@irgendwo.de"

The difference is only the one additional word " das".

The logentry in dovecot for both mails is just the same:

2017-10-06 23:51:27 lda(mar...@irgendwo.de): Info: sieve:
msgid=unspecified: stored mail into mailbox 'INBOX'
2017-10-06 23:51:32 lda(mar...@irgendwo.de): Info: sieve:
msgid=unspecified: stored mail into mailbox 'INBOX'

I'm loosing my mind. Why is that email disappearing?

Both sender and server are debian jessie. mailx is heirloom-mailx, but
with bsd-mailx or even MIME::Lite in perl it's the same.

-- 
Markus Grunwald
http://www.the-grue.de/~markus/markus_grunwald.gpg



Re: Loosing my mind with sending an E-Mail...

2017-10-06 Thread Markus Grunwald
Hello,

> I'm loosing my mind. Why is that email disappearing?


Well, lost my mind. Thunderbird treated it as spam (doh!)
-- 
Markus Grunwald
http://www.the-grue.de/~markus/markus_grunwald.gpg



Migrate an old debian to a new machine

2017-12-23 Thread Markus Grunwald
Hello,

For 10 Years, I've been working with my trusted old T61 (still with
"IBM" logo...). Now I'm waiting for a new T570.

The last migrations of my Debian installations were just dd'ing a full
disk image from machine OLD to NEW and then resize the partitions with
gparted (I hate new installations... something's lost every time.)

These migrations were always done on BIOS machines. I have almost no
experience with UEFI. Now my question is: will this work with the new
machine as well? Or do I have to do something else because of UEFI (or
something else that's different on a modern T570)?

Thanks for your input,
-- 
Markus Grunwald
http://www.the-grue.de/~markus/markus_grunwald.gpg



signature.asc
Description: OpenPGP digital signature


After upgrade jessie -> stretch : php problems

2018-01-04 Thread Markus Grunwald
Hello,

Today I tackled the upgrade from jessie to stretch on my "production"
server (hosts a few websites).

Almost all went smoothly, but a few problems remain. One is this: The
cron job of my owncloud installation reports this:

-
No database drivers (sqlite, mysql, or postgresql) installed.


PHP is configured to populate raw post data. Since PHP 5.6 this will
lead to PHP throwing notices for perfectly valid code.
To fix this issue set always_populate_raw_post_data to
-1 in your php.ini

PHP modules have been installed, but they are still listed as missing?
Please ask your server administrator to restart the web server.
-

I have absolutely no clue about php and surely didn't touch any of these
packages (besides installing them because I need them for owncloud and
drupal).

I have searched /etc for all php.ini files and changed
always_populate_raw_post_data as requested, without success.

php modules for mysql are installed.

Now I have no idea what is still wrong, because I still get the error
messages (as mail from the cronjob which floods my mail :( )

Maybe of interest: that's part of the phpinfo() output:

PHP Version 5.6.30-0+deb8u1
Directive   Local Value Master Value
allow_url_fopen On  On
allow_url_include   Off Off
always_populate_raw_post_data   -1  -1


Installed packages regarding php: as textfile in the attachments to keep
the formatting...

I would be very glad, if you could help me.
Also, please have a look at my other problem with munin (doh)

cu
-- 
Markus Grunwald
http://www.the-grue.de/~markus/markus_grunwald.gpg
markus@the-grue % dpkg -l \*php\* | egrep '^ii'
ii  dh-php5   0.2 all  
debhelper add-on to handle PHP PECL extensions
ii  libapache2-mod-php5   5.6.30+dfsg-0+deb8u1amd64
server-side, HTML-embedded scripting language (Apache 2 module)
ii  libnusoap-php 0.9.5-3 all  SOAP 
toolkit for PHP
ii  libphp-adodb  5.20.9-1all  ADOdb is 
a PHP database abstraction layer library
ii  libphp-phpmailer  5.2.14+dfsg-2.3 all  full 
featured email transfer class for PHP
ii  php-apc   4.0.7-1 all  APC User 
Cache for PHP 5 (transitional package)
ii  php-cli   1:7.0+49all  
command-line interpreter for the PHP scripting language (default)
ii  php-common1:49all  Common 
files for PHP packages
ii  php-gd1:7.0+49all  GD 
module for PHP [default]
ii  php-mdb2  2.5.0b5-2   all  database 
abstraction layer
ii  php-mdb2-driver-mysql 1.5.0b4-2   all  mysql 
MDB2 driver
ii  php-mysql 1:7.0+49all  MySQL 
module for PHP [default]
ii  php-pear  1:1.10.1+submodules+notgz-9 all  PEAR 
Base System
ii  php-tcpdf 6.2.12+dfsg2-1  all  PHP 
class for generating PDF files on-the-fly
ii  php-xml   1:7.0+49all  DOM, 
SimpleXML, WDDX, XML, and XSL module for PHP [default]
ii  php-zip   1:7.0+49all  Zip 
module for PHP [default]
ii  php5  5.6.30+dfsg-0+deb8u1all  
server-side, HTML-embedded scripting language (metapackage)
ii  php5-apcu 4.0.7-1 amd64APC User 
Cache for PHP 5
ii  php5-cgi  5.6.30+dfsg-0+deb8u1amd64
server-side, HTML-embedded scripting language (CGI binary)
ii  php5-cli  5.6.30+dfsg-0+deb8u1amd64
command-line interpreter for the php5 scripting language
ii  php5-common   5.6.30+dfsg-0+deb8u1amd64Common 
files for packages built from the php5 source
ii  php5-curl 5.6.30+dfsg-0+deb8u1amd64CURL 
module for php5
ii  php5-dev  5.6.30+dfsg-0+deb8u1amd64Files 
for PHP5 module development
ii  php5-gd   5.6.30+dfsg-0+deb8u1amd64GD 
module for php5
ii  php5-geoip1.1.0-2 amd64GeoIP 
module for php5
ii  php5-gmp  5.6.30+dfsg-0+deb8u1amd64GMP 
module for php5
ii  php5-json 1.3.6-1 amd64JSON 
module for php5
ii  php5-mcrypt   5.6.30+dfsg-0+deb8u1amd64MCrypt 
module for php5
ii  php5-mysql5.6.30+dfsg-0+deb8u1amd64MySQL 
mod

After upgrade jessie -> stretch : munin/perl

2018-01-04 Thread Markus Grunwald
Hello,

Today I tackled the upgrade from jessie to stretch on my "production"
server (hosts a few websites).

Almost all went smoothly, but a few problems remain. One is this: My
munin doesn't work anymore and I get these errors from its cron job:

HTML::Template->new() : Cannot open included file
partial/logo_navigation.tmpl : file not found. at
/usr/share/perl5/HTML/Template.pm line 2458.
HTML::Template->new() : Cannot open included file
partial/logo_navigation.tmpl : file not found. at
/usr/share/perl5/HTML/Template.pm line 2458.


logo_navigation.tmpl is there and munin should be able to read it:


% sudo -u munin cat /etc/munin/templates/partial/logo_navigation.tmpl


  
...

% ll /etc/munin/templates/partial/logo_navigation.tmpl
-rw-r--r-- 1 root root 629 Jun  9  2016
/etc/munin/templates/partial/logo_navigation.tmpl

I don't know what's wrong :(

cu
-- 
Markus Grunwald
http://www.the-grue.de/~markus/markus_grunwald.gpg

markus@the-grue % dpkg -l \*php\* | egrep '^ii'
ii  dh-php5   0.2 all  
debhelper add-on to handle PHP PECL extensions
ii  libapache2-mod-php5   5.6.30+dfsg-0+deb8u1amd64
server-side, HTML-embedded scripting language (Apache 2 module)
ii  libnusoap-php 0.9.5-3 all  SOAP 
toolkit for PHP
ii  libphp-adodb  5.20.9-1all  ADOdb is 
a PHP database abstraction layer library
ii  libphp-phpmailer  5.2.14+dfsg-2.3 all  full 
featured email transfer class for PHP
ii  php-apc   4.0.7-1 all  APC User 
Cache for PHP 5 (transitional package)
ii  php-cli   1:7.0+49all  
command-line interpreter for the PHP scripting language (default)
ii  php-common1:49all  Common 
files for PHP packages
ii  php-gd1:7.0+49all  GD 
module for PHP [default]
ii  php-mdb2  2.5.0b5-2   all  database 
abstraction layer
ii  php-mdb2-driver-mysql 1.5.0b4-2   all  mysql 
MDB2 driver
ii  php-mysql 1:7.0+49all  MySQL 
module for PHP [default]
ii  php-pear  1:1.10.1+submodules+notgz-9 all  PEAR 
Base System
ii  php-tcpdf 6.2.12+dfsg2-1  all  PHP 
class for generating PDF files on-the-fly
ii  php-xml   1:7.0+49all  DOM, 
SimpleXML, WDDX, XML, and XSL module for PHP [default]
ii  php-zip   1:7.0+49all  Zip 
module for PHP [default]
ii  php5  5.6.30+dfsg-0+deb8u1all  
server-side, HTML-embedded scripting language (metapackage)
ii  php5-apcu 4.0.7-1 amd64APC User 
Cache for PHP 5
ii  php5-cgi  5.6.30+dfsg-0+deb8u1amd64
server-side, HTML-embedded scripting language (CGI binary)
ii  php5-cli  5.6.30+dfsg-0+deb8u1amd64
command-line interpreter for the php5 scripting language
ii  php5-common   5.6.30+dfsg-0+deb8u1amd64Common 
files for packages built from the php5 source
ii  php5-curl 5.6.30+dfsg-0+deb8u1amd64CURL 
module for php5
ii  php5-dev  5.6.30+dfsg-0+deb8u1amd64Files 
for PHP5 module development
ii  php5-gd   5.6.30+dfsg-0+deb8u1amd64GD 
module for php5
ii  php5-geoip1.1.0-2 amd64GeoIP 
module for php5
ii  php5-gmp  5.6.30+dfsg-0+deb8u1amd64GMP 
module for php5
ii  php5-json 1.3.6-1 amd64JSON 
module for php5
ii  php5-mcrypt   5.6.30+dfsg-0+deb8u1amd64MCrypt 
module for php5
ii  php5-mysql5.6.30+dfsg-0+deb8u1amd64MySQL 
module for php5
ii  php5-readline 5.6.30+dfsg-0+deb8u1amd64Readline 
module for php5
ii  php5-sqlite   5.6.30+dfsg-0+deb8u1amd64SQLite 
module for php5
ii  php7.0-cli7.0.19-1amd64
command-line interpreter for the PHP scripting language
ii  php7.0-common 7.0.19-1amd64
documentation, examples and common module for PHP
ii  php7.0-gd 7.0.19-1amd64GD 
module for PHP
ii  php7.0-json   7.0.19-1amd64JSON 
module for PHP
ii  php7.0-mysql  7.0.19-1amd64MySQL 
module for PHP
ii  php7.0-opcache7.0.19-1amd64Zend 
OpCache module for P

Re: After upgrade jessie -> stretch : munin/perl

2018-01-04 Thread Markus Grunwald
Hello,

I remembered that I installed a nicer theme a good while ago. This seems
to have messed up some templates. So I apt-get purged munin, deleted the
rest of /etc in /etc/munin and re-installed munin.

This left me with a 404 in www.the-grue.de/munin :(

I learned that the apache configuration of munin is now included in the
package. So I adjusted the settings in /etc/apache:

./conf-enabled/munin.conf
./conf.d/munin


Now I have a working www.the-grue.de/munin again :)
But: With this config, /all/ of my sites show munin as well :( like:

www.maennerchor-kirchseeon.de/munin

This doesn't belong there. What is the best (most forward compatible)
way to fix this?

-- 
Markus Grunwald
http://www.the-grue.de/~markus/markus_grunwald.gpg



signature.asc
Description: OpenPGP digital signature


Re: After upgrade jessie -> stretch : php problems

2018-01-04 Thread Markus Grunwald
Hello,

after you told me that cli and http don't have to use the same php
(sigh), I have a workaround:

17 3 * * * www-dataphp5 -f
/srv/www/the-grue.de/owncloud/htdocs/cron.php


Now I explicitly call php5 instead of php and all is fine... But this is
only a workaround, I think.

cu
-- 
Markus Grunwald
http://www.the-grue.de/~markus/markus_grunwald.gpg



signature.asc
Description: OpenPGP digital signature


T570 Powerkey doesn't work

2018-01-04 Thread Markus Grunwald
Hello,

as far as I understand, pressing the power key on my Lenovo T570 should
produce some output in the journal like this:

Mär 31 18:04:47 my_computer systemd-logind[1402]: Power key pressed.

On my laptop, this doesn't work - I see nothing in the journal.
Hibernating doesn't work, neither but that's the reason, I think...

Is there something special that I have to do?

cu
-- 
Markus Grunwald
http://www.the-grue.de/~markus/markus_grunwald.gpg



signature.asc
Description: OpenPGP digital signature


group membership missing after update

2011-11-21 Thread Markus Grunwald
Hello,

after many years without any (debian testing related) trouble, I need
your help again: After my last safe-upgrade, I'm not member of any
groups when I open a shell...

-I login to my i3 windowmanager
-open a console
-output of "groups" is "markus" - and that's all :s
-after a "su - markus", or ssh localhost, or switch to the text console,
all is normal...

An "strace groups" shows, that /etc/groups isn't even touched...

I have no Idea what wrong there and hope for your help.
TIA
-- 
Markus Grunwald


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/2021141055.0b8f9...@pc-cm-gru-virtlinux1.pt.local



  1   2   >