Transfer from Madison: Difference between revisions

From T2B Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
To transfer files and keep their structure identical, use the following command on m-machines :
To transfer files from Madison to T2B and keep their structure identical, use the following command '''on m-machines''' :
  rsync -avP --no-implied-dirs --relative MADISON_USERNAME@data.icecube.wisc.edu:/data/DIRECTORIES/FILES /
  umask 0002 && rsync -avP --no-implied-dirs --relative MADISON_USERNAME@data.icecube.wisc.edu:/data/DIRECTORIES/FILES / && umask 0022


If you get an '''ssh_exchange_identification: Connection closed by remote host'''
* umask is used to set correct permissions for group (if not specified, other users won't be able to write in created directories !)
then connect to the t2 cluster adding the '''-A''' option, wich ''Enables forwarding of the authentication agent connection'' dixit man:
* MADISON_USERNAME@ is optional if it is the same as the T2B one
 
To avoid typing the password of the Madison server, connect to the T2 cluster adding the '''-A''' option, which ''Enables forwarding of the authentication agent connection'' (dixit man):
  ssh -A mshort.iihe.ac.be
  ssh -A mshort.iihe.ac.be

Latest revision as of 09:54, 20 January 2017

To transfer files from Madison to T2B and keep their structure identical, use the following command on m-machines :

umask 0002 && rsync -avP --no-implied-dirs --relative MADISON_USERNAME@data.icecube.wisc.edu:/data/DIRECTORIES/FILES / && umask 0022
  • umask is used to set correct permissions for group (if not specified, other users won't be able to write in created directories !)
  • MADISON_USERNAME@ is optional if it is the same as the T2B one

To avoid typing the password of the Madison server, connect to the T2 cluster adding the -A option, which Enables forwarding of the authentication agent connection (dixit man):

ssh -A mshort.iihe.ac.be