egos/scripts/init.sh
2024-02-16 17:40:53 +06:00

15 lines
229 B
Bash

#!/bin/sh
# Disable Kernel Messages
dmesg -n 1
# Mount the file system
mount -t devtmpfs none /dev
mount -t proc none /dev
mount -t sysfs none /sys
# Start shell
/bin/sh
# Shutdown the machine when shell is exited
poweroff -f