linux – 如何安装HP CentOS repo

前端之家收集整理的这篇文章主要介绍了linux – 如何安装HP CentOS repo前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我一直在寻找答案,但无法找到任何适合我的说明.

我想为我的新ML310e Gen8服务器安装HP CentOS repo,我可以为它设置洞察管理软件等.

谢谢

解决方法

你正在寻找 HP Software Delivery Repository (HP-SDR). process to install it is documented pretty well here.

我通过Puppet这样做,但手动运行也没什么大不了的:

有HP管理组件包(MCP)和HP Support Pack for ProLiant(SPP).从技术上讲,CentOS应该使用MCP,而Red Hat应该使用SPP.我只是将HP SPP用于所有方面.

在您的情况下,只需下载add_repo.sh脚本.该脚本很愚蠢,因为它需要安装redhat-lsb软件包.最后,您的命令将如下所示:

  1. # sh add_repo.sh -d RedHat spp

完成后,您可以通过yum安装HP代理.对于您的服务器,我建议是这样的:百胜安装HP-SNMP代理hpssa HP-健康hpsmh处的模板hpsmh处hpssacli HPONCFG也许百胜安装的kmod-hpahcisr如果你有一个动态智能阵列控制器.

完整命令用法

  1. [root@mdmarra ~]# sh add_repo.sh
  2.  
  3. Usage: add_repo.sh <RepoName>
  4.  
  5. eg: where <RepoName> might be "spp" (Support Pack for Proliant)
  6. or any directory found in http://downloads.linux.hp.com/SDR/repo
  7.  
  8. Normally the distribution,version,architecture and other information
  9. is auto-detected. You made override these attributes with the following:
  10.  
  11. [ -a <Architecture> ] override to specified Linux architecture
  12. [ -d <Distribution> ] override to specified Linux distribution
  13. [ -r <Release> ] override to specified Linux release
  14.  
  15. [ -R <Revision> ] override to specified product revison
  16.  
  17. [ -o <OutputDirectory> ] override default output directory
  18. [ -s <APTConfigFile> ] override default APT configuration file
  19. [ -y <YUMConfigFile> ] override default YUM configuration file
  20. [ -z <ZYPPConfigFile> ] override default ZYPP configuration file
  21.  
  22. [ -m <TransportMethod> ] override default transport protocol
  23. (ftp or http)
  24. [ -w <WaystationHost> ] override default waystation host
  25. [ -u <URLPrefix> ] override default URL prefix

猜你在找的Linux相关文章