A
A
Andrey Andryushchenko2017-06-22 14:11:28
linux
Andrey Andryushchenko, 2017-06-22 14:11:28

How to share a folder between machines on Linux?

There are two Linux machines (KDE Neon 5.10 and Linux Mint 18.1) connected to the same WIFi network. I need to transfer a large number of files from one machine to another. What is the best way to do this?

Answer the question

In order to leave comments, you need to log in

4 answer(s)
E
Eugene, 2017-06-22
@immaculate

tar cf - dir | ssh other_host tar xvf -
Something like this. Or rsync. Or scp.

A
Andrey Burov, 2017-06-22
@BuriK666

rsync

O
OnYourLips, 2017-06-22
@OnYourLips

sshfs, nfs

A
Alexey Cheremisin, 2017-06-22
@leahch

I just played with 9P, like this in 3 minutes
On a machine with a folder -

su -
yum install diod
diod -f  -n -e /myfolder

Host
su -
modprobe 9pnet
mount -t 9p -n remote-host /mnt \
    -oaname=/myfolder,version=9p2000.L,uname=root,access=user

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question