Skip to main content

Uninstallation

How to remove NSB from your system.

Option 1 โ€” Remove the Install Directoryโ€‹

rm -rf [install_path]/nsb
rm [install_path]/lib/pkgconfig/nsb.pc

This removes the installed library, headers, daemon binary, and pkg-config entry in one step.

Option 2 โ€” Use the Install Manifestโ€‹

CMake records every file it installed in install_manifest.txt, inside your build directory. You can use this to remove exactly what was installed, nothing more:

xargs rm < build/install_manifest.txt

Cleaning Up the Build Directoryโ€‹

Regardless of which option you used above, delete the build directory to remove all compiled artifacts:

rm -rf build/

Go Deeperโ€‹