Sponsored Content
Full Discussion: Solaris 10 svcs failures
Operating Systems Solaris Solaris 10 svcs failures Post 302372531 by incredible on Wednesday 18th of November 2009 07:33:33 AM
Old 11-18-2009
All the basic checks have been done. Nothing wrong. Im well experienced in SVM, so no worries.. I have 10 other machines of the same type and this doesn't happen. Its not really a problem with the svm portion
 

10 More Discussions You Might Find Interesting

1. Solaris

svcs command on solaris 8 and 9

Hi, Can anybody tell me what is the command to start and stop services on solaris 8. I found command svcs on solaris 10 but not on 8 or 9. Please guilde me. Thanks, Rucha (7 Replies)
Discussion started by: rucha_mahajan
7 Replies

2. Solaris

Boot problem with SMF svcs-Solaris 10 for x86

Hi All, I am newbie in solaris, please guide me. A week before i installed solaris10 on my x86 system, it was working fine i always used "init 5" to shutdown my system as per my collegue advice. But yesterday when i started my system it gave me following message ... (6 Replies)
Discussion started by: imrankhan.in
6 Replies

3. UNIX for Advanced & Expert Users

Need svcs equivalent command

Hi, I am new to HP-UX. Can someboby help me with the svcs equivalent command in HP-UX ??? svcs is command that we use in Solaris for service status. I need to get the status of services in HP-UX. Thanks in advance. (2 Replies)
Discussion started by: EmbedUX
2 Replies

4. Solaris

svcs showing online* status

Hi Experts I am getting following status # svcs wbem STATE STIME FMRI online* 18:19:29 svc:/application/management/wbem:default /var/svc/log/application-management-wbem:default.log is being flooded with following message (5 Replies)
Discussion started by: mtomar
5 Replies

5. Solaris

svcs command shows the state as disabled

Hi I need to export a directory named /sybase from my solaris machine via NFS. The svcs command shows the state as disabled. Please let me know how to export the directory. Once the directory is exported from the solaris machine it has to be mounted locally in an aix machine. Can some one... (2 Replies)
Discussion started by: newtoaixos
2 Replies

6. Solaris

PostgreSQL - Adding to SVCS list.

I'm having some troubles setting an instance of postgreSQL to automatically start upon system boot. I have two servers running this app, one is automatically starting the service, the other is not. I'm attempting to use the "svcadmin" command, however, apparently when I run a "svcs -a" search, the... (6 Replies)
Discussion started by: Nvizn
6 Replies

7. Solaris

Solaris 10 svcs failures

I have a solaris 10 machine that was working fine until the system crashed after a power failure. Now, after the system boots up, several services go into maintenance mode. offline 8:54:59 svc:/milestone/multi-user-server:default offline 8:54:59... (15 Replies)
Discussion started by: krishani3831
15 Replies

8. Shell Programming and Scripting

Check & use output of svcs command

Hello Dear Friends, I need to check output of svcs command and so the status of some instances. -bash-3.00$ svcs -a | grep rfe online Aug_04 svc:/application/rfe/rfe_master_3:default online Aug_04 svc:/application/rfe/rfe_master_4:default as you can see there are two... (1 Reply)
Discussion started by: EAGL€
1 Replies

9. Solaris

Svcs: failed to iterate over instances: server has insufficient resources

Hi community, one of my zone is having issue and while i issue svs -a, i am getting below error "svcs: failed to iterate over instances: server has insufficient resources" none on the services are working including ssh/telnet. please help me to fix this issue thanks & Regards,... (1 Reply)
Discussion started by: bentech4u
1 Replies

10. Solaris

Pkgadd failures with Solaris 11

I have some simple package installations that have worked in previous versions of Solaris just fine. I can install the packages, then install newer versions right over the top without error. In previous versions I had to specify the -G option during the installation in order for this to work. ... (0 Replies)
Discussion started by: moondog25
0 Replies
svm-train(1)							   User Manuals 						      svm-train(1)

NAME
svm-train - train one or more SVM instance(s) on a given data set to produce a model file SYNOPSIS
svm-train [-s svm_type ] [ -t kernel_type ] [ -d degree ] [ -g gamma ] [ -r coef0 ] [ -c cost ] [ -n nu ] [ -p epsilon ] [ -m cachesize ] [ -e epsilon ] [ -h shrinking ] [ -b probability_estimates ] ] [ -wi weight ] [ -v n ] [ -q ] training_set_file [ model_file ] DESCRIPTION
svm-train trains a Support Vector Machine to learn the data indicated in the training_set_file and produce a model_file to save the results of the learning optimization. This model can be used later with svm_predict(1) or other LIBSVM enabled software. OPTIONS
-s svm_type svm_type defaults to 0 and can be any value between 0 and 4 as follows: 0 -- C-SVC 1 -- nu-SVC 2 -- one-class SVM 3 -- epsilon-SVR 4 -- nu-SVR -t kernel_type kernel_type defaults to 2 (Radial Basis Function (RBF) kernel) and can be any value between 0 and 4 as follows: 0 -- linear: u.v 1 -- polynomial: (gamma*u.v + coef0)^degree 2 -- radial basis function: exp(-gamma*|u-v|^2) 3 -- sigmoid: tanh(gamma*u.v + coef0) 4 -- precomputed kernel (kernel values in training_set_file) -- -d degree Sets the degree of the kernel function, defaulting to 3 -g gamma Adjusts the gamma in the kernel function (default 1/k) -r coef0 Sets the coef0 (constant offset) in the kernel function (default 0) -c cost Sets the parameter C ( cost ) of C-SVC, epsilon-SVR, and nu-SVR (default 1) -n nu Sets the parameter nu of nu-SVC, one-class SVM, and nu-SVR (default 0.5) -p epsilon Set the epsilon in the loss function of epsilon-SVR (default 0.1) -m cachesize Set the cache memory size to cachesize in MB (default 100) -e epsilon Set the tolerance of termination criterion to epsilon (default 0.001) -h shrinking Whether to use the shrinking heuristics, 0 or 1 (default 1) -b probability-estimates probability_estimates is a binary value indicating whether to calculate probability estimates when training the SVC or SVR model. Values are 0 or 1 and defaults to 0 for speed. -wi weight Set the parameter C (cost) of class i to weight*C, for C-SVC (default 1) -v n Set n for n -fold cross validation mode -q quiet mode; suppress messages to stdout. FILES
training_set_file must be prepared in the following simple sparse training vector format: <label> <index1>:<value1> <index2>:<value2> . . . . . . There is one sample per line. Each sample consists of a target value (label or regression target) followed by a sparse representation of the input vector. All unmentioned coordinates are assumed to be 0. For classification, <label> is an integer indicating the class label (multi-class is supported). For regression, <label> is the target value which can be any real number. For one-class SVM, it's not used so can be any number. Except using precomputed kernels (explained in another section), <index>:<value> gives a feature (attribute) value. <index> is an integer starting from 1 and <value> is a real number. Indices must be in an ASCENDING order. ENVIRONMENT
No environment variables. DIAGNOSTICS
None documented; see Vapnik et al. BUGS
Please report bugs to the Debian BTS. AUTHOR
Chih-Chung Chang, Chih-Jen Lin <cjlin@csie.ntu.edu.tw>, Chen-Tse Tsai <ctse.tsai@gmail.com> (packaging) SEE ALSO
svm-predict(1), svm-scale(1) Linux MAY 2006 svm-train(1)
All times are GMT -4. The time now is 04:37 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy