transferring files to and from remote computer


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers transferring files to and from remote computer
# 1  
Old 05-26-2006
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
# 2  
Old 05-26-2006
What OS(es)?
# 3  
Old 05-27-2006
Sorry,
my home and office has fedora core 4 running, and the university one is unix.
# 4  
Old 05-27-2006
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.
# 5  
Old 05-27-2006
Thanks.

I really have no idea how to do any of that, as I have just started using unix. But at least I know the what to read up on. I'll let you know how i get on.

Yogi
# 6  
Old 05-28-2006
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
# 7  
Old 05-28-2006
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.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

Remote access computer system as a whole not just desktop with GUI

Hi All, I've been looking at various options at administering several servers remotely like: - VNC (don't like the lax security of 8 characters max for a password) and - NX (awesome piece of kit but still limited to a per desktop viewer)... What I'm looking for is a GUI that... (7 Replies)
Discussion started by: ASGR
7 Replies

2. Shell Programming and Scripting

Transferring files to directories

I have a large number of files with file names of the format iv.epoz.hhe.d.2018.028.000000.sac iv.epoz.hhn.d.2018.028.000000.sac iv.epoz.hhz.d.2018.028.000000.sac iv.epoz.hhe.d.2018.029.000000.sac iv.epoz.hhn.d.2018.029.000000.sac iv.epoz.hhz.d.2018.029.000000.sac... (4 Replies)
Discussion started by: kristinu
4 Replies

3. Shell Programming and Scripting

Is it possible to create 10GB file in Linux and transferring the file to other remote server

Hi folks, Is it possible to create 10GB file in linux and transferring the file to other remote server? Regards, J (3 Replies)
Discussion started by: scriptscript
3 Replies

4. UNIX for Dummies Questions & Answers

Copying from remote SunOS to local Windows 7 computer

Can someone please help me with copying from remote computer to local computer? I have Winscp installed but for some reason i can seem to get into the server using winscp. I am currently logged on to the server, so its not a case of remote host unavailable. I really am not sure if the syntax... (2 Replies)
Discussion started by: dollypee
2 Replies

5. Shell Programming and Scripting

Script for transferring files

Hi Guys, I have to transfer a few files in my system . The commands to be used are as follows . Will it be possible to send the output of the following in the form of a mail . cd /export/home/teja ls -lrt Quote.java* mv Quote.java Quote.java.20121023 cp /tmp/Quote.java . ls -lrt... (2 Replies)
Discussion started by: Ravi_Teja
2 Replies

6. UNIX for Dummies Questions & Answers

Transferring files Permission issues in remote box

Hi, I have a directory 'data' which is a symbolic link to /var/opt/store/rawdata/appname on a remote box. I am not able to SFTP some files from my local box to this dir. in the remote box. Also I am not able to copy or move the files in the robot id home dir. in remote box to this data dir... (2 Replies)
Discussion started by: vharsha
2 Replies

7. UNIX for Advanced & Expert Users

currenlty logged in user on remote computer

Hello everyone Does anyone know, if there is a command that tells you who is logged in on remote host? I'm ssh-ing as root to the remote host and then run whoami but that doesn't tells me who is logged in that particular computer instead shows my remote login. Is there a way to do that?... (2 Replies)
Discussion started by: goude
2 Replies

8. UNIX for Advanced & Expert Users

loggin remote computer as a super user.

hello all, can i loggin remote computer as a super user(i know root user/passwd) and change his access controlle list. if yes please tell me how to do it, i am new to linux. thank you. (6 Replies)
Discussion started by: zius_oram
6 Replies

9. Shell Programming and Scripting

Access a remote computer using perl

Dear all, Where can i find documentation on how to access a remote computer using a perl script? I search to the internet but i can not find something straightforward to this issue. Which is the easiest way to do that? What i would like to do is to access a remote computer access a directory... (5 Replies)
Discussion started by: chriss_58
5 Replies

10. Shell Programming and Scripting

copying files from remote computer

hi, i want to copy files from a remote computer in a network to a specific directory on my PC. ( script ) Forexample , IP of the remote PC is 172.16.5.24 login:aaaa Passw:123 /folder1/file1.txt to my pc folder /fd/awa.txt kinldy help Thanks (2 Replies)
Discussion started by: krabu
2 Replies
Login or Register to Ask a Question