This commit is contained in:
Daniel Schubert 2019-01-02 10:49:31 +01:00
parent 0e8da5179b
commit 392c5ce4b5
8 changed files with 9152 additions and 1356 deletions

1311
README.md

File diff suppressed because it is too large Load Diff

0
beispiele/mysystem.sh Executable file → Normal file
View File

View File

@ -1,25 +0,0 @@
- USB Stick mit Debian 9
- Installieren
= GNOME
- Erste Schritte mit Gnome
- Dateisystem
- Repositories
- Synaptic
- Update / Upgrade
- Installieren von Thunderbird
- Installieren von Chrome ( deb Paket von Webseite )
= bash
- einfache Befehle - ls mv cp pwd
- apt-get update / upgrade
- TN installieren VIM mit apt-get
- TN üben mit VIM
- Modes
- Speichern
- Verlassen

View File

@ -1,27 +1,46 @@
<!doctype html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<head>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/semantic-ui@2.4.2/dist/semantic.min.js"></script>
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/semantic-ui@2.4.2/dist/semantic.min.css">
<title>Linux BASICS</title>
</head>
<body>
<div class="ui container">
<div class="ui segments">
<div class="ui segment centered">
<h1><i class="icon linux"></i>Linux Basics</h1>
<title>reveal.js</title>
</div>
<div class="ui segment">
<h2>Präsentationen</h2>
<ol>
<li><a href="1.html">1. Abend</a></li>
<li><a href="2.html">2. Abend</a></li>
<li><a href="3.html">3. Abend</a></li>
<li><a href="4.html">4. Abend</a></li>
</ol>
</div>
<div class="ui segment">
<h2><i class="icon file pdf outline"></i>PDF</h2>
<ul>
<li><a href="pdf/Linux-Kurs/lxes-de-manual.pdf">Linux Essentials</a></li>
<li><a href="pdf/Linux-Kurs/grundkurs-linux.pdf">Grundkurs Linux</a></li>
</ul>
</div>
<div class="ui segment">
<h2><i class="icon linkify"></i>Links</h2>
<ul>
<LI><a href="https://www.debian.org" target="_blank">Debian.org</a></LI>
<li><a href="https://wiki.ubuntuusers.de" target="_blank">wiki.ubunutuusers.de</a></li>
<li><a href="https://www.shellbefehle.de/befehle/" target="_blank">Shell Befehle</a></li>
<li><a href="https://wiki.archlinux.de/title/Bash-Prompt_anpassen" target="_blank">Bash Prompt anpassen </a></li>
<li><a href="https://regexr.com/" target="_blank">RegExr.com - Reguläre Ausdrücke testen</a>
<li><a href="http://rubular.com/" target="_blank">rubular.com - Reguläre Ausdrücke testen</a>
</ul>
</div>
</div>
</div>
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/black.css">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="lib/css/zenburn.css">
</head>
<body>
<ol>
<li><a href="1.html">Lektion 1</a></li>
<li><a href="2.html">Lektion 2</a></li>
<li><a href="3.html">Lektion 3</a></li>
<li><a href="4.html">Lektion 4</a></li>
<li><a href="5.html">Lektion 5</a></li>
<li><a href="6.html">Lektion 6</a></li>
<li><a href="7.html">Lektion 7</a></li>
</ol>
</body>
</html>
</body>
</html>

3
links.html Normal file
View File

@ -0,0 +1,3 @@
<h1>Links</h1>
<a href="https://danielmiessler.com/study/vim/">https://danielmiessler.com/study/vim/</a>

19
notes.txt Normal file
View File

@ -0,0 +1,19 @@
wiederholugn
regexp
bash config
scripting
cp `find . -name "*.jpg"` neuer_ordner
for FILE in *.JPG
do
NEWFILE2=`echo "$FILE" | sed 's/.(*)/\-/'`
echo "$NEWFILE2"
mv "$FILE" "$NEWFILE2"
done

5313
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

3770
yarn.lock Normal file

File diff suppressed because it is too large Load Diff