2 Easy Steps To Add ISO Files in Virtualizor – OrcaCore
In this article, we’ll explore how to add ISO files to your Virtualizor panel. This functionality is crucial for installing custom operating systems, including various Microsoft Windows server and home editions, within your Virtualizor environment. Virtualizor natively supports ISO files, enabling OS installations directly from these images. To begin, you’ll need to log into your Virtualizor panel using the address ServerIP:4085
in your web browser and enter your login credentials. Let’s dive into the simple steps to add ISO files in Virtualizor.
Step 1 – Add Media Group in Virtualizor
Virtualizor allows you to organize your media files into groups, streamlining management. This grouping applies not only to ISOs but also to plans and other elements within Virtualizor. To create a media group, navigate to "Media >> Add Media Group" in your Virtualizor panel. You should see a page similar to the one below.
<figure><img decoding="async" width="1024" height="576" src="https://bluehoster.info/wp-content/uploads/2023/08/1-14-1024x576.webp" alt="Add Media Group - orcacore.com" srcset="https://bluehoster.info/wp-content/uploads/2023/08/1-14-1024x576.webp 1024w, https://bluehoster.info/wp-content/uploads/2023/08/1-14-300x169.webp 300w, https://bluehoster.info/wp-content/uploads/2023/08/1-14-768x432.webp 768w, https://bluehoster.info/wp-content/uploads/2023/08/1-14-1536x864.webp 1536w, https://bluehoster.info/wp-content/uploads/2023/08/1-14-150x84.webp 150w, https://bluehoster.info/wp-content/uploads/2023/08/1-14-696x392.webp 696w, https://bluehoster.info/wp-content/uploads/2023/08/1-14-1068x601.webp 1068w, https://bluehoster.info/wp-content/uploads/2023/08/1-14.webp 1920w" sizes="(max-width: 1024px) 100vw, 1024px"><figcaption>Add ISO Files in Virtualizor</figcaption></figure>
Enter a descriptive name for your new group in the Media Group Name field. You can add a brief note about the group’s purpose in the Description field. Finally, select the appropriate Virtualization Type from the dropdown menu (e.g., OpenVZ, KVM).
Click Save Media Group to create the new group. Upon successful creation, you’ll be redirected to the Media Groups list.
Step 2 – Add ISO Fils to the Virtualizor panel
Now that you’ve created a media group (optional), you can add ISO files to the Virtualizor panel. There are two primary methods for doing this: adding an ISO via a URL (downloading it directly) or uploading an ISO file from your local computer. Let’s explore both options.
Step 2-1 – Add ISO by URL
To add an ISO file directly from a URL, navigate to "Media >> Add ISO" in the Virtualizor panel. This will present you with a page similar to the one shown below.
<figure><img decoding="async" width="1024" height="576" src="https://bluehoster.info/wp-content/uploads/2023/08/2-9-1024x576.webp" alt="Add ISO Files - orcacore.com" srcset="https://bluehoster.info/wp-content/uploads/2023/08/2-9-1024x576.webp 1024w, https://bluehoster.info/wp-content/uploads/2023/08/2-9-300x169.webp 300w, https://bluehoster.info/wp-content/uploads/2023/08/2-9-768x432.webp 768w, https://bluehoster.info/wp-content/uploads/2023/08/2-9-1536x864.webp 1536w, https://bluehoster.info/wp-content/uploads/2023/08/2-9-150x84.webp 150w, https://bluehoster.info/wp-content/uploads/2023/08/2-9-696x392.webp 696w, https://bluehoster.info/wp-content/uploads/2023/08/2-9-1068x601.webp 1068w, https://bluehoster.info/wp-content/uploads/2023/08/2-9.webp 1920w" sizes="(max-width: 1024px) 100vw, 1024px"><figcaption>Add ISO Files in Virtualizor</figcaption></figure>
In the first field, enter the complete ISO file URL that you want Virtualizor to download. Next, specify a descriptive ISO File name. Finally, if you created a Media Group in the previous step, you can select it from the dropdown menu.
Click Download ISO to initiate the download. The download progress will be displayed. You can view all downloaded ISO files in the List ISO section, accessible from the "Add ISO" menu.
Step 2-2 – Upload ISO Files
Alternatively, you can upload ISO files directly from your computer to the Virtualizor server. The original guide suggests using WinSCP. After you have successfully connected to your Virtualizor server, navigate to the following directory:
/var/virtualizor/iso
Drag and drop your ISO file into this directory to begin the upload. Once the upload is complete, the file will be visible in the List ISO menu.
Conclusion
Congratulations! You’ve successfully learned how to create a media group and add an ISO file to the Virtualizor panel using two different methods. If you have any questions or encounter any issues, feel free to leave a comment.
Here are some additional resources that you might find helpful:
- Define Plans on a Virtualizor Panel
- Create a new VPS on Virtualizor
- Network Bridge Configuration on Debian 12 Linux
Alternative Solutions to Adding ISO Files in Virtualizor
While the above methods are straightforward, here are two alternative approaches to adding ISO files to your Virtualizor environment. These methods involve using the command line, which can be more efficient for experienced users or when automating tasks. The goal is still to add ISO Files in Virtualizor, but we will explore different methods.
Alternative 1: Using scp
for Secure Copy
Instead of relying on WinSCP, you can use the scp
(secure copy) command, which is available on most Linux and macOS systems, and even on Windows via tools like PuTTY or the built-in OpenSSH client. This method allows you to securely transfer the ISO file from your local machine to the Virtualizor server directly from the command line. This method of copying files can be particularly useful when you’re trying to add ISO Files in Virtualizor.
Explanation:
scp
uses SSH (Secure Shell) to encrypt the file transfer, ensuring that your data is protected during transit. It’s a standard and reliable way to move files between systems.
Code Example:
scp /path/to/your/iso/file.iso user@serverIP:/var/virtualizor/iso/
Replace /path/to/your/iso/file.iso
with the actual path to the ISO file on your local machine, user
with the username you use to connect to the Virtualizor server, and serverIP
with the IP address of your Virtualizor server. You will be prompted for the user’s password.
Advantages:
- Security:
scp
encrypts the data during transfer. - Ubiquity: Available on most operating systems.
- Scriptability: Easily incorporated into scripts for automated deployments.
Disadvantages:
- Requires command-line familiarity.
- Can be slower than direct upload through the Virtualizor interface for very large files.
Alternative 2: Using wget
to Download from the Server Itself
If you have a publicly accessible URL for your ISO file, instead of downloading it to your local machine and then uploading it to the Virtualizor server, you can directly download it to the server using the wget
command. This can be faster and more efficient, especially if you have a fast internet connection on the server and a slow connection on your local machine. The goal is still to add ISO Files in Virtualizor.
Explanation:
wget
is a command-line utility for retrieving files using HTTP, HTTPS, and FTP. By running wget
on the Virtualizor server, you eliminate the need to transfer the ISO file through your local machine.
Code Example:
First, SSH into your Virtualizor server:
ssh user@serverIP
Then, use wget
to download the ISO file:
wget -P /var/virtualizor/iso/ http://example.com/path/to/your/iso/file.iso
Replace http://example.com/path/to/your/iso/file.iso
with the actual URL of the ISO file. The -P /var/virtualizor/iso/
option specifies the directory where wget
should save the downloaded file.
Advantages:
- Speed: Can be faster than uploading from your local machine, especially with a slow local connection.
- Efficiency: Reduces network traffic on your local network.
- Directness: Downloads the ISO directly to the server.
Disadvantages:
- Requires a publicly accessible URL for the ISO file.
- The server must have sufficient bandwidth and disk space.
- Requires SSH access to the Virtualizor server.
These alternative methods provide flexibility and can be particularly useful in different scenarios. Choosing the right method depends on your specific needs, network configuration, and familiarity with command-line tools. Remember that after using these methods, the ISO file will be available in the List ISO section of your Virtualizor panel. This article has demonstrated different methods to add ISO Files in Virtualizor.