Upgrading Alpine - HD v1.8.x: Difference between revisions

From Alpine Linux
(Using template for execute_upgrade_script notes)
(Changed path to .sha1 file)
Line 14: Line 14:
  cd /media/$LBU_MEDIA
  cd /media/$LBU_MEDIA
  wget -c {{Latest_1.8_alpine_gz-mirror}}{{Latest_1.8_alpine_gz-filename}}
  wget -c {{Latest_1.8_alpine_gz-mirror}}{{Latest_1.8_alpine_gz-filename}}
  wget {{Latest_1.8_alpine_gz-mirror}}{{Latest_1.8_alpine_gz-filename}}.sha1
  wget http://dev.alpinelinux.org/alpine/v1.8/usbdrive/{{Latest_1.8_alpine_gz-filename}}.sha1


Check integrity of the downloaded files ''(it might take some time)''
Check integrity of the downloaded files ''(it might take some time)''

Revision as of 15:44, 10 February 2009

Alpine that runs on HD

This document applies to alpine which is installed on HardDisk(HD), CompactFlash(CF) or USB.

All examples/instructions/actions mentioned in this document should be executed on the box that you are planning to upgrade (unless you are instructed otherwise).

Setup environment variables

To make the documentation a bit more "generic" we start by setting some environment variables.

vi /etc/lbu/lbu.conf

Make sure that the variable LBU_MEDIA is not commented (by removing the leading '#').

You also need to set a appropriate value for your LBU_MEDIA. The media you choose will be the media where you store your settings/configuration.

Note: Even if you have you alpine installed on CF, HD or USB you can still choose to save your config on some other media that suits your needs. But remember that both the media where you have your Alpine system AND the media where you have your config need to be in your box when booting it.

Examples:

LBU_MEDIA=usb

or:

LBU_MEDIA=sda1

Now that you have your /etc/lbu/lbu.conf configured for your needs, we will set the environment variables (note the leading .).

. /etc/lbu/lbu.conf

You can test if your environment variable was set:

echo $LBU_MEDIA

It should output something like usb, sda1, or whatever you just configured.

Back up your config

Before starting to upgrade, it's wise to save your configuration.

lbu ci

Download a new alpine release

Start by checking that you have enough space on your media.
You need at least 350MB available space.

df -h | grep "Filesystem\|$LBU_MEDIA"

Start downloading a new '.tar.gz' and a '.sha1' file

cd /media/$LBU_MEDIA
wget -c 

https://web.archive.org/web/20101206020622/http://dl-3.alpinelinux.org/alpine/v1.8/usbdrive/alpine-1.8.3-i386.tar.gz

wget http://dev.alpinelinux.org/alpine/v1.8/usbdrive/alpine-1.8.3-i386.tar.gz.sha1

Check integrity of the downloaded files (it might take some time)

sha1sum -c alpine-1.8.3-i386.tar.gz.sha1

The output of the above command should say 'OK'.
If says 'FAILED', delete the tar.gz file and download it again.

Extract the 'tar.gz'

Extract content of archive in new dir

cd /media/$LBU_MEDIA
mkdir alpine-1.8
tar xvzf alpine-1.8.3-i386.tar.gz -C alpine-1.8

Remove old packages dir and copy updated files

rm -rf /media/$LBU_MEDIA/apks
cd /media/$LBU_MEDIA/alpine-1.8
cp syslinux.txt upgrade *.bz2 .alpine-release ..
cp -a apks/ ..
cp -a kernel/ ..

Execute upgrade script

The new media has a 'upgrade' script found on root level on media. This 'upgrade' script needs to be executed and walked through.

/media/$LBU_MEDIA/upgrade

You will be informed about various changes and you will be able to choose if you want to keep your old config-files or if you want to use a new.
Each setup is different, so it's hard to say what needs to be upgraded and what should be kept.

When the new media holds a updated version of configfile, you will be prompted with something that looks like this:

Quit, Next, Show diff, Edit new, Zap new, Use new (q/n/s/e/z/u) [s]:

If you choose to 'Edit new' you will use the 'vi' editor.
A short note on how you use that editor:

  • i = Enter "insert" mode so you can edit the content
  • [esc] = Enter CMD-mode where you can chose to save/quit
    • CMD-mode has these options
      • :w = Write your changes
      • :q = Quit editor
      • :q! = Force quit even if you have changes that is still not saved

Clean up

Clean up the downloaded/unpacked files

rm /media/$LBU_MEDIA/alpine-1.8.3-i386.tar.gz
rm /media/$LBU_MEDIA/alpine-1.8.3-i386.tar.gz.sha1
rm -rf /media/$LBU_MEDIA/alpine-1.8

Save changes

Now that all upgrades are done, we should save our settings to our media (which you hopefully have backed up).

lbu ci

Rebooting

In most cases you will need to reboot Alpine (specially if there are changes in the kernel):

reboot

Note: If you know what you are doing, you might not need to reboot.
But make sure that all services affected by the upgrade are restarted.