Archboot Allinone ISO Howto: (Quick regeneration of installation media with latest available core packages) Requirements: - x86_64 architecture - archboot image file - ~ 3GB free space on disk Create archboot chroots: # install archboot pacman -S archboot # mount recent archboot image file as loop device mount -o loop # create x86_64 chroot mkdir /usr/share/archboot/installer/quickinst media /core-x86_64/pkg # create i686 chroot mkdir /usr/share/archboot/installer/quickinst media /core-i686/pkg # unmount iso file umount Enter each archboot chroot like this: mount -o bind /dev /dev mount -o bind /tmp /tmp mount -o bind /sys /sys mount -o bind /proc /proc cp -a /etc/mtab /etc/mtab cp /etc/resolv.conf /etc/resolv.conf # enter chroot chroot Install archboot and update to latest packages: # configure pacman.conf and mirrorlist to your needs edit /etc/pacman.conf and /etc/pacman.d/mirrorlist # update in both chroots to latest available packages pacman -Syu #install in both chroots archboot: pacman -S archboot Generate images: # run in both chroots (needs quite some time ...) archboot-allinone.sh -t # put the generated tarballs in one directory and run (needs quite some time ...) archboot-allinone.sh -g Finished you get a burnable iso image, a rawwrite usb image and a hybrid image which is both in one. Don't forget after chroot leaving, to unmount binds for each: umount /dev umount /tmp umount /sys umount /proc Have fun tpowa