我在基本安装后 chroot 进入 arch 安装时遇到问题。
root@archiso ~ # arch-chroot /mnt
chroot: failed to run command ./bin/bash: No such file or directory
但是 /bin/bash 在那里:
root@archiso ~ # ls /bin/bash
/bin/bash
谢谢
答案1
arch-chroot 默认情况下使用命令 /bin/bash 调用 chroot。该命令在设置新根之后运行,这意味着传递给 arch-chroot 的根必须在其下面有一个 /bin/bash 作为 /mnt/bin/bash。
您必须在未指定基础包的情况下运行 pacstrap。
pacstrap /mnt base
不是类似的东西
pacstrap /mnt base-dev