Table of Solaris2.x files and their Solaris1.x equivalents?
SunOS 4.x file SunOS 5.x file
/etc/fstab /etc/vfstab
/etc/exports /etc/dfs/dfstab
/etc/printcap None
/etc/fbtab /etc/logindevperm -- available in SunOS 5.3
/etc/rc.local /etc/rc3.d/S99local -- See note 1.
Note 1: Here is a template file for /etc/rc3.d/S99local.
#!/bin/sh
state=$1
case $state in
# Any applications or daemons you want to start.
'start')
echo "starting local apps"
;;
# Any applications or daemons that need to be shutdown gracefully.
'stop')
echo "Stopping local apps"
;;
esac
You may need to put the "kill" script in /etc/rc2.d/K99local but it
is not really required.
Go to the index
previous
next