Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Login to the client you are planning to upgrade.

  2. Uninstall any previous version of the NetWorker software prior to installing the new version.

  3. Fetch the installer from the VSS Users Storage. Replace $USER with your VSS Username.

    Code Block
    # Ubuntu/debian based
    scp $USER@vskey-stor.eis.utoronto.ca:ut-vss-lib/networker/nix/nw191005_linux_x86_64/lgtoclnt_19.10.0.5_amd64.deb /root/
    
    # Red Hat based
    scp $USER@vskey-stor.eis.utoronto.ca:ut-vss-lib/networker/nix/nw191005_linux_x86_64/lgtoclnt-19.10.0.5-1.x86_64.rpm /root/
  4. Alternatively, fetch the installer from the UTORrecover SharePoint site: https://utoronto.sharepoint.com/sites/its-eis-UTORrecover

  5. Proceed to install the package:

    Code Block
    # Ubuntu/debian based
    sudo dpkg -i /root/lgtoclnt_19.10.0.5_amd64.deb
    
    # Red Hat based
    yum localinstall --nogpgcheck  /root/lgtoclnt-19.10.0.5-1.x86_64.rpm 
    dnf install ./lgtoclnt-19.10.0.5-1.x86_64.rpm 
  6. Check if lgto package has been installed successfully:

    Code Block
    # Ubuntu/debian based
    pkg -l | grep lgto
    
    # Red Hat based
    rpm -qa | grep lgto

...