: Alternate diskless operation : Configuration : Common File Setup
Previous: Server Setup
Next: Building a DISKLESS Kernel

1.2.2. Common File Setup

Most of the necessary files used by a DISKLESS node can exist in a common file heirarchy to be shared by all nodes. This heirarchy can be created with the following script:


#!/bin/sh
#
mkdir /usr/rootfs
chmod 755 /usr/rootfs
mkdir /usr/rootfs/common
chmod 755 /usr/rootfs/common
mkdir /usr/swapfs
chmod 700 /usr/swapfs
cd /
find bin lkm sbin stand | cpio -pvdm /usr/rootfs/common
	  


: Alternate diskless operation : Configuration : Common File Setup
Previous: Server Setup
Next: Building a DISKLESS Kernel