old-www/LDP/nag2/x14607.html

270 lines
4.3 KiB
HTML

<HTML
><HEAD
><TITLE
>Installing sendmail</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.57"><LINK
REL="HOME"
TITLE="Linux Network Administrators Guide"
HREF="index.html"><LINK
REL="UP"
TITLE="Sendmail"
HREF="x-087-2-sendmail.html"><LINK
REL="PREVIOUS"
TITLE="Introduction to sendmail"
HREF="x14586.html"><LINK
REL="NEXT"
TITLE="Overview of Configuration Files"
HREF="x14644.html"></HEAD
><BODY
CLASS="SECT1"
BGCOLOR="#FFFFFF"
TEXT="#000000"
LINK="#0000FF"
VLINK="#840084"
ALINK="#0000FF"
><DIV
CLASS="NAVHEADER"
><TABLE
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TH
COLSPAN="3"
ALIGN="center"
>Linux Network Administrators Guide</TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="bottom"
><A
HREF="x14586.html"
>Prev</A
></TD
><TD
WIDTH="80%"
ALIGN="center"
VALIGN="bottom"
>Chapter 18. Sendmail</TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="bottom"
><A
HREF="x14644.html"
>Next</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><DIV
CLASS="SECT1"
><H1
CLASS="SECT1"
><A
NAME="AEN14607"
>18.2. Installing sendmail</A
></H1
><P
>&#13;
The <B
CLASS="COMMAND"
>sendmail</B
> mail transport agent is included in
prepackaged form in most Linux distributions. Installation in this case is
relatively simple. Despite this fact, there are some good reasons to install
<B
CLASS="COMMAND"
>sendmail</B
> from source, especially if you are security
conscious. The <B
CLASS="COMMAND"
>sendmail</B
> program is very complex and has
earned a reputation over the years for containing bugs that allow security
breaches. One of the best known examples is the RTM Internet worm that
exploited a buffer overflow problem in early versions of
<B
CLASS="COMMAND"
>sendmail</B
>. We touched on this briefly in
<A
HREF="x-087-2-firewall.html"
>Chapter 9</A
>. Most security exploits involving buffer
overflows rely on all copies of <B
CLASS="COMMAND"
>sendmail</B
> on different
machines being identical, as the exploits rely on data being stored in
specific locations. This, of course, is precisely what happens with
<B
CLASS="COMMAND"
>sendmail</B
> installed from Linux distributions. Compiling
<B
CLASS="COMMAND"
>sendmail</B
> from source yourself can help reduce this risk.
Modern versions of <B
CLASS="COMMAND"
>sendmail</B
> are less vulnerable because
they have come under exceedingly close scrutiny as security has become a more
widespread concern throughout the Internet community.</P
><P
>&#13;The <B
CLASS="COMMAND"
>sendmail</B
> source code is available via anonymous FTP from
<SPAN
CLASS="SYSTEMITEM"
>ftp.sendmail.org</SPAN
>.</P
><P
>Compilation is very simple bceause the <B
CLASS="COMMAND"
>sendmail</B
> source
package directly supports Linux. The steps involved in compiling
<B
CLASS="COMMAND"
>sendmail</B
> are:
<TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="SCREEN"
><TT
CLASS="USERINPUT"
><B
># cd /usr/local/src
# tar xvfz sendmail.8.9.3.tar.gz
# cd src
# ./Build</B
></TT
></PRE
></TD
></TR
></TABLE
>
You need <TT
CLASS="LITERAL"
>root</TT
> permissions to complete the installation
of the resulting binary files using:
<TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="SCREEN"
><TT
CLASS="USERINPUT"
><B
># cd obj.Linux.2.0.36.i586
# make install</B
></TT
></PRE
></TD
></TR
></TABLE
>
You have now installed the <B
CLASS="COMMAND"
>sendmail</B
> binary into the
<TT
CLASS="FILENAME"
>/usr/sbin</TT
> directory. Several symbolic links to
the <B
CLASS="COMMAND"
>sendmail</B
> binary will be installed into the
<TT
CLASS="FILENAME"
>/usr/bin/</TT
> directory. We'll talk about those links when
we discuss common tasks in running <B
CLASS="COMMAND"
>sendmail</B
>.</P
></DIV
><DIV
CLASS="NAVFOOTER"
><HR
ALIGN="LEFT"
WIDTH="100%"><TABLE
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
><A
HREF="x14586.html"
>Prev</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="index.html"
>Home</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="x14644.html"
>Next</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>Introduction to sendmail</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="x-087-2-sendmail.html"
>Up</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>Overview of Configuration Files</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>