This article addresses an installation failure when setting up the inuvika-ovd-session-manager
package on Ubuntu. The error relates to a systemd unit being masked.
Failed to enable unit: Unit file /etc/systemd/system/ovd-session-manager.socket is masked. dpkg: error processing package inuvika-ovd-session-manager (--configure): installed inuvika-ovd-session-manager package post-installation script subprocess returned error exit status 1 Errors were encountered while processing: inuvika-ovd-session-manager
The systemd socket unit ovd-session-manager.socket
is masked (linked to /dev/null
), which prevents systemd from enabling or starting the associated service. This can occur if the unit was manually or programmatically disabled earlier.
sudo systemctl unmask ovd-session-manager.socket
sudo dpkg --configure -a
sudo apt install -f
sudo systemctl enable --now ovd-session-manager.service
*.jammy.deb
file for Ubuntu 22.04 (Jammy). You can verify your version with:lsb_release -a
Check that the service is running:
sudo systemctl status ovd-session-manager.service
Look for:
Active: active (running)