AIX

AIX

Connect with fellow AIX users and experts to gain knowledge, share insights, and solve problems.


#Power
#Power
#Operatingsystems
#Servers
 View Only
  • 1.  Error: Cannot load program bash

    Posted 02/12/07 03:28 AM

    Originally posted by: SystemAdmin


    I have downloaded the bash package from ibm site.I unpacked it and then executed bash on command prompt. It responded with following error:
    exec(): 0509-036 Cannot load program bash because of the following errors:
    0509-150 Dependent module /usr/local/lib/libintl.a(libintl.so.3) could not be loaded.
    0509-152 Member libintl.so.3 is not found in archive
    0509-021 Additional errors occurred but are not reported.

    Is there anything to be done for installing bash on AIX 5.3?

    please reply to this.

    regards
    aixbee
    #AIX-Forum


  • 2.  Re: Error: Cannot load program bash

    Posted 02/12/07 05:12 AM

    Originally posted by: SystemAdmin


    AIX 5.3 ML05
    code#rpm -qa | grep bash
    #bash-3.0-1[/code]
    ldd show that you dependent module is on [i]/opt/freeware/lib/libintl.a[/i]
    code#ldd /opt/freeware/bin/bash
    /opt/freeware/bin/bash potrzebuje:
    /usr/lib/libc.a(shr.o)
    /opt/freeware/lib/libintl.a(libintl.so.1)
    /usr/lib/libcurses.a(shr42.o)
    /usr/lib/libdl.a(shr.o)
    /unix
    /usr/lib/libcrypt.a(shr.o)
    /usr/lib/libiconv.a(shr4.o)
    [/code]
    Install for rpm or you can also try set $LD_LIBRARY_PATH
    #AIX-Forum


  • 3.  Re: Error: Cannot load program bash

    Posted 02/12/07 06:41 AM

    Originally posted by: SystemAdmin


    thanx
    I will try that
    #AIX-Forum