Typo
[linux_from_scratch_hints.git] / OLD / pppd-pty-error.txt
blob7ffad9f75d5c8392c66aa780439c83d37fc9b320
1 TITLE:          PPPd pty error
2 LFS VERSION:    any
3 AUTHOR:         Hywel Mallett <circular@hmallett.co.uk>
5 SYNOPSIS:
6         How to fix a strange pty bug.
8 HINT:
9 > Well, I had ppp working  a few days ago, but now I get the error
10 > can't open pty slave /dev/pts/0: no such file or dir
12 > And yep there is no /dev/pts/*
14 > Rather odd...any ideas?
15 >    Kurt
17 Do:
18 # cd /dev/pts/
19 # mknod --mode=0620 0 char 136 0
21 this creates /dev/pts/0
23 The alternative is to use devpts, as decribed in Chapter 8 of the LFS book.