Updates to Microwulf Configuration Notes

  1. DHCP. The latest dhcp version is dhcp3-server, so change the line:
         sudo apt-get install dhcp 
    
    to
     
         sudo apt-get install dhcp3-server
    
  2. TFTP. The tftpboot directory now has subdirectories, so change the line:
         sudo chmod 777 /tftpboot
    
    to
         sudo chmod -R 777 /tftpboot
    
  3. NFS. The default NFS configuration has changed, so in order for the slave nodes to mount /home, do the following steps on each slave node:
    1. install nfs-common, and
    2.  
    3. add the line:
           iface eth0 inet manual
      
      to the file /etc/network/interfaces.
    4.  
    5. Restart the NFS server using the command:
              sudo /etc/init.d/nfs-kernel-server restart
      
      instead of /etc/init.d/nfs restart.
Thanks to ZhuanLiu from the Kunkunguo group of the College of Materials and Engineering at Hunan University for providing these updates.

Joel Adams > Research > Microwulf > Sys > Updates count