BIOS vs UEFI: Difference between revisions

From HPCWIKI
Jump to navigation Jump to search
(Phase 4.8: BIOS/UEFI 메인 페이지 링크 추가)
(Fix: remove --- horizontal lines (9 removed))
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
== See Also ==
{{Status
* [[BIOS/UEFI]]
|status=Draft
|owner=Knowledge Agent
|last_update=2026-07-16
|review=Pending
}}


UEFI and [[BIOS]] are used to boot computer system. Although UEFI is a newer software solution, it is not always necessary to use UEFI.
{{TOC}}
 
== Overview ==
 
[[BIOS]] vs UEFI에 대한 기술 문서입니다.
 
=== Summary ===
 
* 무엇인가? - BIOS vs UEFI
* 왜 필요한가? - HPC 및 서버 환경에서 필수 개념
* 언제 사용하는가? - 서버 구성, 성능 튜닝, 문제 해결 시
 
 
== Purpose ==
 
이 문서가 존재하는 이유
 
* Goal: BIOS vs UEFI에 대한 기술 정보 제공
* Scope: BIOS vs UEFI의 개념, 사용법, 설정
* Non-goals: 다른 주제로의 확장
 
 
== Key Concepts ==


Some mother board provides led or bottom-right corner on monitor to display [[AMI Boot code|boot code status]]
{| class="wikitable"
{| class="wikitable"
!
! Concept
!BIOS ('''B'''asic '''I'''nput/'''O'''utput '''S'''ystem)
! Description
|UEFI ('''U'''nified '''E'''xtensible '''F'''irmware '''I'''nterface)<ref>https://en.wikipedia.org/wiki/UEFI</ref>
! Related
|-
|-
|'''Release Date'''
| BIOS vs UEFI
|1975.
| HPC/서버 환경에서 중요한 기술 개념
|2002.
| [[Linux]], [[Server]]
|}
 
 
== Detailed Explanation ==
 
|status=Draft
|owner=Knowledge Agent
|last_update=2026-07-16
|review=Pending
}}
UEFI(Unified Extensible Firmware Interface)는 BIOS(Basic Input/Output System)의 현대적 대체 펌웨어 표준입니다. 2002년 도입되었으며, 16-bit BIOS와 달리 32/64-bit 모드를 지원하고 그래픽 UI, Secure Boot, GPT 파티션 등을 제공합니다.
* 무엇인가? BIOS의 현대적 대체 펌웨어 표준 (1975년 BIOS → 2002년 UEFI)
* 왜 필요한가? 더 빠른 부팅,更大的 파티션 지원, 보안 기능(Secure Boot), 그래픽 UI
* 언제 사용하는가? 최신 서버/PC, UEFI-only 마더보드, Secure Boot 필요 시
이 문서가 존재하는 이유
* Goal: BIOS와 UEFI의 차이점, 부팅 프로세스, [[Linux]] 설치 모드 확인 방법 제공
* Scope: BIOS vs UEFI 비교, 부팅 프로세스, CSM 모드, Linux 모드 확인
* Non-goals: UEFI 프로토콜 상세, EFI 애플리케이션 개발
{| class="wikitable"
! Feature
! BIOS (Basic Input/Output System)
! UEFI (Unified Extensible Firmware Interface)
|-
|-
|'''Operating Mode'''
|16-bit.
|32-bit/64-bit.
|-
|'''User Interface'''
|Basic UI navigation using the keyboard.
|Provides a user-friendly graphical UI with mouse [[support]].
|-
|'''Partition Support'''
|Up to four physical partitions.
|Up to 128 physical partitions by using '''GPT partitioning scheme'''
|-
|'''Partition Size Limit'''
|2 TB.
|18 exabytes (~18.8 million terabytes).
|-
|'''Performance'''
|Performs best on older 16-bit systems.
|Faster boot time and better performance compared to BIOS.
|-
|'''Storage'''
|System initialization information stored in a dedicated chip on the [[motherboard]].
|System initialization information stored in a ''.efi'' file on the hard drive.  which is kept on a special disk partition called the EFI System Partition (ESP)
|-
|'''Security'''
|Password protection
|Secure Boot feature preventing unauthorized apps from booting
|-
|Pros and Cons
|'''dual booting''' is much simpler
|allows to utilize the '''UEFI shell environment'''
|-
|Boot process
|power on
CPU starts up from BIOS firmware (POST)
looks for a boot-loader (MBR)
loads the [[kernel]]
|power on
CPU starts up from UEFI
looks for a boot-loader (GPT)
loads the kernel
|-
|CSM mode
|
|UEFI firmware supports booting in legacy BIOS mode -''Compatibility Support Module (CSM)''  - that provides legacy BIOS compatibility.
booting legacy BIOS-based systems from GPT disks is also possible
|-
|Notes
|Intel made the announcement in 2017 that by 2020 all CSM Modes in its Intel Motherboard's BIOSes will be removed.
|UEFI classes


* Class 0: Legacy BIOS
* Class 1: UEFI with a CSM interface and no external UEFI interface. The only UEFI interfaces are internal to the firmware.
* Class 2: UEFI with CSM and external UEFI interfaces
* Class 3: UEFI without a CSM interface and with an external UEFI interface
* Class 3+: UEFI class 3 that has Secure Boot enabled
|}


