Share a Folder in Novell Linux Server 9

Need to share a folder in Novell Linux Server 9 and I want to see it from AIX machine ... (Read, Write, Delete) ... like file sharing with 2 Windows PC´s ...
What is the minimal requirements for do it ??

You can use nfs:

add this line to /etc/exports on the linux computer (or on the AIX one, but the syntax MAY be different - don't know):

/ 192.168.1.1(rw,no_root_squash)

(note the space between the slash and the number)

("/" is the mounted partition that is being shared, "192.168.1.1" is the ip address of the PC where it can be mounted, aka the other machine, and the rest allows for full access to it from that other computer)

Restart the nfs daemon (service) on that machine (possibly with "service nfs restart"). If nfs is loaded upon boot, simply reboot (assuming you don't know how to restart the daemon).

Now, on the other computer, mount it:

# mkdir /mountpoint

(mkdir line only required the first time)

# mount 192.168.1.1:/ /mountpoint

(note the space between the slashes)

Good luck.

Related:

Have a Linux Problem
Linux Forum - Do you have a Linux Question?

Linux Books
Linux Certification, System Administration, Programming, Networking Books

Linux Home: Linux System Administration Hints and Tips

(c) www.gotothings.com All material on this site is Copyright.
Every effort is made to ensure the content integrity.  Information used on this site is at your own risk.
All product names are trademarks of their respective companies.
The site www.gotothings.com is in no way affiliated with or endorsed by any company listed at this site.
Any unauthorised copying or mirroring is prohibited.