Initial commit.

This commit is contained in:
lemniskett 2020-10-23 19:09:43 +07:00
commit d276b157d0
2 changed files with 23 additions and 0 deletions

8
archbox Executable file
View File

@ -0,0 +1,8 @@
#!/bin/bash
CHROOT="/var/archlinux/root.x86_64"
COMMAND=$(echo $@ | tr ' ' '\ ')
doas cp /etc/resolv.conf $CHROOT/etc/resolv.conf
[[ -z $@ ]] && doas chroot $CHROOT /bin/su lemniskett \
|| doas chroot $CHROOT su -c "$COMMAND" lemniskett

15
sv/run Executable file
View File

@ -0,0 +1,15 @@
#!/bin/bash
CHROOT="/var/archlinux/root.x86_64"
mount -R /home $CHROOT/home
mount -t proc /proc $CHROOT/proc
mount -R /tmp $CHROOT/tmp
mount -R /sys $CHROOT/sys
mount -R /dev $CHROOT/dev
mount -R /run $CHROOT/run
mount -R /var/lib/dbus $CHROOT/var/lib/dbus
mount -R /lib/modules $CHROOT/lib/modules
mount -R /boot $CHROOT/boot
while true; do sleep 10800; done