Nur eine Spielwiese und keine Buchvorlage.

  1. Linux
    1. Philosophie
      1. „Alles ist eine Datei.“
      2. KISS
        1. Keep it small.
        2. Keep it simple.
    2. Distribution
      1. Debian
        1. Mint
          1. Cinnamon Edition (mirror)
            1. wget -c https://ftp.fau.de/mint/iso/stable/21.3/linuxmint-21.3-cinnamon-64bit.iso
            2. wget -c https://ftp-stud.hs-esslingen.de/pub/Mirrors/linuxmint.com/stable/21.3/linuxmint-21.3-cinnamon-64bit.iso
            3. wget -c https://ftp5.gwdg.de/pub/linux/debian/mint/stable/21.3/linuxmint-21.3-cinnamon-64bit.iso
          2. Überprüfen mit sha256sum
            1. sha256sum linuxmint-21.3-cinnamon-64bit.iso
            2. Vergleichen mit Datei
              1. https://ftp.heanet.ie/mirrors/linuxmint.com/stable/21.3/sha256sum.txt
              2. https://ftp.heanet.ie/mirrors/linuxmint.com/stable/21.3/sha256sum.txt.gpg
          3. Testen mit qemu
            1. qemu-system-x86_64 -m 4G -enable-kvm -drive format=raw,media=cdrom,readonly=on,file=linuxmint-21.3-cinnamon-64bit.iso
        2. Kali
      2. OpenSuse
        1. Leap
        2. TumbleWeed
      3. Linux from Scratch
      4. termux
      5. Distrohopping
    3. Booten
      1. USB live
      2. Installation
        1. Festplatte
        2. Virtuel
          1. qemu-system-x86_64
            1. -m
              1. 4G
            2. -enable-kvm
            3. -drive
              1. format=raw,media=cdrom,readonly=on,file=xxx.iso
          2. Strg+Alt+G
      3. grub
    4. Einrichten
      1. Yast
    5. Bedienung
      1. Konsole
        1. Strg+Alt+F2
        2. bash
          1. dd
            1. if=
              1. xxx.iso
            2. of=
              1. /dev/sdxxx
          2. man
          3. info
          4. grep
          5. sgrep
          6. sh
          7. wget
            1. -c
          8. git
            1. clone
              1. --recursive
            2. submodule
              1. update
                1. --init
                2. --recursive
            3. pull
          9. rsync
            1. -av
            2. --delete
          10. mc
            1. F3 (Ansicht)
            2. F4 (Bearbeiten)
            3. F5 (Auswahl kopieren)
            4. F6 (Auswahl verschieben)
            5. F7 (Verzeichnis erstellen)
            6. F8 (Auswahl löschen)
            7. F10 (Beenden)
            8. Befehl über „Eingabezeile“ (Prompt) (Wirkung auf Auswahl)
          11. uname
            1. -a
          12. last
          13. echo
          14. chmod
            1. 755
            2. 644
          15. chown
            1. user.group
      2. Desktop
        1. KDE
          1. Konsole
        2. GNOME
        3. Cinnamon
          1. Terminal
          2. Firefox
            1. HTML
            2. JavaScript
            3. WebAssembly
            4. mediawiki
              1. wiktionary
                1. Regeln
                  1. Belegen
                2. Struktur
                  1. Vorlagen
              2. wikibooks
                1. Regeln
                  1. Sachwissen
    6. Editieren
      1. vi
        1. Beenden
      2. TeXstudio
    7. Emulieren
      1. Commodore
        1. C64
          1. vice
            1. x64
          2. Basic
            1. SYS
              1. 64738
        2. Amiga
      2. qemu
    8. Programmieren
      1. Sprachen
        1. Pascal
          1. "Begin at the beginning," the King said, gravely, "and go on till you come to the end: then stop." (Alice's Adventures in Wonderland by Lewis Carroll)
          2. Programme
            1. freepascal
              1. fp
              2. fpc
            2. Lazarus
          3. Sprachaufbau
            1. ;
            2. {
            3. }
            4. program
              1. Name nicht mehr als Variable verwendbar
              2. uses
              3. var
                1. global bekannt
                2. :
                  1. integer
              4. const
              5. procedure
                1. var
                  1. lokal bekannt
                2. const
                3. begin
                4. end;
              6. function
                1. mit der Wertzuweisung auf den Funktionsnamen erfolgt der Rücksprung
              7. begin
              8. end.
            5. unit
        2. Rust
          1. Programme
            1. rustc
          2. Sprachaufbau
            1. fn
            2. main ()
            3. {}
        3. Python
          1. #!/usr/bin/python
          2. #!/usr/bin/env python
          3. python
            1. -m
              1. venv
          4. source
            1. bin/activate
          5. pip
            1. install
            2. -r
        4. Perl
          1. #!/usr/bin/perl
          2. cpan
        5. Prolog
        6. tcl
          1. tk
            1. #!/usr/bin/env wish
        7. lua
      2. Algorithmen
      3. Bibliotheken
        1. C
          1. glibc
          2. boost
          3. Qt
          4. gtk
        2. Python
          1. matplotlib
          2. numpy
          3. sympy
          4. scipy
          5. pygame
          6. scikit-learn
          7. keras
          8. tensorflow
          9. pytorch
          10. music21
      4. Erstellen
        1. mkdir
          1. build
        2. cd
        3. cmake
          1. ..
        4. make
          1. -j
        5. strip
    9. Dokumentieren
      1. xxxTeX
        1. ctan
        2. texlive
          1. Pakete besorgen
            1. rsync -av rsync:<RSYNC-SERVER>/pub/ctan/systems/texlive/ texlive
          2. Installation
            1. su -l
            2. cd texlive/tlnet/
            3. perl install-tl
          3. Pfade erweitern
            1. su -l
            2. cd /etc/profile.d/
            3. vi texlive.sh
              1. #!/bin/sh
              2. MANPATH=$MANPATH:/<INSTALLATIONSPFAD>/texlive/20XX/texmf-dist/doc/man
              3. export MANPATH
              4. INFOPATH=$INFOPATH:/<INSTALLATIONSPFAD>/texlive/20XX/texmf-dist/doc/info
              5. export INFOPATH
              6. PATH=$PATH:/<INSTALLATIONSPFAD>/texlive/20XX/bin/x86_64-linux
              7. export PATH
            4. chmod 755 texlive.sh
          4. Wartung
            1. su -l
            2. tlmgr update --all --repository texlive/tlnet/
            3. tlmgr update --self --repository texlive/tlnet/
          5. Programme
            1. latex
            2. pdflatex
            3. lualatex
          6. Pakete
        3. Dokumentenaufbau
          1. LaTeX
            1. "Begin at the beginning," the King said, gravely, "and go on till you come to the end: then stop." (Alice's Adventures in Wonderland by Lewis Carroll)
            2. \documentclass
              1. memoir
            3. \begin
              1. document
            4. \end
      2. LibreOffice
        1. Writer
        2. Calc
        3. Base
        4. Math
        5. Draw
        6. Impress
    10. Bildung
      1. Lernhilfe
        1. Anki
      2. Mathematik
        1. sagemath
          1. FORTRAN
      3. Musik
        1. lmms
      4. Astronomie
        1. Celestia
    11. Unterhaltung
      1. Spiele
        1. Battle for Wesnoth
        2. FreeCiv
      2. Multimedia
        1. VLC Media Player
  2. Android
    1. Bildung
      1. Lernhilfe
        1. AnkiDroid
      2. Mathematik
        1. Emu48 for Android
      3. Musik
        1. SynprezFM
      4. Sprachen
        1. Wizadora
        2. TV5MONDE: Französisch lernen
    2. Unterhaltung
      1. Spiele
        1. Andor's trail
        2. Frozen Bubble
        3. DroidFish