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.

learn more… | top users | synonyms

0
votes
0answers
40 views

delay on read from pseudo-terminal

I am trying to catch all output to stdout and record it to several logs and echo to the screen. I created a pty, connected slave end to stdout and started a thread reading master end. It worked ...
0
votes
2answers
32 views

PTY gem not found

I have Ruby 1.9.3 installed on windows. When I try to require the gem the console outputs that the gem was not found: require 'pty' Which outputs: 'require': cannot load such file -- pty ...
7
votes
3answers
145 views

Possible SSH PAM PTY allocation issue

I have a linux ubuntu server hosted on Amazon EC2. There are around 3000+ linux users created on the system with userid as user_1, user_2 & so on. Surprisingly users till user_2685 are able to ...
0
votes
0answers
32 views

Simulating multiple devices on serial port

I am working on software that uses RS485 and ModbusRTU. I need to simulate multiple devices connected to one serial line like bus network. I was able to connect two programs that uses serial line ...
1
vote
1answer
70 views

How to make a shell-like program which allows SSH password input?

On OSX Terminal, I can connect to a server with SSH because terminal offers password input session. $ ssh user@server.com user@server.com's password: I wanted to make my own terminal ...
3
votes
0answers
63 views

have PyRun_InteractiveLoop() take input/output from/to another pty on linux

In a C program I want to run a Python interactive loop that takes its input from and makes its output to a pseudo terminal (for example pts/4) different than the one from which the C program was ...
0
votes
0answers
38 views

my pseudo-terminal lost some characters and have some other strange errors?

I wrote a pseudo-terminal to have a test.but the result is not what I expect.It have some error ,such as losing a character or a whole sentence before a specified word.I am so confused about these ...
4
votes
1answer
165 views

How do I set the terminal foreground process group for a process I'm running under a pty?

I've written a simple wrapper script for repeating commands when they fail called retry.py. However as I want to see the output of child command I've had to pull some pty tricks. This works OK for ...
0
votes
0answers
88 views

Expect not working as expected with PTY.spawn

First a little background. Previously I used this code to accomplish what I needed at the time. pid = spawn "#{thebash}" Process.wait(pid) This worked as a quick solution to my problem. I was able ...
1
vote
1answer
92 views

Understanding the PTY argument in ssh2_exec()

The answer to the following doesn't satisfy me, I wish to know a bit more about what's going on. Can anyone explain the $pty argument in ssh2_exec() function call Does it force the client to tell the ...
0
votes
0answers
75 views

xm create not creating pty files for xen guest domains past 338, or xenconsoled file limit of 1024 [closed]

I have been pursuing this question here http://xen.1045712.n5.nabble.com/1000-Domains-Not-able-to-access-Domu-via-xm-console-from-Dom0-td5712761.html and there is something similar here Having ...
1
vote
0answers
58 views

Passing multiple values to PTY terminal

I'm attempting to use ruby to interact with a CLI which takes multiple values using PTY. However, I can only get the pseudo-terminal generated by PTY to see the first value I pass. Test scripts below: ...
0
votes
0answers
60 views

How to: C++, DBus call to ask a terminal emulation program to create a new terminal, return slave PTY

DBus http://www.freedesktop.org/wiki/Software/dbus can be used to communicate with Linux multi-terminal emulator programs such as: RoxTerm (Gome) http://roxterm.sourceforge.net/ and Konsole (KDE) ...
0
votes
1answer
262 views

Using the linux pseudo terminal API for multiple debug terminals

Ubuntu Linux: How can one acquire a path that refers to the master side of a of a pseudo terminal pair?... the slave side is easy... but the master side only seems to exist as an open file ...
1
vote
1answer
50 views

Error compiling with GCC using pty

I'm messing with the pty with C, but for some reason the code doesnt compiles #include <pty.h> #include <stdlib.h> #include <stdio.h> void main(){ int fd; ...
2
votes
1answer
136 views

Synchronizing PTY output with Eventmachine

I'm trying to write an EventMachine server to run an nCurses application via telnet or ssh, using ruby 1.9.3's PTY and io/console modules: require 'rubygems' require 'socket' require 'pty' require ...
0
votes
0answers
241 views

Read Write issues with Pseudo Terminal in Linux

I am writing a C++ program that would interact with an external process. The external process is written in C# and runs on mono. Note that I cannot modify the C# code as it is not a program written by ...
0
votes
1answer
122 views

How to bypass screen/byobu conflicts with zssh file transfers (rz/sz)

I've been trying out zssh's sz and rz because it seems like a quick/easy way to send files back and forth (local <-> remote) over ssh. The problem is that I use byobu (basically screen) on my ...
2
votes
1answer
348 views

pty multiplexer

I'm trying to multiplex access to a serial port on linux. I'm working with an embedded system that have only one serial port and it would be nice to have more than one process talking to it. The ...
0
votes
2answers
150 views

Why can I not read from stdin in this forked process?

The following code prints nothing, but it should print out "a" repeatedly. The forked process blocks on the os.read(0, 1). The parent process is indeed writing to the stdin_master, but stdin_slave ...
0
votes
0answers
191 views

How to exit from on_data in Net::SSH

