- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- similar to print_manifest or SysInfo for Redhat
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
04-28-2004 09:12 AM
04-28-2004 09:12 AM
Something that will print out all server specs and software installed
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2004 09:13 AM
04-28-2004 09:13 AM
Re: similar to print_manifest or SysInfo for Redhat
print_manifest is part of Ignite which has not been ported to Linux.
You'll have to develop a script or use the GUI hardware browser to get the same kind of information.
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
04-28-2004 02:24 PM
04-28-2004 02:24 PM
Re: similar to print_manifest or SysInfo for Redhat
as for installed SW there is really no bullet proof way to do that. Assuming that you do install all your SW via RPM a simple
rpm -q -a | sort
might proof instructive.
As for the HW, there is lots of information in /proc . Can you be more specific on what you are looking for?
Greetings, Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2004 03:03 PM
04-28-2004 03:03 PM
Re: similar to print_manifest or SysInfo for Redhat
You need to collect the info from different commands only.
For Hardware info:
#lsmod ----Lists the included modules.
#scanpci ---Lists the pci devices
#dmesg ---- Shows you all the boot time messages. You can see in /var/log/messages file also.
You can get more info from /proc directory like sharedmemory, memory, etc.
For the installed packages
#rpm -qa
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2004 04:10 PM
04-28-2004 04:10 PM
Re: similar to print_manifest or SysInfo for Redhat
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2004 09:45 PM
04-28-2004 09:45 PM
Re: similar to print_manifest or SysInfo for Redhat
its problem is that it's a bit verbose. Maybe is what the poster wants.
Peace, R.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2004 05:05 AM
04-29-2004 05:05 AM
SolutionSysInfo for Linux does exist, and has most of the same functionality that exists for HP-UX.
It does still have a few bugs, as we test it for various Distributions and Releases of Linux, and different hardware platforms.
Usually this utility is part of getting Linux support from HP. However, I'll be happy to provide the rpm should you like a copy.
Regards,
Craig
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2004 05:08 AM
04-29-2004 05:08 AM
Re: similar to print_manifest or SysInfo for Redhat
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2004 05:28 AM
04-29-2004 05:28 AM
Re: similar to print_manifest or SysInfo for Redhat
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2004 04:50 PM
04-29-2004 04:50 PM
Re: similar to print_manifest or SysInfo for Redhat
try config2html.
http://come.to/cfg2html
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2005 01:15 AM
02-23-2005 01:15 AM
Re: similar to print_manifest or SysInfo for Redhat
Thanks Craig!