From: Joshua A. <lu...@ln...> - 2003-06-19 19:23:37
|
On Thu, Jun 19, 2003 at 07:54:22AM -0700, rwillis wrote: > > I noticed that the following does not work; > 'bproc 0 ipcs' > Is this because bproc uses IPC calls? Let me know if others have the > same problem, or if it is just something that I am doing wrong, > (everything else works fine). > > Also, I thought that bproc would move shared object files over with > the executable, but this does deem to be working, at least with the .so > files that I am creating. I have to move them to the remote machines and > install them. Let me know if there is a way to fix this. There are two ways to get .so files on the nodes that I know of. The first is to use bplib to add the files to the nodes. This is useful when you have a program that needs a new .so, but needs to be done everytime the nodes are rebooted. A more perminant solution is to use the libraires plugin in /etc/beowulf/config. ex: # GM libraries /usr/lib/libgm.so* # PGI libraries /opt/pgi/linux86/lib/ New libraries listed in beowulf/config are not picked up by the nodes until bpmaster (I think) is restarted on the host, which is why a combination of bplib to get the lib out the first time and adding it to beowulf/config is how I usually push out a new library. Josh |