Tagged Questions

4
votes
7answers
731 views

How can I spy on communication between a process and a terminal?

I have a Linux process developed by a third-party that communicates with a terminal. For debugging I want to see the communication going back in forth. One might think cat would do the trick (to see ...
2
votes
2answers
397 views

How can I detect when someone opens the slave side of a pty (pseudo-terminal) in Linux?

Having more than one process read from a serial device (/dev/ttyXX) makes it so that both processes can't get all of the data -- the data will be split between them in some way. I'd like to write a ...
1
vote
2answers
120 views

writting to master pty, but cannot read in slave :(

trying to write primitive test. Program must startup tcp-server, receive connection and redirect received data to forked program. Here is the code: #include "TcpServer.h" #include ...
1
vote
2answers
238 views

How can the master pty detect if a slave tty has exited?

I am using BSD style pty/tty pairs to implement running a sub shell. When the user exits the sub shell, how do I detect in the master process that this has occurred? I am using select(nfds, ...
0
votes
3answers
52 views

Linux pseudo-terminals: executing string sent from one terminal in another

Lets say I have one terminal where the output of "tty" is "/dev/pts/2" From another terminal, I want to send a command to the first terminal and execute it. Using: echo "ls" > "/dev/pts/2" only prints ...