Sponsored Content
Operating Systems Solaris RAID controller needed for SVM? Post 302235330 by Annihilannic on Thursday 11th of September 2008 07:39:53 PM
Old 09-11-2008
By using SVM (or zfs) to create a RAID volume you will be using software RAID, so no need for fancy hardware. If you use hardware raid then you don't need SVM or anything like it, the OS just sees it as "a disk" and shouldn't care what kind of mirroring or data protection is going on.

By definition you will be using extra space if you use RAID5, but that is the price you pay for having your data protected.
 

10 More Discussions You Might Find Interesting

1. Solaris

How do you remove a RAID 5 under SVM?

I have this setup, i can only find docs to unmirror a raid 1 set, how do you get rid of a raid 5 set? the same way? metadetach and metaclear? d8: RAID State: Okay Interlace: 32 blocks Size: 142245693 blocks (67 GB) Original device: Size: 142247872 blocks (67 GB) ... (2 Replies)
Discussion started by: BG_JrAdmin
2 Replies

2. SCO

driver needed for hp smartarry p200i sas raid controller

recently we have purchased hp proliant ml350 g5 server and configured raid 5 with hp smartarray p200i sas controller.but i could not found any sas raid controller hp smartarry p200i driver for sco unix 5.0.7 :(.i searched on hp support site,but no use.any one can help. (3 Replies)
Discussion started by: prakrithi
3 Replies

3. Solaris

How can i grow Raid 5 volume in SVM..?

Hello experts.. How can i grow Raid 5 volume in SVM? Thanks in advance.. (2 Replies)
Discussion started by: younus_syed
2 Replies

4. Red Hat

linux server with raid controller card

I am planning on building a fedora box with raid controller (database server). Is anybody done that ? also what kind of software do you need to backup and recover data. (1 Reply)
Discussion started by: amir07
1 Replies

5. Hardware

Problem with External Raid Controller.

Hi, We have a Sunfire 4150 with On-Board Internal Raid Controller connected to 4 X 146 GB SAS disks. This also has an External Raid Controller (Storagetek Eight-Port, External HBA Model SG-XPCIESAS-R-EXT-Z) connected to a JBOD array ( Storagetek XTA2530 ) which has 5 X 300 GB Hard disk. ... (1 Reply)
Discussion started by: ranjansukumar
1 Replies

6. Solaris

Setting up bootblock on RAID 0 SVM

Hi All! I'm running Solaris 10 and SPARC and using Let me give a bit of background before asking my question: I have created a RAID 0 (stripe) on 2 disks, I have the OS running on a third disk and I have now performed a ufsdump / ufsrestore from my third disk to the RAID 0 disks... (7 Replies)
Discussion started by: Keepcase
7 Replies

7. AIX

SCSI PCI - X RAID Controller card RAID 5 AIX Disks disappeared

Hello, I have a scsi pci x raid controller card on which I had created a disk array of 3 disks when I type lspv ; I used to see 3 physical disks ( two local disks and one raid 5 disk ) suddenly the raid 5 disk array disappeared ; so the hardware engineer thought the problem was with SCSI... (0 Replies)
Discussion started by: filosophizer
0 Replies

8. AIX

Internal PCI X RAID Controller issue ?

Hello folks, Could someone tell me why I unable to create pdisks for a RAID Array # lscfg | grep scsi + sisscsia0 U787A.001.DPM0707-P1 PCI-X Dual Channel Ultra320 SCSI Adapter + scsi0 U787A.001.DPM0707-P1-T10 PCI-X Dual Channel Ultra320 SCSI Adapter... (12 Replies)
Discussion started by: filosophizer
12 Replies

9. Red Hat

RAID Configuration for IBM Serveraid-7k SCSI RAID Controller

Hello, I want to delete a RAID configuration an old server has. Since i haven't the chance to work with the specific raid controller in the past can you please help me how to perform the configuraiton? I downloaded IBM ServeRAID Support CD but i wasn't able to configure the video card so i... (0 Replies)
Discussion started by: @dagio
0 Replies

10. Red Hat

Separate HDD test using RAID controller

Hello, I am using Red Hat 2.6.23.1 with RAID 6 controller (card). (When I use "cat /proc/partitions" I do not see the separate HDDs in the RAID, I see one drive for the RAID itself, as it is considered 1 large drive.) I used a "dd" check to test my RAID drive speed and found it was a bit slow,... (7 Replies)
Discussion started by: Dbugy
7 Replies
SVM(3)									 1								    SVM(3)

The SVM class

INTRODUCTION
CLASS SYNOPSIS
SVM SVM Constants o const integer$SVM::C_SVC0 o const integer$SVM::NU_SVC1 o const integer$SVM::ONE_CLASS2 o const integer$SVM::EPSILON_SVR3 o const integer$SVM::NU_SVR4 o const integer$SVM::KERNEL_LINEAR0 o const integer$SVM::KERNEL_POLY1 o const integer$SVM::KERNEL_RBF2 o const integer$SVM::KERNEL_SIGMOID3 o const integer$SVM::KERNEL_PRECOMPUTED4 o const integer$SVM::OPT_TYPE101 o const integer$SVM::OPT_KERNEL_TYPE102 o const integer$SVM::OPT_DEGREE103 o const integer$SVM::OPT_SHRINKING104 o const integer$SVM::OPT_PROPABILITY105 o const integer$SVM::OPT_GAMMA201 o const integer$SVM::OPT_NU202 o const integer$SVM::OPT_EPS203 o const integer$SVM::OPT_P204 o const integer$SVM::OPT_COEF_ZERO205 o const integer$SVM::OPT_C206 o const integer$SVM::OPT_CACHE_SIZE207 Methods o public SVM::__construct (void ) o public float svm::crossvalidate (array $problem, int $number_of_folds) o public array SVM::getOptions (void ) o public bool SVM::setOptions (array $params) o public SVMModel svm::train (array $problem, [array $weights]) PREDEFINED CONSTANTS
SVM CONSTANTS
o SVM::C_SVC -The basic C_SVC SVM type. The default, and a good starting point o SVM::NU_SVC -The NU_SVC type uses a different, more flexible, error weighting o SVM::ONE_CLASS -One class SVM type. Train just on a single class, using outliers as negative examples o SVM::EPSILON_SVR -A SVM type for regression (predicting a value rather than just a class) o SVM::NU_SVR -A NU style SVM regression type o SVM::KERNEL_LINEAR -A very simple kernel, can work well on large document classification problems o SVM::KERNEL_POLY -A polynomial kernel o SVM::KERNEL_RBF -The common Gaussian RBD kernel. Handles non-linear problems well and is a good default for classification o SVM::KERNEL_SIGMOID -A kernel based on the sigmoid function. Using this makes the SVM very similar to a two layer sigmoid based neural network o SVM::KERNEL_PRECOMPUTED -A precomputed kernel - currently unsupported. o SVM::OPT_TYPE -The options key for the SVM type o SVM::OPT_KERNEL_TYPE -The options key for the kernel type o SVM::OPT_DEGREE - o SVM::OPT_SHRINKING -Training parameter, boolean, for whether to use the shrinking heuristics o SVM::OPT_PROBABILITY -Training parameter, boolean, for whether to collect and use probability estimates o SVM::OPT_GAMMA -Algorithm parameter for Poly, RBF and Sigmoid kernel types. o SVM::OPT_NU -The option key for the nu parameter, only used in the NU_ SVM types o SVM::OPT_EPS -The option key for the Epsilon parameter, used in epsilon regression o SVM::OPT_P -Training parameter used by Episilon SVR regression o SVM::OPT_COEF_ZERO -Algorithm parameter for poly and sigmoid kernels o SVM::OPT_C -The option for the cost parameter that controls tradeoff between errors and generality - effectively the penalty for misclassifying training examples. o SVM::OPT_CACHE_SIZE -Memory cache size, in MB PHP Documentation Group SVM(3)
All times are GMT -4. The time now is 10:43 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy