This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

transfer file to Linux c6x using Winscp

Hi to all

i try to send/receive file to/from Linux c6x (on c6678 EVM) using Winscp.i can connect to EVM by ftp protocol and transfer file to /var/local directory of linux c6x (check by telnet) but directory list in winscp is empty and i can't view filesystem or transfer file from Linux c6x to my PC

any body can help me how to monitor filesystem and transfer file to PC using  Winscp , filezilla ,... ?

how can i using sftp protocol to transfer file to Linux c6x ?

thanks

Ebi

  • Hello,

    I am not aware with Winscp but could you try Ctrl+O:

    Ctrl+O Display bookmark window.
    winscp.net/.../ui_commander_key


    BR
    Margarita
  • Can you please try with commands instead of trying with GUI mode ?
    Try to connect from Linux host to your Linux C6x (C678)
  • Hi 

    thanks for your replay and sorry for replaying late (i was out of office !) 

    open directory not work and report error

    Best Regards

    Ebi

  • Hi 

    thanks for your replay

    i try with ftp:

    "put" and "get" to /var/local work correctly but i can't "put" file to other directory !

    i can't use "ls" to view files

    thanks

    Ebi

  • i success to resolve problem by change /etc/inetd.conf

    from:

    ftp stream tcp nowait root /usr/sbin/ftpd ftpd /var/local -w

    to:

    ftp stream tcp nowait root /usr/sbin/ftpd ftpd / -w

    i can view list directory and access to filesystem !

    ebi alinejad said:
    how can i using sftp protocol to transfer file to Linux c6x ?

    anybody have experience on this?

    thanks

    Ebi

  • Hi 

    ebi alinejad said:
    how can i using sftp protocol to transfer file to Linux c6x ?

    i success to build dropbear SSH server and openSSH sftp-server for Linux c6x

    important point :

    crypt() function exist in libcrypt.so and package build without compile error but in runtime crypt() return NULL and errno return 38 (ENOSYS) , in this condition we can't login and always receive "access denied"

    after debug source code , seem crypt() function in libcrypt.so.0 is dummy (gcc-c6x-uclib/libcrypt/crypt_stub.c) 

    according to this link libcrypt.so not functional :

    Darren,
    
    Could you try static library instead? One of my colleague has done a
    string on the .a file and it was showing up the crypt() function.
    The dynamic libraries are not fully functional.
    
    Murali Karicheri
    Software Design Engineer
    Texas Instruments Inc.
    Germantown, MD 20874

    after add md5.c des.c crypt.c and modify dropbear Makefile problem resolved :)
    (i don't know why this shared library is dummy ???)

    i hope this post useful for Linux c6x users

    thanks
    Ebi