In certain circumstances, such as a broken or mis-configured software package, it may be necessary to uninstall the ExacqVision Server, Client or Web Service software.
On Linux (Ubuntu) this can be accomplished via the Synaptic Package Manager. But if that is not installed or you are unsure how to find or use this, an uninstall can be completed through the Terminal.
- Open Terminal by pressing CTRL+ALT+T.<br><br>
- Type in the command below for the program you want to uninstall:
- Server:
sudo apt remove edvrserver
- Client:
sudo apt remove edvrclient
- Web Service:
sudo apt remove webservice
<br><br>
- Server:
NOTE: The apt
command is a higher level package manager. If you wish to use a lower-level package manager with more options, or are using Ubuntu 14.04 or earlier, use apt-get
instead of apt
.
NOTE: If using apt-get
adding the purge
parameter forces removal of program configuration files. An example use with removal of the server application is: sudo apt-get remove --purge edvrserver
<br>