Bare machine
In information technology, bare machine is a computer which has no operating system. The software executed by a bare machine, commonly called a "bare metal program" or "bare metal application", is designed to interact directly with hardware. Bare machines are widely used in embedded systems, particularly in cases where resources are limited or high performance is required.
Advantages
Typically, a bare-metal application will run faster, use less memory and be more power efficient than an equivalent program that relies on an operating system, due to the inherent overhead imposed by system calls. For example, hardware inputs and outputs are directly accessible to bare metal software, whereas they must usually be accessed through system calls when using an OS.Disadvantages
Bare metal applications typically require more effort to develop because operating system services such as memory management and task scheduling are not available.Debugging a bare-metal program may be complicated by factors such as:
- Lack of a standard output.
- The target machine may differ from the hardware used for program development. This forces setting up a way to load the bare-metal program onto the target, start the program execution and access the target resources.
Examples
Early computers
Early computers, such as the PDP-11, allowed programmers to load a program, supplied in machine code, to RAM. The resulting operation of the program could be monitored by lights, and output derived from magnetic tape, print devices, or storage.Amdahl UTS's performance improves by 25% when run on bare metal without VM, the company said in 1986.