Como faço um dispositivo USB bootavel de linux mint no endless?

Mesmo com a ISO colocada como imagem de disco, quando vou ao BIOS do meu computador a pendrive não está lá como opção de boot, é um erro da configuração do pendrive ou do BIOS? Acredito que não deve haver muita diferença para criar USBs bootaveis de qualquer SO por isso to pedindo ajuda aqui e não no site do mint.

In general, most distributions provide ISO Images which can either written on CD/DVD or a USB-Stick. For USB-Sticks, the approach is:

  1. Determine the Block device name of your USB Stick:
blkid
  1. Once you know the name (in most configurations with a single SSD/HDD it’s /dev/sdb), just write the image with the following command:
sudo dd if=image.iso of=/dev/sdb bs=32768 conv=sync,noerror
sync

(The last command sync is just to make sure that every data gets written down to the physical layer, so you can just unplug it after the command has finished)

Quando faço isso, ele diz que o arquivo ou diretório é inexistente.

Of course you have to replace the parameters for if and of with the actual ones. Whats the command you are actually running which yields the error?

Ata, eu só substitui o image.iso e o /dev/sdb, tinha q tira o if e o of também.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.