Tools: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
(Die Seite wurde neu angelegt: „= Bilder zu PDF zusammenführen = Mehrere JPG-Dateien nach Datum sortiert in ein PDF zusammenführen. * apt install imagemagick * magick $(ls -rt *.jpg) ausgab…“) |
|||
| Zeile 3: | Zeile 3: | ||
* apt install imagemagick | * apt install imagemagick | ||
* magick $(ls -rt *.jpg) ausgabe.pdf | * magick $(ls -rt *.jpg) ausgabe.pdf | ||
| + | =Ventoy= | ||
| + | = Bootfähigen USB-Stick mit Ventoy erstellen = | ||
| + | |||
| + | Ventoy schreibt den Stick nur einmal vor. Danach werden ISO-Dateien | ||
| + | einfach draufkopiert. Beim Booten erscheint ein Auswahlmenü. | ||
| + | Mehrere ISOs auf einem Stick sind möglich. | ||
| + | |||
| + | == Ventoy herunterladen == | ||
| + | |||
| + | Aktuelle Version von https://github.com/ventoy/Ventoy/releases holen | ||
| + | (Datei ventoy-X.Y.ZZ-linux.tar.gz). | ||
| + | |||
| + | cd ~/Downloads | ||
| + | tar xzf ventoy-*-linux.tar.gz | ||
| + | cd ventoy-*/ | ||
| + | |||
| + | == Stick vorbereiten == | ||
| + | |||
| + | Zuerst prüfen, welches Gerät der Stick ist: | ||
| + | |||
| + | lsblk -o NAME,SIZE,TRAN,MODEL | ||
| + | |||
| + | Nichts darf gemountet sein: | ||
| + | |||
| + | umount /dev/sda?* | ||
| + | |||
| + | Ventoy installieren (löscht den Stick komplett): | ||
| + | |||
| + | ./Ventoy2Disk.sh -i /dev/sda | ||
| + | |||
| + | Mit Secure Boot: | ||
| + | |||
| + | ./Ventoy2Disk.sh -i -s /dev/sda | ||
| + | |||
| + | == ISO kopieren == | ||
| + | |||
| + | Stick einmal ab- und wieder anstecken. Ventoy legt eine | ||
| + | exFAT-Partition mit dem Label "Ventoy" an. | ||
| + | |||
| + | cp kali-linux-2026.2-live-amd64.iso /run/media/$USER/Ventoy/ | ||
| + | sync | ||
| + | |||
| + | Das sync ist wichtig: sonst liegen die Daten noch im Cache, | ||
| + | wenn der Stick abgezogen wird. | ||
| + | |||
| + | == Weitere ISOs == | ||
| + | |||
| + | Ein | ||
Version vom 13. August 2026, 11:41 Uhr
Bilder zu PDF zusammenführen
Mehrere JPG-Dateien nach Datum sortiert in ein PDF zusammenführen.
- apt install imagemagick
- magick $(ls -rt *.jpg) ausgabe.pdf
Ventoy
Bootfähigen USB-Stick mit Ventoy erstellen
Ventoy schreibt den Stick nur einmal vor. Danach werden ISO-Dateien einfach draufkopiert. Beim Booten erscheint ein Auswahlmenü. Mehrere ISOs auf einem Stick sind möglich.
Ventoy herunterladen
Aktuelle Version von https://github.com/ventoy/Ventoy/releases holen (Datei ventoy-X.Y.ZZ-linux.tar.gz).
cd ~/Downloads tar xzf ventoy-*-linux.tar.gz cd ventoy-*/
Stick vorbereiten
Zuerst prüfen, welches Gerät der Stick ist:
lsblk -o NAME,SIZE,TRAN,MODEL
Nichts darf gemountet sein:
umount /dev/sda?*
Ventoy installieren (löscht den Stick komplett):
./Ventoy2Disk.sh -i /dev/sda
Mit Secure Boot:
./Ventoy2Disk.sh -i -s /dev/sda
ISO kopieren
Stick einmal ab- und wieder anstecken. Ventoy legt eine exFAT-Partition mit dem Label "Ventoy" an.
cp kali-linux-2026.2-live-amd64.iso /run/media/$USER/Ventoy/ sync
Das sync ist wichtig: sonst liegen die Daten noch im Cache, wenn der Stick abgezogen wird.
Weitere ISOs
Ein