We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
fstab is generated in the wrong place, it's generated in the bootstrap chroot instead of chroot /.
fstab
bootstrap
chroot /
[root@bootstrap /]# mount /dev/sda2 /mnt [root@bootstrap /]# genfstab -U /mnt >> /etc/fstab
It should be in the new chroot instead.
[root@bootstrap /]# mount /dev/sda2 /mnt [root@bootstrap /]# genfstab -U /mnt >> /mnt/etc/fstab
The installation guide confirms it as well.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Problem
fstab
is generated in the wrong place, it's generated in thebootstrap
chroot instead ofchroot /
.Suggested Fix
It should be in the new chroot instead.
The installation guide confirms it as well.
The text was updated successfully, but these errors were encountered: