Transfer data between RHEL and Solaris

Transfer Data between RHEL and Solaris

On SUN:

in /etc/dfs/dfstab file add
share -F nfs /export/home
then type:
/etc/init.d/nfs.server start

On RHEL:

to mount
type mount host:/export/home /mnt/sundisk

Or in /etc/fstab

host:/export/home /home/sundisk nfs defaults 0 0

Then type mount /home/sundisk

Or type mount -a
To make nfs start at boot type:

chkconfig nfs on

to share
in file /etc/exports add
/home/vnmr1 *(rw) <== rw to world
then type exportfs -ra <== to reread exportfs

other comands:
exportfs -a <== to export
exportfs -v <== to show

Similar Posts