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
- On the Netwrix Endpoint Protector client, open the terminal.
- To uninstall the existing client, run the command below:
sudo bash uninstall.sh
- Set the Netwrix Endpoint Protector server IP address:
sudo nano options.sh
- Edit the file to set the correct server IP address, then save and exit.
- 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.