OpenBSD
Upgrade Guide: 4.1 to 4.2
[FAQ Index] |
[4.0 -> 4.1] |
[4.2 -> 4.3]
Note: Upgrades are only supported from one release to the release
immediately following it.
Do not skip releases.
It is highly recommended that you read through and fully understand
this process before attempting it.
If you are doing it on a critical or physically remote machine, it is
recommended that you test this process on an identical, local system to
verify its success before attempting on a critical or remote computer.
Upgrading is a convenient way to bring your OpenBSD system up to the most
recent version.
However, the results are not intended to precisely match the results of
a wipe-and-reload installation.
Old library files in particular are not removed in the upgrade process,
as they may be required by older applications that may or may not be
upgraded at this time.
If you REALLY wish to get rid of all these old files, you are probably
better off reinstalling from scratch.
Table of Contents:
Before upgrading: things to think about and be aware of
This is not a complete list of the changes that took place
between 4.1 and 4.2, but rather some of the important things that will
impact a large number of users in the upgrade process.
For a more complete list of changes, see
plus42.html and the CVS change logs.
- Packages are now using libexpat shipped with X;
xbase42.tgz is your friend:
The libexpat port has been removed.
Packages now use the libexpat which is shipped with X instead.
Many packages depend on libexpat through other dependencies.
For instance, many packages require gettext which depends on
libexpat. Therefore, these packages also depend on libexpat.
This means that many systems that weren't using X before will now need to
have xbase42.tgz
installed.
If you don't do this and try to install a package that requires libexpat,
pkg_add(1) will give an error message.
Also note that building ports is only supported with a full installation,
including all X file sets.
Finally, after upgrading all your packages to the 4.2 versions, clean up
by removing the old expat package from your system:
# pkg_delete expat
This will impact a large number of users!
This was an unfortunate decision whose ramifications were not recognized
earlier in the process.
For 4.3, libexpat will be part of base43.tgz
, solving this
problem.
- Enter X.org v7.2, exit XF3:
A new version of X is in OpenBSD 4.2.
Your old X configuration may need to be adjusted, but many people will
find they don't need an X configuration file at all anymore.
As OpenBSD adapts to the newest versions of X.org, support for
XF3 on the i386 platform (the only platform it was used on still)
has been dropped.
XF3 was needed only for some very old video chips which were not
supported by XF4 and X.org.
It is not believed this will impact many people.
The new X.org version changes a lot of config files, so there is a
separate section to this upgrade process for X users.
- Updated
ahci
driver may change how disks are handled:
Systems using the ahci(4) driver may find SATA disks which had been
recognized and handled by the
wd(4)
(i.e., wd0) to become
sd(4)
(i.e., sd0) devices.
Watch the dmesg
output at boot.
A drive which turned up earlier as:
pciide1 at pci0 dev 31 function 2 "Intel 82801GBM AHCI SATA" rev 0x02: DMA, channel 0 wired to native-PCI, channel 1 wired to native-PCI
pciide1: using apic 2 int 11 (irq 11) for native-PCI interrupt
wd0 at pciide1 channel 0 drive 0: <FUJITSU MHV2080BH>
wd0: 16-sector PIO, LBA48, 76319MB, 156301488 sectors
wd0(pciide1:0:0): using PIO mode 4, Ultra-DMA mode 5
now instead turns up as:
ahci0 at pci0 dev 31 function 2 "Intel 82801GBM AHCI SATA" rev 0x02: AHCI 1.1: apic 2 int 16 (irq 11)
scsibus1 at ahci0: 32 targets
sd0 at scsibus1 targ 0 lun 0: <ATA, FUJITSU MHV2080B, 0084> SCSI2 0/direct fixed
sd0: 76319MB, 76319 cyl, 64 head, 32 sec, 512 bytes/sec, 156301488 sec total
This will cause problems for people doing remote upgrades of these
machines, as if the fstab file is not "correct", the system will not
complete booting.
Unfortunately, how the driver handles the disk is dependent upon a lot
of things including BIOS configurations, so IF one has an AHCI SATA
interface, one will have to experiment with a similarly configured
local machine to see if the /etc/fstab
file will need to be
re-worked.
It is believed very few people will be hit by this now, as ahci(4)
devices are moderately rare on existing hardware, though becoming much
more common now.
- bgpd filter language change:
bgpd filters using only prefixlen
as filter parameter now need to
include an address family identifier like inet
or
inet6
:
allow from any inet prefixlen 8 - 24
deny from any inet6 prefixlen > 64
As a reminder, bgplg and associated binaries are disabled at
install/upgrade time. If you use them, they must be re-enabled as
described in
bgplg(8).
- SSH protocol 1 discouraged on new installs:
New OpenBSD installs will default to not accepting SSH v1 connections.
This upgrade process will not replace the /etc/ssh
configuration files, but you may wish to manually do this to gain the
new behavior.
The following diff shows what has changed on new installs:
--- ./etc/ssh/sshd_config Sat Mar 10 20:31:32 2007
+++ ../42/etc/ssh/sshd_config Tue Aug 28 11:59:52 2007
@@ -11,3 +11,2 @@
#Port 22
-#Protocol 2,1
#AddressFamily any
@@ -15,2 +14,7 @@
#ListenAddress ::
+
+# Disable legacy (protocol version 1) support in the server for new
+# installations. In future the default will change to require explicit
+# activation of protocol 1
+Protocol 2
Again, this change is NOT part of the standard upgrade process.
- Changes in the way sudo(8) passes environment:
For security reasons
sudo(8)
will now reset the environment to a small default set
with only certain variables preserved from the previous environment.
In order for many things to continue to work as expected, the patch file
below will add a "Defaults env_keep
"
line to your /etc/sudoers
file and otherwise try to make the
file look like the one in etc42.tgz
, but will possibly fail.
You will want to make sure your sudoers
file contains
a line that looks something like:
%wheel ALL=(ALL) SETENV: ALL
-- or --
%wheel ALL=(ALL) NOPASSWD: SETENV: ALL
assuming you wish "wheel" group users to have full sudo rights.
It would probably be wise to test sudo(8) for proper operation before
logging out of the system after the patch file is applied.
- [alpha Only] Some de(4) NICs will become dc(4):
On the alpha platform, some NICs which had
been supported by the
de(4)
driver will now be supported by
dc(4).
IF your NIC is one of these, you will need to alter at least your /etc/hostname.deX
(hint: hard link) and your pf.conf files as appropriate.
Again, this is only on the alpha platform.
- [i386 Only] apm(4) takes precedence over acpi(4)
The device detection on i386 has been modified to make
apm(4) take precedence over
acpi(4).
It means that if your hardware has both apm and acpi devices, only apm will
attach.
If for some reason you prefer to use acpi, disable apm
on your
acpi-enabled kernel using config(8)
or boot -c
.
- rc.conf:
Unlike earlier versions of this process, since
4.1 it is assumed that
/etc/rc.conf
is not a user-altered file.
If you have made changes to your /etc/rc.conf
file, merge those
changes into /etc/rc.conf.local
.
If you have NO /etc/rc.conf.local
, simply copy your existing
/etc/rc.conf
file to /etc/rc.conf.local
and
delete the last line of the script!
Otherwise, pull your existing rc.conf
into the top of your
existing rc.conf.local
file and remove the last line
before doing the rest of this process.
- Modified kernel:
Check whether you have made any modifications to your kernel.
For example, you might have modified your network device to use a
non-default setting using config(8).
Note your changes, so you can repeat them for the new 4.2 kernel.
The upgrade process
Upgrading by install kernel
If you have access to the system's console, the easiest and safest way
to upgrade is to boot from install media or
bsd.rd and follow the upgrade steps,
which are very similar to the install process.
Afterwards, complete the upgrade by following the final
steps as detailed below.
One easy way to boot from the install kernel is to place the 4.2 version
of bsd.rd in the root of your boot drive, then instruct the boot loader
to boot using this new bsd.rd file.
On amd64 and i386, you do this by entering "boot bsd.rd
" at the
initial boot>
prompt.
Upgrading without install kernel
This is NOT the recommended process. Use the install kernel method
if at all possible!
Sometimes, one needs to do an upgrade of a machine when one can't easily
use the normal upgrade process.
The most common case is when the machine is in a remote location and you
don't have easy access to the system console.
One can usually do this by carefully following this process:
During this process,
sendmail(8)
may produce some error messages like the following:
Nov 1 12:47:05 puffy sm-mta[16733]: filesys_update failed: No such file or directory, fs=., avail=-1, blocksize=380204
These messages can be safely ignored for the moment, or you may wish to
halt sendmail(8) during the upgrade process.
Note that sendmail is not working properly at this point, and will need
to be restarted (as part of the reboot) before mail is expected to be
handled properly.
Final steps
Whether you upgrade by using an install kernel and doing a formal
"upgrade" process, or do a "in-place" binary upgrade, there are certain
manual steps that have to be performed.
1. Upgrading /etc
You will want to extract the etc42.tgz
files to a temporary
location:
tar -C /tmp -xzphf ${RELEASEPATH}/etc42.tgz
Files that can probably be copied from etc42.tgz
"as is":
etc/magic
etc/man.conf
etc/netstart
etc/rc
etc/rc.conf
etc/rpc
etc/services
etc/mail/helpfile
etc/mail/localhost.cf
etc/mail/sendmail.cf
etc/mail/submit.cf
etc/mtree/4.4BSD.dist
etc/mtree/BSD.local.dist
etc/mtree/special
Note that it IS possible to locally modify these files, if this has been
done, manual merging will be needed.
Pay special attention to mail/*
if you are using something
other than the default Sendmail(8) configuration.
Here are copy/paste lines for copying these files, assuming you unpacked
etc42.tgz
in the above recommended place:
cd /tmp/etc
cp magic man.conf netstart rc rc.conf rpc services /etc
cp mtree/* /etc/mtree/
cp mail/helpfile mail/localhost.cf mail/submit.cf /etc/mail
cp mail/sendmail.cf /etc/mail # Careful on this one!!
Files that must be manually merged, respecting any local
changes made to them, if they were modified from the default,
otherwise, just copy them over, too:
etc/ntpd.conf
etc/sensorsd.conf
etc/ssh/ssh_config
etc/ssl/x509v3.cnf
etc/sudoers
etc/sysctl.conf
etc/wsconsctl.conf
var/www/conf/httpd.conf
The changes to these files are in this
patch file.
You can attempt to use this by executing the following as root:
cd /
patch -C -p0 < upgrade42.patch
This will test the patch to see how well it will apply to YOUR system,
to actually apply it, leave off the "-C
" option.
Note that it is likely that if you have customized files or not kept
them closely updated, or are upgrading from a snapshot of 3.9, they may
not accept the patch cleanly.
In those cases, you will need to manually apply the changes.
Please test this process before relying on it for a machine you can not
easily get to.
The following files have had changes which should be looked at, but it
is unlikely they should be directly copied or merged (i.e., if you are
using bgpd.conf, look at the suggested change of strategy, and decide if
it is appropriate for your use).
etc/bgpd.conf
etc/mail/spamd.conf
etc/ospfd.conf
etc/ssh/sshd_config
Finally, use
newaliases(8)
to update the aliases database and
mtree(8)
to create any new directories:
newaliases
mtree -qdef /etc/mtree/4.4BSD.dist -p / -u
2. Checking the kernel
Note: most people can skip this step!
If you followed the instructions for the upgrade process without install
kernel, you have already completed this step.
However, if you used the install kernel, and if you had a modified kernel
in 4.1, it is likely you will need to modify the stock kernel of 4.2.
This can be as simple as modifying a specific device using config(8),
or it can involve a recompilation if the option you need is not included
in the GENERIC kernel.
Please consult FAQ 5 - Building the system from source
before considering to recompile your kernel.
3. X configuration files
Due to the significant changes in X for this release, the easiest way to
upgrade your X for 4.2 may be to back up your existing X configuration
files, unpack xetc42.tgz, and manually merge back any changes you had
made.
The files you are most likely to want to save a copy of are
/etc/X11/xorg.conf
and /etc/X11/xinit/xinitrc
.
As X now often works with NO xorg.conf file, you may wish to try it
without one before you copy your file back.
Unpack xetc42.tgz as you would other file sets:
export RELEASEPATH=/usr/rel
cd ${RELEASEPATH}
tar -C / -xzphf xetc42.tgz
4. Upgrading packages
If you installed any packages on your system, you should upgrade them
after completing the upgrade of the base system.
Be aware, however, many packages will require further setup before
and/or after upgrading the package.
Check with the application's upgrade guide for details.
The following package is known to have significant upgrade issues
that will impact a large number of users.
The fact that a package is not on this list doesn't mean it will have a
trivial upgrade.
You must do some homework on the applications YOU use.
- xfce: Configuration base directory and files have completely
changed. You will probably have to re-create your configuration from
scratch.
Before continuing, there are some major changes in the 4.2 release which
you should know about:
- The libexpat port has been removed, and packages are now using the
libexpat shipped with X11 instead.
Many packages depend on libexpat through other dependencies.
For instance, all the packages which require gettext also depend on libexpat.
This means that before you can add or upgrade packages, you most likely
need to have
xbase42.tgz
installed, even if the packages you are
installing don't have a graphical operation.
Refer to the
FAQ about adding
xbase42.tgz
to an installed system.
If you don't do this and try to install a package that requires libexpat,
pkg_add(1) will give an error message.
- If you are using pkg_add(1) in combination with sudo(8), you will
need to change your
/etc/sudoers
as the
patch file attempts to.
See changes in sudo(8) for more info.
The package tools support in-place updating using pkg_add -u
.
For instance, to update all your packages, make sure PKG_PATH
is
pointing to the 4.2 packages directory on your CD or nearest FTP mirror,
and use something like
# pkg_add -ui -F update -F updatedepends
where the -u
indicates update mode, and -i
specifies
interactive mode, so pkg_add will prompt you for input when it encounters
some ambiguity. Read the
pkg_add(1)
manual page and the package management
chapter of the FAQ for more information.
You will very possibly see something like this when running the above
command:
Looking for updates: complete
Cannot find updates for expat-2.0.0
Proceed? [y/N]
This is indicating you have run into the libexpat problem and must now
install xbase42.tgz
as mentioned above.
If you have not installed xbase42.tgz, it is recommended that you stop
the package update, install xbase42.tgz and then re-run the package
upgrade.
Finally, after upgrading all your packages,
clean up by removing the old expat package from your system:
# pkg_delete expat
[FAQ Index] |
[4.0 -> 4.1] |
[4.2 -> 4.3]
$OpenBSD: upgrade42.html,v 1.48 2019/05/28 01:53:11 bentley Exp $
¡®Yes, sir. I felt sure you understood that. She said she had told you.¡¯ "Why, eh,--I--I don't know that my movements need have anything to do with his. Yours, of course,--" "Ah, but if it saved your life!" "No, I'm not," grumbled the Doctor, "I've had enough of this wild-goose chase. And besides, it's nearly dinner time." "I am coming to that," Lawrence said, lighting a fresh cigarette. "As soon as Bruce was in trouble and the plot began to reel off I saw that it was mine. Of course there were large varyings in the details, but the scheme was mine. It was even laid on the same spot as my skeleton story. When I grasped that, I knew quite well that somebody must have stolen my plot." Judy In a coach-house, through which we passed on our way to see the prince's favourite horses with the state carriages¡ªquite commonplace and comfortable, and made at Palitana¡ªwas a chigram,[Pg 68] off which its silk cover was lifted; it was painted bright red and spangled with twinkling copper nails. This carriage, which is hermetically closed when the Ranee goes out in it, was lined with cloth-of-gold patterned with Gohel Sheri's initials within a horseshoe: a little hand-glass on one of the cushions, two boxes of chased silver, the curtains and hangings redolent of otto of roses. "Are you certain of it? You have seen so very little of him, and you may be mistaken." "And your wife?" "I drawed on my man's bundle o' wood," said Gid, "and then dropped a little, so's to git him where he was biggest and make sure o' him." HoME²¨¶àÒ°½áÒÂ×óÏßÊÓÆµ
ENTER NUMBET 0016hbcakl.org.cn
www.hcdram.com.cn
lianpei.org.cn
lotia.com.cn
www.ltjrhy.org.cn
jo15.org.cn
www.eatlas.com.cn
twoeci.com.cn
www.pjrbtd.com.cn
www.qvnews.com.cn