JavaScript is required to for searching.
Skip Navigation Links
Exit Print View
Oracle Server CLI Tools and IPMItool 2.1 User's Guide
search filter icon
search icon

Document Information

Preface

Documentation and Feedback

About This Documentation (PDF and HTML)

Change History

Oracle Hardware CLI Tools Overview

Installing Components Using the Oracle Hardware Management Pack Installer

Getting Started

Prerequisites

Installation Issues

Getting the Software

Installing Hardware Management Pack Components Using Installer

CLI Tools Command Syntax and Conventions

CLI Tools Command Syntax

CLI Tools Device-Naming Convention

Using the biosconfig Tool

biosconfig Dependencies

biosconfig Terminology

Using biosconfig

biosconfig for Solaris OS

biosconfig for Windows

biosconfig Command Overview

What Changes the Boot List

Important Notes on Devices

Configuring the Device Boot Order

BIOS CMOS Configuration

Commands That Produce Unrelated, Innocuous, Extra Output

Using the fwupdate Tool

fwupdate Command-Line Interface

update Subcommand

list Subcommand

reset Subcommand

Device-Naming Convention

Execution Summary

Using the raidconfig Tool

raidconfig Overview

raidconfig Command Overview

list Subcommand

listSubcommand Overview

list Options

How To Show a Brief Listing

How To Show a Detailed Listing

How To Show a Brief Listing of a Disk

create raid Subcommand

How To Create a RAID Volume

delete raid Subcommand

How To Delete a RAID Volume

add spare Subcommand

remove spare Subcommand and Options

modify Subcommand

export Subcommand

raidconfig export Options

import Subcommand

Using the ilomconfig Tool

ilomconfig Overview

ilomconfig Commands

Using ipmitool for Windows

ipmitool Overview

Sun IPMI System Management Driver 2.1

Using ipmitool for Configuration Tasks

CLI Tools Error Codes

Common Error Codes

biosconfig Error Codes

raidconfig Error Codes

ilomconfig Error Codes

fwupdate Error Codes

Index

create raid Subcommand

The create raid subcommand can be used to create RAID volumes. This subcommand must take at least one of the following required options:

Short Option
Long Option
Description
-d
--disks
List of disks — A list of disks with a comma separating the disk ID numbers.
-c
--controller
The controller ID number — When specific disks are not supplied, this option indicates which controller to use.
-n
--number-disks
Number of disks — The number of disks in the array. The tool chooses from the available disks. If there are not enough disks available to match the number, the command fails.
N/A
--level
Level — The RAID level supported by the controller. For example, 0, 1, 1E, 5, 10, 50, 60, etc. The levels supported for a particular controller can be seen in the raid levels supported field of the show command. Not all controllers support all RAID levels. For example, Adaptec supports 0, 1, 5, 10, and 50. Since any RAID level can be set, it is possible that the command results in an error if the RAID level is not supported. If no RAID level is supplied, level 0 is assumed.
N/A
--stripe-size
Stripe size — In kilobytes, the stripe size of the RAID volume to be created. If this option is not supplied, a stripe size of 128 K is used.
N/A
--legs
Leg size in number of disks — For nested RAID levels (10, 50), specifies the size of the RAID components in number of physical disks.
N/A
--name
Name — The user-defined name that identifies the RAID volume. This name can be set to an empty string ("").

The maximum capacity of the RAID volume is not configurable. The storage library does not currently support configuring RAID from partial disks. You can only create RAID volumes from full disks not partial and the disks must all be of the same size.

How To Create a RAID Volume

The following are command examples for the create subcommand:

  1. To create a RAID 0 volume with capacity 2 Gb and stripe size 128K on controller 1, issue the following command:

    raidconfig create raid --stripe-size 128 -d c1d0,c1d1

  2. To create a RAID 1 volume on controller 2 using 2 available disks, issue the following command:

    raidconfig create raid -c c2 --raid-level 1 --number-disks 2

See Also

create raid Subcommand