<?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 move an ISO from local to another location​ - Proxmox help				            </title>
            <link>https://www.virtualizationhowto.com/community/proxmox-help/proxmox-move-an-iso-from-local-to-another-location/</link>
            <description>Virtualization Howto Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Wed, 22 Apr 2026 05:02:43 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>Proxmox move an ISO from local to another location​</title>
                        <link>https://www.virtualizationhowto.com/community/proxmox-help/proxmox-move-an-iso-from-local-to-another-location/#post-1204</link>
                        <pubDate>Mon, 17 Feb 2025 15:45:16 +0000</pubDate>
                        <description><![CDATA[What if you have uploaded an ISO to Proxmox local storage and you want to move it to another storage location such as NFS share, or somewhere else? We can do this from the command line or we...]]></description>
                        <content:encoded><![CDATA[<p data-pm-slice="1 1 []"><span>What if you have uploaded an ISO to Proxmox local storage and you want to move it to another storage location such as NFS share, or somewhere else? We can do this from the command line or web UI.</span></p>
<h2><span>1. Proxmox Storage Locations</span></h2>
<p>First things first, we need to understand the locations Proxmox uses for storing things. These include:</p>
<ul data-spread="false">
<li>
<p><span><strong>local</strong></span><span>: Located in </span><code><span>/var/lib/vz</span></code><span>, and is used for ISO images, container templates, and backups</span></p>
</li>
<li>
<p><span><strong>local-lvm</strong></span><span>: this location is used for storing VM disks, not for storing ISOs</span></p>
</li>
<li>
<p><span><strong>NFS, CIFS, or other shared storage</strong></span><span>: Network-attached storage where you might want to move your ISO files to</span></p>
</li>
</ul>
<h3><span>Checking Available Storage Locations</span></h3>
<p><span>To see available storage locations in your Proxmox node, run:</span></p>
<pre contenteditable="false"><code><span>pvesm status</span></code></pre>
<p><span>This command lists all available storage locations and their types.</span></p>
<p><img style="margin-left: auto;margin-right: auto" src="https://www.virtualizationhowto.com/wp-content/uploads/wpforo/attachments/2/606-pvesm-status-command-to-see-storage-available.jpg" /></p>
<h2><span>2. Moving an ISO using the command line interface</span></h2>
<h3>We can list the ISO files stored on local storage with the following</h3>
<p><span><strong>List ISO files stored in local storage:</strong></span></p>
<pre contenteditable="false"><code><span>ls -lh /var/lib/vz/template/iso/</span></code></pre>
<div><img style="margin-left: auto;margin-right: auto" src="https://www.virtualizationhowto.com/wp-content/uploads/wpforo/attachments/2/607-listing-ISO-images-in-proxmox.jpg" /></div>
<p><span><strong>Move an ISO to another storage location (e.g., an NFS share):</strong></span></p>
<pre contenteditable="false"><code><span>mv /var/lib/vz/template/iso/&lt;your-iso-file&gt;.iso /mnt/pve/&lt;your-storage&gt;/template/iso/</span></code></pre>
<p><span>Replace </span><code><span>&lt;your-iso-file&gt;.iso</span></code><span> with the actual file name and </span><code><span>&lt;your-storage&gt;</span></code><span> with the target storage name.</span></p>
<p><span><strong>Verify the move:</strong></span></p>
<pre contenteditable="false"><code><span>ls -lh /mnt/pve/&lt;your-storage&gt;/template/iso/</span></code></pre>
<br />
<h3><span>Move an ISO to Another Proxmox Node</span></h3>
<p><span>With a multi-host Proxmox environment, you can move an ISO between Proxmox nodes using SCP to copy between them,</span></p>
<ol start="1" data-spread="false">
<li>
<p><span><strong>Use </strong></span><code><span><strong>scp</strong></span></code><span><strong> to copy the file to another node:</strong></span></p>
<pre contenteditable="false"><code><span>scp /var/lib/vz/template/iso/&lt;your-iso-file&gt;.iso root@&lt;target-node&gt;:/var/lib/vz/template/iso/</span></code></pre>
<p>Replace the "target" node with the Proxmox node you want to copy your ISO to</p>
</li>
<li>
<p><span><strong>Verify the file exists on the target node:</strong></span></p>
<pre contenteditable="false"><code><span>ssh root@&lt;target-node&gt; 'ls -lh /var/lib/vz/template/iso/'</span></code></pre>
<p> </p>
</li>
</ol>
<h2><span>3. Moving an ISO Using the Proxmox Web Interface</span></h2>
<p><span>If you prefer a GUI approach, you can first download the ISO file to your local machine and then upload it back to the storage you want to use. Keep in mind this is not as efficient since you are essentially just re-uploading the ISO file from your local machine after first downloading it.</span></p>
<ol start="1" data-spread="false">
<li>
<p><span><strong>Navigate to </strong></span><code><span><strong>Datacenter</strong></span></code><span><strong> &gt; </strong></span><code><span><strong>Storage</strong></span></code><span><strong> in the Proxmox web interface.</strong></span></p>
</li>
<li>
<p><span>Select </span><span><strong>local</strong></span><span> storage (or wherever your ISO is stored).</span></p>
</li>
<li>
<p><span>Click on </span><span><strong>Content</strong></span><span> and find the ISO file.</span></p>
</li>
<li>
<p><span>Click on </span><span><strong>Download</strong></span><span>, save it to your local machine.</span></p>
</li>
<li>
<p><span>Go to the target storage location (e.g., NFS or another Proxmox node).</span></p>
</li>
<li>
<p><span>Click </span><span><strong>Upload</strong></span><span>, select the ISO file, and upload it.</span></p>
</li>
</ol>
<p><span>Let me know if you have any questions or issues!</span></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-move-an-iso-from-local-to-another-location/#post-1204</guid>
                    </item>
							        </channel>
        </rss>
		