Command in Unix/Linux systems that allows you to set and print options for your terminal.

learn more… | top users | synonyms

1
vote
1answer
29 views

How to reset stdin after an EAGAIN error?

This is an error that I encountered in a large ruby script. I've managed to boil it down to what seems like the essence of the problem. In discussing this problem, the script was run by someone on ...
1
vote
0answers
43 views

Ruby: read_nonblock(???) breaks “system” command

I have two versions of a method, I encounter the same problem with both. version 1 def read_char $stdin.raw! input = $stdin.getc.chr if input == "\e" then input << ...
0
votes
1answer
63 views

Read password using perl on windows

We have a perl script, in the we read password using stty. As stty is not available on windows this script fails. We did some search and found that ReadKey is an alternative for this. However we dont ...
0
votes
0answers
224 views

Using serial port with stty not working, minicom ok

I'm trying to write to a serial port and read results via bash scrpts (echo, printf, and read). I've setup stty correctly as far as I can workout, but I can't read any characters back. If I place ...
2
votes
0answers
60 views

Override “^c” or “ctrl-c” is the interrupt signal for shell interpreter [closed]

I would like to override ctrl-c as the signal interrupt character for all my shells and replace it with something else. I've looked at stty and xmodmap, but have not found anything that i understand ...
0
votes
0answers
50 views

Linux stty: how to set all parameters as for Windows XP default COM port connection?

I'm going to redirect /dev/ttyUSB0 from my Linux machine to WinXP one (through FreeRDP or rdesktop). What params should I set by stty in Linux machine to properly use this port in Win XP (speed, ...
0
votes
0answers
23 views

Change the format of the end of line

The terminal receives pressing enter as input character code 0x0a: $ cat > r 1 1 1 ^C $ hexdump -C r 00000000 31 0a 31 0a 31 0a |1.1.1.| 00000006 $ How to make ...
1
vote
1answer
215 views

Where do stty commands go in bash dotfiles? .bash_profile?

I'm trying to ensure that the flow control, xon-xoff, Control-S Control-Q feature is turned off in all of my terminals/shells/tmux (so that I can reliably use Control-S for something else) It should ...
3
votes
2answers
160 views

What is the representation of the mac command key in the terminal?

Like control key is represented by a '^' in the terminal, what is the equivalent for the command key (mac)? I am trying to remap my bash shortcuts using stty For eg stty eof ^D But instead of ...
0
votes
2answers
91 views

STTY may have been deleted?

I was installing ruby/rails/gem and homebrew and got frustrated. I think I deleted the stty folder. ANYWAY, what can I do? It doesn't seem to have ever happened on the internet before. Running stty ...
0
votes
0answers
252 views

how could I ignore this error “stty standard input inappropriate ioctl for device”

I use a ruby gem to deal with my files, which has a dependency on stty. So I must invoke a stty command in pseudo-tty that rails provide in shelling out. But stty can't deal with it. > stty: ...
0
votes
1answer
606 views

symfony2 error, stty not recognized

I am following the tutorial. When I am using the command php app/console doctrine:fixtures:load then I am getting an error C:\wamp\www\Symfony>php app/console doctrine:fixtures:load 'stty' is ...
2
votes
1answer
640 views

Symfony2 CLI Error ( 'stty' is not recognized as an internal or external command )

I get the following error when trying to generate an entity in Symfony2 from the Windows command line: 'stty' is not recognized as an internal or external command, operable program or batch file. ...
6
votes
1answer
631 views

symfony2 application, vagrant & ant: stty: standard input: Invalid argument

I am trying to move my development environment (symfony2 application) from my windows 7 localhost to a virtual machine using vagrant and the default ubuntu 10.04 64 bit machine. Everything is set up ...
1
vote
1answer
311 views

Arduino returning more responses than queries have been sent

I have a problem when using Arduino to post data to Pachube. The Arduino is configured to return JSON data for the temperature when you send a 't' and return JSON data for the light level when you ...
1
vote
1answer
292 views

Determining Terminal lines/cols via PHP CLI

I know that it is quite easy to figure out a terminal's size parameters via the stty -a command. When using local CLI PHP scripts, there is no problem at all on grabbing that output via system() or ...
0
votes
1answer
2k views

Set stty parameters

Im trying to use bash to read from ttyS0 and need to set the following but im struggling to figure it out databits = 7 stopbits = 2 parity = 0 flow control = 0 heres my code: #!/bin/bash # Port ...
0
votes
3answers
746 views

How to modify input stream of netcat?

I'm creating a TCP/IP interface to a serial device on a redhat linux machine. netcat in a bash script was used to accomplish this with out to much trouble. nc -l $PORT < $TTYDEVICE > ...
1
vote
1answer
423 views

Executing expect script from php. Can't get the stty settings right

I've got a php script that executes an expect script. Expect scipt connects remotely over telnet to another device, executes a couple of commands there and returns results. Php script is just a way to ...
0
votes
1answer
278 views

stty and sending carriage return

I have a serial device with which I am trying to communicate. This device knows when a complete command has been sent when the command string is terminated with a "\r". Thus, a typical command string ...
0
votes
1answer
202 views

Stty getting insane on using Python subprocess

I am facing a weird problem. Every time I call a particular command cmd via subprocess.Popen(cmd).wait(), the stty gets bad (does not echo my further commands on the shell, newline does not work, ...