Govibe Nexus Audio Player uninstall repair tutorial

This tutorial is only needed for users who installed the early broken Linux package, usually version 1.0.73.

What happened
The old uninstall script used a broad kill command. On some systems that command can stop dpkg while dpkg is removing or upgrading the app. The result is a stuck package that says dpkg was interrupted.

How to repair it on Debian or Ubuntu

1. Open Terminal.

2. Repair the old uninstall script:

sudo sh -c 'cat > /var/lib/dpkg/info/govibe-nexus-audio-player.prerm << "EOF"
#!/bin/sh
exit 0
EOF
chmod 755 /var/lib/dpkg/info/govibe-nexus-audio-player.prerm'

3. Finish any interrupted package operation:

sudo dpkg --configure -a

4. Remove the old package:

sudo dpkg --remove govibe-nexus-audio-player

5. Repair the package manager:

sudo apt --fix-broken install
sudo apt autoremove
sudo apt clean

6. Check if it is gone:

dpkg -l | grep -i govibe

If you only see Govibe Nexus Video Player, then the audio player was removed correctly.

How to install the fixed version

Download govibe-nexus-audio-player_1.0.76-1_all.deb, then run:

sudo apt install ./govibe-nexus-audio-player_1.0.76-1_all.deb

Alternative safe installer

Put these two files in the same folder:

install-govibe-nexus-audio-player-debian-ubuntu.sh
govibe-nexus-audio-player_1.0.76-1_all.deb

Then run:

chmod +x install-govibe-nexus-audio-player-debian-ubuntu.sh
sudo ./install-govibe-nexus-audio-player-debian-ubuntu.sh

That installer repairs the old broken script first, then installs the fixed version.

Fedora, RedHat, and CentOS users

Use the new 1.0.76 Fedora RedHat CentOS package. It includes safe install and uninstall scripts and does not use the old broad kill command.
