Installation on Debian

You can install openmediavault on an existing Debian installation as well.

Note

The installation of openmediavault will be denied if a graphical desktop environment is detected.

Note

openmediavault does not import any existing settings of your system, except for network and time related settings. Existing settings will be overwritten if the service is managed by openmediavault. Please reconfigure these services via the web interface.

To do so, simply install the system using the Debian netinst images. After that apply the commands below. Please do not install a graphical desktop environment or web server, use a minimal server installation only (SSH server and standard system utilities). For a step by step install guide have a look into the Debian minimal install guide.

On ARM devices, please check if there’s an appropriate Armbian image available. Make sure you are using the correct Debian version that openmediavault is based on. After installing Armbian, then use the armbian-config tool to install openmediavault in a single step with all performance and reliability tweaks included. If there’s no Armbian image for your device, simply follow the steps outlined below.

On Raspberry Pi OS the below instructions only partially work. Please refer to a specific installation script

Note

The following commands must be executed as root user.

Install the openmediavault keyring manually:

apt-get install --yes gnupg
wget --quiet --output-document=- https://packages.openmediavault.org/public/archive.key | gpg --dearmor --yes --output "/usr/share/keyrings/openmediavault-archive-keyring.gpg"

Add the package repositories:

cat <<EOF >> /etc/apt/sources.list.d/openmediavault.list
deb [signed-by=/usr/share/keyrings/openmediavault-archive-keyring.gpg] https://packages.openmediavault.org/public sandworm main
# deb [signed-by=/usr/share/keyrings/openmediavault-archive-keyring.gpg] https://downloads.sourceforge.net/project/openmediavault/packages sandworm main
## Uncomment the following line to add software from the proposed repository.
# deb [signed-by=/usr/share/keyrings/openmediavault-archive-keyring.gpg] https://packages.openmediavault.org/public sandworm-proposed main
# deb [signed-by=/usr/share/keyrings/openmediavault-archive-keyring.gpg] https://downloads.sourceforge.net/project/openmediavault/packages sandworm-proposed main
## This software is not part of OpenMediaVault, but is offered by third-party
## developers as a service to OpenMediaVault users.
# deb [signed-by=/usr/share/keyrings/openmediavault-archive-keyring.gpg] https://packages.openmediavault.org/public sandworm partner
# deb [signed-by=/usr/share/keyrings/openmediavault-archive-keyring.gpg] https://downloads.sourceforge.net/project/openmediavault/packages sandworm partner
EOF

Note

If you are a user in mainland China, TUNA provides mirroring services.

Install the openmediavault package:

export LANG=C.UTF-8
export DEBIAN_FRONTEND=noninteractive
export APT_LISTCHANGES_FRONTEND=none
apt-get update
apt-get --yes --auto-remove --show-upgraded \
    --allow-downgrades --allow-change-held-packages \
    --no-install-recommends \
    --option DPkg::Options::="--force-confdef" \
    --option DPkg::Options::="--force-confold" \
    install openmediavault

Populate the openmediavault database with several existing system settings, e.g. the network configuration:

omv-confdbadm populate

Note

Right now only /etc/network/interfaces is parsed to get the current network configuration. If the network is configured a different way (e.g. via systemd or NetworkManager), then the database is not populated and does not contain the necessary information to deploy the network configuration with netplan for systemd-networkd and systemd-resolved. In that case use omv-firstaid to do the initial network configuration instead of the following step.

Re-deploy the network configuration via the services used by openmediavault:

omv-salt deploy run systemd-networkd

Or alternatively use omv-firstaid to do the initial network configuration.

Note

The IP address may change during the redeployment of the network configuration, therefore you may lose the connection when you are connected via SSH.

By default the root user can now access the system via SSH as a fallback if something went wrong during the installation, e.g. the UI is not accessible. SSH access for root should be disabled for security reasons as soon as possible after the installation has been successfully finished.

Note

The user created by the Debian installer will not able to SSH into the system after openmediavault has been installed. This is because only users who are assigned to the _ssh group are allowed to use SSH.