2008-02-03 15:41:30 +01:00
|
|
|
|
% Copyright (c) 2004-2008 Marc Fonvieille
|
2004-02-28 22:40:31 +01:00
|
|
|
|
% All rights reserved.
|
|
|
|
|
%
|
|
|
|
|
% Redistribution and use in source and binary forms, with or without
|
|
|
|
|
% modification, are permitted provided that the following conditions
|
|
|
|
|
% are met:
|
|
|
|
|
% 1. Redistributions of source code must retain the above copyright
|
|
|
|
|
% notice, this list of conditions and the following disclaimer.
|
|
|
|
|
% 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
|
% notice, this list of conditions and the following disclaimer in the
|
|
|
|
|
% documentation and/or other materials provided with the distribution.
|
|
|
|
|
%
|
|
|
|
|
% THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
|
% ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
|
% IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
|
% ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
|
% FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
|
% DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
|
% OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
|
% HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
|
% LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
|
% OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
|
% SUCH DAMAGE.
|
|
|
|
|
%
|
2008-02-03 15:41:30 +01:00
|
|
|
|
% $FreeBSD$
|
2004-02-28 22:40:31 +01:00
|
|
|
|
%
|
|
|
|
|
% FreeBSD Flyer
|
2008-02-03 15:41:30 +01:00
|
|
|
|
% Use make FORMAT (with FORMAT: pdf, ps or dvi) to build the flyer.
|
|
|
|
|
% Two layouts are available: one using Beastie the other one using the
|
|
|
|
|
% FreeBSD Logo. The layout selection is done below via the value of
|
|
|
|
|
% the \logo variable. By default the Beastie layout is enabled.
|
|
|
|
|
%
|
|
|
|
|
% The FreeBSD Spanish Documentation Project
|
|
|
|
|
% Original revision: r1.16
|
2004-02-28 22:40:31 +01:00
|
|
|
|
%
|
|
|
|
|
\documentclass[11pt]{article}
|
|
|
|
|
\usepackage[T1]{fontenc}
|
|
|
|
|
\usepackage[latin1]{inputenc}
|
|
|
|
|
% Use the right language
|
|
|
|
|
\usepackage[spanish]{babel}
|
|
|
|
|
\usepackage{pslatex}
|
|
|
|
|
\usepackage{graphicx}
|
|
|
|
|
\usepackage{fancybox}
|
|
|
|
|
\usepackage{url}
|
2008-02-03 15:41:30 +01:00
|
|
|
|
% Use the right papersize, do not forget to change also the Makefile
|
2004-02-28 22:40:31 +01:00
|
|
|
|
\usepackage[verbose,a4paper,noheadfoot,margin=1cm]{geometry}
|
2008-02-03 15:41:30 +01:00
|
|
|
|
|
|
|
|
|
\usepackage{ifthen}
|
|
|
|
|
% Use of the Logo (set the \logo variable below to true) or Beastie
|
|
|
|
|
% (\logo variable set to false).
|
|
|
|
|
\newcommand{\logo}{false}
|
|
|
|
|
|
|
|
|
|
% Colors settings
|
2004-02-28 22:40:31 +01:00
|
|
|
|
\usepackage{color}
|
2008-02-03 15:41:30 +01:00
|
|
|
|
\ifthenelse{\equal{\logo}{true}}{
|
|
|
|
|
\definecolor{bkgrdtitle}{rgb}{.69,0,0}
|
|
|
|
|
\definecolor{redtitle}{rgb}{.65,.16,.22}
|
|
|
|
|
\definecolor{ovalboxcolor}{rgb}{.69,0,0}
|
|
|
|
|
}
|
|
|
|
|
{
|
2004-02-28 22:40:31 +01:00
|
|
|
|
\definecolor{bkgrdtitle}{rgb}{1,.84,.22}
|
|
|
|
|
\definecolor{redtitle}{rgb}{.65,.16,.22}
|
|
|
|
|
\definecolor{ovalboxcolor}{rgb}{.65,.16,.22}
|
2008-02-03 15:41:30 +01:00
|
|
|
|
}
|
2004-02-28 22:40:31 +01:00
|
|
|
|
|
2008-02-03 15:41:30 +01:00
|
|
|
|
% Some macros
|
|
|
|
|
\ifthenelse{\equal{\logo}{true}}{
|
|
|
|
|
\newcommand{\titledframe}[3]{%
|
|
|
|
|
\boxput*(0,1){\colorbox{bkgrdtitle}{\color{white} \large{\textbf{\textsf{#1}}}}} {\setlength {\fboxsep}{12pt} \color{ovalboxcolor}\Ovalbox {\color{black}\begin{minipage}{#3}#2\end{minipage}}}
|
|
|
|
|
}}
|
|
|
|
|
{
|
2004-02-28 22:40:31 +01:00
|
|
|
|
\newcommand{\titledframe}[3]{%
|
|
|
|
|
\boxput*(0,1){\colorbox{bkgrdtitle}{\color{black} \large{\textbf{\textsf{#1}}}}} {\setlength {\fboxsep}{12pt} \color{ovalboxcolor}\Ovalbox {\color{black}\begin{minipage}{#3}#2\end{minipage}}}
|
2008-02-03 15:41:30 +01:00
|
|
|
|
}}
|
2004-02-28 22:40:31 +01:00
|
|
|
|
|
|
|
|
|
\newcommand{\reg}{$^{\mbox{\tiny \textregistered}}$}
|
|
|
|
|
\newcommand{\tm}{$^{\mbox{\tiny TM}}$}
|
|
|
|
|
|
|
|
|
|
\newenvironment{itemizeflyer}%
|
|
|
|
|
{ \begin{list}%
|
|
|
|
|
{\textendash}%
|
|
|
|
|
{ \setlength{\leftmargin}{5pt}%
|
|
|
|
|
\setlength{\itemsep}{0pt}%
|
|
|
|
|
\setlength{\parskip}{0pt}%
|
|
|
|
|
\setlength{\parsep}{0pt}}}
|
|
|
|
|
{ \end{list}}
|
|
|
|
|
|
|
|
|
|
\pagestyle{empty}
|
|
|
|
|
|
|
|
|
|
\begin{document}
|
|
|
|
|
|
|
|
|
|
\begin{center}
|
2008-02-03 15:41:30 +01:00
|
|
|
|
\ifthenelse{\equal{\logo}{true}}{
|
|
|
|
|
\includegraphics[scale=0.5]{logo-full.eps}
|
|
|
|
|
\vspace{1mm}
|
|
|
|
|
}
|
|
|
|
|
{
|
2004-02-28 22:40:31 +01:00
|
|
|
|
\fontsize{40}{36}\selectfont
|
2008-02-03 15:41:30 +01:00
|
|
|
|
{\color{redtitle} \textrm{\textbf{FreeBSD}}}\medskip}
|
2004-02-28 22:40:31 +01:00
|
|
|
|
\end{center}
|
|
|
|
|
%\vspace{2mm}
|
|
|
|
|
|
2008-02-03 15:41:30 +01:00
|
|
|
|
% Main part
|
2004-02-28 22:40:31 +01:00
|
|
|
|
\begin{center}
|
2008-02-03 15:41:30 +01:00
|
|
|
|
\ifthenelse{\equal{\logo}{true}}{
|
|
|
|
|
\newcommand{\size}{17.1cm}
|
|
|
|
|
}
|
|
|
|
|
{\newcommand{\size}{12.7cm}}
|
|
|
|
|
|
2004-02-28 22:40:31 +01:00
|
|
|
|
\titledframe{<EFBFBD>Qu<EFBFBD> es FreeBSD?}{
|
2008-02-03 15:41:30 +01:00
|
|
|
|
FreeBSD es un avanzado sistema operativo para arquitecturas x86 compatibles
|
|
|
|
|
(incluyendo Pentium\reg y Athlon\tm), amd64 compatibles (incluyendo
|
|
|
|
|
Opteron\reg, Athlon\tm64 EM64T), UltraSPARC\reg, IA-64, PC-98 y ARM.
|
|
|
|
|
FreeBSD es un derivado de BSD, la versi<73>n de UNIX\tm desarrollada en la
|
|
|
|
|
Universidad de California, Berkeley.
|
|
|
|
|
}{\size}
|
|
|
|
|
\ifthenelse{\equal{\logo}{false}}{
|
2004-02-28 22:40:31 +01:00
|
|
|
|
\begin{minipage}{4cm}
|
|
|
|
|
\includegraphics[scale=0.3]{../../share/images/flyer/beastie.eps}
|
|
|
|
|
\end{minipage}
|
2008-02-03 15:41:30 +01:00
|
|
|
|
}
|
2004-02-28 22:40:31 +01:00
|
|
|
|
|
2008-02-03 15:41:30 +01:00
|
|
|
|
\ifthenelse{\equal{\logo}{true}}{
|
|
|
|
|
\vspace{4mm}}{\vspace{2mm}}
|
2004-02-28 22:40:31 +01:00
|
|
|
|
|
|
|
|
|
\titledframe{Caracter<EFBFBD>sticas innovadoras}{
|
2008-02-03 15:41:30 +01:00
|
|
|
|
FreeBSD ofrece altas prestaciones en comunicaciones de red, rendimiento,
|
|
|
|
|
seguridad y compatibilidad, todav<61>a inexistentes en otros sistemas
|
|
|
|
|
operativos, incluyendo los comerciales de mayor renombre.
|
2004-02-28 22:40:31 +01:00
|
|
|
|
}{5cm}
|
|
|
|
|
\titledframe{\textsf{\textbf{Robustez para Internet}}}{
|
2008-02-03 15:41:30 +01:00
|
|
|
|
FreeBSD incluye lo que muchos consideran la implementac<61>n de referencia de
|
|
|
|
|
TCP/IP, el stack 4.4BSD del protocolo TCP/IP, haciendolo ideal para
|
|
|
|
|
aplicaciones de red e Internet.
|
|
|
|
|
|
|
|
|
|
FreeBSD es el servidor ideal para servicios de Internet o Intranet.
|
|
|
|
|
Proporciona unos servicios de red robustos, incluso en situaciones de
|
|
|
|
|
alta carga, haciendo un uso eficaz de la memoria para mantener buenos
|
|
|
|
|
tiempos de respuesta con cientos o miles de procesos simult<6C>neos de usuarios.
|
|
|
|
|
}{11.12cm}
|
2004-02-28 22:40:31 +01:00
|
|
|
|
|
2008-02-03 15:41:30 +01:00
|
|
|
|
\vspace{4mm}
|
2004-02-28 22:40:31 +01:00
|
|
|
|
|
|
|
|
|
\titledframe{Ejecuta una enorme variedad de aplicaciones}{
|
2008-02-03 15:41:30 +01:00
|
|
|
|
Existen m<>s de 17000 aplicaciones listas para su uso en FreeBSD,
|
|
|
|
|
entre las que est<73>n Apache, Samba, MySQL\reg, OpenOffice.Org,
|
|
|
|
|
KDE, GNOME, MPlayer, etc.
|
|
|
|
|
|
|
|
|
|
FreeBSD dispone del sistema de ports, que descarga los fuentes
|
|
|
|
|
desde Internet o desde CD-ROM y compila binarios, incluyendo
|
|
|
|
|
cualquier dependencia. Todas <20>stas operaciones se efect<63>an
|
2004-02-28 22:40:31 +01:00
|
|
|
|
de un modo transparente para con el usuario.
|
2008-02-03 15:41:30 +01:00
|
|
|
|
|
|
|
|
|
La mayor<6F>a de los binarios de GNU/Linux funcionan bajo FreeBSD, por
|
2004-02-28 22:40:31 +01:00
|
|
|
|
ejemplo: Acrobat Reader\reg, Oracle\reg, SAP/R3\reg, Mathematica\reg,
|
|
|
|
|
Quake3, etc... sin p<>rdida palpable de velocidad.
|
2008-02-03 15:41:30 +01:00
|
|
|
|
}{17.1cm}
|
2004-02-28 22:40:31 +01:00
|
|
|
|
|
2008-02-03 15:41:30 +01:00
|
|
|
|
\vspace{4mm}
|
2004-02-28 22:40:31 +01:00
|
|
|
|
|
|
|
|
|
\titledframe{FreeBSD es f<>cil de instalar}{
|
2008-02-03 15:41:30 +01:00
|
|
|
|
Se puede instalar FreeBSD desde una gran variedad de soportes, incluyendo
|
|
|
|
|
CD-ROM, DVD-ROM, disquetes, cintas magn<67>ticas, una partici<63>n MS-DOS\reg,
|
|
|
|
|
o si se dispone de conexi<78>n de red se puede instalar directamente mediante
|
|
|
|
|
FTP an<61>nimo o NFS.
|
|
|
|
|
}{17.1cm}
|
2004-02-28 22:40:31 +01:00
|
|
|
|
|
2008-02-03 15:41:30 +01:00
|
|
|
|
\vspace{4mm}
|
2004-02-28 22:40:31 +01:00
|
|
|
|
|
|
|
|
|
\titledframe{FreeBSD es libre y gratu<74>to}{
|
2008-02-03 15:41:30 +01:00
|
|
|
|
FreeBSD es gratu<74>to y se distribuye con el c<>digo fuente
|
|
|
|
|
de todo el sistema. La mayor<6F>a del c<>digo fuente est<73> bajo la licencia
|
|
|
|
|
est<EFBFBD>ndar BSD. Al contrario de la Licencia GPL que usa el kernel de Linux
|
|
|
|
|
la licencia BSD permite la distribuci<63>n de software derivado sin la
|
|
|
|
|
obligaci<EFBFBD>n de inclu<6C>r los fuentes. Esto permite a las empresas usar el
|
|
|
|
|
c<EFBFBD>digo como base de productos propietarios, permitiendo a menudo que parte
|
|
|
|
|
de su producto pueda revertir en la comunidad.
|
|
|
|
|
}{17.1cm}
|
|
|
|
|
|
|
|
|
|
\vspace{4mm}
|
|
|
|
|
|
|
|
|
|
\titledframe{Puede con casi todo}{
|
|
|
|
|
FreeBSD es ideal para gran n<>mero de aplicaciones de escritorio,
|
2004-02-28 22:40:31 +01:00
|
|
|
|
servidor, aplicaciones empotradas y sistemas dom<6F>ticos.
|
2008-02-03 15:41:30 +01:00
|
|
|
|
FreeBSD no es s<>lamente un sistema operativo para servidores;
|
|
|
|
|
ideal para usuarios finales, en especial reci<63>n llegados desde
|
2004-02-28 22:40:31 +01:00
|
|
|
|
Windows\reg y GNU/Linux.
|
2008-02-03 15:41:30 +01:00
|
|
|
|
}{17.1cm}
|
2004-02-28 22:40:31 +01:00
|
|
|
|
|
2008-02-03 15:41:30 +01:00
|
|
|
|
\vspace{4mm}
|
2004-02-28 22:40:31 +01:00
|
|
|
|
|
|
|
|
|
\titledframe{M<EFBFBD>s informaci<63>n}{
|
|
|
|
|
\begin{itemizeflyer}
|
2008-02-03 15:41:30 +01:00
|
|
|
|
\item Sitio web: \url{http://www.FreeBSD.org/es/}
|
|
|
|
|
\item FreeBSD Handbook: \url{http://www.freebsd.org/doc/es/books/handbook/}
|
2004-02-28 22:40:31 +01:00
|
|
|
|
\end {itemizeflyer}
|
2008-02-03 15:41:30 +01:00
|
|
|
|
}{17.1cm}
|
2004-02-28 22:40:31 +01:00
|
|
|
|
\end{center}
|
|
|
|
|
%
|
|
|
|
|
% Copyrights
|
|
|
|
|
\begin{center}
|
2008-02-03 15:41:30 +01:00
|
|
|
|
\tiny \copyright 2004-2008 El Proyecto FreeBSD\\
|
|
|
|
|
\ifthenelse{\equal{\logo}{true}}{
|
|
|
|
|
FreeBSD y el logo de FreeBSD son marcas registradas de la Fundaci<63>n
|
|
|
|
|
FreeBSD.\\}
|
|
|
|
|
{FreeBSD es una marca registrada de la Fundaci<63>n FreeBSD.\\}
|
|
|
|
|
Todos los dem<65>s nombres de empresas y productos pueden ser marcas registradas
|
|
|
|
|
de la empresa correspondiente.\\
|
|
|
|
|
\ifthenelse{\equal{\logo}{false}}{
|
|
|
|
|
El daemon de BSD, \copyright 1988 Marshall Kirk McKusick. Todos los derechos
|
|
|
|
|
reservados.}{}
|
2004-02-28 22:40:31 +01:00
|
|
|
|
\end{center}
|
|
|
|
|
|
|
|
|
|
\end{document}
|