-
Notifications
You must be signed in to change notification settings - Fork 311
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mount does not work for LUKS partitions #26
Comments
You'r right, archfi is made to be launched multiple time and crypted partition is not handled on second mount. |
I think the parition type is "e8" LUKS (see: e8 https://www.win.tue.nl/~aeb/partitions/partition_types-1.html). Easy method to find out (as root):
|
Thanks for the tricks... I'll try to add it to the script |
Sorry for the late response to this request ... |
Is this something you need me to work on? When exiting archfi, any luksOpen commands that were run should be followed up with a luksClose to be able to leave a clean slate for the next archfi run. |
@TheLinuxNinja You're right, on install when you reboot, it isn't a problem but if you use it on an existing system, this can be a problem... |
If the root is crypted, then the "mount exsisting" should call
cryptsetup luksOpen /dev/<id> root
and thenmount /dev/mapper/root /mnt
. This is useful if you run thearchfi
multiple times (e.g. if you forgot something). Great script 👍The text was updated successfully, but these errors were encountered: