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...") |
|||
(One intermediate revision by the same user not shown) | |||
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>Using '''vnx_update''' script distributed with VNX, which is basically a simple script that implements the previous procedure:</li> | |
− | <li> | + | /usr/share/vnx/bin/vnx_update |
− | + | <li>Manually downloading the tgz file, uncompressing and installing it:</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> | ||
+ | </ul> |
Latest revision as of 12:15, 21 March 2016
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:
- Using vnx_update script distributed with VNX, which is basically a simple script that implements the previous procedure:
/usr/share/vnx/bin/vnx_update
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