Trying to install Netbackup 7.1 client on Ubuntu 11.04
Created: 08 Oct 2011 | 4 comments
1. I downloaded the tar ball install from fileconnect and extracted it.
2. cd /Netbackup_7.1_CLIENTS ./install Choose Debian 2.6 and all other Linux options to no avail.
3. Script did not install, got a "Detected an attempt to install incorrect platform and/or operating system and version client binaries."
How do I install 7.1 client on Ubuntu 11.04 client?
Thanks
Discussion Filed Under:
Comments
Checking the compatability
Checking the compatability guide, 11.04 is not supported.
This might work as a workaround :
http://www.symantec.com/docs/TECH158474
Regards,
Martin
I'm trying to install the
I'm trying to install the client on 11.10. I know it's not supported, but I just want the JAVA administration console locally installed on my workstation.
Funny thing is that if it's installed on a version of Ubuntu that is supported, and then Ubuntu is upgraded to 11.10, everything still works
Only 64-bit linux OS
Only 64-bit linux OS supported from version 7 (apart from FreeBSD), use the 6.5 installation files to install to 32-bit systems.
Patches to install on any version of Ubuntu (even unsupported)
Nobody mentioned this is anything to do with 32 or 64 bit.
JAB3:
I've written some patches which when applied to the relevant installer scripts will allow you to install the NetBakup 7.1 client to any Ubuntu version:
NBClients/anb/Clients/usr/openv/netbackup/client/Linux/Debian2.6/client_config:
--- NBClients/anb/Clients/usr/openv/netbackup/client/Linux/Debian2.6/client_config~ 2011-02-04 00:16:55.000000000 +0000 +++ NBClients/anb/Clients/usr/openv/netbackup/client/Linux/Debian2.6/client_config 2011-11-23 15:13:26.810819937 +0000 @@ -251,7 +251,7 @@ MY_OS_VERSION=IBMpSeriesSuSE2.6 fi fi - elif [ "${oslevel_f1}" = "2" -a "${oslevel_f2}" -ge "6" ] ; then + else if [ "${ProcessorType}" = "x86_64" ] ; then if [ "${suse}" = "no" ] ; then if [ -f /etc/debian_version ] ; thenNBClients/anb/Clients/usr/openv/netbackup/client/Linux/Debian2.6/cp_to_client:
--- NBClients/anb/Clients/usr/openv/netbackup/client/Linux/Debian2.6/cp_to_client~ 2011-02-04 00:16:56.000000000 +0000 +++ NBClients/anb/Clients/usr/openv/netbackup/client/Linux/Debian2.6/cp_to_client 2011-11-23 15:13:18.410819922 +0000 @@ -293,7 +293,7 @@ MY_OS_VERSION=IBMpSeriesSuSE2.6 fi fi - elif [ "${oslevel_f1}" = "2" -a "${oslevel_f2}" -ge "6" ] ; then + else if [ "${ProcessorType}" = "x86_64" ] ; then if [ "${suse}" = "no" ] ; then if [ -f /etc/debian_version ] ; thenNBClients/anb/Clients/usr/openv/netbackup/client/Linux/Debian2.6/installpbx:
--- NBClients/anb/Clients/usr/openv/netbackup/client/Linux/Debian2.6/installpbx~ 2011-11-23 15:39:30.406822891 +0000 +++ NBClients/anb/Clients/usr/openv/netbackup/client/Linux/Debian2.6/installpbx 2011-11-23 15:41:41.962823139 +0000 @@ -1922,8 +1922,8 @@ OS_RELEASE_BUILD=`uname -r | cut -d '-' -f 1 | cut -d '.' -f 3` ARCH=`uname -m` - if [ $OS_RELEASE_MAJOR -ge 2 -a $OS_RELEASE_MINOR\ - -ge 6 ] || [ $OS_RELEASE_MAJOR -ge 5 ]; then + if [ $OS_RELEASE_MAJOR -a $OS_RELEASE_MINOR\ + ] || [ $OS_RELEASE_MAJOR ]; then if [ "$ARCH" = "ia64" ] then if [ -f "/etc/SuSE-release" ] ; thenI've just successfully installed the client in Oneiric 11.10 because I need the JAVA administration console. Remember though that Oneiric isn't supported in 7.1.
Would you like to reply?
Login or Register to post your comment.