Short/long story,, I was suffering from keep PTY open and sending more than one command through pty. those commands could be related such as changing directory then work in it. ["cd /tmp" , "mkdir ...
2
votes
2answers
218 views

pty functionality for socket

I'm writing the linux daemon and I want to implement ability to configure its params via telnet. I have a cli interface code, written using gnu readline library with history and completers and I'd ...
1
vote
1answer
262 views

Pseudo-terminal (pty) reporting Resource Temporarily Unavailable

I have a Pseudo-terminal slave that's giving me a read/write error of Resource Temporarily Unavailable (11). I have been unable to solve this problem, but up until a week ago I didn't know anything ...
4
votes
2answers
155 views

Determine if a pty has a programming asking it for input

I am creating a pty using openpty in C, and sharing it between master/parent and slave/child. The child could fork/exec and pass on the file descriptor to other programs. I want to inject commands to ...
0
votes
0answers
109 views

Get error “PTY allocation request failed on channel 0” depending from where I connect from

I have a SSH server i try to connect to. There is 2 way people connect to this ssh server (not a standard *nix server): Location A-> SHH -> SSh server -> Error (PTY allocation request failed on ...
0
votes
1answer
267 views

Pseudo terminal to use with ssh in java

I am writing a program which is supposed to connect to a remote server with ssh and provide the user with a shell terminal. I've tried JSch and sshj -- both can connect properly but just hooking up ...
0
votes
1answer
169 views

What is the equivalent of unbuffer program on Windows?

Hi according to this post, unbuffer connects to a command via a pseudo-terminal (pty), which makes the system treat it as an interactive process, therefore not using any stdout buffering. I would ...
0
votes
1answer
291 views

Can't change terminal size on pty/N (works on ttyN)

I use the next to change terminal size: rc = ioctl(fd, TIOCSWINSZ, &ws); When I run this under linux text terminal (switching by Alt-Ctrl-F1), the result is that I expect to see. The whole my ...
0
votes
1answer
219 views

sshpass throwing error 'Failed to get a pseudo terminal: Success'

I am trying to run the sshpass tool to automate an sftp action. On another server, the command works, but on this server it just returns one line of error mesage. Here is the command I am using: ...
2
votes
3answers
203 views

How to Obtain Pseudo Terminal Master file descriptor from inside ssh session?

in C or bash, I was wondering how, if possible, do you obtain from inside an ssh session, the file descriptor to the pseudo terminal master responsible for getting input to that's session's ...
4
votes
4answers
660 views

Using subprocess with select and pty hangs when capturing output

I'm trying to write a python program that is able to interact with other programs. That means sending stdin and receiving stdout data. I cannot use pexpect (although it definitely inspired some of the ...
0
votes
0answers
45 views

PTY.spawn fails to use bash profile in Rails 3

I'm porting some code from Sinatra to Rails. There is python code ( I did not write it) to run a shell command, but it does not seem to load the bash profile in Rails. It is using PTY.spawn. It ...
0
votes
0answers
120 views

How I can get lxc-monitor output in my Java/Scala program?

I'm trying to get output from lxc-monitor and everytime I get empty results. For example: val pb = Process("/usr/bin/lxc-monitor -n .+") val pio = new ProcessIO(_ => (), stdout ...
2
votes
1answer
247 views

How to spawn a process in Scala with PTY?

In ruby I have: PTY.spawn("/usr/bin/lxc-monitor -n .+") do |i, o, pid| # ... end How do this in scala/java?
1
vote
1answer
293 views

Read timeout on pty file descriptor failing

I am trying to set a read timeout on a file descriptor representing a PTY. I have set VMIN = 0 and VTIME = 10 in termios, which I expect to return when a character is available, or after a second if ...
5
votes
2answers
648 views

ssh using python without RSA keys

New to Stackoverflow, so first off, hello. I'm working on a little project for my school which is supposed to be a custom gui (written in python as an educational challenge for me since I've never ...
5
votes
2answers
633 views

Ruby on Linux PTY goes away without EOF, raises Errno::EIO

I'm writing some code which takes a file, passes that file to one of several binaries for processing, and monitors the conversion process for errors. I've written and tested the following routine on ...
1
vote
1answer
248 views

Non greedy regular expressions in Ruby: pty and expect

I was doing a little test to try Ruby's pty and I can't get it right. I think the main problem is that the regular expression is non-greedy. This is a program called inputs.rb: puts "Give me ...
1
vote
2answers
243 views

C Fork a new tty

I have to create a new pair of tty (master and slave) without using forkpty(). In the man of pts(4), it is written that : When a process opens /dev/ptmx, it gets a file descriptor for a ...
0
votes
1answer
152 views

Can't import pty module even though it's installed

I have Python 2.7 installed on OpenSUSE. I'm using the pty module to spawn some ptys: import pty But Python can't seem to find it. ImportError: No module named pty Running help('modules') in the ...
3
votes
1answer
153 views

D and pseudo-terminals

Does D have built in support for pseudo-terminals via the Phobos runtime libraries ?...I'm assuming there isn't since ptys are highly platform specific. Are there other third party alternatives ? ...
0
votes
2answers
2k 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 ...
2
votes
1answer
421 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
508 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 ...
4
votes
2answers
2k 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 ...
1
vote
2answers
842 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 ...
6
votes
2answers
1k 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
1answer
250 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 ...
0
votes
1answer
98 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 ...
1
vote
2answers
253 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 2