如何彻底删除 Netbeans

如何彻底删除 Netbeans

我无法从系统中删除 Netbeans。当我找到uninstall.sh位于 的文件时/usr/local/netbeans-12.4/,它无法执行。当我cd进入该目录并运行 时./uninstall.sh,我得到:

Configuring the installer...
Searching for JVM on the system...
Extracting installation data...
Running the installer wizard...

Exception: java.lang.NoClassDefFoundError thrown from the UncaughtExceptionHandler in thread "main"

知道如何从我的系统(20.04 Focal Fossa)中彻底删除与该软件相关的所有内容吗?谢谢。

答案1

以管理员身份运行命令(sudo ./uninstall.sh)为我提供了更多有关如何解决此问题的信息。

  1. 控制台输出给了我信息,该问题位于/root/.nbi/log/20231106131640.log
  2. 当我打开此文件时,问题是这样的:Can't load library: /usr/lib/jvm/java-17-openjdk-amd64/lib/libawt_xawt.so
  3. 我再次安装了JDK:sudo apt install openjdk-17-jdk

现在,uninstall.sh(以及整个Netbeans软件)可以按预期运行。

相关内容