Overview - The procedure to create a JumpStart directory on a server involves:
Creating a directory on the server
Sharing the directory
Copying sample custom JumpStart installation files into the directory on the server
Follow this procedure to create a JumpStart directory on a server.
Log on and assume the role root on the server where you want the JumpStart directory to reside.
As root, at label admin_low
,
launch a terminal and create the JumpStart directory anywhere on the server.
# mkdir jumpstart_dir_path |
In this command,
Is the absolute path of the JumpStart directory.
For example, the following command would create the directory called jumpstart in the root file system:
# mkdir -p /jumpstart |
Share the directory.
For details, see "How to Share a File System".
Add the following entry:
share -F nfs -o ro,anon=0 jumpstart_dir_path |
For example, the following entry would be correct for the example shown in Step 2:
share -F nfs -o ro,anon=0 /jumpstart |
Share the file system.
For example,
# share /jumpstart |
Determine the next step based on the location of the Trusted Solaris image.
If You Want to Use The ... |
Then ... |
---|---|
Trusted Solaris CD in the local CDROM drive |
|
Trusted Solaris CD image on the local disk |
|
As root, at label admin_low
,
allocate the CDROM drive and mount it.
Do you want cdrom_n mounted: (y,n)? y |
See "To Allocate a Device" if you are unsure of the steps.
Change the directory to the mounted CD:
# cd /cdrom/cdrom0 |
As root, at label admin_low
,
copy the contents of the jumpstart_sample directory into
the JumpStart directory:
# cp -r Trusted_Solaris_7/Misc/jumpstart_sample/* jumpstart_dir_path |
For example, the following command would copy the jumpstart_sample directory into the JumpStart directory created in Step 2:
# cp -r Trusted_Solaris_7/Misc/jumpstart_sample/* /jumpstart |
Deallocate the CDROM drive.
See "To Deallocate a Device" if you are unsure of the steps.
You have completed creating a JumpStart directory on the server.
Continue with "Enabling Access to the JumpStart Directory".