Maildir support

1998-02-03 Thread Paul Miller

is there any plans for adding Qmail's Maildir support to the following
packages soon?

pine (there already is a patch, but I couldn't compile it)
cfinger (does need one?  how can I fix it to check maildirs?)
login (seems to not like the QMAIL_DIR parameter.. possible bug?)

Thanks
Paul


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


HELP: pgp doesn't clearsign messages

1998-02-03 Thread ranty

I have a problem, when I tell pgp to pgp -as +clearsig=on filename it does
exactly the same as pgp -as +clearsig=off filename I get something which is
unredable without pgp.

I know some time in the past it worked, put I haven't upgraded pgp and I didn't
change the configuration as far as I remember.

Anybody, please, somethink to try with... I am desperate.

thanks in advance

Ranty



--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Kernel Configuration?

1998-02-03 Thread Richardson,Anthony

Is there a command which displays how a kernel is configured?  For   
example,
say I walk up to a Linux box and want to see if the kernel was compiled   
with
gateway support.  How do I do that?

Thanks
Tony Richardson


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: Win95 and Linux: Was: Verified Re: Unidentified subject!

1998-02-03 Thread David E. Scott
Stephen,
That's very encouraging. If there is a good replacement for Word, I'm
not wedded to it.  :)

Dave



Stephen Zander wrote:
 
 David E. Scott [EMAIL PROTECTED] writes:
 
  There are a whole suite of tools I'd need to be running on the linux
  side before I could make that switch. For example, I'd need to be
  running ppp and Navigator and Navigator's email before I'd consider
  dropping Win95. For another thing, I'd need a Word-like word processor
  and access to both the SCSI ZIP drive and the Cannon Bubble Jet 4300
  printer (the latter for resumes for both the wife and me) before I'd
  give up win95. The list goes on :)
 
 Actually all of that list is possible, with the possible exception
 of M$Word...

-- 
--David E. Scott  Ohio Administrative Services
[EMAIL PROTECTED]   [EMAIL PROTECTED]


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


/etc/printcap set up

1998-02-03 Thread John Kloss
I recently bought an HP Laser Jet 6L and I'm happy to say that it works
beautifully with linux. After a little work I hacked together a perl
script which will print ascii just fine and ghostscript allows me to do
postscript and latex so I'm happy with that.

The problem is I can't get lpr to recognize the filters I want to use. I
know that lpr searches the /etc/printcap file to see how each printer is
setup. Having read the Printing-HOWTO I was under the impression that I
could add the filters I wanted in that file. Currently my /etc/printcap
looks like this

lp|Laser Jet:\
:lp=/dev/lp0:\
:sd=/var/spool/lpd/lp:\
:mx#0:\
:pl#64:\
:sh:

Now the Printing-HOWTO said to add a text filter for just plain lpr'ing,
that is, a simple command with no options, like

lpr myfile.txt

I should add the line

:if=/etc/filter.txt:\

to /etc/printcap and things would work out right. Well I wrote the
filter.txt and tried it (as root) with

# cat myfile.txt | /etc/filter.txt  /dev/lp0

and things worked out fine. I also tried it with this (as an ordinary
user)

$ cat myfile.txt | /etc/filter.txt | lpr

and once again things worked out fine (the job was spooled to the printer
and printed out correctly) so I don't think it's a problem with my file
permissions or my script. So when I add the line

:if=/etc/filter.txt:\

to /etc/printcap, all I get is one blank page printed out. So I know the
next question, where did I add the line, well /etc/printcap looks like
this

lp|Laser Jet:\
:lp=/dev/lp0:\
:sd=/var/spool/lpd/lp:\
:if=/etc/filter.txt:\
:mx#0:\
:pl#64:\
:sh:

So what I'm I doing wrong? I've read both the Printing-HOWTO and the
Printing-Usage-HOWTO and they tell me this should work, but it doesn't.

I would also like to print tex files from lpr by using

$ lpr -d myfile.dvi

which means I should add

:df=/etc/filter.dvi:\

right?

I would also like a script to handle postscript. Currently to print
postscript I have to type

cat myfile.ps | gs -sDEVICE=ljet4 -sOutputFile=- -dNOPAUSE - | lpr

which works but I'd rather have a script for it that lpr will call with
some command line argument (-p ?) I don't know which one to use.

So I could write a bunch of bash aliases to handle all this, but I'd
rather have lpr do it for me because I thought that was what /etc/printcap
was all about.

Any help would be greatly appreciated.

- John Kloss


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: Win95 and Linux: Was: Verified Re: Unidentified subject!

1998-02-03 Thread David E. Scott
Tom,
Thanks much for the link. I've downloaded it and am checking thru the
docs before I jump in. Glad to see that 1023 cyl limit doesn't really
exist. I had suspected that but wasn't sure.

Cheers,
Dave



Tom Hogland wrote:
 
 Here it is:
 ftp://sunsite.unc.edu/pub/Linux/utils/dos/linux_load95.zip
 
 Works like a charm. Only deviation from the included documentation I found
 was that it says you need the partition you load Linux on to start at
 cylinder 1023 or lower. I loaded Debian on the last gig of a 6gb drive and
 it works fine... Good luck!
 

-- 
--David E. Scott  Ohio Administrative Services
[EMAIL PROTECTED]   [EMAIL PROTECTED]


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: /etc/printcap set up

1998-02-03 Thread Damir J. Naden
Hi John Kloss; unless Mutt is confused, you wrote:
 lp|Laser Jet:\
   :lp=/dev/lp0:\
   :sd=/var/spool/lpd/lp:\
   :mx#0:\
   :pl#64:\
   :sh:
 
 Now the Printing-HOWTO said to add a text filter for just plain lpr'ing,
 that is, a simple command with no options, like
 
   lpr myfile.txt
 
 I should add the line
 
   :if=/etc/filter.txt:\
 
 to /etc/printcap and things would work out right. Well I wrote the
 filter.txt and tried it (as root) with
 

I think you shpuld install magicfilter package and let it handle all the
'filtering' you need. I think the package name is magicfilter_1.2-16.deb, but
there may be a newer version out by now...

HTH

Damir 


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: Win95 and Linux: Was: Verified Re: Unidentified subject!

1998-02-03 Thread Michael Beattie

 Stephen,
   That's very encouraging. If there is a good replacement for Word, I'm
 not wedded to it.  :)
 
 Dave
 
 
 
 Stephen Zander wrote:
  
  David E. Scott [EMAIL PROTECTED] writes:
  
   There are a whole suite of tools I'd need to be running on the linux
   side before I could make that switch. For example, I'd need to be
   running ppp and Navigator and Navigator's email before I'd consider
   dropping Win95. For another thing, I'd need a Word-like word processor
   and access to both the SCSI ZIP drive and the Cannon Bubble Jet 4300
   printer (the latter for resumes for both the wife and me) before I'd
   give up win95. The list goes on :)
  
  Actually all of that list is possible, with the possible exception
  of M$Word...
 

Okay, I havent used it.. but what about Lyx?? Ive heard good things about
it.. Comments?



   Michael Beattie ([EMAIL PROTECTED])

---
 WinErr: 006 Malicious error - Desqview found on drive
---
Debian GNU/Linux  Ooohh You are missing out!


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


HOW? Printer accounting systems....

1998-02-03 Thread Chris

Hello all,

I am trying to figure out how to set up printer accounting on our
network.  We are currently running a debian linux server, connected to a
remote hp laserjet printer.

According to the man page for printcap(5) a if filter is used when printer
accounting is required.  However I am not sure how to specify an if
filter, nor what one is or where I get one.

Any help would be greatly appreciated :)

Chris.

PS.  please reply direct, because sometimes I miss stuff going through the
 entire list :)


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: Win95 and Linux: Was: Verified Re: Unidentified subject!

1998-02-03 Thread Will Lowe
On Mon, 2 Feb 1998, David E. Scott wrote:

 Stephen,
   That's very encouraging. If there is a good replacement for Word, I'm
 not wedded to it.  :)

lyx is coming along nicely.  Not Word,  yet,  mind you,   but does pretty
well for most things.

Will


--
| [EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED]   |
|   http://www.cis.udel.edu/~lowe/   |
|PGP Public Key:  http://www.cis.udel.edu/~lowe/index.html#pgpkey|
--
|   So don't beg,  and don't plead.  |
|   You can't have the heart you make bleed. |
|-- The Beautiful South,  Love is...   |
--


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: Win95 and Linux: Was: Verified Re: Unidentified subject!

1998-02-03 Thread seth
On Tue, 3 Feb 1998, Michael Beattie wrote:

 
  That's very encouraging. If there is a good replacement for Word, I'm
  not wedded to it.  :)
   
dropping Win95. For another thing, I'd need a Word-like word processor
   
   Actually all of that list is possible, with the possible exception
   of M$Word...
  
 Okay, I havent used it.. but what about Lyx?? Ive heard good things about
 it.. Comments?
 
