本文介绍了从Java确定Linux版本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想知道是否有一种方法可以确定从JVM内部运行的Linux版本(即,区分RHEL4,RHEL5).我只是在寻找一种区分操作系统及其版本的一致方法.

I'm wondering if there's a way to determine which version of Linux I'm running (ie differentiate between RHEL4, RHEL5) from within the JVM. I'm just looking for a consistent way to differentiate between the operating systems and their versions.

推荐答案

您还可以查看 lsb_release

lsb_release -a

会给你类似的东西

cyril@merlin:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 8.10
Release:    8.10
Codename:   intrepid

这篇关于从Java确定Linux版本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-05 03:05