isainfo equivalent on linux

isainfo equivalent on linux

am 09.10.2007 23:10:40 von Nikhil

Hi friends,

is there any command on Linux that produces equivalent of isainfo
command of Solaris?

Regards,
Nikhil

Re: isainfo equivalent on linux

am 10.10.2007 10:50:42 von Kenan Kalajdzic

Nikhil wrote:
> Hi friends,
>
> is there any command on Linux that produces equivalent of isainfo
> command of Solaris?

I am not sure whether there is anything equivalent. You could, however,
get most of the info using other commands. For the basic information
about your system's architecture use "arch" which is equivalent to
"uname -m". If you have any kernel modules, you can use the "file"
command to get more information about your kernel. Here is an example:

$ uname -m
i686
$ lsmod
Module Size Used by Not tainted
ipt_TCPMSS 2456 1 (autoclean)
ipt_MASQUERADE 1528 1 (autoclean)
iptable_nat 17176 1 (autoclean) [ipt_MASQUERADE]
[...]
rtc 7004 0 (autoclean)
ext3 64388 1 (autoclean)
jbd 46804 1 (autoclean) [ext3]
$ modinfo ext3
filename: /lib/modules/2.4.27/kernel/fs/ext3/ext3.o
description: "Second Extended Filesystem with journaling extensions"
author: "Remy Card, Stephen Tweedie, Andrew Morton, ..."
license: "GPL"
$ file /lib/modules/2.4.27/kernel/fs/ext3/ext3.o
/lib/modules/2.4.27/kernel/fs/ext3/ext3.o:
ELF 32-bit LSB reloc., Intel 80386, vers. 1 (SYSV), not stripped

I hope this helps.

--
Kenan Kalajdzic