Back-up/Restore/NFS/File System Migration Lab --------------------------------------------------- Host A 1) # ufsdump 0uvf /dev/rmt/0 /export/home 2) # ufsrestore t 3) # newfs /dev/rdsk/c0t1d0s1 4) # fsck /dev/rdsk/c0t1d0s1 5) # umount /export/home 6) # mount /dev/dsk/c0t1d0s1 /export/home 7) # cd /export/home 8) # ufsrestore rvf /dev/rmt/0 9) # umount /export/home 10) # fsck /dev/rdsk/c0t1d0s1 11) # vi /etc/vfstab /dev/dsk/c0t1d0s1 /dev/rdsk/c0t1d0s1 /export/home ufs 2 yes - #!!!! This should be a modification of the current /export/home directory #!!!! entry in the vfs tab. Make sure the file does not contain any extra #!!!! white space 12) # mountall -l 13) # df -k #!!! Ensure that /export/home is mounted on c0t1d0s1 before #!!! continuing. 14) # tar cvf /export/home/expt.tar ./export/home 15) # vi /etc/dfs/dfstab share -f nfs -o ro /export/home 16) # cd /etc/init.d 17) # ./rpc stop 18) # ./rpc start 19) # ./nfs.server start 20) # dfshares #!!! You should now be sharing /export/home Host B 1)