Correct some misinformation about using the MS-DOS xcopy command.
Fix some english syntax errors. (More corrections needed) Submitted by: Kristyn Fayette <kristyn@gnu.ai.mit.edu>
This commit is contained in:
parent
7267268855
commit
eacade85fe
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/head/; revision=36
2 changed files with 25 additions and 19 deletions
handbook
|
@ -1,4 +1,4 @@
|
||||||
<!-- $Id: handbook.sgml,v 1.18 1995-07-12 15:01:37 jfieber Exp $ -->
|
<!-- $Id: handbook.sgml,v 1.19 1995-07-17 20:23:59 jfieber Exp $ -->
|
||||||
<!-- The FreeBSD Documentation Project -->
|
<!-- The FreeBSD Documentation Project -->
|
||||||
|
|
||||||
<!DOCTYPE linuxdoc PUBLIC "-//FreeBSD//DTD linuxdoc//EN" [
|
<!DOCTYPE linuxdoc PUBLIC "-//FreeBSD//DTD linuxdoc//EN" [
|
||||||
|
@ -61,7 +61,7 @@ OUTLINE:
|
||||||
<author>
|
<author>
|
||||||
<name>The FreeBSD Documentation Project</name>
|
<name>The FreeBSD Documentation Project</name>
|
||||||
</author>
|
</author>
|
||||||
<date>July 12, 1995</date>
|
<date>July 17, 1995</date>
|
||||||
|
|
||||||
<abstract>Welcome to FreeBSD! This handbook covers the
|
<abstract>Welcome to FreeBSD! This handbook covers the
|
||||||
installation and day to day use of <bf>FreeBSD Release
|
installation and day to day use of <bf>FreeBSD Release
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!-- $Id: install.sgml,v 1.5 1995-07-16 17:06:22 jfieber Exp $ -->
|
<!-- $Id: install.sgml,v 1.6 1995-07-17 20:24:09 jfieber Exp $ -->
|
||||||
<!-- The FreeBSD Documentation Project -->
|
<!-- The FreeBSD Documentation Project -->
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
|
@ -341,28 +341,34 @@
|
||||||
<sect1>Before installing from a MS-DOS partition</heading>
|
<sect1>Before installing from a MS-DOS partition</heading>
|
||||||
|
|
||||||
<p>To prepare for installation from an MS-DOS partition,
|
<p>To prepare for installation from an MS-DOS partition,
|
||||||
you should simply copy the files from the distribution
|
copy the files from the distribution into a directory
|
||||||
into a directory called <tt>FREEBSD</tt>. For example, to do
|
called <tt>C:\FREEBSD</tt>. The directory tree structure
|
||||||
a minimal installation of FreeBSD from DOS using files
|
of the CDROM must be partially reproduced within this directory
|
||||||
copied from the CDROM, you might do something like
|
so we suggest using the DOS <tt>xcopy</tt>
|
||||||
this:
|
command. For example, to prepare for a minimal installation of
|
||||||
|
FreeBSD:
|
||||||
<tscreen><verb>
|
<tscreen><verb>
|
||||||
C> MD C:\FREEBSD
|
C> MD C:\FREEBSD
|
||||||
C> XCOPY /S E:\DISTS\BIN C:\FREEBSD
|
C> XCOPY /S E:\FLOPPIES C:\FREEBSD\FLOPPIES\
|
||||||
C> XCOPY /S E:\FLOPPIES C:\FREEBSD
|
C> XCOPY /S E:\DISTS\BIN C:\FREEBSD\BIN\
|
||||||
</verb></tscreen>
|
</verb></tscreen>
|
||||||
|
asssuming that <tt>C:</tt> is where you have free space
|
||||||
Asssuming that <tt>C:</tt> was where you had free space and
|
and <tt>E:</tt> is where your CDROM is mounted. Note
|
||||||
<tt>E:</tt> was where your CD was mounted. Note that you need
|
that you need the <tt>FLOPPIES</tt> directory because
|
||||||
the <tt>FLOPPIES</tt> directory because the <tt>root.flp</tt> image is
|
the <tt>root.flp</tt> image is needed during an MS-DOS
|
||||||
automatically looked for there when you are doing a
|
installation.
|
||||||
MS-DOS installation.
|
|
||||||
|
|
||||||
For as many `DISTS' you wish to install from MS-DOS
|
For as many `DISTS' you wish to install from MS-DOS
|
||||||
(and you have free space for), install each one under
|
(and you have free space for), install each one under
|
||||||
<tt>C:\FREEBSD</tt> - the BIN dist is only the minimal
|
<tt>C:\FREEBSD</tt> - the <tt>BIN</tt> dist is only the
|
||||||
requirement.
|
minimal requirement. If you have room on your MS-DOS
|
||||||
|
partition for all the distributions, you could replace
|
||||||
|
the last line above with:
|
||||||
|
<tscreen><verb>
|
||||||
|
C> XCOPY /S E:\DISTS C:\FREEBSD\
|
||||||
|
</verb></tscreen>
|
||||||
|
which would copy all the subdirectories of
|
||||||
|
<tt>E:\DISTS</tt> to <tt>C:\FREEBSD</tt>.
|
||||||
|
|
||||||
<sect1>Before installing from QIC/SCSI Tape</heading>
|
<sect1>Before installing from QIC/SCSI Tape</heading>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue