Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
6answers
2k views

How to send Ctrl-C control character or terminal hangup message to child process?

I have a child process which runs in a pseudo terminal. The parent process does not run as root, but the child process does, through su or sudo. Because of this it is not possible to send a signal to ...
5
votes
1answer
208 views

Pseudoterminal master reads what it has just written

I'm working on a project that interfaces "virtual devices" (python processes) that use serial port connections with real devices that also use serial ports, and I'm using pseudoterminals to connect ...
4
votes
1answer
125 views

Characters not making it from a master to a slave pseudo-terminal

I am currently trying to send binary data out through pexpect. For some reason, the data gets through just find except for a 0x04, which is just skipped over. I tracked down the pexpect call to ...
4
votes
7answers
730 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 ...
3
votes
2answers
95 views

To run sudo commands on a ec2 instance

I cannot run "sudo su" on my ec2 client , I ssh into the client through a java program and run the command through a program. I can run commands like "ls" and "ifconfig" though. I get an error saying ...
3
votes
2answers
378 views

Python terminal emulation

I'd like to have an xterm-compatible virtual terminal running inside a Python app. I'll need to run ncurses-based applications inside it, feed it with user's input and read its output. So far I've ...
2
votes
2answers
135 views

Writing a pseudo terminal in python for a web based ubuntu terminal

I am interested in writing a web based terminal which can execute and autocomplete the commands in ubuntu terminal. I have fiddled with Anyterm http://www.anyterm.org which uses ROTE: "a simple C ...
2
votes
3answers
1k views

How can I use PHP to setup an interactive SSH session?

I'm trying to establish an interactive SSH connection to a remote server using PHP via the command line on Mac OS X 10.6. I'm currently using PHP's proc_open function to execute the following ...
2
votes
2answers
395 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
950 views

Calling fgets() on popen() of 'ssh' is flushing the beginning of stdin of the calling process (ptty issue)

I have now whittled this down to a minimal test case. Thus far I have been able to determine that this is an issue related to pseudo-terminals which come about with the pipe of ssh. Adding the '-t ...
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
1answer
30 views

PseudoTTY executing commands programmatically

There is an open source Xcode project called "PseudoTTY" written in objective-c and I'm trying to find out how to execute commands programmatically. When I compile the application, I get a nice ...
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 ...
0
votes
1answer
53 views

How to fork interactive programs

I have an interactive program with a high start-up cost. After start-up, I'd like to fork the process into separate concurrent sessions. Ideally each separate session would become a GNU screen window ...
0
votes
1answer
86 views

How to switch terminal to new child process of process launched with NSTask?

I made a pseudo terminal with method described here: http://lists.apple.com/archives/student-dev/2005/Mar/msg00019.html The terminal itself worked well. Anyway the problem is terminal cannot being ...
0
votes
3answers
344 views

How to redirect a program that writes to tty?

This is the un-redirected output (if you don't know what module is, it doesn't matter much): $ module help null ----------- Module Specific Help for 'null' ----------------------- This ...
0
votes
2answers
314 views

Child process unable to read from created pseudo terminal

I'm trying to write an app that can login to SSH with a password, by using pseudo terminals. But if I write() to the master device then the data somehow does not appear in the slave device. Here's a ...