From e2a66cc8f65330856d6f38f5337c4be653f095df Mon Sep 17 00:00:00 2001 From: Out Of Ideas Date: Sat, 6 Apr 2024 16:16:23 -0500 Subject: [PATCH] Improve UEFI/BIOS chekc --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index 8bdeaef..1fcf703 100644 --- a/README.md +++ b/README.md @@ -118,10 +118,8 @@ If you are not familiar with manual partitioning, then you are in for a real tre The easiest way to check that is to run: ```sh -ls -d /sys/firmware/efi +[ -d "/sys/firmware/efi" ] && echo "UEFI" || echo "Legacy BIOS" ``` -If directory exists (the output will not be an error), then your system is UEFI. If it does not exist, then your system is Legacy BIOS. Make sure that you typed it correctly. - You will need to know this for disk partitioning later on. From now on, follow the CLI or GUI installation guide.