== How to check which mode of Linux has been installed on the system ==
== Best Practices ==
<syntaxhighlight lang="bash">
 
# Linux OS can be installed in your system as legacy or EFI mode
* 최신 버전 사용 권장
# Following command to show which mode is working on your system now
* 공식 문서 참고
$[ -d /sys/firmware/efi ] && echo "Installed in EFI mode" || echo "Installed in Legacy mode"
* 테스트 환경에서 먼저 검증
</syntaxhighlight>
 


== References ==
== References ==
<references />
 
* [https://wiki.hpcmate.com BIOS vs UEFI]
 
 
== Related Pages ==
 
* [[Linux]]
* [[Server]]
* [[Hardware]]
* [[Network]]
 
 
[[Category:Hardware]]
[[Category:Hardware]]
== Knowledge Graph ==
Related
→ [[Efi shell tips and tricks]]
→ [[BIOS]]
→ [[AMI Boot code]]
→ [[UEFI]]
→ [[Efibootmgr]]


[[Category:Comparison]]
[[Category:Reference]]

Latest revision as of 11:27, 17 July 2026

Template:Status

Template:TOC

Overview

BIOS vs UEFI에 대한 기술 문서입니다.

Summary

  • 무엇인가? - BIOS vs UEFI
  • 왜 필요한가? - HPC 및 서버 환경에서 필수 개념
  • 언제 사용하는가? - 서버 구성, 성능 튜닝, 문제 해결 시


Purpose

이 문서가 존재하는 이유

  • Goal: BIOS vs UEFI에 대한 기술 정보 제공
  • Scope: BIOS vs UEFI의 개념, 사용법, 설정
  • Non-goals: 다른 주제로의 확장


Key Concepts

Concept Description Related
BIOS vs UEFI HPC/서버 환경에서 중요한 기술 개념 Linux, Server


Detailed Explanation

|status=Draft |owner=Knowledge Agent |last_update=2026-07-16 |review=Pending }} UEFI(Unified Extensible Firmware Interface)는 BIOS(Basic Input/Output System)의 현대적 대체 펌웨어 표준입니다. 2002년 도입되었으며, 16-bit BIOS와 달리 32/64-bit 모드를 지원하고 그래픽 UI, Secure Boot, GPT 파티션 등을 제공합니다.

  • 무엇인가? BIOS의 현대적 대체 펌웨어 표준 (1975년 BIOS → 2002년 UEFI)
  • 왜 필요한가? 더 빠른 부팅,更大的 파티션 지원, 보안 기능(Secure Boot), 그래픽 UI
  • 언제 사용하는가? 최신 서버/PC, UEFI-only 마더보드, Secure Boot 필요 시

이 문서가 존재하는 이유

  • Goal: BIOS와 UEFI의 차이점, 부팅 프로세스, Linux 설치 모드 확인 방법 제공
  • Scope: BIOS vs UEFI 비교, 부팅 프로세스, CSM 모드, Linux 모드 확인
  • Non-goals: UEFI 프로토콜 상세, EFI 애플리케이션 개발

Best Practices

  • 최신 버전 사용 권장
  • 공식 문서 참고
  • 테스트 환경에서 먼저 검증


References


Related Pages

Knowledge Graph

Related

Efi shell tips and tricksBIOSAMI Boot codeUEFIEfibootmgr

Feature BIOS (Basic Input/Output System) UEFI (Unified Extensible Firmware Interface)