Is it possible to install a system directly from an ISO without using an installer?

Assuming you have the partition mounted, this is command for chroot :point_down:

chroot /path/to/new/root /path/to/shell

/path/to/shell is relative to the new root.

So for my Arch install I’ll do this

su
mount /dev/sdb1 /mnt
chroot /mnt /bin/bash

Surely gonna help you :cake:

1 Like