Skip to main content

BIOS - Basic Input Output System

What is BIOS? 

A BIOS stands for “Basic Input Output System”, is a chip on the motherboard. It is stored in the computers and it is a ROM (Read Only Memory) chip and EPROM (Electronically Erasable Programmable Read-Only Memory) is also known as firmware. It will support all hardware on a 286 AT PC and drivers are required for all other hardware. The original version is 8088 BIOS.

BIOS

Functions of BIOS 

It stores a set of instructions to tell the PC how to control devices and provides low-level hardware access. It tests hardware on startup using POST and runs “bootstrap loader” after POST. After this, the operating system takes over. The BIOS sit between the hardware and the operating system

BIOS Location

Four Stage Model of Computing

Model of Computing 

Startup Routine

  1. POST 
  2. Bootstrap Loader 
  3. Master Boot Record
  • IO.SYS 
  • NTLDR 

1. During the POST, the BIOS tells drivers to “test themselves” and report back. The problems are flagged either by beeps codes or by messages on the screen. 

e.g. 301- Keyboard failure 

2. Bootstrap Loader 

3. Master Boot Record 

After this the operating system takes over. 

POST 

It only checks devices listed in Basic Input Output System. “Devices go forth and test yourselves”. 

  • Beep Codes 
  • Text Errors 
  • Missing NTDLR 
  • Keyboard error or no keyboard present 
  • POST cards POST Error Codes 

Error Code  -  Device 

 100 Series Error (any error in the range 100-199) - Motherboard 

 200 Series Error (any error in the range 200-299) - RAM 

 300 Series Error (any error in the range 300-399) - Keyboard 

 400 Series Error (any error in the range 400-499) - Monochrome Video 

 500 Series Error (any error in the range 500-599) - Colour Video 

 600 Series Error (any error in the range 600-699) - Floppy Drive 

 1700 Series Error (any error in the range 1700-1799) - Hard Drive 

Boot Process

  • CPU’s power good wire “wakes up” the CPU 
  • CPU reads first line of POST program 
  • Bootstrap loader runs 
  • Check if disk is in FDD drive 
  • Look for O.S. on boot sector of hard drive N
  • TLDR or IO.SYS is loaded into RAM 
  • Control is transferred from bootstrap loader to the O.S. 
  • Core O.S. files, drivers and services are loaded into RAM 

BIOS Types

The following Basic Input Output System types are 

  • Motherboard chipsets 
  • Each BIOS designed for a specific chipset 
  • 2Mb of storage 
  • 8088 PC – 384K 
  • Backward compatability 
  • BIOS Manufacturers 
  • AMI 
  • Award 
  • Phoenix 

Updating the BIOS 

  • Original BIOS chips couldn’t be updated that is EEPROM or Flash ROM. 
  • Updates downloaded from Internet 

Why update? 

  • Support for new hardware 
  • Overcome a BIOS bug 
  • “Flashing” the BIOS 

Device Drivers - It is installation disk which loaded into ram on startup. 

Config.sys - Config.sys told the OS where the device drivers were stored. It was located on your hard drive and it is used with the windows operating system and it was originally used with DOS. It is also known as SYSEDIT. 

System.ini - It allowed backward compatibility for older device drivers. It was originally use with windows operating system. 

Registry - In windows, config.sys and system.ini were consolidated in the registry. The registry holds all the configuration settings. It can be accessed through the control panel or device manager and you can also manage directly through regedit and regedit32.

 

Comments

Popular posts from this blog

Virtual Private Network (VPN)

  What is Virtual Private Network (VPN)? A virtual private network (VPN) is a secure connection between two private networks over a public network (in other words, over the Internet). All the data that flows over the VPN is encrypted. So anyone who steals packets from the VPN will find them unintelligible; only the parties on either end of the VPN are able to decrypt the packets. VPN connections are often called tunnels. Because they provide an isolated pathway from one point to another through the Internet. The only way to gain meaningful access to a VPN tunnel is at either end. Example for VPN Connections VPNs are used for There are two common uses for VPNs: To provide remote workers with secure access to your company network: To do that, you set up a VPN on the router, and then provide your remote workers with the credentials necessary to access the VPN. The remote workers can run a software VPN client on their home computers or laptops to connec...

Interconnecting Devices

Interconnecting Devices An Interconnecting devices is a network device. It used to transfer data from one computer to other computer with the help of network devices. There are five categories of interconnecting devices are such as. Router  Hubs  Switches/Bridge  Repeater  BRouter Repeater: Now I am going to tell you the repeater is an electronic device that used to receive and send a signal. It amplifies the signal and noise. It provides transmission of the signal.  HUB (Hyper User Bus):  In this, it used to link several computers in the same network. It based on broadcasting, and it sends the data to all computers and repeats the signal which receives a signal from one port and copies to other port and traffic are high. Bridge / Switch:  In this, we can see the interconnecting devices which can divide a single network into two or more segment are called Bridge / Switch.  It has multiple ports like 2, 4, 16, and 32. The Switch main...

VERSION CONTROL TOOL (SVN)

VERSION CONTROL TOOL In Project development several team members will be available Each developers will be developing some components in project All the developers may not be available in same office/location Q-1) How to integrate all the developers code ? Q-2) How to track changes happening to source code ? For the above two problems, Version Control Tool is the solution Version Control Tool provides Storage Capacity to store our project source code Version Control Tool provides Monitored Access (Who/When/Why/What) There are several version control tools are available in the market ·         SVN (Subversion) ·         GIT HUB ·         Bit Bucket etc…   SVN SVN stands for Subversion SVN is an Opensource software SVN is a version control software SVN follows Centralized Architecture SVN Architecture ·       ...