raspberry_pi:raspi-config
Unterschiede
Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
| Beide Seiten der vorigen RevisionVorhergehende ÜberarbeitungNächste Überarbeitung | Vorhergehende Überarbeitung | ||
| raspberry_pi:raspi-config [2026/02/16 10:35] – [VIM Installation/Konfiguration] torsten.roehl | raspberry_pi:raspi-config [2026/02/25 07:28] (aktuell) – torsten.roehl | ||
|---|---|---|---|
| Zeile 3: | Zeile 3: | ||
| // | // | ||
| - | **raspi-config** ist das zentrale, textbasierte Konfigurationswerkzeug für Raspberry Pi OS, aufrufbar | + | **raspi-config** ist das zentrale, textbasierte Konfigurationswerkzeug für Raspberry Pi OS, |
| + | aufrufbar | ||
| + | von Interfaces, SSH, Passwort, Kamera, Boot-Optionen, | ||
| + | // | ||
| - | <note tip> | + | <note tip> |
| + | |||
| + | < | ||
| + | Dies ist eine kompakte Übersicht ('' | ||
| + | Die einzelnen Themen werden anhand praktischer Übungen demonstriert und angewendet. | ||
| + | </ | ||
| ====== raspi-config ====== | ====== raspi-config ====== | ||
| - | Im Kurs wird der Umgang mit '' | + | Im Kurs wird der Umgang mit '' |
| + | Dabei wird gezeigt, welche Einstellungen nach einer frischen Installation | ||
| * '' | * '' | ||
| Zeile 22: | Zeile 32: | ||
| ===== Tools installieren ===== | ===== Tools installieren ===== | ||
| - | Diese Befehle installieren nützliche Werkzeuge: '' | + | Diese Befehle installieren nützliche Werkzeuge: '' |
| + | '' | ||
| ==== VIM Installation/ | ==== VIM Installation/ | ||
| === VIM Installation === | === VIM Installation === | ||
| - | <code bash VIM> | + | <code bash> |
| - | + | sudo apt remove vim vim-tiny | |
| - | sudo apt remove vim vim-tiny -y | + | sudo apt install vim-gtk3 -y |
| - | sudo apt install vim-nox -y | + | sudo apt install xclip # X11 |
| - | sudo apt install xclip # x11 | + | vim --version | grep python |
| - | vim --version | grep python | + | |
| </ | </ | ||
| === VIM Konfiguration === | === VIM Konfiguration === | ||
| * '' | * '' | ||
| - | * '' | + | * '' |
| - | * '' | + | * '' |
| + | Vim-, tmux- sowie Bash-Konfigurationsdateien werden per symbolischen Links | ||
| + | auf ein zentrales Konfigurationsverzeichnis ('' | ||
| + | Auf diese Weise lässt sich die gesamte Konfiguration strukturiert und konsistent verwalten. | ||
| + | |||
| + | <code bash> | ||
| + | pi@raspi88: | ||
| + | lrwxrwxrwx 1 pi pi 16 Feb 16 08:59 .tmux.conf -> config/ | ||
| + | lrwxrwxrwx 1 pi pi 11 Feb 16 08:52 .vim -> config/vim/ | ||
| + | lrwxrwxrwx 1 pi pi 16 Feb 16 08:52 .vimrc -> config/ | ||
| + | lrwxrwxrwx 1 pi pi 13 Feb 16 09:03 .bashrc -> config/ | ||
| + | </ | ||
| ==== weitere Tools ==== | ==== weitere Tools ==== | ||
| - | <code bash fzf> | + | <code bash> |
| + | # Installation | ||
| git clone --depth 1 https:// | git clone --depth 1 https:// | ||
| ~/ | ~/ | ||
| + | # Prüfen | ||
| source ~/.bashrc | source ~/.bashrc | ||
| fzf --version | fzf --version | ||
| + | |||
| rm -rf ~/ | rm -rf ~/ | ||
| </ | </ | ||
| + | <code bash> | ||
| + | sudo apt install tree | ||
| + | sudo apt install ripgrep | ||
| + | sudo apt install bat # Binary heißt unter Debian/ | ||
| + | sudo apt install tmux | ||
| + | sudo apt install gnupg | ||
| + | sudo apt install feh # Bilder über SSH anzeigen | ||
| + | </ | ||
| + | |||
| + | ==== time ==== | ||
| + | Zeitzone explizit neu setzen | ||
| <code bash> | <code bash> | ||
| - | sudo apt install tree # | + | sudo timedatectl set-timezone Europe/ |
| - | sudo apt install ripgrep # Tools zum Suchen :-) | + | timedatectl |
| </ | </ | ||
| + | ==== gnupg ==== | ||
| + | Paranoid-Modus | ||
| + | |||
| + | <code bash> | ||
| + | (course_env) pi@raspi88: | ||
| + | default-cache-ttl 1 | ||
| + | max-cache-ttl 1 | ||
| + | </ | ||
| + | |||
| + | ==== bin ==== | ||
| + | Im Home-Verzeichnis des Raspberry Pi wird ein '' | ||
| + | In der '' | ||
| + | abgelegte Skripte systemweit direkt ausführbar sind. | ||
| + | |||
| + | <code bash> | ||
| + | mkdir -p ~/bin | ||
| + | </ | ||
| + | |||
| + | <code bash> | ||
| + | # ~/.bashrc | ||
| + | export PATH=" | ||
| + | </ | ||
raspberry_pi/raspi-config.1771238137.txt.gz · Zuletzt geändert: von torsten.roehl
