- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- mounting NFS remotely
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
06-19-2003 01:20 AM
06-19-2003 01:20 AM
Does each server have an automatic share like microsoft c$ etc ... or do I have to share manually. How do I do this?
What is the equivalent of net view on Linux? How will I view the devices that are shared on a Linux box.
I am successfull in mounting and unmounting drives using samba but I would like to make use of NFS for my Linux box's.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2003 01:42 AM
06-19-2003 01:42 AM
Solutionyou want to share. this is my /etc/exports:
/public nettuno(ro,all_squash)
/public mercurio(rw,all_squash)
/mnt/cdrom dbsermm(ro,all_squash)
about the first line:
/public: is the directory i want to share,
nettuno: is the remote machine name that has
access to that directory,
ro: means 'read-only'
all_squash: actually I don't remember ... ;-P
on the remote machine (nettuno) I launch this
command to mount the exported directory:
# mount -t nfs 192.168.1.10:/public /mnt/public
that's all.
remember to restart the nfs service on the server machine (in this example 192.168.1.10) every time you edit /etc/exports:
# service nfs restart
more detailed information are in man pages:
man exports
man nfs
man mount
and in linux HOWTOs (www.tldp.org)
ciao
Claudio
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2003 01:53 AM
06-19-2003 01:53 AM
Re: mounting NFS remotely
there aren't automatic share, you got to set them manually.
net view? I never heard something about something like that in NFS. Maybe other forum's friends can give us a word like 'absolutely no' or a 'yes sure!'...
Claudio
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2003 02:08 AM
06-19-2003 02:08 AM
Re: mounting NFS remotely
I was wondering of NFS service has a similar way to check what are the shares available on an NFS server or if NFS is running on a particular server/workstation.
Thanks for the first answer I got it working. I didnt realize it was so easy.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2003 02:20 AM
06-19-2003 02:20 AM
Re: mounting NFS remotely
yes there is a command to show the services.
#rpcinfo -p
To show the exported nfs filesystems in a remote server
#showmount
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2003 12:48 PM
06-19-2003 12:48 PM
Re: mounting NFS remotely
For give an option to other mount your
directorys you must export them.
You can edit the /etc/exports file
or manualy use the exportfs command.
To see what computer on the network exports
you can use the showmount command.
If you want to work with windows systems you
will need the samba to share files with win.
Caesar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2003 03:16 PM
06-19-2003 03:16 PM
Re: mounting NFS remotely
showmount is a fun tool, but you'll probably want 'showmount --exports
The man page for 'showmount' is very informative.