<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: How to Install NFS Server and Client on Ubuntu 22.04	</title>
	<atom:link href="https://www.tecmint.com/install-nfs-server-on-ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/install-nfs-server-on-ubuntu/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Sat, 13 Apr 2024 12:46:19 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Bobby		</title>
		<link>https://www.tecmint.com/install-nfs-server-on-ubuntu/comment-page-1/#comment-2157966</link>

		<dc:creator><![CDATA[Bobby]]></dc:creator>
		<pubDate>Sat, 13 Apr 2024 12:46:19 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=36398#comment-2157966</guid>

					<description><![CDATA[Very useful article that has really helped me out with some testing I&#039;m doing in my job. 

Thank you for taking the time to produce a detailed but also to-the-point article on how to export an NFS share and access it, very grateful! :-D]]></description>
			<content:encoded><![CDATA[<p>Very useful article that has really helped me out with some testing I&#8217;m doing in my job. </p>
<p>Thank you for taking the time to produce a detailed but also to-the-point article on how to export an NFS share and access it, very grateful! :-D</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Chris		</title>
		<link>https://www.tecmint.com/install-nfs-server-on-ubuntu/comment-page-1/#comment-1795438</link>

		<dc:creator><![CDATA[Chris]]></dc:creator>
		<pubDate>Sat, 14 May 2022 13:43:17 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=36398#comment-1795438</guid>

					<description><![CDATA[Great article, is it possible to mount this share on a windows server or desktop?]]></description>
			<content:encoded><![CDATA[<p>Great article, is it possible to mount this share on a windows server or desktop?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Roger		</title>
		<link>https://www.tecmint.com/install-nfs-server-on-ubuntu/comment-page-1/#comment-1603581</link>

		<dc:creator><![CDATA[Roger]]></dc:creator>
		<pubDate>Wed, 06 Oct 2021 09:41:46 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=36398#comment-1603581</guid>

					<description><![CDATA[It&#039;s not true that &quot;NFS is rarely used nowadays&quot;. The only reason to use Samba is having to share files with Microsoft Windows systems. If all the machines that need to share files are running Linux, NFS is a more efficient solution than Samba and is also simpler to install.]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s not true that &#8220;NFS is rarely used nowadays&#8221;. The only reason to use Samba is having to share files with Microsoft Windows systems. If all the machines that need to share files are running Linux, NFS is a more efficient solution than Samba and is also simpler to install.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Myunggi Yi		</title>
		<link>https://www.tecmint.com/install-nfs-server-on-ubuntu/comment-page-1/#comment-1534756</link>

		<dc:creator><![CDATA[Myunggi Yi]]></dc:creator>
		<pubDate>Fri, 02 Jul 2021 01:13:02 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=36398#comment-1534756</guid>

					<description><![CDATA[I&#039;m adding a new cluster, and I want to share &lt;strong&gt;/data&lt;/strong&gt; of an old cluster with the new cluster too.

I&#039;m trying to set up NFS on two computer clusters. Let&#039;s say A and B (new) for each head node in the cluster. Compute nodes A1, A2 shares &lt;strong&gt;/home&lt;/strong&gt; and &lt;strong&gt;/data&lt;/strong&gt; from A, and compute nodes B1, B2 shares &lt;strong&gt;/home&lt;/strong&gt; from B but &lt;strong&gt;/data&lt;/strong&gt; from &quot;A&quot;.

In another word, cluster A, B shares its own &lt;strong&gt;/home&lt;/strong&gt;, but &lt;strong&gt;/data&lt;/strong&gt; of A is shared through the whole cluster A and B. In order to do this, I did set up NFS and IP/Mask with the following way to achieve the goal (All computers are connected to one network switch).

A with one external IP/24 (eht0) and one with 10.0.0.1/16 (eth1). exports setup of A:
&lt;pre&gt;
&lt;strong&gt;/home&lt;/strong&gt; 10.0.0.0/24(rw,no_subtree_check,fsid=10,no_root_squash)
/data 10.0.0.0/16(rw,no_subtree_check,fsid=11,no_root_squash)
&lt;/pre&gt;
stab of A 
&lt;pre&gt;
/dev/sda1 /data xfs defaults 0 0
&lt;/pre&gt;
A1 IP with 10.0.0.2/16, A2 IP with 10.0.0.3/16 fstab of A1&#039;s
&lt;pre&gt;
10.0.0.1:/home /home nfs ... 10.0.0.1:/data /data nfs
&lt;/pre&gt;
B with its one external IP/24 (eht0) and one with 10.0.1.1/24 (eth1). 

exports setup of B 
&lt;pre&gt;
/home 10.0.1.0/24(rw,no_subtree_check,fsid=13,no_root_squash)&lt;/pre&gt;
fstab of B 
&lt;pre&gt;
10.0.0.1:/data /data nfs
&lt;/pre&gt;
B1 with 10.0.1.2/24, B2 with 10.0.1.3/24 ... 10.0.1.1:/home /home nfs 10.0.0.1:/data /data nfs

I thought my goal can be achieved simply by IP/Mask, but it doesn&#039;t work. I can mount /data of A on B&#039;s compute nodes, but I cannot mount /home of its own B on B&#039;s compute nodes.

How can I set up the network and NFS to achieve my goal?]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m adding a new cluster, and I want to share <strong>/data</strong> of an old cluster with the new cluster too.</p>
<p>I&#8217;m trying to set up NFS on two computer clusters. Let&#8217;s say A and B (new) for each head node in the cluster. Compute nodes A1, A2 shares <strong>/home</strong> and <strong>/data</strong> from A, and compute nodes B1, B2 shares <strong>/home</strong> from B but <strong>/data</strong> from &#8220;A&#8221;.</p>
<p>In another word, cluster A, B shares its own <strong>/home</strong>, but <strong>/data</strong> of A is shared through the whole cluster A and B. In order to do this, I did set up NFS and IP/Mask with the following way to achieve the goal (All computers are connected to one network switch).</p>
<p>A with one external IP/24 (eht0) and one with 10.0.0.1/16 (eth1). exports setup of A:</p>
<pre>
<strong>/home</strong> 10.0.0.0/24(rw,no_subtree_check,fsid=10,no_root_squash)
/data 10.0.0.0/16(rw,no_subtree_check,fsid=11,no_root_squash)
</pre>
<p>stab of A </p>
<pre>
/dev/sda1 /data xfs defaults 0 0
</pre>
<p>A1 IP with 10.0.0.2/16, A2 IP with 10.0.0.3/16 fstab of A1&#8217;s</p>
<pre>
10.0.0.1:/home /home nfs ... 10.0.0.1:/data /data nfs
</pre>
<p>B with its one external IP/24 (eht0) and one with 10.0.1.1/24 (eth1). </p>
<p>exports setup of B </p>
<pre>
/home 10.0.1.0/24(rw,no_subtree_check,fsid=13,no_root_squash)</pre>
<p>fstab of B </p>
<pre>
10.0.0.1:/data /data nfs
</pre>
<p>B1 with 10.0.1.2/24, B2 with 10.0.1.3/24 &#8230; 10.0.1.1:/home /home nfs 10.0.0.1:/data /data nfs</p>
<p>I thought my goal can be achieved simply by IP/Mask, but it doesn&#8217;t work. I can mount /data of A on B&#8217;s compute nodes, but I cannot mount /home of its own B on B&#8217;s compute nodes.</p>
<p>How can I set up the network and NFS to achieve my goal?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: James Kiarie		</title>
		<link>https://www.tecmint.com/install-nfs-server-on-ubuntu/comment-page-1/#comment-1485144</link>

		<dc:creator><![CDATA[James Kiarie]]></dc:creator>
		<pubDate>Mon, 03 May 2021 09:32:19 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=36398#comment-1485144</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/install-nfs-server-on-ubuntu/comment-page-1/#comment-1484117&quot;&gt;Pedro&lt;/a&gt;.

Hey Pedro, it seems the UFW firewall is not installed on your system, in which case you need to install it using the command:
&lt;pre&gt;
$ sudo apt install ufw
&lt;/pre&gt;
Then enable it as follows:
&lt;pre&gt;
$ sudo  ufw enable
&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/install-nfs-server-on-ubuntu/comment-page-1/#comment-1484117">Pedro</a>.</p>
<p>Hey Pedro, it seems the UFW firewall is not installed on your system, in which case you need to install it using the command:</p>
<pre>
$ sudo apt install ufw
</pre>
<p>Then enable it as follows:</p>
<pre>
$ sudo  ufw enable
</pre>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
