The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
Google UNIX.COM



View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #6 (permalink)  
Old 05-28-2006
grumpf grumpf is offline
Registered User
 

Join Date: May 2006
Posts: 95
To tranfer files you need an account on the other box ('remote').
All services requiere a running server on the other side. perhaps you have also one or more firewalls in you way, that is something i can not figure out from here but may cause the service to fail.

1. ftp - interactive program
usage: ftp remote
it ask for user and password you can use 'cd' to change directory on the remote machine and 'lcd' on your local box. use 'put filelocal' to send files to remote machine

2. scp - non interactive
scp filelocal user@remote:.
will copy the 'filelocal' into the home directory of 'user' on remote.

for both commands: read the man pages for more information
Reply With Quote