2

I am getting issue while chroot into arch installation after base installation.

 root@archiso ~ # arch-chroot /mnt
 chroot: failed to run command ./bin/bash: No such file or directory

However /bin/bash is there:

root@archiso ~ # ls /bin/bash
/bin/bash

Thanks

1 Answers1

3

arch-chroot by default calls chroot with the command /bin/bash. The command is run AFTER new root is set which means the root passed to arch-chroot must have a /bin/bash underneath it as /mnt/bin/bash.

You must have run pacstrap without specifying the base package.

pacstrap /mnt base

not something like

pacstrap /mnt base-dev
jdwolf
  • 5,017