24 lines
743 B
Plaintext
24 lines
743 B
Plaintext
---
|
|
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>
|