Skip to content

Commit 6885b86

Browse files
committed
modified links
1 parent eef06d2 commit 6885b86

9 files changed

+267
-813
lines changed

Slide/Advanced Linux.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
<title>Advanced Linux Commands</title>
88

9-
<meta name="description" content="A framework for easily creating beautiful presentations using HTML">
10-
<meta name="author" content="Hakim El Hattab">
9+
<meta name="description" content="GNU/Linux workshop">
10+
<meta name="author" content="FOSSCell, NITC">
1111

1212
<meta name="apple-mobile-web-app-capable" content="yes" />
1313
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
@@ -42,7 +42,7 @@
4242
<div class="slides">
4343
<section>
4444
<h1>Advanced Linux Commands</h1>
45-
45+
<p><small>Prabhav Adhikari</small></p>
4646

4747
</section>
4848

Slide/basiclinuxcommands.html

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@
55
<meta charset="utf-8">
66

77
<title>reveal.js - The HTML Presentation Framework</title>
8-
9-
<meta name="description" content="A framework for easily creating beautiful presentations using HTML">
10-
<meta name="author" content="Hakim El Hattab">
8+
<meta name="description" content="GNU/Linux workshop">
9+
<meta name="author" content="FOSSCell, NITC">
1110

1211
<meta name="apple-mobile-web-app-capable" content="yes" />
1312
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />

Slide/exercise.html

Lines changed: 106 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
1+
<!doctype html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="utf-8">
6+
7+
<title>reveal.js - The HTML Presentation Framework</title>
8+
9+
<meta name="description" content="GNU/Linux workshop">
10+
<meta name="author" content="FOSSCell, NITC">
11+
12+
<meta name="apple-mobile-web-app-capable" content="yes" />
13+
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
14+
15+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
16+
17+
<link rel="stylesheet" href="css/reveal.css">
18+
<link rel="stylesheet" href="css/theme/black.css" id="theme">
19+
20+
<!-- Code syntax highlighting -->
21+
<link rel="stylesheet" href="lib/css/zenburn.css">
22+
23+
<!-- Printing and PDF exports -->
24+
<script>
25+
var link = document.createElement( 'link' );
26+
link.rel = 'stylesheet';
27+
link.type = 'text/css';
28+
link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
29+
document.getElementsByTagName( 'head' )[0].appendChild( link );
30+
</script>
31+
32+
<!--[if lt IE 9]>
33+
<script src="lib/js/html5shiv.js"></script>
34+
<![endif]-->
35+
</head>
36+
37+
<body>
38+
39+
<div class="reveal">
40+
41+
<!-- Any section element inside of this container is displayed as a slide -->
42+
<div class="slides">
43+
<section>
44+
<h2><font color="yellow">Exercise</font></h2>
45+
<p>Write a shell script to set an alarm</p><br /><br />
46+
<p>Instructions:</p>
47+
<p>Create a file and name it as script.sh</p>
48+
<p>$ <code>bash script.sh</code> </p>
49+
</section>
50+
51+
<section>
52+
<pre><code data-trim contenteditable>
53+
#!/bin/bash
54+
echo "Sleeping for $1 minutes"
55+
sleep $(expr $1 \* 60)
56+
echo -e "\a" # Alarm
57+
echo "Time up"
58+
</code></pre>
59+
</section>
60+
61+
<!-- <section>
62+
<code>xeyes &amp;</code> <br /><br />
63+
<p>Now check this!</p>
64+
<p>fg</p>
65+
<p>bg</p>
66+
<p>jobs</p>
67+
</section> -->
68+
69+
<section>
70+
<a href="index.html#/1">let's go on</a>
71+
</section>
72+
73+
</div>
74+
75+
</div>
76+
77+
<script src="lib/js/head.min.js"></script>
78+
<script src="js/reveal.js"></script>
79+
80+
<script>
81+
82+
// Full list of configuration options available at:
83+
// https://github.com/hakimel/reveal.js#configuration
84+
Reveal.initialize({
85+
controls: true,
86+
progress: true,
87+
history: true,
88+
center: true,
89+
90+
transition: 'slide', // none/fade/slide/convex/concave/zoom
91+
92+
// Optional reveal.js plugins
93+
dependencies: [
94+
{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
95+
{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
96+
{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
97+
{ src: 'plugin/highlight/highlight.js', async: true, condition: function() { return !!document.querySelector( 'pre code' ); }, callback: function() { hljs.initHighlightingOnLoad(); } },
98+
{ src: 'plugin/zoom-js/zoom.js', async: true },
99+
{ src: 'plugin/notes/notes.js', async: true }
100+
]
101+
});
102+
103+
</script>
104+
105+
</body>
106+
</html>

Slide/filesystem.html

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
<title>::</title>
88

9-
<meta name="description" content="GNU/Linux">
10-
<meta name="author" content="Shrimadhav U k">
9+
<meta name="description" content="GNU/Linux workshop">
10+
<meta name="author" content="FOSSCell, NITC">
1111

1212
<meta name="apple-mobile-web-app-capable" content="yes" />
1313
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
@@ -115,9 +115,25 @@ <h3>how did they DO that ?</h3>
115115
</section>
116116

117117
<section>
118-
<a href="index.html#/15">let's go on</a>
118+
<h2>This Presentation</h2>
119+
<p>It will be available on <a href="https://github.com/simsarulhaqv/Linux-Workshop">Github</a>. Refer for any doubs!</p>
119120
</section>
120-
121+
122+
<section style="text-align: left;">
123+
<h1>THE END</h1>
124+
125+
<h3>Have a look at this.</h3>
126+
<p>
127+
- <a href="http://assoc.cse.nitc.ac.in/">CSEA webpage</a> <br>
128+
- <a href="https://www.facebook.com/CSEA.NITC">CSEA facebook page</a> <br>
129+
- <a href="http://icfoss.in/">ICFOSS</a> <br>
130+
</p>
131+
<h3>Reference Book</h3>
132+
<p>
133+
- <a href="http://linuxcommand.org/tlcl.php">The Linux Command Line</a> <br>
134+
</p>
135+
</section>
136+
121137

122138
</div>
123139

Slide/index.html

Lines changed: 5 additions & 107 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
<title>Linux Workshop</title>
88

9-
<meta name="description" content="Basic GNU/Linux Workshop">
10-
<meta name="author" content="sims">
9+
<meta name="description" content="GNU/Linux workshop">
10+
<meta name="author" content="FOSSCell, NITC">
1111

1212
<meta name="apple-mobile-web-app-capable" content="yes" />
1313
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
@@ -53,124 +53,22 @@ <h6>Press <em>Space</em> to navigate the presentation</h6>
5353
<section style="text-align: left;">
5454
<h2>Agenda</h2>
5555
<p>
56-
<a href="#/2">Introduction to FOSS</a><br />
56+
<a href="intro.html">Introduction to FOSS</a><br />
5757
<a href="basiclinuxcommands.html">Basic Linux commands</a><br />
58-
<a href="#/6">Some Linux utilities</a><br />
58+
<a href="utilities.html">Some Linux utilities</a><br />
5959
<a href="Advanced Linux.html">More on Basic Linux</a><br />
6060
<br />
6161
<a href="vim.html">Introduction to vim editor</a><br />
62-
<a href="#/12">Shell script exercise</a><br />
62+
<a href="exercise.html">Shell script exercise</a><br />
6363
<a href="filesystem.html">Introduction to file systems</a><br />
6464
<a href="filesystem.html#/4">Some more Linux utilities</a><br />
6565

6666
</p>
6767
</section>
6868

69-
<section>
70-
<h2><font color="yellow">Introduction to FOSS</font></h2>
71-
<p class="fragment">Free and Open Source Software</p>
72-
</section>
73-
74-
<section style="text-align: left;">
75-
<h3><font color="yellow">Advantages</font></h3>
76-
<li>Reduced duplication of effort</li>
77-
<li>Build upon the work of others</li>
78-
<li>Better quality control</li>
79-
<li>Reduced maintanance cost</li>
80-
</section>
81-
82-
<section style="text-align: left;">
83-
<h3><font color="yellow">Connect with the FOSS community!</font></h3> <br>
84-
<p class="fragment">ICFOSS</li>
85-
<p class="fragment">Mozilla Kerala</li>
86-
</section>
87-
88-
<section>
89-
<a href="#/1">let's go on</a>
90-
</section>
91-
92-
<section>
93-
<h2><font color="yellow">Some Linux Utilities</font></h2>
94-
</section>
95-
96-
<section>
97-
<h2><font color="yellow">Zenity</font></h2> <br />
98-
<p>Try this!</p>
99-
<p>zenity --info --text="Hello"</p>
100-
</section>
101-
102-
<section>
103-
<h3><font color="yellow">Try this too!</font></h3>
104-
<p>--error</p>
105-
<p>--question</p>
106-
<p>--warning</p>
107-
<p>--entry</p>
108-
</section>
109-
110-
<section>
111-
<h3><font color="yellow">Now try ssh to your friend!</font></h3> <br /> <br />
112-
<p>ssh guest@192.168.40.?</p>
113-
<p>Send a "Hello" to your friend</p>
114-
</section>
11569

116-
<section>
117-
<code>DISPLAY=:0 zenity --info --text="Hello"</code>
118-
</section>
119-
120-
<section>
121-
<a href="#/1">let's go on</a>
122-
</section>
123-
124-
<section>
125-
<h2><font color="yellow">Exercise</font></h2>
126-
<p>Write a shell script to set an alarm</p><br /><br />
127-
<p>Instructions:</p>
128-
<p>Create a file and name it as script.sh</p>
129-
<p>$ <code>bash script.sh</code> </p>
130-
</section>
131-
132-
<section>
133-
<pre><code data-trim contenteditable>
134-
#!/bin/bash
135-
echo "Sleeping for $1 minutes"
136-
sleep $(expr $1 \* 60)
137-
echo -e "\a" # Alarm
138-
echo "Time up"
139-
</code></pre>
140-
</section>
14170

142-
<!-- <section>
143-
<code>xeyes &amp;</code> <br /><br />
144-
<p>Now check this!</p>
145-
<p>fg</p>
146-
<p>bg</p>
147-
<p>jobs</p>
148-
</section> -->
14971

150-
<section>
151-
<a href="#/1">let's go on</a>
152-
</section>
153-
154-
<section>
155-
<h2>This Presentation</h2>
156-
<p>It will be available on <a href="https://github.com/simsarulhaqv/Linux-Workshop">Github</a>. Refer for any doubs!</p>
157-
</section>
158-
159-
<section style="text-align: left;">
160-
<h1>THE END</h1>
161-
162-
<h3>Have a look at this.</h3>
163-
<p>
164-
- <a href="http://assoc.cse.nitc.ac.in/">CSEA webpage</a> <br>
165-
- <a href="https://www.facebook.com/CSEA.NITC">CSEA facebook page</a> <br>
166-
- <a href="http://icfoss.in/">ICFOSS</a> <br>
167-
</p>
168-
<h3>Reference Book</h3>
169-
<p>
170-
- <a href="http://linuxcommand.org/tlcl.php">The Linux Command Line</a> <br>
171-
</p>
172-
</section>
173-
17472
</div>
17573

17674
</div>

0 commit comments

Comments
 (0)