10 lines
132 B
Bash
Executable File
10 lines
132 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Mounting filesystems..."
|
|
mount -a
|
|
mkdir /dev/pts
|
|
mount devpts /dev/pts -t devpts -o gid=5,mode=620
|
|
|
|
echo "Ready."
|
|
|