From 7a955801ae5fbf7ec9720b66dec30f5d5d307102 Mon Sep 17 00:00:00 2001 From: s1lly Date: Sat, 7 Dec 2024 17:36:21 +1000 Subject: [PATCH] add FAT32 format guides for linux and macOS - pr3 --- docs/microsdcardsetup.html | 47 +++++++++++++++++++++++++++++++++++++ images/Site_Icon.png | Bin 0 -> 202 bytes index.html | 1 + styles.css | 11 +++++++++ 4 files changed, 59 insertions(+) create mode 100644 images/Site_Icon.png diff --git a/docs/microsdcardsetup.html b/docs/microsdcardsetup.html index c71b07a..78bf939 100644 --- a/docs/microsdcardsetup.html +++ b/docs/microsdcardsetup.html @@ -6,6 +6,7 @@ MicroSD Card Setup + @@ -17,6 +18,7 @@
+

MicroSD Card Setup (Windows Guide)

For the sake of keeping this guide simple, the steps are the exactly the same for people with MicroSD Cards smaller than 32 gigabytes.

    @@ -37,6 +39,51 @@

    MicroSD Card Setup (Windows Guide)

  1. Press the "Start" button and wait until the process is complete.
  2. You can now eject the MicroSD Card, and move on to the next page.
  3. +
  4. For a Linux guide, please look below.
  5. +
+ +

MicroSD Card Setup (Linux Guide using GParted)

+

This guide is for MicroSD cards under 32GB.

+ For the further sake of simplicity, a GUI tool is intentionally used. You may also want to back up any important files on your MicroSD card before formatting.

+
    +
  1. as the Windows guide specifies, plug your MicroSD card into your computer.
  2. +
  3. Update your Linux system with sudo apt update, sudo pacman -Syu, or sudo yum update.
  4. +
  5. Install GParted with sudo apt install gparted, sudo pacman -Sy gparted, or sudo yum install gparted, and run it with root priviledges with sudo gparted.
  6. +
  7. Select your device in the dropdown located at the top right corner of the GParted homescreen. +
    + GParted Dropdown +
  8. +
  9. Right click the partition, select "Format to", then select "fat32". +
    + GParted Formatting Dialog +
  10. +
  11. Click the green check mark to apply all operations, then "Apply" at the warning dialog. Let it do it's thing. +
    + GParted Checkmark Location +
  12. +
  13. Click "Close" when the operation is completed. Now you're free to move onto the next page!
  14. +
+

More ways to format for Linux can be found here. This Linux guide is also based off of it!

+ +

MicroSD Card Setup (MacOS Guide Using DiskUtility)

+

This works for 32GB MicroSD cards, and possibly >32GB MicroSD cards.

+
    +
  1. Insert your MicroSD card into your MacOS device.
  2. +
  3. Open Disk Utility, which is preinstalled on MacOS.
  4. +
  5. Select the MicroSD card, and click on "Erase" in the top toolbar. Make sure it's the correct MicroSD card! +
    + Erase Dialog +
  6. +
  7. Give the MicroSD card a name, and format it for "MS-DOS (FAT)", otherwise, "ExFAT" may be sufficient. +
    + MicroSD Card Naming and Formatting Dialog +
  8. +
  9. If you want to securely format the MicroSD card (make it harder to recover data), open "Security Options" and adjust the slider to your preference. +
    + Formatting Security Options on MacOS +
  10. +
  11. Finally, click "Erase" to format your MicroSD card.
  12. +

    For more ways to format your MicroSD card on MacOS, This site is worth a visit. This MacOS guide is also based off of it!

diff --git a/images/Site_Icon.png b/images/Site_Icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3ab63d1452fc76dba5c6c8cb123a73dd434388e4 GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|T0C7GLo9li zPTninpup2Qf1YUa(gH~-w}pw4T;B?$a%}t+?KRdnazF8wvt)=1?I@4h`9$QgLCVj- zpHnw)T^?QgTe~DWM4fEOJRb literal 0 HcmV?d00001 diff --git a/index.html b/index.html index ae6cc3e..8bb2884 100644 --- a/index.html +++ b/index.html @@ -7,6 +7,7 @@ +
diff --git a/styles.css b/styles.css index 8e0a780..d230da7 100644 --- a/styles.css +++ b/styles.css @@ -2,6 +2,11 @@ body { font-family: Arial, sans-serif; } +::selection { + color: white; + background-color: #333; +} + .sidebar { height: 100vh; position: fixed; @@ -65,3 +70,9 @@ body { font-family: 'Inter', Arial, sans-serif; } +code { + font-size: 17px; + border: 0.5px solid #333; + border-radius: 5px; + padding: 2.5px; +} \ No newline at end of file