Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
titleUsing lftp to download
% lftp ftp.ecmwf.int
lftp ftp.ecmwf.int:~> set ftp:ssl-allow no
lftp ftp.ecmwf.int:~> user openifs
Password: <enter the password 

lftp openifs@ftp.ecmwf.int:/> cd src/openifs/40r1
lftp openifs@ftp.ecmwf.int:/src/openifs/40r1/> get oifs40r1v2.tar.gz
lftp openifs@ftp.ecmwf.int:/src/openifs/40r1/> exit


Note

The 'set ftp:ssl-allow no' command is crucial to allow lftp to work with the ftp server at ECMWF. It disables use of a secure connection.

Unpack OpenIFS source code

...