Hash :
b1567c3c
Author :
Thomas de Grivel
Date :
2020-03-11T11:21:46
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
\documentclass[8pt]{beamer}
\usepackage[utf8]{inputenc}
\usepackage{upquote}
\usepackage{graphicx}
\usetheme{Warsaw}
\AtBeginSection[]{
\begin{frame}
\vfill
\centering
\begin{beamercolorbox}[sep=8pt,center,shadow=true,rounded=true]{title}
\usebeamerfont{title}
\insertsectionhead\par%
\vspace{2em}
\end{beamercolorbox}
\vfill
\end{frame}
}
\AtBeginSubsection[]{
\begin{frame}
\vfill
\centering
\begin{beamercolorbox}[sep=8pt,center,shadow=true,rounded=true]{title}
\usebeamerfont{title}
\insertsectionhead\par%
\vspace{1em}
\insertsubsectionhead\par%
\end{beamercolorbox}
\vfill
\end{frame}
}
\title{*BSD}
\author{Thomas de Grivel {\tt thoxdg@gmail.com}}
\institute{http://kmx.io}
\date{\today}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\section{UNIX}
\subsection{History}
\begin{frame}
\frametitle{Diagram}
\begin{figure}[h!]
\includegraphics[width = 11cm]{unix-history.png}
\label{UNIX}
\end{figure}
\end{frame}
\begin{frame}
\frametitle{Multics}
1960\\
\vspace{1em}
Companies
\begin{itemize}
\item MIT
\item AT\&T Bell labs
\item General Electric
\end{itemize}
\vspace{1em}
\end{frame}
\begin{frame}
\frametitle{UNIX}
AT\&T Bell Labs 1970 \\
\vspace{1em}
Developers
\begin{itemize}
\item Ken Thompson
\item Dennis Ritchie
\end{itemize}
\end{frame}
\begin{frame}
\frametitle{Berkeley Unix}
1974 \\
\vspace{1em}
Licensed by AT\&T
\end{frame}
\begin{frame}
\frametitle{Berkeley Software Distribution}
1979 \\
\vspace{1em}
\begin{itemize}
\item {\tt vi}
\item {\tt csh}
\end{itemize}
\vspace{1em}
Licensed by AT\&T
\end{frame}
\begin{frame}[fragile]
\frametitle{BSD License}
\begin{verbatim}
Copyright (c) <year> <copyright holder>.
All rights reserved.
Redistribution and use in source and binary forms are permitted
provided that the above copyright notice and this paragraph are
duplicated in all such forms and that any documentation,
advertising materials, and other materials related to such
distribution and use acknowledge that the software was developed
by the <organization>. The name of the
<organization> may not be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
\end{verbatim}
\end{frame}
\begin{frame}
\frametitle{Net/1}
June 1989 \\
\vspace{1em}
Basis for
\begin{itemize}
\item NetBSD
\item FreeBSD
\end{itemize}
\vspace{1em}
Under BSD License
\end{frame}
\begin{frame}
\frametitle{Minix}
Andrew S. Tannenbaum
\begin{itemize}
\item For teaching
\item Not BSD
\item GPL
\end{itemize}
\end{frame}
\begin{frame}
\frametitle{Linux}
Linus Torvalds
\begin{itemize}
\item Inspired by Minix
\item Not BSD
\item GPL
\end{itemize}
\end{frame}
\begin{frame}
\frametitle{NetBSD}
Computer Systems Research Group of the University of California, Berkeley
\begin{itemize}
\item Started in 1993 from Net/2 and 386BSD
\item BSD License (two, three, and four-clause variants)
\item {\bf Portable}
\end{itemize}
\vspace{1em}
Founders :
\begin{itemize}
\item Chris Demetriou
\item Theo de Raadt
\item Adam Glass
\item Charles Hannum
\end{itemize}
\end{frame}
\begin{frame}
\frametitle{FreeBSD}
\begin{itemize}
\item Started in 1993 also from 386BSD
\item FreeBSD 2.0 in 1994, without code from AT\&T
\item {\bf Fast} {\tt jemalloc} in base
\end{itemize}
\end{frame}
\begin{frame}
\frametitle{OpenBSD}
Theo de Raadt
\begin{itemize}
\item forked from NetBSD in 1995
\item {\bf Secure by default}
\item Home of CARP, cwm, httpd, LibreSSL, OpenBGPD, OpenIKED, {\bf OpenNTPD}, OpenOSPFD, OpenRsync, OpenSMTPD, {\bf OpenSSH}, PF, pfsync, sndio, spamd, Xenocara
\end{itemize}
\end{frame}
\begin{frame}
\frametitle{Darwin}
\begin{itemize}
\item Forked from FreeBSD by Apple Inc. in 2000
\item Includes code from NeXTSTEP and Mach
\item Basis for MacOS X, iOS, iPadOS
\item Apple Public Source License (APSL), with closed-source drivers
\end{itemize}
\end{frame}
\end{document}