Reputation: 137
i'm using Ubuntu v11.04. How to set PVM's environment variable ?
in the handbook, it writes, "the easiest method is to set these variables in your .cshrc file", but i can't find any .cshrc file. i find cshrc.stub.
if anyone has ever used PVM?
Upvotes: 0
Views: 414
Reputation: 572
I've not used PVM, but the file that you're looking for depends on which shell you use. If you use csh, then .cshrc can be found in your home directory. Note that it's a hidden file so you'll need to do ls -a
to list it. If you use bash shell, then you should find .bashrc in your home directory.
To set an environment variable in csh, you'll use the setenv
command. For bash, it'll be export
.
Upvotes: 0