Try StarOffice4.0.  It's actually fairly Word compatible.

Seth


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


www.lsl.com and debian

1998-02-03 Thread A. M. Varon
[Sorry for the offtopic theme.]

Has anyone ordered from www.lsl.com for a Debian cd? can someone give me
an e-mail address that could help me?

I have ordered a Debian CD and o'reilly book from www.lsl.com, but after
3 MONTHS, the goods are nowhere in sight. Repeat, 3 MONTHS. I have already
paid my dues to them, btw. 

3 Servers are waiting to be installed with Debian. But because of the
delay, I was forced to install Redhat instead. :( 

== == Andre M. Varon  Lasaltech Incorporated
== == Technical Head  Fax-Tel: (034)435-0836
== = ==
==== ==   E-mail  : [EMAIL PROTECTED]
 ==   WebPage : www.lasaltech.com/andre.html




--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: Win95 and Linux: Was: Verified Re: Unidentified subject!

1998-02-03 Thread David E. Scott
seth wrote:
 
 On Tue, 3 Feb 1998, Michael Beattie wrote:
 
 
   That's very encouraging. If there is a good replacement for Word, I'm
   not wedded to it.  :)
   
 dropping Win95. For another thing, I'd need a Word-like word processor
   
Actually all of that list is possible, with the possible exception
of M$Word...
  
  Okay, I havent used it.. but what about Lyx?? Ive heard good things about
  it.. Comments?
 
 Try StarOffice4.0.  It's actually fairly Word compatible.

Seth,
StarOffice4.0 is rather impressive. The Win 95 version looked very
interesting during the time it was tested. I'll be interested in seeing
the Linux version when it's released.
Dave

-- 
--David E. Scott  Ohio Administrative Services
[EMAIL PROTECTED]   [EMAIL PROTECTED]


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: Win95 and Linux: Was: Verified Re: Unidentified subject!

1998-02-03 Thread David E. Scott
Will Lowe wrote:
 
 On Mon, 2 Feb 1998, David E. Scott wrote:
 
  Stephen,
That's very encouraging. If there is a good replacement for Word, I'm
  not wedded to it.  :)
 
 lyx is coming along nicely.  Not Word,  yet,  mind you,   but does pretty
 well for most things.

Will,
Is there a URL where lyx is available, if it's available yet?
Thanks,
Dave

-- 
--David E. Scott  Ohio Administrative Services
[EMAIL PROTECTED]   [EMAIL PROTECTED]


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: Win95 and Linux: Was: Verified Re: Unidentified subject!

1998-02-03 Thread Will Lowe
On Tue, 3 Feb 1998, David E. Scott wrote:

   Is there a URL where lyx is available, if it's available yet?

The debian lyx beta package is available from ftp.debian.org ... I'd hit
the package search page at http://www.debian.org/packages.html and search
for it.  A note:  the lyx page there is buggy;  in addition to the lyx
package you'll find there,  you'll need to install the xforms0.88 package.

lyx is a mostly-WYSIWYG front-end for LaTeX.
Will


--
| [EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED]   |
|   http://www.cis.udel.edu/~lowe/   |
|PGP Public Key:  http://www.cis.udel.edu/~lowe/index.html#pgpkey|
--
|   So don't beg,  and don't plead.  |
|   You can't have the heart you make bleed. |
|-- The Beautiful South,  Love is...   |
--


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


PPP problems

1998-02-03 Thread Charles
Hello,
I am having a he// of a time trying to configure my supra 288i modem
to work in linux.  I have done everthing in the serial-HOWTO, used the
information from supra on isapnptools, and have tried the information in
the PPP-HOWTO, but nothing seems to be working yet.  I keep going from
one error to another.  I am at a loss as to my latest error that shows
up in the ppp.log:
Feb  2 21:28:48 charles pppd[343]: pppd 2.2.0 started by root, uid 
Feb  2 21:28:48 charles pppd[343]: tcgetattr: I/O error
Feb  2 21:28:48 charles pppd[343]: Exit
If anyone can tell me what is causing this fault, and where I should
look to fix it, I would appreciate it.
As a side note, during boot it allocates ttyS0 as my modem, however, on
my Windoze side it is allocated at com3.  This should mean that my modem
needs to be configured for ttyS2 in linux correct??  I have tried
continuously to list that as my modem port, but keep getting I/O errors
when I try.  This is frustrating me because I would like to run a linux
box instead of M$ products, but without net support, I cannot do this. 
Also having problems with my sound card, but havent started
troubleshooting that yet due to my modem problems.  Thanks for any help
anyone can give me on this problem.
Charles


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: PPP problems

1998-02-03 Thread Art Lemasters
Charles, I am only a newbie, but if you haven't already tried it, do

man setserial

and see if you learn anything you haven't already learned...couldn't
hurt.  One of the more experienced folks might be able to see the
problem more surely from your log file.

   Art Lemasters

Charles wrote:
 
 Hello,
 I am having a he// of a time trying to configure my supra 288i modem
 to work in linux.  I have done everthing in the serial-HOWTO, used the
 information from supra on isapnptools, and have tried the information in
 the PPP-HOWTO, but nothing seems to be working yet.  I keep going from
 one error to another.  I am at a loss as to my latest error that shows
 up in the ppp.log:
 Feb  2 21:28:48 charles pppd[343]: pppd 2.2.0 started by root, uid
 Feb  2 21:28:48 charles pppd[343]: tcgetattr: I/O error
 Feb  2 21:28:48 charles pppd[343]: Exit
 If anyone can tell me what is causing this fault, and where I should
 look to fix it, I would appreciate it.
 As a side note, during boot it allocates ttyS0 as my modem, however, on
 my Windoze side it is allocated at com3.  This should mean that my modem
 needs to be configured for ttyS2 in linux correct??  I have tried
 continuously to list that as my modem port, but keep getting I/O errors
 when I try.  This is frustrating me because I would like to run a linux
 box instead of M$ products, but without net support, I cannot do this.
 Also having problems with my sound card, but havent started
 troubleshooting that yet due to my modem problems.  Thanks for any help
 anyone can give me on this problem.
 Charles
 
 --
 TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
 [EMAIL PROTECTED] .
 Trouble?  e-mail to [EMAIL PROTECTED] .


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Maturity of debian for sparc?

1998-02-03 Thread William R Ward

I have a SPARC system that's currently on SunOS 4.1.3.  I've been
contemplating switching to Linux.  I would like some comments from
users of SPARC Linux on the stability and maturity of Linux for this
platform, and specifically Debian GNU/Linux.

I've been using HAMM on one of my PC's and liking it quite a bit and
would like to have the SPARC be more compatible with the PC's in order
to simplify administration.

Thanks for any  all input

--Bill.

-- 
William R Ward  Bay View Consulting   http://www.bayview.com/~hermit/
[EMAIL PROTECTED] 1803 Mission St. #339voicemail +1 408/479-4072
[EMAIL PROTECTED]   Santa Cruz CA 95060 USA   pager +1 408/458-8862
 PGP Key 0x2BD331E5; Public key at http://www.bayview.com/~hermit/pubkey.txt
-
Take off all your clothes and walk down the street waving a machete and
firing an Uzi, and terrified citizens will phone the police and report:
There's a naked person outside! - Mike Nichols


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


HELP: xisp without su

1998-02-03 Thread Albert Hurd
Could anyone tell me how to run xisp without first logging in as su.
I aam a newbie and would appreciate any help. Thanks.

Albert Hurd


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: HELP: pgp doesn't clearsign messages

1998-02-03 Thread Manoj Srivastava
Hi,
ranty == ranty  [EMAIL PROTECTED] writes:

ranty I have a problem, when I tell pgp to pgp -as +clearsig=on
ranty filename it does exactly the same as pgp -as +clearsig=off
ranty filename I get something which is unredable without pgp.

I confirm your error, and am hereby submitting a bug report. 

ranty I know some time in the past it worked, put I haven't upgraded
ranty pgp and I didn't change the configuration as far as I remember.

This is the latest version I can find, so it is not an upgrade
 issue.

ranty Anybody, please, somethink to try with... I am desperate.

Try pgp -sta Filename; that works.

manoj
-- 
 An ounce of prevention is worth a ton of code. an anonymous
 programmer
Manoj Srivastava  [EMAIL PROTECTED] http://www.datasync.com/%7Esrivasta/
Key C7261095 fingerprint = CB D9 F4 12 68 07 E4 05  CC 2D 27 12 1D F5 E8 6E


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: Kernel Configuration?

1998-02-03 Thread Manoj Srivastava
Hi, 

On quite new Debian machines, if the official kernel images
 are installed ot the kernel image was created using a recent
 kernel-package package, you can just look in /boot:
 % less /boot/config-$(uname -r)

Aint that neat?

