NetBSD/distrib/notes/sun3/upgrade

150 lines
4.5 KiB
Plaintext
Raw Normal View History

.\" $NetBSD: upgrade,v 1.13 2002/07/22 13:49:57 lukem Exp $
1999-01-13 10:30:01 +03:00
.\"
.\" Copyright (c) 1999-2002 The NetBSD Foundation, Inc.
1999-01-13 10:30:01 +03:00
.\" All rights reserved.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\" notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\" notice, this list of conditions and the following disclaimer in the
.\" documentation and/or other materials provided with the distribution.
.\" 3. All advertising materials mentioning features or use of this software
.\" must display the following acknowledgement:
.\" This product includes software developed by the NetBSD
.\" Foundation, Inc. and its contributors.
.\" 4. Neither the name of The NetBSD Foundation nor the names of its
.\" contributors may be used to endorse or promote products derived
.\" from this software without specific prior written permission.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
.\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
.\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
.\" POSSIBILITY OF SUCH DAMAGE.
.\"
.
It is possible to easily upgrade your existing
.Nx*M
system
2002-06-30 16:57:29 +04:00
using the upgrade program in the miniroot.
If you wish to upgrade your system by this method, simply select the
.Ic upgrade
option once
2002-06-30 16:57:29 +04:00
the miniroot has booted.
The upgrade program with then guide you through the procedure.
The upgrade program will:
.(bullet -offset indent
1999-01-13 10:30:01 +03:00
Enable the network based on your system's current network configuration.
.It
Mount your existing file systems.
.It
1999-01-13 10:30:01 +03:00
Extract binary sets from the media of your choice.
.It
Make new device nodes in your root file system under
.Pa /dev .
.It
Copy a new kernel onto your root partition
.Pq Pa / .
.(Note
1999-01-13 10:30:01 +03:00
the existing kernel
.Em will not
1999-01-13 10:30:01 +03:00
be backed up; doing
so would be pointless, since older kernels may not be
capable of running
.Nx \*V
1999-01-13 10:30:01 +03:00
executables.
.Note)
.It
1999-01-13 10:30:01 +03:00
Install a new boot block.
.It
Check your file systems for integrity.
.bullet)
.Pp
1999-01-13 10:30:01 +03:00
Using the miniroot's upgrade program is the preferred method
of upgrading your system.
.Pp
However, it is possible to upgrade your system manually.
2002-06-30 16:57:29 +04:00
To do this, follow the following procedure:
.(bullet -offset indent
1999-01-13 10:30:01 +03:00
Place
.Em at least
the
.Sy base
binary set in a file system
2002-06-30 16:57:29 +04:00
accessible to the target machine.
A local file system is preferred, since the NFS subsystem in the
1999-01-13 10:30:01 +03:00
.Nx \*V
kernel may be incompatible with your old binaries.
.It
Back up your pre-existing kernel and copy the \*V
kernel into your root partition
.Pq Pa / .
1999-01-13 10:30:01 +03:00
.It
Reboot with the \*V kernel into single-user mode.
(Otherwise you can not install the boot block.)
.It
Check all file systems:
.Pp
.Dl # Ic "/sbin/fsck -pf"
1999-01-13 10:30:01 +03:00
.It
Mount all local file systems:
.Pp
.Dl # Ic "/sbin/mount -a -t nonfs"
.It
If you keep
.Pa /usr
or
.Pa /usr/share
on an NFS server, you
2002-06-30 16:57:29 +04:00
will want to mount those file systems as well.
To do this, you will need to enable the network:
.Pp
.Dl # Ic "sh /etc/rc.d/network start"
1999-01-13 10:30:01 +03:00
.It
Make sure you are in the root file system
.Pq Pa / and extract the
.Sy base
binary set:
.Pp
.Dl # Ic "cd /"
.Dl # Ic "pax -zrvpe -f Ar /path/to/base.tgz
1999-01-13 10:30:01 +03:00
.It
Install a new boot block:
(assuming root is on
.Pa /dev/rsd0a )
.Pp
.Dl # Ic "cd /usr/mdec"
.Dl # Ic "cp -p \&./ufsboot /mnt/ufsboot"
.Dl # Ic "sync ; sleep 1 ; sync"
.Dl # Ic "/usr/sbin/installboot -v /dev/rsd0a bootxx /ufsboot"
1999-01-13 10:30:01 +03:00
.It
Sync the file systems:
.Pp
.Dl Ic sync
1999-01-13 10:30:01 +03:00
.It
At this point you may extract any other binary sets
you may have placed on local file systems, or you may
1999-01-13 10:30:01 +03:00
wish to extract additional sets at a later time.
To extract these sets, use the following commands:
.Pp
.Dl # Ic "cd /"
.Dl # Ic "pax -zrvpe -f" Ar path_to_set
.bullet)
1999-01-13 10:30:01 +03:00
.(Note
.No You Em should not
extract the
.Sy etc
2002-06-30 16:57:29 +04:00
set if upgrading.
Instead, you should extract that set into another
1999-01-13 10:30:01 +03:00
area and carefully merge the changes by hand.
.Note)