schm1d / AwesomeArchLinux

A collection of my shell scripts with hardened Arch Linux configuration, security tweaks and more.
MIT License
17 stars 5 forks source link

Minor correction to generated LUKS partition name #1

Closed Agh42 closed 8 months ago

Agh42 commented 1 year ago

Thank you very much for this excellent installation script! One minor correction I had to make while installing archlinux-2023.06.01-x86_64.iso was that the LUKS partition name was generated as nvme0n13 for the commands while in reality it had to be nvme0n1p3.

To change that I simply edited archlinux.sh with vim and ran this replacement

:%s/"3"/"p3"/g
schm1d commented 1 year ago

Thank you very much for this excellent installation script! One minor correction I had to make while installing archlinux-2023.06.01-x86_64.iso was that the LUKS partition name was generated as nvme0n13 for the commands while in reality it had to be nvme0n1p3.

To change that I simply edited archlinux.sh with vim and ran this replacement

:%s/"3"/"p3"/g

Hi, and thank you for using my script. Could you point me to the line where the typo is? I don't see where, as the script doesn't define any device name...

Agh42 commented 1 year ago

I basically had to change these lines from "3" to "p3":

image

schm1d commented 1 year ago

I see. I will fix that. Thanks!

schm1d commented 8 months ago

Fixed