<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									Proxmox Mount NFS in FSTAB - Proxmox help				            </title>
            <link>https://www.virtualizationhowto.com/community/proxmox-help/proxmox-mount-nfs-in-fstab/</link>
            <description>Virtualization Howto Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Wed, 13 May 2026 19:32:13 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>Proxmox Mount NFS in FSTAB</title>
                        <link>https://www.virtualizationhowto.com/community/proxmox-help/proxmox-mount-nfs-in-fstab/#post-1203</link>
                        <pubDate>Mon, 17 Feb 2025 15:20:46 +0000</pubDate>
                        <description><![CDATA[I wanted to share a quick guide on mounting an NFS share in fstab on Proxmox. This set of steps will make sure you have an NFS share that is mounted when your server is rebooted and that you...]]></description>
                        <content:encoded><![CDATA[<p data-start="154" data-end="380">I wanted to share a quick guide on mounting an <strong data-start="201" data-end="214">NFS share</strong> in <strong data-start="218" data-end="227">fstab</strong> on Proxmox. This set of steps will make sure you have an NFS share that is mounted when your server is rebooted and that your persistent storage is available in Proxmox VE server.</p>
<h4 data-start="382" data-end="417"><strong data-start="387" data-end="417">Step 1: Install NFS Client</strong></h4>
<p>Before we get started, a good first step is to make sure you have the NFS client utiltiies installed in Proxmox. You can do that with the following:</p>
<pre contenteditable="false">apt update &amp;&amp; apt install -y nfs-common</pre>
<h4 data-start="613" data-end="650"><strong data-start="618" data-end="650">Step 2: Create a Mount Point</strong></h4>
<p data-start="651" data-end="716">Next, create a directory where you want to mount the NFS share:</p>
<div class="contain-inline-size rounded-md border- border-token-border-medium relative bg-token-sidebar-surface-primary dark:bg-gray-950">
<div class="sticky top-9 md:top-">
<div class="absolute bottom-0 right-2 flex h-9 items-center">
<div class="flex items-center rounded bg-token-sidebar-surface-primary px-2 font-sans text-xs text-token-text-secondary dark:bg-token-main-surface-secondary">
<pre contenteditable="false">mkdir -p /mnt/nfs-share</pre>
</div>
</div>
</div>
</div>
<p data-start="755" data-end="814">You can change <code data-start="770" data-end="786">/mnt/nfs-share</code> to any directory that makes sense.</p>
<h4 data-start="816" data-end="852"><strong data-start="821" data-end="852">Step 3: Edit the fstab File</strong></h4>
<p data-start="853" data-end="906">Now, open the <strong data-start="867" data-end="881">/etc/fstab</strong> file in a text editor:</p>
<div class="contain-inline-size rounded-md border- border-token-border-medium relative bg-token-sidebar-surface-primary dark:bg-gray-950">
<div class="sticky top-9 md:top-">
<div class="absolute bottom-0 right-2 flex h-9 items-center">
<div class="flex items-center rounded bg-token-sidebar-surface-primary px-2 font-sans text-xs text-token-text-secondary dark:bg-token-main-surface-secondary">
<pre contenteditable="false">nano /etc/fstab</pre>
</div>
</div>
</div>
</div>
<p data-start="937" data-end="1080">As a template for adding the configuration to your fstab file, it will look like the following configuration </p>
<div class="contain-inline-size rounded-md border- border-token-border-medium relative bg-token-sidebar-surface-primary dark:bg-gray-950">
<div class="sticky top-9 md:top-">
<div class="absolute bottom-0 right-2 flex h-9 items-center">
<div class="flex items-center rounded bg-token-sidebar-surface-primary px-2 font-sans text-xs text-token-text-secondary dark:bg-token-main-surface-secondary">
<pre contenteditable="false">NFS_SERVER_IP:/NFS_SHARE_PATH /mnt/nfs-share nfs defaults,_netdev 0 0</pre>
</div>
</div>
</div>
</div>
<p data-start="1165" data-end="1307">If your NFS server that you are adding to Proxomox has an IP of <code data-start="1210" data-end="1225">192.168.1.100</code> and the NFS shared directory is <code data-start="1254" data-end="1272">/exports/proxmox</code>, the fstab entry would look something like the following:</p>
<div class="contain-inline-size rounded-md border- border-token-border-medium relative bg-token-sidebar-surface-primary dark:bg-gray-950">
<div class="sticky top-9 md:top-">
<div class="absolute bottom-0 right-2 flex h-9 items-center">
<div class="flex items-center rounded bg-token-sidebar-surface-primary px-2 font-sans text-xs text-token-text-secondary dark:bg-token-main-surface-secondary">
<pre contenteditable="false">192.168.1.100:/exports/proxmox /mnt/nfs-share nfs defaults,_netdev 0 0</pre>
</div>
</div>
</div>
</div>
<h4 data-start="1393" data-end="1434"><strong data-start="1398" data-end="1434">Step 4: Apply and Test the Mount</strong></h4>
<p data-start="1435" data-end="1522">Save the file and exit from editing /etc/fstab. Then run the command below to mount the added configuration:</p>
<div class="contain-inline-size rounded-md border- border-token-border-medium relative bg-token-sidebar-surface-primary dark:bg-gray-950">
<div class="sticky top-9 md:top-">
<div class="absolute bottom-0 right-2 flex h-9 items-center">
<div class="flex items-center rounded bg-token-sidebar-surface-primary px-2 font-sans text-xs text-token-text-secondary dark:bg-token-main-surface-secondary">
<pre contenteditable="false">mount -a</pre>
</div>
</div>
</div>
</div>
<p data-start="1546" data-end="1597">Check if the NFS share is properly mounted using:</p>
<div class="contain-inline-size rounded-md border- border-token-border-medium relative bg-token-sidebar-surface-primary dark:bg-gray-950">
<div class="sticky top-9 md:top-">
<div class="absolute bottom-0 right-2 flex h-9 items-center">
<div class="flex items-center rounded bg-token-sidebar-surface-primary px-2 font-sans text-xs text-token-text-secondary dark:bg-token-main-surface-secondary">
<pre contenteditable="false">df -h</pre>
</div>
</div>
</div>
</div>
<p data-start="1618" data-end="1622">or</p>
<div class="contain-inline-size rounded-md border- border-token-border-medium relative bg-token-sidebar-surface-primary dark:bg-gray-950">
<div class="sticky top-9 md:top-">
<div class="absolute bottom-0 right-2 flex h-9 items-center">
<div class="flex items-center rounded bg-token-sidebar-surface-primary px-2 font-sans text-xs text-token-text-secondary dark:bg-token-main-surface-secondary">
<pre contenteditable="false">mount | grep nfs</pre>
</div>
</div>
</div>
</div>
<h4 data-start="1654" data-end="1678"><strong data-start="1659" data-end="1678">Troubleshooting</strong></h4>
<ul data-start="1679" data-end="1948">
<li data-start="1679" data-end="1798">
<p data-start="1681" data-end="1753">If the mount of your NFS share fails, you can check the <strong data-start="1711" data-end="1721">syslog</strong> or <strong data-start="1725" data-end="1739">journalctl</strong> for errors:</p>
<div class="contain-inline-size rounded-md border- border-token-border-medium relative bg-token-sidebar-surface-primary dark:bg-gray-950">
<div class="sticky top-9 md:top-"> </div>
<div class="overflow-y-auto p-4" dir="ltr">
<pre contenteditable="false">journalctl -xe | grep nfs</pre>
</div>
</div>
</li>
<li data-start="1800" data-end="1854">
<p data-start="1802" data-end="1854">Make sure the <strong data-start="1813" data-end="1827">NFS server</strong> is running and can be connected to from another machine if the connection fails from Proxmox</p>
</li>
<li data-start="1855" data-end="1948">
<p data-start="1857" data-end="1948">Make sure you have the <strong data-start="1873" data-end="1895">export permissions</strong> on the NFS server set to allow access from your Proxmox node.</p>
</li>
</ul>
<h4 data-start="1950" data-end="2007"><strong data-start="1955" data-end="2007">Added step: Add the NFS Share in Proxmox Storage</strong></h4>
<p data-start="2008" data-end="2082">If you want to add the NFS share as a storage backend in Proxmox, go to:</p>
<p data-start="2084" data-end="2122"><strong data-start="2084" data-end="2120">Datacenter → Storage → Add → NFS</strong></p>
<p data-start="2084" data-end="2122"><img style="margin-left: auto;margin-right: auto" src="https://www.virtualizationhowto.com/wp-content/uploads/wpforo/attachments/2/604-add-nfs-storage-to-proxmox.jpg" /></p>
<p data-start="2124" data-end="2295">Enter the <strong data-start="2134" data-end="2151">NFS server IP or FQDN</strong>, configure the <strong data-start="2164" data-end="2181">exported path</strong>, and define the content type (e.g., ISO, Backup, etc.). Click <strong data-start="2244" data-end="2251">Add</strong>, and it should add the storage and make it available in Proxmox.</p>
<p data-start="2124" data-end="2295"><img style="margin-left: auto;margin-right: auto" src="https://www.virtualizationhowto.com/wp-content/uploads/wpforo/attachments/2/605-add-the-nfs-server-and-export-configuration-to-proxmox.jpg" /></p>]]></content:encoded>
						                            <category domain="https://www.virtualizationhowto.com/community/proxmox-help/">Proxmox help</category>                        <dc:creator>Brandon Lee</dc:creator>
                        <guid isPermaLink="true">https://www.virtualizationhowto.com/community/proxmox-help/proxmox-mount-nfs-in-fstab/#post-1203</guid>
                    </item>
							        </channel>
        </rss>
		