manoj
__ ls -asCF /boot
total 2699
   1 ./5 boot.b1 mbr.b
   1 ../   1 chain.b   1 os2_d.b
  88 System.map-2.0.30 5 config-2.0.30   365 vmlinuz-2.0.30
  89 System.map-2.0.32 6 config-2.0.32   373 vmlinuz-2.0.32
  89 System.map-2.0.33 6 config-2.0.33   373 vmlinuz-2.0.33
 161 System.map-2.1.82 8 config-2.1.82   485 vmlinuz-2.1.82
 157 System.map-2.1.84 8 config-2.1.84   462 vmlinuz-2.1.84
   1 boot.0300 1 grub/
   1 boot.030211 map

-- 
 If you post it, they will flame. The voice from Field of Dreams,
 according to Brian Frost ([EMAIL PROTECTED])
Manoj Srivastava  [EMAIL PROTECTED] http://www.datasync.com/%7Esrivasta/
Key C7261095 fingerprint = CB D9 F4 12 68 07 E4 05  CC 2D 27 12 1D F5 E8 6E


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: Netscape doesn't work (libc5/libc6)

1998-02-03 Thread William R Ward
Remco Blaakmeer [EMAIL PROTECTED] writes:
 On 30 Jan 1998, William R. Ward wrote:
  I'm running hamm and I can't get Netscape to work.  I know it's
  probably a problem with libc5 vs libc6, and that I probably need to
  reinstall one or more libc5 files, but I don't know which ones!  I ran
  ldd and strace and the output is attached here.  I just don't know how
  to read the output of these programs in order to find out what to
  install.
  
  Any help would be most appreciated.
  
  Here's the output of ldd:
  
  /lib/nfslock.so = /lib/nfslock.so (0x4000c000)
  libXt.so.6 = /usr/X11R6/lib/libXt.so.6 (0x4000e000)
  libSM.so.6 = /usr/X11R6/lib/libSM.so.6 (0x40056000)
  libICE.so.6 = /usr/X11R6/lib/libICE.so.6 (0x4005f000)
  libXmu.so.6 = /usr/X11R6/lib/libXmu.so.6 (0x40074000)
  libXpm.so.4 = /usr/X11R6/lib/libXpm.so.4 (0x40086000)
  libXext.so.6 = /usr/X11R6/lib/libXext.so.6 (0x40094000)
  libX11.so.6 = /usr/X11R6/lib/libX11.so.6 (0x400a)
  libdl.so.1 = /lib/libdl.so.1 (0x40143000)
  libc.so.5 = /lib/libc.so.5 (0x40146000)
  libm.so.5 = /lib/libm.so.5 (0x40204000)
  libc.so.6 = /lib/libc.so.6 (0x4020d000)
  ld-linux.so.2 = /lib/ld-linux.so.2 (0x402af000)
  
  And here's the output of strace:
 snipped output
 
 Tell me, what version of the xlib6 and xlib6g packages do you have
 installed? Probably they are too old. I think you upgraded them to hamm
 when they didn't work with netscape and left them in this state. Try
 upgrading them to the latest version.

xlib6 and xlib6g are both version 3.3.1-2 which I believe is the
latest and greates from hamm.  I keep my system right on the bleeding
edge...

I even tried reinstalling xlib6 just in case that helped.  What
version of Netscape are you using?  The above was from netscape
Communicator 4.  I removed that and will try installing netscape 3
instead.


 What I get is this:
 [EMAIL PROTECTED]:~]$ ldd /usr/lib/netscape/netscape
 libXt.so.6 = /usr/lib/libc5-compat/libXt.so.6 (0x4000c000)
 libSM.so.6 = /usr/lib/libc5-compat/libSM.so.6 (0x4004e000)
 libICE.so.6 = /usr/lib/libc5-compat/libICE.so.6 (0x40057000)
 libXmu.so.6 = /usr/lib/libc5-compat/libXmu.so.6 (0x4006c000)
 libXpm.so.4 = /usr/lib/libc5-compat/libXpm.so.4 (0x4007e000)
 libXext.so.6 = /usr/lib/libc5-compat/libXext.so.6 (0x4008c000)
 libX11.so.6 = /usr/lib/libc5-compat/libX11.so.6 (0x40097000)
 libdl.so.1 = /lib/libdl.so.1 (0x40135000)
 libc.so.5 = /lib/libc.so.5 (0x40138000)
 libm.so.5 = /lib/libm.so.5 (0x401f6000)
 
 Once the libc.so.6 stops showing up I think you are safe.
 
 In general, it is a bad thing if libc.so.5 and libc.so.6 both show up in
 ldd's output.
 
 Remco
 
 
 --
 TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
 [EMAIL PROTECTED] . 
 Trouble?  e-mail to [EMAIL PROTECTED] .
 

-- 
William R Ward  Bay View Consulting   http://www.bayview.com/~hermit/
[EMAIL PROTECTED] 1803 Mission St. #339voicemail +1 408/479-4072
[EMAIL PROTECTED]   Santa Cruz CA 95060 USA   pager +1 408/458-8862
 PGP Key 0x2BD331E5; Public key at http://www.bayview.com/~hermit/pubkey.txt
-
Take off all your clothes and walk down the street waving a machete and
firing an Uzi, and terrified citizens will phone the police and report:
There's a naked person outside! - Mike Nichols


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: Netscape doesn't work (libc5/libc6)

1998-02-03 Thread William R Ward
[EMAIL PROTECTED] (William R. Ward) writes:
 I'm running hamm and I can't get Netscape to work.  I know it's
 probably a problem with libc5 vs libc6, and that I probably need to
 reinstall one or more libc5 files, but I don't know which ones!  I ran
 ldd and strace and the output is attached here.  I just don't know how
 to read the output of these programs in order to find out what to
 install.
[snip output of ldd/strace]

Turns out that the problem was fixed by some combination of:
  1. Re-running ldconfig
  2. Removing $LD_LIBRARY_PATH from my .cshrc

Thanks to those of you who had suggestions ... if you are having
similar problems, try these two things.

--Bill.

-- 
William R Ward  Bay View Consulting   http://www.bayview.com/~hermit/
[EMAIL PROTECTED] 1803 Mission St. #339voicemail +1 408/479-4072
[EMAIL PROTECTED]   Santa Cruz CA 95060 USA   pager +1 408/458-8862
 PGP Key 0x2BD331E5; Public key at http://www.bayview.com/~hermit/pubkey.txt
-
Take off all your clothes and walk down the street waving a machete and
firing an Uzi, and terrified citizens will phone the police and report:
There's a naked person outside! - Mike Nichols


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Problem with xfs (an excuse)

1998-02-03 Thread Wojciech Zabolotny
On  Mon, 2 Feb 1998 14:16:34 +0100
Wojciech Zabolotny [EMAIL PROTECTED]
wrote:

 Last time I have noticed a strange behaviour of xfs on my Linux box
 (debian 1.3.1r6)...
  [snip]
  Additionally I'm looking for any reasonable source of information
 about xfs configuration file and command line options. I can't find
 any in my system (well, I'll try to download the source of xbase, may be
 there is something...)

The lack of information was caused by setting MANPATH to
'...:usr/X11R6/man:...' instead of '...:/usr/X11R6/man:...',
but rest of the problem still exists...

Wojtek Zabolotny
[EMAIL PROTECTED]



Re: HELP: xisp without su

1998-02-03 Thread Martin Bialasinski
Albert Hurd [EMAIL PROTECTED] writes:

 Could anyone tell me how to run xisp without first logging in as su.

Check the permissions of pppd.

bash-2.01$ ls -l /usr/sbin/pppd
-rwsr-xr--   1 root dialout 84608 Jun 20  1997 /usr/sbin/pppd 

And make sure, the user who should be able to dial out, *is* actually in
this group.

You can do a adduser your_username dialout to accomplish this. It won't
break anything if the user is already member of this group, so you should
do this anyway.

BTW: Get a new debianpackage of xisp from ftp://134.95.210.54/pub if you
use a version prior to 2.3

Ciao,
Martin


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: would like to use qmail on debian box and got bo running on a hinote ultra 2

1998-02-03 Thread Sen Nagata
at some point around Mon, 26 Jan 1998 11:09:44 +0200
Tommi Virtanen [EMAIL PROTECTED] 
mentioned:

   There's qmail-src on hamm. Qmail isn't freely distributable
   in binary form, so you have to compile it yourself (it produces
   a neat debian package). Do a minimal hamm upgrade and then you
   can have it.

thank you.  i have gone through a hamm upgrade and have downloaded the
qmail source package.  when i do a:

  build-qmail
  
i get an error about 'debstd' not being found -- is there a good place for
me to look to find out where debstd might be obtained?

also, during my hamm upgrade, i got:

