Guest User

Untitled

a guest
May 20th, 2018
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. ### Sorting out Broken in Projects
  2.  
  3. Find location of JDK or openJDK on Ubuntu
  4.  
  5. ```
  6. update-alternatives --list java
  7. ```
  8. Output will look like:
  9. ```
  10. /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java
  11. ```
  12.  
  13. Then run ``netbeans`` with ``--jdkhome``
  14.  
  15. ```
  16. ./netbeans --jdkhome /usr/lib/jvm/java-8-openjdk-amd64
  17. ```
Add Comment
Please, Sign In to add comment