Tagged Questions
A pty is a pseudo-terminal - it's a software implementation that appears to the attached program like a terminal, but instead of communicating directly with a "real" terminal, it transfers the input and output to another program.
11
votes
2answers
2k views
Python: when to use pty.fork() versus os.fork()
I'm uncertain whether to use pty.fork() or os.fork() when spawning external background processes from my app. (Such as chess engines)
I want the spawned processes to die if the parent is killed, as ...
7
votes
1answer
484 views
Piping data to Linux program which expects a TTY (terminal)
I have a program in Linux which refuses to run if its stdin/stdout is not a TTY (terminal device). Is there an easy-to-use tool which will create a PTY, start the program with the newly created TTY, ...
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
2answers
143 views
Using pseudo-terminals in linux with C
I promise, I wouldn't be asking this if I hadn't spent days googling.
I'm trying to figure out how to use pseudo-terminal's in linux, essentially I want to create a telnetd clone, something I ...
3
votes
2answers
97 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
1answer
115 views
Is there anything like Python's pty.fork for Ruby?
I'm trying to port some Python code like the following to Ruby:
import pty
pid, fd = pty.fork
if pid == 0:
# figure out what to launch
cmd = get_command_based_on_user_input()
# now replace ...
3
votes
1answer
481 views
C/Linux Programming: Pseudo-Terminals: how to redirect from current stdio to pty and redirect back after usage
I'm trying to create a simple remote management program where a user can connect to my little device and "take over" the current stdio of the system. For example:
System boots with console=serial ...
3
votes
1answer
161 views
Reading from a pty
I'd like to receive (and later process) write(1) and wall(1) messages using a (Unix 98-style) pseudo tty on Linux.
I already have the following minimal implementation:
#include <stdlib.h>
...
3
votes
1answer
269 views
X throws out errors when forkpty is called. (C++)
When my program gets to this line,:
pid_t nPid = forkpty( &m_nMasterFD, NULL, NULL, NULL );
it outputs this:
X Error: BadIDChoice (invalid resource ID chosen for this connection) 14
...
3
votes
1answer
936 views
How to capture unbuffered output from stdout without modifying the program?
I'm writing a utility for running programs, and I need to capture unbuffered stdout and stderr from the programs. I need to:
Capture stdout and stderr to separate files.
Output needs to not be ...
2
votes
1answer
49 views
How to gain shell access when I'm locked out with “PTY allocation request failed on channel 0”
I installed gitosis on a remote shell. It's working fine. But now I can't login to the interactive shell. As told here, it seem gitosis disabled tty. Is there anyway I can get it back? I don't have ...
2
votes
1answer
109 views
pty terminal packet mode TIOCPKT
If I start a terminal, how do I know what mode it starts in? Who decides that? Can I start my terminal in packet mode i.e. TIOCPKT
I came across this Packet mode link which says: Packet mode is ...
2
votes
1answer
41 views
pty man page doubt/question
man pty says...
The BSD ioctl(2) operations TIOCSTOP, TIOCSTART, TIOCUCNTL, and TIOCREMOTE
have not been implemented under Linux.
why so? How is these operations taken care of in linux?
2
votes
3answers
260 views
How can I interact with another program in Python?
I want to write a Python script that runs another program, reading the output of the other program and manipulating it. The problem is that this program prompts for a password, and I cannot figure out ...
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
1answer
419 views
Why is ruby's PTY library failing to capture input when the shell has subprocesses?
I am writing a terminal emulator in ruby using the PTY library. /dev/tty0 is a device file connected to a keyboard. I am spawning the shell like this:
shell = PTY.spawn 'env TERM=ansi COLUMNS=63 ...
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 ...
2
votes
1answer
314 views
How communicate with pty via minicom or screen?
I am trying to provide an AT/Modem-like interface around some hardware.
Follwing this post I have the server setting up a pty using openpty().
Now I can communicate with the server as expected with a ...
2
votes
1answer
399 views
How do you kill a PTY.spawn call in Ruby?
If I run a command like this, using ruby's pty class, how do I kill it if I find a certain input string?
cmd = "appcfg.py update cdn"
PTY.spawn("#{cmd} 2>&1") do | input, output, pid |
begin
...
2
votes
2answers
2k views
Simplest way to get a PTY in Linux C++
all.
I am programming something that needs an interface to Bash. At first I thought I could just use popen or QProcess. ( I'm using QT C++ ) They work fine but I can't get them to run Bash in a tty, ...
2
votes
3answers
627 views
interact (stdin/out) with command line programs at runtime in C
I think the thing I want to do is called GUI/command line wrapping sftp(1). I need an easy way to start that program and react on its output while running. Additionally I have to be able to send input ...
2
votes
2answers
691 views
arrow key via stdin
I'm trying to send an arrow key via the stdin to the bash:
cat | /bin/bash
then i am typing "echo hi" => "hi" appears on the console (of course without the quotes)
then i press the arrow key up => ...
2
votes
1answer
833 views
Python os.forkpty why can't I make it work
import pty
import os
import sys
import time
pid, fd = os.forkpty()
if pid == 0:
# Slave
os.execlp("su","su","MYUSERNAME","-c","id")
# Master
print os.read(fd, 1000)
...
2
votes
2answers
3k views
Ruby - Problems with Expect and Pty
I'm trying to write a Ruby script that will ssh over to a server, run a given command, and fetch the output from it. Here's what I've got so far, mostly adapted from the Programming Ruby book:
...
1
vote
0answers
56 views
Send command and exit using python pty pseudo terminal process
Using python pty module, i want to send some commands to the terminal emulator, using a function as stdin (as pty module wants), and then force quitting. I thought about something like
import pty
...
1
vote
1answer
109 views
Python/Linux: OSError: out of pty devices
From time to time I'm getting an OSError exception with the message 'out of pty devices' when calling pty.openpty() (it's happening when a bunch of instances of my scripts run concurrently).
What is ...
1
vote
2answers
74 views
python pty module - buffer hangs?
I am trying to make a small module which opens an ssh connection and allows to send commands over ssh and return the output of the command. Hereby, there should only be one ssh connection (so that ...
1
vote
2answers
54 views
POSIX `pipe` both ways
I want to use (POSIX) pipe in a way to have it connected both ways. I.e. I can read and write at both ends.
Is that possible?
(I don't want to create two pipes with 4 file descriptors. I want to ...
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
1answer
373 views
Python: How to peek into a pty object to avoid blocking?
I am using pty to read non blocking the stdout of a process like this:
import os
import pty
import subprocess
master, slave = pty.openpty()
p = subprocess.Popen(cmd, stdout = slave)
stdout = ...
1
vote
1answer
185 views
Ruby kill virtual shell opened with PTY.spawn
In a ruby script, I start more virtual shells, each managed by a shell manager object, like so:
@shell = PTY.spawn 'env PS1="\w>" TERM=dumb COLUMNS=63 LINES=21 sh -i'
At some later point in ...
1
vote
1answer
168 views
rlwrap: Could not open master pty: No such file or directory
When trying to run rlwrap tclsh I am getting this error message:
rlwrap: Could not open master pty: No such file or directory
What causes this? How to fix this issue?
P.S. I am running 64 bit ...
1
vote
1answer
955 views
forkpty - socket
I'm trying to develop a simple "telnet/server" daemon which have to run a program on a new socket connection.
This part working fine.
But I have to associate my new process to a pty, because this ...
1
vote
1answer
1k views
Software serial port loopback on linux
Currently I need to develop some program that will communicate with cisco devices over serial line. I want to build testing environment on my development linux machine. So, I found dynamips cisco ...
1
vote
1answer
748 views
How does xterm's -S option (pass pseudo terminal name and descriptor) work in Linux?
Greetings,
while porting old Solaris 2.4 code to CentOS 5.3 I came across an invocation like
/usr/bin/xterm -S%s%d ...
where %s is a two-character digit sequence XX like 00, 01 and %d is a numeric ...
1
vote
2answers
592 views
changing pseudo tty echo mode from the master side
On linux, I am opening a pseudo tty on the master side. While there is no client on the slave side, the pseudo tty seems to be echoing everything I am writing to him, which is not what I am expecting.
...
0
votes
1answer
73 views
Starting Foreman app in Ruby for Heroku installl
I'm trying to deploy a simple app, getting started on Heroku/Cedar but it's imposible in Windows. Getting next error running 'foreman start', and also an error doing 'bundle install' and I'm stuck ...
0
votes
2answers
71 views
How to determine when PTY.spawn has finished in ruby script so then to start new process
I have a Ruby script that spawns a process and uses expect to wait for a request for input, provide that input and then when the process is finished, to spawn a new process.
Initially the problem was ...
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
129 views
Python pty module usage example
What I need to do is the following: in a Python script spawn, say the "ls --colors=always /" Linux command, and read its output. The important part of this is that I need the output to keep all the ...
0
votes
1answer
36 views
How can I “telnet” with the STDIO of another process?
Normally CouchDB communicates with a view server over STDIO via a simple line-based protocol.
What I want to do is, instead of a view server, have it read and write to some sort of pipe or pseudo ...
0
votes
1answer
179 views
Skip stdin and stderr of child with pexpect
I'm controlling a child process using pexpect (because subprocess doesn't support pty's and I run into a deadlock with two pipes). The process creates a lot of output on stderr, in which I'm not ...
0
votes
3answers
513 views
python pty.fork - how does it work
http://docs.python.org/library/pty.html says -
pty.fork()¶
Fork. Connect the child’s controlling terminal to a pseudo-terminal. Return value is (pid, fd). Note that the child gets pid 0, ...
0
votes
2answers
315 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 ...
0
votes
1answer
618 views
Read() from file descriptor hangs
Hey, hopefully this should be my last PTY-related question and I can move onto more exciting issues. (c;
Here's a set of small functions I have written for creating and reading/writing to a pty: ...