Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

System Information

Status
Not open for further replies.

timwescott

Technical User
Oct 22, 2001
100
GB
I have a SunOS box that I know little about, and the person who did is not around anymore.

I need to find out the system spec, h/d size, memory, etc, but don't know any of the commands. Can you help? I think it's running v4 of SunOS.

Thanks
Tim
 
prtconf | grep Memory
/usr/platform/sun4u/sbin/prtdiag -v cpu, memory and architecture
format using p for print options
df -k
prtconf
uname -srmap
psrinfo -v

Try these
 
be very careful with the format command!!!

format (brings up a menu of disks available)
pick a disk from menu
partition (be really carefull here)
print (gives you the partition layout of that disk)
quit ( before you end up inadvertantly editing partitions)
 
if you want avoid "format" use instead something like:

# for i in `ls /dev/dsk/c?t?d0s2`; do prtvtoc -s $i; done

for disk partition information.

Regards,

Carlos Almeida,
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top