How to flash AMI BIOS on ubuntu

Note! sudo password is ultra
run terminal
With the following commands we check the BIOS Version (080016) and BIOS realease/build date(5/23/11):
sudo dmidecode -s bios-version
sudo dmidecode -s bios-release-date
If the version and date are not 080016 and 5/23/11
then we install the flashrom app, download the BIOS from Xtreamer page,
extract the downloaded zip and switch to the extracted directory:
sudo apt-get install flashrom
wget http://download.xtreamer.net/Drivers/Ultra/Utility/A188PA06_Build_05.23.11.zip
unzip A188PA06_Build_05.23.11.zip & cd A188PA06_Build_05.23.11
Now we save the original BIOS for security reasons:
sudo flashrom -r original.rom & ls -la
Check the size of the original.rom it should be 1048576:
-rw-r--r-- 1 root root 1048576 2011-06-08 20:12 original.rom
Now flash the new BIOS with:
sudo flashrom -w A188PA06.ROM
Now reboot system and verify BIOS version and release date again...
Troubleshooting:
If BIOS flash failed flash the original back with:
sudo flashrom -w original.rom
original information from :
HOWTO: Flash BIOS, The Ubuntu Way
Why not just use flashrom
Guide by /exe
Related Articles
No related articles were found.
Attachments
No attachments were found.
Visitor Comments