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
Running this script from Linux Mint, I get this error:
/usr/bin/pacman: error while loading shared libraries: libxml2.so.2: cannot open shared object file: No such file or directory
So it seems this script is not downloading libxml2, which is required by pacman.
libxml2
I managed to work around the issue like so:
.tar.zst
rsync -av ~/Downloads/libxml2-2.13.0-4-x86_64.pkg/usr/ chroot/myarch/usr/
arch-bootstrap
Once that was done I chroot'd in like normal and everything worked fine.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The bug
Running this script from Linux Mint, I get this error:
So it seems this script is not downloading
libxml2
, which is required by pacman.The work-around for others encountering this
I managed to work around the issue like so:
.tar.zst
file.rsync -av ~/Downloads/libxml2-2.13.0-4-x86_64.pkg/usr/ chroot/myarch/usr/
arch-bootstrap
command.Once that was done I chroot'd in like normal and everything worked fine.
The text was updated successfully, but these errors were encountered: