Pls help me going through the mgetty's config files..
Kurt Garloff (garloff@kg1.ping.de)
Tue, 20 Oct 1998 08:04:22 +0200
On Mon, Oct 19, 1998 at 11:03:54PM +0200, Marc Corel wrote:
> Now, what is left is compiling mgetty ( I guess for..additional features
> like AUTO_PPP, etc)
>
> I ve read /usr/doc/mgetty-1.1.9/readMe and FAQ, and it mainly asks to " copy
> `policy.h-dist' to `policy.h' and edit it to set some local policy options
> . Then, edit the `Makefile', to specify installation paths, some system
> defines and some system dependent libraries .
> After that, a `make' should build the programs, and `make install' should
> install them. "...
>
> But as you 've seen, it doesnt say in what directory to go and run make, make install.
> I ve tried running them from all the possible mgetty's directories I found, and of course
> I had error :No target for Make" because make is only present in my /usr/src/linux directory..
> Well, I guess that it's not from that directory that I should run make for mgetty. mgetty has
> no implementations in that directory (usr/src/linux) on my system.
> So help me to go through the steps of compiling mgetty.
>
> Thanks so much
I guess you didn't install the sources. Go and get them!
Either grab the mgetty-1.1.18.tar.gz or the mgetty-1.1.xy.src.rpm.
If you install the src rpm, you will find a source tgz in
/usr/src/redhat/SOURCES.
I suggest looking for the source tgz at
http://alpha.greenie.net/mgetty/index.html
ftp.leo.org:/pub/comp/networking/communication/modem/mgetty/
but I remember that it took me some to find the recent 1.1.18 tgz.
--
Kurt Garloff, Dortmund
<K.Garloff@ping.de>
PGP key on http://student.physik.uni-dortmund.de/homepages/garloff
----------------------------------------------------------------------------
The following is a Python RSA implementation. According to the US Government
posting these four lines makes me an international arms trafficker! Join me
in civil disobedience; add these lines of code to your .sig block to help get
this stupid and unconstitutional law changed.
============================================================================
from sys import*;from string import*;a=argv;[s,p,q]=filter(lambda x:x[:1]!=
'-',a);d='-d'in a;e,n=atol(p,16),atol(q,16);l=(len(q)+1)/2;o,inb=l-d,l-1+d
while s:s=stdin.read(inb);s and map(stdout.write,map(lambda i,b=pow(reduce(
lambda x,y:(x<<8L)+y,map(ord,s)),e,n):chr(b>>8*i&255),range(o-1,-1,-1)))