23 lines
703 B
Plaintext
23 lines
703 B
Plaintext
---
|
|
title: Boot Option Restoration
|
|
continueTo: distro/fedora/plasma/install/4/
|
|
---
|
|
|
|
import { Picture } from "astro:assets";
|
|
import bootOption from "@/assets/imgs/Fedora/Boot/BootOptionRestoration_Cropped.png";
|
|
|
|
<div class="relative">
|
|
<Picture
|
|
src={bootOption}
|
|
formats={["avif"]}
|
|
alt="A photo of the boot option menu"
|
|
/>
|
|
<div class="absolute bottom-1/4 max-w-3/4 left-1/8 translate-y-3/8 bg-black/30 rounded p-4 text-white">
|
|
You _may_ see this screen if you have secure boot enabled, Press any key on
|
|
your keyboard to stop your system from restarting.
|
|
|
|
You can ignore this step (and the next) if you do not face this screen.
|
|
</div>
|
|
|
|
</div>
|