Difference between revisions of "LFTP tests"

From Lsdf
m
m
Line 1: Line 1:
= Tests=
 
{| class="wikitable"
 
|+ style="text-align: left;" | TransferMatrix to HPSS FUSE MOUNT
 
|-
 
! scope="col" | Client OS !! scope="col" | Direction !! scope="col" | #of proc/streams !! scope="col" | #of files !! scope="col" | lftp(MB/s) !! scope="col" | sftp(MB/s) !! scope="col" | scp(MB/s) !! scope="col" | rsync(MB/s)
 
|-
 
! scope="row" | LINUX || Upload
 
| 1 || 1 || 76.38 || 79 || 77 || 85
 
|-
 
! scope="row" | ||
 
| 5 || 5 || 268 || || ||
 
|-
 
! scope="row" | ||
 
| 12 || 15 || 317 || || ||
 
|-
 
! scope="row" | ||
 
| 15 || 15 || 330 || || ||
 
|-
 
!scope="row" | LINUX || Download
 
| 1 || 1 || 68 || 67 || 94 || 95
 
|-
 
!scope="row" | ||
 
| 5 || 1 || 213 || || ||
 
|-
 
!scope="row" | ||
 
| 12 || 1 || 176 || || ||
 
|-
 
!scope="row" | ||
 
| 15 || 1 || 301 || || ||
 
|}
 
 
 
= LFTP intro =
 
= LFTP intro =
   

Revision as of 20:08, 14 August 2016

LFTP intro

LFTP Documentation can be found here http://lftp.yar.ru/

Install lftp using your distribution package management tool

 yum install lftp
 sudo apt-get install lftp

Log in with your archive account

 lftp -u AAnnnn sftp://archive-sftp.lsdf.kit.edu
 Password:your secret password

Upload a local file(lfile) to a remote file(rfile):

 lftp>put lfile -o rfile

Upload (mirror reverse -R) a local directory(ldir) to a remote directory(rdir) using n processes:

 lftp>mirror -c -R -Pn ldir rdir

Download a remote directory using pget(nn streams) for every single file:

 lftp>mirror -c --use-pget-n=n rdir ldir