|
发表于 2003-10-31 23:04:05
|
显示全部楼层
最初由 andrew 发表
jlu# dd if=(image file) of=/dev/fd0
Badly placed ()'s.
jlu#
--
怎么回事?
1.3 Floppy Disk Image Instructions
Depending on how you choose to install FreeBSD, you may need to create a set of floppy disks (usually two) to begin the installation process. This section briefly describes how to create these disks, either from a CDROM installation or from the Internet. Note that in the common case of installing FreeBSD from CDROM, on a machine that supports bootable CDROMs, the steps outlined in this section will not be needed and can be skipped.
For most CDROM or network installations, all you need to copy onto actual floppies from the floppies/ directory are the kern.flp and mfsroot.flp images (for 1.44MB floppies). Depending on your hardware, you may also need to make the third drivers.flp image to provide necessary device drivers.
Getting these images over the network is easy. Simply fetch the release/floppies/kern.flp, release/floppies/mfsroot.flp, and release/floppies/drivers.flp files from ftp://ftp.FreeBSD.org/ or one of the many mirrors listed at FTP Sites section of the Handbook, or on the http://www.freebsdmirrors.org/ Web pages.
Get two blank, freshly formatted floppies and image copy kern.flp onto one and mfsroot.flp onto the other. These images are not DOS files. You cannot simply copy them to a DOS or UFS floppy as regular files, you need to ``image'' copy them to the floppy with fdimage.exe under DOS (see the tools directory on your CDROM or FreeBSD FTP mirror) or the dd(1) command in UNIX.
For example, to create the kernel floppy image from DOS, you'd do something like this:
C> fdimage kern.flp a:
Assuming that you'd copied fdimage.exe and kern.flp into a directory somewhere. You would do the same for mfsroot.flp, of course.
If you're creating the boot floppy from a UNIX machine, you may find that:
# dd if=floppies/kern.flp of=/dev/rfd0
or
# dd if=floppies/kern.flp of=/dev/floppy
work well, depending on your hardware and operating system environment (different versions of UNIX have different names for the floppy drive). |
|