MLUG: Re: [UUG/MLUG] 2 questions
Re: [UUG/MLUG] 2 questions
Email address obfuscation in effect -- please click here to turn it off.

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
On Sun, 10 Oct 1999, Robert Willis wrote:

> 1st question   is there a way to probe pci slots ? for some reason my nic isn't being
> recognized
>
lspci or more direct access to the same information is in /proc/pci
This will not do anything more than tell you what is on the pci bus.  It
will not load any driver or any of that good stuff.  I may give you some
insight as to what module needs to be loaded.

> 2nd  what are the commands to untar  say a file like ****.tar.gz
> 
The portable answer to this is "gzip -c <file.tar.gz> | tar xvf -"
Or if you use gnu tar (linux does) than "tar xvzf <file.tar.gz>" will
work.  FreeBSD does not use gnu tar.

Nimrod