-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsession-1.html
80 lines (62 loc) · 2.14 KB
/
session-1.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>GNU/Linux Tutorial. Part I: Basics</title>
<meta name="description" content="Introduction to Linux and command line">
<meta name="author" content="Alexey Beshenov">
<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">
<link rel="stylesheet" href="dist/reset.css">
<link rel="stylesheet" href="dist/reveal.css">
<link rel="stylesheet" href="custom-black.css" id="theme">
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<section data-markdown>
<textarea data-template>
# GNU/Linux Tutorial
## Part I: Basics
</textarea>
</section>
<section data-markdown="01-debian.md">
</section>
<section data-markdown="02-first-practice.md">
</section>
<section data-markdown="03-apt.md">
</section>
<section data-markdown="04-files.md">
</section>
<section data-markdown>
<textarea data-template>
# Next time
- Users, groups, permissions.
- Processes (`ps`, `top`, `kill`, `killall`).
- Linux file system: what is `/bin`, `/dev`, `/boot`, `/etc`, and so on.
</textarea>
</section>
</div>
</div>
<script src="dist/reveal.js"></script>
<script src="plugin/zoom/zoom.js"></script>
<script src="plugin/notes/notes.js"></script>
<script src="plugin/search/search.js"></script>
<script src="plugin/markdown/markdown.js"></script>
<!--<script src="plugin/highlight/highlight.js"></script>-->
<script>
// Also available as an ES module, see:
// https://revealjs.com/initialization/
Reveal.initialize({
controls: true,
progress: true,
center: true,
hash: true,
// Learn about plugins: https://revealjs.com/plugins/
plugins: [ RevealZoom, RevealNotes, RevealSearch, RevealMarkdown /*, RevealHighlight */ ]
});
</script>
</body>
</html>