From NT to UNIX

Hi
I have a Java application developed on an NT platform.The front is JSP & the business logic is done by java. I want to run the same application on a UNIX machine.Rather i want to migrate all my code on to a UNIX server from my local NT PC. can anyone giude me doing it. I'm completely new to UNIX systems...
thanks in advance...
pp

Do you have to set up the UNIX server yourself, or is there someone else doing that? If it's you, then you'd better go and learn UNIX. There isn't enough room in this little box to teach you UNIX.
On the other hand, if it's someone else setting up the server, then they should be able to help you out in configuring the JSPs in the servlet container.

Similar Messages

  • How to delete file from application server(Unix)

    Hi All,
    Using the below code downloading a file from application server(Unix) to client machine. I want to delete the file from application server once it is downloaded to client
    We work on Forms 11.1.1.4.0 and Oracle DB 10g. Client machine are Windows 7.
    BEGIN
      IF webutil_file_transfer.AS_to_Client
      (clientFile => Name_In('global.g_file_name')
      ,serverFile => ls_AppServer_Loc)THEN
      message('Data exported Successfully');
      ELSE
       message('File download from Application Server failed');
      END IF;
    EXCEPTION
      WHEN OTHERS THEN
      message('File download failed: '||SUBSTR(sqlerrm,1,200));
      END;
    I have search for solution on OTN. Few suggested to use HOST.
    Can any one help me how to use Host() built_in to delete the file.
    Thanks,
    Maddy

    Can any one help me how to use Host() built_in to delete the file.
    Host('/bin/rm <complete file path>');

  • Hello, How do I tell sql+ to spool output file from windows to Unix server?

    Hello, How do I tell sql+ to spool output file from windows to Unix server?
    I am new to SQL+ and just learned how to spool the file. But file is saved in my local windows enviroment and since it's 2GB in size...I want to spool it directly to another remote unix server.
    Pls answer in detail... I have been to most of the thread and didn't see relevant answer to above question.
    Am I suppose to develope some script which FTP the spool file directly to the server I want to
    or
    i Have to use UTL_FILE Package ?
    Thanks for reply

    You may not be able to...
    SQL*Plus can only spool to the local machine. If you have mapped a directory on the Unix server from your Windows machine, you can specify that directory in your SPOOL command.
    You could telnet to the Unix server, run SQL*Plus there, and spool the file to a local (Unix) directory.
    If the Unix server is also the Oracle database server, you could use the UTL_FILE package rather than using SQL*Plus to spool a file.
    If the Unix server is also an FTP server, you could also FTP the file from your local machine to the server.
    Of course, I would tend to re-examine a requirement to regularly generate a 2 GB text file. It seems likely that there is a better way...
    Justin

  • Write blob data from database to unix server

    Hi all,
    I need to send the attachment file into the mail. I have a header form in which I have implemented Download/Upload functionality using Apex user guide. When ever a user fill all the entries and submit the form then some field information along with attachment I need to send to the user.
    I mean when ever user hit the submit button it should take blob data from my custom table tmp_downlod_files and send to the user as an attachment.
    I have searched the post and got lot information but not able to get succeed.
    I have implemented java stored procedure for sending automatic mail when user is submitting the form but what I need is to take blob content from database and send as an attachment.
    1: So I need to write blob content from custom table to unix server in some location and from there I need to attach that file.
    2: the java store which I have implemented for sending automatic mail is working and one argument is attachment which I am passing null for now. So mail is working how to write the file from database to unix server and send as an attachment.
    What I did for writing file from database to unix server:
    1:
    CREATE OR REPLACE PROCEDURE trx_blob_to_file (l_header_id IN NUMBER)
    IS
    BEGIN
    FOR rec_picture IN (SELECT ID
    FROM TMP.tpx_download_files
    WHERE header_id = l_header_id
    AND mime_type LIKE ('image' || '%'))
    LOOP
    DECLARE
    l_out_file UTL_FILE.file_type;
    l_buffer RAW (32767);
    l_amount BINARY_INTEGER := 32767;
    l_pos INTEGER := 1;
    l_blob_len INTEGER;
    p_data BLOB;
    file_name VARCHAR2 (256);
    BEGIN
    SELECT blob_content, filename
    INTO p_data, file_name
    FROM tpx_download_files
    WHERE ID = rec_picture.ID;
    l_blob_len := DBMS_LOB.getlength (p_data);
    l_out_file :=
    UTL_FILE.fopen ('/home/oracle/interfaces/out/upld',
    file_name,
    'wb',
    32767
    WHILE l_pos < l_blob_len
    LOOP
    DBMS_LOB.READ (p_data, l_amount, l_pos, l_buffer);
    IF l_buffer IS NOT NULL
    THEN
    UTL_FILE.put_raw (l_out_file, l_buffer, TRUE);
    END IF;
    l_pos := l_pos + l_amount;
    END LOOP;
    UTL_FILE.fclose (l_out_file);
    EXCEPTION
    WHEN OTHERS
    THEN
    IF UTL_FILE.is_open (l_out_file)
    THEN
    UTL_FILE.fclose (l_out_file);
    END IF;
    END;
    END LOOP;
    END;
    2: I have written a PL/SQL process and calling the above procedure on SUBMIT:
    DECLARE
    l_header_id NUMBER;
    l_filename VARCHAR2 (200);
    BEGIN
    SELECT header_id, filename
    INTO l_header_id, l_filename
    FROM tpx_download_files
    WHERE header_id = :p35_sr_header_id;
    trx_blob_to_file (l_header_id);
    END;
    But it is not writing the file from database to unix server.
    If I can get how to make working to write file from database to unix server then I will hopefully can send an attachment.
    3; I have given
    GRANT EXECUTE ON TPX_BLOB_TO_FILE TO PUBLIC.
    And
    GRANT EXECUTE ON UTL_FILE TO PUBLIC.
    Where I am doing wroung can anyone guide me or any other approach is appreciated.
    I am already late so I need soon. Please help.

    Hi all,
    I need to send the attachment file into the mail. I have a header form in which I have implemented Download/Upload functionality using Apex user guide. When ever a user fill all the entries and submit the form then some field information along with attachment I need to send to the user.
    I mean when ever user hit the submit button it should take blob data from my custom table tmp_downlod_files and send to the user as an attachment.
    I have searched the post and got lot information but not able to get succeed.
    I have implemented java stored procedure for sending automatic mail when user is submitting the form but what I need is to take blob content from database and send as an attachment.
    1: So I need to write blob content from custom table to unix server in some location and from there I need to attach that file.
    2: the java store which I have implemented for sending automatic mail is working and one argument is attachment which I am passing null for now. So mail is working how to write the file from database to unix server and send as an attachment.
    What I did for writing file from database to unix server:
    1:
    CREATE OR REPLACE PROCEDURE trx_blob_to_file (l_header_id IN NUMBER)
    IS
    BEGIN
    FOR rec_picture IN (SELECT ID
    FROM TMP.tpx_download_files
    WHERE header_id = l_header_id
    AND mime_type LIKE ('image' || '%'))
    LOOP
    DECLARE
    l_out_file UTL_FILE.file_type;
    l_buffer RAW (32767);
    l_amount BINARY_INTEGER := 32767;
    l_pos INTEGER := 1;
    l_blob_len INTEGER;
    p_data BLOB;
    file_name VARCHAR2 (256);
    BEGIN
    SELECT blob_content, filename
    INTO p_data, file_name
    FROM tpx_download_files
    WHERE ID = rec_picture.ID;
    l_blob_len := DBMS_LOB.getlength (p_data);
    l_out_file :=
    UTL_FILE.fopen ('/home/oracle/interfaces/out/upld',
    file_name,
    'wb',
    32767
    WHILE l_pos < l_blob_len
    LOOP
    DBMS_LOB.READ (p_data, l_amount, l_pos, l_buffer);
    IF l_buffer IS NOT NULL
    THEN
    UTL_FILE.put_raw (l_out_file, l_buffer, TRUE);
    END IF;
    l_pos := l_pos + l_amount;
    END LOOP;
    UTL_FILE.fclose (l_out_file);
    EXCEPTION
    WHEN OTHERS
    THEN
    IF UTL_FILE.is_open (l_out_file)
    THEN
    UTL_FILE.fclose (l_out_file);
    END IF;
    END;
    END LOOP;
    END;
    2: I have written a PL/SQL process and calling the above procedure on SUBMIT:
    DECLARE
    l_header_id NUMBER;
    l_filename VARCHAR2 (200);
    BEGIN
    SELECT header_id, filename
    INTO l_header_id, l_filename
    FROM tpx_download_files
    WHERE header_id = :p35_sr_header_id;
    trx_blob_to_file (l_header_id);
    END;
    But it is not writing the file from database to unix server.
    If I can get how to make working to write file from database to unix server then I will hopefully can send an attachment.
    3; I have given
    GRANT EXECUTE ON TPX_BLOB_TO_FILE TO PUBLIC.
    And
    GRANT EXECUTE ON UTL_FILE TO PUBLIC.
    Where I am doing wroung can anyone guide me or any other approach is appreciated.
    I am already late so I need soon. Please help.

  • Execute stored procedure from DOS or Unix Shell

    Hi, need ur help again,
    How to execute the stored procedure from DOS or Unix Shell?
    Thanks!

    sqlplus -s /NOLOG @your_sql_script.sql
    -- your_sql_script.sql :
    connect user/password@connect_string
    execute package.procedure (param1, param2, ...) -- for packages
    execute procedure (param1,...) -- for procedures
    exit ;this way you won't advertise your user/password on unix systems

  • Software or guide to port apps from nt to unix

    Hi to all. I'm trying to migrate a complete application from NT to UNIX (Solaris 8 - Sparc). I've downloaded the Solaris[tm] OE Implementation for Win32 API Version 1.1, and I think it will be useful for my purposes but, is there anybody who knows if exists a software to migrate an app automatically from NT (Visual C++ 6) to UNIX?
    I saw a site the last time that offered a Visual C++ 6 plugin that do the job but, I couldn't find it again.
    Any help will be appreciated a lot...
    Thanks in advance,
    Juan Pablo
    Software Engineer

    Hi xeonv2,
    Please contact our chat support: http://helpx.adobe.com/contact.html .
    Regards,
    Romit Sinha

  • Deploying froms from NT to unix

    hi
    i have created custom forms in form 6i under NT. now i want to deploy that forms to unix.
    i have created fmx file in NT and FTP(binary mode) it to unix. when i tried to open it says frm-40031 not a forms runtime files.
    will just copying fmx file from NT to unix work or i need to recompiling the fmb file again in unix.
    thanks & regds
    mahesh
    null

    The .FMB file will need re-compiling into an .FMX on the target platform. There is a command-line version of the Forms compiler, so you could write a shell script to automate the re-compilation process.
    null

  • Run Hot bkup from a generic Unix script

    I want to run the hot bkup from a current Unix script but not sure what i to be changed because i'm very new to Unix scripting.
    Please help.
    ## script -s <sid> -b <hot/cold> -d </backup/destination directory>
    ## Critical Env. Variables Verify CNTLFILE Directory File !!!
    Setup()
    export CNTLFILE=/opt/app/oracle/dba/cntl/backupcntl.sh
    if [ ! -f $CNTLFILE ]
    then
    echo "-- ERROR: CNTL FILE $CNTLFILE does not Exist !!!"
    echo "-- ERROR: CNTL FILE $CNTLFILE does not Exist !!!" > /tmp/backuperror
    echo "-- Backup Aborted !!" >> /tmp/backuperror
    mailx -s "Backup Fail for $ORACLE_SID" $DBA_MAIL $DBA_PAGE < /tmp/backuperror
    exit 1
    else
    if [  -f $CNTLFILE ]
    then
    . $CNTLFILE
    fi
    fi
    Initialize()
    export USAGE="`basename $0` -s <ORACLE_SID> -b <hot|cold>"
    export USAGE2=`basename $0`
    export _PROCESS=`date +D%m%d%H%M`
    export HOST=`uname -n`
    export MMDD=`date '+%m/%d/%y'`
    export HHMM=`date '+%H:%M'`
    export CURTIME="$HHMM $MMDD"
    export DEST_BASE=${BASE}/${ORACLE_SID}
    export DBASE_BKUPDEST=$DEST_BASE/${BACKUP_TYPE}backup
    export DBASE_BKUPTEMP=$DEST_BASE/${BACKUP_TYPE}backup/${_PROCESS}
    export BACKUPTEMP_ARCHIVE=${DBASE_BKUPTEMP}/ARCHIVE
    export DBASE_ERROR_LOG=${LOG_DIR}/${ORACLE_SID}.${BACKUP_TYPE}backup.$_PROCESS.errlog
    export DBASE_BKUP_LOG=$LOG_DIR/${ORACLE_SID}.${BACKUP_TYPE}backup.$_PROCESS.log
    export COMMAND_DIR=${DEST_BASE}/sql
    export recovery=$DBASE_BKUPTEMP/recovery_readme.doc
    export FILE_COMPRESS=${BACKUP_TYPE}-${ORACLE_SID}-${_PROCESS}.tar.Z
    export archivetar=${DBASE_BKUPTEMP}/${ORACLE_SID}.${_PROCESS}_archive_logs.tar
    export db_archmode=/tmp/db_archmode_${ORACLE_SID}.lst
    export db_getarchlog=/tmp/db_getarch_${ORACLE_SID}.lst
    export db_getarch2log=/tmp/db_getarch2_${ORACLE_SID}.lst
    export db_openlog=/tmp/db_openlog_${ORACLE_SID}.lst
    export db_data_files=/tmp/db_datafiles_${ORACLE_SID}.lst
    export db_tar_files=/tmp/db_base_files_${ORACLE_SID}.lst
    export db_controlfile=/tmp/db_control_${ORACLE_SID}.lst
    export db_hotbkp_log=/tmp/db_hotbackup_${ORACLE_SID}.lst
    export db_hotbkp_log2=/tmp/db_hotbackuperr1_${ORACLE_SID}.lst
    export db_hotbkp_log3=/tmp/db_hotbackuperr2_${ORACLE_SID}.lst
    export db_ftperrtmp=/tmp/db_ftperrtmp.log
    export db_ftplogtmp=/tmp/db_ftplogtmp.log
    export db_ftponelog=/tmp/db_db_ftpone.log
    rm $DBASE_ERROR_LOG
    rm $DBASE_BKUP_LOG
    rm $db_openlog
    rm $db_archlog
    rm $db_data_files
    rm $db_tar_files
    rm $db_controlfile
    rm $app_statlog
    rm $db_hotbkp_log
    rm $db_hotbkp_log2
    rm $db_hotbkp_log3
    rm $COMMAND_DIR/backup_command.sql
    rm $db_ftperrtmp
    rm $db_ftplogtmp
    rm $db_ftponelog
    ## Reset CURTIME
    ResetCURTIME()
    export MMDD=`date '+%m/%d/%y'`
    export HHMM=`date '+%H:%M'`
    export CURTIME="$HHMM $MMDD"
    ## Get Tablespace for Hotbackup
    Gethottblspace()
    ${ORACLE_HOME}/bin/sqlplus -s "/nolog" << EOF
    connect / as sysdba
    set echo off feedback off heading off pagesize 0 trimspool off
    spool $COMMAND_DIR/tablespace
    select a.tablespace_name || ' ' || file_name
    from dba_tablespaces a, dba_data_files b
    where a.tablespace_name = b.tablespace_name
    order by a.tablespace_name, file_name;
    select 'CONTROLFILE '||name from v\$controlfile where rownum = 1;
    spool off
    exit
    EOF
    ## Begin Hotbackup
    BeginHotbackup()
    rm $COMMAND_DIR/hold_tablespace
    rm $COMMAND_DIR/tablespace.lst
    echo "-- Begin Hot Backup ...." >> $DBASE_BKUP_LOG
    ${ORACLE_HOME}/bin/sqlplus -s "/nolog" << EOF
    connect / as sysdba
    set echo off feedback off heading off pagesize 0 trimspool off
    @$COMMAND_DIR/backup_command.sql
    echo "-- Hot Backup completed " >> $DBASE_BKUP_LOG
    set pages 1000 lines 132;
    column recover heading "Requires|Recovery?" format a10;
    column time heading "Date Of|Last Backup" format a12;
    spool $COMMAND_DIR/verbackup.lis
    select substr(tablespace_name,1,20) "Tablespace Name",substr(name,1,45) "Name",
    a.status "Status",
    decode(fuzzy,'YES','BACKUP','NORMAL') "Mode" ,
    recover, time
    from v$datafile_header a, v$backup b
    where a.file#=b.file#
    order by tablespace_name,name;
    spool off
    exit
    EOF

    Your script defines functions which will enable you to invoke the backup. But this script only defines functions. You need to invoke them for your backup to work. The sample invocation can look like this (CODE NOT TESTED!!!):
    Setup
    Initialize
    Gethottblspace
    BeginHotbackup
    Best Regards
    Krystian Zieja / mob

  • Ora-25215 from windows to unix - please help

    I have successfully set up streams replication from unix to windows -- it works beautifully!
    However, when I set up streams with a different set of tables going from windows to unix, I get the propagation error, "ora-25215: user_data type and queue type do not match"
    I have been all over metalink and the internet trying to find a solution or explanation, and there is very little out there. I found a dozen hits on my metalink search on ora-25215 and one of them was "How to resolve ora-25215..." Alas, it really doesn't address a fix for simple streams, it goes into setting up a payload, etc...
    Like I said, my unix to windows works like a charm, but unix to windows doesn't. By the way, my windows is 2k and my unix is solaris 8. Anyone have any ideas for what the problem is?
    Thanks,
    jimmy

    Jimmy,
    Make sure your propagation is configured correctly. It is also possible to get this error in Oracle9iR2 if you use the wrong queue name or schema when configuring propagation.
    Janet

  • "Open file..." dialog from Application Server (Unix)

    Hi all you experts.
    I have a simple ABAP program that reads input files from Application Server (Unix), at this moment the users have to enter manually the name of the file(s) in a parameter text field. I would like to add value to this program by helping the user select the file using an "Open file..." dialog or something similar that enable them to chose the file on behalf of writing the complete name (including the path).
    Do you have any idea about how to implement it?
    Many thanks in advance.

    Hi,
    Try function module F4_DXFILENAME_TOPRECURSION or F4_FILENAME_SERVER (for a specific directory) within the at value-request event for the filename.
    Cheers,
    Darren

  • Printing several copies when we only want only one.from SAP to UNIX.

    Hi, we have a problem when printing from sap to unix queue.....
    There is a program in abap that only indicates to send one printing .. but in unix we see that the queue sends sometimes 3, 4, 5 or two copies of the same printing.
    do you know if there is a note in SAP that can solve this issue?
    a test: when we send only one copy from sap (spad - sp01), in unix we saw 5:
    u2665$ while true
    > do
    > lpstat TEST1022
    > sleep 1
    > done
    no entries
    no entries
    no entries
    no entries
    TEST1022-767 USER1 priority 0 Apr 6 15:15 from SERVER1 on TEST1022
    005xud4T.PR3 5 copies 34178 bytes
    no entries
    no entries
    no entries
    no entries
    thanks in advance.
    DM

    Hello
    The flag to pass copies may be set as follows in SPAD:
    SPAD -> Output Device -> <Output Device name> -> Output Attributes ->
    You can refer to SAP note below for more information:
    3748 - Multiple print does not work everywhere
    Regards.

  • Migrating database from windows to unix

    Can anyone, please suggest me some reading on migrating a database from windows to unix? Thanks

    Yes an export import is the most likely migration path you have. There is another option. You may install, just temporarily a 10g environment on the windows platform, then upgrade using the DBUA from 8i to 10g on the same platform. This way you will make sure you don't miss a piece of data during the migration process.
    Once your database is at the 10g platform, you may proceed with a transport tablespace from 10g win to 10g unix. Violà, your database will be on the 10g platform.
    Next, deinstall the windows temporary 10g installation.
    Notes:
    1. Make sure your 8i db is at the latest patchset available at 8i (8.1.7.4.0)
    2. Define which unix platform you are referring to. It's because of endian issues.
    ~ Madrid.

  • ABAP Adaption while migrating from Windows to Unix

    Dear All,
    I am working on a project where SAP system has been migrating from Windows to Unix os. Because of this all ABAP which are using Files, Operating system command has to be adapted as well.
    How can I get such a list of ABAP objects which will be affected by this migration.
    Example I can look for Dataset command, External OS Commands and so on..
    Please advice if there is a straight forward way to get such a list?
    Your prompt response would be higly appreciated.
    Thanks in Advance
    Hemendra

    Hello -
    You need to visit URL - System Copy and Migration
    Also refer to SAP note 547314, and the System Copy Guide for your SAP
    release on SAP Service Marketplace :
    http://service.sap.com/instguides -> <SAP System> -> <Release>
    ->Installation.
    Regards.

  • Upload pdf file from frontend to unix server

    Hi all,
    I want to upload a file from frontend to unix server.
    The following coding transfers the file to the unix server. But the file is corrupted.
    Any ideas whats wrong?
    TYPES: BEGIN OF t_data_tab,
             line TYPE x LENGTH 256,
           END OF t_data_tab.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
      CALL METHOD cl_gui_frontend_services=>file_open_dialog
        CHANGING
          file_table = lt_filetable
          rc         = lv_rc.
      READ TABLE lt_filetable INTO p_file INDEX 1.
      lv_filename = p_file.
      CALL METHOD cl_gui_frontend_services=>gui_upload
        EXPORTING
          filename = lv_filename
          filetype = 'BIN'
        CHANGING
          data_tab = lt_data_tab
        EXCEPTIONS
          OTHERS   = 4.
      OPEN DATASET p_unix FOR OUTPUT IN BINARY MODE.
      IF sy-subrc NE 0.
        EXIT.
      ELSE.
        LOOP AT lt_data_tab INTO ls_data_tab.
          TRANSFER ls_data_tab TO p_unix.
          IF sy-subrc NE 0.
            CONTINUE.
          ENDIF.
        ENDLOOP.
        CLOSE DATASET p_unix.
      ENDIF.
    regards

    Found solution by myself.
    Upload
    REPORT  z_upload_to_unix.
    TYPES: ESP1_BOOLEAN LIKE BAPISTDTYP-BOOLEAN.
    DATA: i_ftfront TYPE string,
          i_ftappl LIKE  rcgfiletr-ftappl,
          i_flg_overwrite TYPE  esp1_boolean,
          l_flg_open_error TYPE  esp1_boolean,
          l_os_message TYPE  c.
    i_ftfront = '<frontendpath>\test.pdf'.
    i_ftappl = '<unixpath>/test.pdf'.
    CALL FUNCTION 'C13Z_FILE_UPLOAD_BINARY'
      EXPORTING
        i_file_front_end   = i_ftfront
        i_file_appl        = i_ftappl
        i_file_overwrite   = i_flg_overwrite
      IMPORTING
        e_flg_open_error   = l_flg_open_error
        e_os_message       = l_os_message
      EXCEPTIONS
        fe_file_not_exists = 1
        fe_file_read_error = 2
        ap_no_authority    = 3
        ap_file_open_error = 4
        ap_file_exists     = 5
        OTHERS             = 6.
    DOWNLOAD:
    REPORT  z_download_from_unix.
    TYPES: ESP1_BOOLEAN LIKE BAPISTDTYP-BOOLEAN.
    DATA: front TYPE string,
          i_file_appl LIKE rcgfiletr-ftappl,
          i_file_overwrite TYPE  esp1_boolean,
          e_flg_open_error TYPE  esp1_boolean,
          e_os_message TYPE  c.
    i_file_appl = '<unixpath>/test.pdf'.
    front = '<frontendpath>\test.pdf'.
    CALL FUNCTION 'C13Z_FILE_DOWNLOAD_BINARY'
      EXPORTING
        i_file_front_end    = front
        i_file_appl         = i_file_appl
        i_file_overwrite    = i_file_overwrite
      IMPORTING
        e_flg_open_error    = e_flg_open_error
        e_os_message        = e_os_message
      EXCEPTIONS
        fe_file_open_error  = 1
        fe_file_exists      = 2
        fe_file_write_error = 3
        ap_no_authority     = 4
        ap_file_open_error  = 5
        ap_file_empty       = 6
        OTHERS              = 7.
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

  • Deleting the data from logical file/unix file

    Hi all.
        I need to delete the all the data from logical file (application server file/unix file).But I dont want to delete the logical file ( only data in the logical file should be deleted, i.e making file empty)
    Thanks in advance.
    Cheers.
    sami

    Hi Sami,
    Refer thsi document https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/4d7aeb7d-0c01-0010-fa8a-a4a8e8968a93.
    Regards,
    Flavya

  • Can't import photos from camera to UNIX server in Mavericks

    We have a mixed network in our office with a Windows 2008 server and a UNIX server. Before Mavericks, I was able to connect a camera or my iPhone to my MacBook Pro and download jpg files to either server. Since the upgrade to Mavericks, the files are transferred ok to the Windows server, but end up as 0k files on the UNIX box. Using one of the older computers running Snow Leopard, the photos download just fine.
    If I use Image Capture to transfer direct from the camera to the UNIX box, I get no error mesage, but 0k files.
    If I download to the Mac and then copy/paste to the UNIX box, I get the following error message, and no file transfer at all.
    The Finder can’t complete the operation because some data in “P1050238.JPG” can’t be read or written.
    (Error code -36)
    Anybody any idea what is happening, and how to solve this issue?

    That's the latest version.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen. Click the Clear Display icon in the toolbar. Then take the actions that you're having trouble with. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name, may appear in the log. Anonymize before posting.

Maybe you are looking for

  • 23.97 frame rate

    Hi, There is no setting for 23.97 in Flash Media Live Encoder. Is this what is generated when the frame rate is set to 24? Thanks. - Joel

  • Compensation Planning save Button On Portal

    Hi, I want to know when the save button is clicked on Compensation Planning worksheet in MSS Portal, what Function Module ,BADi or BApi is called at the backend and also where is the Assignment on the config side for this save functionality on the wo

  • My ipod scroll doesn't work at all. how do i fix it? do i have to send it in? how much would that cost?

    My ipod nano 4th gen. scroll doesn't work at all. how do i fix it? do i have to send it in? and how much would it cost?

  • IPhoto update 7.1.2 corrupted program

    I updated my Macbook just before I left on holiday. Lo and behold, iphoto will not run at all. I'm out of the country with no system discs. I do have a 'previous system' from before the update (done at the apple store) but cannot find iPhoto on it. I

  • WRT310N Completely stopped working.

    Hi, I have a WRT 310N Cisco router and it has completely stopped working. I cannot connect via Ethernet or Wireless with it, I bought this router a little over a year ago and it hasnt worked in about 5 months. I recently went out to buy another route