Unpacking libgdbmg1-dev (from .../libgdbmg1-dev_1.7.3-21.deb) ...
dpkg: error processing 
debian/dists/unstable/main/binary-i386/devel/libgdbmg1-dev_1.7.3-21.deb 
(--install):
trying to overwrite `/usr/include/ndbm.h', which is also in package libc6-dev
dpkg-deb: subprocess paste killed by signal (Broken pipe)

do you have any suggestions as to what i might be able to do to fix this?

thanks for your attention.

-sen


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: would like to use qmail on debian box and got bo running on a hinote ultra 2

1998-02-03 Thread Tommi Virtanen
On Tue, Feb 03, 1998 at 07:43:35PM +0900, Sen Nagata wrote:
 i get an error about 'debstd' not being found -- is there a good place for
 me to look to find out where debstd might be obtained?

It's in the package debmake.

 Unpacking libgdbmg1-dev (from .../libgdbmg1-dev_1.7.3-21.deb) ...
 dpkg: error processing 
 debian/dists/unstable/main/binary-i386/devel/libgdbmg1-dev_1.7.3-21.deb 
 (--install):
 trying to overwrite `/usr/include/ndbm.h', which is also in package libc6-dev
 dpkg-deb: subprocess paste killed by signal (Broken pipe)

Install libgdbmg1-dev (as root) with 
dpkg -i --force-overwrite libgdbmg1-dev_1.7.3-21.deb
(this is one of the few occasions where --force is needed.
See bugs 10640, 12993, 17442)
-- 
[EMAIL PROTECTED] - it's a valid address w/o spam | +358-50-5124907
f u cn rd ths, thn u cn rd perl 2 | rm -rf /  echo bye-bye. |   --tv


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: procmail and folders

1998-02-03 Thread ranty


On Mon, 2 Feb 1998, Branden Robinson wrote:

 On Mon, Feb 02, 1998 at 11:31:17PM +0100, [EMAIL PROTECTED] wrote:
  -BEGIN PGP MESSAGE-
 [...]
 
 There's no point cc'ing a message to the mailing list if you're going to
 PGP-encrypt it.  Who on the mailing list were you supposing would read it?

It was not PGP-encrypted, it was PGP-signed but anyway, what I wanted to do is
to clearsign it so it would look like:

-BEGIN PGP SIGNED MESSAGE-
[READABLE TEXT]
-END PGP SIGNED MESSAGE-

-BEGIN PGP SIGNATURE-
[CRYPTIC STUFF]
-END PGP SIGNATURE---

I AM SORRY :-( , it was against my will, I will resend the message with no
signature and no nothing and keep doing so until I get it fixed.

If anyone has a suggestion about my problem please, anything, tell me, I will
try it.


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: /etc/printcap set up

1998-02-03 Thread ranty


On Mon, 2 Feb 1998, John Kloss wrote:

 I recently bought an HP Laser Jet 6L and I'm happy to say that it works
 beautifully with linux. After a little work I hacked together a perl
 script which will print ascii just fine and ghostscript allows me to do
 postscript and latex so I'm happy with that.
 
 The problem is I can't get lpr to recognize the filters I want to use. I
 know that lpr searches the /etc/printcap file to see how each printer is
 setup. Having read the Printing-HOWTO I was under the impression that I
 could add the filters I wanted in that file. Currently my /etc/printcap
 looks like this

Well, I can't help you the way you are trying to do things, but you do have
apsfilter for lpr and magicfilter for lprng, apsfilter and magicfilter 
both work fine with my Canon BJ-4000 and I have seen apsfilter working fine with
a HP Laser Jet I don't know de model but anyway evreything goes through gs and
dvips and the other standard filters.

And with the filters the filter selection ocurs automagicaly.

Apsfilter is more configurable, so maybe you will like it best.

Hoping to be helpfull
Ranty


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: PPP problems

1998-02-03 Thread ranty


On Tue, 3 Feb 1998, Charles wrote:

 Hello,
 I am having a he// of a time trying to configure my supra 288i modem
 to work in linux.  I have done everthing in the serial-HOWTO, used the
 information from supra on isapnptools, and have tried the information in
 the PPP-HOWTO, but nothing seems to be working yet.  I keep going from
 one error to another.  I am at a loss as to my latest error that shows

If your bios is Plug-and-Play or should I say Plug-and-Pray then you don't have
to do no nothing with the isapnptools, you can even screw things up if you do.

You just edit /etc/rc.boot/0setserial 

78 # The typical user will only have 2 serial ports. To try and minimise
79 # problems, all other configurations have been commented out!
80 #
81 ${SETSERIAL} -b /dev/ttyS2 ${AUTO_IRQ} skip_test autoconfig ${STD_FLAGS}
82 #${SETSERIAL} /dev/ttyS3 ${AUTO_IRQ} autoconfig ${STD_FLAGS}

Here is a piece of mine, you just uncoment line 81 to get your modem configured,
per default only two serial ports are configured. And in the best case it
mistakes the IRQ.

I have that same modem and just by uncomenting that line it worked, no
isapnptools and nothing; Well then you need to configure pppd and all, but the
modem should have enogh taking off that little caracter out of line 81.


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: /etc/printcap set up

1998-02-03 Thread bhmit1
[ setup hp lj 6l question ]

Save yourself a lot of time, install magic filter.  Then:
magicfilterconfig --force
and answer hplj4l when it asks.

Brandon

-
Brandon Mitchell [EMAIL PROTECTED]   We all know linux is great... it
PGP: finger -l [EMAIL PROTECTED]  does infinite loops in 5 seconds
Phone: (757) 221-4847  --Linus Torvalds


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


bo - Afterstep - colours

1998-02-03 Thread John Spence
Yes, this might be a tad off-topic but...

I have  3 window managers installed on my bo system. All 3 are the
versions that came with the 1.3.1 CD set. They are fvwm95, fvwm2 and
Afterstep.

I only have 1meg video RAM and I run X at 1024x768 with 8bpp.

I have a colour problem when I run Afterstep which results in the top 2
wharf icons not displaying and causes Netscape to display in black and
white.  This colour problem doesn't occur under any circumstances with the
other w/managers.

Yes, I can run at 16bpp and this doesn't happen but I can only get
a resolution of 800x600 at this colour depth.

Could this be a problem that is Afterstepish or one that is peculiar to
the Afterstep version that came with Bo ?

-- 
John Spence [EMAIL PROTECTED]  http://www.lynx.net.au/~jspence


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Way off topic: humor

1998-02-03 Thread Rob
Hi all,

Thought many of you might enjoy this... if this is a no no let me know
:)

A helicopter was flying around above Seattle yesterday when an
electrical malfunction disabled all of the aircraft's electronic
navigation and communication equipment.  Due to the clouds and haze, the

pilot could not determine the helicopter's position and course to steer
to the airport.

The pilot saw a tall building through the fog, flew toward it, circled,
drew a hand-written sign, and held it in the helicopter's window.  The
pilot's sign read: WHERE AM I? in large letters.
People in the tall building quickly responded to the aircraft, drew a
large sign, and held it to one of the building's windows.
Their sign said, YOU ARE IN A HELICOPTER.
The pilot smiled, waved, looked at his map, determined the course to
steer to SEATAC airport, and landed safely.
After they were on the ground, the co-pilot asked the pilot how in the
world the YOU ARE IN A HELICOPTER sign helped him to determine their
position.  The pilot responded: I knew that had to be the MICROSOFT
building because, similar to their help-lines, they gave me a
technically correct but completely useless answer.

Cheers,
Rob
[EMAIL PROTECTED]



--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


printer woes

1998-02-03 Thread justin honold
i'm running debian hamm with all the latest files off the
ftp.debian.org/pub/dists/hamm directory.  lpr 5.9-21 and magic filter
1.2-17.  anyways, i have some problems.  my printer (hp deskjet 660c) will
not print at ALL after installing magic filter.  i've forced a new config
with no dice.

here is my dmesg | grep lp --

lp1 at 0x0378, (polling)
lp1 at 0x0378, (polling)

i have 2 of them PROBABLY because i'm using an iomega paralell port
pass-through (ppa and lp are both modules -- ppa is NOT loaded).  so lpt1
is lp1 and not lp0?  i've tried both (using the deskjet filter).

here is the error i get --

[jhonold] debian $ lpr totoro 
lpr: connect: No such file or directory
jobs queued, but cannot start daemon.

an irc.debian.org user claims to have experienced the same problem, but
couldn't recall how it was he fixed it.  prior to installing magic filter
my printer would PRINT, but not well.  the lines were off-center and it
would feed multiple blank pages.  any help would be appreciated!

justin honold
[EMAIL PROTECTED]


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


How to downgrade?

1998-02-03 Thread T-SNAKE
OK, since I didn't get any responce on my previous questions (but one) I have
another way to ask this one:
How can I downgrade from libc5 version 5.4.33-6 to version 5.4.33-3?
I have the -3 version, but accidentally installed the -6 one first, and
then when I tried to install some other packages, their dependencies were on
5.4.33-3 and didn't like to be associated with 5.4.33-6.
Should be an easy fix, but I can't seem to (for the life of me) figure out how
to do it. Please help.
thanks,
Chris
-- 
'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\
 Live on Real Audio Thursday nights 8-11 EST http://www.uvm.edu/~wruv
