我可以通过几种方式检查正在运行Ruby代码的平台的操作系统:
RUBY_PLATFORM
:https://stackoverflow.com/a/171011/462015 RbConfig::CONFIG['host_os']
:https://stackoverflow.com/a/13586108/462015 是否可以知道正在运行什么Linux发行版?例如,基于Debian或基于Red Hat的发行版。
最佳答案
如上面在注释部分中指出的那样,似乎没有确定“在每个发行版中都能工作”的方式。接下来是我用来检测脚本正在哪种环境下运行的内容:
def linux_variant
r = { :distro => nil, :family => nil }
if File.exists?('/etc/lsb-release')
File.open('/etc/lsb-release', 'r').read.each_line do |line|
r = { :distro => $1 } if line =~ /^DISTRIB_ID=(.*)/
end
end
if File.exists?('/etc/debian_version')
r[:distro] = 'Debian' if r[:distro].nil?
r[:family] = 'Debian' if r[:variant].nil?
elsif File.exists?('/etc/redhat-release') or File.exists?('/etc/centos-release')
r[:family] = 'RedHat' if r[:family].nil?
r[:distro] = 'CentOS' if File.exists?('/etc/centos-release')
elsif File.exists?('/etc/SuSE-release')
r[:distro] = 'SLES' if r[:distro].nil?
end
return r
end
这不是处理地球上每个GNU/Linux发行版的完整解决方案。实际上,远非如此。例如,尽管OpenSUSE和SUSE Linux Enterprise Server是两个完全不同的野兽,但它们没有区别。此外,即使只有几个发行版,这也是一个意大利面条。但这也许是一个可以建立的基础。
您可以从 source code的Facter中找到一个更完整的分发检测示例,该示例除其他事项外,还用于将事实提供给配置管理系统Puppet。
关于ruby - 在Ruby中检测Linux发行版/平台,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25970280/