# FileWave Virtual Appliances

This book covers how to import our provided OVA's and VHD's into your virtual environments.

# Importing FileWave OVA (VirtualBox)

### Step-by-step guide

1\. First, you'll need to download and unzip the virtual appliance from [FileWave Downloads](https://kb.filewave.com/books/downloads "Downloads")

![FileWaveIVSDownloads.png](https://kb.filewave.com/uploads/images/gallery/2023-06/hocqSDNsYlgoDOpL-filewavedownloads.png)

2\. Open Oracle VirtualBox. Click “File” and “Import Appliance".

![VirtualBoxStep1.png](https://kb.filewave.com/uploads/images/gallery/2023-06/FcHrfYPEUIeh6Dpa-virtualboxstep1.png)

3\. Browse your machine for the unzipped OVA/OVF from FileWave and click “Open”.

![VirtualBoxStep2.png](https://kb.filewave.com/uploads/images/gallery/2023-06/oOV96D0bmtsvwzT8-virtualboxstep2.png)

4\. Click "Continue/Next"

![VirtualBoxStep3.png](https://kb.filewave.com/uploads/images/gallery/2023-06/P4YzjRzyMzdkPLTB-virtualboxstep3.png)

5\. Then you will select "Import/Finish" to begin the import process.

![VirtualBoxStep4.png](https://kb.filewave.com/uploads/images/gallery/2023-06/bFhAqNnPHuDZ2HRw-virtualboxstep4.png)

6\. Once imported successfully, select "Settings" to change the Storage settings.

![VirtualBoxStep5.png](https://kb.filewave.com/uploads/images/gallery/2023-06/sJbDKMmySC0MH0tG-virtualboxstep5.png)

7\. Select "Storage" and move the .vdi file from SCSI to SATA.

![VirtualBoxStep6.png](https://kb.filewave.com/uploads/images/gallery/2023-06/GRPBe1aaToJKDnIf-virtualboxstep6.png)

8\. Click "Start" to verify that the appliance starts successfully.

![VirtualBoxStep7.png](https://kb.filewave.com/uploads/images/gallery/2023-06/DjrvUE42bcnMue04-virtualboxstep7.png)

You've successfully imported the IVS Appliance! For next steps, please be sure to complete [Changing the IP Address of your IVS (Static)](https://kb.filewave.com/books/network-imaging-ivs/page/changing-the-ip-address-of-your-ivs-static "Changing the IP Address of your IVS (Static)") and, if importing version 15.5+, please see: [Setting the Password on First Login to FileWave Appliances (15.5+)](https://kb.filewave.com/books/filewave-general-info/page/setting-the-password-on-first-login-to-filewave-appliances-155)

# FileWave Appliances on an Apple Silicon macOS system

## What

You may want to know how to load one of the Debian based FileWave Appliances for Server, Booster, or IVS so that you can test something, but your computer is an Apple Silicon Mac and so the x86 Appliances will not natively run on ARM based computers.

## When/Why

Usually, this is for testing purposes. There does not appear to be an emulator that runs on Apple Silicon that also directly supports OVA files like the ones used by VMWare. UTM can emulate x86 hardware and has a tool to convert the hard disk to allow this as explained below.

## How

### Outline of the work

1. Download the OVA image from [Downloads](https://kb.filewave.com/books/downloads "Downloads")
2. Convert OVA to QCOW2 on your Mac 
    - Install Homebrew to get the qemu conversion utility
    - Convert the hard disk image
3. Import the converted disk in to UTM
4. Launch

### Download the OVA image from Downloads

This step is simple. Just go to the [Downloads](https://kb.filewave.com/books/downloads "Downloads") page. Go to the most recent version of FileWave, and then download the Debian Server, Booster or IVS image.

[![image.png](https://kb.filewave.com/uploads/images/gallery/2024-01/scaled-1680-/kf13xJwABY8K8Xt2-image.png)](https://kb.filewave.com/uploads/images/gallery/2024-01/kf13xJwABY8K8Xt2-image.png)

### Convert OVA to QCOW2 on your Mac

Extract the disk image included in ova with the command `<em class="pu">tar -xvf</em>`

```shell
tar -xvf FileWave_Server_Debian_15.2.1.ova
```

Once extracted you will have several files in the same folder as the OVA:

```shell
-rw-r--r--@ 1 jlevitsk  staff  2861168640 Dec 12 13:23 FileWave_Server_Debian-disk-0.vmdk
-rw-r--r--@ 1 jlevitsk  staff        8684 Dec 12 13:23 FileWave_Server_Debian-disk-1.nvram
-rw-r--r--@ 1 jlevitsk  staff         320 Dec 12 13:23 FileWave_Server_Debian.mf
-rw-r--r--@ 1 jlevitsk  staff        9185 Dec 12 13:23 FileWave_Server_Debian.ovf
-rw-r--r--@ 1 jlevitsk  staff  2861199360 Jan 12 09:47 FileWave_Server_Debian_15.2.1.ova
```

#### Install Homebrew to get the qemu conversion utility

If you've never used [Homebrew](https://brew.sh/) before then this is an amazing tool you will come to love. Visit their website in case anything has changed but traditionally this command is what you'll want to install it. You will paste the entire line in to Terminal.app. They do now also have a PKG you can download from their [Homebrew's latest GitHub release](https://github.com/Homebrew/brew/releases/latest) page.

```bash
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
```

Once Homebrew is installed you can install the qemu utilities with this command in Terminal.app:

```shell
brew install qemu
```

#### Convert the hard disk image

For the next step you'll use the qemu-img command to convert the VMDK disk image over to QCOW2 that is used by UTM. The below command is done in Terminal.app, and you should consider if the file name differs, but it will be the VMDK that you extracted in the earlier step using `tar` and then the QCOW2 file won't exist until after you do this conversion command.

```shell
qemu-img convert -O qcow2 FileWave_Server_Debian-disk-0.vmdk FileWave_Server_Debian-disk-0.qcow2
```

### Import the converted disk in to UTM

1. Press the + button in the upper left corner.  
      
    [![image.png](https://kb.filewave.com/uploads/images/gallery/2024-01/scaled-1680-/sxQI4bqyzjep4LGR-image.png)](https://kb.filewave.com/uploads/images/gallery/2024-01/sxQI4bqyzjep4LGR-image.png)
2. Select Emulate  
      
    [![image.png](https://kb.filewave.com/uploads/images/gallery/2024-01/scaled-1680-/fh1VIR4RBzkVMCfB-image.png)](https://kb.filewave.com/uploads/images/gallery/2024-01/fh1VIR4RBzkVMCfB-image.png)
3. Select Other  
      
    [![image.png](https://kb.filewave.com/uploads/images/gallery/2024-01/scaled-1680-/AGMEnIbNkLbTilhM-image.png)](https://kb.filewave.com/uploads/images/gallery/2024-01/AGMEnIbNkLbTilhM-image.png)
4. Check Skip ISO boot and then click Continue  
      
    [![image.png](https://kb.filewave.com/uploads/images/gallery/2024-01/scaled-1680-/s2aJKC2aIgl9Rg2k-image.png)](https://kb.filewave.com/uploads/images/gallery/2024-01/s2aJKC2aIgl9Rg2k-image.png)
5. On this step the most important thing is to pick x86\_64 for the Architecture and to ensure you have at least 8192Mb of RAM.   
      
    [![image.png](https://kb.filewave.com/uploads/images/gallery/2024-01/scaled-1680-/GDxP1Mz4k9TdjWF5-image.png)](https://kb.filewave.com/uploads/images/gallery/2024-01/GDxP1Mz4k9TdjWF5-image.png)
6. The size of storage won't matter because we will be deleting it later.  
      
    [![image.png](https://kb.filewave.com/uploads/images/gallery/2024-01/scaled-1680-/SAkGzWSw9Tw54uoO-image.png)](https://kb.filewave.com/uploads/images/gallery/2024-01/SAkGzWSw9Tw54uoO-image.png)
7. The Shared Directory is not something I've been using. This is up to you but may need some drivers installed for it to work.  
      
    [![image.png](https://kb.filewave.com/uploads/images/gallery/2024-01/scaled-1680-/A8zi2EbS6QmWXK0u-image.png)](https://kb.filewave.com/uploads/images/gallery/2024-01/A8zi2EbS6QmWXK0u-image.png)
8. Give the VM a name and check the Open VM settings box. Click Save to pick up the VM Setting screen. If you forget to check the box for this to appear then you can right-click the VM and pick Settings to access the same screen.  
      
    [![image.png](https://kb.filewave.com/uploads/images/gallery/2024-01/scaled-1680-/1lBRGZ3CCxwbwHh6-image.png)](https://kb.filewave.com/uploads/images/gallery/2024-01/1lBRGZ3CCxwbwHh6-image.png)
9. You need to uncheck UEFI Boot or the appliance will not boot until you do.  
      
    [![image.png](https://kb.filewave.com/uploads/images/gallery/2024-01/scaled-1680-/f33SFinbspjjS7nB-image.png)](https://kb.filewave.com/uploads/images/gallery/2024-01/f33SFinbspjjS7nB-image.png)
10. Delete the existing IDE Drive.   
      
    [![image.png](https://kb.filewave.com/uploads/images/gallery/2024-01/scaled-1680-/tXZe0p9XZCIlkibn-image.png)](https://kb.filewave.com/uploads/images/gallery/2024-01/tXZe0p9XZCIlkibn-image.png)
11. Click New... to make a new drive. This is where we will import the QCOW2 file.  
      
    [![image.png](https://kb.filewave.com/uploads/images/gallery/2024-01/scaled-1680-/29jjkNwfnaY6uorg-image.png)](https://kb.filewave.com/uploads/images/gallery/2024-01/29jjkNwfnaY6uorg-image.png)
12. When you clicked New... you should put 500 GB for the size and then click Import...  
      
    [![image.png](https://kb.filewave.com/uploads/images/gallery/2024-01/scaled-1680-/2XXvdOuIeNfXxI8M-image.png)](https://kb.filewave.com/uploads/images/gallery/2024-01/2XXvdOuIeNfXxI8M-image.png)
13. Browse to the QCOW2 file from the conversion step and select it. Now you can pick Save on the Settings page to finish.

### Launch

You'll now have the virtual machine listed and if you pick the play button to start it up it should boot up fully.

<p class="callout success">Once booted you can login as the user **fwadmin** with password **filewave** and then you can change the fwadmin password ([First Login to FileWave Appliances](https://kb.filewave.com/books/filewave-general-info/page/setting-the-password-on-first-login-to-filewave-appliances-155)) or use [Webmin](https://kb.filewave.com/books/filewave-server/page/webmin-gui-on-premise "Webmin GUI (On-Premise)") to change it.</p>

## Related Content

- [UTM | Virtual machines for Mac (getutm.app)](https://mac.getutm.app/)
- [Homebrew — The Missing Package Manager for macOS (or Linux)](https://brew.sh/)
- [Convert ova to qcow2 and start it with UTM | by Simo | Medium](https://medium.com/@hitoshi.shimomae/convert-ova-to-qcow2-and-start-it-with-utm-13fa3fc4c3db) (The source for this article)

# Importing FileWave VHD (Hyper-V)

FileWave's Hyper-V VMs are usually built using the latest version of Hyper-V, typically the same one that comes with the newest version of Windows Server. When importing the FileWave Server, IVS, or on older Windows OS'es, the Hyper-V Manager console may not be able to detect the VM due to changes in the formatting of the VM XML definition file. This doesn't mean you can't add them to Hyper-V though.

Instead of importing the Hyper-V VM, add a new VM and point it to the existing VHD for the FileWave IVS. Then specify the following hardware configuration to replace the missing info that was lost by discarding the VM XML definition file.

IVS - 4 CPUs, 8 GB RAM

### Step-by-step guide

Follow these steps for the FileWave server component you wish to add to Hyper-V

1. Copy the .vhdx file for the desired FileWave server component to the same folder where the VHDs for all your other VMs reside. Rename it as desired so you know which FileWave component it's for, e.g. FileWave\_IVS.vhdx.
2. Go to *Action &gt; New &gt; Virtual Machine*.
3. Select "Generation 1" or "Generation 2" for the firmware type, depending on which you downloaded.
4. Assign 8192 MB for *Startup memory* and check "Use Dynamic Memory" for this virtual machine.
5. Connect the NIC to an external virtual switch where the server can pick up an IP address on your LAN.
6. Pick "Use an existing virtual hard disk" and browse to the .vhdx file for your VM.

Note that the IVS has two virtual NICs although only one of them will pick up an IP address. There's already one present by default so you'll have to edit the settings for the VM and add a second one by picking *Add Hardware* at the top of the *Hardware* section on the left-hand pane. Choose *Network Adapter* on the right and click the *Add* button.  
Connect this second adapter to your virtual switch and click the *Apply* button.

![hpserver.png](https://kb.filewave.com/uploads/images/gallery/2023-06/WmB5JfNHsEvZuoJi-hpserver.png)

All FileWave server components should have a static IP rather than a dynamic one. You can either assign them a static IP outside of your DHCP pool or set a client reservation for them so they get the same IP address from the DHCP pool every time. For client reservations, you'll need to configure the virtual NICs with static MAC addresses since the MAC address is needed to set the client reservation. In the *Advanced Features* section for each virtual NIC change the MAC address to *Static*.

![hpserver2.png](https://kb.filewave.com/uploads/images/gallery/2023-06/7KBfct6ur2UOTya7-hpserver2.png)

You've successfully imported the IVS Appliance! For next steps, please be sure to complete [Changing the IP Address of your IVS (Static)](https://kb.filewave.com/books/network-imaging-ivs/page/changing-the-ip-address-of-your-ivs-static "Changing the IP Address of your IVS (Static)") and, if importing version 15.5+, please see: [Setting the Password on First Login to FileWave Appliances (15.5+)](https://kb.filewave.com/books/filewave-general-info/page/setting-the-password-on-first-login-to-filewave-appliances-155)

# Importing FileWave OVF (Vmware ESXI)

### Step-by-Step Guide

1\. Open your vSphere Client software and connect to ESXI. Click “File” and “Deploy OVF Template".

![esxi1.jpg](https://kb.filewave.com/uploads/images/gallery/2023-06/HNHBePLczqcf2Dzo-esxi1.jpg)

2\. Browse your machine for the unzipped OVA/OVF from FileWave and click “Next”.

![esxi2.jpg](https://kb.filewave.com/uploads/images/gallery/2023-06/dc550TFrkBlMqT9s-esxi2.jpg)

3\. The OVF Details will be presented to you. Click “Next”.

![esxi3.jpg](https://kb.filewave.com/uploads/images/gallery/2023-06/buSJ0ZoULZcZEYZC-esxi3.jpg)

4\. Give your Server a Name and select the Datacenter and Location where you would like to store it.

![esxi4.jpg](https://kb.filewave.com/uploads/images/gallery/2023-06/b7ckHMHl2JWaxqfU-esxi4.jpg)

5\. Select which ESXI server will host the OVF.

![esxi5.jpg](https://kb.filewave.com/uploads/images/gallery/2023-06/5mbVHmpe2vCxjGR0-esxi5.jpg)

6\. Select the datastore where you would like to store your OVF.

![esxi6.jpg](https://kb.filewave.com/uploads/images/gallery/2023-06/ldBv66E98gj1H9rp-esxi6.jpg)

7\. Choose the desired format for the virtual disks.

![esxi7.jpg](https://kb.filewave.com/uploads/images/gallery/2023-06/LXCrXkcGSdRbyuwz-esxi7.jpg)

8\. Map the OVF/Server to the desired VM Network.

![esxi8.jpg](https://kb.filewave.com/uploads/images/gallery/2023-06/OMpcvkEhYh0TA10Q-esxi8.jpg)

9\. Click "Finish" to begin importing the OVF.

Note: You may receive a message that the import failed because OVF specification conformance. Clicking "Retry" will resolve that and continue the import.

![esxi9.jpg](https://kb.filewave.com/uploads/images/gallery/2023-06/e21cFnaEEs2Jrvg6-esxi9.jpg)

![esxi10.jpg](https://kb.filewave.com/uploads/images/gallery/2023-06/aOt0JmQ58qO7NOHn-esxi10.jpg)

10\. Once the OVF has imported successfully, turn it on and open a console window to ensure that it starts successfully.

![esxi11.jpg](https://kb.filewave.com/uploads/images/gallery/2023-06/LFXX6yZleXUXIR1e-esxi11.jpg)

![esxi12.jpg](https://kb.filewave.com/uploads/images/gallery/2023-06/NusE4v5gsCIcPWvc-esxi12.jpg)

You've successfully imported the IVS Appliance! For next steps, please be sure to complete [Changing the IP Address of your IVS (Static)](https://kb.filewave.com/books/network-imaging-ivs/page/changing-the-ip-address-of-your-ivs-static "Changing the IP Address of your IVS (Static)") and, if importing version 15.5+, please see: [Setting the Password on First Login to FileWave Appliances (15.5+)](https://kb.filewave.com/books/filewave-general-info/page/setting-the-password-on-first-login-to-filewave-appliances-155)

# Importing a FileWave Appliance into Scale Computing (OVA → QCOW2)

## Overview

This article explains how to deploy a **FileWave Server appliance (OVA)** on a **Scale Computing HyperCore** cluster.

Scale does not natively support VMware/VirtualBox OVA imports. To run the FileWave appliance, you must:

- Extract the OVA
- Convert the virtual disk
- Create a VM manually
- Attach the converted disk

This guide provides step-by-step instructions for macOS and Windows.

---

## Prerequisites

- Scale HyperCore cluster access
- ~2x disk space of the OVA size
- Required Tools: 
    - **macOS:**
        - Terminal
        - Homebrew
        - qemu
    - **Windows:**
        - QEMU (CLI) ***OR*** StarWind V2V Converter (GUI)

---

## Step 1: Download the Appliance

1. Navigate to FileWave Downloads:  
    [https://kb.filewave.com/books/downloads](https://kb.filewave.com/books/downloads)
2. Select your FileWave version.
3. Download the **VMware/VirtualBox OVA**

[![image.png](https://kb.filewave.com/uploads/images/gallery/2026-05/scaled-1680-/MociInkGZoiA1Bxt-image.png)](https://kb.filewave.com/uploads/images/gallery/2026-05/MociInkGZoiA1Bxt-image.png)

---

## Step 2: Extract the OVA

The OVA is a tar archive.

### macOS / Linux

```bash
#Make a directory for the .ova files to be extracted to
mkdir ~/Downloads/fw-ova/
cd ~/Downloads/fw-ova/
#Extract the files
#If the file wasn't saved to your Downloads, change the directory
tar -xvf ../FileWave_Server_Debian_*.ova
```

### Windows

- Right-click → Extract (7-Zip or WinRAR)

Expected output:

```text
FileWave_Server_Debian.ovf
FileWave_Server_Debian.mf
FileWave_Server_Debian-disk-0.vmdk
FileWave_Server_Debian-disk-1.nvram
```

👉 Only the `.vmdk` file is required.

---

## Step 3: Convert VMDK → QCOW2

Scale works best with QCOW2 disks.

### macOS

Install QEMU:

```bash
brew install qemu
```

Convert:

```bash
cd ~/Downloads/fw-ova/
qemu-img convert -p -f vmdk -O qcow2 FileWave_Server_Debian-disk-0.vmdk FileWave_Server.qcow2
```

---

### Windows (QEMU CLI)

```powershell
qemu-img.exe convert -p -f vmdk -O qcow2 FileWave_Server_Debian-disk-0.vmdk FileWave_Server.qcow2
```

---

### Windows (GUI Option)

Using StarWind V2V Converter:

1. Open StarWind V2V
2. Select VMDK
3. Output format: QCOW2
4. Complete wizard

📸 *Screenshot: StarWind conversion wizard*

---

## Step 4: Create a VM in Scale

Create a new VM manually.

📸 *Screenshot: Scale “Create VM” screen*

### Required Settings

<table id="bkmrk-setting-value-firmwa"><thead><tr><th>Setting</th><th>Value</th></tr></thead><tbody><tr><td>Firmware</td><td>BIOS (Legacy)</td></tr><tr><td>CPU</td><td>4–8 vCPU</td></tr><tr><td>RAM</td><td>8–16 GB</td></tr><tr><td>NIC</td><td>Intel E1000</td></tr></tbody></table>

⚠️ **Critical:**

- Do NOT use UEFI
- Do NOT attach disk yet (or remove placeholder disk)

---

## Step 5: Upload &amp; Attach Disk

1. Navigate to Control Center &gt; Media
2. Upload `FileWave_Server.qcow2` to Scale
3. Attach to VM

[![image.png](https://kb.filewave.com/uploads/images/gallery/2026-05/scaled-1680-/VOknOhVqpyuY3zcz-image.png)](https://kb.filewave.com/uploads/images/gallery/2026-05/VOknOhVqpyuY3zcz-image.png)

[![image.png](https://kb.filewave.com/uploads/images/gallery/2026-05/scaled-1680-/eWMBl7EfPUb8pzvb-image.png)](https://kb.filewave.com/uploads/images/gallery/2026-05/eWMBl7EfPUb8pzvb-image.png)

### Disk Configuration

```text
Disk Type: IDE
Disk Slot: 0
Bootable: Yes

```

### Boot Order

```text
IDE Disk (slot 0) → First

```

---

## Step 6: Boot the Appliance

Start the VM.

Expected result:

- Debian boots
- FileWave login prompt appears

---

## Default Credentials

```text
Username: fwadmin
Password: filewave
```

You will be prompted to change the password.

---

## Troubleshooting

### ❌ No Bootable Device

- VM must be BIOS
- Disk must be IDE
- Boot order must point to the disk

---

### ❌ Kernel Panic / Root FS Missing

- Disk conversion issue
- Retry conversion
- Ensure the correct VMDK is used

---

## Why This Works (Important)

The FileWave appliance is built for VMware:

```text
Disk Controller: LSI Logic SCSI
NIC: VMXNET3
Firmware: BIOS
```

Scale uses different virtual hardware:

```text
Disk: IDE / VirtIO
NIC: E1000 / VirtIO
```

Because Scale does not support VMware’s SCSI or VMXNET3 directly:

- The disk must be converted
- The VM must be recreated with compatible hardware
- IDE is used for maximum boot compatibility

---

## Optimization (Optional)

After successful boot:

- Test switching disk to VirtIO
- Test switching NIC to VirtIO

⚠️ Only do this after confirming a stable boot

---

## Summary

1. Download OVA
2. Extract files
3. Convert VMDK → QCOW2
4. Create BIOS VM
5. Attach the disk as IDE
6. Boot

---

## Support

If you encounter issues, please contact FileWave Support or your Professional Services representative.

# Importing FileWave OVF (VMware Fusion)

### Step-by-step guide

1\. First, you'll need to download and unzip the virtual appliance from filewave.com

![FileWaveIVSDownloads.png](https://kb.filewave.com/uploads/images/gallery/2023-06/hocqSDNsYlgoDOpL-filewavedownloads.png)

2\. Then, open VMware Fusion. Click “File” and “Import".

![VMwareFusion1.png](https://kb.filewave.com/uploads/images/gallery/2023-06/2OQhPJMbRg87gi2L-vmwarefusion1.png)

3\. Now, browse your machine for the unzipped OVA/OVF from FileWave and click “Open”.

![VMwareFusion2.png](https://kb.filewave.com/uploads/images/gallery/2023-06/9xAAv7jUy7bCe8UV-vmwarefusion2.png)

4\. Name the OVF/Server and select where you would like to save it. Click "Save".

![VMwareFusion3.png](https://kb.filewave.com/uploads/images/gallery/2023-06/AvlDKf2w3k7NOj6X-vmwarefusion3.png)

5\. The appliance should start for you automatically, but if it doesn't, just click the "Start" button.

![VMwareFusion4.png](https://kb.filewave.com/uploads/images/gallery/2023-06/Pvf1UhUNnombUfou-vmwarefusion4.png)

![VMwareFusion5.png](https://kb.filewave.com/uploads/images/gallery/2023-06/BG9YAFCT291SQeuu-vmwarefusion5.png)

You've successfully imported the IVS Appliance! For next steps, please be sure to complete [Changing the IP Address of your IVS (Static)](https://kb.filewave.com/books/network-imaging-ivs/page/changing-the-ip-address-of-your-ivs-static "Changing the IP Address of your IVS (Static)") and, if importing version 15.5+, please see: [Setting the Password on First Login to FileWave Appliances (15.5+)](https://kb.filewave.com/books/filewave-general-info/page/setting-the-password-on-first-login-to-filewave-appliances-155)

# Importing FileWave OVF (VMware Workstation)

### Step-by-Step Guide

1\. Open VMware Workstation. Click "Open a Virtual Machine".

![vmwork1.jpg](https://kb.filewave.com/uploads/images/gallery/2023-06/1ZfJQnQveBQfgQ5x-vmwork1.jpg)

2\. Browse your machine for the unzipped OVA/OVF from FileWave and click “Open”.

![vmwork2.jpg](https://kb.filewave.com/uploads/images/gallery/2023-06/yLtlIW08BbxId4xd-vmwork2.jpg)

3\. Name the Virtual Machine and select a storage location. Click “Import”.

![vmwork3.jpg](https://kb.filewave.com/uploads/images/gallery/2023-06/UXv81FDu3MJUpzbw-vmwork3.jpg)

Note: You may receive a message that the import failed because OVF specification conformance. Clicking "Retry" will resolve that and continue the import.

![vmwork4importerror.jpeg](https://kb.filewave.com/uploads/images/gallery/2023-06/QeB14y6HHUsK5Fz2-vmwork4importerror.jpeg)

4\. Once the OVF has imported successfully, turn it on to ensure that it starts successfully.

![vmwork4.jpg](https://kb.filewave.com/uploads/images/gallery/2023-06/hVVjQMQ98qd8IQju-vmwork4.jpg)

You've successfully imported the IVS Appliance! For next steps, please be sure to complete [Changing the IP Address of your IVS (Static)](https://kb.filewave.com/books/network-imaging-ivs/page/changing-the-ip-address-of-your-ivs-static "Changing the IP Address of your IVS (Static)") and, if importing version 15.5+, please see: [Setting the Password on First Login to FileWave Appliances (15.5+)](https://kb.filewave.com/books/filewave-general-info/page/setting-the-password-on-first-login-to-filewave-appliances-155)