I think I asked this before, but I can't find the thread...

scootermaster

Platinum Member
Nov 29, 2005
2,411
0
0
Like, a terminal command that'll give me the processor, ram, etc.

I'm telnet-ing into a couple machines and I have no idea what they're all about.

Thanks!
 

Hyperblaze

Lifer
May 31, 2001
10,027
1
81
dmesg will let you know what the hardware is on your box.

edit: as this doesn't involve any programming, I'd say wrong forum ;)
 

xtknight

Elite Member
Oct 15, 2004
12,974
0
71
cat /proc/meminfo

Tells memory stats.

cat /proc/cpuinfo

For CPU.

They may have lshw or lshal which give very verbose details about the HW on the system. dmesg will also reveal things.
 

scootermaster

Platinum Member
Nov 29, 2005
2,411
0
0
Originally posted by: Nothinman
It depends heavily on what kind of unix it is.

It's a Ultrasparc [I think!] running Solaris. Or maybe Irix. But I think it's solaris.

The dmesg thing just gave me a bunch of failed network connections, and the other two things didn't work at all.

Any other grand ideas?
 

kamper

Diamond Member
Mar 18, 2003
5,513
0
0
Originally posted by: scootermaster
Originally posted by: Nothinman
It depends heavily on what kind of unix it is.

It's a Ultrasparc [I think!] running Solaris. Or maybe Irix. But I think it's solaris.
Start with uname then :)
The dmesg thing just gave me a bunch of failed network connections, and the other two things didn't work at all.
You could look for /var/run/dmesg.boot or just try again shortly after a reboot, if that's possible.

 

scootermaster

Platinum Member
Nov 29, 2005
2,411
0
0
Originally posted by: kamper
Originally posted by: scootermaster
Originally posted by: Nothinman
It depends heavily on what kind of unix it is.

It's a Ultrasparc [I think!] running Solaris. Or maybe Irix. But I think it's solaris.
Start with uname then :)
The dmesg thing just gave me a bunch of failed network connections, and the other two things didn't work at all.
You could look for /var/run/dmesg.boot or just try again shortly after a reboot, if that's possible.

Alrighty. Well, it' running SunOS 5.8. We don't call it solaris anymore, or are those different things? Sheeeeesh.

And I didn't see a ../dmesg.boot file. Man. Boo.
 

DarkThinker

Platinum Member
Mar 17, 2007
2,822
0
0
Well...even if you can't find the dmesg file in /var/log/, you can always use the dmesg command, just type dmesg and you should be able to see the output. Now for command line that usually does it, if you want to see some spec...if you are in the Sun Java Desktop environment (which is GNOME really)...you could maybe use gnome system monitor to see some system specs if it's an available program.
 

kamper

Diamond Member
Mar 18, 2003
5,513
0
0
Originally posted by: DarkThinker
Well...even if you can't find the dmesg file in /var/log/, you can always use the dmesg command, just type dmesg and you should be able to see the output. Now for command line that usually does it, if you want to see some spec...
He already did. The buffer was overflowed from run time messages.