mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
18 lines
405 B
Plaintext
Executable File
18 lines
405 B
Plaintext
Executable File
# start text mode shell
|
|
#
|
|
# runlevels: textmode
|
|
|
|
. /etc/profile
|
|
|
|
TTY="1"
|
|
|
|
echo "###########################################"
|
|
echo "## it seems we are running in Text mode. ##"
|
|
echo "## .... starting shell on console $TTY .... ##"
|
|
echo "## ...... switch with ctrl-alt-f$TTY ...... ##"
|
|
echo "###########################################"
|
|
|
|
while true; do
|
|
exec /sbin/getty -n -l /bin/bash 38400 tty$TTY
|
|
done
|