Questions tagged [bios]

The BIOS software is built into the PC, and is the first code run by a PC when powered on ('boot firmware'). The primary function of the BIOS is to load and start an operating system.

The Basic Input/Output System (BIOS), also known as the system BIOS or ROM BIOS ( /ˈbaɪ.oʊs/), is a de facto standard defining a firmware interface.

The BIOS software is built into the PC, and is the first code run by a PC when powered on ('boot firmware'). When the PC starts up, the first job for the BIOS is the power-on self-test, which initializes and identifies system devices such as the CPU, RAM, video display card, keyboard and mouse, hard disk drive, optical disc drive and other hardware. The BIOS then locates boot loader software held on a peripheral device (designated as a 'boot device'), such as a hard disk or a CD/DVD, and loads and executes that software, giving it control of the PC.[2] This process is known as booting, or booting up, which is short for bootstrapping. BIOS software is stored on a non-volatile ROM chip on the motherboard. It is specifically designed to work with each particular model of computer, interfacing with various devices that make up the complementary chipset of the system. In modern computer systems, the BIOS chip's contents can be rewritten without removing it from the motherboard, allowing BIOS software to be upgraded in place.

A BIOS has a user interface (UI), typically a menu system accessed by pressing a certain key on the keyboard when the PC starts. In the BIOS UI, a user can:

  • configure hardware
  • set the system clock
  • enable or disable system components
  • select which devices are eligible to be a potential boot device
  • set various password prompts, such as a password for securing access to the BIOS user interface functions itself and preventing malicious users from booting the system from unauthorized peripheral devices.

http://en.wikipedia.org/wiki/BIOS

916 questions
-2
votes
2 answers

what is magic number to find whether OS on disk present and is it same for all archetectures & devices.Or is it bootloader 2 decide what it should be

I was trying to study bootloader and OS and bios do. So I found this link https://dev.to/frosnerd/writing-my-own-boot-loader-3mld which lead to a lengthy tutorial from a university professor. from the tutorial I read that The way bootloader/bios…
user786
  • 3,902
  • 4
  • 40
  • 72
-2
votes
1 answer

is there a trick that how to start bias mode?

I have Acer aspire laptop and I am unable to start its bias mode, all f1 f2, f1 f10, etc I tried. Please help me. Specification: core i3(1st generation) 6gb RAM, 160 gb ROM
Zaki Shaikh
  • 71
  • 3
  • 9
-2
votes
1 answer

Cannot read sectors from disk in C

I'm using an i686-elf-gcc cross compiler to generate code to run in real-mode. I'm trying to read a sector from my kernel. I know this is the location where my kernel is located, in the second sector, 0th drive, 0th track. It builds fine, but after…
mike
  • 100
  • 7
-2
votes
2 answers

safely remove Ubuntu EFI partition and move windows EFI partition to free space

Problem #1: I messed up my Windows once and it wouldn't start so I had to reinstall using a flash drive, during installation I deleted the EFI partition and the free space is still there but windows made another EFI partition and now I have free…
Jay Mehta
  • 13
  • 1
  • 5
-2
votes
1 answer

Windows 10 bios questions

How can I bootup Windows 10 without a keyboard and mouse plugged in? Something in BIOS? Also, how to enable on powerless, turn back on (when the power comes back on, turn automatically on without pressing the actual power button"? Lastly, how to…
Matt Damoz
  • 115
  • 3
  • 19
-2
votes
2 answers

assembly language problem in communication between BIOS and old MSDOS OS

i have some what little bit lengthy code but a very small problem in line which is mentioned as "PROBLEM IN THIS LINE" explicitly.why we are adding SI and AX twice(instead of just once).As you will go through the code you will find it very…
Vstbutwhy
  • 73
  • 1
  • 5
-2
votes
1 answer

Edit Aptio Ami bios

My laptop vendor turned off the fields after the first "Save and Exit", and added his own, with cuted settings. You can see that the fields are duplicated. pic. 1 shows which fields work and which ones do not. …
Dmitrii
  • 93
  • 10
-2
votes
1 answer

How do I boot windows from an USB without BIOS settings?

It is asking me for a BIOS password. I do not remember myself setting that password. However, the system is old. I want to replace my Ubuntu main OS with Windows 8.1/10.
Mat_python
  • 151
  • 2
  • 2
  • 10
-2
votes
1 answer

Booting to BIOS without usb 2.0 port

I bought an Ainol mini pc and foolishly disabled usb 3.0 in its BIOS. Turns out the machine doesnt hv any 2.0 port and now it does not recognize my input devices during boot time, so I can no longer access BIOS using del key. I tried rebooting…
Lepaker
  • 1
  • 1
-2
votes
1 answer

How to pull info off the bios as a file

I am messing around with some coding and have some used/broken computers. I would like to see what kind of stuff I can do remotely to these computers. I have a PXE boot setup to install operating systems remotely. What I am wondering is that if…
snipem1438
  • 45
  • 2
  • 10
-2
votes
1 answer

how to get BIOS information in c++

we are working on something in that requires BIOS information, i know that these information is available in HKEY_LOCAL_MACHINE/HARDWARE/DESCRIPTION/System registry setting. But i need to do this in C++. is there any API available for this?? i dont…
Sandeep Sharma
  • 109
  • 1
  • 10
-2
votes
1 answer

How do independent vendor BIOSs manage to integrate it OEM hardware?

Microsoft DOS didn't need drivers because DOS is written to depend on a BIOS ABI which handles talking to hardware for it. This site states: "The standard BIOS for PCs is the IBM BIOS, but that's simply because "PC" is an IBM standard. However,…
user3279360
  • 99
  • 10
-2
votes
1 answer

Booting with UEFI not broadcasting UDP packtets

Hi I am new to BIOS and UEFI firmware. I am using PXE to download boot images for UEFI and BIOS. I found that when I do network boot using BIOS, it broadcast UDP packets and my PXE server can process it. But with same configuration if I do…
Manoj Jain
  • 111
  • 1
  • 1
  • 5
-2
votes
1 answer

Booting the disk partitions

I have this assignment to make booting program that shows the partitions disk on MY PC .. I searched a lot and figured out that the section that holed those info in 1BE so I am trying to read from that sector ..I found some codes and tried to…
Sarah
  • 59
  • 1
  • 1
  • 5
-2
votes
1 answer

Warped cursor in assembly

Using BIOS video interrupts, I can finally move my cursor around the screen but when it reaches the end of the screen it disappears. I need for it to appear on the other side, I mean if it goes straight to the ride side it will come out to the left…
JohnSmith123
  • 41
  • 1
  • 8
1 2 3
60
61