LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   sending files over LAN (https://www.linuxquestions.org/questions/linux-newbie-8/sending-files-over-lan-55165/)

puk 04-15-2003 12:56 PM

sending files over LAN
 
which is the command for sending files from linux-box to linux-box over LAN?

protocol: TCP/IP
IPs: 192.168.0.1 to 192.168.0.2
btw: no x-window
:D

:newbie:

david_ross 04-15-2003 01:15 PM

Without mounting a drive - either ftp or scp.

scp is more secure so I would use that.

puk 04-15-2003 01:21 PM

thx, are there any pages, where I can find a howto or any else about this command???:scratch:

acid_kewpie 04-15-2003 01:37 PM

well the manpage of course. "man scp" for example.

FreakboY 04-15-2003 07:52 PM

david_ross:

how will u mount a directory from another machine... just
as u mention it! i'm curios about it...

laterz..

PromoteLinux 04-15-2003 07:53 PM

FTP
 
I normally use FTP, it's not as secure as SCP, but if it's your own private network, then it doesn't matter. Besides, not having to use encryption speeds things up too (save all the encryption processing).

1. Make sure you have FTPD installed on the server. If not, download the wu-ftpd server (my fav ftp server) and install it.

2. Make sure it's a running service. Use the following command for this:

ntsysv

3. On the client machine, make sure you have FTP installed. This is almost always installed, but you can check by issuing this command:

rpm -q ftp

4. On the client machine, issue this command:

ftp client_ip_address

If you need help with the FTP client, read the man page for FTP (man ftp)

david_ross 04-16-2003 12:43 PM

To mount a samba share:
mount -t smb //MACHINE/share /mnt/share


All times are GMT -5. The time now is 03:18 AM.