On Sun, Feb 24, 2002 at 11:27:30PM -0800, SI Reasoning alleged: > > --- Juan Quintela <[EMAIL PROTECTED]> wrote: > > the output of this program, to be able to detect the > > BIOS > > http://people.redhat.com/arjanv/dmidecode.c > > > > This is what I get on my Dell Inspiron 8000 w/ ATI M4 > [root@sidell sczjd]# ./dmidecode.c > ./dmidecode.c: /1: Permission denied > ./dmidecode.c: 2.4.17-10mdk-noapic: command not found > ./dmidecode.c: 2.4.17-10mdk-noapic: command not found > ./dmidecode.c: line 4: syntax error near unexpected > token `(C)' > ./dmidecode.c: line 4: ` * (C) 2000,2001 Alan Cox > <[EMAIL PROTECTED]>'
That's a C program, it needs to be compiled. Try 'gcc -o dmidecode dmidecode.c' and then run './dmidecode'.
