How to install FreeBSD without CD-ROM, Floppy nor PXE?

• 本文约 70 字,阅读大致需要 1 分钟 | *nix and Win32 Kernel

Today I have experienced how to install FreeBSD from a USB device - quite simple so you can do it yourself :-)

First, initialize the USB solid state disk with bsdlabel(8):

bsdlabel -wB /dev/da0

Then, initialize a file system:

newfs -O1 /dev/da0a

Third, copy CDROM’s /boot to it.

And you can now boot from the USB disk.

Similiary, you will be able to build your own tiny system this way.