#!/bin/sh # continuation of arch-boot boot script. # this should be called by the boot-arch.sh script as the first command ran within the chroot #setup paths export PATH=/usr/bin:/usr/sbin #mount FS's mount -t proc proc /proc mount -t sysfs sysfs /sysfs mount -t devtmpfs dev /dev mount -t devpts pts /dev/pts #set hostname hostname $(< /etc/hostname) #launch daemons /usr/sbin/crond & /usr/sbin/sshd &