Você está usando a imagem errada. Na página de Informações de Lançamento do FreeBSD 11.1, você pode obter as seguintes informações:
dvd1
This contains everything necessary to install the base FreeBSD operating system, the documentation, debugging distribution sets, and a small set of pre-built packages aimed at getting a graphical workstation up and running. It also supports booting into a "livefs" based rescue mode. This should be all you need if you can burn and use DVD-sized media.
--- snip ---
memstick
This can be written to an USB memory stick (flash drive) and used to do an install on machines capable of booting off USB drives. It also supports booting into a "livefs" based rescue mode. There are no pre-built packages.
As one example of how to use the memstick image, assuming the USB drive appears as /dev/da0 on your machine something like this should work:
# dd if=FreeBSD-11.1-RELEASE-amd64-memstick.img \ of=/dev/da0 bs=1m conv=sync
Be careful to make sure you get the target (of=) correct.
Então, você tem coisas para consertar / adaptar para que isso funcione com o Linux:
- A imagem deve ser
FreeBSD-11.1-RELEASE-amd64-memstick.img
nãodvd1
. - O tamanho do bloco deve ser
bs=1m
não4m
commemstick
image. Use capitalM
em Linuxdd
para representar o tamanho 1024 * 1024, o mesmo que usandom
em FreeBSDdd
. - Altere o arquivo de saída para aquele que representa o pendrive, como
of=/dev/sdc
, conforme mostrado na pergunta.