- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Figure out server specification
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2004 06:22 PM
02-24-2004 06:22 PM
we have a Linux 2.4.20-10c .
I want to know about some specifications
1. processors
2. memory
3. hard disk
4. cd-rom
5. ethernet card
6. peripheral devices..(usb.., modem. etc.)
where can I get the information linux box?
Please send me good tips for me as soon as possible.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2004 06:34 PM
02-24-2004 06:34 PM
Re: Figure out server specification
"cat /proc/cpuinfo" gives you all your cpu information.
However, KDE has an info center that provides all this information is a easy to get at format. I imagine Gnome has something very similar.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2004 06:54 PM
02-24-2004 06:54 PM
Re: Figure out server specification
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2004 07:14 PM
02-24-2004 07:14 PM
Re: Figure out server specification
just connected network
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2004 07:21 PM
02-24-2004 07:21 PM
Re: Figure out server specification
cpuinfo for processors
meminfo for memory
scsi/devices for scsi devices
ide/ide*/* for ide devices
pci for all your pci based peripherals
Lots of information in there.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2004 08:03 PM
02-24-2004 08:03 PM
Re: Figure out server specification
there is
http://ezix.sourceforge.net/software/lshw.html - lshw (Hardware Lister) is a small tool to provide detailed informaton on the hardware configuration of the machine. It can report exact memory configuration, firmware version, mainboard configuration, CPU version and speed, cache configuration, bus speed, etc. on DMI-capable x86 systems and on some PowerPC machines
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2004 09:54 PM
02-24-2004 09:54 PM
Re: Figure out server specification
On a Linux box you can beyond process stats instantly find all the HW info that the kernel discovered by simply walking /proc, like the first reply suggested.
To find out more look at "man proc" for a start.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2004 01:07 PM
02-25-2004 01:07 PM
Re: Figure out server specification
but
where can I get the lshw (h/w lister)package ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2004 02:56 PM
02-25-2004 02:56 PM
Re: Figure out server specification
Besides of the /proc filesystem dmesg contains all kinds of useful HW information.
Greetings, Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2004 12:51 PM
03-01-2004 12:51 PM
Re: Figure out server specification
but how can I get the source of it
and tell me that way of installment
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2004 02:16 PM
03-01-2004 02:16 PM
Solutionget the source from
http://sourceforge.net/project/showfiles.php?group_id=32683
After download:
tar -xzvf lshw-A.01.06.tar.gz
cd lshw-A.01.06
make
su
make install
lshw
Greetings, Martin