AIX

AIX

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

 View Only
  • 1.  how to define installp_bundles resource in NIM install?

    Posted Fri March 24, 2006 01:04 AM

    Originally posted by: oliveoil


    I want to install some other packages after my BOS install,such as ssh*,and thought of installp_bundles resource first,but I don't know what's the format of this resource ,anybody can give me some help? thanks.


  • 2.  Re: how to define installp_bundles resource in NIM install?

    Posted Fri March 24, 2006 02:23 AM

    Originally posted by: dimon


    Here is an example:

    codeI:bos.adt
    I:Mozilla.base
    R:bash
    R:lsof[/code]

    The [b]I:[/b] prefix is for installp-format (LPP) packages, [b]R:[/b] is for RPM packages.


  • 3.  Re: how to define installp_bundles resource in NIM install?

    Posted Fri March 24, 2006 03:37 AM

    Originally posted by: oliveoil


    thank you.
    another question, if installp_bundle file's format as you write,
    I need to copy bos.adt* package to my_lpp_source_dir/installp/ppc/ ,and copy bash* packages to my_lpp_source_dir/RPMS/ppc/ ,and re-define lpp_soure resource,is it right?
    I am not sure where can the NIM client get this bundle files.

    > Here is an example:
    >
    > codeI:bos.adt
    > I:Mozilla.base
    > R:bash
    > R:lsof[/code]
    >
    > The [b]I:[/b] prefix is for installp-format (LPP)
    > packages, [b]R:[/b] is for RPM packages.


  • 4.  Re: how to define installp_bundles resource in NIM install?

    Posted Fri March 24, 2006 03:05 PM

    Originally posted by: dimon


    > thank you.
    > another question, if installp_bundle file's format as
    > you write, I need to copy bos.adt* package to
    > my_lpp_source_dir/installp/ppc/ ,and copy bash*
    > packages to my_lpp_source_dir/RPMS/ppc/ ,and
    > re-define lpp_soure resource,is it right?

    Right, but no need to re-define the lpp_source, just re-generate the .toc file in installp/ppc, or do the following:
    codenim -o check [i]lpp_source_name[/i][/code]If you just copy new RPM packages to RPMS/ppc, you don't need to do anything at all, they will be found automatically.


  • 5.  Re: how to define installp_bundles resource in NIM install?

    Posted Sun March 26, 2006 08:56 PM

    Originally posted by: oliveoil


    > > thank you.
    > > another question, if installp_bundle file's format
    > as
    > > you write, I need to copy bos.adt* package to
    > > my_lpp_source_dir/installp/ppc/ ,and copy bash*
    > > packages to my_lpp_source_dir/RPMS/ppc/ ,and
    > > re-define lpp_soure resource,is it right?
    >
    > Right, but no need to re-define the lpp_source, just
    > re-generate the .toc file in installp/ppc, or do the
    > following:
    > codenim -o check [i]lpp_source_name[/i][/code]If
    > you just copy new RPM packages to RPMS/ppc, you don't
    > need to do anything at all, they will be found
    > automatically.

    ok ,I got it. but if I want to install a rpm package use rpm's options "--nodeps",Can I add this options? or create a script to do this?