LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Networking (https://www.linuxquestions.org/questions/linux-networking-3/)
-   -   access linux machines (https://www.linuxquestions.org/questions/linux-networking-3/access-linux-machines-247821/)

hariiyer 10-27-2004 04:26 AM

access linux machines
 
i have 2 computers both is having RH 7.3. HOW I WILL ACCESS files from one computer to others.

regards
hariiyer

n3tw0rk 10-27-2004 04:48 AM

you can use SAMBA http://us1.samba.org/samba/ (that will allow sharing between linux and windows machines as well) or NFS http://nfs.sourceforge.net/nfs-howto/ .

ody1 10-27-2004 12:14 PM

or you can use ssh and scp to copy files.


type ssh <host> -l user to login to the remote computer.

Here's how to upload a file

Example:

scp filename.jpg user@host:/path/to/upload

-------
and How to download...

Example:

scp [-options] <username>@<hostname>:<path>
<destination>

scp john@metal.com:foo.txt bar.txt
Copies a file
foo.txt from the network on your computer and saves it as bar.txt


All times are GMT -5. The time now is 03:10 PM.