Include:Upgrading to latest release: Difference between revisions

From Alpine Linux
(Add option to upgrade to last release without set the version number)
m (Fix typo (reported by cim209))
Line 4: Line 4:
:* Launch {{Cmd|setup-apkrepos}} Enter {{Key|e}} to edit {{Path|/etc/apk/repositories}}. Change the version number by hand.
:* Launch {{Cmd|setup-apkrepos}} Enter {{Key|e}} to edit {{Path|/etc/apk/repositories}}. Change the version number by hand.
:* Or, edit the file in place. This is how you'd change <var>v2.5</var> to <var>v2.6</var>: {{Cmd|sed -i -e 's/<var>v2\.5</var>/<var>v2.6</var>/g' /etc/apk/repositories}}
:* Or, edit the file in place. This is how you'd change <var>v2.5</var> to <var>v2.6</var>: {{Cmd|sed -i -e 's/<var>v2\.5</var>/<var>v2.6</var>/g' /etc/apk/repositories}}
:* Or set directly the last stable release on the repository file {{Path|/etc/apk/repositories}} and avoid jump the release number each time: {{Cmd|http://dl-3.alpinelinux.org/alpine/latest-stable/main}} {{Cmd|http://dl-3.alpinelinux.org/alpine/latest-stable/comunity}}
:* Or set directly the last stable release on the repository file {{Path|/etc/apk/repositories}} and avoid jump the release number each time: {{Cmd|http://dl-3.alpinelinux.org/alpine/latest-stable/main}} {{Cmd|http://dl-3.alpinelinux.org/alpine/latest-stable/community}}





Revision as of 06:29, 3 April 2020

When Alpine Linux is installed to hard drive, upgrading to a newer stable version is straightforward.

To begin, you need to update your /etc/apk/repositories file. Here are some shortcuts for doing so:


Or you could do this manually: Edit the /etc/apk/repositories file using any editor of your choice (nano for instance) to edit the Alpine Linux package repositories.

Contents of /etc/apk/repositories

http://dl-3.alpinelinux.org/alpine/v3.19/main http://dl-3.alpinelinux.org/alpine/v3.19/community

In the above file, to upgrade Alpine Linux from version 3.19 to 3.20, simply replace the number 3.19 by 3.20 in all the places, so that the updated repositories file looks like below:

Contents of /etc/apk/repositories

http://dl-3.alpinelinux.org/alpine/v3.20/main http://dl-3.alpinelinux.org/alpine/v3.20/community

If you're upgrading from a version of Alpine before 2.3.0_rc1, ensure you have the latest available version of the Alpine Linux Package Manager first before upgrading anything else:

apk add --upgrade apk-tools

Next, upgrade all your packages:

apk upgrade --available

The --available switch is used to force all packages to be upgraded, even if they have the same version numbers. Sometimes changes in uClibc require doing this.

Note: You will need to restart any services that have been upgraded to begin using the upgraded versions. If the kernel is upgraded, you will need to reboot to begin using the upgraded version:

sync reboot