You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've searched for a multicast file-transfer software that is easy to use and reliable and makuosan is by far the best I've encountered so far.
It works as intended but for my particular use-case it requires some extra setup that makes is harder to use. What I am looking for is something that could replace the following bash code:
What I usually do - using rsync
# Logged in on host1 I run:fortargetin host1 host2 host3 host4 host5 host6;do
rsync -a /some/path/bigfile ${target}:/destination/folder/bigfile_under_another_name
done
Things to note in this example:
The host sending the file is also part of the destination hosts
The file is being read from one path and transfered to a different path on all destinations
The source filename and destination filename may not be the same
What I currently do - using makuosan
So far I've managed to do the same with makuosan (although a much faster transfer) by manually logging in to each target node (ssh host1), starting makuosan -n -b /destination/folder, then on the sending node start makuosan -n -b /some/path and still on the sending node use msync bigfile.
This works but has 2 issues. The sending host doesn't receive the file and I have to rename the file afterwards on all destination hosts if it should exist under a different name.
Given all this, do you have any suggestions on better use makuosan to work as described above or do you see this as an interesting interface to implement on makuosan?
Thanks
The text was updated successfully, but these errors were encountered:
Dear Yasui,
I've searched for a multicast file-transfer software that is easy to use and reliable and makuosan is by far the best I've encountered so far.
It works as intended but for my particular use-case it requires some extra setup that makes is harder to use. What I am looking for is something that could replace the following bash code:
What I usually do - using
rsync
Things to note in this example:
What I currently do - using
makuosan
So far I've managed to do the same with makuosan (although a much faster transfer) by manually logging in to each target node (
ssh host1
), startingmakuosan -n -b /destination/folder
, then on the sending node startmakuosan -n -b /some/path
and still on the sending node usemsync bigfile
.This works but has 2 issues. The sending host doesn't receive the file and I have to rename the file afterwards on all destination hosts if it should exist under a different name.
Given all this, do you have any suggestions on better use makuosan to work as described above or do you see this as an interesting interface to implement on makuosan?
Thanks
The text was updated successfully, but these errors were encountered: