如何在不使用第三方工具的情况下在 perl 中获取远程计算机操作系统版本
我有一个要求,我必须在 Perl 中找到在远程计算机上运行的操作系统。 该机器可以运行在从windows、linux到aix的任何操作系统上。 我见过很少的解决方案,但不幸的是,所有解决方案都需要安装第三方工具,在这种情况下无法完成。
您能否指导我通过某种方式获取远程计算机操作系统详细信息(名称和版本),而无需安装第三方工具。
I have requirement where in I have to find OS running on remote machine in perl.
The machine can be running on any OS from windows, linux to aix.
I have seen few solutions but unfortunately all requires to install third part tool which cannot be done in this case.
Can you please guide me to some way to get the remote machine OS details (name and version) without need to install third party tool.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您有一台远程计算机R和一台本地计算机L。你到底在做什么?
如果您正在执行第二种情况,请查看 Config 模块。这是一个标准的 Perl 模块,至少自 Perl 5.8 起已包含在所有 Perl 版本中。您可以提取数百个参数。看一下
osname
和osver
。使用起来非常简单:
You have a remote machine R and a local machine L. What exactly are you doing?
If you're doing the second scenario, take a look at the Config module. This is a standard Perl module, and has been included in all versions of Perl since at least Perl 5.8. There are hundreds of parameters that you can pull up. Take a look at
osname
andosver
.It's pretty simple to use:
如果您可以登录到每台远程计算机并且该计算机上安装了 perl,则只需解析 perl -V 的输出即可。例如
If you can log in to each remote machine and if perl is installed on that machine, then just parse the output of
perl -V
. For example