Last active
August 30, 2022 00:40
-
-
Save isaqueprofeta/c13393191577e29832a9d9ecc8d5fb1f to your computer and use it in GitHub Desktop.
Criar pendrive bootavel a partir de ISO
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
PATHTOISO = $1 | |
DISKTOWRITE = $2 | |
dd bs=4M if=$PATHTOISO of=$DISKTOWRITE conv=fdatasync |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment