Paul Elliott | 2 Sep 2003 00:07
Picon

ldap to replace NIS


On a small uncomplicated LAN is there any way to get LDAP to
replace NIS without having a PHD in LDAP?

Thank You.

--

-- 
Paul Elliott                       1(512)837-1096
pelliott@...                    PMB 181, 11900 Metric Blvd Suite J
http://www.io.com/~pelliott/pme/   Austin TX 78758-3117
Don Mulvey | 2 Sep 2003 15:10
Picon
Favicon

Re: RH9 + Cisco Aironet350 + LEAP


>Don,
>How do you like that Slakware?

>do

I like it a lot.  Very stable.  It is on the small side but I like to pull
what I need for a small development system.  I have had problems with hard
hangs on the T20 after an hour or so ... but SW just keeps running ... it
has never hung.

-Don

Bill Eastman | 2 Sep 2003 16:42
Picon

my php script

If anyone downloaded 
http://home.austin.rr.com/beastman/linux/statecal.zip then you might 
want to download it again.  I found it didn't work right if the first 
day of the month was Sunday.  It also didn't calculate Leap Year 
correct.  These problems are fixed.

Bill

d oxford | 2 Sep 2003 16:19
Picon
Favicon

Re: A movement Strikes Back

Thanks Thomas, (spelling and grammer have never been my strong points).

Patch it up and send it to a friend

Talk to you soon

Denis

On Sat, Aug 30, 2003 at 10:52:51PM -0500, Thomas Cameron wrote:
> ----- Original Message ----- 
> From: "d oxford" <oxford@...>
> To: <alg@...>
> Sent: Saturday, August 30, 2003 8:03 PM
> Subject: [alg] A movement Strikes Back
> 
> 
> > LEAGAL ENTREPRENEURS and the LINUX MOVEMENT
> 
> {snip}
> 
> Nice - did you write this?  It needs a little bit of grammar and spell
> checking, but it's neat.
> --
> Thomas Cameron, RHCE, CNE, MCSE, MCT
> Cameron Technical Services, Inc.
> http://www.camerontech.com/
> (512) 454-3200
> 
> _______________________________________________
> ALG Mailing List http://austinlug.org/mailman/listinfo/alg
(Continue reading)

Carl Perry | 3 Sep 2003 00:34
Favicon

I'm back!

email is back up, The questions are:
	1) Will it stay up?
	2) Is everything spam?
--

-- 
	-Carl Perry
	caperry@...
	KD5TSA

"A PC without Windows is like a chocolate cake without mustard."
Matthew Hunter | 3 Sep 2003 00:48

Re: I'm back!

On Tue, Sep 02, 2003 at 10:34:25PM +0000, Carl Perry
<caperry@...> wrote:
> email is back up, The questions are:
> 	1) Will it stay up?
> 	2) Is everything spam?

Spam has been increasing exponentially since May or so.  Most of 
it is wormspew, or bounces from wormspew.  The increase has been 
bad enough to inspire me to write some anti-spam software, and 
it seems to be helping a lot:

http://www.infodancer.org/spamwatch/index.jsp

--

-- 
Matthew Hunter (matthew@...)
Public Key: http://matthew.infodancer.org/public_key.txt
Homepage: http://matthew.infodancer.org/index.jsp
Politics: http://www.triggerfinger.org/index.jsp

Tracey Grrl Geek | 3 Sep 2003 02:11

Re: I'm back!

And it was said by Carl Perry-->
> email is back up

rawk

--

-- 
Tracey
Linux Counter #264789
The day Microsoft makes something that doesn't suck is probably the day
that they start making vacuum cleaners. --Doc in alt.privacy

Donn aka n5xwb Washburn | 3 Sep 2003 04:01
Picon

Re: I'm back! or "I need your help"

Matthew Hunter wrote:
> On Tue, Sep 02, 2003 at 10:34:25PM +0000, Carl Perry
<caperry@...> wrote:
> 
>>email is back up, The questions are:
>>	1) Will it stay up?
>>	2) Is everything spam?
> 
> 
> Spam has been increasing exponentially since May or so.  Most of 
> it is wormspew, or bounces from wormspew.  The increase has been 
> bad enough to inspire me to write some anti-spam software, and 
> it seems to be helping a lot:
> 
> http://www.infodancer.org/spamwatch/index.jsp
> 
I guess the increase is due to the tele marketers finding a new method to interrupt 
your dinner.  I heard that over 41 million people signed up with the US Governments 
no call list.

--

-- 
73 de Donn Washburn     __ " http://www.hal-pc.org/~n5xwb "
Ham Callsign N5XWB     / /     __  __  __  __  __ __  __
307 Savoy St.         / /__   / / /  \/ / / /_/ / \ \/ /
Sugar Land, TX 77478 /_____/ /_/ /_/\__/ /_____/  /_/\_\
LL# 1.281.242.3256       a MSDOS Virus "Free Zone" OS
Email: n5xwb@...  Info: http://www.knoppix.net

Dan_Lee Vogler | 3 Sep 2003 11:14

Programmer's Quiz

Hit Refresh to Play Again :
http://www.malevole.com/mv/misc/killerquiz/ 

Bill Eastman | 3 Sep 2003 12:51
Picon

php problem

The following is a script I wrote.  It works, but doesn't display like 
the url does if I open it in a web browser.  What do I need to change?

<?
$file = fopen 
("ftp://weather.noaa.gov/data/forecasts/city/tx/austin.txt", "r");
if (!$file) {
     echo "<P>Unable to open remote file. \n";
     exit;
}
while (!feof ($file))  {
     $line = fgets ($file, 80);
     echo $line;
}
fclose($file);
?>
<HTML>
<HEAD>
<TITLE>Weather forecast for Austin</TITLE>
</HEAD>
<BODY>
</BODY>
</HTML>


Gmane