summaryrefslogtreecommitdiff
path: root/distrib/notes/sparc/xfer
diff options
context:
space:
mode:
authorTodd T. Fries <todd@cvs.openbsd.org>1997-10-01 23:14:46 +0000
committerTodd T. Fries <todd@cvs.openbsd.org>1997-10-01 23:14:46 +0000
commit825cc1ac3c9cd77130baeaf1d2bfb11283a29415 (patch)
tree60d1a361fd01c75057374978e1492ddc0c428285 /distrib/notes/sparc/xfer
parent5ff6f4ca5f015294d03bb6f7b14e24348978f416 (diff)
21 -> 22
Diffstat (limited to 'distrib/notes/sparc/xfer')
-rw-r--r--distrib/notes/sparc/xfer20
1 files changed, 10 insertions, 10 deletions
diff --git a/distrib/notes/sparc/xfer b/distrib/notes/sparc/xfer
index d3053da3f6d..62025bdcf5d 100644
--- a/distrib/notes/sparc/xfer
+++ b/distrib/notes/sparc/xfer
@@ -40,7 +40,7 @@ Creating a bootable floppy disk using DOS/Windows:
First you need to get access to the OpenBSD Bootable floppy
images. If you can access the CD-ROM distribution under DOS
- the bootable disks are in the 2.1/sparc directory, otherwise
+ the bootable disks are in the 2.2/sparc directory, otherwise
you you will have to download them from one of the OpenBSD
ftp or http mirror sites, using ftp or a web-viewer. In either
case, take care to do "binary" transfers, since these are
@@ -74,7 +74,7 @@ Creating a bootable floppy disk using SunOS or other Un*x-like system:
Next, use the dd(1) utility to copy the file to the floppy drive.
Under SunOS, the comand would be:
- dd if=floppy21.fs of=/dev/rfdc0 bs=36b
+ dd if=floppy22.fs of=/dev/rfdc0 bs=36b
If you are using someting other than SunOS, you may have to adapt
this to conform to local naming conventions for the floppy and
@@ -113,9 +113,9 @@ Creating a bootable hard disk using SunOS or other Un*x-like system:
Use the dd(1) utility to copy the file to the floppy drive.
Under SunOS, the comand would be:
- dd if=floppy21.fs of=/dev/rsd0b bs=36b
+ dd if=floppy22.fs of=/dev/rsd0b bs=36b
- or -
- dd if=miniroot21.fs of=/dev/rsd0b bs=36b
+ dd if=miniroot22.fs of=/dev/rsd0b bs=36b
The blocksize is arbitrary as long as it's a multiple of 512-bytes
and within the maximum supported by the driver, i.e. bs=126b may
@@ -140,7 +140,7 @@ Creating a bootable hard disk using SunOS or other Un*x-like system:
To copy the floppy image to the whole disk, overwriting labels:
- dd if=floppy21.fs of=/dev/rsdXc bs=36b
+ dd if=floppy22.fs of=/dev/rsdXc bs=36b
Two notes - X should be replaced by the unit number of the target
disk, which is most likely *not* the disk/paritition that's your
@@ -159,13 +159,13 @@ Creating a bootable hard disk using SunOS or other Un*x-like system:
To copy the flopy image to the hard disk, preserving SunOS,
Solaris NetBSD or OpenBSD labels:
- dd if=floppy21.fs of=/dev/rsdXc bs=1b skip=1 seek=1
+ dd if=floppy22.fs of=/dev/rsdXc bs=1b skip=1 seek=1
You need to be sure that your version of dd(1) supports the
skip and seek operands, otherwise you can try a technique like:
dd if=/dev/rsdXc of=/tmp/label bs=1b count=1
- dd if=floppy21.fs of=/dev/rsdXc bs=36b
+ dd if=floppy22.fs of=/dev/rsdXc bs=36b
dd if=/tmp/label of=/dev/rsdXc bs=1b count=1
In either case, you've created a situation where the disklabel
@@ -217,7 +217,7 @@ To install or upgrade OpenBSD using a tape, you need to do the following:
#! /bin/sh
tape=/dev/nrst0
mt -f ${tape} rewind
- for file in base21 etc21 comp21 game21 man21 misc21 text21
+ for file in base22 etc22 comp22 game22 man22 misc22 text22
do
dd if=${file}.tar.gz of=${tape}
done
@@ -228,7 +228,7 @@ To install or upgrade OpenBSD using a tape, you need to do the following:
And then:
- cd .../2.1/sparc
+ cd .../2.2/sparc
sh -x /tmp/maketape
@@ -275,7 +275,7 @@ following:
Place the distribution sets you wish to upgrade somewhere in
your current file system tree. At a bare minimum, you must
upgrade the "base" binary distribution, and so must put the
- "base21" set somewhere in your file system. If you wish,
+ "base22" set somewhere in your file system. If you wish,
you can do the other sets, as well, but you should NOT upgrade
the "etc" distribution; the "etc" distribution contains system
configuration files that you should review and update by hand.