Difference between revisions of "Vnx-update-vnx"
(Created page with "{{Title|Updating VNX}} This document describes the procedure for manually updating VNX to the latest version available on VNX repository. Open a root shell window and follo...") |
|||
Line 1: | Line 1: | ||
{{Title|Updating VNX}} | {{Title|Updating VNX}} | ||
− | This document describes the procedure for manually updating VNX to the latest version available on VNX repository. | + | This document describes the procedure for manually updating VNX to the latest version available on VNX repository (http://vnx.dit.upm.es/vnx/vnx-latest.tgz). |
+ | |||
+ | There are basically two methods to update VNX: | ||
− | |||
<ul> | <ul> | ||
− | + | <li>Manually downloading the tgz file, uncompressing and installing it:</li> | |
− | <li> | + | <pre> |
− | + | mkdir /tmp/vnx-update | |
+ | cd /tmp/vnx-update | ||
+ | rm -rf /tmp/vnx-update/vnx-* | ||
+ | wget http://vnx.dit.upm.es/vnx/vnx-latest.tgz | ||
+ | tar xfvz vnx-latest.tgz | ||
+ | cd vnx-* | ||
+ | ./install_vnx | ||
+ | </pre> | ||
+ | <li>Using '''vnx_update''' script distributed with VNX, which is basically a simple script that implements the previous procedure:</li> | ||
+ | /usr/share/vnx/bin/vnx_update | ||
+ | </ul> |
Revision as of 23:44, 23 May 2012
Updating VNX
This document describes the procedure for manually updating VNX to the latest version available on VNX repository (http://vnx.dit.upm.es/vnx/vnx-latest.tgz).
There are basically two methods to update VNX:
- Manually downloading the tgz file, uncompressing and installing it:
mkdir /tmp/vnx-update cd /tmp/vnx-update rm -rf /tmp/vnx-update/vnx-* wget http://vnx.dit.upm.es/vnx/vnx-latest.tgz tar xfvz vnx-latest.tgz cd vnx-* ./install_vnx
/usr/share/vnx/bin/vnx_update