SM69 - external command

Hi,
My developer is asking for a unix "mv" command to move files from one location to another (after successful processing of that file).  The "mv" command will be coded in the ABAP.
I'm using SM69 to create a "ZMV" external command so that it can be called within ABAP.
Now, I would like to control the location of where the files are moved to. 
Does anyone know how I can use the "Parameters for operating system command" & "Additional parameters" fields in SM69 to control the location?
Or is there another approach to tackle this issue?
Thanks in advance.

Hello Sisab,
It is simple. Keep parameters blank if you don't want any special parameters lie <i> etc. However addtional parameters is important.
Basically the syntax of move command would be
mv <original path> <new path>.
This part <original path> <new path> needs to be specified into addtional parameters.
However you to give complete path.
This would do the job for you.
With Regards.
Ruchit.

Similar Messages

  • Sm_SolmanSID error 503 when executing external command

    Hello,
    On one of my managed system (my productive ECC),
    I have the following error ,everyday at 20:00,
    for the user SM_SolamnSID.
    "Error 503 when executing external command on (xpgid=0,convid=.)"
    The role ZSAP_SOLMAN_READ has been given to this user.
    Could you tell me what I should perform to avoid this problem?
    Regards,

    Hi Benoit,
    Pls refer below threads for external error of 503,
    Cannot run SM69 external commands from application server
    Cannot run SM69 external commands from application server,&amp;nbsp;SM21&amp;nbsp;|&amp;nbsp;ABAP,&amp;nbsp;SAP,&amp;nbs…
    Regards
    K.N

  • Using a Logical File (FILE) in an External Command (SM69)

    I have an external command defined in SM69 that runs a script on the application server. The command is called from within an ABAP program with SXPG_CALL_SYSTEM. It currently works as it should.
    The issue is that the external command is defined as:
    sh /absolute/path/to/script/file
    I have been told to instead set up a logical file in FILE so that the command would be:
    sh <MY_SCRIPT_LOGICAL_NAME>
    I've gone into FILE and defined MY_SCRIPT_LOGICAL_NAME as:
    Logical File = MY_SCRIPT_LOGICAL_NAME
    Name = Descriptive Text
    Physical File = <SYSID>actualname.scr
    Data Format = ASC
    App Area = HR
    Logical Path = SCRIPT_PATH
    where SCRIPT_PATH is also defined in FILE with the physical path of:
    /iface/<SYSID>/outboundhr/scripts/<FILENAME>
    So when I try executing the command with SM49 as defined as:
    sh <MY_SCRIPT_LOGICAL_NAME>
    I just get Exception raised: OTHERS
    If I define the command as:
    ls <MY_SCRIPT_LOGICAL_NAME>
    I get the same thing, Exception raised: OTHERS
    I'm guessing that the logical file name isn't getting translated. Does anyone know if it should in this instance? Is anyone using a logical file as part of an external command?
    Thanks much.

    I think you must use FM FILE_GET_NAME to translate the logical file name to a physical one before executing the command.
    Like:
    DATA: physical_file_name(60),
          my_script_logical_name(60) VALUE 'CLASSIFICATION',
          format(3).
    CALL FUNCTION 'FILE_GET_NAME'
      EXPORTING
        logical_filename = my_script_logical_name
      IMPORTING
        file_format      = format
        file_name        = physical_file_name
      EXCEPTIONS
        file_not_found   = 1
        OTHERS           = 2.
    Rob
    Message was edited by: Rob Burbank

  • Tcode SM69 - External OS Command

    Hi guys,
    I need help for tcode SM69
    How do we access a BAT file from a directory path for example
    C:\Program Files\Software_ABC\Deeper_folder\genxy.bat
    Operating System = windows nt
    Type = Customer
    But I have no idea how to go about for the Operating System Command.
    I'm supposed to run it like
    C:\Program Files\Software_ABC\Deeper_folder\genxy.bat  "E:\usr\sap\EWD\DVEBMGS00\data\File_20110107114455.xml"
    Any advice? Appreciate it

    you create external command and pass command name in FM
    CALL FUNCTION 'SXPG_COMMAND_EXECUTE'
    or u can use following way
    CONSTANTS: c_extcom    TYPE sxpgcolist-name VALUE 'ZTEST',
               c_oper      TYPE syopsys VALUE 'Windows NT'.
    DATA: v_dir_input      TYPE sxpgcolist-parameters.  " Input Directory
    DATA: t_result         TYPE STANDARD TABLE OF btcxpm.
    v_dir_input = 'cmd /c C:\Program Files\Software_ABC\Deeper_folder\genxy.bat'.
    CALL FUNCTION 'SXPG_COMMAND_EXECUTE'
      EXPORTING
        commandname                   = c_extcom
        additional_parameters         = v_dir_input
        operatingsystem               = c_oper
      TABLES
        exec_protocol                 = t_result
      EXCEPTIONS
        no_permission                 = 1
        command_not_found             = 2
        parameters_too_long           = 3
        security_risk                 = 4
        wrong_check_call_interface    = 5
        program_start_error           = 6
        program_termination_error     = 7
        x_error                       = 8
        parameter_expected            = 9
        too_many_parameters           = 10
        illegal_command               = 11
        wrong_asynchronous_parameters = 12
        cant_enq_tbtco_entry          = 13
        jobcount_generation_error     = 14
        OTHERS                        = 15.

  • External command like SM69 in CE 7.2

    Hello,
    in CE 7.2 is there any possibilities to setup an external command (script unix) like I'd can on a ABAP system with SM69 transaction?
    thank you very much

    what you really want?

  • Linux - Execute external Command (SM69, SXPG_COMMAND_EXECUTE)

    Hi experts,
    I've defined in SM69 a external command for our Linux-Host.
    This command I execute with Function Module SXPG_COMMAND_EXECUTE.
    However, I always get the exception 2 - Command not found.
    The test in Sm69 works fine.
    We are also having HP-UX Hosts and on this the command works fine.
    Also other commands works fine on Linux-Host.
    The command is: ls -l (so command = ls, command parameter = -l)
    Does anyone know the reason for this?
    Kind regards

    Do you really need it ?
    could you use kernel function ?  or you really need the SM69 ?
    looks how to use the kernel function of OS command : abap - report to execute os-commands - Code Gallery - SCN Wiki
    regards
    Fred

  • GZIP and External command.

    Hello,
    My problem might seem simple but I have tried for a couple of days now to make researches on that matter and it still doesn't work, no matter what.
    I had to make, with SM69, two external commands. One was using the command "mv" which is working very well and the other must be a "gzip" with a parameter "-c" and, in a module function, with the function "SXPG_COMMAND_EXECUTE_LONG", I have to send the path and the file name.
    So since I am not able to make it work in the module function I'm creating, I am working to make it work on SM69. So here what I have entered so far...
    Operating System Command: gzip
    Parameters for operating sytem command: -c
    Additional parameters: path/file.txt > newpath/file.txt.gz
    Though, the only thing I am receiving is no change at all and I'm receiving  u2039  È ®J as a message. The Exit code is at 1 and the exit status is E.
    I know it means there is something wrong but all my researches lead me to do it that way so I'm not sure where I am going wrong and how to make it work appropriately.
    Can you please help me?
    I am open to questions if you have any.
    Thank you

    Hi, kindly check the following  example
    Command name : ZTEST
    Operating system command : cmd /c
    v_dir_input = 'cmd /c c:\winzip\wzzip.exe -password  g:\test1.zip g:\test.pdf'.
    CALL FUNCTION 'SXPG_COMMAND_EXECUTE'
      EXPORTING
        commandname                   = c_extcom
        additional_parameters         = v_dir_input
        operatingsystem               = c_oper
      TABLES
        exec_protocol                 = t_result
      EXCEPTIONS
        no_permission                 = 1
        command_not_found             = 2
        parameters_too_long           = 3
        security_risk                 = 4
        wrong_check_call_interface    = 5
        program_start_error           = 6
        program_termination_error     = 7
        x_error                       = 8
        parameter_expected            = 9
        too_many_parameters           = 10
        illegal_command               = 11
        wrong_asynchronous_parameters = 12
        cant_enq_tbtco_entry          = 13
        jobcount_generation_error     = 14
        OTHERS                        = 15.

  • How to execute a external command ?

    Hi all ,
            I would like to transfer the oracle data to sql2000 , my idea is :
               - 1. write a external java program ( call trans.jar ) on oracle db server machine ( call sql2000 server to invoke the dtsrun.exe )
               - 2. create a dts package on sql2000 server .
               - 3. write an abap program in sap ( when the end-user execute this program , the trans.jar will call the dts package on sql2000 server ) .
            I know that we can use sm69 to define the external program , but i don't know how to use abap/4 to invoke this external program ? has someone can tell me how to do ?
    Thanks a lot !
    Best Regards,
    Carlos

    You can use the function module <b>SXPG_COMMAND_EXECUTE</b> to execute external commands
    Please find my sample code for it.
    *&      Form  TRIGGER_EXT_OS_COMMAND
    *       text
    *      -->P_F_UNIX  text
    form TRIGGER_EXT_OS_COMMAND using P_F_UNIX type SXPGCOLIST-PARAMETERS.
      data: begin of IEPCOL occurs 100.
              include structure BTCXPM.
      data: end of IEPCOL.
    BTCXPM = Log message from external program to calling program
      data: W_STATUS like EXTCMDEXEX-STATUS.
    * EXTCMDEXEX = Parameters of SXPG_COMMAND_EXECUTE
      data: W_HOST like RFCDISPLAY-RFCHOST.
    * RFCDISPLAY = Display structure for RFCDES maintenance          "M5
    * The External operating system command ZECOM is created * using thetransaction SM69. For any changes to the
    * command goto SM69 and for executing and testing use
    * the transaction SM49.
      W_HOST = SY-HOST.
      call function 'SXPG_COMMAND_EXECUTE'
        exporting
          COMMANDNAME                   = 'ZECOM'
          ADDITIONAL_PARAMETERS         = P_F_UNIX
          OPERATINGSYSTEM               = SY-OPSYS
          TARGETSYSTEM                  = W_HOST
          STDOUT                        = 'X'
          STDERR                        = 'X'
          TERMINATIONWAIT               = 'X'
        importing
          STATUS                        = W_STATUS
        tables
          EXEC_PROTOCOL                 = IEPCOL
        exceptions
          NO_PERMISSION                 = 1
          COMMAND_NOT_FOUND             = 2
          PARAMETERS_TOO_LONG           = 3
          SECURITY_RISK                 = 4
          WRONG_CHECK_CALL_INTERFACE    = 5
          PROGRAM_START_ERROR           = 6
          PROGRAM_TERMINATION_ERROR     = 7
          X_ERROR                       = 8
          PARAMETER_EXPECTED            = 9
          TOO_MANY_PARAMETERS           = 10
          ILLEGAL_COMMAND               = 11
          WRONG_ASYNCHRONOUS_PARAMETERS = 12
          CANT_ENQ_TBTCO_ENTRY          = 13
          JOBCOUNT_GENERATION_ERROR     = 14
          others                        = 15.
      if SY-SUBRC <> 0.
        case SY-SUBRC.
          when 1.
            message E138(ZSM) with 'No permission to Execute ' 'External O/S command'.
          when 2.
            message E138(ZSM) with 'External O/S Command not found'.
          when 3.
            message E138(ZSM) with 'Parameters too long.' 'Exceeds the limit of 128 characters'.
          when 4.
            message E138(ZSM) with 'Security risk. ' 'The Command contains impermissible characters'.
          when 5.
            message E138(ZSM) with 'Wrong check call interface.  Check the command.'.
          when 6.
            message E138(ZSM) with 'Error while starting the External O/S Command'.
          when 7.
            message E138(ZSM) with 'Error getting the return ' 'code of the External O/S command'.
          when 8.
            message E138(ZSM) with 'Unknown error'.
          when 9.
            message E138(ZSM) with 'Some mandatory parameter is not supplied'.
          when 10.
            message E138(ZSM) with 'Too many parameters. ' 'Check the additional parameter'.
          when 11.
            message E138(ZSM) with 'Illegal command'.
          when others.
            message E138(ZSM) with 'Unknown error'.
        endcase.
      else.
        if W_STATUS = 'O'.
          if UNIX_FILE cs '.ES'.
            message S138(ZSM) with 'File FTP Successfull..!'.
    *        External O/S command to' 'FTP the above file to' 'ES FTP server succesfully!' P_F_UNIX.
          endif.
        else.
          message I138(ZSM) with 'Ext O/S command to FTP the ' 'abv file to ext UNIX system not executed due to:'.
          loop at IEPCOL.
            write:/ SY-TABIX, IEPCOL-MESSAGE,255 ' '.
          endloop.
        endif.
      endif.
    endform.                    " TRIGGER_EXT_OS_COMMAND
    Regards
    Gopi

  • How to execute external command from SAP

    Hi gurus,
    i need to execute an external command from a Sap (rel ECC.5.0) to a server UNIX (no SAP); precisely i have to write a file into a directory in unix server.
    I see transaction SM49 and Sm69 but i don't know how can i use these features.
    Please coul'd you help me or give me a documentation.
    Thank's in advance
    Maurizio Ortolani
    email. [email protected]

    Hi Maurizio,
    i do it in this way:
    CONSTANTS: CMD_LS(50)   VALUE 'ls -al /transfer/sap'.
      DATA: BEGIN OF ITAB_LS OCCURS 0,
              LINE(200),
            END   OF ITAB_LS.
      CALL 'SYSTEM'
        ID 'COMMAND' FIELD CMD_LS
        ID 'TAB'     FIELD ITAB_LS-SYS.
    How do you write the file, via an UNIX-COMMAND than try the above call
    with your command.
    Another way is to write the file via OPEN DATASET ..., TRANSFER ... TO ..., CLOSE DATASET.
    If you mean this i can give you an example.
    Hope it helps.
    Regards, Dieter

  • Executing external command and program in background

    Hi,
    how to execute external command and external program in background.
    please provide me some tips on the same.
    while creating external command, what is the significance of "operating system command" and "parameters for operating system command".
    Thanks,
    Dinesh.

    Hi,
    You can define external commands using transaction code SM69.
    External commands are commands which would be executed at your operating 
    system with or without parameters.
    Operating system commands are those which you execute at OS level like
    mkdir, cat, rm, cp, ls
    Parameters are options that you add to os commands to get more functionalities.
    like, < ls -l > : will give you a long listing of files where " l " is the parameter
            < ls -lt > : will give you a long listing with last changed file at top where " lt " is the parameter.
    You can mention these in SM69 when you define the external commands.
    Now, in order to execute these in your background job. In the steps click on "external command" and give your command name in SM36 while creating your job.
    " Points for solution ".
    Thanks and Regards,
    Sandeep.

  • CPC2206 by calling a external command

    Hi,
    we have one SAP installation which is not able to call an external command that is configured in the transaction SM69.
    For example we have created an command ZWRKWTR that call the command WRKWTR.
    When we try to execute the command via SM49, we retriebv only result:
    (no spooled files)
    Eigentumsrecht f}r Objekt JLQMHLJOBL in QTEMP Art *USRSPC geändert.
    On other installations with the same kernel we have no problems to call this command.
    In this forum is an other thread in this forum form 2006 with the same problem.
    Volker suggested to patch the SAPXPG and the SAPCMD, but we didn't find these programs in the 7.0-kernel.
    Many greetings,
    Stefan

    Hi,
    it is difficult to guess what could have gone wrong here. In general the function works, so something must be wrong with your specific installation. To get more information, you can set the "Trace" flag in SM69. Before you execute the command in SM49, lock a work process through transaction SE38, report RSTRC000. After the execution of the command, look into the developer trace of that work process for more information.
    When the command gets executed, a new job named CALLCMD gets spawned from the work process. Use DSPLOG to find out whether this job got started. If it does not write a joblog, change the work process with CHGJOB LOG(4 00 *SECLVL) to force the output of a joblog. Maybe that one has more information.
    Kind regards,
    Christian Bartels.

  • External commands on Heterogenous environments

    Hi All,
    Got a small problem... Running a heterogeneous environment where the CI is AIX-64 and the application server is Linux RH5-32,
    Basically I'm trying to run a job that calls external commands to drop a file in Linux... external command ZCD which is the "cd" command to call a directory is failing in Linux, I have configured the command in SM69 for both AIX and Linux, for AIX works fine but for Linux fails... saying...
    UNIX command 'ZCD /usr/sap/sid/out/' failed - RC
    funny enough i could not see any errors on dev_cp or dev_xpg
    Also checked transaction FILE and looks fine...
    directory been called by external command is mounted and i can call it from OS without issues.
    Any advice welcome.
    Regards
    Juan

    Checking again dev_cp... and find this at initialization...
    Trace file of control program (trace level 3)
    < Function: BtcTrcInit> Function: main  SAPXPG 640
    2008-10-01--09-23-38 : Before BtcXpgDetach
      > Function: BtcXpgDetach    Can't detach from process group (already leader)
      < Function: BtcXpgDetach  Accept RFC connection from R/3 system
    2008-10-01--09-23-38 : Before RfcAccept
    2008-10-01--09-23-38 : RfcAccept returned OK
    security check switched OFF
      Install RFC call SAPXPG_START_XPG
      Install RFC call SAPXPG_START_XPG_LONG
      Install RFC call SAPXPG_END_XPG
      Wait for RFC call SAPXPG_START_XPG or SAPXPG_START_XPG_LONG
    2008-10-01--09-23-38 : Before first call of RFCDispatch
    2008-10-01--09-23-38 : After first call of RFCDispatch
    2008-10-01--09-23-38 : Before call of RfcClose (sequencing error)
    2008-10-01--09-23-38 : After call of RfcClose (sequencing error)
    Its weird... but wonder why the other commands work and "cd" doesn't

  • External command not working.

    Hi,
    I have written a batch program which copies files from SAP Application Server(4.6B) to external machine in LAN. This machine is mapped on SAP App Server. The contents of this file are:-
    @ECHO OFF
    FOR /f "delims=" %%a in ('date /t') do set DATE=%%a
    SET CUR-DATE=%DATE:~4,10%
    XCOPY H:\source
    ust-ght3dxp0097\fullc /D:%CUR-DATE%
    XCOPY H:\source Z:\ /D:%CUR-DATE%
    where ust-ght3dxp0097 is the external machine and Z is the mapped drive on SAP App server.
    Now this batch file works fine when executed from commandline. I want to execute this from my ABAP program.
    Hence I created an external command from SM69 as follows:
    Operating system command
              C:\CopyFilesCreatedToday.bat
    This batch file is place in C drive of SAP Application Server.
    When I try to execute this external command from SM49 it gives the following error.
    Invalid Drive Specification
    0 files copied
    Invalid Drive Specification
    0 files copied
    Can somebody help me with this error.

    > Hi Peter,
    >
    > The critical point maybe is this:
    >
    > "Operating system command
    > C:\CopyFilesCreatedToday.bat"
    >
    > Dont't use the local drive C:! Use a network-drive
    > instead.
    >
    > BR
    > Michael
    Hi Michael,
    Are you family of Jack Bauer? Just kidding sorry for the inconvenience
    Stephan

  • A better way to execute a series of external commands?

    Hi,
    Consider the code snippet...
    Process proc1 = rt.exec("Some external command");
    Vector vecOutput = outputGobbler.getOutput() ;
    String[] strAlterCmds = new String[vecOutput.size()];
    for ( int k = 0 ; k < vecOutput.size() ; k++ )
    strAlterCmds[k] = new String();
    strAlterCmds[k] = "cmd.exe /c blah.... " +(String) vecOutput.elementAt( k )+ " ;
    Process proc2 = rt.exec(strAlterCmds[k], null);
    StreamGobbler errorG = new
    StreamGobbler( proc2.getErrorStream(), "Error") ;
    StreamGobbler outputG = new
    StreamGobbler( proc2.getInputStream(), "Output") ;
    errorG.start() ;
    outputG.start() ;
    int exitVal1 = proc2.waitFor();
    The second part of the execution is taking AGES and I am not sure forking a new process for runtime execution is the best alternative here.
    I would be glad if someone can point me to a smarter solution.
    In short: I intend to execute a series of commands using RTE depending on the values I get in the loop.
    Thanks.

    Jared,
    Thank you for responding to my posted message. Rendezvous is a new concept to me, maybe
    it's the solution to my problem. I have been trying to read the on line manual and
    example VIs from National Instruments website. I still have a hard time to understand
    the concept.
    One of the example I saw is using rendezvous to run some sub VIs. But in my case, I have
    only one VI that is a while loop. Inside the while loop, there are a few tasks running
    simultaneously. I don't know whether it will serve my purpose.
    Guangde Wang
    Jared O'Mara wrote:
    > Guangde,
    >
    > Referring to your 2nd method, use rendezvous (under advanced>>synchronize
    > on function palette) to synchronize two processes. There are good examples
    > that come with labview. basically, you cre
    ate a rendezvous, giving it a
    > size. Using the wait on rendezvous vi, a function will not continue until
    > all rendezvous have reached that point. Using this method, you can synchronize
    > your 2 while loops.
    >
    > Jared
    >
    > Guangde Wang wrote:
    > >I tried two ways to control the tempo of my program.>>One is to use the
    > While Loop's counter and a wait. The drawback of this>method is the cycle
    > length is dependent on the measuring load. So if the>program runs for days,
    > it will be significent off the real time.>>The other way is to use the difference
    > of the Tick Count. It provides>accurate timing but the problem is the sychronization
    > of the clock cycle>and the While Loop cycle. I can try to put a little bit
    > wait but still>can not sychronize them very well. So after a while, there
    > will be two>measures get together.>>I don't know whether there are some better
    > ways to control the program>or whether we have some ways to improve either
    > or both of the above
    two>methods to make them work better. Please let me
    > know if you have any>suggestion.>>Thank you in advance,>>Guangde Wang>

  • After upgrade oracle software oracle external command not responding

    Hi experts,
    I am start oracle up-gradation oracle 10.2.0.1 to 10.2.0.5,  from "p8202632_10205_LINUX.zip" patch on Redhat linex.
    When start upgrade oracle software only using "/runinstaller" after that i am not able to connect oracle external command (like "sqlplus","exp/imp").
    every oracle command not respond like...............
    [oracle@MTSNOIDA-REP2 bdump]$ sqlplus
    [oracle@MTSNOIDA-REP2 bdump]$
    please help me resolve that. i am sharing log of patch apply.............
    Oracle OLAP 10.2.0.1.0
       Oracle OLAP API 10.2.0.1.0
       OLAP SQL Scripts 10.2.0.1.0
       Oracle interMedia Client Option 10.2.0.1.0
       Oracle Database 10g interMedia Files 10.2.0.1.0
       Oracle interMedia 10.2.0.1.0
       PL/SQL Embedded Gateway 10.2.0.1.0
       Oracle XML Development Kit 10.2.0.1.0
       Oracle Text 10.2.0.1.0
       Oracle Clusterware RDBMS Files 10.2.0.1.0
       Database SQL Scripts 10.2.0.1.0
       Oracle Data Mining RDBMS Files 10.2.0.1.0
       Generic Connectivity Common Files 10.2.0.1.0
       Oracle Net Required Support Files 10.2.0.1.0
       Oracle Starter Database 10.2.0.1.0
       Sample Schema Data 10.2.0.1.0
       Oracle interMedia Locator RDBMS Files 10.2.0.1.0
       Oracle Call Interface (OCI) 10.2.0.1.0
       Oracle OLAP RDBMS Files 10.2.0.1.0
       PL/SQL 10.2.0.1.0
       Oracle Recovery Manager 10.2.0.1.0
       Oracle Database Utilities 10.2.0.1.0
       Oracle interMedia Locator 10.2.0.1.0
       XML Parser for Java 10.2.0.1.0
       Assistant Common Files 10.2.0.1.0
       Oracle JDBC Thin Driver for JDK 1.2 10.2.0.1.0
       Oracle JDBC Thin Driver for JDK 1.4 10.2.0.1.0
       Oracle interMedia Java Advanced Imaging 10.2.0.1.0
       SQLJ Runtime 10.2.0.1.0
       XML Parser for Oracle JVM 10.2.0.1.0
       Enterprise Manager Agent DB 10.2.0.1.0
       Enterprise Manager Baseline 10.2.0.1.0
       Oracle Enterprise Manager Console DB 10.2.0.1.0
       XDK Required Support Files 10.2.0.1.0
       Agent Required Support Files 10.2.0.1.0
       DBJAVA Required Support Files 10.2.0.1.0
       LDAP Required Support Files 10.2.0.1.0
       Precompiler Required Support Files 10.2.0.1.0
       Oracle RAC Required Support Files-HAS 10.2.0.1.0
       RDBMS Required Support Files for Instant Client 10.2.0.1.0
       RDBMS Required Support Files 10.2.0.1.0
       SQL*Plus Required Support Files 10.2.0.1.0
       SSL Required Support Files for InstantClient 10.2.0.1.0
       Installation Common Files 10.2.0.1.0
       Oracle Globalization Support 10.2.0.1.0
       Oracle Core Required Support Files 10.2.0.1.0
       Platform Required Support Files 10.2.0.1.0
       Oracle Message Gateway Common Files 10.2.0.1.0
       Enterprise Manager Agent Core 10.2.0.1.0
       Enterprise Manager Common Files 10.2.0.1.0
       Enterprise Manager Repository Core 10.2.0.1.0
       Oracle Containers for Java 10.2.0.1.0
       Enterprise Manager Repository DB 10.2.0.1.0
       Oracle LDAP administration 10.2.0.1.0
       JDBC Common Files 10.2.0.1.0
       Database Workspace Manager 10.2.0.1.0
       Oracle interMedia Annotator 10.2.0.1.0
       Enterprise Manager Minimal Integration 10.2.0.1.0
       Parser Generator Required Support Files 10.2.0.1.0
       Buildtools Common Files 10.2.0.1.0
       Oracle UIX 2.1.22.0.0
       Bali Share 1.1.18.0.0
    Deinstall in progress (Tuesday, November 19, 2013 11:02:51 PM GMT+05:30)
    ...............................................................   0% Done.
    ...............................................................  18% Done.
    ...............................................................  37% Done.
    ...............................................................  56% Done.
    ...............................................................  75% Done.
    .................                                               100% Done.
    Deinstall successful
    Installation in progress (Tuesday, November 19, 2013 11:02:51 PM GMT+05:30)
    ...............................................................  18% Done.
    ...............................................................  37% Done.
    ...............................................................  56% Done.
    ...............................................................  75% Done.
    .................................................                90% Done.
    Install successful
    Linking in progress (Tuesday, November 19, 2013 11:03:45 PM GMT+05:30)
    ..                                                               91% Done.
    Link successful
    Setup in progress (Tuesday, November 19, 2013 11:03:49 PM GMT+05:30)
    .........                                                       100% Done.
    Setup successful
    End of install phases.(Tuesday, November 19, 2013 11:03:54 PM GMT+05:30)
    Starting to execute configuration assistants
    Configuration assistant "Oracle Configuration Manager Configuration" succeeded
    WARNING:
    The following configuration scripts need to be executed as the "root" user.
    #!/bin/sh
    #Root script to run
    /u01/app/oracle/product/10.2.0/root.sh
    To execute the configuration scripts:
        1. Open a terminal window
        2. Log in as "root"
        3. Run the scripts
    The installation of Oracle Database 10g Release 2 Patch Set 4 was successful.
    Please check '/u01/app/oracle/oraInventory/logs/silentInstall2013-11-19_11-02-36PM.log' for more details.

    [oracle@MTSNOIDA-REP2 bin]$ ls -lrth
    total 7.2G
    -rwxrwxrwx 1 oracle oinstall  83K Jan  1  2000 zip
    -rwxrwxrwx 1 oracle oinstall 100K Jan  1  2000 unzip
    -rwxrwxrwx 1 oracle oinstall 2.9K Jan  1  2000 oraenv
    -rwxrwxrwx 1 oracle oinstall 2.4K Jan  1  2000 oerr
    -rwxrwxrwx 1 oracle oinstall 2.3K Jan  1  2000 gensyslib
    -rwxrwxrwx 1 oracle oinstall  14K Jan  1  2000 dbstart
    -rwxrwxrwx 1 oracle oinstall 6.5K Jan  1  2000 dbshut
    -rwxrwxrwx 1 oracle oinstall 2.4K Jan  1  2000 dbhome
    -rwxrwxrwx 1 oracle oinstall 2.8K Jan  1  2000 coraenv
    -rwxrwxrwx 1 oracle oinstall   48 Sep 25  2000 oraxml
    -rwxrwxrwx 1 oracle oinstall   48 Sep 25  2000 oraxsl
    -rwxrwxrwx 1 oracle oinstall   46 Nov  7  2000 oracg
    -rwxrwxrwx 1 oracle oinstall   45 Sep 25  2001 transx
    -rwxrwxrwx 1 oracle oinstall   59 Nov 25  2002 orapipe
    -rwxrwxrwx 1 oracle oinstall   44 Dec  4  2002 orajaxb
    -rwxrwxrwx 1 oracle oinstall 1.7K Jan 12  2004 emrepdown.sh
    -rwxrwxrwx 1 oracle oinstall  25K Jan 12  2004 emwd
    -rwxrwxrwx 1 oracle oinstall  767 Jan 12  2004 emlfail.command
    -rwxrwxrwx 1 oracle oinstall 1.2K Jan 12  2004 emdfail.command
    -rwxrwxrwx 1 oracle oinstall 1.7K Jan 12  2004 runclass
    -rwxrwxrwx 1 oracle oinstall  762 Jan 12  2004 xsql
    -rwxrwxrwx 1 oracle oinstall    0 May 19  2004 nmus
    -rwxrwxrwx 1 oracle oinstall    0 May 19  2004 nmupm
    -rwxrwxrwx 1 oracle oinstall    0 May 19  2004 nmocat
    -rwxrwxrwx 1 oracle oinstall    0 May 19  2004 nmo.0
    -rws--x--- 1 root   oinstall    0 May 19  2004 nmo
    -rwxrwxrwx 1 oracle oinstall    0 May 19  2004 nmei
    -rwxrwxrwx 1 oracle oinstall    0 May 19  2004 nmb.0
    -rws--x--- 1 root   oinstall    0 May 19  2004 nmb
    -rwxrwxrwx 1 oracle oinstall    0 May 19  2004 emtgtctl2
    -rwxrwxrwx 1 oracle oinstall    0 May 19  2004 emdctl
    -rwxrwxrwx 1 oracle oinstall    0 May 19  2004 emagent
    -rwxrwxrwx 1 oracle oinstall    0 May 19  2004 e2eme
    -rwxrwxrwx 1 oracle oinstall  39K Sep  2  2004 xmlwf
    -rwxrwxrwx 1 oracle oinstall 5.9K Sep 25  2004 repo_mig.template
    -rwxrwxrwx 1 oracle oinstall  11K Oct 13  2004 DBConsole.pm
    -rwxrwxrwx 1 oracle oinstall   82 Oct 15  2004 commonenv.bat.template
    -rwxrwxrwx 1 oracle oinstall 3.1K Apr  5  2005 asmcmd
    -rwxrwxrwx 1 oracle oinstall 2.8K May 12  2005 emrepdown.pl
    -rwxrwxrwx 1 oracle oinstall 3.4K May 12  2005 emdrollogs.pl
    -rwxrwxrwx 1 oracle oinstall 3.9K May 12  2005 emdlctl.template
    -rwxrwxrwx 1 oracle oinstall    0 May 12  2005 emtgtctl20
    -rwxrwxrwx 1 oracle oinstall 210K May 21  2005 asmcmdcore
    -rwxrwxrwx 1 oracle oinstall 1.1K May 23  2005 processDef.pl
    -rwxrwxrwx 1 oracle oinstall 3.2K Jun  7  2005 symfind
    -rwxrwxrwx 1 oracle oinstall 1.2K Jun 13  2005 linkshlib
    -rwxrwxrwx 1 oracle oinstall 4.8K Jun 13  2005 genclntst
    -rwxrwxrwx 1 oracle oinstall  153 Jun 13  2005 echodo
    -rwxrwxrwx 1 oracle oinstall 5.6K Jun 16  2005 genagtsh
    -rwxrwxrwx 1 oracle oinstall    0 Jun 22  2005 tkprofO
    -rwxrwxrwx 1 oracle oinstall    0 Jun 22  2005 sqlplusO
    -rwxrwxrwx 1 oracle oinstall    0 Jun 22  2005 sqlldrO
    -rwxrwxrwx 1 oracle oinstall    0 Jun 22  2005 sbttestO
    -rwxrwxrwx 1 oracle oinstall    0 Jun 22  2005 orapwdO
    -rwxrwxrwx 1 oracle oinstall    0 Jun 22  2005 oklist0
    -rwxrwxrwx 1 oracle oinstall    0 Jun 22  2005 okinit0
    -rwxrwxrwx 1 oracle oinstall    0 Jun 22  2005 okdstry0
    -rwxrwxrwx 1 oracle oinstall    0 Jun 22  2005 nidO
    -rwxrwxrwx 1 oracle oinstall    0 Jun 22  2005 maxmemO
    -rwxrwxrwx 1 oracle oinstall    0 Jun 22  2005 mapsga0
    -rwxrwxrwx 1 oracle oinstall    0 Jun 22  2005 kfod0
    -rwxrwxrwx 1 oracle oinstall    0 Jun 22  2005 impO
    -rwxrwxrwx 1 oracle oinstall    0 Jun 22  2005 impdpO
    -rwxrwxrwx 1 oracle oinstall    0 Jun 22  2005 hsotsO
    -rwxrwxrwx 1 oracle oinstall    0 Jun 22  2005 hsdepxaO
    -rwxrwxrwx 1 oracle oinstall    0 Jun 22  2005 hsallociO
    -rwxrwxrwx 1 oracle oinstall    0 Jun 22  2005 extprocO
    -rwxrwxrwx 1 oracle oinstall    0 Jun 22  2005 expO
    -rwxrwxrwx 1 oracle oinstall    0 Jun 22  2005 expdpO
    -rwxrwxrwx 1 oracle oinstall    0 Jun 22  2005 dumpsga0
    -rwxrwxrwx 1 oracle oinstall    0 Jun 22  2005 dbvO
    -rwxrwxrwx 1 oracle oinstall    0 Jun 22  2005 dbfsizeO
    -rwxrwxrwx 1 oracle oinstall    0 Jun 22  2005 cursizeO
    -rwxrwxrwx 1 oracle oinstall    0 Jun 22  2005 ctxloadO
    -rwxrwxrwx 1 oracle oinstall    0 Jun 22  2005 ctxlcO
    -rwxrwxrwx 1 oracle oinstall    0 Jun 22  2005 csscanO
    -rwxrwxrwx 1 oracle oinstall    0 Jun 22  2005 agtctlO
    -rwxrwxrwx 1 oracle oinstall    0 Jun 22  2005 wrapO
    -rwxrwxrwx 1 oracle oinstall    0 Jun 22  2005 tstshmO
    -rwxrwxrwx 1 oracle oinstall 1.9K Aug  9  2005 agentok.sh
    -rwxrwxrwx 1 oracle oinstall  11K Aug 15  2005 emctl.template
    -rwxrwxrwx 1 oracle oinstall 2.2K Aug 26  2005 sAgentUtils.pm
    -rwxrwxrwx 1 oracle oinstall    0 Aug 31  2005 netca_inst.sh
    -rwxrwxrwx 1 oracle oinstall 353K Sep 11  2005 emagtm0
    -rwxrwxrwx 1 oracle oinstall 759K Sep 11  2005 nmccollector0
    -rwxrwxrwx 1 oracle oinstall  52K Oct 16  2005 proxyserv.bin
    -rwxrwxrwx 1 oracle oinstall  52K Oct 20  2005 extjoboO
    -rwxrwxrwx 1 oracle oinstall  52K Oct 20  2005 extjobO
    -rwxrwxrwx 1 oracle oinstall 1.1M Oct 20  2005 racgeutO
    -rwxrwxrwx 1 oracle oinstall 1.2M Oct 20  2005 racgmainO
    -rwxrwxrwx 1 oracle oinstall 615K Oct 20  2005 oclsmon.bin
    -rwxrwxrwx 1 oracle oinstall  30K Oct 20  2005 extproc32O
    -rwxrwxrwx 1 oracle oinstall  64K Oct 20  2005 geneziO
    -rwxrwxrwx 1 oracle oinstall  691 Oct 22  2005 proxyserv
    -rwxrwxrwx 1 oracle oinstall    0 Oct 22  2005 racgmdbO
    -rwxrwxrwx 1 oracle oinstall    0 Oct 22  2005 racgimonO
    -rwxrwxrwx 1 oracle oinstall    0 Oct 22  2005 oifcfg0
    -rwxrwxrwx 1 oracle oinstall    0 Oct 22  2005 trcroute0
    -rwxrwxrwx 1 oracle oinstall    0 Oct 22  2005 tnsping0
    -rwxrwxrwx 1 oracle oinstall    0 Oct 22  2005 tnslsnr0
    -rwxrwxrwx 1 oracle oinstall    0 Oct 22  2005 lsnrctl0
    -rwxrwxrwx 1 oracle oinstall    0 Oct 22  2005 trcldr
    -rwxrwxrwx 1 oracle oinstall    0 Oct 22  2005 grdcscan
    -rwxrwxrwx 1 oracle oinstall    0 Oct 22  2005 kfodO
    -rwxrwxrwx 1 oracle oinstall    0 Oct 22  2005 nmus0
    -rwxrwxrwx 1 oracle oinstall    0 Oct 22  2005 nmupm0
    -rwxrwxrwx 1 oracle oinstall    0 Oct 22  2005 nmocat0
    -rwxrwxrwx 1 oracle oinstall    0 Oct 22  2005 nmo0
    -rwxrwxrwx 1 oracle oinstall    0 Oct 22  2005 nmei0
    -rwxrwxrwx 1 oracle oinstall    0 Oct 22  2005 nmb0
    -rwxrwxrwx 1 oracle oinstall    0 Oct 22  2005 emdctl0
    -rwxrwxrwx 1 oracle oinstall    0 Oct 22  2005 emagent0
    -rwxrwxrwx 1 oracle oinstall    0 Oct 22  2005 e2eme0
    -rwxrwxrwx 1 oracle oinstall 8.3K Jan 19  2006 genclntsh
    -rwxrwxrwx 1 oracle oinstall  485 Aug  4  2006 makeserverwlt
    -rwxrwxrwx 1 oracle oinstall  485 Aug  4  2006 makerootca.sh
    -rwxrwxrwx 1 oracle oinstall 3.5K Feb 20  2007 genoccish
    -rwxrwxrwx 1 oracle oinstall  504 Mar 30  2007 commonenv.template
    -rwxrwxrwx 1 oracle oinstall  16K Apr 17  2007 IASConsole.pm
    -rwxrwxrwx 1 oracle oinstall 1.2K May  9  2007 emtgtctl.template
    -rwxrwxrwx 1 oracle oinstall 6.9K Dec 24  2008 aqxmlctl.pl
    -rwxrwxrwx 1 oracle oinstall 9.5K Apr 29  2009 genorasdksh
    -rwxrwxrwx 1 oracle oinstall  23K May 12  2009 EMDeploy.pm
    -rwxrwxrwx 1 oracle oinstall  24K Jun 14  2009 EMAgent.pm
    -rwxrwxrwx 1 oracle oinstall 9.0K Dec  7  2009 relink
    -rwxrwxrwx 1 oracle oinstall  56K Feb 10  2010 emwd.pl
    -rwxrwxrwx 1 oracle oinstall 1.9K Feb 18  2010 racgwrap.sbs
    -rwxrwxrwx 1 oracle oinstall 1.9M Apr  8  2010 xml
    -rwxrwxrwx 1 oracle oinstall 2.3M Apr  8  2010 xmlcg
    -rwxrwxrwx 1 oracle oinstall 1.6M Apr  8  2010 schema
    -rwxrwxrwx 1 oracle oinstall 1.7M Apr  8  2010 xvm
    -rwxrwxrwx 1 oracle oinstall 1.9M Apr  8  2010 xsl
    -rwxrwxrwx 1 oracle oinstall 1.8K Apr  8  2010 pupbld
    -rwxrwxrwx 1 oracle oinstall 2.1K Apr  8  2010 helpins
    -rwxrwxrwx 1 oracle oinstall 148K Apr 12  2010 mkwallet
    -rwxrwxrwx 1 oracle oinstall 4.8K Apr 12  2010 gennttab
    -rwxrwxrwx 1 oracle oinstall 2.9K Apr 12  2010 gennfgt
    -rwxrwxrwx 1 oracle oinstall  13K Apr 12  2010 adapters
    -rwxrwxrwx 1 oracle oinstall 793K Apr 13  2010 nmccollector
    -rwxrwxrwx 1 oracle oinstall  50K Apr 13  2010 nmcbufp
    -rwxrwxrwx 1 oracle oinstall 345K Apr 13  2010 csscan
    -rwxrwxrwx 1 oracle oinstall 768K Apr 13  2010 ocrdump.bin
    -rwxrwxrwx 1 oracle oinstall 828K Apr 13  2010 ocrconfig.bin
    -rwxrwxrwx 1 oracle oinstall 740K Apr 13  2010 ocrcheck.bin
    -rwxrwxrwx 1 oracle oinstall 102K Apr 13  2010 rawutl
    -rwxrwxrwx 1 oracle oinstall  12K Apr 13  2010 osdbagrp
    -rwxrwxrwx 1 oracle oinstall 705K Apr 13  2010 gsd
    -rwxrwxrwx 1 oracle oinstall  17K Apr 13  2010 srvmspawn
    -rwxrwxrwx 1 oracle oinstall 1.9M Apr 13  2010 ocssd.bin
    -rwxrwxrwx 1 oracle oinstall 1.4M Apr 13  2010 racgeut
    -rwxrwxrwx 1 oracle oinstall 1.6M Apr 13  2010 racgmain
    -rwxrwxrwx 1 oracle oinstall 811K Apr 13  2010 clscfg.bin
    -rwxrwxrwx 1 oracle oinstall 712K Apr 13  2010 clsid.bin
    -rwxrwxrwx 1 oracle oinstall 734K Apr 13  2010 oclsvmon.bin
    -rwxrwxrwx 1 oracle oinstall 735K Apr 13  2010 oclsomon.bin
    -rwxrwxrwx 1 oracle oinstall 3.3M Apr 13  2010 crsctl.bin
    -rwxrwxrwx 1 oracle oinstall 935K Apr 13  2010 clsfmt.bin
    -rwxrwxrwx 1 oracle oinstall 1.2M Apr 14  2010 lmsgen
    -rwxrwxrwx 1 oracle oinstall 1.2M Apr 14  2010 lxegen
    -rwxrwxrwx 1 oracle oinstall 2.6M Apr 14  2010 lxinst
    -rwxrwxrwx 1 oracle oinstall 778K Apr 14  2010 lxchknlb
    -rwxrwxrwx 1 oracle oinstall 1.4M Apr 14  2010 lcsscan
    -rwxrwxrwx 1 oracle oinstall 349K Apr 19  2010 genksms
    -rwxrwxrwx 1 oracle oinstall  11K Apr 19  2010 osh
    -rwxrwxrwx 1 oracle oinstall  15K Apr 19  2010 fmputlhp
    -rwxrwxrwx 1 oracle oinstall 921K Apr 19  2010 fmputl
    -rwxrwxrwx 1 oracle oinstall  20K Apr 19  2010 sysresv
    -r-sr-s--- 1 root   oinstall  14K Apr 19  2010 oradism
    -rwxrwxrwx 1 oracle oinstall  29K Apr 19  2010 loadpsp
    -rwxrwxrwx 1 oracle oinstall 394K Apr 19  2010 kgmgr
    -rwxrwxrwx 1 oracle oinstall 857K Apr 19  2010 extjobo
    -rwxrwxrwx 1 oracle oinstall  66K Apr 19  2010 genezi
    -rwsr-x--- 1 root   oinstall 857K Apr 19  2010 extjob
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 tg4pwdO
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 oradismO
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 hsodbcO
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 oracleO
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 kfod
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 wrap
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 tstshm
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 sbttest
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 orapwd
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 oracle
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 nid
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 maxmem
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 mapsga
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 hsots
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 hsodbc
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 hsdepxa
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 hsalloci
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 extproc
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 dumpsga
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 dgmgrlO
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 dgmgrl
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 dbv
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 dbfsize
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 cursize
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 cfo
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 agtctl
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 sqlplus
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 racgmdb
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 racgimon
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 oifcfg
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 ldapsearch
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 ldapmodifymt
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 ldapmodify
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 ldapmoddn
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 ldapdelete
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 ldapcompare
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 ldapaddmt
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 ldapadd
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 dsml2ldif
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 tnnfg.dbl
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 oklist
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 okinit
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 okdstry
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 trcroute
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 tnsping
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 tnslsnr
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 lsnrctl
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 proc
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 ctxload
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 ctxlc
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 ctxkbtc
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 rmanO
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 rman
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 tkprof
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 tg4pwd
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 sqlldr
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 impdp
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 imp
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 expdp
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 exp
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 kgpmon
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 oratclsh
    -rwxrwxrwx 1 oracle oinstall    0 Apr 19  2010 emagtm
    -rwxrwxrwx 1 oracle oinstall 1.2K Oct 21  2011 olsoidsync.ouibak
    -rwxrwxrwx 1 oracle oinstall 1.2K Oct 21  2011 olsadmintool.ouibak
    -rwxrwxrwx 1 oracle oinstall 3.1K Oct 21  2011 umu.ouibak
    -rwxrwxrwx 1 oracle oinstall 5.3K Oct 21  2011 owm.ouibak
    lrwxrwxrwx 1 oracle oinstall   52 Oct 21  2011 lbuilder -> /u01/app/oracle/product/10.2.0/nls/lbuilder/lbuilder
    -rwxrwxrwx 1 oracle oinstall 3.2K Oct 21  2011 orapki.ouibak
    -rwxrwxrwx 1 oracle oinstall 1.7K Oct 21  2011 ocrdump0
    -rwxrwxrwx 1 oracle oinstall  574 Oct 21  2011 ocrconfig0
    -rwxrwxrwx 1 oracle oinstall 1.7K Oct 21  2011 ocrcheck0
    -rwxrwxrwx 1 oracle oinstall 1.7K Oct 21  2011 oclsmon
    -rwxrwxrwx 1 oracle oinstall 2.2K Oct 21  2011 mkstore.ouibak
    -rwxrwxrwx 1 oracle oinstall  11K Oct 21  2011 isqlplusctl.pl.ouibak
    -rwxrwxrwx 1 oracle oinstall 3.2K Oct 21  2011 isqlplusctl.ouibak
    -rwxrwxrwx 1 oracle oinstall 1.4K Oct 21  2011 statusnc.ouibak
    -rwxrwxrwx 1 oracle oinstall  509 Oct 21  2011 ojvmjava.ouibak
    -rwxrwxrwx 1 oracle oinstall 2.1K Oct 21  2011 oidprovtool.ouibak
    -rwxrwxrwx 1 oracle oinstall 2.0K Oct 21  2011 oidadmin
    -rwxrwxrwx 1 oracle oinstall 1.4K Oct 21  2011 ncomp.ouibak
    -rwxrwxrwx 1 oracle oinstall  554 Oct 21  2011 loadjava.ouibak
    -rwxrwxrwx 1 oracle oinstall 1.9K Oct 21  2011 ldifmigrator.ouibak
    -rwxrwxrwx 1 oracle oinstall  513 Oct 21  2011 dropjava.ouibak
    -rwxrwxrwx 1 oracle oinstall 1.4K Oct 21  2011 deploync.ouibak
    -rwxrwxrwx 1 oracle oinstall 3.0K Oct 21  2011 trcasst.ouibak
    -rwxrwxrwx 1 oracle oinstall 5.3K Oct 21  2011 rconfig.ouibak
    -rwxrwxrwx 1 oracle oinstall 6.1K Oct 21  2011 netmgr.ouibak
    -rwxrwxrwx 1 oracle oinstall 6.3K Oct 21  2011 netca.ouibak
    -rwxrwxrwx 1 oracle oinstall 5.9K Oct 21  2011 dbua.ouibak
    -rwxrwxrwx 1 oracle oinstall 1.6K Oct 21  2011 aqxmlctl.ouibak
    -rwxrwxrwx 1 oracle oinstall 2.1K Oct 21  2011 trcsess
    -rwxrwxrwx 1 oracle oinstall  935 Oct 21  2011 schemasync.ouibak
    -rwxrwxrwx 1 oracle oinstall 1.4K Oct 21  2011 racgwrap.ouibak
    -rwxrwxrwx 1 oracle oinstall    0 Oct 21  2011 racgons
    -rwxrwxrwx 1 oracle oinstall 2.2K Oct 21  2011 oidca.ouibak
    -rwxrwxrwx 1 oracle oinstall  995 Oct 21  2011 odisrvreg
    -rwxrwxrwx 1 oracle oinstall  324 Oct 21  2011 extusrupgrade.ouibak
    -rwxrwxrwx 1 oracle oinstall 419K Oct 21  2011 kgmgrO
    -rwxrwxrwx 1 oracle oinstall  16K Oct 21  2011 loadpspO
    -rwxrwxrwx 1 oracle oinstall 7.2K Oct 21  2011 osdbagrp0
    -rwxrwxrwx 1 oracle oinstall  69K Oct 21  2011 extproc32
    -rwxrwxrwx 1 oracle oinstall  34K Oct 21  2011 sslsetup.ouibak
    -rwxrwxrwx 1 oracle oinstall 8.6K Oct 21  2011 emutil.ouibak
    -rwxrwxrwx 1 oracle oinstall  84K Oct 21  2011 emctl.pl.ouibak
    -rwxrwxrwx 1 oracle oinstall  12K Oct 21  2011 emctl.ouibak
    -rwxrwxrwx 1 oracle oinstall  29K Oct 21  2011 EmctlCommon.pm.ouibak
    -rwxrwxrwx 1 oracle oinstall 6.1K Oct 21  2011 repo_mig.ouibak
    -rwxrwxrwx 1 oracle oinstall  898 Oct 21  2011 emtgtctl.ouibak
    -rwxrwxrwx 1 oracle oinstall 5.3K Oct 21  2011 dbca.ouibak
    -rwxrwxrwx 1 oracle oinstall  399 Oct 21  2011 commonenv.ouibak
    -rwxrwxrwx 1 oracle oinstall 2.1K Nov 19 23:03 oidprovtool
    -rwxrwxrwx 1 oracle oinstall 1.9K Nov 19 23:03 ldifmigrator
    -rw-r--r-- 1 root   root     7.2G Nov 19 23:03 pinglogs.txt
    -rwxrwxrwx 1 oracle oinstall 2.4K Nov 19 23:03 bndlchk
    -rwxrwxrwx 1 oracle oinstall 1.2K Nov 19 23:03 olsoidsync
    -rwxrwxrwx 1 oracle oinstall 1.2K Nov 19 23:03 olsadmintool
    -rwxrwxrwx 1 oracle oinstall 1.6K Nov 19 23:03 aqxmlctl
    -rwxrwxrwx 1 oracle oinstall  916 Nov 19 23:03 ott
    -rwxrwxrwx 1 oracle oinstall 3.0K Nov 19 23:03 trcasst
    -rwxrwxrwx 1 oracle oinstall 5.3K Nov 19 23:03 owm
    -rwxrwxrwx 1 oracle oinstall 3.2K Nov 19 23:03 orapki
    -rwxrwxrwx 1 oracle oinstall 6.1K Nov 19 23:03 netmgr
    -rwxrwxrwx 1 oracle oinstall  105 Nov 19 23:03 netca_deinst.sh
    -rwxrwxrwx 1 oracle oinstall 6.3K Nov 19 23:03 netca
    -rwxrwxrwx 1 oracle oinstall 2.2K Nov 19 23:03 mkstore
    -rwxrwxrwx 1 oracle oinstall  11K Nov 19 23:03 isqlplusctl.pl
    -rwxrwxrwx 1 oracle oinstall 3.2K Nov 19 23:03 isqlplusctl
    -rwxrwxrwx 1 oracle oinstall  935 Nov 19 23:03 schemasync
    -rwxrwxrwx 1 oracle oinstall 2.2K Nov 19 23:03 oidca
    -rwxrwxrwx 1 oracle oinstall 1.3K Nov 19 23:03 statusnc
    -rwxrwxrwx 1 oracle oinstall 4.5K Nov 19 23:03 srvconfig
    -rwxrwxrwx 1 oracle oinstall 1.9K Nov 19 23:03 racgwrap
    -rwxrwxrwx 1 oracle oinstall 1.5K Nov 19 23:03 ojvmjava
    -rwxrwxrwx 1 oracle oinstall 1.4K Nov 19 23:03 ncomp
    -rwxrwxrwx 1 oracle oinstall 1.4K Nov 19 23:03 loadjava
    -rwxrwxrwx 1 oracle oinstall 1.2K Nov 19 23:03 dropjava
    -rwxrwxrwx 1 oracle oinstall 1.3K Nov 19 23:03 deploync
    -rwxrwxrwx 1 oracle oinstall  736 Nov 19 23:03 cluvfy
    -rwxrwxrwx 1 oracle oinstall 6.4K Nov 19 23:03 srvctl
    -rwxrwxrwx 1 oracle oinstall 2.4K Nov 19 23:03 ocssd
    -rwxrwxrwx 1 oracle oinstall 2.4K Nov 19 23:03 ocrdump
    -rwxrwxrwx 1 oracle oinstall  574 Nov 19 23:03 ocrconfig
    -rwxrwxrwx 1 oracle oinstall 2.4K Nov 19 23:03 ocrcheck
    -rwxrwxrwx 1 oracle oinstall 2.4K Nov 19 23:03 oclsvmon
    -rwxrwxrwx 1 oracle oinstall 2.4K Nov 19 23:03 oclsomon
    -rwxrwxrwx 1 oracle oinstall  23K Nov 19 23:03 localconfig
    -rwxrwxrwx 1 oracle oinstall 4.9K Nov 19 23:03 gsd.sh
    -rwxrwxrwx 1 oracle oinstall 4.7K Nov 19 23:03 gsdctl
    -rwxrwxrwx 1 oracle oinstall 2.4K Nov 19 23:03 crsctl
    -rwxrwxrwx 1 oracle oinstall 2.4K Nov 19 23:03 clsid
    -rwxrwxrwx 1 oracle oinstall 2.4K Nov 19 23:03 clsfmt
    -rwxrwxrwx 1 oracle oinstall 2.4K Nov 19 23:03 clscfg
    -rwxrwxrwx 1 oracle oinstall 3.1K Nov 19 23:03 umu
    -rwxrwxrwx 1 oracle oinstall 5.3K Nov 19 23:03 rconfig
    -rwxrwxrwx 1 oracle oinstall  324 Nov 19 23:03 extusrupgrade
    -rwxrwxrwx 1 oracle oinstall 7.2K Nov 19 23:03 dbua
    -rwxrwxrwx 1 oracle oinstall 6.1K Nov 19 23:03 repo_mig
    -rwxrwxrwx 1 oracle oinstall  31K Nov 19 23:03 EmctlCommon.pm
    -rwxrwxrwx 1 oracle oinstall  474 Nov 19 23:03 sslsetup
    -rwxrwxrwx 1 oracle oinstall 2.9K Nov 19 23:03 fix_4525303.pl
    -rwxrwxrwx 1 oracle oinstall 7.4K Nov 19 23:03 emutil
    -rwxrwxrwx 1 oracle oinstall  89K Nov 19 23:03 emctl.pl
    -rwxrwxrwx 1 oracle oinstall  11K Nov 19 23:03 emctl
    -rwxrwxrwx 1 oracle oinstall 3.5K Nov 19 23:03 targetdeploy.pl
    -rwxrwxrwx 1 oracle oinstall 2.9K Nov 19 23:03 onsctl
    -rwxrwxrwx 1 oracle oinstall 668K Nov 19 23:03 ldapbind
    -rwxrwxrwx 1 oracle oinstall 1.2K Nov 19 23:03 emtgtctl
    -rwxrwxrwx 1 oracle oinstall 1.7K Nov 19 23:03 emca
    -rwxrwxrwx 1 oracle oinstall 3.7K Nov 19 23:03 emagentdeploy.pl
    -rwxrwxrwx 1 oracle oinstall 5.7K Nov 19 23:03 dbca
    -rwxrwxrwx 1 oracle oinstall  531 Nov 19 23:03 commonenv
    [oracle@MTSNOIDA-REP2 bin]$ pwd
    /u01/app/oracle/product/10.2.0/bin

Maybe you are looking for