服务器bios&raid管理
新服务器配置流程
https://github.com/alces-software/knowledgebase/wiki/server-dell-rseries-r630
dell
DTK(syscfg, raidcfg)
http://zh.community.dell.com/techcenter/systems-management/w/wiki/380.openmanage
https://www.aglt2.org/wiki/bin/view/AGLT2/Dell/DellDeploymentToolkit
http://linux.dell.com/repo/hardware/latest/platform_independent/rh60_64/DTK/
srvadmin-all --- Install all OMSA components
srvadmin-base --- Install only base OMSA, no web server
srvadmin-rac4 --- Install components to manage the Dell Remote Access Card 4
srvadmin-rac5 --- Install components to manage the Dell Remote Access Card 5
srvadmin-idrac --- Install components to manage iDRAC
srvadmin-idrac7 --- Install components to manage iDRAC7
srvadmin-webserver --- Install Web Interface
srvadmin-storageservices --- Install RAID Management
dtk-scripts --- Install DTK
dcism --- Install iDRAC Service Module
自动配置
https://www.jslink.org/linux/dell-dtk-bios.html
label dtk_bios_set
kernel dtk/SA.1
append initrd=dtk/SA.2 ramdisk_size=65536 share_type=tftp share_location=dtk share_script=bios.sh tftp_ip=<PXE引导服务器地址>
#!/bin/sh -e
#/opt/dell/toolkit/bin/syscfg --virtualization=disable
#/opt/dell/toolkit/bin/syscfg --cpucle=enable
/opt/dell/toolkit/bin/syscfg --logicproc=disable
#/opt/dell/toolkit/bin/syscfg --turbomode=enable
#/opt/dell/toolkit/bin/syscfg --cstates=enable
/opt/dell/toolkit/bin/syscfg --serialcomm=on
#/opt/dell/toolkit/bin/syscfg --conboot=enable
#/opt/dell/toolkit/bin/syscfg --memintleave=disable
/opt/dell/toolkit/bin/syscfg power --profile=maxperformance --setuppwdoverride #关闭节能模式,性能最大化
reboot
supermicro
SUM
http://www.supermicro.com.tw/products/nfo/SMS_SUM.cfm
Dell PowerEdge RAID Controller (PERC)
http://www.dell.com/learn/us/en/04/campaigns/dell-raid-controllers
导入idrac license
yum install srvadmin-idrac7 srvadmin-idracadm7
idracadm7 license import my.xml -c idrac.embedded.1
idracadm7 license view
服务器bios&raid管理的更多相关文章
- BMC ipmitool 对linux服务器进行IPMI管理
IPMI是智能型平台管理接口(Intelligent Platform Management Interface)的缩写,是管理基于 Intel结构的企业系统中所使用的外围设备采用的一种工业标准,该标 ...
- 软RAID管理命令mdadm详解
软RAID管理命令mdadm详解 mdadm是linux下用于创建和管理软件RAID的命令,是一个模式化命令.但由于现在服务器一般都带有RAID阵列卡,并且RAID阵列卡也很廉价,且由于软件RAID的 ...
- 安装CentOS 6.x出现Disk sda contains BIOS RAID metadata
今天在安装CentOS 6.6的时候,当进到检测硬盘步骤的时候,总是过不去,报错如下:Disk sda contains BIOS RAID metadata, but is not part of ...
- 使用 ipmitool 实现 Linux 系统下对服务器的 ipmi 管理
http://www.ibm.com/developerworks/cn/linux/l-ipmi/ 1.简介 IPMI(Intelligent Platform Management Interfa ...
- 服务器ipmi远程管理
DELL iDRAC (Integrated Dell™ Remote Access Controller )是 Dell PowerEdge 系列服务器上的远程管理方案, 11代 12代服务器已经集 ...
- 服务器BIOS和BMC等知识详解
一个执着于技术的公众号 引言:以BIOS为核心的固件产业,是信创产业链的重要组成部分,可被誉为信创产业的"山海关".在计算机体系中,BIOS 有着比操作系统更为底层和基础性的作用, ...
- 谈谈我的windows服务器运维管理
我们开发的页游General War(http://gw.gamebox.com)上线运营也有半年多了,服务器的开发到运维基本都由我一手包办,在服务器上线之后我们又招了一个程序员接手后续功能的开发,而 ...
- Dell 服务器做Raid
Dell 服务器做Raid DELL R720 服务器 RAID阵列卡配置介绍 (H310) 关于 RAID 5 与热备份(Hot Spare) 在不同RAID组间使用热备盘——Global Hot ...
- 使用本地服务器组来管理局域网或公网上的SQLSERVER
使用本地服务器组来管理局域网或公网上的SQLSERVER 测试的两台机器 Windows7 64位 SQLSERVER2005 SP5 Windows7 64位 SQLSERVER2012 S ...
随机推荐
- POJ_3414 Pots 【复杂BFS】
一.题面 You are given two pots, having the volume of A and B liters respectively. The following operati ...
- [转] Chrome - 浏览器跨域访问设置(附:新老版本两种设置方法)
[From] http://www.hangge.com/blog/cache/detail_1703.html 在进行前后分离的 webapp 开发,或者 H5 移动 App 开发时,我们会使用 P ...
- linux 文件截取
相关函数:open, ftruncate 表头文件:#include <unistd.h> 定义函数:int truncate(const char *path, off_t length ...
- C++中namespace的使用
命名空间(namespace)是一种描述逻辑分组的机制,可以将按某些标准在逻辑上属于同一个任务中的所有类声明放在同一个命名空间中.标准C++库(不包括标准C库)中所包含的所有内容(包括常量.变量.结构 ...
- maven-eclipse-plugin downloadSources downloadJavadocs
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-eclip ...
- maven的resources插件
<build><sourceDirectory>src/jvm</sourceDirectory> <testSourceDirectory>test/ ...
- display inline-block 间隔
1.如果li横排用display:inline-block; 则li之间不能有间隔 必须连着一起,所以才一般用float:left; .today-wrap{ position: relative; ...
- js 反转字符串的实现
在这里只推荐简单易懂的方法,赶紧get !!! 字符串转数组,反转数组,数组转字符串. split(""):根据空字符串拆分数组 reverse():数组反转元素位置 join(& ...
- http请求报文和响应报文(2)
接上篇: 3.回应报文 理解回应报文,首先要弄清回应报文中的状态码. 相比于请求报文,对于响应报文,个人觉得还蛮有趣的. 主要由三部分组成:协议版本.状态码.状态码描述 3.1状态码 **常见的状态码 ...
- (转)Python格式化字符 %s %d %f
Python格式化字符 %s %d %f 原文:http://blog.csdn.net/huangfu77/article/details/54807835 格式 描述%% 百分号标记 #就是输出一 ...