Sponsored Content
Operating Systems Solaris difference betwwen run level and mile stones Post 302561091 by shekhar_4_u on Monday 3rd of October 2011 06:27:21 AM
Old 10-03-2011
Quote:
Originally Posted by Tommyk
a RUN level determines what services are started and what file systems are mounted. its like the difference between windows safe mode, safe mode with netowrking or a normal boot.

A milestone is baically a check to determine what services are started up and when a set of specified services have been started the milestone is marked online.

thanx i got it almost 80%...but could you just elaborate it ;;

for example if i use init s or boot single-user..then what is the difffernce between these two

thnx shekhar
 

10 More Discussions You Might Find Interesting

1. Filesystems, Disks and Memory

Find run-level in solaris 8.

When the solaris 8 have come up, which command can find out the current run-level? thanks. (2 Replies)
Discussion started by: nianzhe
2 Replies

2. Solaris

Confusion In run level...

Dear Friends..!! i am quit confused about the SOLARIES RUN level that is 0 . 1 or s S ... please let me know the diffirence between these run level ... 0,1 and s S... have a great day Uday naikwadi (1 Reply)
Discussion started by: udayn
1 Replies

3. SuSE

Run Level Services file

Hello, I recently updated a test system from Suse 8 to 9.3. Now our runlevel services program doesn't work, but works fine on our other 9.3 boxes. We have a file in /etc/init.d/rc3.d called S99fooprog(not actual name ofcourse). It just has a command to start a program daemon up. Anyways... (3 Replies)
Discussion started by: benefactr
3 Replies

4. Solaris

Run Level 1, S and small s

Hi Experts, A stupid question for experts :confused: !! What is the difference between run level ‘1', runlevel ‘S' and small ‘s'. As per my understanding the difference between S and 1 is that in case of ‘S' it only going to mount the critical file system which ideal should be... (2 Replies)
Discussion started by: kumarmani
2 Replies

5. Solaris

How to get the initdefault run level in Solaris 10

Hi All, In Solaris 9 and below I will get the init run-level by checking the /etc/inittab entry is:3:initdefault: But in Solaris 10 we are using the smf functionality. Here how I can get the init default run level. Please help me in this problem. Regards, ... (2 Replies)
Discussion started by: kalpeer
2 Replies

6. Solaris

Difference between run level & init level

what are the major Difference Between run level & init level (2 Replies)
Discussion started by: rajaramrnb
2 Replies

7. UNIX for Dummies Questions & Answers

When the run level is changed from 5 to 3?

A Bourne Shell script is placed in /etc/rc.d/rc3.d called S57apache. What will happen with this script when the run level is changed from 5 to 3? many thanks (4 Replies)
Discussion started by: lemon_06
4 Replies

8. Solaris

Solaris 10 - Run Level Modification

Hello, I'm creating a VM Image of Solaris 10 on VM Player. I've completed the installation & I am using the Java Desktop as my default logon. I need to modify the Run Level to Console Mode (permanently). Unlike previous versions or Linux, modifying inittab file is not an option here. Please... (2 Replies)
Discussion started by: DevendraG
2 Replies

9. Shell Programming and Scripting

Perl - what run level

Is there a way to tell what runlevel is currently being used, for example is a user is using the gui or is the have pressed Alt+Ctrl+F1 to drop to the terminal?? (3 Replies)
Discussion started by: ab52
3 Replies

10. Solaris

Change run level at boot

for solaris 11, how does one change the run level at boot from 3 to 2? i checked "/etc/inittab" file where i usually change it in other *nix but it seems solaris is not using it. (1 Reply)
Discussion started by: badbanana
1 Replies
COLLATOR_SET_STRENGTH(3)						 1						  COLLATOR_SET_STRENGTH(3)

Collator::setStrength - Set collation strength

	Object oriented style

