Linux - How to find firmware version, Linux command to find hardware firmware version
How to find firmware version
How to find out the firmware version in linux?Linux has given you various option to find out the firmware version. Linux is an wonderful operating system and many peoples love who are using it in their daily life. The firmware version can be easily checked out in Linux by using dmidecode, dmidecode is a tool to locate the computer's Desktop Management Interface (DMI) table and dump the content to human-readable content. The dmidecode can find out more information.
# dmidecode -s bios-version
If you are unable to find the information from the above command try to se the below ones.
# dmidecode | grep -i 'version'Extract the hardware information and firmware version from the above command.
# dmidecode | grep -i 'version'
Other command which are used to find out the hardware information are
# lspci -vlspci is a linux tool which is used to list all PCI devices, It is used to find out the pci bus information.
# lshw
The topic on Linux - How to find firmware version is posted by - Math
Hope you have enjoyed, Linux - How to find firmware versionThanks for your time