From: Mart Lubbers Date: Wed, 11 Jun 2014 18:20:33 +0000 (+0200) Subject: First outline of the presentation X-Git-Tag: 1.0~11 X-Git-Url: https://git.martlubbers.net/?p=linuxnijmegen-ssh.git;a=commitdiff_plain;h=5db8d33e08513a3cc13bd55312cee42622683c17 First outline of the presentation Add makefile for cleaning and compiling, edited readme and started the outline for the presentation including the sections. --- diff --git a/.gitignore b/.gitignore index c40acd3..91dcf08 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,5 @@ *.pdf *.snm *.toc +*.dvi +*.vrb diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b01c708 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +SHELL := /bin/bash +all: + pdflatex pres.tex + pdflatex pres.tex + +clean: + rm -vf pres.{aux,dvi,log,nav,out,snm,toc} + +cleanall: clean + rm -vf pres.pdf diff --git a/README b/README index 53fa8b2..88557d0 100644 --- a/README +++ b/README @@ -1,6 +1,11 @@ +SSH +=== +****Info Presentiation about SSH for the [Linux User Group Nijmegen](https://http://www.linuxnijmegen.nl/) To compile you need at least: - [LaTeX](http://http://www.latex-project.org/) - [Beamer](http://www.ctan.org/pkg/beamer) + +****Introduction diff --git a/pres.tex b/pres.tex new file mode 100644 index 0000000..ca66135 --- /dev/null +++ b/pres.tex @@ -0,0 +1,81 @@ +\documentclass{beamer} + +\usepackage[dutch]{babel} +\usepackage{listings} + +\title[SSH]{Secure Shell(SSH)} +\subtitle{Meer dan alleen remote shell} +\author{Mart Lubbers} +\date{\today} +\subject{SSH} + +\AtBeginSection[] +{ + \begin{frame} + \frametitle{Inhoudsopgave} + \tableofcontents[currentsection] + \end{frame} +} + +\lstset{ + basicstyle=\footnotesize, + breakatwhitespace=false, + breaklines=true, + frame=L, + keepspaces=true, + numbers=left, + numberstyle=\tiny, + tabsize=2 +} + + +\begin{document} + \begin{frame} + \titlepage + \end{frame} + + \section{Introductie} + \begin{frame} + \frametitle{Introductie} + \end{frame} + + \section{SSH server} + + \section{SSH config} + \begin{frame}[fragile] + \begin{lstlisting} +mart@valhalla:~$ ls -l ~/.ssh/config +-rw------- 1 user user 300 Jun 2 22:08 /home/user/.ssh/config +user@valhalla:~$ cat ~/.ssh/config +Host ygdrassil + HostName 192.168.0.102 + Identityfile ~/.ssh/nas + +Host github.com + HostName github.com + Identityfile ~/.ssh/github + +Host werk + User johndoe + HostName ssh.tunnel.werk.com + ForwardX11 yes + Port 2222 + Identityfile ~/.ssh/werk + +Host muziekserver + User gebruiker + HostName muziek.dyndns.com + IdentityFile ~/.ssh/mpi + LocalForward 8123 localhost:8123 + AddressFamily inet + \end{lstlisting} + \end{frame} + + \section{Handige truukjes} + + \section{Programma's die SSH gebruiken} + + \section{Samenvatting} + +\end{document} +