CN105549997A - 一种基于fru-change的Linux系统下刷新FRU工具 - Google Patents

一种基于fru-change的Linux系统下刷新FRU工具 Download PDF

Info

Publication number
CN105549997A
CN105549997A CN201510915956.9A CN201510915956A CN105549997A CN 105549997 A CN105549997 A CN 105549997A CN 201510915956 A CN201510915956 A CN 201510915956A CN 105549997 A CN105549997 A CN 105549997A
Authority
CN
China
Prior art keywords
fru
change
customized
linux system
name
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Pending
Application number
CN201510915956.9A
Other languages
English (en)
Inventor
李强
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Inspur Electronic Information Industry Co Ltd
Original Assignee
Inspur Electronic Information Industry Co Ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Inspur Electronic Information Industry Co Ltd filed Critical Inspur Electronic Information Industry Co Ltd
Priority to CN201510915956.9A priority Critical patent/CN105549997A/zh
Publication of CN105549997A publication Critical patent/CN105549997A/zh
Pending legal-status Critical Current

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/60Software deployment
    • G06F8/65Updates

Landscapes

  • Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • General Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Computer Security & Cryptography (AREA)
  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • General Factory Administration (AREA)
  • Management, Administration, Business Operations System, And Electronic Commerce (AREA)

Abstract

本发明提供一种基于fru-change的Linux系统下刷新FRU工具,该脚本将定制化的信息做为参数在执行脚本时进行输入,同时该工具也对用户使用时可能出现的错误情况进行错误提示以帮助客服人员能够正确顺利的使用该工具;无需对于每个定制产品进行定制化的制作脚本与测试,提高的工作效率。本方法适用于Linux系统下对于小批量定制机器进行定制化信息的刷新,使用该工具满足一个系列产品在定制化过程的需求,无需对于每个定制产品进行定制化的制作脚本与测试,提高我们的工作效率。

Description

一种基于fru-change的Linux系统下刷新FRU工具
技术领域
本发明涉及Linux系统下信息的刷新,具体涉及一种基于fru-change的Linux系统下刷新FRU工具。
背景技术
随着IT领域技术的不断发展,传统信息化服务以及日趋强大的云计算服务,对服务器的安全可靠要求越来越高。作为服务器产品提供商,一款服务器无论是在研发阶段还是生产阶段都需要对产品进行安全性测试,从而严格保证该产品的安全性,数据的安全与高效也是服务器一个重要指标。
机器的基本信息是客户了解我们公司产品的门户,也是我们在市场上的名声,我们也会遇到小批量客户需要定制化信息的需求,由于这样的需求随着我们产品在市场上占有率提高而不断的增加,修改机器基本信息就成了研发和测试人员经常要进行的一些工作,这个过程时间相对较长,而且其中重复性的东西很多,为了提高我们的工作效率,也避免由于在这个过程中出错问题与错误给公司利益造成损失,一种能够适用一个平台的基本信息刷新工具就显得尤为重要。
发明内容
本发明的技术任务是针对现有技术的不足,提供一种基于fru-change的Linux系统下刷新FRU工具。本方法将定制化的信息做为参数在执行脚本时进行输入,无需对于每个定制产品进行定制化的制作脚本与测试,提高的工作效率。
本发明解决其技术问题所采用的技术方案是:
一种基于fru-change的Linux系统下刷新FRU工具,该脚本将定制化的信息做为参数在执行脚本时进行输入,同时该工具也对用户使用时可能出现的错误情况进行错误提示以帮助客服人员能够正确顺利的使用该工具;无需对于每个定制产品进行定制化的制作脚本与测试,提高的工作效率。
步骤如下:
#!/bin/bash
usage(){
echo-e"\e[1;31mUsage:\e[0m"
echo-e"\e[1;31m$0<BP_name><BM_name><PN_name><PM_name><PV_name>\e[0m"
exit0
}
if[$#-lt5]
then
echo-e"\e[1;31mFewArguments!\e[0m"
usage
elif[$#-gt5]
then
echo-e"\e[1;31mTooManyArguments!\e[0m"
usage
else
BP_name=$1
BM_name=$2
PN_name=$3
PM_name=$4
PV_name=$5
./fru-change_x64-kcsBP$BP_name
./fru-change_x64-kcsBM$BM_name
./fru-change_x64-kcsPN$PN_name
./fru-change_x64-kcsPM$PM_name
./fru-change_x64-kcsPV$PV_name
fi
本发明的一种基于fru-change的Linux系统下刷新FRU工具与现有技术相比,所产生的有益效果是,本发明适用于Linux系统下对于小批量定制机器进行定制化信息的刷新,使用该工具满足一个系列产品在定制化过程的需求,无需对于每个定制产品进行定制化的制作脚本与测试,提高我们的工作效率。
具体实施方式
下面对本发明的一种基于fru-change的Linux系统下刷新FRU工具作以下详细地说明。
一种基于fru-change的Linux系统下刷新FRU工具,该脚本将定制化的信息做为参数在执行脚本时进行输入,同时该工具也对用户使用时可能出现的错误情况进行错误提示以帮助客服人员能够正确顺利的使用该工具;无需对于每个定制产品进行定制化的制作脚本与测试,提高的工作效率。
步骤如下:
#!/bin/bash
usage(){
echo-e"\e[1;31mUsage:\e[0m"
echo-e"\e[1;31m$0<BP_name><BM_name><PN_name><PM_name><PV_name>\e[0m"
exit0
}
if[$#-lt5]
then
echo-e"\e[1;31mFewArguments!\e[0m"
usage
elif[$#-gt5]
then
echo-e"\e[1;31mTooManyArguments!\e[0m"
usage
else
BP_name=$1
BM_name=$2
PN_name=$3
PM_name=$4
PV_name=$5
./fru-change_x64-kcsBP$BP_name
./fru-change_x64-kcsBM$BM_name
./fru-change_x64-kcsPN$PN_name
./fru-change_x64-kcsPM$PM_name
./fru-change_x64-kcsPV$PV_name
Fi
本方法适用于Linux系统下对于小批量定制机器进行定制化信息的刷新,使用该工具满足一个系列产品在定制化过程的需求,无需对于每个定制产品进行定制化的制作脚本与测试,提高我们的工作效率。

Claims (1)

1.一种基于fru-change的Linux系统下刷新FRU工具,其特征在于该脚本将定制化的信息做为参数在执行脚本时进行输入,同时该工具也对用户使用时可能出现的错误情况进行错误提示以帮助客服人员能够正确顺利的使用该工具;无需对于每个定制产品进行定制化的制作脚本与测试,提高的工作效率。
CN201510915956.9A 2015-12-11 2015-12-11 一种基于fru-change的Linux系统下刷新FRU工具 Pending CN105549997A (zh)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201510915956.9A CN105549997A (zh) 2015-12-11 2015-12-11 一种基于fru-change的Linux系统下刷新FRU工具

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201510915956.9A CN105549997A (zh) 2015-12-11 2015-12-11 一种基于fru-change的Linux系统下刷新FRU工具

Publications (1)

Publication Number Publication Date
CN105549997A true CN105549997A (zh) 2016-05-04

Family

ID=55829195

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201510915956.9A Pending CN105549997A (zh) 2015-12-11 2015-12-11 一种基于fru-change的Linux系统下刷新FRU工具

Country Status (1)

Country Link
CN (1) CN105549997A (zh)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN107465544A (zh) * 2017-08-04 2017-12-12 郑州云海信息技术有限公司 一种设置fru的系统及方法

Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101825875A (zh) * 2010-05-25 2010-09-08 奇瑞汽车股份有限公司 刷新软件的方法及装置
CN104111857A (zh) * 2014-08-13 2014-10-22 浪潮电子信息产业股份有限公司 一种多机型bios参数自动配置的方法
CN104375860A (zh) * 2014-10-30 2015-02-25 浪潮电子信息产业股份有限公司 一种对高密度机柜节点bmc批量刷新的方法
CN104572209A (zh) * 2015-01-21 2015-04-29 浪潮电子信息产业股份有限公司 一种Linux系统下的主板VR Firmware升级方法
US20150205617A1 (en) * 2014-01-23 2015-07-23 International Business Machines Corporation Evaluation of field replaceable unit dependencies and connections
CN104899061A (zh) * 2015-05-27 2015-09-09 浪潮电子信息产业股份有限公司 一种自动刷新fru信息的方法

Patent Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101825875A (zh) * 2010-05-25 2010-09-08 奇瑞汽车股份有限公司 刷新软件的方法及装置
US20150205617A1 (en) * 2014-01-23 2015-07-23 International Business Machines Corporation Evaluation of field replaceable unit dependencies and connections
CN104111857A (zh) * 2014-08-13 2014-10-22 浪潮电子信息产业股份有限公司 一种多机型bios参数自动配置的方法
CN104375860A (zh) * 2014-10-30 2015-02-25 浪潮电子信息产业股份有限公司 一种对高密度机柜节点bmc批量刷新的方法
CN104572209A (zh) * 2015-01-21 2015-04-29 浪潮电子信息产业股份有限公司 一种Linux系统下的主板VR Firmware升级方法
CN104899061A (zh) * 2015-05-27 2015-09-09 浪潮电子信息产业股份有限公司 一种自动刷新fru信息的方法

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN107465544A (zh) * 2017-08-04 2017-12-12 郑州云海信息技术有限公司 一种设置fru的系统及方法

Similar Documents

Publication Publication Date Title
WO2014110167A3 (en) Integrated machine learning for a data management product
PH12018501668A1 (en) Electronic payment service processing method and device, and electronic payment method and device
BR112013018425A2 (pt) método para analisar e diagnosticar sistemas de controle de automatização de processo em grande escala
CN107526007B (zh) 故障类型的识别方法及装置
CN104360922A (zh) 一种基于ipmitool的自动监测BMC工作状态的方法
MY170192A (en) Data processing apparatus, information processing method, and storage medium
US20150302044A1 (en) Enabling testing of production systems without affecting customer data sets system and method
IN2014CN03944A (zh)
CN103914501A (zh) 基于海量实时数据库的电力行业实时报表方法
US9734004B2 (en) Analytics output for detection of change sets system and method
MX341218B (es) Monitoreo de aplicacion.
CN105549997A (zh) 一种基于fru-change的Linux系统下刷新FRU工具
CN205450246U (zh) 一种便携式智能电表充值故障检测装置
CN113515462A (zh) 用于测试的方法、装置、设备以及存储介质
Nguyen Using control charts for detecting and understanding performance regressions in large software
PH12014501547A1 (en) System, method and computer program arranged to facilitate a transaction
CN105511923A (zh) 一种基于ipmicfg的ms-dos下刷新fru工具
US8972072B2 (en) Optimizing power consumption in planned projects
CN204388779U (zh) 高效平面度检测装置
CN203911987U (zh) 一种基于云计算的数据处理系统
He et al. Application of occupational hazard risk index model in occupational health risk assessment in a decorative coating manufacturing enterprises
CN104348674A (zh) 服务器运行电力响应监控方法
CN103812714A (zh) 一种排除网站临时故障的方法
Long et al. Verification and comparison of impulse voltage measuring software
CN104732330A (zh) 基于大数据的纺织企业碳足迹分布式核算系统

Legal Events

Date Code Title Description
C06 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
RJ01 Rejection of invention patent application after publication
RJ01 Rejection of invention patent application after publication

Application publication date: 20160504