How to find the folder (EBS_R12) in OEL 5 after copy/paste from Windows 7 ?

Folks,
Hello. I have just installed Oracle Linux 5 as Guest OS on the top of VMPlayer. Host OS is Windows 7.
I downloaded Oracle E-Business Suite R12 from edelivery into Windows 7 in a folder(EBS_R12) on my LapTop screen.
In order to install EBS R12 into Oracle Linux 5, I copy/paste the folder EBS_R12 into Oracle Linux 5 screen. The file size is about 50GB. After coply/paste is completed successfully, I cannot find where is the folder (EBS_R12) in the Guest OS Oracle Linux 5.
Can any folks tell me where is the folder (EBS_R12) in Oracle Linux 5 after copy/paste from Windows 7 ?

Hi,
After coply/paste is completed successfully, I cannot find where is the folder (EBS_R12) in the Guest OS Oracle Linux 5.Was the copy/paste successful.
If yes then you can do the following
#find / -name EBS_R12 -type d -print
(Assuming you copied the folder "EBS_R12" , But not its contents).
Thanks

Similar Messages

  • How to find the Date and time of Installation of Oracle in Windows?

    Hi ,
    Is there any way to find the installation Date and time of Oracle in Windows?
    Regards
    Rajesh

    If you have never recreated/restored/reincarnated the database, then CREATED column from v$database should tell you when you created the database.
    If you are looking for the date/time of installation of Oracle home, check the logs under OraInventory.
    Reply by Satish sir at following link:
    installation date/time of a database !!
    Hth
    Girish Sharma

  • How to find the start and end duration of "Selected frames" from Video using didFinishPickingMediaWithInfo?

    I am doing slow motion in audio and video using AVFoundation(for Video) and Dirac(Audio). As part of it, i will show the video as frames in which the user will select the frames to do slow motion. Eg: 5-6 min of 10 min video.
    I have to show the users two kinds of videos 1. through the video recorder from my application itself. 2. from the gallery.
    Case1: No problem Now,i can record the videos though my video recorder and show the videos as frames to the user to select. Once the user selects some frames(Eg: 5 to 6 min of 10 min recorded video), using the below code, i am able to find the start/end duration of the selected frames or video.
    NSNumber *start = [info objectForKey:@"_UIImagePickerControllerVideoEditingStart"]; NSNumber *end = [info objectForKey:@"_UIImagePickerControllerVideoEditingEnd"];  int startMilliseconds = ([start doubleValue] * 1000);int endMilliseconds = ([end doubleValue] * 1000);
    Case2: In this case, i am able to pick the video from the gallery and show them to the user in the form of frames to select. However, when i try to find the start/end duration of the video as i did in case 1 with the same code, its not working. I am always getting "0" for start/end duration.
    Can you please give some suggestion on my Issue ?

    +1 .. also. i'd to know is using "_UIImagePickerControllerVideoEditingStart"
    the app won't be rejected..
    thanks,
    F

  • How to delete the photo that had been sync into iphone from windows

    I have sync my picture from
    Computer into the iphone, the it automatically sync 2 same folder into the photo album. Im trying to delete it but cant, cant even find the file using the computer. Pls help

    Are you talking about photo Library?
    This is how Apple handles photos.  ALL synced photos are in teh Photo Library.  you can also access those exact same pics ( not duplicates) from the album which you selected to sync; just as your music is in your library and ca also be accessed via playlists.

  • How to find the folder creator? (Not owner)

    Hello
    I want to find who created a folder on my server? someone created a folder and have changed the owner to a disabled user! is there a way?

    I would like to confirm if you have auditing enabled ?
    If not yet, you need to enable auditing first and it will help you to audit such changes made on file server.
    Here is an informative resource that provides step-wise instructions to enable auditing on file server and track all the critical changes :
    https://technet.microsoft.com/en-us/library/cc784387%28v=ws.10%29.aspx
    Meanwhile, if you want to track such changes automatically, you may also check this automated solution
    http://www.fileserveraudit.com/  that looks a good approach to meet with your requirement and get real time alerts for the same.

  • How to find the largest odd number and smallest even number from an array

    Hello All
    I want to find out largest odd number and the smallest even number from an arry numbers? What is the best method to achieve this.
    Thanks
    Sravz

    You need to sit down and figure out an algo on how you would do it if you had to do the same thing from a blind container perspective:
    1 - collect all the items you want to look at
    2 - look at an item
    3 - is it odd?
    4 - if it is odd then check if it is larger than previously largest number
    5 - save it if it is larger
    6 - return back to 2 unless no more items
    7 - item is not odd so it must be even--is it smaller than previous
    8 - save it if it is smaller
    9 - return back to 2 unless no more items
    Now you just need to know how to check if something is even or odd: to do this you will need the modulous operator--integer division.
    Note: this all assumes that your needs are for integer type of numbers, otherwise there is not enough information to define an answer. For instance, if you are using floats at 0.5--it that even or odd? Do you consider an err factor when dealing with floats? etc...

  • Cannot find the folder of a bookmark after finding it by tag search

    Hello! When I search for a bookmark in the "Organize bookmarks" panel by using a tag search, I want to see in which folder the bookmark that I found i situated. I saw there are some extensions that provide this, but they are for older versions of the browser. My version is the following:
    Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.9) Gecko/20100330 Fedora/3.5.9-1.fc11 Firefox/3.5.9
    Thanks in advance, greetings from sunny Jamaica :)

    Hello, I have the same problem. When I find a bookmark using the search in Organize bookmarks, it doesn't show its location. In this way I remember that there was a bookmark similar to the new one, but I cannot remember in which folder it was, so many bookmarks of one type go to different folders :(

  • How to find the user exits and BADIS from SPRO

    Hi all,
    please let us know how to find the User exits or BADIS for an application from SPRO.
    Regards,
    Madhavi

    Hi Varisetty,
    Finding user exits and BAdis from SPRO can be cumbsersome. In most instances you know the standard SAP program and want to check (find) an exit called in the flow of the transaction. You can do this as follows:
    For User Exit:
    Put "/h" in the command box (to start debugging)
    Execute your transaction
    When you enter debugging - put a breakpoint at statement
    CALL CUSTOMER-FUNCTION
    the control will stop at all calls to User Exits
    For BAdi (it's simpler)
    Go to class CL_EXITHANDLER in SE24
    Enter method GET_INSTANCE
    Put a breakpoint in this method
    Run your standard transaction - control will stop at all BAdis called within the flow since this method is used to check BAdi implementations before invoking them
    Also, if you want to find enhancements by package - go to SE80, enter the package and check function groups starting with X - those contain function exits (conventional user exits). For BAdis in a package, there is normally a separate tree node (under the package) for Enhancements hence clearly identifiable.
    Cheers,
    Adi

  • I've lost a load of notes, but dont know why or how to get them back. I cant find the folder that is in my Yahoo account that people have suggested might be the location for the messages.  I recently signed into iCloud for the first time.

    I've lost a load of notes, but dont know why or how to get them back. I cant find the folder that is in my Yahoo account that people have suggested might be the location for the messages.  I recently signed into iCloud for the first time.  Any idea how to get the notes back?   I really dont want to lose them.

    It should keep asking for the password, because it's trying to check for purchases... As soon as you login, it will see you have pending downloads and create the downloads section on the left below Purchases under the Store section. Then it will start the music downloads there, as they will be listed one below the other.
    You could just try to check your account balance or view your account and that will trigger a password request too. You can just click on that and say that now iTunes keeps asking for the password and ask him to help you with that. Trick would be to interrupt him so that he carries on with another task after, so he doesn't notice the download. Or you carry on with email or browsing which you were "busy" with when iTunes interrupted you for the password (stupid iTunes)

  • How to find the Music and Movies folder in your Finder

    I wish I bought a cheap computer with low GB space because MacBook Pro GB is not enough so you have to buy an external harddrive anyway.
    Anyway I wanted to delete some music files but I couldn't delete it from the Disk Inventory. I remember someone from Apple navigating my files from the Finder Macintosh HD and saw how much GB of movies and music I had and then I could delete it then and there, but I can't find the folder he went to. I found it once after so much hard finding and then I got lost again as I tried to find it again today.
    So how do you find that place?

    Whitecity wrote:
    Out of interest, how much space is on your harddrive? Replacing it with a larger one is easy and cheap.
    It is much easier to purchase an external HD and store the ITunes library on it.

  • How to expand the folder via applescript?

    Dear apple experts,
    How to expand the folder via applescript?
    Manually we are using command + option + right arrow, but how we handle this in applescript?
    Thanks in advance,
    Velladurai.G

    Hello
    Finder's container's "expanded" and "completely expanded" properties have long been marked "NOT AVAILABLE YET" under OSX:
    Finder.sdef > Containers and Folders suite
    container n [inh. item] : An item that contains other items
        elements
            contains items, containers, folders, files, alias files, application files, document files, internet location files, clippings, packages.
        properties
            entire contents (specifier, r/o) : the entire contents of the container, including the contents of its children
            expandable (boolean, r/o) : (NOT AVAILABLE YET) Is the container capable of being expanded as an outline?
            expanded (boolean) : (NOT AVAILABLE YET) Is the container opened as an outline? (can only be set for containers viewed as lists)
            completely expanded (boolean) : (NOT AVAILABLE YET) Are the container and all of its children opened as outlines? (can only be set for containers viewed as lists)
            container window (specifier, r/o) : the container window for this folder
    A way to expand a given folder is to use keystroke command of System Events to invoke the keyboard shortcut in Finder. Something like the following script.
      kLeftArrowCharCode            = 28,
      kRightArrowCharCode           = 29,
      kUpArrowCharCode              = 30,
      kDownArrowCharCode            = 31,
    --set f to (path to downloads folder from user domain) -- target folder e.g.
    set f to (choose folder)
    tell application "Finder"
        reveal f
        tell Finder window 1
            set cv to current view
            if cv = column view then return -- do nothing
            if cv = icon view then set current view to list view
        end tell
        my _keystroke(it, character id 29, {option down, command down}, 0.2)
    end tell
    on _keystroke(_app, _key, _modifiers, _delay)
            reference _app : application reference
            string _key : character(s) to be keystroked [1]
            list _modifiers : list of modifier key to be pressed; enumerations are
                    command down
                    option down
                    shift down
                    control down
            number _delay : post-delay amount [sec]
            [1] Character must be present on the current keyboard layout. Otherwise, it is replaced by 'a'.
        tell _app to activate
        tell application "System Events"
            tell (process 1 whose bundle identifier = (_app's id))
                keystroke _key using _modifiers
            end tell
        end tell
        if _delay > 0 then delay _delay
    end _keystroke
    Regards,
    H

  • How to find the unused files for deletion?

    After mapping 600 xml files, how does one find the unused files for deletion from the folder? (eaiser and cheaper translations)
     

    iWeb will open any file with the extension .sites2 - it doesn't have to be named "Domain".
    See this page for how to open separate Domain files when using Lion/Mountain Lion...
    http://www.iwebformusicians.com/iWeb/mountain-lion.html
    The above page will also let you know how to find the library folder now that its hidden.

  • Unable to Uninstall Itunes due to not being able to find the folder

    I can't uninstall my Itunes from my laptop to install the new one and it is saying that they can't find the folder,is there anyway i can fix this?

    Start with the second box and the notes below it. If you cannot uninstall iTunes using the Programs and Features control panel, try the MS Installer Fixit, or simply tear down the installation folders as given.
    The section Install missing components should show how to break down the main iTunes installer into the component .msi files.
    tt2

  • How to find the webdynpro component on server

    Hi Experts,
              I need to identify a webdynpro component in server whether it is there or not. Just i know the name of the component, Why i am asking with that component i am getting some errors while created a callable object in GP. I need to identify the component and delete that.
    Is there any other  way to do this.......
    Please tell any one know how to find the component in server................
    Thanks,
    Sunil

    Hi ,
    To create a callable object from a web dynpro project you need three DC like
    caf/eu/gp/api
    caf/eu/gp/api/wd
    com.sap.security.api.sda
    but caf/eu/gp/api and caf/eu/gp/api/wd  are not available if you work on local development enviornment with out NWDI. Then you need to put those DCs within your local plugin directiory. I am sending you a link through this you will get to download those DCs and where you will put those DCs it is clear in this doc.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f7be53bb-0b01-0010-1c96-be3cb6799c1b
    In your local mc you will go to the following path
    Program FilesSAPIDEIDE70eclipsepluginscom.sap.tc.ap_2.0.0compCAFDCssap.comcaf
    here you will create a folder called eu and put the DCs as per the doc. and in SC u put your Toplevel SC.
    Now you try from Web Dynpro perspective. You will get all the DCs for callable object.
    Thanks
    Chandan

  • How to find the server hosting office communication ?

    Hello
    How to find the server hosting office communication ?
    Thanks,
    Dom
    System Center Operations Manager 2007 / System Center Configuration Manager 2007 R2 / Forefront Client Security / Forefront Identity Manager

    Hello,
    I have:
    DG URL Internal;https://OCS.ad.xxxxxx.xxxx.xxx/GroupExpansion/Int/service.asmx;--;
    DG URL External;;--;
    Quality Metrics URI;;--;
    URL Internal From Server;https://OCS.ad.xxxxxx.xxxx.xxx/Abs/Int/Handler;--;
    URL External From Server;;--;
    Voice mail URI;sip:[email protected];opaque=app:voicemail;--;
    MRAS Server;;Not Configured;
    GAL Status;https://OCS.ad.xxxxxx.xxxx.xxx/Abs/Int/Handler;--;
    Controlled Phones;TRUE;--;
    PC to PC AV Encryption;AV Encryption Enforced;--;
    Focus Factory;sip:[email protected];gruu;opaque=app:conf:focusfactory;--;
    Telephony Mode;Telephony Mode Disabled;--;
    Line;;--;
    Line Configured From;Auto Line Configuration;--;
    Location Profile;;--;
    Local Log Folder;C:\Users\me\tracing;;
    MAPI Information;MAPI Status OK;MAPI Status OK;
    Inside User Status;TRUE;;
    Auto Update Download Started;--;--;
    Auto Update Download Completed;--;--;
    Last Auto Update Request;--;--;
    Pairing State;Communicator cannot connect to your desk phone because the USB cable is not plugged in. Make sure that you connect the cable.;Enabled;
    I see my email on the sip line but no server... what do I miss?
    Is it by the URL?
    Thanks,
    Dom

Maybe you are looking for