So I am running a parallel c++ program by sending jobs from an Ubuntu machine to remote hosts (also Ubuntu), the command line I use on the terminal is something like:
mpirun -np 4 --host host1,host2 program.exe
and then the next line on the terminal requests the password for both hosts at the same time:
noob@host1's password: noob@host2's password:
And this is causing me some problems. Is there a way to force the terminal to request my passwords one by one?