Sponsored Content
Full Discussion: Adaptec ARCCONF on sun
Special Forums UNIX and Linux Applications Adaptec ARCCONF on sun Post 302486791 by msarro on Monday 10th of January 2011 09:56:05 AM
Old 01-10-2011
Adaptec ARCCONF on sun

Hey everyone.
I am trying to set up four sun servers. They all came with an adaptec storagetek raid liveCD. On the liveCD there is a utility called "Arcconf" which is supposed to be used to configure the storage arrays. The example given in their documentation uses this as an example:

Code:
ARCCONF CREATE <Controller#> LOGICALDRIVE [Options] <Size> <RAID#> <CHANNEL#
DRIVE#> [CHANNEL# DRIVE#] ... [noprompt]
ARCCONF CREATE <Controller#> LOGICALDRIVE RVOLUME <LD#> <LD#> [LD#] ... [noprompt]
ARCCONF CREATE <Controller#> JBOD <CHANNEL# DRIVE#> [CHANNEL# DRIVE#] ...
[noprompt]

So I'm trying to set up a 4 disk raid 10 array. When I try to type in the following command, it says that its invalid syntax. I also tried creating two raid 1's and then concatenating them with a raid 0 but it gave me a bunch of errors when doing that.

Here's the command I used:
Code:
arcconf create 1 LOGICALDRIVE MAX 10 0 4 0 5 0 6 0 7

Any help would be greatly appreciated, their examples only cover very basic arrays (raid 0, and JBOD) and I can't find any other examples floating around on google.
 

7 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

adaptec scsi host adapter

Can anyone out there help me out? I'm trying to install a scsi tape back up on a sys running sco openserver 5.0.4. When I go through the steps for mkdev tape it seems like it works, but when I reboot I still don't see the tape. Also when it boots up I get a scsi bios not installed error. I've... (1 Reply)
Discussion started by: goatboy_tx
1 Replies

2. UNIX for Dummies Questions & Answers

driver for Adaptec 29160

Does anyone know what driver is used for the Adaptec 29160 SCSI controller? (3 Replies)
Discussion started by: promed
3 Replies

3. UNIX for Dummies Questions & Answers

Dell - Installing SCO Openserver 6.0 probs with ADAPTEC 1210SA

Trying to install Sco OSR 6.0 on Dell Optiplex with SERIAL ATA ADADPTEC 1210SA controller. Sco says its sipported by the AACRAID driver but on installation its says that it doesnt recognise the partitions In the middle of re-formatting at the moment - just wondered if anyone had anu... (0 Replies)
Discussion started by: farmacy
0 Replies

4. SCO

configure Adaptec 29320ALP Ultra 320 SCSI Card in IBM X3400

I am installing SCO UNIX 5.0.6 in X3400, every thing are install except Adaptec 29320ALP Card (Attached DAT Drive) because their driver are available in btld formate Fllopy DISk and SCO Unix 5.0.6 not support USB Floppy, Can anybody inform us any other method to installed the Adaptec Ultra 120... (3 Replies)
Discussion started by: hafizurr
3 Replies

5. UNIX for Dummies Questions & Answers

Sun Solaris 10: How do I create a bootup disc? The Sun website confuses me

Hey there, I am starting a Computer Science Foundation year at the end of this month and am trying to get a little bit ahead of the game. I have always wanted to learn Unix and am currently struggling with creating a boot disc to run Solaris (I have chosen to study this) from as opposed to... (0 Replies)
Discussion started by: Jupiter
0 Replies

6. UNIX for Advanced & Expert Users

Need help to configure Adaptec AHA-2930CU

Need a procedure on how to configure adaptec SCSI pci card. (6 Replies)
Discussion started by: real-chess
6 Replies

7. Solaris

Sun Fire 280R Sun Solaris CRT/Monitor requirements

I am new to Sun. I brought Sun Fire 280R to practice UNIX. What are the requirements for the monitor/CRT? Will it burn out old non-Sun CRTs? Does it need LCD monitor? Thanks. (3 Replies)
Discussion started by: bramptonmt
3 Replies
CREATE 
COLLATION(7) PostgreSQL 9.2.7 Documentation CREATE COLLATION(7) NAME
CREATE_COLLATION - define a new collation SYNOPSIS
CREATE COLLATION name ( [ LOCALE = locale, ] [ LC_COLLATE = lc_collate, ] [ LC_CTYPE = lc_ctype ] ) CREATE COLLATION name FROM existing_collation DESCRIPTION
CREATE COLLATION defines a new collation using the specified operating system locale settings, or by copying an existing collation. To be able to create a collation, you must have CREATE privilege on the destination schema. PARAMETERS
name The name of the collation. The collation name can be schema-qualified. If it is not, the collation is defined in the current schema. The collation name must be unique within that schema. (The system catalogs can contain collations with the same name for other encodings, but these are ignored if the database encoding does not match.) locale This is a shortcut for setting LC_COLLATE and LC_CTYPE at once. If you specify this, you cannot specify either of those parameters. lc_collate Use the specified operating system locale for the LC_COLLATE locale category. The locale must be applicable to the current database encoding. (See CREATE DATABASE (CREATE_DATABASE(7)) for the precise rules.) lc_ctype Use the specified operating system locale for the LC_CTYPE locale category. The locale must be applicable to the current database encoding. (See CREATE DATABASE (CREATE_DATABASE(7)) for the precise rules.) existing_collation The name of an existing collation to copy. The new collation will have the same properties as the existing one, but it will be an independent object. NOTES
Use DROP COLLATION to remove user-defined collations. See Section 22.2, "Collation Support", in the documentation for more information about collation support in PostgreSQL. EXAMPLES
To create a collation from the operating system locale fr_FR.utf8 (assuming the current database encoding is UTF8): CREATE COLLATION french (LOCALE = 'fr_FR.utf8'); To create a collation from an existing collation: CREATE COLLATION german FROM "de_DE"; This can be convenient to be able to use operating-system-independent collation names in applications. COMPATIBILITY
There is a CREATE COLLATION statement in the SQL standard, but it is limited to copying an existing collation. The syntax to create a new collation is a PostgreSQL extension. SEE ALSO
ALTER COLLATION (ALTER_COLLATION(7)), DROP COLLATION (DROP_COLLATION(7)) PostgreSQL 9.2.7 2014-02-17 CREATE COLLATION(7)
All times are GMT -4. The time now is 01:01 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy