Hi Chris,
you can use the dmidecode command which pulls the information from DMI/SMBIOS you will get the complete information of the system. you can also redirect the output to a file
command syntax:
# dmidecode -q > dmidecode.txt
if you want specific information an example on BIOS mentioned below.
command syntax:
# dmidecode --type bios
Thanks