Run finder from UNIX?

I was wondering if there is anyway that if I were to boot into unix I could then open the finder? I dont know too much about unix but is this possible? thank you

hi sorry i didnt see the unix forum, ill post there next time.
but what i am trying to do is my friends brother said his computer would only start up into unix asking for a name and password and then he didnt how to get it to boot into the finder. i can get around in unix but when it comes to the advanced things im totally useless. i was wondering if there is anyway to open the finder GUI from the unix CLI environment. thanks, hope that makes sense

Similar Messages

  • How to run import from Unix Oracle 8.0.5 database with Windows Oracle client?

    How to run import from Unix Oracle 8.0.5 database via network with Windows Oracle client? Is it possible? When I try to do it Oracle client just hangs... If not which ones are compatible Aix or Solaris to Unix or it must be a Unix client to connect to Unix Oracle database. Thank's for any help.

    Hi,
    In our project we are using this type. Since in this project server in UNIX(DEC) and client is running on windows. We have created a listener which always listen requests from client and doing the according to the request.
    Step1. create a request table, where u are inserting ur request.
    step2. create PRO*C proram, which is listening request on the table. If there is any request, call the imp (executable). This is happening on server side.
    Benifit. U can make a request from cleint and ftp the file client sit.
    Are u interested in more details and code, pls send a mail to me
    ---- Boby Jose Thekkanath
    [email protected]
    Dharma Computers(p) Ltd. Bangalore.
    null

  • Run SQL from UNIX

    How could I run sqlplus from an Unix machine?

    If want to Install
    1. Need to Install Oracle Client
    2. Use SQL *PLUS
    or
    If dont want to install
    1. Use iSQLPLUS

  • Run report from Unix prompt

    Hi,
    for audit reasons we need to run a report again. Therefore a changed the where-clause of the report. Since the report needs to run on our production system and the prodcution-version of the report can not be changed, I need to run the report from the unix prompt. Can anyone tell me how to run an Oracle reports 2.5 from the uni prompt. We are using Oracle Applications and therefor still on reports 2.5....
    I tried to run the report from the client, but since the report fetches alot of data, my harddrive with 1.7GB of free space ran out of resources. Therefore I can only run the report on the production system (a little bit more resources...).
    Thanks in advance, Roel.

    Hi Roel,
    Go to $ORACLE_HOME/bin directory. You can see the reports executables r25runm - Runtime, r25clim - Client.
    You can run your report like this:
    r25runm report=myreport.rdf userid=scott/tiger@mydb destype=file desformat=pdf desname=myreport.pdf
    (or)
    r25clim report=myreport.rdf userid=scott/tiger@mydb destype=file desformat=pdf desname=myreport.pdf server=myserver
    Please, Change the desformat and destype as per your requirement.
    -Siva B

  • Running SQLPLUS from UNIX shell script

    I'm not sure if this is the right forum, but...
    How can I execute a sql file from inside the UNIX shell script, logging on to Oracle w/o supplying a UID/pwd? Normally, we log into UNIX using our own logon, then sudo as another user to login to Oracle. Now, I'm trying to create a UNIX shell script, where I'm already sudo'd as the UserID that logs into Oracle. I've tried the following, but can't get it to work. I'm a UNIX scripting noob. Any ideas?
    example:
    #! /usr/bin/ksh
    sqlplus / \@test.sql << EOF
    exit;
    EOF

    I'm a UNIX scripting noob.In which case I feel obligated to point you at William Robertson's excellent article Database Shellscripts Considered Harmful. Save yourself a world of pain.
    Cheers, APC

  • RE: Running Escript from a UNIX script

    Hi Doug,
    Yu can try the following within escript:
    (using execcmd to generate an escript script and include to execute the
    generated escript)
    1) startup escript from a ksh
    2) get to the installedPartition level
    3) setOutFile yourOutFile
    4) showag
    5) setOutFile
    6) execcmd " yourAwkGrepScript.ksh yourOutFile "
    7) include yourGeneratedEscript
    yourAwkGrepScript.ksh analyses yourOutFile and finds
    the ActivePartition level subagent with the hex number as part of that
    subagent name
    then generates a new escript script with a fixed name yourGeneratedEscript
    I hope this idea will help you to solve your problem.
    Evert Nooijen.
    -----Original Message-----
    From: [email protected]
    [SMTP:[email protected]]
    Sent: 27 January 1999 15:25
    To: [email protected]
    Subject: Running Escript from a UNIX script
    I'm running a Korn Shell script that uses Escript to navigate down through
    an applications sub agents to get to the LoadBalancingRouter agent. Now I
    also need to get to the CommMgr agent in the same fashion. The problem I'm
    having is that once I get to the InstalledPartition level , I need to get
    to the ActivePartition level which requires the hex number as part of the
    subagent name. I've figured out a way to get the subagent name using awk &
    grep, but haven't been able to do it while I'm in escript. Basically I
    need to find the subagent for the installed partition & pass that name to
    the findsubagent command. Escript doesn't seem to understand grep or awk??
    Does anyone have any ideas or have you done something like this before??
    Doug Scurr
    HealthPartners
    8100 34th Avenue South
    Minneapolis, MN 55440-1309
    (612)883-7317
    <[email protected]>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Escript is pretty dumb, in that it doesn't have any
    looping or conditional expressions itself. I drive
    escript from a korn shell script also.
    Basically, I make two passes when doing things with
    escript in cases like this. One pass I send the
    commands to get the necessary info out of escript,
    and redirect to a file.
    Second pass, I awk/grep/whatever the info out of
    the temporary file and use it to build another
    set of escript commands to do the real work.
    [email protected]
    Unix Systems Administrator
    Sentai Advanced Research Corp.
    (780)423-3113 ext 42
    -----Original Message-----
    From: [email protected]
    <[email protected]>
    To: [email protected] <[email protected]>
    Date: Wednesday, January 27, 1999 8:35 AM
    Subject: Running Escript from a UNIX script
    I'm running a Korn Shell script that uses Escript to navigate down through
    an applications sub agents to get to the LoadBalancingRouter agent. Now I
    also need to get to the CommMgr agent in the same fashion. The problem I'm
    having is that once I get to the InstalledPartition level , I need to getto
    the ActivePartition level which requires the hex number as part of the
    subagent name. I've figured out a way to get the subagent name using awk &
    grep, but haven't been able to do it while I'm in escript. Basically I need
    to find the subagent for the installed partition & pass that name to the
    findsubagent command. Escript doesn't seem to understand grep or awk??
    Does anyone have any ideas or have you done something like this before??
    Doug Scurr
    HealthPartners
    8100 34th Avenue South
    Minneapolis, MN 55440-1309
    (612)883-7317
    [email protected] <[email protected]>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • Running Escript from a UNIX script

    I'm running a Korn Shell script that uses Escript to navigate down through
    an applications sub agents to get to the LoadBalancingRouter agent. Now I
    also need to get to the CommMgr agent in the same fashion. The problem I'm
    having is that once I get to the InstalledPartition level , I need to get to
    the ActivePartition level which requires the hex number as part of the
    subagent name. I've figured out a way to get the subagent name using awk &
    grep, but haven't been able to do it while I'm in escript. Basically I need
    to find the subagent for the installed partition & pass that name to the
    findsubagent command. Escript doesn't seem to understand grep or awk??
    Does anyone have any ideas or have you done something like this before??
    Doug Scurr
    HealthPartners
    8100 34th Avenue South
    Minneapolis, MN 55440-1309
    (612)883-7317
    [email protected] <[email protected]>

    Escript is pretty dumb, in that it doesn't have any
    looping or conditional expressions itself. I drive
    escript from a korn shell script also.
    Basically, I make two passes when doing things with
    escript in cases like this. One pass I send the
    commands to get the necessary info out of escript,
    and redirect to a file.
    Second pass, I awk/grep/whatever the info out of
    the temporary file and use it to build another
    set of escript commands to do the real work.
    [email protected]
    Unix Systems Administrator
    Sentai Advanced Research Corp.
    (780)423-3113 ext 42
    -----Original Message-----
    From: [email protected]
    <[email protected]>
    To: [email protected] <[email protected]>
    Date: Wednesday, January 27, 1999 8:35 AM
    Subject: Running Escript from a UNIX script
    I'm running a Korn Shell script that uses Escript to navigate down through
    an applications sub agents to get to the LoadBalancingRouter agent. Now I
    also need to get to the CommMgr agent in the same fashion. The problem I'm
    having is that once I get to the InstalledPartition level , I need to getto
    the ActivePartition level which requires the hex number as part of the
    subagent name. I've figured out a way to get the subagent name using awk &
    grep, but haven't been able to do it while I'm in escript. Basically I need
    to find the subagent for the installed partition & pass that name to the
    findsubagent command. Escript doesn't seem to understand grep or awk??
    Does anyone have any ideas or have you done something like this before??
    Doug Scurr
    HealthPartners
    8100 34th Avenue South
    Minneapolis, MN 55440-1309
    (612)883-7317
    [email protected] <[email protected]>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • OAS in Unix: URL not found when run report from Form???? please help

    Hi,
    We have succesfully install OAS with Form Server and Report Server in
    Unix. We able to run Form and Report direct from browser. But we having
    problem to run Report from direct Form within the browser. The message from
    the browser was 'The requested URL was not found'. We use run_product to run
    report from form. Below is the statement:-
    Run_Product(REPORTS, 'A10001', SYNCHRONOUS, RUNTIME, FILESYSTEM, pl_id,
    NULL);
    Does anyone have an idea??
    Thanks in advance.
    null

    please check env. variables
    1. FORMS60_MAPPING
    2. FORMS60_OUTOUT
    FORMS60_MAPPING should point to vartual directory on your forms webserver
    FORMS60_OUTPUT should point to physical
    directory path of vartual directory
    FORMS60_MAPPING
    regards
    Darshan
    [email protected]
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by leong([email protected]):
    Hi,
    We have succesfully install OAS with Form Server and Report Server in
    Unix. We able to run Form and Report direct from browser. But we having
    problem to run Report from direct Form within the browser. The message from
    the browser was 'The requested URL was not found'. We use run_product to run
    report from form. Below is the statement:-
    Run_Product(REPORTS, 'A10001', SYNCHRONOUS, RUNTIME, FILESYSTEM, pl_id,
    NULL);
    Does anyone have an idea??
    Thanks in advance.
    <HR></BLOCKQUOTE>
    null

  • How to run a java program in windows 2003 server from unix server.

    Hi ,
    I want to run a java program in windows 2003 server from unix machine ..
    will RMI helps me to obtain this.
    Please tell me the procedure to do this.
    Thanks in advance,

    rmi,web services,corba,web 2.0,xml,xls,dtd,rss,ruby on rails,https,soap,tags,blog,podcast,google

  • Unable to run reports from the unix command line

    hi
    all of a sudden i am unable to run reports ( on App server 10g) either from the unix scripts or from the unix command line. But i can run them from the forms.
    Any one have any idead about this.
    Thank you

    thanks all for replying
    i have set the env variables for the session and it worked. Looks like i have to set the oracle_home and ld_library_path every time ( opening a new putty session) i call sqlldr.
    But in a whole i am trying to run sql loader from the forms. Right now we have Oracle app server 10g which forms 10g version. As oracle app server 10g didnt come with sqlldr, we are copied the sqlldr of database on to app server with different home. after this we can run sqlldr ( on app server ) from unix scripts but not from Forms. Then we opened a qurey with oracle about app server 10g not commig with sqlldr and its remedy . But they said that they dont have specific remedy for that and suggested the same what we did.
    So we came up with java package which does the same funtion as host command and trying to run sqlldr which is on the database( ie replacing the host command in the forms with the database funtion). By using that funtion i am able to run the sqlldr from sql plus but not from forms. I couldnt easily debug it as i wont through any error messages.
    Any one have any idea of this ...
    Thank you

  • Running OWB Client from Unix

    Hi
    I am trying to remember how to run OWB client (10gr1) from a unix command. Can anyone please help with what command you run from unix?
    Thanks
    GB

    Hi,
    To start Warehouse Builder using UNIX:
    1.Start a shell.
    2.Navigate (cd) to <OWB ORACLE HOME>/owb/bin/unix
    3. Invoke owbclient.sh
    Thanks,
    Sutirtha

  • Help find the Last run date from previous month

    Hi all
    I am stuck trying to find the Last Run Date from the previous month.
    select distinct(date_ran) from TABLE X where date_ran like '%/11-%' order by date_ran desc gives
    "03/30/11-06:19
    "03/25/11-03:01
    "03/24/11-03:00
    "03/23/11-03:00
    "03/22/11-03:00
    "03/21/11-03:00
    "03/18/11-03:00
    "03/17/11-00:00
    "03/16/11-06:31
    "02/15/11-07:42
    "02/15/11-06:00
    "02/14/11-08:19
    Here the result I am trying to acheive is 02/15/11-07:42 ;Note the column date_ran is a VARCHAR2(255) and not a TIMESTAMP
    I tried
    select ADD_MONTHS(to_date(max(date_ran), 'MM/DD/YYYY-HH24:MI'),-1)
    from daily_tests_a
    where date_ran like '%/11-%'
    order by date_ran desc
    which returns 2/28/0011 6:19:00 AM and that is not the result I am looking for
    Regards
    SMK

    Welcome to the forum!
    user2931503 wrote:
    Hi all
    I am stuck trying to find the Last Run Date from the previous month.
    select distinct(date_ran) from TABLE X where date_ran like '%/11-%' order by date_ran desc gives
    "03/30/11-06:19
    "03/25/11-03:01
    "03/24/11-03:00
    "03/23/11-03:00
    "03/22/11-03:00
    "03/21/11-03:00
    "03/18/11-03:00
    "03/17/11-00:00
    "03/16/11-06:31
    "02/15/11-07:42
    "02/15/11-06:00
    "02/14/11-08:19
    Here the result I am trying to acheive is 02/15/11-07:42 ;Note the column date_ran is a VARCHAR2(255) and not a TIMESTAMPThat's a very bad idea. Points in time should always be stored in DATE (or maybe TIMESTAMP) columns. If not, you're going to waste resources converting them to DATEs whenever you need them to behave like DATEs, and risk run-time errors because of bad data.
    Normally, the "previous" month means the month before the current month. In April, the previous month is March.
    By "previous" month, do you mean the 2nd latest month in the table? That is, this data contains data from February and March, 2011; March 2011 is the latest of those months, February 2011 is the next-to-last, and so is that why you want a date from February?
    I tried
    select ADD_MONTHS(to_date(max(date_ran), 'MM/DD/YYYY-HH24:MI'),-1)
    from daily_tests_a
    where date_ran like '%/11-%'
    order by date_ran desc
    which returns 2/28/0011 6:19:00 AM and that is not the result I am looking for
    Regards
    SMKTry this:
    WITH   got_real_date   AS
         SELECT     TO_DATE ( SUBSTR (date_ran, 1, 14)
                   , 'MM/DD/RR-HH24:MI'
                   )     AS real_date
         FROM     table_x
    --     WHERE     ...     -- If you need any filtering, put it here
    SELECT     TO_CHAR ( MAX (real_date)
              , 'MM/DD/RR-HH24:MI'
              )     AS last_date
    FROM    got_month_num
    WHERE     real_date     < (
                               SELECT  TRUNC (MAX (real_date), 'MONTH')
                         FROM    got_real_date
    ;Edited by: Frank Kulash on Apr 5, 2011 3:59 PM

  • Run PL/SQL from Unix

    Can anybody tell me how to run PL/SQL Procedure from unix prompt.

    You can start a sqlplus script from unix prompt, e.g.
    sqlplus <youruser>/<yourpassword>@<yourdb> @yourscript.sqlEdited by: hm on 01.01.2011 02:33

  • Run SQL Loader script from Unix env

    Hi,
    We are using HP-UNIX server. The control file of SQL Loader is placed in oracle home\bin folder in the unix server. I created Executable for this SQL Loader control file in concurrent program and attached into a request group.
    Then I ran it from a responsibility, I am getting the below error.
    +-----------------------------
    | Starting concurrent program execution...
    +-----------------------------
    SQL*Loader-350: Syntax error at line 16.
    Expecting "," or ")", found "TIMESTAMP".
    GL_DATE TIMESTAMP 'yyyy MM dd hh:MI:SS:AM',
    ^
    SQL*Loader: Release 8.0.6.3.0 - Production on Sun Sep 5 15:28:45 2010
    (c) Copyright 1999 Oracle Corporation. All rights reserved.
    SQL*Loader-350: Syntax error at line 16.
    Expecting "," or ")", found "TIMESTAMP".
    GL_DATE TIMESTAMP 'yyyy MM dd hh:MI:SS:AM',
    ^
    My Actual Control file is,
    LOAD DATA
    INFILE '/usr/........xyz.txt'
    BADFILE '/usr/........xyz.bad'
    DISCARDFILE '/usr/........xyz.dsc
    APPEND
    INTO TABLE gl_interface_stg
    FIELDS TERMINATED BY "|" TRAILING NULLCOLS
    GL_DATE TIMESTAMP 'yyyy MM dd hh:MI:SS:AM',
    CATEGORY_NAME,
    JOURNAL_DESCRIPTION,
    JOURNAL_NAME,
    BATCH_NAME,
    BATCH_DESCRIPTION,
    ACCOUNT_CODE,
    PROCESSING_STATUS CONSTANT 'N'
    If I run the above control file from my local machine (windows) using SQLLDR username/pwd @servername control='c:/abc.ctl' from the command prompt, then all the records from xyz.txt file pushed into staging table.
    Where as, If I schedule the above control file and trying to run from a GL responsibility, I am getting the above error message.
    Do I need to modify the control file scripts in order to run from UNIX environment?
    Pls advice how to do it from UNIX environment.
    Thanks in advance.

    Hi,
    SQL*Loader-350: Syntax error at line 16.Please see if these docs help.
    SQL*LOADER-350 SYNTAX ERROR [ID 1019271.102]
    LDR-00350 TOKEN LONGER THAN MAX ALLOWABLE LENGTH ERROR WHEN LOADING ASCII FILE [ID 1020091.6]
    Do I need to modify the control file scripts in order to run from UNIX environment?
    Pls advice how to do it from UNIX environment.See these docs.
    How to Use 9i or 10g Features in SQL*Loader for Apps? [ID 423035.1]
    11i FND:How to specify Record Terminator In Sql*Loader type of concurrent program [ID 252850.1]
    Thanks,
    Hussein

  • Running 10.8.3 on an Intel iMac 27'. The Finder keeps grabbing over 100% of the CPU which seems to stop me from opening any folders. Only quitting the Finder from Activity monitor resets it to normal. Any ideas?

    My Finder keeps grabbing over 100% of the CPU which seems to stop me from opening any folders.
    Only quitting the Finder from Activity monitor resets it to normal.
    Any ideas?

    Nope, I don't have a "/Users/charon/Library/Mobile Documents" directory, let alone anything underneath it. Is that like an iCloud thing or something?  I tend to avoid the Apple-supplied services when I can (I don't use iTunes either unless I can help it).
    As an update, as of about two days later this problem seems to have solved itself. Possibly sleeping and waking did something to it (though that seems unlikely given how many times I rebooted), or else there was just some long-*** kernel process that finally worked itself out.  But my system CPU is back down to normal and the cursor freezes are gone.
    ??? it is a mystery! ???

Maybe you are looking for