2018-12-11 10:48:20 +01:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="de">
|
|
|
|
|
2018-12-17 12:34:44 +01:00
|
|
|
<title>Einführung in Linux</title>
|
2018-12-11 10:48:20 +01:00
|
|
|
|
2018-12-17 12:34:44 +01:00
|
|
|
<meta name="description" content="YALC - Yet Another Linux Course ">
|
2018-12-11 10:48:20 +01:00
|
|
|
<meta name="author" content="Daniel Schubert">
|
|
|
|
|
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
|
|
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="css/reveal.css">
|
|
|
|
<link rel="stylesheet" href="css/theme/league.css" id="theme">
|
2018-12-17 12:34:44 +01:00
|
|
|
|
|
|
|
<link rel="icon" href="img/openlogo-nd-25.png" type="img/png">
|
2018-12-11 10:48:20 +01:00
|
|
|
|
|
|
|
<!-- Theme used for syntax highlighting of code -->
|
|
|
|
<link rel="stylesheet" href="lib/css/zenburn.css">
|
|
|
|
|
|
|
|
<!-- Printing and PDF exports -->
|
|
|
|
<script>
|
|
|
|
var link = document.createElement( 'link' );
|
|
|
|
link.rel = 'stylesheet';
|
|
|
|
link.type = 'text/css';
|
|
|
|
link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
|
|
|
|
document.getElementsByTagName( 'head' )[0].appendChild( link );
|
|
|
|
</script>
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
2018-12-17 12:34:44 +01:00
|
|
|
|
2018-12-11 10:48:20 +01:00
|
|
|
<body>
|
|
|
|
<div class="reveal">
|
|
|
|
<!-- Any section element inside of this container is displayed as a slide -->
|
|
|
|
<div class="slides">
|
|
|
|
|
|
|
|
<section data-transition="slide" data-background="#4d7e65" data-background-transition="zoom">
|
|
|
|
<h1>LINUX</h1>
|
|
|
|
<h3>Das universelle Betriebssystem</h3>
|
|
|
|
<p>Eine Einführung - Teil 4
|
|
|
|
<p>
|
|
|
|
<small>Deutsche Angestellten Akademie</small>
|
|
|
|
</p>
|
2018-12-17 12:34:44 +01:00
|
|
|
|
2018-12-11 10:48:20 +01:00
|
|
|
<aside class="notes">
|
|
|
|
Frage: Fragen zur letzten Stunde?
|
|
|
|
</aside>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section>
|
2018-12-17 12:34:44 +01:00
|
|
|
<h2>vim und emacs</h2>
|
|
|
|
<h3>Die mächtigen Unix Editoren</h3>
|
2018-12-11 10:48:20 +01:00
|
|
|
</section>
|
|
|
|
|
2018-12-17 12:34:44 +01:00
|
|
|
<section data-transition="slide" data-background="#4d7e65" data-background-transition="zoom">
|
|
|
|
<h3>vim</h3>
|
|
|
|
<ul>
|
|
|
|
<li class="fragment">ein Editor für die shell </li>
|
|
|
|
<li class="fragment">immer da, oft in der alten Variante „vi“ </li>
|
|
|
|
<li class="fragment">Vi IMproved</li>
|
|
|
|
<li class="fragment">komplett per Kürzel steuerbar </li>
|
|
|
|
<li class="fragment">umfassend anpassbar </li>
|
|
|
|
<li class="fragment">erweiterbar </li>
|
|
|
|
<li class="fragment">syntax highlighting </li>
|
|
|
|
<li class="fragment">vim ist einfach cool ;-)</li>
|
|
|
|
</ul>
|
|
|
|
|
2018-12-11 10:48:20 +01:00
|
|
|
</section>
|
|
|
|
|
2018-12-17 12:34:44 +01:00
|
|
|
<section>
|
|
|
|
<h3>Die 5 Level eines Vim Magiers</h3>
|
|
|
|
<ul>
|
|
|
|
<li>Level 0: nichts über vim wissen
|
|
|
|
<li>Level 1: vim basics kennen
|
|
|
|
<li>Level 2: den visual mode kennen
|
|
|
|
<li>Level 3: diverse „motions“ kennen
|
|
|
|
<li>Level 4: den visual mode nicht brauchen
|
|
|
|
</ul>
|
|
|
|
<p>https://danielmiessler.com/study/vim/
|
|
|
|
</section>
|
2018-12-11 10:48:20 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script src="lib/js/head.min.js"></script>
|
|
|
|
<script src="js/reveal.js"></script>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
// More info https://github.com/hakimel/reveal.js#configuration
|
|
|
|
Reveal.initialize({
|
|
|
|
controls: true,
|
|
|
|
progress: true,
|
|
|
|
history: true,
|
|
|
|
center: true,
|
|
|
|
|
|
|
|
transition: 'slide', // none/fade/slide/convex/concave/zoom
|
|
|
|
|
|
|
|
// More info https://github.com/hakimel/reveal.js#dependencies
|
|
|
|
dependencies: [
|
|
|
|
{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
|
|
|
|
{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
|
|
|
|
{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
|
|
|
|
{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
|
|
|
|
{ src: 'plugin/search/search.js', async: true },
|
|
|
|
{ src: 'plugin/zoom-js/zoom.js', async: true },
|
|
|
|
{ src: 'plugin/notes/notes.js', async: true }
|
|
|
|
]
|
|
|
|
});
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|