On my system, interrupt calls to the BIOS aren't possible, but there are ways to get information about the BIOS. Here's a script that I use to get BIOS and boot info. It requires
Parse::DMIDecode and
Linux::Bootloader.
#!/usr/bin/perl
use strict;
use warnings;
use Parse::DMIDecode qw(@TYPES %GROUPS);
use Data::Dumper::Concise;
use Linux::Bootloader;
my $dmi = Parse::DMIDecode->new(
dmidecode => "/usr/sbin/dmidecode",
nowarnings => 1,
);
$dmi->probe;
print $dmi->keyword("bios-address"), "\n",
Dumper($dmi->keyword("bios-characteristics")), "\n",
Dumper($dmi->keyword("bios-currently-installed-language")), "\n"
+,
Dumper($dmi->keyword("bios-installable-languages")), "\n",
$dmi->keyword("bios-release-date"), "\n",
$dmi->keyword("bios-rom-size"), "\n",
$dmi->keyword("bios-runtime-size"), "\n",
$dmi->keyword("bios-vendor"), "\n",
$dmi->keyword("bios-version"), "\n";
my $bootloader = new Linux::Bootloader();
my $config_file = '/boot/grub/grub.conf';
$bootloader->read($config_file);
$bootloader->print_info('all');
For those of you using Windows, you'll find something similar
here.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.