http://www.confignotes.com/2013/09/sparc-t4-raid-setup/

How to configure a RAID volume with the internal Hard Drives on Oracle/SUN SPARC T4-1 and T4-2.

The RAID setup procedure below was tested in SPARC T4-1. This procedure also works on Netra SPARC T4-1 and T4-2.

1. At the Oracle ILOM prompt, disable auto-boot:

-> set /HOST/bootmode script=”setenv auto-boot? false”
Set ‘script’ to ‘setenv auto-boot? false’

2. Boot the system to OpenBoot PROM ({0} ok Prompt):

-> start /SYS
Are you sure you want to start /SYS (y/n)? y
Starting /SYS -> start /SP/console
Are you sure you want to start /SP/console (y/n)? y Serial console started. To stop, type #.

auto-boot? = false
{0} ok

 

3. View the preconfigured aliases:

{0} ok devalias

…..

scsi0 should be the alias for /pci@400/pci@1/pci@0/pci@4/scsi@0
and
scsi1 should be the alias for /pci@400/pci@2/pci@0/pci@4/scsi@0 ……

4. Select scsi0 (HDD attached to SCSI0):

{0} ok select scsi0

Note: To Unselect a device:
{0} ok unselect-dev

5. View HDDs attached to scsi0:

{0} ok show-children

FCode Version 1.00.61, MPT Version 2.00, Firmware Version 9.00.00.00

Target 9
Unit 0 Disk HITACHI H109030SESUN300G A31A 585937500 Blocks, 300 GB
SASDeviceName ….. PhyNum 0
Target a
Unit 0 Disk HITACHI H109030SESUN300G A31A 585937500 Blocks, 300 GB
SASDeviceName ….. PhyNum 1

6. Create RAID 1, Mirror RAID for example:

{0} ok 9 a create-raid1-volume
Target 9 size is 583983104 Blocks, 298 GB
Target a size is 583983104 Blocks, 298 GB
The volume can be any size from 1 MB to 285148 MB
What size do you want? [285148]
Volume size will be 583983104 Blocks, 298 GB
Enter a volume name: [0 to 15 characters] RAID1Demo
Volume has been created

7. Verify new RAID1 Volume:

{0} ok show-volumes
Volume 0 Target 381 Type RAID1 (Mirroring)
Name RAID1Demo WWID 0c88478f6c67b46b
Optimal Enabled Volume Not Consistent Background Init In Progress
2 Members 583983104 Blocks, 298 GB
Disk 0
Primary Optimal
Target 9 HITACHI H109030SESUN300G A31A PhyNum 0
Disk 1
Secondary Optimal
Target a HITACHI H109030SESUN300G A31A PhyNum 1

FCode Commands:

show-children Lists all connected physical drives and logical volumes.
show-volumes Lists all connected logical volumes in detail.
create-raid0-volume Creates a RAID 0 volume (minimum two targets).
create-raid1-volume Creates a RAID 1 volume (exactly two targets).
create-raid1e-volume Creates a RAID 1e volume (minimum three targets).
delete-volume Deletes a RAID volume.
activate-volume Re-activate a RAID volume after the motherboard has been replaced. Usage Example: 0 delete-volume, where 0 is volume 0

SPARC T4 RAID Setup (ZT)的更多相关文章

  1. 专题:mdadm Raid & LVM

    >FOR FREEDOM!< {A} Introduction Here's a short description of what is supported in the Linux R ...

  2. windows raid mode重新安装系统(win10)

    常规安装模式: STEP 1 进入bios 将高级设置中,引导模式设置为传统(旧模式)模式,一般存在legacy (旧模式),uefi with csm ,uefi without csm 三个模式, ...

  3. preseed.cfg分区设定案例

    很久之前做ubuntu的PXE配置ubuntu的preseed费了很大的力气,总结的不多,现在温习一下. 就我所接触的,有分区普通磁盘,LVM,和raid三种方式.其中前两中方式比较多,raid方式是 ...

  4. pxe+preseed安装配置

    Ubuntu Server 部署手册 pxe+tftp+vsftp+apache2 ========================================================== ...

  5. jdk8 jvm配置参数说明

    这些选项是特定于Java HotSpot虚拟机的通用选项.-X 显示所有可用-X选项的帮助. -Xbatch 禁用后台编译.默认情况下,JVM将该方法编译为后台任务,以解释器模式运行该方法,直到后台编 ...

  6. Guide: Solr performance tuning--转载

    原文地址:http://h3x.no/2011/05/10/guide-solr-performance-tuning Introduction I have for the last year be ...

  7. java命令行

    Launches a Java application. Synopsis java [options] classname [args] java [options] -jar filename [ ...

  8. 通过/proc/cpuinfo判断CPU数量、Multicores、Multithreading、Hyper-threading

    http://blog.sina.com.cn/s/blog_4a6151550100iowl.html 判断依据:1.具有相同core id的cpu是同一个core的超线程.2.具有相同physic ...

  9. CPU架构:CPU架构详细介绍

    1 概述 CPU架构是CPU商给CPU产品定的一个规范,主要目的是为了区分不同类型的CPU.目前市场上的CPU分类主要分有两大阵营,一个是intel.AMD为首的复杂指令集CPU,另一个是以IBM.A ...

随机推荐

  1. centos 验证mysql的安装

    一.验证mysql是否安装 1.whereis mysql:如果安装了mysql就会显示mysql安装的地址 2.which mysql:查看文件的运行地址 3.chkconfig --list my ...

  2. propertychange 属性说明

    propertychange(ie)和input事件 input是标准的浏览器事件,一般应用于input元素,当input的value发生变化就会发生,无论是键盘输入还是鼠标粘贴的改变都能及时监听到变 ...

  3. ES6-let命令

    let命令 用于声明变量,但是声明的变量只能在let命令所在的代码块内有效, { let a = 10; var b = 1; } 其中,a在代码块的外部是调用不到的.对于for循环的计数器里面,就很 ...

  4. 最实用的 Linux 命令行使用技巧

    我们可能每天都会要使用到很多的 Linux 命令行. 我们也会网络上知晓一些使用它们的小技巧,但是如果我们没有时常来进行练习,就有可能会忘掉怎么去使用它们. 所以我就决定把那些你可能会忘记的小提示和小 ...

  5. 关于JAVA一些知识的了解

    一.枚举类型 示例代码: public class EnumTest { public static void main(String[] args){   Size s=Size.SMALL;   ...

  6. uva10910 背包

    https://vjudge.net/problem/UVA-10910 给出N,T,P,表示N门考试考了T分,问有多少种不同的得分方案,已知每门课的得分不低于P. 令f[i][j]表示考了i门得了j ...

  7. Chrome Adobe flash player已过期怎么办

    越来越多的朋友感受到了来自谷歌chrome新版浏览器的压力,因为有不少朋友在使用新版chrome浏览器看视频时,却出现了这样的提示:Adobe flash player已过期!怎么办啊? 有网友抱怨: ...

  8. XML DOM - Range 对象

    Range对象 Range对象表示文档的连续范围区域,如用户在浏览器窗口中用鼠标拖动选中的区域.   dom标准Range对象 在IE中使用TextRange对象 range对象常用的建立方法在开发中 ...

  9. Ajax做无刷新分页

    1.主页面代码 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www ...

  10. 一段tcl代码

    #!/usr/bin/wish proc icanspeak {} { set name [.ent get] } { exec s $name } } label .lab -text " ...