this post was submitted on 29 May 2024
37 points (100.0% liked)
Linux
48077 readers
743 users here now
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
tldr: Use systemd-boot instead of grub to boot. And then unl0kr to give you an on-screen keyboard.
A little more technical:
Are you intending to use unl0kr for decryption? I used that on my Steam Deck. Whatever you use, it cannot use your normal graphical login. It has to be packed into the kernel's initrd because when you want to decrypt your drive nothing else is available. I used unl0kr.
You cannot use grub unless you have
/boot
on an unencrypted partition. Because grub has its own decryption process which is very minimal. It does not have access to the kernel (which leaves you without any hardware acceleration for the decryption, making it very slow.Systemd-boot works by putting the kernel and initrd on the unencrypted EFI partition on
/boot/efi
.So you can either use grub with an unencrypted
/boot
or systemd-boot with everything copied onto EFI. Whatever you use, try to get to a state where you're greeted with a slightly more pleasing passphrase entry, maybe on a plymouth bootscreen, instead of grub's own ugly entry screen.When you have come so far you can try to get unl0kr to work.
I don't have the energy to type more but hopefully this can steer you in the right direction. Your actual login manager or desktop environment don't factor into this at all.
If you do want to only see the login prompt from your login manager you have to store the decryption key in TPM. No idea how that is set up but automatic decryption without typing in a passphrase sounds iffy to me.
Thanks for your time ❤️