Complete Fedora Workstation 42 Install Guide
This commit is contained in:
@@ -0,0 +1,173 @@
|
||||
import type { Dialog } from "@/lib/tinyvn";
|
||||
import { getRelativeLocaleUrl } from "astro:i18n";
|
||||
import fedoraWorkstation from "@/assets/imgs/Fedora/fedora42_workstation.avif";
|
||||
import fedoraWorkstationPng from "@/assets/imgs/Fedora/fedora42_workstation.png";
|
||||
import fedoraPlasma from "@/assets/imgs/Fedora/fedora42_kdeplasma.avif";
|
||||
import fedoraPlasmaPng from "@/assets/imgs/Fedora/fedora42_kdeplasma.png";
|
||||
|
||||
const fedoraDialogs: Dialog[] = [
|
||||
{
|
||||
title: "So you've chosen Fedora.",
|
||||
content:
|
||||
"Do you have an NVIDIA graphics card?",
|
||||
choices: [
|
||||
{
|
||||
text: "Yes",
|
||||
action: "continue"
|
||||
},
|
||||
{
|
||||
text: "No",
|
||||
action: "jump",
|
||||
data: 5,
|
||||
},
|
||||
],
|
||||
}, // 0
|
||||
{
|
||||
title: "Regarding NVIDIA drivers",
|
||||
content: `It is recommended for beginners to install Fedora derivatives instead
|
||||
as it will help ease the process of setting drivers up. Do you wish to continue with Fedora?`,
|
||||
choices: [
|
||||
{
|
||||
action: "continue",
|
||||
text: "I'll go with the easier route"
|
||||
},
|
||||
{
|
||||
action: "jump",
|
||||
text: "I'll continue with Fedora",
|
||||
data: 5
|
||||
}
|
||||
]
|
||||
}, // 1
|
||||
{
|
||||
title: "Do you need Secure Boot?",
|
||||
content: `Secure Boot is a technology required by some anticheat programs,
|
||||
namely Riot Vanguard.`,
|
||||
choices: [
|
||||
{
|
||||
action: "continue",
|
||||
text: "Yes."
|
||||
},
|
||||
{
|
||||
action: "jump",
|
||||
text: "No.",
|
||||
data: 4
|
||||
}
|
||||
]
|
||||
}, // 2
|
||||
{
|
||||
title: "Bazzite",
|
||||
content: "Bazzite is a Linux distribution which is basically designed for gamers.",
|
||||
choices: [
|
||||
{
|
||||
action: "link",
|
||||
data: "https://bazzite.gg/",
|
||||
text: "Visit Website"
|
||||
}
|
||||
]
|
||||
}, // 3
|
||||
{
|
||||
title: "Nobara Linux",
|
||||
content: "The Nobara project aims to improve Fedora's user-friendliness.",
|
||||
choices: [
|
||||
{
|
||||
action: "link",
|
||||
data: "https://nobaraproject.org/",
|
||||
text: "Visit Website"
|
||||
}
|
||||
]
|
||||
}, // 4
|
||||
{
|
||||
title: "Prerequisites",
|
||||
content: "Please prepare an empty/unused USB flash drive with at least 4GB capacity."
|
||||
}, // 5
|
||||
{
|
||||
title: "Fedora Media Writer",
|
||||
content: `It is a program which will help you copy Fedora's installer
|
||||
to your USB flash drive. Please download and install the program as usual for
|
||||
your platform.
|
||||
<div class="grid grid-flow-col auto-cols-fr gap-2">
|
||||
<a href="https://github.com/FedoraQt/MediaWriter/releases/latest"
|
||||
class="button" target="_blank" rel="noopener noreferrer">
|
||||
Windows/macOS
|
||||
</a>
|
||||
<a href="https://flathub.org/apps/details/org.fedoraproject.MediaWriter"
|
||||
class="button" target="_blank" rel="noopener noreferrer">
|
||||
Linux
|
||||
</a>
|
||||
</div>`,
|
||||
choices: [
|
||||
{
|
||||
action: "continue",
|
||||
text: "Done!"
|
||||
}
|
||||
]
|
||||
}, // 6
|
||||
{
|
||||
title: "Choose your flavor",
|
||||
content: `Choose a desktop environment, pick whatever you like based on
|
||||
appearance. KDE Plasma (Right) may be more familiar for Windows users.`,
|
||||
choices: [
|
||||
{
|
||||
action: "continue",
|
||||
text: `<figure>
|
||||
<picture>
|
||||
<source srcset="${fedoraWorkstation.src}" type="image/avif" />
|
||||
<img src="${fedoraWorkstationPng.src}" alt="Fedora Workstation 42" />
|
||||
</picture>
|
||||
<figcaption>Fedora Workstation</figcaption>
|
||||
</figure>`
|
||||
},
|
||||
{
|
||||
action: "jump",
|
||||
text: `<figure>
|
||||
<picture>
|
||||
<source srcset="${fedoraPlasma.src}" type="image/avif" />
|
||||
<img src="${fedoraPlasmaPng.src}" alt="Fedora KDE Plasma Desktop 42" />
|
||||
</picture>
|
||||
<figcaption>Fedora KDE Plasma Desktop</figcaption>
|
||||
</figure>`,
|
||||
data: 9
|
||||
}
|
||||
]
|
||||
}, // 7
|
||||
{
|
||||
title: "Fedora Workstation",
|
||||
content: `<picture>
|
||||
<source srcset="${fedoraWorkstation.src}" type="image/avif" />
|
||||
<img src="${fedoraWorkstationPng.src}" alt="Fedora Workstation 42" />
|
||||
</picture>`,
|
||||
choices: [
|
||||
{
|
||||
action: "jump",
|
||||
text: "Back",
|
||||
data: 7
|
||||
},
|
||||
{
|
||||
action: "link",
|
||||
text: "Continue",
|
||||
data: getRelativeLocaleUrl("en", "distro/fedora/workstation/0")
|
||||
}
|
||||
]
|
||||
}, // 8
|
||||
{
|
||||
title: "Fedora KDE Plasma Desktop",
|
||||
content: `<picture>
|
||||
<source srcset="${fedoraPlasma.src}" type="image/avif" />
|
||||
<img src="${fedoraPlasmaPng.src}" alt="Fedora KDE Plasma Desktop 42" />
|
||||
</picture>`,
|
||||
choices: [
|
||||
{
|
||||
action: "jump",
|
||||
text: "Back",
|
||||
data: 7
|
||||
},
|
||||
{
|
||||
action: "link",
|
||||
text: "Continue",
|
||||
data: getRelativeLocaleUrl("en", "distro/fedora/plasma/0")
|
||||
}
|
||||
]
|
||||
} // 9
|
||||
];
|
||||
|
||||
export default fedoraDialogs;
|
||||
@@ -0,0 +1,25 @@
|
||||
---
|
||||
title: Fedora Media Writer
|
||||
description: Choosing to download Fedora automatically.
|
||||
---
|
||||
|
||||
import { Picture } from "astro:assets";
|
||||
import ChoiceList from "@/components/ChoiceList.astro";
|
||||
import selectImageSource from "@/assets/imgs/Fedora/FedoraMediaWriter/SelectImageSource.png";
|
||||
|
||||
<div class="flex justify-center">
|
||||
<Picture
|
||||
src={selectImageSource}
|
||||
formats={["avif"]}
|
||||
alt="Fedora Media Writer's Select Image Source page"
|
||||
class="h-72 w-auto"
|
||||
/>
|
||||
</div>
|
||||
|
||||
Select "Download automatically" and click Next.
|
||||
|
||||
<ChoiceList>
|
||||
<a href="/en/distro/fedora/workstation/1/" class="button">
|
||||
Continue
|
||||
</a>
|
||||
</ChoiceList>
|
||||
@@ -0,0 +1,25 @@
|
||||
---
|
||||
title: Select Fedora Release
|
||||
description: Select the Fedora release according to your choosing.
|
||||
---
|
||||
|
||||
import { Picture } from "astro:assets";
|
||||
import ChoiceList from "@/components/ChoiceList.astro";
|
||||
import selectImageSource from "@/assets/imgs/Fedora/FedoraMediaWriter/SelectFedoraRelease_Workstation.png";
|
||||
|
||||
<div class="flex justify-center">
|
||||
<Picture
|
||||
src={selectImageSource}
|
||||
formats={["avif"]}
|
||||
alt="Fedora Media Writer's Select Fedora Release page"
|
||||
class="h-72 w-auto"
|
||||
/>
|
||||
</div>
|
||||
|
||||
Select "Fedora Workstation" and click Next.
|
||||
|
||||
<ChoiceList>
|
||||
<a href="/en/distro/fedora/workstation/2/" class="button">
|
||||
Continue
|
||||
</a>
|
||||
</ChoiceList>
|
||||
@@ -0,0 +1,31 @@
|
||||
---
|
||||
title: Write Options
|
||||
description: Selecting the USB flash drive write options
|
||||
---
|
||||
|
||||
import { Picture } from "astro:assets";
|
||||
import ChoiceList from "@/components/ChoiceList.astro";
|
||||
import writeOptions from "@/assets/imgs/Fedora/FedoraMediaWriter/WriteOptions.png";
|
||||
|
||||
<div class="flex justify-center">
|
||||
<Picture
|
||||
src={writeOptions}
|
||||
formats={["avif"]}
|
||||
alt="Fedora Media Writer's Write Options page"
|
||||
class="h-72 w-auto"
|
||||
/>
|
||||
</div>
|
||||
|
||||
Select the latest version available (as of writing, is version 42) and make
|
||||
sure you're choosing the right device in the USB Drive dropdown.
|
||||
|
||||
Optionally, check "Delete download after writing" if you'd like to save space
|
||||
and do not plan to format a USB flash drive again with Fedora anytime soon.
|
||||
|
||||
Then, Click "Write"
|
||||
|
||||
<ChoiceList>
|
||||
<a href="/en/distro/fedora/workstation/3/" class="button">
|
||||
Continue
|
||||
</a>
|
||||
</ChoiceList>
|
||||
@@ -0,0 +1,27 @@
|
||||
---
|
||||
title: Erase Confirmation
|
||||
description: Confirming the formatting of the USB drive.
|
||||
---
|
||||
|
||||
import { Picture } from "astro:assets";
|
||||
import ChoiceList from "@/components/ChoiceList.astro";
|
||||
import eraseConfirmation from "@/assets/imgs/Fedora/FedoraMediaWriter/EraseConfirmation.png";
|
||||
|
||||
<div class="flex justify-center">
|
||||
<Picture
|
||||
src={eraseConfirmation}
|
||||
formats={["avif"]}
|
||||
alt="Fedora Media Writer's Erase Confirmation dialog"
|
||||
class="h-48 w-auto"
|
||||
/>
|
||||
</div>
|
||||
|
||||
**The entire device that you have selected will be wiped.** Click "Write" if
|
||||
you have absolutely made sure that the selected device does not have important
|
||||
data on it. This action is **irreversible.**
|
||||
|
||||
<ChoiceList>
|
||||
<a href="/en/distro/fedora/workstation/4/" class="button">
|
||||
Continue
|
||||
</a>
|
||||
</ChoiceList>
|
||||
@@ -0,0 +1,26 @@
|
||||
---
|
||||
title: Wait
|
||||
description: Wait while Fedora Media Writer does its thing.
|
||||
---
|
||||
|
||||
import { Picture } from "astro:assets";
|
||||
import ChoiceList from "@/components/ChoiceList.astro";
|
||||
import writing from "@/assets/imgs/Fedora/FedoraMediaWriter/Writing.png";
|
||||
|
||||
<div class="flex justify-center">
|
||||
<Picture
|
||||
src={writing}
|
||||
formats={["avif"]}
|
||||
alt="Fedora Media Writer's Writing page"
|
||||
class="h-72 w-auto"
|
||||
/>
|
||||
</div>
|
||||
|
||||
Now, wait while Fedora Media Writer is downloading and writing to your USB
|
||||
flash drive. You can do something else while it does its thing.
|
||||
|
||||
<ChoiceList>
|
||||
<a href="/en/distro/fedora/workstation/5/" class="button">
|
||||
Continue
|
||||
</a>
|
||||
</ChoiceList>
|
||||
@@ -0,0 +1,25 @@
|
||||
---
|
||||
title: Finished
|
||||
description: Finished! Get ready to install.
|
||||
---
|
||||
|
||||
import { Picture } from "astro:assets";
|
||||
import ChoiceList from "@/components/ChoiceList.astro";
|
||||
import finished from "@/assets/imgs/Fedora/FedoraMediaWriter/Finished.png";
|
||||
|
||||
<div class="flex justify-center">
|
||||
<Picture
|
||||
src={finished}
|
||||
formats={["avif"]}
|
||||
alt="Fedora Media Writer's Finished page"
|
||||
class="h-72 w-auto"
|
||||
/>
|
||||
</div>
|
||||
|
||||
Done! Next, We'll start the real installation process.
|
||||
|
||||
<ChoiceList>
|
||||
<a href="/en/distro/fedora/workstation/install/0/" class="button">
|
||||
Continue
|
||||
</a>
|
||||
</ChoiceList>
|
||||
@@ -0,0 +1,23 @@
|
||||
---
|
||||
title: Willkommen
|
||||
---
|
||||
|
||||
import { Picture } from "astro:assets";
|
||||
import ChoiceList from "@/components/ChoiceList.astro";
|
||||
import welcome from "@/assets/imgs/Fedora/AfterInstall/WelcomeCropped.png";
|
||||
|
||||
<Picture
|
||||
src={welcome}
|
||||
formats={["avif"]}
|
||||
alt="The Welcome window"
|
||||
class="max-h-[60vh] w-auto"
|
||||
priority
|
||||
/>
|
||||
|
||||
Confirm your language selection and simply click "Next".
|
||||
|
||||
<ChoiceList>
|
||||
<a href="/en/distro/fedora/workstation/afterinstall/1/" class="button">
|
||||
Continue
|
||||
</a>
|
||||
</ChoiceList>
|
||||
@@ -0,0 +1,25 @@
|
||||
---
|
||||
title: Keyboard Layout
|
||||
---
|
||||
|
||||
import { Picture } from "astro:assets";
|
||||
import ChoiceList from "@/components/ChoiceList.astro";
|
||||
import keyboard from "@/assets/imgs/Fedora/AfterInstall/TypingCropped.png";
|
||||
|
||||
<Picture
|
||||
src={keyboard}
|
||||
formats={["avif"]}
|
||||
alt="The Typing page listing keyboard layouts"
|
||||
class="max-h-[60vh] w-auto"
|
||||
priority
|
||||
/>
|
||||
|
||||
Select your preferred keyboard layout and click "Next".
|
||||
|
||||
(Don't worry bilinguals, You'll be able to add another keyboard layout later!)
|
||||
|
||||
<ChoiceList>
|
||||
<a href="/en/distro/fedora/workstation/afterinstall/2/" class="button">
|
||||
Continue
|
||||
</a>
|
||||
</ChoiceList>
|
||||
@@ -0,0 +1,28 @@
|
||||
---
|
||||
title: Privacy
|
||||
---
|
||||
|
||||
import { Picture } from "astro:assets";
|
||||
import ChoiceList from "@/components/ChoiceList.astro";
|
||||
import welcome from "@/assets/imgs/Fedora/AfterInstall/PrivacyCropped.png";
|
||||
|
||||
<div class="flex justify-center">
|
||||
<Picture
|
||||
src={welcome}
|
||||
formats={["avif"]}
|
||||
alt="The Privacy page"
|
||||
class="max-h-[60vh] w-auto"
|
||||
priority
|
||||
/>
|
||||
</div>
|
||||
|
||||
Check whether you want location services and automatic problem reporting.
|
||||
|
||||
You can disable the location service if you do not plan to use any apps
|
||||
that rely on your location such as Maps.
|
||||
|
||||
<ChoiceList>
|
||||
<a href="/en/distro/fedora/workstation/afterinstall/3/" class="button">
|
||||
Continue
|
||||
</a>
|
||||
</ChoiceList>
|
||||
@@ -0,0 +1,23 @@
|
||||
---
|
||||
title: On the topic of time
|
||||
---
|
||||
|
||||
import { Picture } from "astro:assets";
|
||||
import ChoiceList from "@/components/ChoiceList.astro";
|
||||
import timeZone from "@/assets/imgs/Fedora/AfterInstall/TimeZoneCropped.png";
|
||||
|
||||
<Picture
|
||||
src={timeZone}
|
||||
formats={["avif"]}
|
||||
alt="The Time zone selection page"
|
||||
class="max-h-[60vh] w-auto"
|
||||
priority
|
||||
/>
|
||||
|
||||
Search for your city (or the one near you) to select the time zone.
|
||||
|
||||
<ChoiceList>
|
||||
<a href="/en/distro/fedora/workstation/afterinstall/4/" class="button">
|
||||
Continue
|
||||
</a>
|
||||
</ChoiceList>
|
||||
@@ -0,0 +1,28 @@
|
||||
---
|
||||
title: Parties!
|
||||
---
|
||||
|
||||
import { Picture } from "astro:assets";
|
||||
import ChoiceList from "@/components/ChoiceList.astro";
|
||||
import image from "@/assets/imgs/Fedora/AfterInstall/ThirdPartyRepoCropped.png";
|
||||
|
||||
<Picture
|
||||
src={image}
|
||||
formats={["avif"]}
|
||||
alt="The Time zone selection page"
|
||||
priority
|
||||
/>
|
||||
|
||||
Choose whether you want third-party <span
|
||||
class="border-b border-dotted"
|
||||
title="Imagine a warehouse that stores software, That is a software repository.">
|
||||
repositories</span>
|
||||
|
||||
It is recommended that you enable it to ensure access to a wide-variety of
|
||||
software and any drivers that you may need now or in the future.
|
||||
|
||||
<ChoiceList>
|
||||
<a href="/en/distro/fedora/workstation/afterinstall/5/" class="button">
|
||||
Continue
|
||||
</a>
|
||||
</ChoiceList>
|
||||
@@ -0,0 +1,29 @@
|
||||
---
|
||||
title: What is thy name?
|
||||
---
|
||||
|
||||
import { Picture } from "astro:assets";
|
||||
import ChoiceList from "@/components/ChoiceList.astro";
|
||||
import image from "@/assets/imgs/Fedora/AfterInstall/UsernameCropped.png";
|
||||
|
||||
<div class="flex justify-center">
|
||||
<Picture
|
||||
src={image}
|
||||
formats={["avif"]}
|
||||
alt="Full name & username input page"
|
||||
class="max-h-[60vh] w-auto"
|
||||
priority
|
||||
/>
|
||||
</div>
|
||||
|
||||
I think this is obvious enough. Full names can have spaces and whatever you
|
||||
fancy and username mostly just contains <span
|
||||
class="border-b border-dotted"
|
||||
title="a.k.a numbers and English alphabets">alphanumeric</span> characters
|
||||
under 64 characters in length.
|
||||
|
||||
<ChoiceList>
|
||||
<a href="/en/distro/fedora/workstation/afterinstall/6/" class="button">
|
||||
Continue
|
||||
</a>
|
||||
</ChoiceList>
|
||||
@@ -0,0 +1,27 @@
|
||||
---
|
||||
title: "********"
|
||||
---
|
||||
|
||||
import { Picture } from "astro:assets";
|
||||
import ChoiceList from "@/components/ChoiceList.astro";
|
||||
import image from "@/assets/imgs/Fedora/AfterInstall/PasswordCropped.png";
|
||||
|
||||
<div class="flex justify-center">
|
||||
<Picture
|
||||
src={image}
|
||||
formats={["avif"]}
|
||||
alt="Setting account password page"
|
||||
class="max-h-[60vh] w-auto"
|
||||
priority
|
||||
/>
|
||||
</div>
|
||||
|
||||
Set a new password for your new user account. Just use whatever but most
|
||||
importantly, **Don't forget them.** (Write it down in a note somewhere if you
|
||||
must)
|
||||
|
||||
<ChoiceList>
|
||||
<a href="/en/distro/fedora/workstation/afterinstall/7/" class="button">
|
||||
Continue
|
||||
</a>
|
||||
</ChoiceList>
|
||||
@@ -0,0 +1,26 @@
|
||||
---
|
||||
title: Hooray
|
||||
---
|
||||
|
||||
import { Picture } from "astro:assets";
|
||||
import Party from "@/components/Party.astro";
|
||||
import ChoiceList from "@/components/ChoiceList.astro";
|
||||
import image from "@/assets/imgs/Fedora/AfterInstall/OnboardDoneCropped.png";
|
||||
|
||||
<div class="flex justify-center">
|
||||
<Picture
|
||||
src={image}
|
||||
formats={["avif"]}
|
||||
alt="Page showing that the system is ready to be used"
|
||||
class="max-h-[60vh] w-auto"
|
||||
priority
|
||||
/>
|
||||
</div>
|
||||
|
||||
<Party />
|
||||
|
||||
<ChoiceList>
|
||||
<a href="/en/distro/fedora/workstation/afterinstall/8/" class="button">
|
||||
Continue
|
||||
</a>
|
||||
</ChoiceList>
|
||||
@@ -0,0 +1,28 @@
|
||||
---
|
||||
title: Hooray
|
||||
---
|
||||
|
||||
import { Picture } from "astro:assets";
|
||||
import Party from "@/components/Party.astro";
|
||||
import ChoiceList from "@/components/ChoiceList.astro";
|
||||
import image from "@/assets/imgs/Fedora/AfterInstall/OptionalTour.png";
|
||||
|
||||
<div class="flex justify-center">
|
||||
<Picture
|
||||
src={image}
|
||||
formats={["avif"]}
|
||||
alt="An optional tour for the desktop"
|
||||
class="max-h-[60vh] w-auto"
|
||||
priority
|
||||
/>
|
||||
</div>
|
||||
|
||||
Now press the Super key (or also called the Windows key) and get into the
|
||||
overview of your desktop! You may receive this tour invitation and I would
|
||||
recommend that you take the tour to learn your way around the desktop.
|
||||
|
||||
<ChoiceList>
|
||||
<a href="/en/" class="button">
|
||||
Back Home
|
||||
</a>
|
||||
</ChoiceList>
|
||||
@@ -0,0 +1,21 @@
|
||||
---
|
||||
title: Installation
|
||||
description: The steps of installing Fedora Linux
|
||||
---
|
||||
|
||||
import ChoiceList from "@/components/ChoiceList.astro";
|
||||
import QRCode from "@/components/QRCode.astro";
|
||||
|
||||
The steps after this will require you to restart the machine you're going to
|
||||
install Linux on. If that is the machine you're viewing this guide on, You
|
||||
should likely switch to a phone or other devices.
|
||||
|
||||
<div class="flex justify-center">
|
||||
<QRCode msg="/en/distro/fedora/workstation/install/0/" width="164" />
|
||||
</div>
|
||||
|
||||
<ChoiceList>
|
||||
<a href="/en/distro/fedora/workstation/install/1/" class="button">
|
||||
Continue
|
||||
</a>
|
||||
</ChoiceList>
|
||||
@@ -0,0 +1,18 @@
|
||||
---
|
||||
title: Restart
|
||||
description: Restarting your machine to boot from the USB flash drive
|
||||
---
|
||||
|
||||
import ChoiceList from "@/components/ChoiceList.astro";
|
||||
|
||||
Next, you'll need to restart your machine to boot from the USB flash drive.
|
||||
|
||||
Please look up the boot menu key for your laptop/mainboard manufacturer and
|
||||
then when restarting, Press that key repeatedly until the "Boot Menu" pops
|
||||
up.
|
||||
|
||||
<ChoiceList>
|
||||
<a href="/en/distro/fedora/workstation/install/2/" class="button">
|
||||
Continue
|
||||
</a>
|
||||
</ChoiceList>
|
||||
@@ -0,0 +1,32 @@
|
||||
---
|
||||
title: Installation Method
|
||||
---
|
||||
|
||||
import { Picture } from "astro:assets";
|
||||
import ChoiceList from "@/components/ChoiceList.astro";
|
||||
import installMethod from "@/assets/imgs/Fedora/Install/InstallationMethod_Cropped.png";
|
||||
|
||||
<div class="relative">
|
||||
<Picture
|
||||
src={installMethod}
|
||||
formats={["avif"]}
|
||||
alt="Installation method page"
|
||||
/>
|
||||
<div class="absolute bottom-1/4 max-w-7/8 left-1/16 translate-y-1/2 bg-white/50 text-black rounded p-4">
|
||||
"Share disk with other operating system" - Share disk space, have more than one OS on your machine
|
||||
|
||||
"Use entire disk" - Wipe the entire thing and install Fedora
|
||||
|
||||
We won't talk about the third option in the picture because it's advanced™
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<ChoiceList>
|
||||
<a href="/en/distro/fedora/workstation/install/11/" class="button">
|
||||
I choose to share
|
||||
</a>
|
||||
<a href="/en/distro/fedora/workstation/install/14/" class="button">
|
||||
Use the entire thang
|
||||
</a>
|
||||
</ChoiceList>
|
||||
@@ -0,0 +1,23 @@
|
||||
---
|
||||
title: Sharing is caring
|
||||
---
|
||||
|
||||
import { Picture } from "astro:assets";
|
||||
import ChoiceList from "@/components/ChoiceList.astro";
|
||||
import reclaimSpace from "@/assets/imgs/Fedora/Install/ReclaimSpace_Cropped.png";
|
||||
import ResizeIcon from "@/assets/icons/fa-compress-arrows-alt.svg";
|
||||
|
||||
<Picture src={reclaimSpace} formats={["avif"]} alt="Reclaim space dialog" />
|
||||
|
||||
You should likely resize the biggest partition, which in the picture is `sda3`
|
||||
with 67.9 GB of total space (which in the example system, is the Windows C
|
||||
drive). Click <ResizeIcon
|
||||
class="size-5 inline-block"
|
||||
aria-label="Compress icon" role="img" />
|
||||
to resize.
|
||||
|
||||
<ChoiceList>
|
||||
<a href="/en/distro/fedora/workstation/install/12/" class="button">
|
||||
Continue
|
||||
</a>
|
||||
</ChoiceList>
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
title: Resize it!
|
||||
---
|
||||
|
||||
import { Picture } from "astro:assets";
|
||||
import ChoiceList from "@/components/ChoiceList.astro";
|
||||
import reclaimSpace from "@/assets/imgs/Fedora/Install/ReclaimSpaceSlider_Cropped.png";
|
||||
|
||||
<Picture
|
||||
src={reclaimSpace}
|
||||
formats={["avif"]}
|
||||
alt="Reclaim space dialog with a new size slider"
|
||||
/>
|
||||
|
||||
Choose a new size for your partition. Please also keep in mind the available
|
||||
space of your partition. Simply click "Resize" after you're done.
|
||||
|
||||
<ChoiceList>
|
||||
<a href="/en/distro/fedora/workstation/install/13/" class="button">
|
||||
Continue
|
||||
</a>
|
||||
</ChoiceList>
|
||||
@@ -0,0 +1,21 @@
|
||||
---
|
||||
title: Reclaim Territory
|
||||
---
|
||||
|
||||
import { Picture } from "astro:assets";
|
||||
import ChoiceList from "@/components/ChoiceList.astro";
|
||||
import reclaimSpace from "@/assets/imgs/Fedora/Install/ReclaimSpaceDone_Cropped.png";
|
||||
|
||||
<Picture
|
||||
src={reclaimSpace}
|
||||
formats={["avif"]}
|
||||
alt="Reclaim space dialog after partition has been resized"
|
||||
/>
|
||||
|
||||
Now, Verify your configuration and click "Reclaim space".
|
||||
|
||||
<ChoiceList>
|
||||
<a href="/en/distro/fedora/workstation/install/14/" class="button">
|
||||
Continue
|
||||
</a>
|
||||
</ChoiceList>
|
||||
@@ -0,0 +1,27 @@
|
||||
---
|
||||
title: Disk Encryption
|
||||
---
|
||||
|
||||
import { Picture } from "astro:assets";
|
||||
import ChoiceList from "@/components/ChoiceList.astro";
|
||||
import diskEncryption from "@/assets/imgs/Fedora/Install/DiskEncryptionUnchecked_Cropped.png";
|
||||
|
||||
<div class="relative">
|
||||
<Picture
|
||||
src={diskEncryption}
|
||||
formats={["avif"]}
|
||||
alt="Disk encryption page"
|
||||
/>
|
||||
<div class="absolute bottom-1/4 max-w-7/8 left-1/16 translate-y-1/2 bg-white/50 text-black rounded p-4">
|
||||
You can optionally encrypt your disk. If you wish to encrypt, Check the
|
||||
checkbox and enter the required information. If not, Just go ahead and
|
||||
press "Next".
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<ChoiceList>
|
||||
<a href="/en/distro/fedora/workstation/install/15/" class="button">
|
||||
Continue
|
||||
</a>
|
||||
</ChoiceList>
|
||||
@@ -0,0 +1,25 @@
|
||||
---
|
||||
title: Review and Install
|
||||
---
|
||||
|
||||
import { Picture } from "astro:assets";
|
||||
import ChoiceList from "@/components/ChoiceList.astro";
|
||||
import reviewAndInstall from "@/assets/imgs/Fedora/Install/ReviewAndInstall_Cropped.png";
|
||||
|
||||
<div class="relative">
|
||||
<Picture
|
||||
src={reviewAndInstall}
|
||||
formats={["avif"]}
|
||||
alt="Review and Installation page"
|
||||
/>
|
||||
<div class="absolute bottom-1/4 left-1/2 -translate-x-1/2 translate-y-1/2 bg-white/50 text-black rounded p-4">
|
||||
Review what the installer is going to do, and press "Install"!
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<ChoiceList>
|
||||
<a href="/en/distro/fedora/workstation/install/16/" class="button">
|
||||
Continue
|
||||
</a>
|
||||
</ChoiceList>
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: Installing...
|
||||
---
|
||||
|
||||
import { Picture } from "astro:assets";
|
||||
import ChoiceList from "@/components/ChoiceList.astro";
|
||||
import installing from "@/assets/imgs/Fedora/Install/Installing_Cropped.png";
|
||||
|
||||
<Picture
|
||||
src={installing}
|
||||
formats={["avif"]}
|
||||
alt="Installing page, Software installation step."
|
||||
/>
|
||||
|
||||
Patiently wait. Eat some snacks, listen to some music, find something else to do.
|
||||
|
||||
This process should take around 5-10 minutes or longer depending on your
|
||||
hardware speed and internet connection.
|
||||
|
||||
<ChoiceList>
|
||||
<a href="/en/distro/fedora/workstation/install/17/" class="button">
|
||||
Continue
|
||||
</a>
|
||||
</ChoiceList>
|
||||
@@ -0,0 +1,21 @@
|
||||
---
|
||||
title: You slayed it
|
||||
---
|
||||
|
||||
import { Picture } from "astro:assets";
|
||||
import ChoiceList from "@/components/ChoiceList.astro";
|
||||
import installing from "@/assets/imgs/Fedora/Install/InstallationFinished_Cropped.png";
|
||||
|
||||
<Picture
|
||||
src={installing}
|
||||
formats={["avif"]}
|
||||
alt="Installation finished page."
|
||||
/>
|
||||
|
||||
Done!
|
||||
|
||||
<ChoiceList>
|
||||
<a href="/en/distro/fedora/workstation/install/18/" class="button">
|
||||
Continue
|
||||
</a>
|
||||
</ChoiceList>
|
||||
@@ -0,0 +1,26 @@
|
||||
---
|
||||
title: Your journey begins anew
|
||||
---
|
||||
|
||||
import { Picture } from "astro:assets";
|
||||
import ChoiceList from "@/components/ChoiceList.astro";
|
||||
import restart from "@/assets/imgs/Fedora/Install/RestartMenu_Cropped.png";
|
||||
|
||||
<div class="flex justify-center">
|
||||
<Picture
|
||||
src={restart}
|
||||
formats={["avif"]}
|
||||
alt="Restart menu"
|
||||
class="max-h-[50vh] w-auto"
|
||||
/>
|
||||
</div>
|
||||
|
||||
Now, go to the top right corner of your desktop and click to open the System
|
||||
menu, then press the power button and restart. (Remember this menu, you'll use
|
||||
it often!)
|
||||
|
||||
<ChoiceList>
|
||||
<a href="/en/distro/fedora/workstation/afterinstall/0/" class="button">
|
||||
Continue
|
||||
</a>
|
||||
</ChoiceList>
|
||||
@@ -0,0 +1,25 @@
|
||||
---
|
||||
title: Boot Menu
|
||||
description: Choose your USB flash drive
|
||||
---
|
||||
|
||||
import { Picture } from "astro:assets";
|
||||
import ChoiceList from "@/components/ChoiceList.astro";
|
||||
import bootMenu from "@/assets/imgs/Fedora/Boot/MSIBootMenu_Cropped.jpg";
|
||||
|
||||
<figure>
|
||||
<Picture src={bootMenu} formats={["avif"]} alt="A photo of the boot menu" />
|
||||
<figcaption>Example: MSI Boot Menu</figcaption>
|
||||
</figure>
|
||||
|
||||
In the next 3 steps, Please read what's on here first before putting it into
|
||||
action as it will mostly require fast actions.
|
||||
|
||||
After the boot menu pops up, use the arrow keys (Up/Down) on your keyboard to
|
||||
select the USB flash drive then press Enter.
|
||||
|
||||
<ChoiceList>
|
||||
<a href="/en/distro/fedora/workstation/install/3/" class="button">
|
||||
Continue
|
||||
</a>
|
||||
</ChoiceList>
|
||||
@@ -0,0 +1,29 @@
|
||||
---
|
||||
title: Boot Menu
|
||||
description: Choose your USB flash drive
|
||||
---
|
||||
|
||||
import { Picture } from "astro:assets";
|
||||
import ChoiceList from "@/components/ChoiceList.astro";
|
||||
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>
|
||||
|
||||
<ChoiceList>
|
||||
<a href="/en/distro/fedora/workstation/install/4/" class="button">
|
||||
Continue
|
||||
</a>
|
||||
</ChoiceList>
|
||||
@@ -0,0 +1,26 @@
|
||||
---
|
||||
title: Boot Menu
|
||||
description: Choose your USB flash drive
|
||||
---
|
||||
|
||||
import { Picture } from "astro:assets";
|
||||
import ChoiceList from "@/components/ChoiceList.astro";
|
||||
import continueBoot from "@/assets/imgs/Fedora/Boot/ContinueBootOption_Cropped.png";
|
||||
|
||||
<div class="relative">
|
||||
<Picture
|
||||
src={continueBoot}
|
||||
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-1/2 bg-black/30 text-white rounded p-4">
|
||||
After that, press the arrow down key to select "Continue boot" and then
|
||||
press Enter.
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<ChoiceList>
|
||||
<a href="/en/distro/fedora/workstation/install/5/" class="button">
|
||||
Continue
|
||||
</a>
|
||||
</ChoiceList>
|
||||
@@ -0,0 +1,27 @@
|
||||
---
|
||||
title: GRUB Menu
|
||||
description: Entering Fedora Linux
|
||||
---
|
||||
|
||||
import { Picture } from "astro:assets";
|
||||
import ChoiceList from "@/components/ChoiceList.astro";
|
||||
import continueBoot from "@/assets/imgs/Fedora/Install/GRUB_Cropped.png";
|
||||
|
||||
<div class="relative">
|
||||
<Picture
|
||||
src={continueBoot}
|
||||
formats={["avif"]}
|
||||
alt="A photo of the boot loader, showing a list with 3 items"
|
||||
/>
|
||||
<div class="absolute top-1/2 w-3/4 left-1/8 -translate-y-1/2 text-white">
|
||||
You can simply press Enter to continue. However, If your machine is
|
||||
slow, You could skip the test by pressing the arrow up key and Enter to
|
||||
directly enter the desktop.
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<ChoiceList>
|
||||
<a href="/en/distro/fedora/workstation/install/6/" class="button">
|
||||
Continue
|
||||
</a>
|
||||
</ChoiceList>
|
||||
@@ -0,0 +1,23 @@
|
||||
---
|
||||
title: Integrity Check
|
||||
---
|
||||
|
||||
import { Picture } from "astro:assets";
|
||||
import ChoiceList from "@/components/ChoiceList.astro";
|
||||
import check from "@/assets/imgs/Fedora/Install/Check_Cropped.png";
|
||||
|
||||
<Picture
|
||||
src={check}
|
||||
formats={["avif"]}
|
||||
alt="A photo of a running integrity check"
|
||||
/>
|
||||
|
||||
If you didn't skip the test, You will see this screen.
|
||||
Simply wait for it to complete and you'll go right into
|
||||
the desktop.
|
||||
|
||||
<ChoiceList>
|
||||
<a href="/en/distro/fedora/workstation/install/7/" class="button">
|
||||
Continue
|
||||
</a>
|
||||
</ChoiceList>
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: Welcome
|
||||
---
|
||||
|
||||
import { Picture } from "astro:assets";
|
||||
import ChoiceList from "@/components/ChoiceList.astro";
|
||||
import overview from "@/assets/imgs/Fedora/Install/Overview.png";
|
||||
|
||||
<Picture
|
||||
src={overview}
|
||||
formats={["avif"]}
|
||||
alt="The overview of the desktop"
|
||||
width="1280"
|
||||
/>
|
||||
|
||||
Welcome to the desktop! You're in the "Overview" view and you can simply click
|
||||
on the Welcome window to get started in installing Fedora Workstation, or
|
||||
optionally, you could explore and play with it a little first.
|
||||
|
||||
<ChoiceList>
|
||||
<a href="/en/distro/fedora/workstation/install/8/" class="button">
|
||||
Continue
|
||||
</a>
|
||||
</ChoiceList>
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
title: Install
|
||||
---
|
||||
|
||||
import { Picture } from "astro:assets";
|
||||
import ChoiceList from "@/components/ChoiceList.astro";
|
||||
import welcome from "@/assets/imgs/Fedora/Install/Welcome.png";
|
||||
|
||||
<Picture
|
||||
src={welcome}
|
||||
formats={["avif"]}
|
||||
alt="The desktop view with a welcome window in the middle"
|
||||
width="1280"
|
||||
/>
|
||||
|
||||
So, let's get started on the real installation. Click "Install Fedora..."
|
||||
|
||||
<ChoiceList>
|
||||
<a href="/en/distro/fedora/workstation/install/9/" class="button">
|
||||
Continue
|
||||
</a>
|
||||
</ChoiceList>
|
||||
@@ -0,0 +1,22 @@
|
||||
---
|
||||
title: Language
|
||||
---
|
||||
|
||||
import { Picture } from "astro:assets";
|
||||
import ChoiceList from "@/components/ChoiceList.astro";
|
||||
import language from "@/assets/imgs/Fedora/Install/Install_Language.png";
|
||||
|
||||
<Picture
|
||||
src={language}
|
||||
formats={["avif"]}
|
||||
alt="Language selection menu"
|
||||
width="1280"
|
||||
/>
|
||||
|
||||
Select your preferred language and click Next.
|
||||
|
||||
<ChoiceList>
|
||||
<a href="/en/distro/fedora/workstation/install/10/" class="button">
|
||||
Continue
|
||||
</a>
|
||||
</ChoiceList>
|
||||
Reference in New Issue
Block a user