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

  • Mount Windows Share on RHEL

    In CLI    mount -t cifs //ntserver/dir -o username=user,password=pass /mnt/ntserver    In /etc/fstab    //ntserver/dir   /mnt/ntserver   cifs   credentials=/root/.smbpasswd,file_mode=0777,dir_mode=0777   0   0 Then create a file /root/.smbpasswd  with permissions set to 600    username=user    password=pass In /etc/hosts add IP address of ntserver.   

  • Intel e1000e Linux Driver

    Linux* e1000e Base Driver overview and installation   Using the e1000e Base Driver for Gigabit IntelĀ® Network Connections The e1000e driver supports PCI Express* Gigabit Network Connections except the 82575, 82576, 82580, and I350. Download e1000e here Overview Building and installation Command line parameters Speed and duplex configuration Additional configurations Overview The Linux base drivers support the 2.4.x…

  • RHEL 6 NFS

    Ensuring NFS Services are running on RHEL 6 The first task is to verify that the NFS services are installed and running on your RHEL 6 system. This can be achieved either from the command line, or using the graphical services tool. Begin by confirming that the NFS service is installed by running the following command from a…

  • Authentication Error with VNC

    Issue User is reciving a GUI pop-up messages that says the following, and asks for the root password at login: When logging into a VNC session as user the following message is received: Environment Red Hat Enterprise Linux 6 gnome-packagekit, several versions  Resolution Solution 1: Ensure that the system is properly registered with RHN/Satellite (Re)register…