<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: mounting NFS remotely in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/mounting-nfs-remotely/m-p/3001917#M5236</link>
    <description>Hello!&lt;BR /&gt;&lt;BR /&gt;For give an option to other mount your&lt;BR /&gt;directorys you must export them.&lt;BR /&gt;You can edit the /etc/exports file&lt;BR /&gt;or manualy use the exportfs command.&lt;BR /&gt;&lt;BR /&gt;To see what computer on the network exports&lt;BR /&gt;you can use the showmount command.&lt;BR /&gt;&lt;BR /&gt;If you want to work with windows systems you&lt;BR /&gt;will need the samba to share files with win.&lt;BR /&gt;&lt;BR /&gt;Caesar</description>
    <pubDate>Thu, 19 Jun 2003 19:48:55 GMT</pubDate>
    <dc:creator>Caesar_3</dc:creator>
    <dc:date>2003-06-19T19:48:55Z</dc:date>
    <item>
      <title>mounting NFS remotely</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mounting-nfs-remotely/m-p/3001912#M5231</link>
      <description>Basically I know I need to run NFS service on my servers.&lt;BR /&gt;&lt;BR /&gt;Does each server have an automatic share like microsoft c$ etc ... or do I have to share manually.  How do I do this?&lt;BR /&gt;&lt;BR /&gt;What is the equivalent of net view on Linux?  How will I view the devices that are shared on a Linux box.&lt;BR /&gt;&lt;BR /&gt;I am successfull in mounting and unmounting drives using samba but I would like to make use  of NFS for my Linux box's.</description>
      <pubDate>Thu, 19 Jun 2003 08:20:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mounting-nfs-remotely/m-p/3001912#M5231</guid>
      <dc:creator>Francis Ancheta</dc:creator>
      <dc:date>2003-06-19T08:20:32Z</dc:date>
    </item>
    <item>
      <title>Re: mounting NFS remotely</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mounting-nfs-remotely/m-p/3001913#M5232</link>
      <description>on the server, i got to edit the file /etc/exports where you specify the directories&lt;BR /&gt;you want to share. this is my /etc/exports:&lt;BR /&gt;&lt;BR /&gt;/public       nettuno(ro,all_squash)&lt;BR /&gt;/public       mercurio(rw,all_squash)&lt;BR /&gt;/mnt/cdrom    dbsermm(ro,all_squash)&lt;BR /&gt;&lt;BR /&gt;about the first line:&lt;BR /&gt;/public: is the directory i want to share,&lt;BR /&gt;nettuno: is the remote machine name that has&lt;BR /&gt;  access to that directory,&lt;BR /&gt;ro: means 'read-only'&lt;BR /&gt;all_squash: actually I don't remember ... ;-P&lt;BR /&gt;&lt;BR /&gt;on the remote machine (nettuno) I launch this&lt;BR /&gt;command to mount the exported directory:&lt;BR /&gt;&lt;BR /&gt;# mount -t nfs 192.168.1.10:/public /mnt/public&lt;BR /&gt;&lt;BR /&gt;that's all.&lt;BR /&gt;remember to restart the nfs service on the server machine (in this example 192.168.1.10) every time you edit /etc/exports:&lt;BR /&gt;&lt;BR /&gt;# service nfs restart&lt;BR /&gt;&lt;BR /&gt;more detailed information are in man pages:&lt;BR /&gt;&lt;BR /&gt;man exports&lt;BR /&gt;man nfs&lt;BR /&gt;man mount&lt;BR /&gt;&lt;BR /&gt;and in linux HOWTOs (&lt;A href="http://www.tldp.org)" target="_blank"&gt;www.tldp.org)&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;ciao&lt;BR /&gt;Claudio</description>
      <pubDate>Thu, 19 Jun 2003 08:42:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mounting-nfs-remotely/m-p/3001913#M5232</guid>
      <dc:creator>Claudio Cilloni</dc:creator>
      <dc:date>2003-06-19T08:42:25Z</dc:date>
    </item>
    <item>
      <title>Re: mounting NFS remotely</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mounting-nfs-remotely/m-p/3001914#M5233</link>
      <description>Concerning the other questions...&lt;BR /&gt;there aren't automatic share, you got to set them manually.&lt;BR /&gt;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!'...&lt;BR /&gt;&lt;BR /&gt;Claudio&lt;BR /&gt;</description>
      <pubDate>Thu, 19 Jun 2003 08:53:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mounting-nfs-remotely/m-p/3001914#M5233</guid>
      <dc:creator>Claudio Cilloni</dc:creator>
      <dc:date>2003-06-19T08:53:45Z</dc:date>
    </item>
    <item>
      <title>Re: mounting NFS remotely</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mounting-nfs-remotely/m-p/3001915#M5234</link>
      <description>This is a microsoft command to view the shares of a computer or a server.  I am currently using smbclient but if smb services are not running it won't work.&lt;BR /&gt;&lt;BR /&gt;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.&lt;BR /&gt;&lt;BR /&gt;Thanks for the first answer I got it working.  I didnt realize it was so easy.</description>
      <pubDate>Thu, 19 Jun 2003 09:08:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mounting-nfs-remotely/m-p/3001915#M5234</guid>
      <dc:creator>Francis Ancheta</dc:creator>
      <dc:date>2003-06-19T09:08:13Z</dc:date>
    </item>
    <item>
      <title>Re: mounting NFS remotely</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mounting-nfs-remotely/m-p/3001916#M5235</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;yes there is a command to show the services.&lt;BR /&gt;&lt;BR /&gt;#rpcinfo -p &lt;IP_ADDRESS_OF_REMOTE_SERVER&gt;&lt;BR /&gt;&lt;BR /&gt;To show the exported nfs filesystems in a remote server&lt;BR /&gt;&lt;BR /&gt;#showmount &lt;IP_ADDRESS_OF_REMOTE_SERVER&gt;&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;&lt;BR /&gt;U.SivaKumar&lt;/IP_ADDRESS_OF_REMOTE_SERVER&gt;&lt;/IP_ADDRESS_OF_REMOTE_SERVER&gt;</description>
      <pubDate>Thu, 19 Jun 2003 09:20:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mounting-nfs-remotely/m-p/3001916#M5235</guid>
      <dc:creator>U.SivaKumar_2</dc:creator>
      <dc:date>2003-06-19T09:20:41Z</dc:date>
    </item>
    <item>
      <title>Re: mounting NFS remotely</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mounting-nfs-remotely/m-p/3001917#M5236</link>
      <description>Hello!&lt;BR /&gt;&lt;BR /&gt;For give an option to other mount your&lt;BR /&gt;directorys you must export them.&lt;BR /&gt;You can edit the /etc/exports file&lt;BR /&gt;or manualy use the exportfs command.&lt;BR /&gt;&lt;BR /&gt;To see what computer on the network exports&lt;BR /&gt;you can use the showmount command.&lt;BR /&gt;&lt;BR /&gt;If you want to work with windows systems you&lt;BR /&gt;will need the samba to share files with win.&lt;BR /&gt;&lt;BR /&gt;Caesar</description>
      <pubDate>Thu, 19 Jun 2003 19:48:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mounting-nfs-remotely/m-p/3001917#M5236</guid>
      <dc:creator>Caesar_3</dc:creator>
      <dc:date>2003-06-19T19:48:55Z</dc:date>
    </item>
    <item>
      <title>Re: mounting NFS remotely</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mounting-nfs-remotely/m-p/3001918#M5237</link>
      <description>pcinfo isn't a command i've seen on a Linux box recently (it's not on my HR boxes here either).&lt;BR /&gt;&lt;BR /&gt;showmount is a fun tool, but you'll probably want 'showmount --exports &lt;MACHINE&gt;' to show the exported directories, and the machine's they're allowed to be mounetd from.&lt;BR /&gt;&lt;BR /&gt;The man page for 'showmount' is very informative.&lt;/MACHINE&gt;</description>
      <pubDate>Thu, 19 Jun 2003 22:16:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mounting-nfs-remotely/m-p/3001918#M5237</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2003-06-19T22:16:52Z</dc:date>
    </item>
  </channel>
</rss>

