linuxnode.jsoperating-systemplatform

How to distinguish between different operating system distros in node.js?


In node you have access to process.os() and process.platform, which give you one of 5 values:

'darwin'
'freebsd'
'linux'
'sunos'
'win32'

But how do you print out the specific distro, such as one of these?

http://en.wikipedia.org/wiki/List_of_Linux_distributions

'ubuntu'
'gentoo'
'fedora'
'SUSE Linux'
'CentOS'
dozens/hundreds more

If there is no standard approach, is there any current preferred solution out there? Mainly this would be useful for being able to tell the difference (programmatically) between ubuntu and some of the other popular EC2 image oses.


Solution

  • To summarize all the responses: There is no easy way to determine the current Linux distribution.

    However here are a few thing you could start with.

    If you have a list of possible distributions that could happen, you should be able to get that information somehow. If you want a generic approach I'll guess there will be no absolute answer.