mirror of
https://github.com/konstruktoid/hardening.git
synced 2026-04-26 09:15:55 +03:00
[GH-ISSUE #118] Unclear instructions on initial partitioning #57
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @KoenDG on GitHub (Apr 30, 2022).
Original GitHub issue: https://github.com/konstruktoid/hardening/issues/118
Originally assigned to: @konstruktoid on GitHub.
The instructions say this do create the following setup during initial installation:
=== Partition the system
However, the options provided by the installer doesn't allow for setting those flags during initial setup. Or at least: not that I've been able to find.
Second, Are these supposed to be GPT partitions or Logical Volumes? Most articles I'm finding say they're basically the same and LVM is more flexible, but nothing truly explains the difference.
Lastly: Since I'm currently having to boot into the finished installation, I noticed that all the mounts have the
defaultoptions.Which according to the manpage means:
Should that be left in, or removed? Certainly
asyncseems very useful.So, final questions:
1/ Is there a way to set those flags during initial setup, or do we need to finalize the setup, log in, alter
/etc/fstaband reboot?2/ GPT Partitions or LVM?
3/ Leave defaults mount flag or not?
And also
4/ What about
/boot/efiwhich ubuntu automatically sets as VFAT?@konstruktoid commented on GitHub (May 2, 2022):
Hi @KoenDG and so sorry for the late reply.
1 - No, sorry to say you'll need to finalize the setup, log in and alter
/etc/fstab.2 - My personal preference is LVM, since it's easy to modify.
3 - Remove defaults mount flag and replace them with the recommended settings or your personal preference, e.g.
async.4 - Since https://github.com/konstruktoid/hardening/pull/114/files,
vfatis no longer blocked by default.@KoenDG commented on GitHub (May 3, 2022):
Hi, thanks for your detailed response. I saw these "default" options and no advice concerning it, that was my main motivator to ask.
Thanks for your time.