Skip to main content

Reinstalling the Endpoint Protector Client via Linux Terminal

Overview

This article describes how to reinstall the Netwrix Endpoint Protector Client on Linux using terminal commands. The process includes uninstalling the current client, updating the server IP configuration, and reinstalling the client.

Instructions

Uninstall and Reinstall the Netwrix Endpoint Protector Client

  1. On the Netwrix Endpoint Protector client, open the terminal.
  2. To uninstall the existing client, run the command below:
sudo bash uninstall.sh
  1. Set the Netwrix Endpoint Protector server IP address:
sudo nano options.sh
  1. Edit the file to set the correct server IP address, then save and exit.
  2. Reinstall the client:
sudo bash install.sh

Resolving Missing Dependency Errors

If you encounter missing dependency errors during installation, run the following commands:

sudo bash uninstall.sh
sudo apt update
sudo dpkg -i ./pkgs/*.deb
sudo apt update
sudo apt upgrade

The sudo dpkg -i ./pkgs/*.deb command will display any missing dependencies. Use sudo apt update and sudo apt upgrade to resolve them.