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

How to Install the biosconfig Oracle System Management Driver on Windows 2008 R2 and Windows 2008 64-bit

How to Uninstall the biosconfig Oracle System Management Driver on Windows 2008 R2 and Windows 2008 64-bit

biosconfig Command Overview

How to View biosconfig Command Options

How to View biosconfig Version Information

What Changes the Boot List

Important Notes on Devices

Configuring the Device Boot Order

How to Set the First Boot Device for the Next Boot

How to Make a Persistent Change to Boot Order

How to Switch Boot Devices

How to Specify a Subset of Strings and a Subset of the Boot List

How to Move Boot List Entries

How to Change Boot Order Based on the PCI Bus, Device, or Function

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

create raid Subcommand

delete raid Subcommand

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

biosconfig Command Overview

The biosconfig command can be used to get current configuration settings or set configuration settings. When used to get configuration settings, biosconfig generates XML output showing the configuration. When used to set configuration settings, biosconfig reads XML input describing the configuration settings to be made.

Examples of biosconfig commands and their outputs are shown in the following table:

Command
Description
# biosconfig -get_version
Outputs to screen.
# biosconfig -get_version file.xml
Outputs to file.xml.
# biosconfig -get_versions > file.xml
Outputs to file.xml.
# biosconfig -get_version | some-command
Pipes the output to another command.
# biosconfig -set_bios_settings
Takes input from standard in.
# biosconfig -set_bios_settings file.xml
Takes input from file.xml.
# biosconfig -set_bios_settings < file.xml
Takes input from file.xml.

When a command fails, it returns one of several failure codes listed in biosconfig Error Codes.

See also:

How to View biosconfig Command Options

If you run biosconfig without arguments, you get the help output including the biosconfig command options:

See Also

How to View biosconfig Version Information

  1. Run biosconfig -get_version ver.xml, to get the following output:
    # biosconfig -get_version ver.xml
    
    Copyright (C) SUN Microsystems 2009.
    BIOSconfig Utility Version 2.1
    Build Date: Jul 16 2009
    Build Time: 15:55:12
    
    BIOSconfig Specification Version 2.4
    
    Success
  2. View the created ver.xml file, for example:
    <?xml version="1.0" encoding="UTF-8"?>
    <BIOSCONFIG>
        <BIOSCONFIG_VERSION>2.1</BIOSCONFIG_VERSION>
        <SPEC_VERSION>2.4</SPEC_VERSION>
        <SP_NETWORK_CONFIG>
            <DISCOVERY></DISCOVERY>
            <IP></IP>
            <NETMASK></NETMASK>
            <GATEWAY></GATEWAY>
        </SP_NETWORK_CONFIG>
        <PASSWORD_CONFIG>
            <PASSWORD></PASSWORD>
        </PASSWORD_CONFIG>
        <BOOT_ORDER_OVERRIDE>
            <HELP_STRING>FIRST=Choose one of: pxe, cdrom, disk,
    floppy, bios, none</HELP_STRING>
            <FIRST></FIRST>
            <HELP_STRING>CLEAR_CMOS=Choose Yes, No or leave it 
    empty, em.....</HELP_STRING>
            <CLEAR_CMOS></CLEAR_CMOS>
        </BOOT_ORDER_OVERRIDE>
        <BOOT_DEVICE_PRIORITY>
            <B0>
                <DEVICE_NAME></DEVICE_NAME>
                <PCI-B-D-F></PCI-B-D-F>
            </B0>
        </BOOT_DEVICE_PRIORITY>
    </BIOSCONFIG>

See Also