Issue
I installed netbeans 8.2 on Centos 7.
I get this error:
java.lang.RuntimeException: failed to load system cursor: DnD.Cursor.CopyDrop : cannot load system cursor: CopyDrop.32x32
at java.awt.dnd.DragSource.load(DragSource.java:135)
at java.awt.dnd.DragSource.<clinit>(DragSource.java:148)
Java version :
openjdk version "1.8.0_111"
OpenJDK Runtime Environment (build 1.8.0_111-b15)
OpenJDK 64-Bit Server VM (build 25.111-b15, mixed mode)
How can I fix this?
Solution
I found the solution.
1- Edit following file:
nano /etc/default/grub
2- Replace rhgb quiet
to nomodeset
.
3- Run on terminal grub2-mkconfig -o /boot/grub2/grub.cfg
4- Reboot.
Actually this not solve the problem. It's only ignore it.
Answered By - onder
Answer Checked By - Senaida (JavaFixing Volunteer)