RHEL 6.x 기준 UEFI 모드 설치 여부 확인 방법이다.
EFI 펌웨어 모드로 설치된 RHEL 시스템은 아래 3가지가 모두 확인이 된다.
방법 1. grub. conf 의 위치
[root@Sample-local ~]# ls -la /boot/efi/EFI/redhat/grub.conf
-rwx------ 1 root root 869 2015-09-09 13:26 /boot/efi/EFI/redhat/grub.conf
[root@Sample-local ~]# ls -la /etc/grub.conf
lrwxrwxrwx. 1 root root 32 2015-09-09 13:26 /etc/grub.conf -> ../boot/efi/EFI/redhat/grub.conf
방법 2. efi 디렉토리 존재 유무
[root@Sample-local ~]# ll /sys/firmware
합계 0
drwxr-xr-x 4 root root 0 2015-09-09 04:52 acpi
drwxr-xr-x 3 root root 0 2015-09-09 13:27 efi
drwxr-xr-x 12 root root 0 2015-09-09 13:27 memmap
방법 3. dmesg 를 통한 EFI 메모리 할당 정보 확인
[root@Sample-local ~]# dmesg |grep EFI
EFI v2.30 by VMware, Inc.
EFI: mem00: type=10, attr=0xf, range=[0x0000000000000000-0x0000000000001000) (0MB)
EFI: mem01: type=7, attr=0xf, range=[0x0000000000001000-0x000000000009e000) (0MB)
EFI: mem02: type=2, attr=0xf, range=[0x000000000009e000-0x00000000000a0000) (0MB)
EFI: mem03: type=7, attr=0xf, range=[0x0000000000100000-0x000000007baa0000) (1977MB)
EFI: mem04: type=2, attr=0xf, range=[0x000000007baa0000-0x000000007d2e5000) (24MB)
EFI: mem05: type=4, attr=0xf, range=[0x000000007d2e5000-0x000000007da39000) (7MB)
EFI: mem06: type=2, attr=0xf, range=[0x000000007da39000-0x000000007de39000) (4MB)
.
.
~ 생략 ~
위 3가지는 VM ESXi 5.5.0 상에 설치된 VM을 통해서 확인된 정보이며, 물리머신도 동일하게 확인이 된다.