T-SNAKE  [EMAIL PROTECTED] ICQ UIN:1868354  A DJ on a mission
CROSSFADE RECORDS  http://www.crossfade.com/  Drug free techno
,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: Win95 and Linux: Was: Verified Re: Unidentified subject!

1998-02-03 Thread Peter S Galbraith

Stephen Zander wrote:

 David E. Scott [EMAIL PROTECTED] writes:
 
  There are a whole suite of tools I'd need to be running on the linux
  side before I could make that switch. For example, I'd need to be
  running ppp and Navigator and Navigator's email before I'd consider
  dropping Win95. For another thing, I'd need a Word-like word processor
  and access to both the SCSI ZIP drive and the Cannon Bubble Jet 4300
  printer (the latter for resumes for both the wife and me) before I'd
  give up win95. The list goes on :)
 
 Actually all of that list is possible, with the possible exception
 of M$Word...

Even then... Word-like word processor doesn't have to be Word...
StarOffice or WordPerfect?


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: printer woes

1998-02-03 Thread Ulf Jaenicke-Roessler
justin honold wrote:

 i'm running debian hamm with all the latest files off the
 ftp.debian.org/pub/dists/hamm directory.  lpr 5.9-21 and magic filter
 1.2-17.  anyways, i have some problems.  my printer (hp deskjet 660c) will
 not print at ALL after installing magic filter.  i've forced a new config
 with no dice.

I had the same problem (though I'm using lprng). The reason was, that the
printer daemon couldn't execute the installed filter program. It was owned
by root and belonged to root's group, 'rwx' permissions were only set for
the owner (ie root).
I solved it by chgrp lp filter-script and chmod 774 filter-script.

Some of this may be caused by the umask setting of root: I'm using 077. I
don't know if this is a good idea or not, because I already had some trouble
with other installation scripts. Are there any opinions about that?

On the other hand, mailfilter should do this chown root.lp or
chown lp.lp itself! I hadn't time to check if this is already reported as
bug.

Well, I hope, this helps.

  Ulf

--

 #include signature


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: adduser in hamm dumps core !

1998-02-03 Thread Oleg Krivosheev

hi, all

On Tue, 27 Jan 1998, Joost Kooij wrote:

 On Tue, 27 Jan 1998, Oleg Krivosheev wrote:
 
  On Tue, 27 Jan 1998, Joost Kooij wrote:
  
ADDUSER STILL DUMPS CORE 
   
   Anyway, the newest version of perl-* fixes this. 
  
  hmm
  yesterday i've installed perl 5.004-4 dated Jan 26. Is there
  newset version ?
  
  i'll check and report.
 
 Hmm, might be something else funny then.

yep... ;)

 Actually, I had problems similar to yours myself a week ago and it went
 away only after some drastic measures that I shouldn't advocate on
 debian-user. 
 
 I purged perl, perl-debug, perl-suid and all perl related libraries and
 modules. Only perl-base I kept. I had to use --force-depends on dpkg or I
 would have had to remove and afterwards reinstall a lot of other packages.

guess what - it helps !!!

just did it this weekend - adduser and other stuff are
back to normal

 Then I reinstalled perl-base and installed perl and the rest.
 
 It worked again after that and I never found out what had been the cause
 of the problem.
 
 A couple of days later, after I had learnt about the Handle.pm fileversion
 problem, I installed bo-base on a collegue's pc and immediately after that
 upgraded to hamm. On his system, I saw perl programs dump core and it was
 in that case indeed caused by Handle.pm. Removing the file solved the
 problem there.

but i didn't have Handle.pm before and don't have it now.
It should be some other cause...

 Cheers,


still perl dumped core on sample script posted by Kirk ;(


thanks and regards

OK


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: NY Times article on Netscape and free software in general

1998-02-03 Thread JD Thomlinson
A URL for the Times article:

http://search.nytimes.com/books/search/bin/fastweb?getdoc+cyber-lib+cyber-lib+19330+16+wAAA+Denise%7ECaruso

Best Regards, JohnT
--
Improvement succeeded each other so rapidly, that 
machines which had never been finished were 
abandoned in the hands of their makers, because 
new improvements had superceded their utility. 

Charles Babbage 'On the Economy of Manufactures', 1832


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: bo - Afterstep - colours

1998-02-03 Thread Martin Bialasinski
John Spence [EMAIL PROTECTED] writes:

 I only have 1meg video RAM and I run X at 1024x768 with 8bpp.
 
 I have a colour problem when I run Afterstep which results in the top 2
 wharf icons not displaying and causes Netscape to display in black and
 white.  This colour problem doesn't occur under any circumstances with the
 other w/managers.

You are simply running out of colors. With 8bpp you only have 256 colours,
and afterstep just uses too many of them (look at the gradient fills and
such).

If you configure fvwm2 to use gradient fills and many colorfull icons, it
will run out of colors as well.

I am surprised that netscape even started. As it is another
colorhog. Although you can start it with the -install argument, so it uses
fewer colors.

Ciao,
Martin


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: PPP problems

1998-02-03 Thread Martin Bialasinski
Charles [EMAIL PROTECTED] writes:

 one error to another.  I am at a loss as to my latest error that shows
 up in the ppp.log:
 Feb  2 21:28:48 charles pppd[343]: pppd 2.2.0 started by root, uid 
 Feb  2 21:28:48 charles pppd[343]: tcgetattr: I/O error
 Feb  2 21:28:48 charles pppd[343]: Exit
 If anyone can tell me what is causing this fault, and where I should
 look to fix it, I would appreciate it.
 As a side note, during boot it allocates ttyS0 as my modem, however, on
 my Windoze side it is allocated at com3.  This should mean that my modem
 needs to be configured for ttyS2 in linux correct??  I have tried

You have a interrupt conflict. Check /proc/interrupts. IRQ3 is for com1
and IRQ4 is for COM2 (unless you changed that). There shouldn't be other
hardware using these IRQs.

AFAIK you can't do IRQ sharing for the commports in Linux, so if have some
hardware using com1 and com3, you have to assign different irqs to them.

Ciao,
Martin 


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: www.lsl.com and debian

1998-02-03 Thread info

 Has anyone ordered from www.lsl.com for a Debian cd? can someone give me
 an e-mail address that could help me?

 I have ordered a Debian CD and o'reilly book from www.lsl.com, but after
 3 MONTHS, the goods are nowhere in sight. Repeat, 3 MONTHS. I have already
 paid my dues to them, btw. 

 3 Servers are waiting to be installed with Debian. But because of the
 delay, I was forced to install Redhat instead. :( 

Mr. Varon:

I have asked our warehouse to find out what happened to your order.  I
will check again to see if there is any record of it.

Sincerely,

Robert Kiesling

[EMAIL PROTECTED]


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: procmail and folders

1998-02-03 Thread Branden Robinson
On Tue, Feb 03, 1998 at 12:34:06PM +0100, [EMAIL PROTECTED] wrote:
 
 
 On Mon, 2 Feb 1998, Branden Robinson wrote:
 
  On Mon, Feb 02, 1998 at 11:31:17PM +0100, [EMAIL PROTECTED] wrote:
   -BEGIN PGP MESSAGE-
  [...]
  
  There's no point cc'ing a message to the mailing list if you're going to
  PGP-encrypt it.  Who on the mailing list were you supposing would read it?
 
 It was not PGP-encrypted, it was PGP-signed but anyway, what I wanted to do is
 to clearsign it so it would look like:

Oh, you're the person with that problem (well, actually according to Manoj I
guess everyone has it).  My apologies for biting your head off, then.  Sorry.

-- 
G. Branden Robinson |  The greatest productive force is human
Purdue University   |  selfishness.
[EMAIL PROTECTED]  |  -- Robert Heinlein
http://www.ecn.purdue.edu/~branden/ |


pgpBGa3yz5YoC.pgp
Description: PGP signature


Re: Win95 and Linux: Was: Verified Re: Unidentified subject!

1998-02-03 Thread Bob Nielsen
On 2 Feb 1998, Stephen Zander wrote:

 David E. Scott [EMAIL PROTECTED] writes:
 
  There are a whole suite of tools I'd need to be running on the linux
  side before I could make that switch. For example, I'd need to be
  running ppp and Navigator and Navigator's email before I'd consider
  dropping Win95. For another thing, I'd need a Word-like word processor
  and access to both the SCSI ZIP drive and the Cannon Bubble Jet 4300
  printer (the latter for resumes for both the wife and me) before I'd
  give up win95. The list goes on :)
 
 Actually all of that list is possible, with the possible exception
 of M$Word...

