![]() |
|
|
|
|
|||||||
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| FTP - To handle error while transferring files | mahalakshmi | Shell Programming and Scripting | 1 | 04-04-2007 12:56 AM |
| Transferring hidden files with scp | matrixmadhan | UNIX for Dummies Questions & Answers | 13 | 01-16-2007 12:00 PM |
| transferring files using ftp but mantaining the dates | 435 Gavea | Shell Programming and Scripting | 4 | 07-23-2006 08:48 AM |
| Get files from other computer on the network | janbanan | UNIX for Dummies Questions & Answers | 2 | 01-29-2006 03:06 PM |
| FTP session expiring when transferring files... Need some solution | aarora_98 | Shell Programming and Scripting | 4 | 12-13-2005 09:28 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
|||
|
transferring files to and from remote computer
Hi all,
i first have to ssh into my university account and then through there another ssh into my office computer, from my home computer. I have been trying to transfer files to and from with no such luck. How do i send a file from home to my office computer. Do I have to send it to my university account, then log in there then send it on to my office comp. Or is there a quicker way Thanks yogi |
| Forum Sponsor | ||
|
|
|
|||
|
The only suggestion is to use rsync -
Set up a directory on your university account that is kept in sync with one directory (tree) on the office computer. Then you can access the files directly from home. I have a similar situation. But because of quotas it became a pain to maintain, so I just keep everything on my work boxes in one directory tree - then copy it to a thumb drive right before I leave work. |
|
|||
|
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 |
|
|||
|
I think OP's work box is behind a firewall. Otherwise he would connect straight from home. Why would he want to do a "jump" like that otherwise.
The only other choice is to tunnel through from the outside. Which AFAIK requires specails oftware. |
|||
| Google UNIX.COM |