Include:Upgrading to latest release: Difference between revisions

From Alpine Linux
(Migrate text from "Upgrading to latest release")
 
(reorganize, merge in info from "Upgrading from 2.1 to Alpine Linux 2.2 and later")
Line 1: Line 1:
An upgrade of a running Alpine Linux from a previous version to the latest stable version can be done in a few simple steps.  
When Alpine Linux is installed to hard drive, upgrading to a newer stable version is straightforward.


Update the ''/etc/apk/repositories'' file
To begin, you need to update your {{Path|/etc/apk/repositories}} file. Here are some shortcuts for doing so:
:* Launch {{Cmd|setup-apkrepos}}
:* Launch {{Cmd|setup-apkrepos}} Press {{Key|e}} to edit {{Path|/etc/apk/repositories}}. Change the version number by hand.
:* Press 'e' to edit your ''/etc/apk/repositories'' file
:* Or, edit the file in place. This is how you'd change <var>v2.3</var> to <var>v2.4</var>: {{Cmd|sed -i -e 's/<var>v2\.3</var>/<var>v2.4</var>/g' /etc/apk/repositories}}
:* Change the version number to match the latest version by hand
 
: or
Or you could do this manually: {{:Include:Using_Internet_Repositories_for_apk-tools}}
:* Add the latest release repository to ''/etc/apk/repositories'': {{Cmd|echo http://dl-3.alpinelinux.org/alpine/<var>v2.4</var>/main >> /etc/apk/repositories}}
 
: or
Next, ensure you have the latest available version of the Alpine Linux Package Manager first before upgrading anything else:
:*just edit the file in-place (replace <var>v2.4</var> with your release): {{Cmd|sed -i -e 's/<var>v2.3</var>/<var>v2.4</var>/g' /etc/apk/repositories}}
{{Cmd|apk add --upgrade apk-tools}}
 
Next, upgrade all packages in one shot: {{Cmd|apk upgrade --update-cache --available}}
The <code>--available</code> switch is used to force all packages to be upgraded, even if they have the same version numbers. Sometimes changes in uClibc have required 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:
{{Cmd|sync
reboot}}
}}


Upgrade all packages in one shot: {{Cmd|apk upgrade -a -U}}


[[Category:Package Manager]]
[[Category:Package Manager]]
[[Category:Installation]]
[[Category:Installation]]

Revision as of 16:41, 29 October 2012

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:

  • Launch

    setup-apkrepos

    Press 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.3 to v2.4:

    sed -i -e 's/v2\.3/v2.4/g' /etc/apk/repositories

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

Next, 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 packages in one shot:

apk upgrade --update-cache --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 have required 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