StarOffice's swriter is somewhat Word-like and will import MSWord .doc
files.

Bob

---
Bob Nielsen Internet: [EMAIL PROTECTED]
Tucson, AZ  AMPRnet: [EMAIL PROTECTED]
http://www.primenet.com/~nielsen/


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


xbanner bootpd

1998-02-03 Thread BRIAN SCHRAMM
 I installed both xbanner and all recommended files for it in Debian
 1.31 and it comes up with an error of Xbanner MSG: * Could not get
 the font, using 'fixed'  I have tried to install any font package
 under X and still get this message.

 1. How do I get this font?
 2. How do I modify the message and stile of the banner?

 Also, I have bootp on my system and I have it set up to give out IP
 addresses to some network devices.  It gives the addresses out fine
 but I have to type bootpd at the command line whenever I reboot the
 machine.  I have a bootp script in the init.d directory and have tried
 to follow the instructions on how to create the rest but so far it has
 not worked.

 Thanks for any help.

 Brian Schramm
 [EMAIL PROTECTED]


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: www.lsl.com and debian

1998-02-03 Thread Bob Nielsen
On Tue, 3 Feb 1998, A. M. Varon wrote:

 [Sorry for the offtopic theme.]
 
 Has anyone ordered from www.lsl.com for a Debian cd? can someone give me
 an e-mail address that could help me?
 
 I have ordered a Debian CD and o'reilly book from www.lsl.com, but after
 3 MONTHS, the goods are nowhere in sight. Repeat, 3 MONTHS. I have already
 paid my dues to them, btw. 
 
 3 Servers are waiting to be installed with Debian. But because of the
 delay, I was forced to install Redhat instead. :( 

FWIW, I've had very good experiences with LSL.  I think there is an email
link somewhere on their web site.

Bob
 
---
Bob Nielsen Internet: [EMAIL PROTECTED]
Tucson, AZ  AMPRnet: [EMAIL PROTECTED]
http://www.primenet.com/~nielsen/


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


irqtune

1998-02-03 Thread Serge Delorme
Hi all,

I'm trying to increase the speed of my ppp connection by any means
I can find. Thus I installed the deb package hwtools to use irqtune...

Problem is the module irqtune_mod.o won't load. Even when I do an
ismod as root I have the same error message:

couldn't find the kernel version the module was compiled for

Having recompiled the default kernel 2.0.29 in debian 1.3.1 to 2.0.30
(to get rid of scsi support and to make good use of kerneld ie: no modules
loaded at bootup) before installing hwtools and having not set
CONFIG_MODVERSIONS when configuring the kernel I recompile hwtools from
the sources...no luck.

Since english is not my natural language I'm begining to think I
made a mistake when compiling the kernel, maybe I should have go with
CONFIG_MODVERSIONS to yeswell before recompiling it I give a shot
here...

By the way the others modules load and unload ok under kerneld.

Thanks.
--
   --
   Serge Delorme ([EMAIL PROTECTED])
   Berthierville, Quebec
   Canada
   ABUSUS NON TOLLIT USUM
   --




--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: www.lsl.com and debian

1998-02-03 Thread Johann Spies
On Tue, 3 Feb 1998, A. M. Varon wrote:

 Has anyone ordered from www.lsl.com for a Debian cd? can someone give me
 an e-mail address that could help me?

Yes, I ordered a cd from them using Netscape and received it within 10
days in South Africa.

There is an email address on the cd: [EMAIL PROTECTED]



Johann Spies
[EMAIL PROTECTED]

Windsorlaan 19
Pietermaritzburg
3201
Suid Afrika (South Africa)
Tel/Faks Nr. +27 331-46-1310


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


RE: Sound Card Opti 931

1998-02-03 Thread Patrick Ouellette
I don't know if it will help or not, but there is a program called setcrystal 
that is included with the soundmodem utilities by Thomas Salier.  You can get 
to his home page at http://www.ife.ee.ethz.ch/~sailer/.  The program 
initializes the PnP card for WSS (many OPTi cards) or SB PnP.  His software was 
written to allow the use of amateur packet radio over a soundcard instead of 
the TNC usually required.

It looks to me as if there are two issues - does the kernel support the card 
and how do I set up the card.  Isuspect if you compile the kernel for MAD 16 
support, you will need to set the card up with a utility like setcrystal before 
loading the kernel sound driver.

Good Luck

Pat Ouellette

--
From:   NeuTroN
Sent:   Monday, February 02, 1998 6:42 AM
To: Antonio Doldo
Cc: debian-user@lists.debian.org
Subject:Re: Sound Card Opti 931

On Fri, 30 Jan 1998, Antonio Doldo wrote:

 NeuTroN wrote:
  
  I recently bought a system (Intel Pentium, 166 MMX) and it has a Sound
  Card that seems to be an OPTi 82C931. (At least that is how the
  software in DOS sees it and how Win95 detects it.) I guess Trust
  Computer Products resells OPTi sound cards, because There is an (extra)
  Trust label on the installation disks for Win(3.11/95). When I configure
  the kernel for normal sound blaster, 16 bits audio doesn't work. Well
  then, why not compile it for MAD16? After doing that, it didn't work at
  all.
  /usr/src/kernel-source-2.0.30/drivers/sound/mad16.c seems to support cards
  up to 82C930. Does anyone have suggestions?
  Thanx!
  
  Maarten Bezemer
 
[snip]
 I have a OPTi 82C924 and found a little solution:
 compile the kernel for SB and launch the 'linux.bat' from a dos
 partition
 (or a floppy dos)
 in the 'linux.bat' set the environment:
 SET MUSIC16=C:\MUSIC16
 C:\MUSIC16\SNDINIT /B
 C:\LINUX\LOADLIN.EXE zImage root=/dev/hdb1 ro
[snip]

I have done something like this (my directory for sndinit is c:\opti931),
and there is something that works in Linux. I recompiled kernel 2.0.30 for
SB and MPU. Now 8-bit audio does work, Wavetable-Midi also, but 16-bit
audio files (demo.wav with bplay for example) gives garbage out of the
speakers. Does anyone know where I can find a mad16.c that does support
OPTi 82C931 sound cards? As far as I know 2.0.32 still supports up to
82C930.

Can ayone help me?

 Maarten Bezemer
 Holland


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .




--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] .
Trouble?  e-mail to [EMAIL PROTECTED] .


fetchmail 4.3.6 vs. m$ exchange

1998-02-03 Thread D. W. Wieboldt
I am trying to run fetchmail in imap mode with a m$ exchange server.

With fetchmail  4.3.6-1, I get:

fetchmail: IMAP a0006 OK FETCH completed.
fetchmail: IMAP a0007 FETCH 1 RFC822.TEXT.PEEK
fetchmail: IMAP a0007 BAD Protocol Error: Invalid FETCH_ITEM in FETCH
command
fetchmail: IMAP a0008 LOGOUT
fetchmail: IMAP * BYE Microsoft Exchange IMAP4rev1 server version
5.5.1960.6 signing off
fetchmail: IMAP a0008 OK LOGOUT completed.
fetchmail: client/server synchronization error while fetching from nt_xchg
fetchmail: SMTP QUIT

At this point, fetchmail 4.3.6 hangs and has to be killed; it does not
retrieve the mail.

Downgrading back to fetchmail 4.3.5-1, it works just fine:

fetchmail: IMAP a0006 OK FETCH completed.
fetchmail: IMAP a0007 FETCH 1 BODY.PEEK[TEXT]
fetchmail: IMAP * 1 FETCH (BODY[TEXT] {321}
 (321 body bytes) 
fetchmail: IMAP )
fetchmail: IMAP a0007 OK FETCH completed.
fetchmail: message 1 was not the expected length (1112 != 560)
fetchmail: SMTP. (EOM)
fetchmail: SMTP 250 Mail accepted
 flushed
fetchmail: IMAP a0008 STORE 1 +FLAGS (\Deleted)
fetchmail: IMAP * 1 FETCH (FLAGS (\Deleted))
fetchmail: IMAP a0008 OK STORE completed.
fetchmail: IMAP a0009 EXPUNGE
fetchmail: IMAP * 1 EXPUNGE
fetchmail: IMAP * 0 EXISTS
fetchmail: IMAP a0009 OK EXPUNGE completed.
fetchmail: selecting or re-polling default folder
fetchmail: IMAP a0010 NOOP
fetchmail: IMAP a0010 OK NOOP completed.
fetchmail: IMAP a0011 LOGOUT
fetchmail: IMAP * BYE Microsoft Exchange IMAP4rev1 server version
5.5.1960.6 signing off
fetchmail: IMAP a0011 OK LOGOUT completed.
fetchmail: SMTP QUIT
fetchmail: SMTP 221 shiloh closing connection
fetchmail: normal termination, status 0


Does anybody know if this a bug, or am I doing something wrong, like
failing to bow toward Redmond? 


