- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Regarding NFS
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2007 03:14 AM
05-17-2007 03:14 AM
Regarding NFS
I have some doubt about the NFS.I want to know what is exactly NFS.
Regds
Bhushan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2007 03:23 AM
05-17-2007 03:23 AM
Re: Regarding NFS
Network File System
Designed to make it easy for systems to share files between them.
Built into to most Linux/Unix operating systems.
More:
http://kb.iu.edu/data/adux.html
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2007 03:24 AM
05-17-2007 03:24 AM
Re: Regarding NFS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2007 03:26 AM
05-17-2007 03:26 AM
Re: Regarding NFS
NFS = Network File System
It allows computers to mount, via the Network, file systems exported from other computers. NFS is not limited to Unix/Linux. There are NFS application for Windows and possibly VMS and Mainframe systems.
NFS Definition
http://www.google.com/search?hl=en&client=firefox-a&rls=org.mozilla:en-US:official&hs=tyM&defl=en&q=define:NFS&sa=X&oi=glossary_definition&ct=title
What is NFS? (Indiana University)
http://kb.iu.edu/data/adux.html
What is NFS? (Webopedia)
http://www.webopedia.com/TERM/N/NFS.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2007 03:30 AM
05-17-2007 03:30 AM
Re: Regarding NFS
It works using the rpc protocol and has set ports assigned to it in /etc/services.
on an NFS 'server' file systems are 'exported' - see /etc/exports i.e. made available to all/some nodes/users.
on an NFS client it can request the NFS servers EXPORTED file systems to be mounted locally (assuming the server has granted it permission/not restricted access).
NFS files systems can be mounted at boot time by placing them in /etc/fstab
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2007 03:36 AM
05-17-2007 03:36 AM
Re: Regarding NFS
That's i know but can u explain me this with giving some examples.
Regds
Bhushan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2007 04:21 AM
05-17-2007 04:21 AM
Re: Regarding NFS
Your best reference is the relevant man pages: exports(4), exportfs(1M), mountd(1M), nfsd(1M), mount(1M), fstab(4).
Since you asked, here's an example:
NFS Server
==========
# cat /etc/exports
/backup1 nfsclient(rw,insecure,sync,no_root_squash)
# exportfs -a
exportfs: nfsclient:/backup1
Export /backup1 to client 'nfsclient'.
rw: read-write
insecure: allow clients not using a reserved NFS port
sync: update files before replying to requests
no_root_squash: allow allow uid 0
NFS Client
==========
# mkdir /tmp_mnt/backup1@nfsserver
# mount nfsserver:/backup1 /tmp_mnt/backup1@nfsserver
PCS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2007 06:21 AM
05-17-2007 06:21 AM
Re: Regarding NFS
This is something like a Windows Share Drive or Directory,which can be accessible in other client.
Hope this helps you.
Babu