Lotsenbruder
Lt. Commander Pro
- Registriert
- Jan. 2023
- Beiträge
- 1.464
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.