Monday, January 22, 2024

Which JRE or JDK am I using?

Here are some examples using which you can get java versions on linux systems:

  • java -version
  • java -XshowSettings:properties -version
  • ls -l $(which java)
  • ll /usr/lib/java*
  • ls -l /etc/alternatives/java
  • dirname $(readlink -f $(which java))
  • alternatives --display java
  • rpm -qa | grep jdk
  • ll /usr/lib/j*

No comments:

Post a Comment

Thank you for Commenting Will reply soon ......

Featured Posts

Permission Denied while deleteing a file or folder in Windows

“ Access denied ” while deleting a directory usually means the folder is in use, protected, owned by another user, or you lack sufficient pe...