<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
     xmlns:atom="http://www.w3.org/2005/Atom"
     xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:wfw="http://wellformedweb.org/CommentAPI/"
     >
  <channel>
    <title>Topdog.za.net</title>
    <link>http://www.topdog.za.net</link>
    <description>A bored sysadmin</description>
    <pubDate>Fri, 26 Feb 2016 10:06:56 GMT</pubDate>
    <generator>Blogofile</generator>
    <sy:updatePeriod>hourly</sy:updatePeriod>
    <sy:updateFrequency>1</sy:updateFrequency>
    <item>
      <title>NFS server on Fedora 16</title>
      <link>http://www.topdog.za.net/2012/04/08/nfs-server-on-fedora-16</link>
      <pubDate>Sun, 08 Apr 2012 08:44:00 SAST</pubDate>
      <category><![CDATA[Tips]]></category>
      <category><![CDATA[Fedora]]></category>
      <category><![CDATA[Linux]]></category>
      <guid isPermaLink="true">http://www.topdog.za.net/2012/04/08/nfs-server-on-fedora-16</guid>
      <description>NFS server on Fedora 16</description>
      <content:encoded><![CDATA[<p>With the advent of systemd on Fedora 16 setup of NFS has changed
quite abit, some of the services have been renamed which can cause
a bit of frustration for users who are used to the old setup.</p>
<h1>Setup</h1>
<p>The exports file format remains the same so</p>
<pre><code>/srv 192.168.0.0/255.255.255.0(rw,async,no_subtree_check)
</code></pre>
<h1>Services</h1>
<p>Starting the required services</p>
<pre><code>systemctl start rpcbind.service
systemctl start nfs-server.service
systemctl start nfs-lock.service
systemctl start nfs-idmap.service
</code></pre>
<p>To make them startup at boot, chkconfig is gone so use systemctl</p>
<pre><code>systemctl enable rpcbind.service
systemctl enable nfs-server.service
systemctl enable nfs-lock.service
systemctl enable nfs-idmap.service
</code></pre>
<p>To view your exports.</p>
<pre><code>showmount --exports
</code></pre>]]></content:encoded>
    </item>
  </channel>
</rss>
