Upgrading from older versions: Difference between revisions
(use https links) |
m (→Upgrading from 2.0 or 1.10.x to Alpine Linux 2.2 and later: Give users of these ancient versions some hope....) |
||
Line 41: | Line 41: | ||
Download {{Pkg|busybox-static}} and install it: | Download {{Pkg|busybox-static}} and install it: | ||
{{Cmd|wget https://nl.alpinelinux.org/alpine/ | {{Cmd|wget https://nl.alpinelinux.org/alpine/v3.0/main/x86/busybox-static-1.22.1-r9.apk | ||
apk add busybox-static-1.18.4-r3.apk}} | apk add busybox-static-1.18.4-r3.apk}} | ||
Download {{Pkg|apk-tools-static}} and install it: | Download {{Pkg|apk-tools-static}} and install it: | ||
{{Cmd|wget https://nl.alpinelinux.org/alpine/ | {{Cmd|wget https://nl.alpinelinux.org/alpine/v3.0/main/x86/apk-tools-static-2.4.4-r0.apk | ||
apk add apk-tools-static-2.1.0-r1.apk}} | apk add apk-tools-static-2.1.0-r1.apk}} | ||
Revision as of 03:47, 25 August 2023
Upgrading Alpine v2.x to v3.x
Installing statically linked tools
Statically linked version of apk-tools is needed, because the old musl version would stop working after a libc change (possibly in the middle of upgrade). Static version of busybox can be handy in case of the recovery from a failure.
apk add busybox-static apk-tools-static
Changing repositories to v3.x
To begin, you need to update your /etc/apk/repositories file. Here are some shortcuts for doing so:
- Launch
setup-apkrepos
Enter e to edit /etc/apk/repositories. Change the version number by hand. - Or, edit the file in place. This is how you'd change v2.7 to v3.0:
sed -i -e 's/v2\.7/v3.0/g' /etc/apk/repositories
- Launch
Upgrading system
Use statically linked version of apk to update content of repository:
apk.static update
Simulating upgrade is recommended in order to detect issues beforehand:
apk.static upgrade --no-self-upgrade --available --simulate
With no problems encountered or after resolving them, start proper upgrade:
apk.static upgrade --no-self-upgrade --available
Upgrading from 2.0 or 1.10.x to Alpine Linux 2.2 and later
Since the apk tool has been significantly changed you need to download and install manually the latest version of apk-tools-static. We also install busybox-static just in case something goes wrong.
If current version is 1.10.x remove GNU Wget before attempting an upgrade:
apk del wget
Download busybox-static and install it:
wget https://nl.alpinelinux.org/alpine/v3.0/main/x86/busybox-static-1.22.1-r9.apk apk add busybox-static-1.18.4-r3.apk
Download apk-tools-static and install it:
wget https://nl.alpinelinux.org/alpine/v3.0/main/x86/apk-tools-static-2.4.4-r0.apk apk add apk-tools-static-2.1.0-r1.apk
Change repositories:
Contents of /etc/apk/repositories
Proceed with update and upgrade:
apk.static update apk.static upgrade --available
The --available
switch is used to force all packages to be upgraded, even if they have the same version number, due to changes in uClibc.
Reboot the system to load new kernel
sync reboot