彻底删除 Eclipse

彻底删除 Eclipse

每当我尝试在 Eclipse 中运行小程序时,都会显示此错误。几天前我尝试运行同一程序时并没有显示此错误。

Smooth is not supported by this hardware (or driver)
Unfolding Map v0.9.7 (UCSD edition)
Using OpenGLMapDisplay with processing.opengl.PGraphics2D
#
# A fatal error has been detected by the Java Runtime Environment:
#
#  SIGSEGV (0xb) at pc=0x00007f4168bcc040, pid=3497,tid=139919047476992
#
# JRE version: Java(TM) SE Runtime Environment (8.0_72-b15) (build 1.8.0_72-b15)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.72-b15 mixed mode linux-amd64 compressed oops)
# Problematic frame:
# C  [i965_dri.so+0x3ca040]
#
# Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again
#
# An error report file with more information is saved as:
# /home/coder/workspace/UCSDUnfoldingMaps/build/hs_err_pid3497.log
Compiled method (nm)   22323 2003     n 0       jogamp.opengl.x11.glx.GLX::dispatch_glXSwapBuffers0 (native)
total in heap  [0x00007f417c977f50,0x00007f417c9782a0] = 848
relocation     [0x00007f417c978078,0x00007f417c9780c0] = 72
main code      [0x00007f417c9780c0,0x00007f417c978298] = 472
oops           [0x00007f417c978298,0x00007f417c9782a0] = 8
#
# If you would like to submit a bug report, please visit:
#   http://bugreport.java.com/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#

我尝试了给出的解决方案Eclipse (ADT) 崩溃 无法写入核心转储。核心转储已被禁用讨论,但毫无用处。

我面临的另一个问题是我甚至无法卸载 eclipse。每当我尝试使用命令时

sudo apt-get 自动删除 eclipse

或者使用命令

sudo apt-get 清除 eclipse

它说包 eclipse 未安装,因此未删除。但我确实安装了 Eclipse。因此,如果有人能告诉我完全卸载 eclipse 以进行全新安装的确切方法,那就更好了。我最初下载了 tar.gz 文件,然后将其解压缩以进行 eclipse 的初始设置。

答案1

我认为你应该修复它而不是卸载 Eclipse。它是任何 Java 程序员都需要的必要 IDE 之一。如果需要,你可以尝试安装程序附带的较新版本的 Eclipse,如 MARs。回到最初的问题,似乎你已经解压了 Eclipse。所以你最好的选择是搜索它的安装位置,然后简单地执行

rm -rf <one level above the Eclipse installation dir>

将其彻底删除。

相关内容