ADD EDIT + TOOLS

This commit is contained in:
2025-11-21 12:34:11 +01:00
parent 16fc39c343
commit 57e8203eb2
11 changed files with 741 additions and 527 deletions

View File

@@ -38,11 +38,11 @@ fi
# Execute the dd command
echo "Writing '$1' to '$2'..."
time sudo dd bs=4M status=progress conv=fsync oflag=direct if="$1" of="/dev/$2"
time sudo dd bs=8M status=progress conv=fsync oflag=direct if="$1" of="/dev/$2"
# Check the exit code of the dd command
if [ $? -eq 0 ]; then
echo "Write complete."
echo "ISO to USB Write complete."
else
echo "Write failed. Check for errors."
fi