SYNOPSIS
public bool Collator::setStrength (int $strength) DESCRIPTION
Procedural style bool collator_set_strength (Collator $coll, int $strength) The ICU Collation Service supports many levels of comparison (named "Levels", but also known as "Strengths"). Having these categories enables ICU to sort strings precisely according to local conventions. However, by allowing the levels to be selectively employed, searching for a string in text can be performed with various matching conditions. o Primary Level: Typically, this is used to denote differences between base characters (for example, "a" < "b"). It is the strong- est difference. For example, dictionaries are divided into different sections by base character. This is also called the level1 strength. o Secondary Level: Accents in the characters are considered secondary differences (for example, "as" < "as" < "at"). Other differ- ences between letters can also be considered secondary differences, depending on the language. A secondary difference is ignored when there is a primary difference anywhere in the strings. This is also called the level2 strength. Note Note: In some languages (such as Danish), certain accented letters are considered to be separate base characters. In most languages, however, an accented letter only has a secondary difference from the unaccented version of that letter. o Tertiary Level: Upper and lower case differences in characters are distinguished at the tertiary level (for example, "ao" < "Ao" < "ao"). In addition, a variant of a letter differs from the base form on the tertiary level (such as "A" and " "). Another exam- ple is the difference between large and small Kana. A tertiary difference is ignored when there is a primary or secondary differ- ence anywhere in the strings. This is also called the level3 strength. o Quaternary Level: When punctuation is ignored (see Ignoring Punctuations ) at level 13, an additional level can be used to dis- tinguish words with and without punctuation (for example, "ab" < "a-b" < "aB"). This difference is ignored when there is a pri- mary, secondary or tertiary difference. This is also known as the level4 strength. The quaternary level should only be used if ignoring punctuation is required or when processing Japanese text (see Hiragana processing). o Identical Level: When all other levels are equal, the identical level is used as a tiebreaker. The Unicode code point values of the NFD form of each string are compared at this level, just in case there is no difference at levels 14. For example, Hebrew can- tillation marks are only distinguished at this level. This level should be used sparingly, as only code point values differences between two strings is an extremely rare occurrence. Using this level substantially decreases the performance for both incremental comparison and sort key generation (as well as increasing the sort key length). It is also known as level 5 strength. For example, people may choose to ignore accents or ignore accents and case when searching for text. Almost all characters are distin- guished by the first three levels, and in most locales the default value is thus Tertiary. However, if Alternate is set to be Shifted, then the Quaternary strength can be used to break ties among whitespace, punctuation, and symbols that would otherwise be ignored. If very fine distinctions among characters are required, then the Identical strength can be used (for example, Identical Strength distinguishes between the Mathematical Bold Small A and the Mathematical Italic Small A.). However, using levels higher than Tertiary the Identical strength result in significantly longer sort keys, and slower string comparison performance for equal strings. PARAMETERS
o $coll -Collator object. o $strength -Strength to set. Possible values are: o Collator::PRIMARY o Collator::SECONDARY o Collator::TERTIARY o Collator::QUATERNARY o Collator::IDENTICAL o Collator::DEFAULT_STRENGTH RETURN VALUES
Returns TRUE on success or FALSE on failure. EXAMPLES
Example #1 collator_set_strength(3) example <?php $arr = array( 'ao', 'Ao', 'ao' ); $coll = collator_create( 'en_US' ); // Sort array using default strength. collator_sort( $coll, $arr ); var_export( $arr ); // Sort array using primary strength. collator_set_strength( $coll, Collator::PRIMARY ); collator_sort( $coll, $arr ); var_export( $arr ); ?> The above example will output: array ( 0 => 'ao', 1 => 'Ao', 2 => 'ao', ) array ( 0 => 'ao', 1 => 'Ao', 2 => 'ao', ) SEE ALSO
Collator constants, collator_get_strength(3). PHP Documentation Group COLLATOR_SET_STRENGTH(3)
All times are GMT -4. The time now is 10:50 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy