Difference between revisions of "OpenMediaVault"

From Indie IT Wiki
Line 18: Line 18:
  
 
== Troubleshooting ==
 
== Troubleshooting ==
 +
 +
=== Cannot run System Update ===
 +
 +
This is because the repo list is a bit screwed up.
 +
 +
Copy the existing repo list file <code>/etc/apt/sources.list</code>somewhere safe then edit the file and paste these lines instead ...
 +
 +
# Stable
 +
deb http://http.us.debian.org/debian/ buster main contrib non-free
 +
# Stable Sources
 +
deb-src http://http.us.debian.org/debian/ buster main contrib non-free
 +
# Security Updates Stable
 +
deb http://security.debian.org/ buster/updates main contrib non-free
 +
 +
... then you should be able to update the system ...
 +
 +
apt update
 +
apt upgrade
 +
omv-update
 +
reboot
  
 
=== Cannot Install omv-extras ===
 
=== Cannot Install omv-extras ===

Revision as of 10:15, 19 April 2022

WORK IN PROGESS


Introduction

openmediavault is the next generation network attached storage (NAS) solution based on Debian Linux. It contains services like SSH, (S)FTP, SMB/CIFS, DAAP media server, RSync, BitTorrent client and many more. Thanks to the modular design of the framework it can be enhanced via plugins, like Docker.

https://www.openmediavault.org/

Installation

Updating

sudo omv-update

Troubleshooting

Cannot run System Update

This is because the repo list is a bit screwed up.

Copy the existing repo list file /etc/apt/sources.listsomewhere safe then edit the file and paste these lines instead ...

# Stable
deb http://http.us.debian.org/debian/ buster main contrib non-free
# Stable Sources
deb-src http://http.us.debian.org/debian/ buster main contrib non-free
# Security Updates Stable
deb http://security.debian.org/ buster/updates main contrib non-free

... then you should be able to update the system ...

apt update
apt upgrade
omv-update
reboot

Cannot Install omv-extras

The omv-extras package is needed if you want to install Docker and Portainer.

The error is because it is missing the package gpg.

To fix it, ssh in to the OMV as root and run ...

apt-cache policy gnupg gpgv
apt-get install gnupg=2.2.12-1+deb10u1 gpgv=2.2.12-1+deb10u1
shutdown -r now

... then try again.

https://forum.openmediavault.org/index.php?thread/30398-can-t-install-omv-extras-unmet-dependencies-on-omv5/