Thanks!  
-- 
[EMAIL PROTECTED] . . . . . . .  My other computer runs Linux!

The sooner all the animals are extinct, the sooner we'll find their money.
- Ed Bluestone


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: Last login by UNKNOWN

1998-02-03 Thread Alexander Kushnirenko
 Alexander Kushnirenko [EMAIL PROTECTED] writes:
 
  Last login: Mon Feb  2 09:32:36 CST 1998 by [EMAIL PROTECTED]
  
  What is the reason it doesnot recognise my user name?
  Is it a problem on my Debian node or remote node I telnet to?
 
 Do you have a identd running on the debian box? Usually it is run by inetd
 or xinetd.
 
Hm-m-m-m, Apparantly not.  Among related processes I only see:
  110  ?  S  0:00 /usr/sbin/inetd 

The line in my /etc/inetd.conf describing identd is the following:
$ grep -i ident /etc/inetd.conf
ident   stream  tcp nowait  nobody  /usr/sbin/identdidentd 
-i

Is something wrong in this startup line?

Thank you,
Sasha.


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Laptop prob with Deb. 1.3.1

1998-02-03 Thread Timothy Bostrom
I just bought a Toshiba 440CDX and tried to install Debian 1.3.1.  Every
time I put the boot disk in the floppy, the laptop would reboot right after
it gets done decompressing the kernel and says loading Linux... Finally,
after countless times, I was able to get it to boot and install the
distribution.  Only now I can't get it to boot again... I'm using LILO to
do a dual-boot to Win95 (its for work only, guys!) and whenever I choose
Linux to boot it reboots... 95 works fine... I'm at a loss... I know of
people who have other distributions of Linux running on the same exact
laptop so I don't think it's the latop...  I've tried popping out all of
the PCMCIA cards and booting but it still reboots...   

Any bright ideas?


Timothy Bostrom 
San Diego State University
Telecommunications and Network Services
[EMAIL PROTECTED] (619) 594-2407


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


PPP daemon

1998-02-03 Thread Jean Oswald
Hello

I still did not manage to run the PPP daemon.
When I use modprobe ppp, the system answer me :

/lib/modules/2.0.29/net/ppp.o: unresolved symbol dev_alloc_skb_Re1879ac7

/lib/modules/2.0.29/net/ppp.o: unresolved symbol dev_close_Rfd6b3489
/lib/modules/2.0.29/net/ppp.o: unresolved symbol
tty_register_ldisc_R0e272753
/lib/modules/2.0.29/net/ppp.o: unresolved symbol
unregister_netdev_R8ca4afc9
/lib/modules/2.0.29/net/ppp.o: unresolved symbol kill_fasync_R689dfeeb
/lib/modules/2.0.29/net/ppp.o: unresolved symbol n_tty_ioctl_R2aa2a57a
/lib/modules/2.0.29/net/ppp.o: unresolved symbol netif_rx_R4c16cac7
/lib/modules/2.0.29/net/ppp.o: unresolved symbol dev_kfree_skb_R7154554e

/lib/modules/2.0.29/net/ppp.o: unresolved symbol
register_netdev_R1a0543c6

What shall I do to avoid these errors messages and to have PPP daemon
running properly

Sincerely yours
jean OSWALD

mailto:[EMAIL PROTECTED]


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: irqtune

1998-02-03 Thread Martin Bialasinski
Serge Delorme [EMAIL PROTECTED] writes:

 Problem is the module irqtune_mod.o won't load. Even when I do an
 ismod as root I have the same error message:
 
 couldn't find the kernel version the module was compiled for

There were some problems with with irqtune because hwtools has (had?) a
rather outdated version of it. Get a new one from the irqtune homepage
(sorry, don't know the URL; check infoseek.com) and try this one.

Ciao,
Martin


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: Laptop prob with Deb. 1.3.1

1998-02-03 Thread Steve Hsieh
Try using the tecra bootdisks inside disks-i386/special to see if you can
boot linux via floppies. If that works for you, then you're probably
encountering the same bug that many laptop people have had to deal with,
namely that kernels made with 'make bzImage' will not boot. If so, then
all you need to do is recompile a new kernel made with make zimage instead
of make bzimage.


On Tue, 3 Feb 1998, Timothy Bostrom wrote:

 I just bought a Toshiba 440CDX and tried to install Debian 1.3.1.  Every
 time I put the boot disk in the floppy, the laptop would reboot right after
 it gets done decompressing the kernel and says loading Linux... Finally,
 after countless times, I was able to get it to boot and install the
 distribution.  Only now I can't get it to boot again... I'm using LILO to
 do a dual-boot to Win95 (its for work only, guys!) and whenever I choose
 Linux to boot it reboots... 95 works fine... I'm at a loss... I know of
 people who have other distributions of Linux running on the same exact
 laptop so I don't think it's the latop...  I've tried popping out all of
 the PCMCIA cards and booting but it still reboots...   
 
 Any bright ideas?
 
 
 Timothy Bostrom 
 San Diego State University
 Telecommunications and Network Services
 [EMAIL PROTECTED] (619) 594-2407
 
 
 --
 TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
 [EMAIL PROTECTED] . 
 Trouble?  e-mail to [EMAIL PROTECTED] .
 


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


[Q] Editing kanji in X

1998-02-03 Thread Sudhakar Chandrasekharan
Hi,

I am looking for a easy to use kanji editor for X.  Is there one that is
already packaged with Debian (hamm)? 

S.
-- 
   Besides, it is a victimless crime.  The only victim is Moe.
   -- Home J. Simpson
Sudhakar C13n   (650) 937-2354 (O)
International Websites Engineer (650) 940-1896 (H)
 http://people.netscape.com/thaths/


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: How to downgrade?

1998-02-03 Thread Adam Klein
On Tue, Feb 03, 1998 at 10:51:08AM -0500, T-SNAKE wrote:
 OK, since I didn't get any responce on my previous questions (but one) I have
 another way to ask this one:
 How can I downgrade from libc5 version 5.4.33-6 to version 5.4.33-3?
 I have the -3 version, but accidentally installed the -6 one first, and
 then when I tried to install some other packages, their dependencies were on
 5.4.33-3 and didn't like to be associated with 5.4.33-6.
 Should be an easy fix, but I can't seem to (for the life of me) figure out how
 to do it. Please help.

Just execute the command 'dpkg -i path of -3 package'.

Adam Klein


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


How to mount at boot

1998-02-03 Thread T-SNAKE
How do you mount all the drives/partitions at boot time without having to
actually type in the mount -t msdos / command?

Chris
-- 
'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\
 Live on Real Audio Thursday nights 8-11 EST http://www.uvm.edu/~wruv
T-SNAKE  [EMAIL PROTECTED] ICQ UIN:1868354  A DJ on a mission
CROSSFADE RECORDS  http://www.crossfade.com/  Drug free techno
,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: How to mount at boot

1998-02-03 Thread Ben Pfaff
   How do you mount all the drives/partitions at boot time without having to
   actually type in the mount -t msdos / command?

Put it in /etc/fstab.  `man mount' and `man fstab' explain the syntax.


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


RE: Kernel Configurations

1998-02-03 Thread Kristian Strickland
Hi,

In my haste, I deleted the digest which brings up this question,
however, within the last few days someone asked how to tell how a debian kernel
is configured.

In /usr/src/kernel-source-2.0.xx (in my case 30 (soon to be 32)) there
is a file named .config .  In it are all the options specified when I ran
make to configure it in the first place.

--Kristian


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: How to mount at boot

1998-02-03 Thread Sebastian Kuzminsky
T-SNAKE [EMAIL PROTECTED] wrote:
] How do you mount all the drives/partitions at boot time without having to
] actually type in the mount -t msdos / command?


   Add the partitions you want mounted to your /etc/fstab.  See the
fstab(5) man page for details.




Sebastian


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: Kernel Configurations

1998-02-03 Thread Dale Smith
On Tue, 3 Feb 1998 17:09:13 -0400 (AST), you wrote:

Hi,

   In my haste, I deleted the digest which brings up this question,
however, within the last few days someone asked how to tell how a debian kernel
is configured.

   In /usr/src/kernel-source-2.0.xx (in my case 30 (soon to be 32)) there
is a file named .config .  In it are all the options specified when I ran
make to configure it in the first place.

Can this file be used with another kernel?  Say I have the .config form 2.0.29,
and I want to build 2.02.33 with the same options.  Can I just cp the file to
the new source directory?  Do I have to run make config again and accept all the
defaults?

Thanks,
   Dale

-- 
Dale P. Smith
[EMAIL PROTECTED]
Cleveland Linux Users Group: http://cleveland.lug.net/


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] .
Trouble?  e-mail to [EMAIL PROTECTED] .


LPRng and Magicfilter

1998-02-03 Thread Jeffrey Velez
I'm trying to print to a Novell 4.11 HP Laserjet 4 printer using a
JetDirect Box using LPRng and Magicfilter.  I can print to it, but it
prints out like this:

THIS IS A TEST
THIS IS A TEST 
THIS IS A TEST

My printcap file looks like this:

rlp|Remote HP LaserJet 4 printer entry
:lp=/dev/lp1
:rm=129.171.67.10
:rp=PQ_MNS_HELPDESK_DPG_4
:sd=/var/spool/lpd/ljet4
:if=/usr/sbin/ljet4-filter
:pl#66
:pw#80
:pc#150
:mx#0
:sh

Can anyone tell me if this printcap file is ok?





--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


gv doesn't work

1998-02-03 Thread AJT60

Um, gv doesn't work on my hamm system. 
It seemed to install okay, but when you execute it, you get an error
message: 

gv: no message for missing resources

or something like that anyway.

The only thing I could think of is that this is something to do with the
new wiget sets (which, by the way, I'm not overly enthusiastic about.
Some of the 3d buttons look good, but others really suck. Especially the
scrollbars. Any way to get the old Athena scrollbars back?). I did install
xaw-wrappers. 

Andrew



--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: man segmentation fault

1998-02-03 Thread fpolacco
On Mon, Feb 02, 1998 at 12:15:02AM +0100, Jens Ritter wrote:
 Gerald Wann [EMAIL PROTECTED] writes:
 
  Hello -
  
  I am getting a segmentation fault whe i invoke man from the
  command line. What are the possible causes of this error, please?
  
 This one reached the Faq-O-Matic. I said there:
 
 man or in this special case the binary from the package man-db uses a
 database (you guessed it already, no?), which sometimes can get
 corrupted. This database is updated once a week by
 /etc/cron.weekly/man-db. You can rebuild the database at any time by
 running man-db or mandb as root. If the segmentation faults do not
 vanish, keep looking.
 

This corruption is due to failed search in the man database by the
info program, don't know if because of a bug in bash or in info
itself.

The man-db version in experimental, compiled for bo, takes care of
this. It is not in bo-unstable because it needs an updated less or
more package, or a PAGER var env set.


fabrizio
-- 
| [EMAIL PROTECTED][EMAIL PROTECTED][EMAIL PROTECTED]
| LĂ­der Minimo del Pluto- Debian Developer  Happy Debian User
| 6F7267F5 fingerprint 57 16 C4 ED C9 86 40 7B 1A 69 A1 66 EC FB D2 5E
 more than 34 months are needed to get rid of the millennium. [me]


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: Kernel Configurations

1998-02-03 Thread Manoj Srivastava
Hi,

Newer kernels sometimes have new config options, so just
 dropping an old .config file in does not always work. My advice is to
 always run make (menu.x)?config again.

manoj
-- 
 Let us go forth not as defenders of the status quo, but as crusaders
 with a revolution idea - that government should be the servant and
 not the master of the people; that its purpose is to protect, not
 deny, each man's freedom; that the purpose of a free press is to
 liberate, not enslave the human spirit.  From the speech made by
 A. S. Hills upon taking office as President of the Inter-American
 Press Association
Manoj Srivastava  [EMAIL PROTECTED] http://www.datasync.com/%7Esrivasta/
Key C7261095 fingerprint = CB D9 F4 12 68 07 E4 05  CC 2D 27 12 1D F5 E8 6E


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


User manager for X

1998-02-03 Thread Rob
Hi All,

A while back a friend of mine showed me a Red Hat machine they were
running at work.They had X setup, and there was some sort of user
manager tool they had up there, which supposedly came with the system.
It did all kinds of snappy things like add and remove users, allowing
you to pick shells, and automatically setting up default config files
for the selected shells.

Anyone know what that was? Running anything similar?

Rob



--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: Win95 and Linux: Was: Verified Re: Unidentified subject!

1998-02-03 Thread Ender Wigin
-BEGIN PGP SIGNED MESSAGE-

 Seth,
   StarOffice4.0 is rather impressive. The Win 95 version looked very
 interesting during the time it was tested. I'll be interested in seeing
 the Linux version when it's released.
 Dave

Acording to http://freshmeat.unreal.org Star Office 4 has been released
for linux... (Haven't had time to confirm...)

- -K

-BEGIN PGP SIGNATURE-
Version: 2.6.3a
Charset: noconv

iQB1AwUBNNeWfxsA5GylAiwdAQH7pwMAqCWhuPof0mvbCrcK2cFd2sdgVWgUm40Z
HPHA4evi+mHfGnIt+KYsH0GMaGL4VgK525AricNd1iGLMOh1a52H7fsIYzJCJmeD
NQrGbknVUINCy79KW4z1GAsVSPgE6Xc2
=sWQg
-END PGP SIGNATURE-


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


FAT32 support in hamm.

1998-02-03 Thread Alexander Kushnirenko
Hello,

Is there FAT32 support in hamm, or one need to install a patch?

Thank you,
Sasha.


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


confused in NM

1998-02-03 Thread Dave Mallery

i still can't get my Xserver to allow me to change resolutions.  it 
accepts the first available ModeLine in XF86Setup and rejects the
rest with:
(**) P9000: Mode 1024x768: mode clock =  75.000
(**) P9000: Mode 1280x1024: mode clock = 108.000
(--) P9000: The dimensions of mode 1280x1024 do not match those of
the first valid mode (1024x768).
(--) P9000: Removing mode 1280x1024 from list of valid modes.
(--) P9000: Virtual resolution set to 1024x768

i don't have a clue what 'dimension' it is talking about.

from /etc/X11/X11Config:

# The accelerated servers (S3, Mach32, Mach8, 8514, P9000, AGX, W32,
Mach64)

Section Screen
Driver  accel
Device  Diamond Viper VLB 2Mb
Monitor Nanao flexscan
Subsection Display
Depth   8
Modes   640x480 800x600 800x601 1024x768 1280x1024
ViewPort0 0
EndSubsection
Subsection Display
Depth   16
Modes   640x480 800x600 1024x768
ViewPort0 0
EndSubsection
Subsection Display
Depth   24
Modes   640x480 800x600
ViewPort0 0
EndSubsection
Subsection Display
Depth   32
Modes   640x480 800x600
ViewPort0 0
EndSubsection
EndSection

and earlier:

# 640x480 
#ModeLine 640x480 31 640 664 704 832  480 489 492 520
# 800x600
#ModeLine 800x600 45 800 856 976 1040  600 637 643 666
# another 800x600
#ModeLine 800x601 50 800 856 976 1040  600 637 643 666
# 1024x768
ModeLine 1024x768 75 1024 1048 1184 1328  768 771 777 806
# 1280x1024
ModeLine 1280x1024 108  1280 1307 1483 1664  1024 1032 1040 1068

any one of these will work...

i can't discern anything wrong.

i'd appreciate any insight.

-=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- 

Dave Mallery, K5EN
po box 520; ramah nm  87321

running Debian GNU/Linux.Free at last



--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: Laptop prob with Deb. 1.3.1

1998-02-03 Thread bhmit1
For many laptops, especially the toshibas, try the tecra patched disks in
the special directory.

Brandon

On Tue, 3 Feb 1998, Timothy Bostrom wrote:

 I just bought a Toshiba 440CDX and tried to install Debian 1.3.1.  Every
 time I put the boot disk in the floppy, the laptop would reboot right after
 it gets done decompressing the kernel and says loading Linux... Finally,
 after countless times, I was able to get it to boot and install the
 distribution.  Only now I can't get it to boot again... I'm using LILO to
 do a dual-boot to Win95 (its for work only, guys!) and whenever I choose
 Linux to boot it reboots... 95 works fine... I'm at a loss... I know of
 people who have other distributions of Linux running on the same exact
 laptop so I don't think it's the latop...  I've tried popping out all of
 the PCMCIA cards and booting but it still reboots...   

-
Brandon Mitchell [EMAIL PROTECTED]   We all know linux is great... it
PGP: finger -l [EMAIL PROTECTED]  does infinite loops in 5 seconds
Phone: (757) 221-4847  --Linus Torvalds


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


StarOffice in hamm

1998-02-03 Thread Alex Yukhimets
Hi.

After (sucessfull) attempt to install useing hamm disks and installing a
large number of packages over ftp I found impossible to use StarOffice.

Regardless of whether I use static or dynamic version, installer or
without, running setup always gives me segmentation fault.
Running inside gdb says that it happens in rindex().
Is it anything known? 

Another thing - in the staroffice postinst script,
checking for motif is a little bit not working: after reading
/etc/ld.so.config into array, it would be better to chop the array first
before trying to concatenate with /libXm.so.2.


Thanks.

Alex Y.
-- 
   _ 
 _( )_
( (o___   +---+
 |  _ 7   |Alexander Yukhimets|
  \()|   http://pages.nyu.edu/~aqy6633/  |
  / \ \   +---+


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .