-
Notifications
You must be signed in to change notification settings - Fork 536
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
Fix 1971 - manual partitioning #2031
Fix 1971 - manual partitioning #2031
Conversation
I tested your changes but it outputs another error which is related to error you're trying to fix
|
@Kitsunejasutin would you mind sharing the actual error? The Log you posted doesn't contain it |
I don't see the actual error on any logs, but I have a screenshot of it |
@Kitsunejasutin that's the one I was looking for. It's not related to this PR, I think as the error is different. Not to get off track for this PR, would you mind opening a new issue with the above error and also uploading the file /var/log/archinstall/install.log please |
Oh is that so, I saw the "file system type of "/None" and I thought this was related to this. Will open an issue for it. Thanks! |
@Kitsunejasutin ohh hang on I missed that in the logs, then it might actually be from this one. I will take a look at it, thanks for testing |
Okay! Let me know if you need install.log |
@Kitsunejasutin If you could provide the install.log that'd be great and safe time debugging |
Here you go, https://nekobin.com/yacakivusi |
@Kitsunejasutin okay I had a look at the log and it seems that you have 2 boot partitions is that correct? The existing one is at The second one, which is being modified, is at Now, Is it intended to have 2 boot partitions? If so, I'm not entirely sure how to prevent this from happening at the moment, a workaround is to not use efi bootloader for the moment. In any regard, it isn't related to this PR per se, but does warrant a new issue :) |
I got your idea, yes I do have 2 boot partition to separate my windows and linux install. As for now I am using grub for compatability, I remember that systemd-boot has quite a lot of steps to do a dual boot with windows and show up on the menu. I guess systemd-boot is really out for an option for now. Thanks for the insight! |
This fixes:
This should also fix #1992 and no longer delete existing partitions if nothing changed.
Investigation work was done by @codefiles #1971 (comment)
In addition, this also fixes another minor bug that happens when doing manual partitioning as in the main problem, saving the configuration and then loading the configuration. The reason is that saving the config will not save the
dev_path
of existing/modified partitions which is essential to create the objects. So when loading the config objects can't be crated because thedev_path
is missing.With this PR all existing partitions will be excluded from any validation and also any formatting actions.