How to Rename ISO Files in Proxmox

Awww snap, I forgot to rename that!

LINUXLANDING PAGE

8/31/20251 min read

Standard Operating Procedure

Title: Renaming ISO Files in Proxmox

(1.0) Purpose

This SOP describes the process for renaming ISO files in Proxmox using the Linux terminal when the web interface does not provide this option.

(2.0) Scope

This procedure applies to system administrators and IT personnel responsible for maintaining Proxmox Virtual Environment (VE) servers.

  • In Scope: Renaming ISO files located in the default Proxmox ISO storage directory.

  • Out of Scope: Uploading, deleting, or managing ISOs in custom storage paths outside of /var/lib/vz/template/iso/.

(3.0) References and Related Documents

(4.0) Definitions

  • ISO File: A disk image file format commonly used for operating system installation media.

  • Proxmox VE (Virtual Environment): An open-source virtualization management platform.

  • SSH (Secure Shell): A protocol for securely accessing a server’s command line interface.

  • mv: A Linux command used to move or rename files.

(5.0) Roles and Responsibilities

  • System Administrator: Executes the procedure to rename ISO files, ensuring file integrity and compliance with naming conventions.

  • IT Manager (if applicable): Approves naming standards and verifies that proper file management practices are followed.

(6.0) Procedure

Step 1: Navigate to the ISO Directory

Run the following command:

cd /var/lib/vz/template/iso/

Step 2: List Existing ISO Files

Confirm the file you want to rename:

ls -lh

Step 3: Rename the ISO File

Use the mv command to rename the file:

mv /var/lib/vz/template/iso/old_name.iso /var/lib/vz/template/iso/new_name.iso

Example:

mv /var/lib/vz/template/iso/debian-12.iso /var/lib/vz/template/iso/debian-12.1.iso

Notes

  • Ensure the ISO is not mounted or in use by a VM before renaming.

  • Renaming does not affect the ISO content, only the filename.

  • Adopt clear naming conventions (e.g., include version numbers, architecture, or usage type).