Download the install ISO file. Download the win32diskImager installer (it is now called ImageWriter) Install win32diskImager - a breeze; Launch it, choose your USB key, and browse for the ISO file; Click 'Write', wait a few instants, and you are ready to boot! Hi Sam, I’ve created the USB by following your instructions on my windows 10 PC. I’ve selected Freenas 11.2 Iso but after it finished, windows says I need to format the USB. If I open Disk manager the USB shoes a 591 MB Healthy GPT protective partition and 11.83 GB Unallocated one. ISO to USB is a free and lightweight software to create bootable USB flash drives. This freeware also burns the ISO image file to the USB flash drive. For using this software first you need to select the desired ISO file, after that check the box “Bootable, only supports Windows bootable ISO image.”. I don't know if it helps, but I got a bootable usb key using rufus (on windows 10 and the: FreeBSD-11.1-RELEASE-amd64-memstick.img. This worked to boot an x86 computer with UEFI. Note: I had to turn off secure-boot (or maybe safe-boot?), but I don't remember if that was to install or just boot from usb. I'm going to make freebsd live usb based on FreeBSD-8.3-RELEASE-i386-livefs.iso. The iso is 257 Megabytes, but after i copy its content to usb drive its volume increases to 971 Megabytes. I tried different methods of copying (tar,cp,cpio) but with the same result.
I have the horrible habit of not putting a label on a CD after I’ve burned it. This leads to having a stack of CDs and not knowing which does what. This was my problem recently when installing FreeBSD, so I decided to start using USB based installations where possible. I prefer the multiple-write capability of USB, and this way I don’t waste CDs.
Step one is to download a modified unetbootin utility particularly for FreeBSD. You can get .rpm, .deb, .exe or .sh for both 32 and 64bit here. I went with the 32bit .sh file. BE CAREFUL WITH THE PACKAGED VERSIONS AS IT SEEMS THEY DEFAULT TO WRITING TO YOUR LOCAL DISK!
Once you have the unetbootin utility downloaded you’ll want to write the data to your USB drive. This is done using the command:
chmod +x unetbootin-freebsd70*.sh
./unetbootin-freebsd70*.sh installmode=usbdrive targetpartition=/dev/sdX1 formatpartition=yes no
Be sure you know which /dev entry your USB drive is connected to and don’t overwrite your existing boot loader on your main disk. The last option, “formatpartition” can be a yes or no.
This will take a minute, and when its done you should have a bootable FreeBSD 7.0 usb disk. If you are able to do FTP based installation you’re ready to go at this point.
Now if you’d like to be able to do the full installation from the USB as well you’ll want to copy the contents of the .iso onto the same drive. If you don’t have an .iso you can find one here.
To copy the contents of the .iso to the USB drive I did something like this:
sudo mount -o loop 7.0-RELEASE-i386-disc1.iso /mnt/
sudo mount /dev/sdX1 /media/disk (this should auto-mount if you re-plug the USB drive)
sudo cp -RvLu /mnt/* /media/disk/ D and d 3.5 pdf.
When this is done you should have the contents of the FreeBSD install CD on your USB drive. When prompted for the install type specify MSDOS partition and you’re set.
I will likely post some more FreeBSD tips based on more of my notes.