Skip to content

Instantly share code, notes, and snippets.

@isaqueprofeta
Last active August 30, 2022 00:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save isaqueprofeta/c13393191577e29832a9d9ecc8d5fb1f to your computer and use it in GitHub Desktop.
Save isaqueprofeta/c13393191577e29832a9d9ecc8d5fb1f to your computer and use it in GitHub Desktop.
Criar pendrive bootavel a partir de ISO
#!/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