Sunday, January 25, 2015

nfs and CIFS

On server
1. export your share to other hosts
# cat >/etc/exports
/opt/share *(rw,sync)
# service nfs reload
# exportfs -->> verify your share is exported to other hosts

On client
1. Get the share for this system from remote server
# showmmount -e nfsserver
2. Create mount point
# mkdir /mynfs
3. Mount your remote share
# mount nfsserver:/sharename /mnt

=====================
CIFS
On your windows machine
1. Create a directory and share it

On your linux Machine
1. Install samba client
2. List the windows share
[root@localhost html]# smbclient -U admin -L 192.168.0.144
Enter admin's password:
session request to 192.168.0.144 failed (Called name not present)
Domain=[ADMIN-HP] OS=[Windows 7 Professional 7601 Service Pack 1] Server=[Windows 7 Professional 6.1]
 Sharename       Type      Comment
 Users           Disk     
3. Mount the share
# mount -o username=admin //192.168.0.144/Users /mnt
 

No comments:

Post a Comment