BuildProblem Script Updates

I have updated the build problem script to the point where it is suitable for general use. To begin using on a regular basis, add the following to ~/.bashrc:

export PATH=/home/noyesma/bin:$PATH

The script now automatically dumps all chombo files to /data/tests/[MODULE]/out on clover.

This requires setting up passwordless SSH for your account. The procedure for this is a follows:

  1. SSH into grass or alfalfa
ssh [username]@grass.pas.rochester.edu
  1. Create a secure key
ssh-keygen -t dsa

DO NOT change the default name of id_dsa

When it prompts for a passphrase, just press press enter. This will make the key passphrase-less.

  1. Change the private key permissions to be readable only by you.
chmod 600 .ssh/id_dsa
  1. Install the public key on your remote computer (For clover, the home directory is the same as grass so you don't need to SCP it).
scp .ssh/id_dsa.pub [username]@clover.pas.rochester.edu
ssh [username]@clover.pas.rochester.edu
cat id_dsa.pub >> .ssh/authorized_keys
rm id_dsa.pub

Comments

No comments.