View Single Post
  #1   (View Single Post)  
Old 24th June 2009
syrushcw syrushcw is offline
Port Guard
 
Join Date: May 2008
Posts: 17
Default Diskless Cluster

I'm working I'm setting up FreeBSD 7.2 Beowulf diskless cluster with about 10 nodes. I followed the FreeBSD Handbook chapter 31.7 Diskless Operation and everything works up until "31.7.2.7.1 Using make world to populate root" I run the following script.
Code:
#!/bin/sh
export DESTDIR=/tftpboot
mkdir -p ${DESTDIR}
cd /usr/src; make buildworld && make buildkernel
cd /usr/src/etc; make distribution
making distribution the first error I got was for master.passwd which I had to manually copy into /tftboot/etc Then the next error was hcsecd.conf Followed by
Code:
bluetooth.device.conf devfs.conf pccard.conf periodic.conf rc.conf
*** Error Code 64
So I copied those conf files into /tftpboot/etc/defaults
Does anyone know why it is hanging at these conf files or anything I can do for I don't have to manually copy these conf files every time it hangs?
Thanks
Reply With Quote