Tagged Questions
For questions related to terminal drivers and the behaviour of terminals for Unix and related systems.
27
votes
6answers
2k views
Why is printing to stdout so slow? Can it be sped up?
I've always been amazed/frustrated with how long it takes to simply output to the terminal with a print statement. After some recent painfully slow logging I decided to look into it and was quite ...
10
votes
3answers
281 views
Why do I have to type ctrl-d twice?
For my own amusement, I've cooked up a python script that allows me to use python for bash one-liners; Supply a python generator expression; and the script iterates over it. Here's the script:
...
10
votes
3answers
730 views
What do pty and tty mean?
I noticed there are many "pty" and "tty" in some opensource projects, could someone can tell
me what do they mean and what is the difference between them ? thanks!
8
votes
1answer
491 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
2answers
427 views
How do I detect if stdout is connected to a tty in Perl?
I'm looking for the Perl equivalent to this Python code:
from sys import stdout
if stdout.isatty():
print "yes"
else:
print "no"
7
votes
3answers
2k views
How do *nix pseudo-terminals work ? What's the master/slave channel?
I want to write a simple, dumb, X terminal emulator in C on a Linux system.
At first, I just thought I would have to popen a shell and display its output.
I checked xterm and rxvt code, and it looks ...
6
votes
3answers
445 views
What is the difference between writing to STDOUT and a filehandle opened to “/dev/tty”?
What are the differences between this two examples?
#!/usr/bin/perl
use warnings;
use 5.012;
my $str = "\x{263a}";
open my $tty, '>:encoding(utf8)', '/dev/tty' or die $!;
say $tty $str;
close ...
6
votes
3answers
273 views
Linux: can I read the output of another process without using any IPC (pipes, etc.)?
Is it possible in linux to somehow read the output (from stdout and stderr) of another process without it knowing about it? So lets say I have a process A running in the background and process B wants ...
5
votes
4answers
620 views
How to figure out whether a Linux TTY is controlling a process group
So I have a tty (let's say /dev/tty5) and want to know whether it currently is a controlling tty of a process group or session, or whether it is currently unowned. POSIX has two API functions which ...
5
votes
4answers
2k views
Receiving key press and key release events in Linux terminal applications?
I would like to write a simple C program that will perform different actions based on both "key down" and "key up" events. This program will be run from inside rxvt.
What library or mechanism should ...
4
votes
1answer
127 views
File which responds to isatty(3)
I'm wanting to write my own psuedo-shell and would like to get pretty colors etc. How do I go about tricking a subprocess into thinking that it is in a TTY? I've read about virtual TTY's but haven't ...
4
votes
7answers
732 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 ...
4
votes
7answers
789 views
C write() doesn't send data until close(fd) is called
So I have this test code to send "HELLO" over a USB serial port:
int fd;
struct termios tty;
if((fd = open("/dev/ttyUSB0", O_WRONLY|O_NONBLOCK|O_NOCTTY)) == -1){
err(1, "Cannot open write on ...
4
votes
5answers
870 views
Correct initialization sequence for Linux serial port
I wrote an application that must use serial ports on Linux, especially ttyUSB ones. Reading and writing operations are performed with standard select()/read() loop and write(), and there is probably ...
3
votes
3answers
72 views
How to reroute STDOUT, STDERR back to /dev/tty
I just ssh-ed to some remote server and found that STDOUT and STDERR of all commands/processes I am trying to run in bash is redirected to somewhere.
So, I got following questions
How to detect:
1) ...
3
votes
4answers
177 views
Make R (statistics package) wait for keyboard prompt when run within a bash script
I am using R to generate a series of plots within a loop, with the user hitting the enter key to indicate they have seen the plot and it is time to move on. These are interactive rotatable plots ...
3
votes
5answers
230 views
How do I check if a Perl script is running in a terminal?
I'm trying to determine, within a Perl script on Linux, whether it's running in a terminal.
That is, I need code that:
returns true when simply running on the command-line
also returns true when ...
3
votes
2answers
519 views
Python TTY Control
I guess I'm not clear on what what the function of the getty/agetty/mgetty programs are on a linux/unix machine. I can start a shell on a tty with something like this:
TTY = '/dev/tty3'
cpid = ...
3
votes
1answer
1k views
How to write data to existing process's STDIN from external process?
I'm seeking for ways to write data to the existing process's STDIN from external processes, and found similar question How do you stream data into the STDIN of a program from different local/remote ...
3
votes
1answer
482 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
4answers
265 views
Java program stdout and detaching from foreground
I have a java program, let's say Test.class.
When I execute java Test the program ask for a Password and then continute.
The problem is that the stdout is redirected to a log and the program is ...
3
votes
1answer
1k views
PHP CLI: How to read a single character of input from the TTY (without waiting for the enter key)?
I want to read a single character at-a-time from the command line in PHP, however it seems as though there is some kind of input buffering from somewhere preventing this.
Consider this code:
...
3
votes
1answer
380 views
Detect if stdin is a tty device (terminal) or pipe in PHP?
I wrote a php script. I want it show help message when called with standard input connected to a tty device (terminal) before reading and executing interactively, but dont show when called with a file ...
3
votes
1answer
622 views
enabling tty in a ssh session
I would to take in some login information for a script have written in to be used by many users. In python I set the input_raw to read from dev/tty but it fails horribly when i am connecting to the ...
3
votes
4answers
781 views
How to tell if running in a linux console versus an ssh session?
I have an application that needs to behave differently if run directly from the linux console. So if a user connects with SSH to run FooBar, or the user walks over to the console and logs in directly ...
3
votes
4answers
689 views
How to display tabs as 4 spaces in gnome-terminal
Actually gnome-terminal display tabs as 8 spaces, and this is very annoying when you cat files or view diffs, is there some way to change this permanently?
3
votes
3answers
3k views
How to create a pseudo-tty for reading output and writing to input
I am using fork() and execvp() to spawn a process that must believe it is connected to an interactive terminal for it to function properly.
Once spawned, I want to capture all the output from the ...
3
votes
3answers
4k views
ksh: how to probe stdin?
I want my ksh script to have different behaviors depending on whether there is something incoming through stdin or not:
(1) cat file.txt | ./script.ksh (then do "cat <&0 >./tmp.dat" ...
2
votes
1answer
107 views
MacOS: what's the difference between /dev/tty.* and /dev/cu.*?
Each serial device shows up twice in /dev, once as a tty.* and once as a cu.. What is the cu. device? How does it differ from the tty.* device?
mh@maru ~ --> ls -l /dev/*.usbmodem621
crw-rw-rw- ...
2
votes
1answer
50 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
61 views
Inner workings of TTY under Linux
I've been trying to figure out how TTY drivers works for a while now (with full understanding each kernel's implementation may be different), and came across a nice article: The TTY demystified
I ...
2
votes
1answer
404 views
Using netcat/cat in a background shell script (How to avoid Stopped (tty input)? )
Abstract: How to run an interactive task in background?
Details: I am trying to run this simple script under ash shell (Busybox) as a background task.
myscript.sh&
However the script stops ...
2
votes
1answer
327 views
How i can read tty file with timeout?
I have tty device in /dev , where I send AT commands. I want to read line by line and stop reading file after timeout.
2
votes
1answer
157 views
How many spaces to a tab on this tty
I have a perl script that is writing to stdout which is a tty. Is there a way to determine how many spaces to a tab on that tty?
2
votes
1answer
348 views
persistent local tty session with java
I`m developing a web shell client, with tab functionality "code completion" and a have a question.
Anyone know a way to open a local tty persistent connection where I can to execute multiple commands ...
2
votes
2answers
788 views
How would I go about writing a Linux TTY sniffer?
For educational purposes (not that anyone should care about the motivations behind such an exercise) I'd like to write a program that can read/write to/from alternate tty/pty's. I've read papers (from ...
2
votes
2answers
692 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
2answers
171 views
how does a process know when it's been backgrounded?
When I scp a file, I can stop it with ^Z and put it in the background. When it's in the background it stops printing its progress but the copying continues. If I foreground it again, it resumes ...
2
votes
2answers
603 views
How can I create a loop between two TTYs?
Every Hello has a response. Second TTY will send a hello to the sender TTY and vice versa:
echo 'echo hello > /dev/pts/1' > /dev/pts/0
The 1st receiver should send "hello" to the original ...
1
vote
1answer
25 views
Different terminal ids in ps and tty
The proccess I've started has a different terminal id from tty result. Is there some rule for that? Is there a way to find out what terminal id would programms have if I started them?
...
1
vote
1answer
134 views
How to toggle CR/LF in gnu screen?
I'm using screen to read the text from a serial console. The problem is the output seems to only have newline \n but not carriage return \r, so the display looks like this...
Line1
Line2
...
1
vote
0answers
78 views
QFileDialog doesn’t list tty* files in /dev/ on Linux
I’m working on a Linux desktop application that needs to open a USB serial port, typically /dev/ttyUSB0 or /dev/ttyUSB1. I’m using QFileDialog to let the user select the file:
QFileDialog ...
1
vote
0answers
47 views
Pseudo TTY to access modem
Few months ago i configured the following: I have a modem that can receive SMS; I used Kannel to handle it: when the modem receives a SMS, Kannel, running as a daemon and listening to the modem, auto. ...
1
vote
2answers
348 views
What does TTY mean in the unix ps command?
When I run PS one of the columns output is TTY. What does this mean? In particular, how does as value of "??" compare with "ttys000"?
I ask because I have a Java program execute sort via ...
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
142 views
pipe usage in virtual tty
i am using a simple pipe programing for writing and reading the tty which made from inserting the program code from the linux device driver book version 3 of o'reilly. i inserted this via insmod ,and ...
1
vote
1answer
70 views
python interpreter keys are swapped
I am trying to get some kicking in python and decided to run python on my ubuntu natty installation, still I am having a weird problem...
It seems that inside the interpreter my keyboard keys are ...
1
vote
2answers
182 views
stty hupcl ixon ixoff
I'm seeing stty, not a typewritter messages on hpux (despite an interactive terminal check?), and am guessing that these are due to the stty lines in my .kshrc file:
case $- in
*i* )
stty hupcl ...
1
vote
1answer
102 views
Serial Connection on Apple TV2
On the iPhone/iPod Touch/iPad I'm able to communicate with an external device via the dock connector (Pin 12/13). Now I'm trying to do the same thing on the Apple TV2. I already got the right pin ...
1
vote
1answer
244 views
Pseudo TTY line limited to 256 characters?
A SSH connection is opened with Plink (PuTTY) from a windows machine to a solaris server via:
Plink.exe -t <hostname> /bin/bash
Then a bash command line is written to stdin of Plink.exe and ...