Document your own firmware settings before you ever need them
Task
Record the firmware configuration of a machine you own, identify the settings that matter, and establish what a dead coin cell would change -- so that the symptoms are recognisable rather than mysterious.
Steps
- Enter the firmware settings and record the version, date and the board or system model in
lab/fw/version.csvwith headerfield,value. - Record the settings that matter in
lab/fw/settings.csvwith headersetting,current_value,what_it_affectscovering at least boot order, virtualisation support, secure boot, boot mode and storage mode. - Record whether virtualisation support is enabled. If it is disabled and you intend to run the domain 4 labs, enable it and record the change in
lab/fw/changed.mdwith what it was before. - Write
lab/fw/clock.mdrecording the system date and time as the firmware reports it, and listing three symptoms a wrong clock would produce at the operating system level. - Write
lab/fw/coincell.mdlisting what the coin cell holds, what it does not, and the four symptoms of its failure in the order a user would notice them.
Verify
awk -F, 'NR>1 && NF>=2 {n++} END {print n" version field(s)"}' lab/fw/version.csv
awk -F, 'NR>1 && NF>=3 {n++} END {print n" setting(s) recorded"}' lab/fw/settings.csv
grep -Eic 'virtuali' lab/fw/settings.csv
grep -Eic 'certificate|time|clock|logon|domain' lab/fw/clock.md
grep -Eic 'clock|setting|checksum|certificate' lab/fw/coincell.md
Two or more version fields, five or more settings with their effects, a virtualisation row present, and both notes covering the downstream symptoms. The certificate-error symptom is the one that matters: a user reporting that no secure site works has a clock problem, not a network problem.
Notes
Record this before you need it. A machine whose firmware settings are documented can be restored after a coin cell failure in two minutes; one whose settings nobody wrote down is a guessing exercise with a storage mode that has to be right.
This is an independent study companion for CompTIA A+ Core 1 220-1201 and is not produced by or endorsed by CompTIA.