Posted On April 1, 2019

How to Flash Bios Using CentOS live USB

kimconnect 0 comments
blog.KimConnect.com >> Linux >> How to Flash Bios Using CentOS live USB
Start CentOS live USB
copy T5500A16.bin to desktop
Run terminal
su
init 1
cd /home/centoslive/Desktop
chmod u+x T5500A16.bin
./T5500A16.bin
 
Update: use rufus to create other Linux / DOS command lines for a quicker way of performing this task

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

How to Install Virtualbox in Ubuntu

Simply run these two commands: sudo add-apt-repository multiverse && sudo apt-get update sudo apt -y…

Pihole Error: Tried 100 Times to Connect to FTL Server

Error Message: DataTables warning: table id=all-queries - Tried 100 times to connect to FTL server,…

Apache HTTPd

# Install Apacheyum install httpd# Configure Apachevim /etc/httpd/conf/httpd.conf##### Change portNameVirtualHost 127.0.0.1:8080Listen 127.0.0.1:8080######### Set DocumentRootDocumentRoot "/var/www/kimconnect"######…