10 lines
132 B
Plaintext
Raw Permalink Normal View History

2022-04-29 21:22:24 -04:00
#!/bin/sh
echo "Mounting filesystems..."
mount -a
mkdir /dev/pts
mount devpts /dev/pts -t devpts -o gid=5,mode=620
echo "Ready."