linuxfile-transfernet-use

alternative for net use in Linux


I am currently working on file transferring system from one server to another one in Linux. I'm still a novice coder and new with Linux. I found that in Window we can actually use net use to connect a server to another server something like:

net use destination_server/user:username password

Is there a way, we can apply the same concept in linux? Would really appreciate the help, Thanks.


Solution

  • You may use ssh but remote server should have ssh server installed.

    example command :

    ssh username@destination_server
    

    Other alternatives :