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 
TABLESPACE(7) PostgreSQL 9.2.7 Documentation CREATE TABLESPACE(7) NAME
CREATE_TABLESPACE - define a new tablespace SYNOPSIS
CREATE TABLESPACE tablespace_name [ OWNER user_name ] LOCATION 'directory' DESCRIPTION
CREATE TABLESPACE registers a new cluster-wide tablespace. The tablespace name must be distinct from the name of any existing tablespace in the database cluster. A tablespace allows superusers to define an alternative location on the file system where the data files containing database objects (such as tables and indexes) can reside. A user with appropriate privileges can pass tablespace_name to CREATE DATABASE, CREATE TABLE, CREATE INDEX or ADD CONSTRAINT to have the data files for these objects stored within the specified tablespace. PARAMETERS
tablespace_name The name of a tablespace to be created. The name cannot begin with pg_, as such names are reserved for system tablespaces. user_name The name of the user who will own the tablespace. If omitted, defaults to the user executing the command. Only superusers can create tablespaces, but they can assign ownership of tablespaces to non-superusers. directory The directory that will be used for the tablespace. The directory should be empty and must be owned by the PostgreSQL system user. The directory must be specified by an absolute path name. NOTES
Tablespaces are only supported on systems that support symbolic links. CREATE TABLESPACE cannot be executed inside a transaction block. EXAMPLES
Create a tablespace dbspace at /data/dbs: CREATE TABLESPACE dbspace LOCATION '/data/dbs'; Create a tablespace indexspace at /data/indexes owned by user genevieve: CREATE TABLESPACE indexspace OWNER genevieve LOCATION '/data/indexes'; COMPATIBILITY
CREATE TABLESPACE is a PostgreSQL extension. SEE ALSO
CREATE DATABASE (CREATE_DATABASE(7)), CREATE TABLE (CREATE_TABLE(7)), CREATE INDEX (CREATE_INDEX(7)), DROP TABLESPACE (DROP_TABLESPACE(7)), ALTER TABLESPACE (ALTER_TABLESPACE(7)) PostgreSQL 9.2.7 2014-02-17 CREATE TABLESPACE(7)
All times are GMT -4. The time now is 06:18 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy