If I do an install from a flash drive, select (S)hell: ############## # mount /dev/sd0a /mnt # cd /mnt/5.5/amd64
# tar -xzvf basexx.tgz ./usr/bin/script # ln -s /mnt/5.5/amd64/usr/bin/script /usr/bin/ # tar -xzvf basexx.tgz ./usr/lib/libutil.so* # mkdir /usr/lib # ln -s /mnt/5.5/amd64/usr/lib/libutil.so* /usr/lib/ # tar -xzvf basexx.tgz ./usr/lib/libc.so* # ln -s /mnt/5.5/amd64/usr/lib/libc.so* /usr/lib/ # tar -xzvf basexx.tgz ./usr/libexec/ld.so # mkdir /usr/libexec # ln -s /mnt/5.5/amd64/usr/libexec/ld.so /usr/libexec/ # /usr/bin/script ############## It sends an error message: : openpty: No such file or directory My purpose is just to log the install console to a file for documentation purpose. How can I get through this error message? p.s.: additionally I found out when I'm continuing the install, the /mnt will be unmounted, so ln's doesn't work, but ln's are needed, because there isn't enough place in / Many thanks.

