public inbox for gentoo-user@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-user] [OT] Linux Live CD to perform hardware audit?
@ 2012-02-09  3:58 Pandu Poluan
  2012-02-09  5:54 ` Joshua Murphy
  2012-02-09  8:22 ` Michael Hampicke
  0 siblings, 2 replies; 11+ messages in thread
From: Pandu Poluan @ 2012-02-09  3:58 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 468 bytes --]

Excuse me for starting an off-topic thread,

But do any of you guys/gals know of a Live CD distro that can perform
hardware audit? i.e., detect installed processor model, RAM parameters &
layout, etc.

It's gotta be a Live CD because the boxes currently installed are running
either VMware or XenServer and I am reluctant to open them up. So I guess
I'll just shutdown the box, boot using the Live CD, record all important
info, and reboot into the hypervisor.

Rgds,

[-- Attachment #2: Type: text/html, Size: 517 bytes --]

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [gentoo-user] [OT] Linux Live CD to perform hardware audit?
  2012-02-09  3:58 [gentoo-user] [OT] Linux Live CD to perform hardware audit? Pandu Poluan
@ 2012-02-09  5:54 ` Joshua Murphy
  2012-02-09  6:47   ` Andrew Tchernoivanov
                     ` (2 more replies)
  2012-02-09  8:22 ` Michael Hampicke
  1 sibling, 3 replies; 11+ messages in thread
From: Joshua Murphy @ 2012-02-09  5:54 UTC (permalink / raw
  To: gentoo-user

On Wed, Feb 8, 2012 at 10:58 PM, Pandu Poluan <pandu@poluan.info> wrote:
> Excuse me for starting an off-topic thread,
>
> But do any of you guys/gals know of a Live CD distro that can perform
> hardware audit? i.e., detect installed processor model, RAM parameters &
> layout, etc.
>
> It's gotta be a Live CD because the boxes currently installed are running
> either VMware or XenServer and I am reluctant to open them up. So I guess
> I'll just shutdown the box, boot using the Live CD, record all important
> info, and reboot into the hypervisor.
>
> Rgds,

Pretty much any livecd that'll boot can do the job... lspci -vv,
/proc/cpuinfo, /proc/meminfo, and fdisk -l (which'll catch any drives
the running kernel sees at least) are pretty standard, and it wouldn't
take much to include a script that calls those, dumps the output
somewhere, then reboots. For more extensive info, dmidecode and lshw
tend to give more detail, but are a little less 'standard'. Notably,
dmidecode gives things like per-slot ram information.

-- 
Poison [BLX]
Joshua M. Murphy



^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [gentoo-user] [OT] Linux Live CD to perform hardware audit?
  2012-02-09  5:54 ` Joshua Murphy
@ 2012-02-09  6:47   ` Andrew Tchernoivanov
  2012-02-09  7:08     ` Pandu Poluan
  2012-02-09  7:06   ` Pandu Poluan
  2012-02-09  9:49   ` Alan McKinnon
  2 siblings, 1 reply; 11+ messages in thread
From: Andrew Tchernoivanov @ 2012-02-09  6:47 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 1451 bytes --]

I use SystemRescueCD and a tool called AIDA. It shows hardware information
in more "friendly"
way by using ncurses. And also there is no need to boot LiveCD itself - it
stars form grub.

On Thu, Feb 9, 2012 at 9:54 AM, Joshua Murphy <poisonbl@gmail.com> wrote:

> On Wed, Feb 8, 2012 at 10:58 PM, Pandu Poluan <pandu@poluan.info> wrote:
> > Excuse me for starting an off-topic thread,
> >
> > But do any of you guys/gals know of a Live CD distro that can perform
> > hardware audit? i.e., detect installed processor model, RAM parameters &
> > layout, etc.
> >
> > It's gotta be a Live CD because the boxes currently installed are running
> > either VMware or XenServer and I am reluctant to open them up. So I guess
> > I'll just shutdown the box, boot using the Live CD, record all important
> > info, and reboot into the hypervisor.
> >
> > Rgds,
>
> Pretty much any livecd that'll boot can do the job... lspci -vv,
> /proc/cpuinfo, /proc/meminfo, and fdisk -l (which'll catch any drives
> the running kernel sees at least) are pretty standard, and it wouldn't
> take much to include a script that calls those, dumps the output
> somewhere, then reboots. For more extensive info, dmidecode and lshw
> tend to give more detail, but are a little less 'standard'. Notably,
> dmidecode gives things like per-slot ram information.
>
> --
> Poison [BLX]
> Joshua M. Murphy
>
>


-- 
С уважением,
Черноиванов Андрей

[-- Attachment #2: Type: text/html, Size: 1985 bytes --]

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [gentoo-user] [OT] Linux Live CD to perform hardware audit?
  2012-02-09  5:54 ` Joshua Murphy
  2012-02-09  6:47   ` Andrew Tchernoivanov
@ 2012-02-09  7:06   ` Pandu Poluan
  2012-02-09  9:49   ` Alan McKinnon
  2 siblings, 0 replies; 11+ messages in thread
From: Pandu Poluan @ 2012-02-09  7:06 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 1233 bytes --]

On Feb 9, 2012 12:58 PM, "Joshua Murphy" <poisonbl@gmail.com> wrote:
>
> On Wed, Feb 8, 2012 at 10:58 PM, Pandu Poluan <pandu@poluan.info> wrote:
> > Excuse me for starting an off-topic thread,
> >
> > But do any of you guys/gals know of a Live CD distro that can perform
> > hardware audit? i.e., detect installed processor model, RAM parameters &
> > layout, etc.
> >
> > It's gotta be a Live CD because the boxes currently installed are
running
> > either VMware or XenServer and I am reluctant to open them up. So I
guess
> > I'll just shutdown the box, boot using the Live CD, record all important
> > info, and reboot into the hypervisor.
> >
> > Rgds,
>
> Pretty much any livecd that'll boot can do the job... lspci -vv,
> /proc/cpuinfo, /proc/meminfo, and fdisk -l (which'll catch any drives
> the running kernel sees at least) are pretty standard, and it wouldn't
> take much to include a script that calls those, dumps the output
> somewhere, then reboots. For more extensive info, dmidecode and lshw
> tend to give more detail, but are a little less 'standard'. Notably,
> dmidecode gives things like per-slot ram information.
>

Well, I need that kind of information, so I guess I'll have to go
"non-standard" :-)

Rgds,

[-- Attachment #2: Type: text/html, Size: 1607 bytes --]

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [gentoo-user] [OT] Linux Live CD to perform hardware audit?
  2012-02-09  6:47   ` Andrew Tchernoivanov
@ 2012-02-09  7:08     ` Pandu Poluan
  2012-02-09  7:26       ` Andrew Tchernoivanov
  0 siblings, 1 reply; 11+ messages in thread
From: Pandu Poluan @ 2012-02-09  7:08 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 399 bytes --]

On Feb 9, 2012 1:50 PM, "Andrew Tchernoivanov" <tchernoivanov@gmail.com>
wrote:
>
> I use SystemRescueCD and a tool called AIDA. It shows hardware
information in more "friendly"
> way by using ncurses. And also there is no need to boot LiveCD itself -
it stars form grub.
>

Ah, thank you!

I'll still burn a CD, though. Much easier to reboot from a CD than having
to edit grub in 10+ boxes.

Rgds,

[-- Attachment #2: Type: text/html, Size: 546 bytes --]

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [gentoo-user] [OT] Linux Live CD to perform hardware audit?
  2012-02-09  7:08     ` Pandu Poluan
@ 2012-02-09  7:26       ` Andrew Tchernoivanov
  2012-02-09  7:33         ` Pandu Poluan
  0 siblings, 1 reply; 11+ messages in thread
From: Andrew Tchernoivanov @ 2012-02-09  7:26 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 321 bytes --]

On Thu, Feb 9, 2012 at 11:08 AM, Pandu Poluan <pandu@poluan.info> wrote:

> Ah, thank you!
>
> I'll still burn a CD, though. Much easier to reboot from a CD than having
> to edit grub in 10+ boxes.
>
> Rgds,
>

You could also use unetbootin to make bootable USB-stick.

-- 
С уважением,
Черноиванов Андрей

[-- Attachment #2: Type: text/html, Size: 613 bytes --]

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [gentoo-user] [OT] Linux Live CD to perform hardware audit?
  2012-02-09  7:26       ` Andrew Tchernoivanov
@ 2012-02-09  7:33         ` Pandu Poluan
  0 siblings, 0 replies; 11+ messages in thread
From: Pandu Poluan @ 2012-02-09  7:33 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 495 bytes --]

On Feb 9, 2012 2:29 PM, "Andrew Tchernoivanov" <tchernoivanov@gmail.com>
wrote:
>
>
>
> On Thu, Feb 9, 2012 at 11:08 AM, Pandu Poluan <pandu@poluan.info> wrote:
>>
>> Ah, thank you!
>>
>> I'll still burn a CD, though. Much easier to reboot from a CD than
having to edit grub in 10+ boxes.
>>
>> Rgds,
>
>
> You could also use unetbootin to make bootable USB-stick.
>

Some of my boxes for strange reasons refuse to boot from USB. Rather than
troubleshooting, I chose the easy way out ;-)

Rgds,

[-- Attachment #2: Type: text/html, Size: 773 bytes --]

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [gentoo-user] [OT] Linux Live CD to perform hardware audit?
  2012-02-09  3:58 [gentoo-user] [OT] Linux Live CD to perform hardware audit? Pandu Poluan
  2012-02-09  5:54 ` Joshua Murphy
@ 2012-02-09  8:22 ` Michael Hampicke
  2012-02-09 15:14   ` Paul Hartman
  1 sibling, 1 reply; 11+ messages in thread
From: Michael Hampicke @ 2012-02-09  8:22 UTC (permalink / raw
  To: gentoo-user

> But do any of you guys/gals know of a Live CD distro that can perform
> hardware audit? i.e., detect installed processor model, RAM parameters &
> layout, etc.

Some days ago I was using the parted magic live cd [1]. It had a tool
that listed all hardware in a nice fashion. I don't recall it's name -
but looking at the list of programs that come with parted magic [2] I
guess it was hardinfo.

[1] http://partedmagic.com/
[2] http://partedmagic.com/doku.php?id=programs



^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [gentoo-user] [OT] Linux Live CD to perform hardware audit?
  2012-02-09  5:54 ` Joshua Murphy
  2012-02-09  6:47   ` Andrew Tchernoivanov
  2012-02-09  7:06   ` Pandu Poluan
@ 2012-02-09  9:49   ` Alan McKinnon
  2 siblings, 0 replies; 11+ messages in thread
From: Alan McKinnon @ 2012-02-09  9:49 UTC (permalink / raw
  To: gentoo-user

On Thu, 9 Feb 2012 00:54:19 -0500
Joshua Murphy <poisonbl@gmail.com> wrote:

> On Wed, Feb 8, 2012 at 10:58 PM, Pandu Poluan <pandu@poluan.info>
> wrote:
> > Excuse me for starting an off-topic thread,
> >
> > But do any of you guys/gals know of a Live CD distro that can
> > perform hardware audit? i.e., detect installed processor model, RAM
> > parameters & layout, etc.
> >
> > It's gotta be a Live CD because the boxes currently installed are
> > running either VMware or XenServer and I am reluctant to open them
> > up. So I guess I'll just shutdown the box, boot using the Live CD,
> > record all important info, and reboot into the hypervisor.
> >
> > Rgds,
> 
> Pretty much any livecd that'll boot can do the job... lspci -vv,
> /proc/cpuinfo, /proc/meminfo, and fdisk -l (which'll catch any drives
> the running kernel sees at least) are pretty standard, and it wouldn't
> take much to include a script that calls those, dumps the output
> somewhere, then reboots. For more extensive info, dmidecode and lshw
> tend to give more detail, but are a little less 'standard'. Notably,
> dmidecode gives things like per-slot ram information.
> 

Software does indeed make this process so much easier. We use dmidecode for this too.

All the machines in the data center run ocsng
(http://www.ocsinventory-ng.org) to automate the entire process, but
that's way beyond what the OP needs

-- 
Alan McKinnnon
alan.mckinnon@gmail.com




^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [gentoo-user] [OT] Linux Live CD to perform hardware audit?
  2012-02-09  8:22 ` Michael Hampicke
@ 2012-02-09 15:14   ` Paul Hartman
  2012-02-09 16:13     ` Pandu Poluan
  0 siblings, 1 reply; 11+ messages in thread
From: Paul Hartman @ 2012-02-09 15:14 UTC (permalink / raw
  To: gentoo-user

On Thu, Feb 9, 2012 at 2:22 AM, Michael Hampicke <gentoo-user@hadt.biz> wrote:
>> But do any of you guys/gals know of a Live CD distro that can perform
>> hardware audit? i.e., detect installed processor model, RAM parameters &
>> layout, etc.
>
> Some days ago I was using the parted magic live cd [1]. It had a tool
> that listed all hardware in a nice fashion. I don't recall it's name -
> but looking at the list of programs that come with parted magic [2] I
> guess it was hardinfo.
>
> [1] http://partedmagic.com/
> [2] http://partedmagic.com/doku.php?id=programs

I'll give another vote for partedmagic, aside from running gparted
it's also got some good general-purpose tools. It also loads itself
into RAM and ejects the disc once it's loaded, so if you're using it
on multiple machines you can use one disc to load them all at once.



^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [gentoo-user] [OT] Linux Live CD to perform hardware audit?
  2012-02-09 15:14   ` Paul Hartman
@ 2012-02-09 16:13     ` Pandu Poluan
  0 siblings, 0 replies; 11+ messages in thread
From: Pandu Poluan @ 2012-02-09 16:13 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 1186 bytes --]

On Feb 9, 2012 10:18 PM, "Paul Hartman" <paul.hartman+gentoo@gmail.com>
wrote:
>
> On Thu, Feb 9, 2012 at 2:22 AM, Michael Hampicke <gentoo-user@hadt.biz>
wrote:
> >> But do any of you guys/gals know of a Live CD distro that can perform
> >> hardware audit? i.e., detect installed processor model, RAM parameters
&
> >> layout, etc.
> >
> > Some days ago I was using the parted magic live cd [1]. It had a tool
> > that listed all hardware in a nice fashion. I don't recall it's name -
> > but looking at the list of programs that come with parted magic [2] I
> > guess it was hardinfo.
> >
> > [1] http://partedmagic.com/
> > [2] http://partedmagic.com/doku.php?id=programs
>
> I'll give another vote for partedmagic, aside from running gparted
> it's also got some good general-purpose tools. It also loads itself
> into RAM and ejects the disc once it's loaded, so if you're using it
> on multiple machines you can use one disc to load them all at once.
>

Although a nice benefit, I think I'm going to do it the old way... after
all, everytime I have to shutdown a box, I have to first migrate the VMs
within to another host. So, no chance to shut them all at the same time.

Rgds,

[-- Attachment #2: Type: text/html, Size: 1636 bytes --]

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2012-02-09 16:15 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-09  3:58 [gentoo-user] [OT] Linux Live CD to perform hardware audit? Pandu Poluan
2012-02-09  5:54 ` Joshua Murphy
2012-02-09  6:47   ` Andrew Tchernoivanov
2012-02-09  7:08     ` Pandu Poluan
2012-02-09  7:26       ` Andrew Tchernoivanov
2012-02-09  7:33         ` Pandu Poluan
2012-02-09  7:06   ` Pandu Poluan
2012-02-09  9:49   ` Alan McKinnon
2012-02-09  8:22 ` Michael Hampicke
2012-02-09 15:14   ` Paul Hartman
2012-02-09 16:13     ` Pandu Poluan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox