Luv
Luv

Reputation: 5451

Transfer of file from one machine to another machine

There are 2 machines on a network on which GUI is not installed to save the memory. Transfer a file from 1 such machine to another similar machine.

Possible methods I think could be 1. If we can the other computer on the network, we can put the items into a "shared" folder (or making an existing one "shared'). 2. Using the ftp protocol on the command line and connecting to one of the machines acting as ftp server and downloading files from that using command 'get' to download the file 3. Create a TCP connection across the two machines. One machine which is having the file will read it and write it to the socket and another one will read it from the socket.

Could there be more solutions for this?

Upvotes: 0

Views: 703

Answers (1)

Spidey
Spidey

Reputation: 2589

The usual solution is to use SCP to transfer files using a SSH connection.

Upvotes: 1

Related Questions