|
@@ -3,6 +3,18 @@
|
|
|
EC-Earth is a global coupled climate model. It is developed by a consortium of European research institutions.
|
|
|
The goal of this project is to adapt this model for our needs in TECLIM: install, run management, etc.
|
|
|
|
|
|
+### Important Notes
|
|
|
+
|
|
|
+**YOU MUST HAVE YOUR `~/.ssh/id_rsa.pub` FILE BEFORE STARTING TO WORK WITH GIT ON ZENOBE**.
|
|
|
+
|
|
|
+```
|
|
|
+mv $HOME/.ssh/config $HOME/.ssh/config_old
|
|
|
+cat config | sed -e 's/pbarriat/'$USER'/g' > $HOME/.ssh/config
|
|
|
+
|
|
|
+[ ! -f ~/.ssh/id_rsa.pub ] && ssh-keygen -t rsa
|
|
|
+ssh-copy-id -i ~/.ssh/id_rsa.pub gwcism.cism.ucl.ac.be
|
|
|
+```
|
|
|
+
|
|
|
## Install
|
|
|
|
|
|
First, clone the `pbarriat/ecearth_patch` repository and update your shell startup script to source the 'bashrc' file to add ecearth globals variables to your environment. For instance:
|
|
@@ -15,8 +27,6 @@ Then, checkout the EC-Earth SVN repository. For instance:
|
|
|
svn co https://svn.ec-earth.org/ecearth3/tags/3.2.2 ecearth_3.2.2
|
|
|
```
|
|
|
|
|
|
-> **YOU MUST HAVE YOUR `~/.ssh/id_rsa.pub` FILE BEFORE STARTING TO WORK WITH GIT ON ZENOBE**.
|
|
|
-
|
|
|
Final step, go to the `pbarriat/ecearth_patch` repository, open & adapt the `install.sh` script and run it:
|
|
|
```
|
|
|
cd ecearth_patch
|