An NFS directory is shared by a SPARC server.
Utilizing a Samba application, it is not a problem to link a folder shared by an MS-Windows server.
But, it is hard to link a directory shared by an NFS server on Unity.
What should I do to link?
An NFS directory is shared by a SPARC server.
Utilizing a Samba application, it is not a problem to link a folder shared by an MS-Windows server.
But, it is hard to link a directory shared by an NFS server on Unity.
What should I do to link?
Not really. First you need to install the package nfs-common:
If the nfs server is already set, you need to add this line on the
/etc/exports
to allow your client to access:Replace
192.168.1.x
by your client's IP.I guess this step can be done by the GUI on your Sparc server.
On your client, just need to mount your share now:
Temporary:
Permanent: Add a line in your
/etc/fstab
:This time
192.168.x.x
must to be replace by the IP of your server. You can find lots of tutorial on the web to install & configure nfs...