Sponsored Content
Full Discussion: 2 cases !!! plz advise
Operating Systems Solaris 2 cases !!! plz advise Post 98627 by pressy on Thursday 9th of February 2006 02:12:15 PM
Old 02-09-2006
yes, true, well that would mean that you would have to know what the future will bring :-)
to be honest, solaris10 is the first release from sun where they don't support the veryveryvery old mashines with the superscalar sparcs. in the past, you were able to install solaris9 on every mashine from sun which was ever sold. even on the old IPX or sparcstations. that's a very nice advantage of solaris against e.g. IBM AIX, that you can run the same OS on the oldest and newest sun or smallest and biggest. Solaris doesn't depend on the hardware it's always the same core kernel image, everything else is made with enviroment-modules...

example:
Code:
E4500
root@scnode2 # modinfo
 Id Loadaddr   Size Info Rev Module Name
  0  1000000  c3720   -   0  unix ()
  1  1077fc8  1d99a   -   0  krtld ()
  2  10908c0 19f348   -   0  genunix ()
  3  11de7b0    748   -   0  platmod ()
  4  11dee00   d048   -   0  SUNW,UltraSPARC-II ()
.....
...
..

ultra5
root@mptest01 # modinfo | more
 Id Loadaddr   Size Info Rev Module Name
  0  1000000  c3720   -   0  unix ()
  1  1077fc8  1d992   -   0  krtld ()
  2  10908c0 19f348   -   0  genunix ()
  3  11de7b0     a8   -   0  platmod ()
  4  11de880   d048   -   0  SUNW,UltraSPARC-IIi ()
....
..
.

V440
 Id Loadaddr   Size Info Rev Module Name
  0  1000000  c35b0   -   0  unix ()
  1  1077e70  1d99a   -   0  krtld ()
  2  1090768 19f2d8   -   0  genunix ()
  3  11de5e8    c38   -   0  platmod ()
  4  11df100  14388   -   0  SUNW,UltraSPARC-IIIi ()
...
..
.

just have a look into your /platform directory, you will see there which mashines are supported by your solaris revision

gP
 

7 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

plz Help How should I configure cc compiler output file plz help???

i.e configuration of C compiler :confused: (4 Replies)
Discussion started by: atiato
4 Replies

2. UNIX for Dummies Questions & Answers

redirected output not going to file for all cases

I have to confirm that an engine was not able to run. In the output below you see that it indeed got errors, but it didn't send those messages to the output file. When I run the same thing with a different executable it works. So does this mean something in the executable could cause it not to... (7 Replies)
Discussion started by: brdholman
7 Replies

3. UNIX for Advanced & Expert Users

test cases

in my organisation the unix server is migrated.the ip of the server changed and the hardware.i need to test that i am aving the same file structure and data which is created under my user id.and the utilities like sqlplus,ftp are working or not.i am talking abt the general user perspective who... (0 Replies)
Discussion started by: dr46014
0 Replies

4. UNIX for Dummies Questions & Answers

Search for a string with different cases

Hi Guys, I am using the following command in a script. cat $sql_file_path"/"${sql_file_list} | grep "ABCDE" but it returns only exactly matching lines (ABCDE) how can i modify this single line so it will return if it finds a matching string with any case. eg: Abcde, abCDe, abcdeE,... (4 Replies)
Discussion started by: mwrg
4 Replies

5. Shell Programming and Scripting

Extract match cases

hi guys i have a file like this which is contain more than 3000 records i want to extract emails have Creation Date: : Wed, 14 Aug 2009 and their POP3 Last Login Date and WebMail Last Login Date is Thu, 01 Jan 1970 how can i could do that for example in this sample i need... (13 Replies)
Discussion started by: mhs
13 Replies

6. Shell Programming and Scripting

Grep strings for different cases

Hi All, Good morning I have a below code which is working & getting expected output. the problem in this code is it is executing 3 if conditions, my requirement is suppose if first condition is success then it should print echo statement & exit from if condition else if the 1st if condition... (4 Replies)
Discussion started by: sam@sam
4 Replies

7. Shell Programming and Scripting

How to split string in someinteresting cases?

I have a variable var=safe_alloc_TBA_details_TXXXXXX_YYYYMMDDhhmmss.csv I want to get a part safe_alloc_TBA_details_T If I do : PR=`echo "$var" | awk -F'_' '{for (i=1; i<NF; i++) printf("%s_", $i)}'` Then echo "$PR = safe_alloc_TBA_details_" How can I cut the string so that get it... (3 Replies)
Discussion started by: digioleg54
3 Replies
modinfo(1M)                                               System Administration Commands                                               modinfo(1M)

NAME
modinfo - display information about loaded kernel modules SYNOPSIS
/usr/sbin/modinfo [-c] [-w] [-i module-id] DESCRIPTION
The modinfo utility displays information about the loaded modules. The format of the information is as follows: Id Loadaddr Size Info Rev Module Name where Id is the module ID, Loadaddr is the starting text address in hexadecimal, Size is the size of text, data, and bss in hexadecimal bytes, Info is module specific information, Rev is the revision of the loadable modules system, and Module Name is the filename and description of the module. The module specific information is the block and character major numbers for drivers, the system call number for system calls, and unspeci- fied for other module types. OPTIONS
The following options are supported: -c Display the number of instances of the module loaded and the module's current state. -i module-id Display information about this module only. -w Do not truncate module information at 80 characters. EXAMPLES
Example 1: Displaying the Status of a Module The following example displays the status of module 2: example% modinfo -i 2 Id Loadaddr Size Info Rev Module Name 2 ff08e000 1734 - 1 swapgeneric (root and swap configuration) Example 2: Displaying the Status of Kernel Modules The following example displays the status of some kernel modules: example% modinfo Id Loadaddr Size Info Rev Module Name 2 ff08e000 1734 - 1 swapgeneric 4 ff07a000 3bc0 - 1 specfs (filesystem for specfs) 6 ff07dbc0 2918 - 1 TS (time sharing sched class) 7 ff0804d8 49c - 1 TS_DPTBL (Time sharing dispatch table) 8 ff04a000 24a30 2 1 ufs (filesystem for ufs) 9 ff080978 c640 226 1 rpcmod (RPC syscall) 9 ff080978 c640 - 1 rpcmod (rpc interface str mod) 10 ff08cfb8 2031c - 1 ip (IP Streams module) 10 ff08cfb8 2031c 2 1 ip (IP Streams device) Example 3: Using the -c Option Using the modinfo command with the -c option displays the number of instances of the module loaded and the module's current state. example% modinfo -c Id Loadcnt Module Name State 1 0 krtld UNLOADED/UNINSTALLED 2 0 genunix UNLOADED/UNINSTALLED 3 0 platmod UNLOADED/UNINSTALLED 4 0 SUNW,UltraSPARC-IIi UNLOADED/UNINSTALLED 5 0 cl_bootstrap UNLOADED/UNINSTALLED 6 1 specfs LOADED/INSTALLED 7 1 swapgeneric UNLOADED/UNINSTALLED 8 1 TS LOADED/INSTALLED 9 1 TS_DPTBL LOADED/INSTALLED 10 1 ufs LOADED/INSTALLED 11 1 fssnap_if LOADED/INSTALLED ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWcsu | +-----------------------------+-----------------------------+ |Interface Stability |Evolving | +-----------------------------+-----------------------------+ SEE ALSO
modload(1M), modunload(1M), attributes(5) SunOS 5.10 1 Oct 2002 modinfo(1M)
All times are GMT -4. The time now is 03:21 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy