strcpy HELP!!!!

1998-04-17 Thread Phil
I'm using libc6 2.0.7pre1-4 and strcpy gives me a segmentation
error!
I've attached my C test program for inspection(source only).

I only do a few things.  malloc memory for a variable(forgot a
corresponding free)
copy a string in this varible, copy this string to another
string, print both
on the screen.  The exact error message is attached to the
source.

I will now check bug track.

Thanks in advance 

Philip

-- 
  _ 
 _ \ \   From Witomatic Keep, 
   / \_\ |   Home of Witwerg the Sage
  |  //o_/ | -- 
| \ \_/  Weilding GCC and Linux 2.0.33
 \ \_Tschuss!  Auf Wiedsehen!#include stdlib.h
#include stdio.h
#include string.h

void main(void)
{
char *temp1, *temp2;
temp1 = malloc (10);
strcpy (temp1, high all);
strcpy (temp2, temp1);
printf(%s %s, temp1, temp2);
}
/* error --- program recieved signal SIGSEGV, Segmentation Fault.
 * 0x40050be7*/


Re: Setting system time?

1998-04-17 Thread Mark Phillips

 tzconfig  -  sets your timezone
 date  -  sets your system clock
 hwclock   -  sets your hardware clock
 xntp  -  keeps your system time correct by reference to Internet
  timeservers

What is the difference between hwclock and clock, between xntp and
netdate?  And which package contains hwclock and xntp?

Thanks,

Mark.
__
_\/___\__/___Mark_Phillips___/
\__/_\__/--\__/[EMAIL PROTECTED]/
\__/HE___\__/--APTAIN/   
\__/_\__/--\__/__/  /__To be is to do.__I. Kant___/
\__/__\__/___/  /__To do is to be.__A. Sartre_/
/__I am.God___/
/__Jesus did.___/


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


Re: Sound problems

1998-04-17 Thread Hamish Moffatt
On Thu, Apr 16, 1998 at 09:11:43AM -0400, Brandon Mitchell wrote:
 On Wed, 15 Apr 1998, Tristan Day wrote:
 
  Tkdesk always looks for one at /dev/audio and tells me that it doesn't
  exist. I know that /dev/audio doesn't exist but how do I get it there? I
  looked for a sound card driver package, and only found AWE ones and nas.
 
 Have you recompiled your kernel with audio support?  It's not enabled by
 default IIRC.

Until the modularized sound drivers are deployed with Debian
there's little point in providing sound pre-compiled; it would
match exactly one configuration of one sound card.

Red Hat have modularized drivers with 5.0, but from what I could see
of their sound configuration tool (which supports only the PnP SB),
their modularization patches are different to the ones used in
Linux 2.1.


Hamish
-- 
Hamish Moffatt, [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED]
Latest Debian packages at ftp://ftp.rising.com.au/pub/hamish. PGP#EFA6B9D5
CCs of replies from mailing lists are welcome.   http://hamish.home.ml.org


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


Re: finding leftovers

1998-04-17 Thread Joey Hess
Marcus Brinkmann wrote:
 Normally, all directories that are not needed anymore are removed.
 
 In this special case, they are not.
 
 Marcus
 It's not a bug, it's a feature!

... but about a dozen bug reports are open against dpkg for this particular
feature at the moment, and I hope one day it will be removed.

-- 
see shy jo


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


Re: strcpy HELP!!!!

1998-04-17 Thread Ben Pfaff
This is your fault.  You need to allocate memory for temp2.

   void main(void)
   {
   char *temp1, *temp2;
   temp1 = malloc (10);
insert `temp2 = malloc (10);' here.
   strcpy (temp1, high all);
   strcpy (temp2, temp1);
   printf(%s %s, temp1, temp2);
   }


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


Re: debian 1.3.1 troubles

1998-04-17 Thread john
Joseph Carter writes:
 Congratulations, you're now part of dialout and can now ..  dialout!  The
 bad news is that SOMETHING at least on my machine keeps changing it back
 to mode 640!  This is naturally QUITE annoying.  Seems the only one that
 gets changed back is ttyS1, which leads me to believe pppd is doing it.
 Not a clue how at the moment.

From a quick glance at the source, pppd should save the mode and restore it
on exit.  I just tested this with pppd-2.3.3 on hamm.  Seems to work.
-- 
John Hasler
[EMAIL PROTECTED] (John Hasler)
Dancing Horse Hill
Elmwood, WI


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


Re: Software RAID configuration in hamm install?

1998-04-17 Thread Remco Blaakmeer
On Thu, 16 Apr 1998, Remco Blaakmeer wrote:

 On 15 Apr 1998, Jens Ritter wrote:
 
  Remco Blaakmeer [EMAIL PROTECTED] writes:
  
...but... you have make a mistake ;-) 
in hamm mdutils has been replaced by raidtools
   
   Yes, silly me. I knew that, I just didn't think of it.
  
  I always though raidtools is for 2.1.XX and mdutils for 2.0.xx
  
  Am I wrong?
 
 I think so. I couldn't find any requirements for 2.1 kernels in the
 raidtools package. From /usr/doc/raidtools/readme.txt.gz:
 
 =
 This is the release of the MD tools + RAIDtools.  This merges the
 utilities required to support for RAID-0 and Linear modes and 
 the RAID-1 tools.
 =
 
 The mdutils package only supports Linear and RAID0 modes, IIRC.

OOPS. The above is not true. You need kernel 2.1.63 or newer for the
raidtools package.

Remco


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


Re: Apache tilde question - Solved

1998-04-17 Thread Jason Costomiris
On Thu, Apr 16, 1998 at 12:28:01AM -0700, Tim Metz wrote:
: Thanks to those who replied regarding the apache question on 
: tildes/ScriptAlias.  I upgraded to Apache 1.3b5 and that seemed to fix the 
: problem.
: 
:  ScriptAlias /~smith/cgi-bin/ /home/smith/public_html/cgi-bin/

You've got a bigger problem at work here.

Your cgi-bin dir is potentially readable by HTTP clients.  BAD.

Locate it somewhere else on the filesystem.

-- 
Jason Costomiris | Linux...
[EMAIL PROTECTED]  | Find out what you've been missing 
http://www.jasons.org/~jcostom/ | while you've been rebooting Windows NT.
#include disclaimer.h | --Infoworld


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


Re: strcpy HELP!!!!

1998-04-17 Thread aqy6633
 #include stdlib.h
 #include stdio.h
 #include string.h
 
 void main(void)
 {
 char *temp1, *temp2;
 temp1 = malloc (10);
 strcpy (temp1, high all);
 strcpy (temp2, temp1);
 printf(%s %s, temp1, temp2);
 }
 /* error --- program recieved signal SIGSEGV, Segmentation Fault.
  * 0x40050be7*/

No wonder. You have to allocate memory for temp2 string before copying to it.
do temp2=malloc(strlen(temp1)+1); in between of two strcpy and everything's
gonna be OK.

Good luck.

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


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


Re: Setting system time?

1998-04-17 Thread Remco Blaakmeer
On Fri, 17 Apr 1998, Mark Phillips wrote:

  tzconfig  -  sets your timezone
  date  -  sets your system clock
  hwclock   -  sets your hardware clock
  xntp  -  keeps your system time correct by reference to Internet
   timeservers
 
 What is the difference between hwclock and clock, between xntp and
 netdate?  And which package contains hwclock and xntp?

hwclock is just newer than clock and replaces it. 

netdate and xntpd use different protocols for communication with the time
servers. The protocol used by netdate gives the time with an accuracy of
about one second, the ntp protocol is more accurate. Another big
difference between netdate and xntpd is that netdate sets the clock once
while xntpd is a daemon that connects to the server at regular intervals
and tries to correct drift even when not online.

Remco



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


Re: Newbie question (long)

1998-04-17 Thread shaul
 I just recompiled my kernel using kernel 2.0.32, and everything seems to
 work well, except when I boot I get the following error messages which I
 take it means I screwed something up.  (Is this because I configured serial
 support as a module?)  Any help would be appreciated.
 
 Apr 15 21:03:05 debian kerneld: started, pid=100, qid=0
 Apr 15 21:03:05 debian insmod: /lib/modules/2.0.32/misc/serial.o: unresolved
 symbol interruptible_sleep_on_R5f048a24
...
 symbol current_set_R05befc2c
 Apr 15 21:04:18 debian init: Switching to runlevel: 6
 Apr 15 21:04:24 debian modprobe: can't locate module binfmt-0
 Apr 15 21:04:24 debian modprobe: can't locate module binfmt-0
 

If you run Debian 1.3.1 and are using make-kpkg and dpkg -i then perhaps this 
might help:
before installing the new kernel (2.0.32) mv /lib/modules/2.0.29 (?) 
/lib/modules/2.0.29.old install new kernel and modules run LILO or wahtever 
(make new boot floppy) reboot
You might also have to edit /etc/modules. 

By the way, did you managed to get uname report correctly the compilation 
number of your kernel ? How ?


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


Re: Rookie trying to install 1.3

1998-04-17 Thread shaul
From what I know, laptop installation, and ThinkPad in particular, is a bit 
harder then regular PC instalation. Try to see if the HOWTO's on the CD may be 
of any help. Another pointer might be the documantaion in www.debian.org.

Not much, but hopefuly it will help.


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


xclock -sticky ?

1998-04-17 Thread shaul
I am running fvwm2.
I want that xclock will stick to the screen while I am moving to a different 
part of the screen (My screen is divided into 3x3 parts). How can I accomplish 
it with xclock command line ? How could I learn it without someone telling me 
that ?


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


Re: Newbie Questions...

1998-04-17 Thread shaul
 One warning, Running Linux is a *little* RedHat-centric. Shouldn't cause
 too much trouble tho...

There is a new version in the LDP, about 2 months old. It attempts to cover 
all the popular Linux distributions.


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


Re: Newbie question (long)

1998-04-17 Thread Alain Toussaint
 I just recompiled my kernel using kernel 2.0.32, and everything seems to
 work well, except when I boot I get the following error messages which I
 take it means I screwed something up.  (Is this because I configured serial
 support as a module?)  Any help would be appreciated.
 
 Apr 15 21:03:05 debian kerneld: started, pid=100, qid=0
 Apr 15 21:03:05 debian insmod: /lib/modules/2.0.32/misc/serial.o: unresolved
 symbol interruptible_sleep_on_R5f048a24
 Apr 15 21:03:05 debian insmod: /lib/modules/2.0.32/misc/serial.o:
 unresolved.

did you run:

make modules 

Alain



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


Re: xclock -sticky ?

1998-04-17 Thread Daniel Martin at cush
shaul [EMAIL PROTECTED] writes:

 I am running fvwm2.
 I want that xclock will stick to the screen while I am moving to a different 
 part of the screen (My screen is divided into 3x3 parts). How can I 
 accomplish 
 it with xclock command line ? How could I learn it without someone telling me 
 that ?

Well, I don't think that it can be accomplished with the xclock
command line.  However, if you put the appropriate Style line in, say, 
~/.fvwm2/post.hook, you can make xclocks sticky:
Style xclock Sticky

This is in the fvwm2 manpage.


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


X video problems

1998-04-17 Thread Kenneth F. Ryder III

Thank you to every one who helped me out with the mouse/modem problem,
both now work.  :)

I now can get into setup for X, I ran SuperProbe, which returned my card as 

Trident gui 9680
(with 2048 ram)
 so in the setup I picked Trident gui 9680 (generic)
I took the default settings for the Monitor horizontal and vertical sync
rates, because I do not have a book for my monitor PIXIE PBC-1450 (and I
hunted the net but never found any place that had my settings eighter)
 It ran the server, but the background was think gray and black vertical
lines, and after accepting the settings so were the xterms etc., none were
readable

Whats wrong?  is it my monitor settings, and if so does any one have the
magic numbers for my monitor?  

thanks again,


Ken


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


RE: strcpy HELP!!!!

1998-04-17 Thread Scott D. Killen
Phil,

You are copying the string to temp2 which has not been initialized and is a
NULL pointer.  You need to allocate memory of at least the same size as
temp1 to temp2 and
this will solve your problem.

Scott D. Killen
Scott Killen Software
http://www.skillsoft.com

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Behalf Of Phil
Sent: Wednesday, April 15, 1998 9:01 PM
To: debian-user@lists.debian.org
Subject: strcpy HELP


I'm using libc6 2.0.7pre1-4 and strcpy gives me a segmentation
error!
I've attached my C test program for inspection(source only).

I only do a few things.  malloc memory for a variable(forgot a
corresponding free)
copy a string in this varible, copy this string to another
string, print both
on the screen.  The exact error message is attached to the
source.

I will now check bug track.

Thanks in advance

Philip

--
  _
 _ \ \   From Witomatic Keep,
   / \_\ |   Home of Witwerg the Sage
  |  //o_/ | --
| \ \_/  Weilding GCC and Linux 2.0.33
 \ \_Tschuss!  Auf Wiedsehen!


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


RE: strcpy HELP!!!

1998-04-17 Thread Lee Brinton

Scott D. Killen writes:
 You are copying the string to temp2 which has not been initialized and is a
 NULL pointer.  You need to allocate memory of at least the same size as
 temp1 to temp2 and
 this will solve your problem.

When using C library string functions always allocate memory of at least the
length of the string pointed to by temp1 plus 1 byte to hold the string
termination character '\0'.

As in:

temp2 = (char*)malloc(strlen(temp1) + 1);

-- 
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Lee Brinton | [EMAIL PROTECTED]
PGP public key @ http://www.icubed.com/~6xtippet/pgp-public-key.asc
---
The objective is not to die for your country,
but to make the enemy die for his country.
-- Gen. George Patton
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=


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


Re: Using tix AND Blt with hamm system! HELP

1998-04-17 Thread The Thought Assassin
On Thu, 16 Apr 1998, Cormac McGuinness wrote:
 Now, after upgrading to hamm on one machine, it appears that tix41 requires
 tk8.0, but blt4.2 (actually BLT v2.3) requires tk4.2 ...
A raw 'hamm' install will not fully support BLT. You will have to upgrade
to the latest 'bacon' snapshot, and make sure that you have BLT-compliant
version of the lettuce and tomato packages.
Without these three important packages, your system will be toast.

7~he 7~hought /|ssassin


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


Re: Apache tilde question - Solved

1998-04-17 Thread Hamish Moffatt
On Thu, Apr 16, 1998 at 08:39:50PM -0400, Jason Costomiris wrote:
 On Thu, Apr 16, 1998 at 12:28:01AM -0700, Tim Metz wrote:
 :  ScriptAlias /~smith/cgi-bin/ /home/smith/public_html/cgi-bin/
 
 You've got a bigger problem at work here.
 Your cgi-bin dir is potentially readable by HTTP clients.  BAD.
 Locate it somewhere else on the filesystem.

Could you explain why? I can't see it. ~smith/cgi-bin will be
the only way to access the directory, so either they'll be executed
or they'll be sent. Scripts have to be readable (as well as executable),
of course.


thanks,
Hamish
-- 
Hamish Moffatt, [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED]
Latest Debian packages at ftp://ftp.rising.com.au/pub/hamish. PGP#EFA6B9D5
CCs of replies from mailing lists are welcome.   http://hamish.home.ml.org


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


Re: Strange umount permission denied

1998-04-17 Thread Robert Wilderspin
On 16 Apr 98 13:17:25 GMT, [EMAIL PROTECTED] wrote:

I keep getting an error message telling me that I can't unmount my CD drive.

The simplest thing this could be is that one of your shells has /cdrom
as their current directory.  You can't unmount until you cd out of
there.

(I'm sorry if that was patently obvious to you - there's always going
to be people that don't know that yet...)


Rob Wilderspin.
--
But I need it to crash once every few days - 
reboots are the only chance I get to sleep...
--= (send replies to rob@)


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


X11R6.4

1998-04-17 Thread Oz Dror
Is anyone going to port the X11R6.4 as a non-free package?
-Oz
-- 

NAME   Oz Dror, Los Angeles, California   
EMAIL  [EMAIL PROTECTED] Linux  since 8/15/94
PHONE  Fax (310) 474-3126

-BEGIN PGP PUBLIC KEY BLOCK-
Version: 2.6.2

mQBtAzA/tLQAAAEDAKUy/TEjQ/jiZ+9/WJb/+NHxqkvOxGZ3W/F2JCNm5v5ZTZz+
BVZC9GM/I+plQ8xz+7B+KhDSVax8gxNTAkJ+I7P/zAP2ZDMwVf4lq5ZFxMJC+7c7
ET+hNtmQUt8vCVR8hQAFEbQZT3ogRHJvciA8ZHJvckBuZXRjb20uY29tPg==
=EU23
-END PGP PUBLIC KEY BLOCK-





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


ISDN , Debian and MS Chap.

1998-04-17 Thread Liran Zvibel
Hello,

I'm currently accessing the net with a regular modem, but want to switch
to ISDN.
The ISP uses the M$ Chap protocol (Did Micro$oft developed that protocol,
or just gave it its name?) I know that KiSDN (of KDE) can connect, the
problem is I don't have KDE installed. 
Someone told me that I'd have to upgrade to kernel version 2.1.96
(currently 2.0.32) and get  the IDSN4Linux 2.1 beta. Is it true?

What will I have to install? (If it can be done.) I'd prefer not to use X
tools to connect, so I'll be able to connect from regular consule.

TIA,

Liran Zvibel.

---
http://www.math.tau.ac.il/~liranz/


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


Re: Laptop install

1998-04-17 Thread Damon Muller
Hi Jim,

I'm trying to help a friend install Linux from a laptop.  The problem is
that it can have a floppy or a CDROM drive installed, but not both.  The
solution seems to be to create an root/boot installation on a Win95 hard
disk, but I don't know how to do that.  Any suggestions?  No,
unfortunatly he can't boot from the CDROM.  Not supported in the bios.

Been there, done that grin

My problem was I didn't even have a CD-ROM I could plug in... 

Somewhere on the debian distribution is a file called rawwrite2 (I
believe), which you can use under a DOS based system to copy images onto
floppy disks. I'm not going to tell you how to do this tho, as it's all
laid out in a very readable, step-by-step fashion in the Debian
Installation manual. This should also be on your Debian CD somewhere.

Basically, make the 9 (I believe) install disks (yes, I know this is
tedius, but a lot more fun than installing Win95 by floppy!), and that will
take you through and install a working, but basic, debian installation.
From that point you should be able to mount the CD-ROM and install the rest
of the stuff. You could also do it via FTP from your Win95 machine using
ethernet is you have a PCMCIA network card.

Hope that helps,

damon



Damon Muller ([EMAIL PROTECTED])
Web Page:   www.sub.net.au/~tr  It's not a sense of humor. It's
ICQ UIN:2920281 a sense of irony disguised as one.
PGP Key ID: 0x232C09E1   - Bruce Sterling


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


RE: strcpy HELP!!!

1998-04-17 Thread Scott D. Killen
-BEGIN PGP SIGNED MESSAGE-

You are correct.  I was making specific assumptions based on the code
snippet
shown.

- -Original Message-
From: Lee Brinton [mailto:[EMAIL PROTECTED]
Sent: Friday, April 17, 1998 12:40 AM
To: debian-user Mailing List
Subject: RE: strcpy HELP!!!



Scott D. Killen writes:
 You are copying the string to temp2 which has not been initialized and is
a
 NULL pointer.  You need to allocate memory of at least the same size as
 temp1 to temp2 and
 this will solve your problem.

When using C library string functions always allocate memory of at least the
length of the string pointed to by temp1 plus 1 byte to hold the string
termination character '\0'.

As in:

temp2 = (char*)malloc(strlen(temp1) + 1);

- --
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Lee Brinton | [EMAIL PROTECTED]
PGP public key @ http://www.icubed.com/~6xtippet/pgp-public-key.asc
- ---
The objective is not to die for your country,
but to make the enemy die for his country.
-- Gen. George Patton
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=


- --
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact
[EMAIL PROTECTED]
-BEGIN PGP SIGNATURE-
Version: PGP for Personal Privacy 5.0
Charset: noconv

iQCVAwUBNTbulgrrqzzf5TWxAQEi2QP/Ye3hKW8cutHTZP415zAmxhBTdElHzJjx
e3j0Aq0MJ+gtDFcCNpraNygmoza2kc8s/wFT3k58npNELO63CaPmiFL2HJcQDiqh
BAdXHxN9toPVVrCYNNbRBK8b2gIb05nBOk6JsFzhW+uqtBv/Ha3mBT7kN/ae8/u8
w8werd/ml58=
=rj5a
-END PGP SIGNATURE-


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


Re: New drive---lilo warning

1998-04-17 Thread Mark Phillips

 Re-arrange your drives like this and let me know if it fixes the situation:
 
 HDA - ok
 HDC - Set as HDB
 HDB - Set as HDC (Linux does not care where additional partitions are)

I did almost this, except instead of swapping hdb and hdc, I simply
detached hdb temporarily.  Low and behold it worked!  So you are right,
for whatever reason, you are not allowed two bootable dos partitions at
once.  Stupid, but true.

So it means my drive is fine.  I have now wiped hdc and replaced it with a
linux swap and a linux ext2 partition.

By the way, I noticed that there is now a new type of partition, number
85, corresponding to linux extended - does anyone know what this is -
perhaps for partitions larger than 2 gig?

Thanks for your help.

Mark.
__
_\/___\__/___Mark_Phillips___/
\__/_\__/--\__/[EMAIL PROTECTED]/
\__/HE___\__/--APTAIN/   
\__/_\__/--\__/__/  /__To be is to do.__I. Kant___/
\__/__\__/___/  /__To do is to be.__A. Sartre_/
/__I am.God___/
/__Jesus did.___/


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


Re: Setting system time?

1998-04-17 Thread Oliver Elphick
Mark Phillips wrote:
  What is the difference between hwclock and clock, between xntp and
  netdate? 

Remco answered that.

  And which package contains hwclock and xntp?

hwclock is in util-linux

xntp is in xntp

(This is on hamm.)

-- 
Oliver Elphick[EMAIL PROTECTED]
Isle of Wight  http://www.lfix.co.uk/oliver

PGP key from public servers; key ID 32B8FAA1

 
Come to me, all you who labour and are heavily laden, and I will
give you rest. Take my yoke upon you, and learn from me; for I am
meek and lowly in heart, and you shall find rest for your souls.
For my yoke is easy and my burden is light.(Matthew 11: 28-30)



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


Re: Laptop install

1998-04-17 Thread Gernot Bauer
 I'm trying to help a friend install Linux from a laptop.  The problem is
 that it can have a floppy or a CDROM drive installed, but not both.  The
 solution seems to be to create an root/boot installation on a Win95 hard
 disk, but I don't know how to do that.  Any suggestions?  No,
 unfortunatly he can't boot from the CDROM.  Not supported in the bios.
 
Get the 6 install disks and boot with them. You will have a base-system
installed. Then reboot and FTP-INSTALL the system (takes about 2 hours
via ethernet-PCMCIA-adapter). Works pretty well.

Gernot


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


Re: XDM-start when?

1998-04-17 Thread Gernot Bauer
Thanx to all who replied. Its working very well now!!!

Gernot
-- 
--
Gernot BauerSalzburger Kredit- und Wechsel-Bank AG
email: [EMAIL PROTECTED]
Home: [EMAIL PROTECTED]


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


www.debian.org

1998-04-17 Thread Jason Gunthorpe

FYI,

We are aware that www.debian.org (va.debian.org) has gone missing - it is
being worked on.

An up to date mirror is at http://ftp1.us.debian.org

Jason


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


Re: strcpy HELP!!!

1998-04-17 Thread E.L. Meijer \(Eric\)
Lee Brinton:
 Scott D. Killen writes:
  You are copying the string to temp2 which has not been initialized and is
 a
  NULL pointer.  You need to allocate memory of at least the same size as
  temp1 to temp2 and
  this will solve your problem.
 
 When using C library string functions always allocate memory of at least the
 length of the string pointed to by temp1 plus 1 byte to hold the string
 termination character '\0'.
 
 As in:
 
 temp2 = (char*)malloc(strlen(temp1) + 1);

No they don't always.  From the strcpy man page:

   The  strcpy() function copies the string pointed to be src
   (including the terminating `\0' character)  to  the  array
   pointed  to by dest.  The strings may not overlap, and the
   destination string dest must be large  enough  to  receive
   the copy.

You have to allocate the space by yourself.  However, there is strdup:

NAME
   strdup - duplicate a string

SYNOPSIS
   #include string.h

   char *strdup(const char *s);

DESCRIPTION
   The  strdup()  function  returns a pointer to a new string
   which is a duplicate of the string s.  Memory for the  new
   string  is  obtained with malloc(3), and can be freed with
   free(3).

This function actually does the memory allocation for you.  More
information for aspiring C-programmers can be found typing `info libc',
provided you have the glibcdoc package installed (at least, that is
where the info file is kept on a bo system).

Eric Meijer

-- 
 E.L. Meijer ([EMAIL PROTECTED])  | tel. office +31 40 2472189
 Eindhoven Univ. of Technology | tel. lab.   +31 40 2475032
 Lab. for Catalysis and Inorg. Chem. (TAK) | tel. fax+31 40 2455054


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


Re: Laptop install

1998-04-17 Thread Daniel Mashao
On Thu, 16 Apr 1998, Jim Lynch wrote:

 I'm trying to help a friend install Linux from a laptop.  The problem is
 that it can have a floppy or a CDROM drive installed, but not both.  The
 solution seems to be to create an root/boot installation on a Win95 hard
 disk, but I don't know how to do that.  Any suggestions?  No,
 unfortunatly he can't boot from the CDROM.  Not supported in the bios.
 
You could make the 5/6 install disks and then install the base system.
Then later switch to the CDROM and install the whole system from there.

Also some laptops are hot-swappable, that may be an option for you OR you
could boot from the floppy if your bios allows that.
/---/
Daniel J. Mashao
Electrical Engineering[EMAIL PROTECTED]
University of Cape Town http://www.ee.uct.ac.za/~daniel 
Rondebosch, 7700, S. Africa(w) 27+21+650 2816   (h) 27+21+705 1233
/---/


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


AccelX on Debian

1998-04-17 Thread Jonas Bofjall
On Thu, 16 Apr 1998, Alex Yukhimets wrote:

 I used to run AccelX on Debian 1.3.1 with no problems.
 I did a custom install and installed ONLY server and fonts.

Did xdm work with your configuration?

thanks
  // Jonas [EMAIL PROTECTED] [2:201/262.37]


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


more on emacs and version control

1998-04-17 Thread Ulisses Alonso Camaro
-BEGIN PGP SIGNED MESSAGE-

Hi all

I would like to know if there is a way to customize emacs-vc to use by
default the master files (,v files) in other directories. I would like to
keep all master files in a ROOT-MASTER-FILES/PATH where the real file is
directory

Thanks in advance,

Ulisses
- -
Computers are useless. They can only give answers.Pablo Picasso

-BEGIN PGP SIGNATURE-
Version: 2.6.3a
Charset: latin1
Comment: PGP public key avaliable at http://www.rediris.es/cert/keyserver

iQB1AwUBNTch/Q/N+5+NQ63pAQHfnQL+J/biRI6brd6ytpoe+6AnogX+egabZBvS
545vSU4DbEpIwVV3UG66VJlu9hKs0BXPTdCfUbxr/8Lo43QPA9vWhbej65JXDdFX
Xl+xuvGOgd+E9vePieqq3rtKkvY1lyR7
=Rt0z
-END PGP SIGNATURE-


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


bash_2.01.1-1 segfaults

1998-04-17 Thread ramin
-BEGIN PGP SIGNED MESSAGE-

Hi!
I have problems installing this version of bash: postinst-script segfaults.
Other scripts using /bin/sh also get segfaults now and loggin in with the new
bash isn´t possible :-( .
I am currently logged in as root with an old (bo) bash, so the system is quite
useabel. I have the latest libc6, ncurses3.4 and libreadlineg.
Previous Version of bash was 2.01-5.
So, if there is anyone out there who can help.

Thanks,
Ramin 
  

- 
E-Mail: [EMAIL PROTECTED] Date: 17-Apr-98 Time: 11:21:39
- 
-BEGIN PGP SIGNATURE-
Version: 2.6.3ia
Charset: noconv

iQCVAwUBNTcjLfQ9+Dm4/+DZAQH7oAP/RhGOPSHL24G0Tmo8X1oqUG1IafFZT2KU
XnSOBElj5cPPfE6+iOIUbGbHwgPZ/wGALRNIssb0r8IS0skIxJ1nTibS+ZMQJQ6K
diDRxuYZx00V/W8qx/li12OK6UjPpCPpP6mq4G05VkZyU1KW9KVDy4YuONJ5MExg
Ax/nKpDAOV4=
=ouYk
-END PGP SIGNATURE-


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


Re: strcpy HELP!!!

1998-04-17 Thread Alex Yukhimets
 Scott D. Killen writes:
  You are copying the string to temp2 which has not been initialized and is a
  NULL pointer.  You need to allocate memory of at least the same size as
  temp1 to temp2 and
  this will solve your problem.
 
 When using C library string functions always allocate memory of at least the
 length of the string pointed to by temp1 plus 1 byte to hold the string
 termination character '\0'.
 
 As in:
 
 temp2 = (char*)malloc(strlen(temp1) + 1);

When doing strcpy(temp2,temp1) ???
How could it possibly do that?  It cannot change the value of temp2,
it is passed by value. Please read man strcpy.

Good luck.

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


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


Re: AccelX on Debian

1998-04-17 Thread Alex Yukhimets
 On Thu, 16 Apr 1998, Alex Yukhimets wrote:
 
  I used to run AccelX on Debian 1.3.1 with no problems.
  I did a custom install and installed ONLY server and fonts.
 
 Did xdm work with your configuration?

Yes. Actually I used X only via xdm.

Alex Y.

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


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


Debian2.0 and tetex

1998-04-17 Thread Gernot Bauer
I tried to install tetex today but one package (I think it was
tetex-base) still had the wrong version-number :(

Anyone working on this?
-- 
-
Gernot Bauer   Salzburger Kredit- und Wechsel-Bank AG
eMail: [EMAIL PROTECTED] (Office)   Makartplatz 3, 5024 Salzburg
Home: [EMAIL PROTECTED]   Austria/Europe
 Phone: ++43-662-8684-364
The answer is yes, me.   Fax: ++43-662-8684-44364


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


2 problems : one with the numéric +, and one with emacs !

1998-04-17 Thread Pierre Dupuis
Hello,

I'm still expecting a problem using my numéric + key,

i can change my window configuration with ctrl + alt + (+) because in
the xterm, + is , ; ihave tried a lot ok keymap configuration but no one
is ok ;((

I also expecting another problem when i want to start emacs
ans error occured : segmentation fault
  (core dumped)

I don't know if this is important but the file libc.so is missing on my
system...


PS : if someone know if a JDK 1.1.4 in order to make icq work properly
  is availlable for the debian, he can inform me :)

Bye and thanks in advance

--

Pierre Dupuis
[EMAIL PROTECTED]


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


zlib1g/xpm4g problem

1998-04-17 Thread Adrian Monk

I have upgrade using autoup, and am now having some problems
installing zlib1g (required by rpm and other progs) and xpm4g
(required by icewm, fvwm2 etc.), using dpkg -i, as:

xpm4g confilicts with xpm4.7 (=3.4j-0)
zlib1g zlib1 (=1.1.0.4.7)

I am hesitant of removing xpm4.7 and zlib1, as I don't know what other
packages that might break.

Anyone one know the workaround t this problem?

TIA

Adrian Monk


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


newbie boot ?

1998-04-17 Thread Gil Nielsen
Hi, Am real new to this. Just installed debian base system from floppys. it
went fine. I am booting with the custom floppy and it hangs at md driver
0.35 MAX-MD-Dev=4 MAX-REAL=8 for about 10 min. before it continues
booting. Is there a way to delete this line? or should'nt I? Thanks


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


kde : using kdm instead of xdm

1998-04-17 Thread Graham Lillico +44 1785 248131
Hi all,

I am trying to use kdm instead of xdm, but when I run it I can not login it
just says 'login failed'.  I know the password I am using is correct.  I am
wondering if it is because I have shadow passwords installed.  Has anyone else
had this problem?

Regards

Graham


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


Printing to Windows 95

1998-04-17 Thread Mario Filipe
-BEGIN PGP SIGNED MESSAGE-

Hi

I've looked in the How-to's but i still don't think that things are going to
work. First the Printing Howto mentions a mini howto (couldn't find it). Second
it mentions smbprint wich I couldn't find in my debian installation!

So the questions are :

where is the mini-howto ?
Where is smbprint ?
How do i get this thing working (the hard part has something to do with putting
something in the spool directory, etc)

BTW : I have a printer on my machine, was working perfectly. Now it doesn't
print. I didn't change nothing. This has already happened once but then after a
few days it wen't away (started printing fine again), now it's back. If i do
cat ... | lpr and then lpq I see some weird stuff there, namely a line saying
Unspooler ??? What's this ? Does anyone have a clue about how to solve this ?

Thanks.

P.S - Please CC to me. Thanks


Mario Filipe
[EMAIL PROTECTED]
http://neptuno.sc.uevora.pt/~mjnf

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

iQEVAwUBNTc+P5iyznf+xIrhAQGl1Qf+LO4JrnYAlg0dA+8vFUR5l9WbxqNvukIc
+9iY6zWthUL3DNfdrSQdiTRor+AU9rlzsHErTqHGo0JdiJtlL1Ge0fEcHLD5F56Y
W0eqCTjia7pywSMqGrVw+OxMMsSgVhoio7oLykG2ZstnMDbZrXLL9zLBI8zTbhnu
J1eM/9+uVwjMKCY1QJNkey+PQgUP1gPiXv74mA6m+01lLFkW05B8WZJKyIZbE1/8
0FMefmnln7jtQsUPNSwH94qFjmfixrR+RCP40cs1LwYg9ZEMAtOnJyx9yRTvEmV2
CwBv+TBY091KlvHmc7NPKDTp8Kinu2ozXnwDYAC5tlzyEL6W/DzqBQ==
=kd3z
-END PGP SIGNATURE-


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


Re: Debian2.0 and tetex

1998-04-17 Thread Anthony Fok
On Fri, 17 Apr 1998, Gernot Bauer wrote:

 I tried to install tetex today but one package (I think it was
 tetex-base) still had the wrong version-number :(
 
 Anyone working on this?

It is stuck in Incoming.  Get the latest tetex-* packages from:

 http://llug.sep.bnl.gov/debian/Incoming

orftp://llug.sep.bnl.gov/debian/Incoming

Anthony



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


Re: kde : using kdm instead of xdm

1998-04-17 Thread Colin Telmer
On Fri, 17 Apr 1998, Graham Lillico +44 1785 248131 wrote:

 I am trying to use kdm instead of xdm, but when I run it I can not login it
 just says 'login failed'.  I know the password I am using is correct.  I am
 wondering if it is because I have shadow passwords installed.  Has anyone else
 had this problem?

I have just started using it and have always had shadow passwords on. Did
you install the debian archive kde or the kde deb files from the kde site?
I used the ones that I found inbetween hamm and Incoming on
ftp.debian.org. Cheers.

--
Colin Telmer, Ottawa, Ontario, Canada
mailto:[EMAIL PROTECTED]
http://www.telmer.com


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


Re: Printing to Windows 95

1998-04-17 Thread Mario Filipe
-BEGIN PGP SIGNED MESSAGE-


On 17-Apr-98 Paul McDermott wrote:
 hi, the mini howto's are at the linux documentation project under a

Looked over there, could find it :(

 directory called mini.  you can get to the lpd website from debian's.
 smbprint program is in the samba package.  I think there is a samba howto.

OOO ! It was right here under my eyes and I couldn't see it. thanks!

Mario Filipe
[EMAIL PROTECTED]
http://neptuno.sc.uevora.pt/~mjnf

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

iQEVAwUBNTdSa5iyznf+xIrhAQGTDAf+Icq4/jCSj6tDOweBacHjmpDB0vPyrGdZ
Pdjl5dj+httFC9FPqFLkhb5j7P0aK3otU+PUWtP7eaynDyi2V/onuPSID+nhzuaH
plCglSCpUpDRLbWZhPpDgqXi2KpZ+Ab4d0AJseUz5m02LRrMkeaCh+TEw0scDzXT
q3nRk6juKPwfR9aeE/SolRiLdNt+qK8pzsxmaujNSY4POiPfugwaWKyEFiztI8Ba
b4uyN4rvNe8Q4aOetCbbjKk/6a57lLfSzoYS7Qb7hKRyK+ZzRBvb0pQKtyj0sxL9
JsrsM+KlaZ0V/Ngg6Zy9RlDAmA0uu7NmYy+2CYXwZ9eMgOZuNBo36Q==
=+w3O
-END PGP SIGNATURE-


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


Re: Edit Program

1998-04-17 Thread C.J.LAWSON
Try jed..

-Jon.

===

In any war, the first casualty is the truth.

--anon

On Thu, 9 Apr 1998, Pete Poff wrote:

 Is there a edit program that I can use without X-WIN that will allow
 me to copy and paste?  If so, where can i find it.
 
 Thanks,
 
 Pete Poff
 E-Mail Address: [EMAIL PROTECTED]
   [EMAIL PROTECTED]
 
 
 --
 To UNSUBSCRIBE, email to [EMAIL PROTECTED]
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]
 
 


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


Re: kde : using kdm instead of xdm

1998-04-17 Thread Graham Lillico +44 1785 248131
 On Fri, 17 Apr 1998, Graham Lillico +44 1785 248131 wrote:
 
  I am trying to use kdm instead of xdm, but when I run it I can not login
it
  just says 'login failed'.  I know the password I am using is correct.  I
am
  wondering if it is because I have shadow passwords installed.  Has anyone
else
  had this problem?
 
 I have just started using it and have always had shadow passwords on. Did
 you install the debian archive kde or the kde deb files from the kde site?
 I used the ones that I found inbetween hamm and Incoming on
 ftp.debian.org. Cheers.

I used .deb file but not from the debian site as they are beta2, I have bete3
from the kde site as it come in .deb format.  I think what Paolo suggested will
work, but I am sure I have seem a seperate script for kdm (to replace the
'/etc/init.d/xdm' script) but I can't remember where I found it, I think this
may have been ok KDE's web site so I will check again there, but I will try
Paolo's suggestion first, unless anyone could tell me the address of this
supposed script is.

Thanks 

Graham


 
 --
 Colin Telmer, Ottawa, Ontario, Canada
 mailto:[EMAIL PROTECTED]
 http://www.telmer.com


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


pppd flakines and hamm CDs

1998-04-17 Thread Stephen Carpenter
I finnally resolved my computer problems (thanx to everyone who
helped) by getting a nice new motherboard
Now I have reinstalled debian and have upgraded to hamm
before my crash I had a bo system, which I upgraded to hamm...
but I had set up PPP to work to my ISP under bo...
with this installation I run Autoup.sh and upgrade to hamm before
the first dselect of the bo install...so bo ppp never gets installed
I am using ppp_2.3.3-4.deb (from my hamm disk)
the whole setup has changed from what I remember and I can not get it to
work
I edited /etc/chatscripts/provider
with my ISP dialup number, username and password
I turned off auth, and gave pon a try
(I also tried invoking ppd by command line direct)
what happens is this:
I get 2 processes pppd and chat (obviously)
it sits there and never dials
but if I killall pppd then as soon as pppd diesI hear my modem
pick up
(and one time even started to dial)
it keeps happening like this...it just doesn't seem to want to work
(also BTW should I use /dev/cua0 or /dev/tttyS0 ? I have tried both to
no avail)
my plan is to remove the ppp package (already doen that actually)
and install the bo ppp (not done that yet)
I got tired ands went to bed b4 I tried
also...
Since my hamm CD is both poorly organized and pre-freeze
I thought I would make a new one today...anyone care to give me a tree
listing
of thec correct hamm CD directory structure (so I have a better idea how
to layout
my disk)
I am doing it by hand because disk space is a major concern for me
(unfortunately)
-Steve

--
-=Signature has been removed because it made an unfair comparison
between NT 4 and Linux =-
replacement: (ok I admit...I am bored..its a slow day at work)
[EMAIL PROTECTED] ~]$fortune -o
Anything more than 3 shakes is for fun.



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


Re: Strange umount permission denied

1998-04-17 Thread Daniel Martin at cush
[EMAIL PROTECTED] (Robert Wilderspin) writes:

 On 16 Apr 98 13:17:25 GMT, [EMAIL PROTECTED] wrote:
 
 I keep getting an error message telling me that I can't unmount my CD drive.
 
 The simplest thing this could be is that one of your shells has /cdrom
 as their current directory.  You can't unmount until you cd out of
 there.

You can find out which processes (if any) are using a given filesystem 
with:
fuser -m /dev/hdc


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


Re: How to recover???

1998-04-17 Thread C.J.LAWSON
When I get these kind of panics, the first thing I reach for is my
'Installation' diskettes!! ... I suggest you try that and see..

-J.

===

In any war, the first casualty is the truth.

--anon

On Fri, 10 Apr 1998, T-SNAKE wrote:

 OK, last night I was trying to set up X again (my vid card has an OAK 087
 chipset, which I think isn't correctly supported...). After running the setup,
 I ran xdm to run X. The screen started to blink madly... not letting me do
 anything. This has happened before, but this time I wasn't able to alt-fX to
 get another terminal to commence a shut down, so I ^-alt-del. I thought it was
 shutting down fine, but when I rebooted I got the following messege after
 loading the kernel and all kinds of other stuff:
 --start transcribing
 /dev/hda2 contains a filesystem with errors, check forced
 Duplicate or bad blocks in use!
 
 /dev/hda2: Unexpected Inconsistency, RUN fsck MANUALLY
   (i.e., without -a or -p options)
 
 fsck failed, Please repair manually and reboot.
 Please note that the root file system is currently
 mounted read-only. To remount it read-write:
 # mount -n -o remount,rw/
 Control-D will exit from this shell and REBOOT the system.
 
 Give root password for maintenance
 (or type Control-D for normal startup):
 
 ---end transcribing
 /dev/hda2 is my root partition.
 When I give the password, it flashes some lines quickly and then continuously
 scrolls  something about passwd not found.
 I thought booting from a linux boot disk would be of help, but it only goes to
 the same place. I thoguht the resue disk might be of assistance, but not that
 I could tell.
 * How the heck do I recover? **
 Man, I'll never get this machine going. I can't get sendmail to work either.
 thanks,
 Chris
 Screw X, I think I give up on it, having never gotten it to function correctly
 (other than getting it to actually run, but do nothing).
 -- 
 '\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\,/'\
  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, email to [EMAIL PROTECTED]
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]
 
 


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


Re: bash_2.01.1-1 segfaults

1998-04-17 Thread Daniel Martin at cush
[EMAIL PROTECTED] writes:

 Hi!
 I have problems installing this version of bash: postinst-script segfaults.
 Other scripts using /bin/sh also get segfaults now and loggin in with the new
 bash isn´t possible :-( .
 I am currently logged in as root with an old (bo) bash, so the system is quite
 useabel. I have the latest libc6, ncurses3.4 and libreadlineg.
 Previous Version of bash was 2.01-5.
 So, if there is anyone out there who can help.

Are you certain that you have version 2.1-8 of the libreadlineg2
library installed?  The only time I've heard of anything like this is
when bash was installed without this library being installed first.


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


Re: Sound problems

1998-04-17 Thread Graham Pople
  Tkdesk always looks for one at /dev/audio and tells me that it doesn't
  exist. I know that /dev/audio doesn't exist but how do I get it there? I
  looked for a sound card driver package, and only found AWE ones and nas.
 
 Have you recompiled your kernel with audio support?  It's not enabled by
 default IIRC.

OK, I've just had exactly the same problem so I can help you on this
one. First download the package kernel-source, and all the files it
links to on it's page. Install them all. Also, download tk8.0, tk
8.0-dev, tcl 8.0 and tcl 8.0-dev. Install them. Now, change into the
directory /usr/src/linux, then type 'make xconfig' while in X-windows.
Configure all the options you want, including sound support. Save and
exit. Now, in /usr/src/linux, type 'make dep ; make clean'. When that's
done (assuming there were no errors), type 'make zImage'. When that's
finished, go into directory /usr/src/linux/arch/i386/boot/. Your new
kernel, called zImage, should be there. Now, if you boot off floppy,
just replace the kernel image on your floppy disk with zImage, and
reboot with the floppy in.
Incidentally, after doing all this, I still get patchy midi sound
through kmidi. It will play bits (the same bits each time) of a song,
then just stop playing until a new song starts. Can anyone help me on
this?

Graham Pople ([EMAIL PROTECTED])
SNES emulators at Emulation One (http://www.jalna.demon.co.uk/index.htm)
All emulators at E1 Newsletter (http://www.jalna.demon.co.uk/e1news.htm)


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


Re: Debian2.0 and tetex

1998-04-17 Thread Graham Pople
I tried to install tetex today but one package (I think it was
tetex-base) still had the wrong version-number :(

Anyone working on this?

There is a version of tetex-base 0.9 to go with the available version of
tetex-bin 0.9. It's somewhere on Debian's FTP server, here:
ftp://ftp.debian.org/debian/dists/slink/main/binary-i386/tex/
Just right-click on the tetex-base0.9 directory, and select 'save as'.
It's not particularly stable, however. 

Graham Pople ([EMAIL PROTECTED])
SNES emulators at Emulation One (http://www.jalna.demon.co.uk/index.htm)
All emulators at E1 Newsletter (http://www.jalna.demon.co.uk/e1news.htm)


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


Re: (off-topic) cheap graphics station

1998-04-17 Thread C.J.LAWSON
I simply do NOT agree with that .. from my own PAINFUL experience P90's
are not worth their weight in worthlessness!! 

Other points taken 

J.
===

In any war, the first casualty is the truth.

--anon

On Sat, 11 Apr 1998, Shaleh wrote:

 The p90 is a good start.  The dual is over kill unless he is doing
 extremely intense modeling (which intel was never truly the best at
 anyway).  GIMP, Midnight Creator, and the soon to be released Blender
 are things to look into for him as well.  It is nice to see a parent who
 cares, from one whose parents are against him becoming a programmer --
 thanks.
 
 
 --
 To UNSUBSCRIBE, email to [EMAIL PROTECTED]
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]
 
 


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


Re: X11R6.4

1998-04-17 Thread Remco Blaakmeer
On Thu, 16 Apr 1998, Oz Dror wrote:

 Is anyone going to port the X11R6.4 as a non-free package?

I don't think so. X being big as it is, you'd need a large group of
developers to maintain and develop an XFree86-like port of X11R6.4. Those
people could spend their time much better and would probably spend their
time rather on the free X11R6.3 than on the non-free X11R6.4.

Remco


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


problem with security fix bind (bo-unstable)

1998-04-17 Thread Lee Bradshaw
Hi,

I installed the security fix bind from bo-updates.  I think this caused
nslookup to disappear.

freefall $ locate nslookup
/usr/bin/nslookup.sh

An old contents file shows:
usr/bin/nslookup net/bind
usr/bin/nslookup.sh  net/dnsutils

freefall ~ $ dpkg -s bind
Package: bind
Status: install ok installed
Priority: extra
Section: net
Installed-Size: 938
Maintainer: Johnie Ingram [EMAIL PROTECTED]
Version: 8.1.2-0.bo1
Replaces: netstd ( 2.00)
Depends: libc5 (= 5.4.0-0), netbase
Recommends: dnsutils
Suggests: bind-doc


-- 
Lee Bradshaw [EMAIL PROTECTED] (preferred)
Alantro Communications   [EMAIL PROTECTED]


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


ISDN , Debian and M$ Chap.

1998-04-17 Thread Liran Zvibel
Hello,
I sent this msg yesterday, but my server had some problems and I don't
know whether it reached you. If you already read this letter, I'm soryy.

TIA,

Liran Zvibel.

Here is the old message:

Hello,

I'm currently accessing the net with a regular modem, but want to switch
to ISDN.
The ISP uses the M$ Chap protocol (Did Micro$oft developed that protocol,
or just gave it its name?) I know that KiSDN (of KDE) can connect, the
problem is I don't have KDE installed. 
Someone told me that I'd have to upgrade to kernel version 2.1.96
(currently 2.0.32) and get  the IDSN4Linux 2.1 beta. Is it true?

What will I have to install? (If it can be done.) I'd prefer not to use X
tools to connect, so I'll be able to connect from regular consule.

TIA,

Liran Zvibel.

---
http://www.math.tau.ac.il/~liranz/


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


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


Re: How becoming a Super User

1998-04-17 Thread C.J.LAWSON
issue the command 'su root' and login as appropriate ... beware!!

-J.

===

In any war, the first casualty is the truth.

--anon

On Sat, 11 Apr 1998, Pierre Dupuis wrote:

 Hello
 
 I would like to know if someone know the command which is transform a
 simply user into a super user (that have same power as root).
 
 Thx
 
 --
 Pierre Dupuis
 Rédacteur du Music Review
 http://home.nordnet.fr/~pdupuis
 
 
 --
 To UNSUBSCRIBE, email to [EMAIL PROTECTED]
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]
 
 


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


Re: [OFF TOPIC] Linus Torvalds, the man of the century

1998-04-17 Thread C.J.LAWSON
I agree with you the man is not a Titan ... I once read somewhere 
'.. On no account should anything [or person] be worshiped, be revered or
be venerated. However if it is a thing done with all the skill of a master
craftsman [or is a master craftsman ] it [they] should be emphatically
respected ..' -LJKS

at least extend the man the curtsey of getting his name right

  Voting for Linus Tolrvalds is not a good idea.  The man is not a Titan,
Linus Torvalds

-J.

===

In any war, the first casualty is the truth.

--anon

On Sat, 11 Apr 1998, Orn E. Hansen wrote:

 
 Þann 10-Apr-98 skrifar Marcus Brinkmann:
  
 Total Percent
 richard rogers 636494 7.42
 henry ford 555916 6.48
 douglas macarthur 474770 5.53
 bill gates 468605 5.46  --- We can beat this poor rating!
 howard hughes 351237 4.09
 vehbi koc 350473 4.08
 steve jobs 336439 3.92
 murat arslan 205791 2.40
  
   Voting for Linus Tolrvalds is not a good idea.  The man is not a Titan,
 in any sense of the word... even less than Bill Gates.
 
   Making such silly votes, is sure to disrubt the balance and help put
 Bill Gates up on the list, or is *that* your intent? to make your
 favourite maggot Bill Gates the Titan of the century? Do you have the
 hots for the man?
 
   People like Henry Ford, and Douglas McArthur are far greater Titans,
 who are among those candidates people *should* spend their votes on.  Not
 on anal jokes, just because they have the hots for'em.
 
 
 Orn Einar Hansen [EMAIL PROTECTED]
   [EMAIL PROTECTED]
 voice+fax; +46 035 217194
 
 
 --
 To UNSUBSCRIBE, email to [EMAIL PROTECTED]
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]
 
 


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


Re: AccelX on Debian (a summary)

1998-04-17 Thread Chris


On Fri, 17 Apr 1998, Jonas Bofjall wrote:

 On Thu, 16 Apr 1998, Alex Yukhimets wrote:
 
  I used to run AccelX on Debian 1.3.1 with no problems.
  I did a custom install and installed ONLY server and fonts.
 
 Did xdm work with your configuration?
 
 thanks
   // Jonas [EMAIL PROTECTED] [2:201/262.37]
 


For those playing with accelX here is a brief summary of what it
does(note this is by no means an all inclusive list - just the things
I've noticed)


- replaces the file /usr/X11R6/lib/X11/xdm/xdm-config (which was
originally a symlink to /etc/X11/xdm/xdm-config in debian)

- replaces the file /usr/X11R6/lib/X11/xinit/xinitrc (which was
originally a symlink to /etc/X11/xinit/xinitrc)

- replaces the file /usr/X11R6/bin/X (which is usually a symlink in most
distributions - but not debian.  It is best to put the debian file back
here and change /etc/X11/Xserver to reference /usr/X11R6/bin/Xaccel - then
your Xaccel does not need to be setuid)

- replaces some files in /usr/X11R6/lib/X11/app-defaults (such as XTerm)

- I think it may also replace some apps (like xterm)


These will stuff up xdm, and your normal X configuration.  I found that
when I undid these changes it worked fine.


cheers,

Chris.



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


Re: bash_2.01.1-1 segfaults --SOLVED

1998-04-17 Thread ramin
-BEGIN PGP SIGNED MESSAGE-


On 17-Apr-98 Daniel Martin at cush wrote:
[EMAIL PROTECTED] writes:

 Hi!
 I have problems installing this version of bash: postinst-script segfaults.
 Other scripts using /bin/sh also get segfaults now and loggin in with the new
 bash isn´t possible :-( .
 I am currently logged in as root with an old (bo) bash, so the system is
quite
 useabel. I have the latest libc6, ncurses3.4 and libreadlineg.
 Previous Version of bash was 2.01-5.
 So, if there is anyone out there who can help.

Are you certain that you have version 2.1-8 of the libreadlineg2
library installed?  The only time I've heard of anything like this is
when bash was installed without this library being installed first.

Oops, ok it was only 2.1-7. Sorry.
Anyway:
$ dpkg -s bash
- -snip-
Pre-Depends: libc6, ncurses3.4, libreadlineg2 (= 2.1-4)
   ^
- -snip-
 
Thanks 
Ramin

- ---
E-Mail: [EMAIL PROTECTED] Date: 17-Apr-98 Time: 16:34:04
- 
-BEGIN PGP SIGNATURE-
Version: 2.6.3ia
Charset: noconv

iQCVAwUBNTdpHfQ9+Dm4/+DZAQGFggQAg40b0AX7ttchkJ25B8oj97vNM0x5cRgH
2lgt41NcV1nc7KoXSPrJBbKhoEvhBLB/ZX+Bzo+yR7wN5qe3U5BAi/1pE39/qzIf
hf/+TBnI3BlmVVN6KTiEnnNbJ/W2QPi2EUFORqsqvvszfyiD7EXXGltHRHeyA5qD
+n3N5k/jUt0=
=F47Z
-END PGP SIGNATURE-


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


Re: Windoze 95 is not multi-tasking, it just pretends it is multitasking.

1998-04-17 Thread C.J.LAWSON
Well for what it is worth my own opinion is that 95 just like its forbears
is an app. loaded on dos and for this reason I think we should be talking
about whether or not dos is a true multi-tasking OS ... It certainly is
capable of becoming one. The question is, has it be implemented?


-J.

===

In any war, the first casualty is the truth.

--anon


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


Re: Windoze 95 is not multi-tasking, it just pretends it is multitasking.

1998-04-17 Thread Mike Holliday
Check out OpenDos, by Cadera, it is a full multitasking OS.
-Original Message-
From: C.J.LAWSON [EMAIL PROTECTED]
To: debian-user mailing list debian-user@lists.debian.org
Date: Friday, April 17, 1998 9:49 AM
Subject: Re: Windoze 95 is not multi-tasking, it just pretends it is
multitasking.


Well for what it is worth my own opinion is that 95 just like its forbears
is an app. loaded on dos and for this reason I think we should be talking
about whether or not dos is a true multi-tasking OS ... It certainly is
capable of becoming one. The question is, has it be implemented?


-J.

===


 In any war, the first casualty is the truth.

 --anon


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



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


NiC Cards

1998-04-17 Thread Mike Holliday





Does anyone know if there is a .DEB package for 
a 3Com Fast Etherlink 10/100mb bus-master pci adapter?

Mike


where is tetex-base 0.9-1 ?

1998-04-17 Thread Steve Hsieh

For awhile now, tetex-bin in frozen has been requiring tetex-base =0.9-1
to install.  But that version of tetex-base doesn't exist in frozen.
Anyone know where it currently can be found?


dpkg: dependency problems prevent configuration of tetex-bin:
 tetex-bin depends on tetex-base (= 0.9-1); however:
  Version of tetex-base on system is 0.4pl8-7.
dpkg: error processing tetex-bin (--configure):
 dependency problems - leaving unconfigured



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


Re: Windoze 95 is not multi-tasking, it just pretends it is multitasking.

1998-04-17 Thread Mike Schmitz
On Fri, Apr 17, 1998 at 03:41:45PM +0100, C.J.LAWSON wrote:
 Well for what it is worth my own opinion is that 95 just like its forbears
 is an app. loaded on dos and for this reason I think we should be talking
 about whether or not dos is a true multi-tasking OS ... It certainly is
 capable of becoming one. The question is, has it be implemented?
 

DesQview, DoubleDos, NovelDOS, VM to name a few.

-- 
  Mike Schmitz [EMAIL PROTECTED]http://www.bend-or.com/~mschmitz   
  Don't blame me - I voted libertarian!http://www.lp.org/ 
  Use Debian Linux - the free Gnu/Linuxhttp://www.debian.org/
  ---
 If encryption is outlawed, only outlaws will have encryption 


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


Re: NiC Cards

1998-04-17 Thread Steve Hsieh
What do you mean by a .deb package for a NIC?  If you want networking
support for the 3com card, you should be using the 3c59x module or
building it into the kernel...


On Fri, 17 Apr 1998, Mike Holliday wrote:

 Does anyone know if there is a .DEB package for a 3Com Fast Etherlink
 10/100mb bus-master pci adapter? 
  
 Mike
 


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


Re: NiC Cards

1998-04-17 Thread Remco Blaakmeer
On Fri, 17 Apr 1998, Mike Holliday wrote:

 Does anyone know if there is a .DEB package for a 3Com Fast Etherlink
 10/100mb bus-master pci adapter? 

You don't need a .deb package for that. The driver is in the kernel. If it
is not in your kernel, you should compile your own kernel to get support
for the card.

Remco


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


Re: NiC Cards

1998-04-17 Thread Mike Holliday
Hi,
that is what I did use, but it refuses to accept it as my NiC, and it is the
right card

Mike
-Original Message-
From: Steve Hsieh [EMAIL PROTECTED]
To: Mike Holliday [EMAIL PROTECTED]
Cc: debian-user@lists.debian.org debian-user@lists.debian.org
Date: Friday, April 17, 1998 10:07 AM
Subject: Re: NiC Cards


What do you mean by a .deb package for a NIC?  If you want networking
support for the 3com card, you should be using the 3c59x module or
building it into the kernel...


On Fri, 17 Apr 1998, Mike Holliday wrote:

 Does anyone know if there is a .DEB package for a 3Com Fast Etherlink
 10/100mb bus-master pci adapter?

 Mike




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


Re: Windoze 95 is not multi-tasking, it just pretends it is multitasking.

1998-04-17 Thread The Thought Assassin
On Fri, 17 Apr 1998, C.J.LAWSON wrote:
 Well for what it is worth my own opinion is that 95 just like its forbears
 is an app. loaded on dos 
No. A program becomes an operating system when it installs it's
own interrupt servicing routies. Win95 does this, and though it kicks back
to DOS's interrupt handlers for some things, it does this via calls from
it's own handlers. DOS is merely used as a boot loader, and windows seems 
to forget to unload it.

 and for this reason I think we should be talking about whether or not dos is
 a true multi-tasking OS ... It certainly is capable of becoming one.
There is nothing to talk about. DOS is not a multitasking OS, and it
cannot become on without a major rewrite, (such as win95, which is a
poorly implemented, but nevertheless true multitasking OS) at which point,
we can't really call it DOS.

 The question is, has it been implemented?
Yes, they rewrote DOS and called it windows. it multitasks, but it isn't
DOS. (It does use DOS as a boot loader)

7~he 7~hought /|ssassin


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


Re: NiC Cards

1998-04-17 Thread Nathan E Norman
On Fri, 17 Apr 1998, Mike Holliday wrote:

: Does anyone know if there is a .DEB package for a 3Com Fast Etherlink
: 10/100mb bus-master pci adapter? 
:  
: Mike
: 

Cool, hardware debian packages!

The Free Hardware Foundation, hmmm 

--
Nathan Norman
MidcoNet - 410 South Phillips Avenue - Sioux Falls, SD  57104
mailto://[EMAIL PROTECTED]   http://www.midco.net
finger [EMAIL PROTECTED] for PGP Key: (0xA33B86E9)



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


Re: MAIL -- Configuration Help Please (Fetchmail/Smail)

1998-04-17 Thread Jaakko Niemi
 Can anyone give me a short and sweet rundown of what I need configured to
 get a working fetchmail system running?
 
 I have SMail set up and working (I can send E-mail from my system, and I can
 send/receive email between different accounts on my system).
 
 Now I want fetchmail to grab mail from my ISP, but I can't seem to get it to
 work properly.
 
 I have a ~/.fetchmailrc file that has my ISP user name and password.  I also
 added a line saying that I want mda formail -s procmail.  I have a
 .forward file in my home directory, and I have a .procmailrc file.
 
 If I run fetchmail -c it checks my ISP and notifies me I have X number of
 messages waiting.
 
 However, I can't get it configured so that it retrieves the mail and sends
 it to my account.  I can't tell if fetchmail is even running (I start it at
 login using start-stop-daemon -S --exec fetchmail -- -d 5000) although it
 shows up on TOP every now and then.
 
 How can I check if it's running, and if it's retrieving any mail, where is
 it putting it?

 Can you get the messages running fetchmail from command-line ?
 Something like fetchmail -v for verbose output.
 If I'm not wrong it should put mail in ´´/Mail .

--j



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


Re: NiC Cards

1998-04-17 Thread Mike Holliday
Thats fine and all, but seeing as I don't have any driver codes from 3Com
how would I go about writing a driver for it?

Mike
-Original Message-
From: Remco Blaakmeer [EMAIL PROTECTED]
To: Mike Holliday [EMAIL PROTECTED]
Cc: debian-user@lists.debian.org debian-user@lists.debian.org
Date: Friday, April 17, 1998 10:08 AM
Subject: Re: NiC Cards


On Fri, 17 Apr 1998, Mike Holliday wrote:

 Does anyone know if there is a .DEB package for a 3Com Fast Etherlink
 10/100mb bus-master pci adapter?

You don't need a .deb package for that. The driver is in the kernel. If it
is not in your kernel, you should compile your own kernel to get support
for the card.

Remco



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


Re: NiC Cards

1998-04-17 Thread Nathan E Norman
On Fri, 17 Apr 1998, Mike Holliday wrote:

: Hi,
: that is what I did use, but it refuses to accept it as my NiC, and it is the
: right card

It would be worth trying the 3Com diskettes and running 3C90XCFG.EXE ...
take the card out of PnP mode, try changing IRQs/IO ports ... the number
1 problem I've had with 905s was detection of the interface itself.  One
card would always autodetect the AUI rather than the RJ-45 port ... you
can control that in the config program as well.

: 
: Mike
: -Original Message-
: From: Steve Hsieh [EMAIL PROTECTED]
: To: Mike Holliday [EMAIL PROTECTED]
: Cc: debian-user@lists.debian.org debian-user@lists.debian.org
: Date: Friday, April 17, 1998 10:07 AM
: Subject: Re: NiC Cards
: 
: 
: What do you mean by a .deb package for a NIC?  If you want networking
: support for the 3com card, you should be using the 3c59x module or
: building it into the kernel...
: 
: 
: On Fri, 17 Apr 1998, Mike Holliday wrote:
: 
:  Does anyone know if there is a .DEB package for a 3Com Fast Etherlink
:  10/100mb bus-master pci adapter?
: 
:  Mike
: 
: 
: 
: 
: --
: To UNSUBSCRIBE, email to [EMAIL PROTECTED]
: with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]
: 

--
Nathan Norman
MidcoNet - 410 South Phillips Avenue - Sioux Falls, SD  57104
mailto://[EMAIL PROTECTED]   http://www.midco.net
finger [EMAIL PROTECTED] for PGP Key: (0xA33B86E9)



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


emacs and color-coding-code

1998-04-17 Thread Richard E. Hawkins Esq.

hmm.  I have the f90.el module for fortran 90.  On digitial unix, it happily 
color-codes my source.

The debian install seems to have a f90.elc which doesn't do the coloring.  I 
also tried switching that for the f90.el, but no dice.

any ideas on how to get the color?

rick



-- 
These opinions will not be those of ISU until it pays my retainer.



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


Re: NiC Cards

1998-04-17 Thread Ossama Othman
Hi,

I'm missing something here.  Are you saying that you added 3c59x (yes,
3c59x) to /etc/modules and your NIC wasn't found?  I have the very same
card (3C905) on two installations and they work fine.  However, I do not
have any AUI port on any of mine, as Nathan does.  Does the 3c59x module
exist in /lib/modules/2.0.x/net?  If not compile it as a module, install
it and reboot.

You don't have to write a driver, as you mentioned.  The driver already
exists, as stated above.

-Ossama
__
Ossama Othman [EMAIL PROTECTED]

--- PGP Keys ---
Public:  http://astrosun.tn.cornell.edu/staff/othman/OO_PUBLIC.asc
REVOKED: http://astrosun.tn.cornell.edu/staff/othman/OO_REVOKED.asc



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


Fonts in X [Off Topic]

1998-04-17 Thread Paul Rightley
I have been using gimp to produce some overheads lately (in the
hope that I can finally rid myself of the necessity of booting
into and Windows product).  However, when I create large text
(like 50 pixels high), it looks pretty pixelated - even if the
image itself has a much higher resolution.  Is there a way to
make smoother text?  Since gimp seems to use the X fonts, maybe
I just need a scalable (?) font in X?  I know nothing about adding
fonts to X (that are not conveniently provided by a debian
package).

Thanks for any assistance (even if it is just the fm to r),

Paul

P.S.  Thanks for the outstanding debian distribution, and the
support found on this list.


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


Re: NiC Cards

1998-04-17 Thread Remco Blaakmeer
On Fri, 17 Apr 1998, Mike Holliday wrote:

 Thats fine and all, but seeing as I don't have any driver codes from 3Com
 how would I go about writing a driver for it?

I thought the driver code is already in the standard kernel source code.
You only need to turn on the support for your card, check that all other
configuration matches your hardware, compile the kernel and boot it.

So, what is your real problem? Don't you know how to compile and install
your own kernel? Do you have a compiled kernel with the right driver that
still doesn't work with your card? Or what?

Remco


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


Re: Fonts in X [Off Topic]

1998-04-17 Thread Remco Blaakmeer
On Fri, 17 Apr 1998, Paul Rightley wrote:

 I have been using gimp to produce some overheads lately (in the
 hope that I can finally rid myself of the necessity of booting
 into and Windows product).  However, when I create large text
 (like 50 pixels high), it looks pretty pixelated - even if the
 image itself has a much higher resolution.  Is there a way to
 make smoother text?  Since gimp seems to use the X fonts, maybe
 I just need a scalable (?) font in X?  I know nothing about adding
 fonts to X (that are not conveniently provided by a debian
 package).
 
 Thanks for any assistance (even if it is just the fm to r),
 
 Paul
 
 P.S.  Thanks for the outstanding debian distribution, and the
 support found on this list.

I don't know where GIMP gets it fonts, but if it gets them from the X
server I think I have a solution for you. Take a look at the xfstt
package. This is a font server for X that handles TTF fonts. With it, you
can have all your favorite Windows fonts on your X display. Try it and see
if it works for you.

Remco


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


Re: [OFF TOPIC] Linus Torvalds, the man of the century

1998-04-17 Thread C.J.LAWSON

 Please drop personal attacks, especially vapid ones, from the lists.

Supported!!

-J.
===

In any war, the first casualty is the truth.

--anon


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


Re: NiC Cards

1998-04-17 Thread The Thought Assassin
On Fri, 17 Apr 1998, Ossama Othman wrote:
 have any AUI port on any of mine, as Nathan does.  Does the 3c59x module
 exist in /lib/modules/2.0.x/net?  If not compile it as a module, install
 it and reboot.
No, the whole point of it being a module is that you can just use insmod
to insert it, and you won't have to reboot at all.

7~he 7~hought /|ssassin


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


Re: emacs and color-coding-code

1998-04-17 Thread Peter S Galbraith

Richard E. Hawkins Esq. wrote:

 hmm.  I have the f90.el module for fortran 90.  On digitial unix, it happily 
 color-codes my source.

Do you have font-lock minor-mode turned on?

M-x font-lock-mode
 
 The debian install seems to have a f90.elc which doesn't do the coloring.  I 
 also tried switching that for the f90.el, but no dice.

bobar.elc is a `byte-compiled' version of foobar.el
If you change foobar.el, you need to `recompile' it.

M-x byte-compile-file [RET] foobar.el [RET]

-- 
Peter Galbraith, research scientist  [EMAIL PROTECTED]
Maurice Lamontagne Institute, Department of Fisheries and Oceans Canada
P.O. Box 1000, Mont-Joli Qc, G5H 3Z4 Canada. 418-775-0852 FAX: 775-0546
 ** New E-Mail. [EMAIL PROTECTED] is cut off **


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


Re: NiC Cards

1998-04-17 Thread Ossama Othman

  exist in /lib/modules/2.0.x/net?  If not compile it as a module, install
  it and reboot.
 No, the whole point of it being a module is that you can just use insmod
 to insert it, and you won't have to reboot at all.

Yes I know it isn't always necessary to reboot.  However, I just like to
keep modules.dep file up to date.  IIRC, I read somewhere that running
depmod doesn't always update the modules dependencies as necessary.  I
can't remember what documentation I saw this in but the docs said that
the modules.dep file should be erased and the system should be rebooted so
that modules.dep is rebuilt during the boot.  While this may not always be
necessary, I just got into the habit of doing it.

-Ossama




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


Re: emacs and color-coding-code

1998-04-17 Thread Jens B. Jorgensen
In your .emacs file you need:

(load-library hilit19)

Richard E. Hawkins Esq. wrote:

 hmm.  I have the f90.el module for fortran 90.  On digitial unix, it happily
 color-codes my source.

 The debian install seems to have a f90.elc which doesn't do the coloring.  I
 also tried switching that for the f90.el, but no dice.

 any ideas on how to get the color?

 rick

 --
 These opinions will not be those of ISU until it pays my retainer.

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



--
Jens B. Jorgensen
[EMAIL PROTECTED]



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


win95 fat32 and linux on the same machine

1998-04-17 Thread Benjamin Cant
Hi,

Is this a Windows95 FEATURE ;-)

When running Linux(Bo) an a machine with Windows95b(Fat32) 
the next time I run Windows it complains that the filesystem is in 
'MSDOS compatability mode' and will not load any virtual disk drivers 
(including my CD!). The only way I know to get Windows to use the 
32bit FAT again is to re-build the filesystem and re-install!.

The Win95 and the Linux root/swap partitions are on separate drives. 
I am not mounting the Window partition from linux.
I boot using a DOS floppy with LOADLIN and the installation  
kernel(2.0.29?) on it.

HELP!

Cheers, Ben.

Benjamin Cant

Aegis Integrated Solutions
6 Sun Street, Hitchin, Hertfordshire,
ENGLAND, SG5 1AE
Tel: 01462 438938
Fax: 01462 451755

E-mail: [EMAIL PROTECTED]


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


DEClaser 2100 Plus

1998-04-17 Thread Mario Filipe
-BEGIN PGP SIGNED MESSAGE-

Hi

It's me again. I'm now able to print to a windows 95 printer (sort of)!

The problem lies within the printer (the one in the subject).

First, when printing text the last page doesn't get ejected, i have to perform
a manual form feed :(. Second I can't find a filter that print's to this thing.

HAs anyone ever come in face with one of this beasts? Do you have an awnser
that might help me ?

Thanks!!!

Mario Filipe
[EMAIL PROTECTED]
http://neptuno.sc.uevora.pt/~mjnf

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

iQEVAwUBNTeBuZiyznf+xIrhAQHl/Qf+IUlQdrxIr3b4vwU88iYU+Fk3q0FJwbUK
MJ0+V8PtLqfqlYPjBrKiHaM7bKS5uJkBcz9JJ4r8rLiuEMnmmt1H4CgUmCzAnL09
I3pZztm3WnUXH9c01bQUlkPM6AHNRVZ6ZXQxLjRLaLfNdA/bZPeaZmL9vwIZkC/r
cRUlXmsn4ZbR7hJXxciM138Z0T1BbHpBMNCQtqUFiBvPJP8XifbKwSlw7EwGJjaR
s1oy/DDSKh6buw9GSDyHWj+kqW0FaWXdGEzPIQXi5YgAyCi6myoJpIUmOvnh+cjp
b0mau7jxIHBEBDSaNZqJPuDZ/hUgEDUmCgapOns3/7T+nvRNHffUAA==
=168v
-END PGP SIGNATURE-


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


Re: Windoze 95 is not multi-tasking, it just pretends it is multitasking.

1998-04-17 Thread C.J.LAWSON

On Fri, 17 Apr 1998, The Thought Assassin wrote:

 own interrupt servicing routies. Win95 does this, and though it kicks back
 to DOS's interrupt handlers for some things, it does this via calls from
That is just the point!

 it's own handlers. DOS is merely used as a boot loader, and windows seems 
 to forget to unload it.
I don't think it forgets to unload it ... It just can't ... it relies on
it for some things. To paraphrase you.


Jonathan

---
In any war, the first casualty is the truth.

--anon


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


Re: Windoze 95 is not multi-tasking, it just pretends it is multitasking.

1998-04-17 Thread C.J.LAWSON

On Fri, 17 Apr 1998, Mike Schmitz wrote:

 
 DesQview, DoubleDos, NovelDOS, VM to name a few.
 
I thought the context was W-95?


Jonathan
--

In any war, the first casualty is the truth.

--anon


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


Re: win95 fat32 and linux on the same machine

1998-04-17 Thread Mike Holliday
Hi,
I am also running windows 95's fat32 and linux on a single HDD, but I boot
my Linux off of a diskette. The only difference between our install is that
I used extended not dos on my linux partition when I first installed. Unless
you have partition magic I doubt that could could format that way, FDISK
does not provide it.

Mike
-Original Message-
From: Benjamin Cant [EMAIL PROTECTED]
To: debian-user@lists.debian.org debian-user@lists.debian.org
Date: Friday, April 17, 1998 11:20 AM
Subject: win95 fat32 and linux on the same machine


Hi,

Is this a Windows95 FEATURE ;-)

When running Linux(Bo) an a machine with Windows95b(Fat32)
the next time I run Windows it complains that the filesystem is in
'MSDOS compatability mode' and will not load any virtual disk drivers
(including my CD!). The only way I know to get Windows to use the
32bit FAT again is to re-build the filesystem and re-install!.

The Win95 and the Linux root/swap partitions are on separate drives.
I am not mounting the Window partition from linux.
I boot using a DOS floppy with LOADLIN and the installation
kernel(2.0.29?) on it.

HELP!

Cheers, Ben.

Benjamin Cant

Aegis Integrated Solutions
6 Sun Street, Hitchin, Hertfordshire,
ENGLAND, SG5 1AE
Tel: 01462 438938
Fax: 01462 451755

E-mail: [EMAIL PROTECTED]


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



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


Re: emacs and color-coding-code

1998-04-17 Thread John Maheu
I don't use the f90 mode but I do use the f77 mode. In emacs you can turn
on colours by  

ESC-X font-lock-mode (in the mini buffer) 

to turn on the f90 mode try

ESC-X f90-mode 

and to turn on abbreviation mode

ESC-X abbrev-mode

To avoid doing this every time you can setup your .emacs file for
defaults.

John 
*
John Maheu   phone: 545-2289 
Queen's University   email: [EMAIL PROTECTED]
Dept. of Economics
Dunning Hall 347
Kingston ON
Canada
K7L 3N6
**

On Fri, 17 Apr 1998, Richard E. Hawkins Esq. wrote:

 
 hmm.  I have the f90.el module for fortran 90.  On digitial unix, it happily 
 color-codes my source.
 
 The debian install seems to have a f90.elc which doesn't do the coloring.  I 
 also tried switching that for the f90.el, but no dice.
 
 any ideas on how to get the color?
 
 rick
 
 
 
 -- 
 These opinions will not be those of ISU until it pays my retainer.
 
 
 
 --
 To UNSUBSCRIBE, email to [EMAIL PROTECTED]
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]
 
 


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


Re: Fonts in X [Off Topic]

1998-04-17 Thread Paul Rightley
I am sorry if I am clueless...

I installed xfntscl and looked in /usr/X11R6/lib/X11/fonts/Speedo and Type1
for the fonts listed in fonts.scale (I assume that this is how one
determines if a font is scalable).  I then tried using these fonts
in gimp.  This worked the same way as before (strong pixellization
of the characters).  I know nothing of fonts in X.  Is there something
that I am doing wrong?  Is there a good reference on this sort of thing?

Paul

On 17-Apr-98 Ossama Othman wrote:
 Have you tried the xfntscl package?  Those fonts are scalable.
 
 -Ossama
 
 __
 Ossama Othman [EMAIL PROTECTED]
 
 --- PGP Keys ---
 Public:  http://astrosun.tn.cornell.edu/staff/othman/OO_PUBLIC.asc
 REVOKED: http://astrosun.tn.cornell.edu/staff/othman/OO_REVOKED.asc


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


Re: Fonts in X [Off Topic]

1998-04-17 Thread Paul Rightley
I have installed xfstt, but it seems to be documentation-poor.
I know nothing of fonts in X (or in Windows for that matter -
I guess I am the prototypical luser).  Where would I get some
TTF fonts and where would I put them to use them?  Are there
fonts of this sort that follow the DFSG (which I would prefer)?

Paul

On 17-Apr-98 Remco Blaakmeer wrote:
 On Fri, 17 Apr 1998, Paul Rightley wrote:
 
 
 I don't know where GIMP gets it fonts, but if it gets them from the X
 server I think I have a solution for you. Take a look at the xfstt
 package. This is a font server for X that handles TTF fonts. With it, you
 can have all your favorite Windows fonts on your X display. Try it and see
 if it works for you.
 
 Remco


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


Hamm Boot Disks

1998-04-17 Thread mike

Is there a semi stable set of hamm boot-disks out yet?  About a
month ago I tried them and ran into problems with missing perl libraries
on my run of dselect.
TIA,
mike...

Micro$oft, what do you want to spend today?


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


Permissions on /dev/ttyS1 (Was: Re: debian 1.3.1 troubles)

1998-04-17 Thread Bob Hilliard
 I have been troubled with intermittently changed permissions on
/dev/ttyS1, and have been searching for some cron job that might have
caused it.  Your comments about the pppd source gave me a clue.  I
thought that if pppd changes these permissions, then restores them on
exit, an abnormal exit could cause the problem.

 I just started ppp, then killed pppd with kill -9, and found that
the permissions on /dev/ttyS1 were now 640.  Also, /var/run/ppp1.pid
and /var/lock/LCK..ttyS1 were still in place, which would be
problematical for some modem operations.

 Why does pppd find it necessary to fiddle with these permissions
anyway?
 
Bob

you wrote:

Joseph Carter writes:
 Congratulations, you're now part of dialout and can now ..  dialout!  The
 bad news is that SOMETHING at least on my machine keeps changing it back
 to mode 640!  This is naturally QUITE annoying.  Seems the only one that
 gets changed back is ttyS1, which leads me to believe pppd is doing it.
 Not a clue how at the moment.

From a quick glance at the source, pppd should save the mode and restore it
on exit.  I just tested this with pppd-2.3.3 on hamm.  Seems to work.
-- 
   _
  |_)  _  |_   Robert D. Hilliard[EMAIL PROTECTED]
  |_) (_) |_)  Palm City, FL  USAPGP Key ID: A8E40EB9


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


afterstep-1.0 package somewhere?

1998-04-17 Thread Maarten Boekhold
Hi,

Does anybody still have an afterstep_1.0 package lying around? I 
accidentally installed 1.4, and I hate it. Completely new configuration, 
which I don't want to learn right now (other than that it looks very 
nice, though I already noticed some problems with the pager after less 
than an hour of use).

Maarten

ps. I want a libc6 package

_
| TU Delft, The Netherlands, Faculty of Information Technology and Systems  |
|   Department of Electrical Engineering|
|   Computer Architecture and Digital Technique section |
|  [EMAIL PROTECTED] |
-


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


Re: Bad/Counterfeit memory? [Was: Upgrading to hamm]

1998-04-17 Thread Jeff Noxon
FWIW,

I took the suggestion to try 2.0.32, and my system still acts up with
128M in it.  64M is fine.  I think it's the new SIMMs.  They don't fail
memtest86, but gcc and dselect won't work...

I haven't tried to test *just* the new SIMMs yet, but I'm suspicious of
them simply because they have a Micron Technology logo on the chips,
which has been carefully laser(?)-etched to the point where it's nearly
impossible to see.  There is a diamond pattern over the MT logo.

The outfit that sold them to me told me that they were Micron chips,
and it took me a *long* time to discern the MT logo at all.  I suspect
that they're rejects, or don't test out at 60ns like they're marked,
or something...  Can anyone verify this?  I tried them at 70ns and they
still don't work.

Be careful when buying Major brand memory, and get a commitment to
the manufacturer name in advance if possible.

Thanks,

Jeff


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


Re: more on emacs and version control

1998-04-17 Thread Keith Beattie
Ulisses Alonso Camaro wrote:
 Hi all
 
 I would like to know if there is a way to customize emacs-vc to use by
 default the master files (,v files) in other directories. I would like to
 keep all master files in a ROOT-MASTER-FILES/PATH where the real file is
 directory
 

This doesn't actually answeer your question and perhaps you've already
considered this, but you might be able to accomplish the same effect
by making your RCS directory a soft link to where you want the master
files to live.

HTH,
Keith


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


Re: finding leftovers

1998-04-17 Thread Luiz Otavio L. Zorzella
Marcus Brinkmann writes:

 On Thu, Apr 16, 1998 at 02:31:40PM -0700, Luiz Otavio L. Zorzella wrote:
 Marcus Brinkmann writes:
 
  On Thu, Apr 16, 1998 at 02:13:51PM -0700, Luiz Otavio L. Zorzella wrote:
  Marcus Brinkmann writes:
  
  $ dpkg -S /etc/xemacs20/site-start.d 
  dpkg: /etc/xemacs20/site-start.d not found.
  
  Note, though, that:
  
  1) this is a directory, and not a file!
  2) I already purged xemacs* !
 
  Sure. The directory is not empty when xemacs will be purged, because the
  conffiles are still in it. *After* this the conffiles will be deleted, but
  the directories remain.
 
  Only directories should be left over, and they are not doing much harm.
 
 So you're saying debian, by project, leaves directories behind? Too
 bad :^ Not that they are so evil, or take too much space, but as sure
 as it can be, it's not the Right Thing To Do (tm)...

 ONLY when in the directory a conffile was. This is because we differentiate
 between removing and purging. Removing does keep the conffiles (this is
 logged and good because you keep your configuration). If you want to get rid
 of the conf files, you purge the package, but then no directory clean up is
 done.

 Normally, all directories that are not needed anymore are removed.

 In this special case, they are not.

Thanks for the explanation.

Since we're talking about leftovers, these messages are, AFAIK, due to
leftovers from some packages, and they are not directories.

Can you tell me how to get rid of them? They appear in some dpkg -i
commands... 

ldconfig: warning: can't open /usr/lib/i486-linuxaout/libdb.so.1 (No such file 
or directory), skipping
ldconfig: warning: can't open /usr/lib/libext2fs.so (No such file or 
directory), skipping
ldconfig: warning: can't open /usr/lib/libe2p.so (No such file or directory), 
skipping
ldconfig: warning: can't open /usr/lib/libuuid.so (No such file or directory), 
skipping

Thanks.

-- 
Luiz Otavio L. Zorzella Product Engineer
[EMAIL PROTECTED]  http://www.conexware.com


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


  1   2   >