Lotsenbruder
Lt. Commander Pro
- Registriert
- Jan. 2023
- Beiträge
- 1.497
Bei mir hat KDE den "USB-Image Writer" am Bord.
Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
Oder cat:zelect0r schrieb:Wieso so zum Teufel entpacken. Einfach mit DD auf den stick schreiben, nach dem entpacken und drauf kopieren ist der stick eh nicht mehr bootfähig.
Code:dd if=pfad/zur/datei.iso of=dev/sdx status=progress
cat < pfad/zur/datei.iso > /dev/sdXX
Die zentrale Abstraktion von Unix "everything is a file" ist so genial das diese zu leicht Verwirrung stiftet, und Windows hat das komplett versemmelt und halbgar umgesetzt :-)fixedwater schrieb:Keine Ahnung, was du da machst und ich gehe mal davon aus, dass ein grundsätzliches Missverständnis vorliegt.
dd.Marco01_809 schrieb:Du solltest den Stick nur mit dd (oder vergleichbaren Werkzeugen) beschreiben wenn er nicht gemountet ist
umount /dev/sdX aushängen.Wobei man sagen muss, bei UNIX respektive Linux ist es auch nicht wirklich durchgehend.foofoobar schrieb:Windows hat das komplett versemmelt und halbgar umgesetzt :-)
Naja, fast: :-)andy_m4 schrieb:Man kann natürlich sagen, das es unter Windows noch schlechter ist. Aber die Implementierung in UNIX/Linux ist da auch nicht wirklich konsequent und daher eher ein suboptimales Beispiel. :-)
Bash handles several filenames specially when they are used in redirections, as described in the following table. If the operating system on which bash is running provides these special files,
bash will use them; otherwise it will emulate them internally with the behavior described below.
/dev/fd/fd
If fd is a valid integer, file descriptor fd is duplicated.
/dev/stdin
File descriptor 0 is duplicated.
/dev/stdout
File descriptor 1 is duplicated.
/dev/stderr
File descriptor 2 is duplicated.
/dev/tcp/host/port
If host is a valid hostname or Internet address, and port is an integer port number or service name, bash attempts to open the corresponding TCP socket.
/dev/udp/host/port
If host is a valid hostname or Internet address, and port is an integer port number or service name, bash attempts to open the corresponding UDP socket.
A failure to open or create a file causes the redirection to fail.
Redirections using file descriptors greater than 9 should be used with care, as they may conflict with file descriptors the shell uses internally.
Note that the exec builtin command can make redirections take effect in the current shell.
Ich kenne nur noch POWER als Schweizer Taschenmesser für CP/M.foofoobar schrieb:BTW: Erinnert sich noch jemand an FCBs unter CPM und DOS?
Und dennoch kann ich fast jede ISO auf einen Stick oder auf SSd entpacken! Ohne zu mounten! Was auch Sinn macht wen Ich zb einen Bootstick von Hand zb über Diskpart erstelle und die ISO nicht mounten kann.CoMo schrieb:EIne ISO ist nicht "gepackt". Das ist ein containerisiertes Dateisystem. Ergo kann man da auch nichts entpacken.
Das ist kein entpacken, sondern Bit für Bit genaues kopieren der Informationen auf ein anderes Gerät.toussaint1963 schrieb:ch habe eine ISO mit Ubuntu mit dem dd Befehl auf einen USB-Stick mit exFAT entpackt.
Du musst nix entpacken - erstmal im Terminal mittels cd ins entsprechende Verzeichnis wechseln und dann bspw. als roottoussaint1963 schrieb:Ich wollte einen bootfähigen USB-Stick erstellen. Ich habe die ISO Datei mit dd entpackt und wollte dann auf den USB-Stick kopieren.
dd if=debian-13.4.0-amd64-netinst.iso of=/dev/sdX bs=4M status=progress conv=fdatasync
wobei wird hoffen wollen, dass /dev/sda der USB-Stick ist...Habicht schrieb:of=/dev/sda
Nur wenn er als Hauptplatte eine NVME nutztgimmix schrieb:wobei wird hoffen wollen, dass /dev/sda der USB-Stick ist...