For questions related to terminal drivers and the behaviour of terminals for Unix and related systems.
0
votes
0answers
21 views
How do you set up a pure emacs layered tty stack with 256 colors and mouse support?
I use this layered tty stack to reach emacs on GNU/Linux:
Mac OS X > iTerm2 $ ssh head-node -->
$ screen $ ssh compute-node -->
$ screen $ emacs -nw
Notes:
Mac OS X = Version 10.8.2
...
1
vote
1answer
31 views
Preventing linewrap when using pexpect / bash
When I execute the following script (simplified example):
#!/usr/bin/env python
import pexpect
spawn = pexpect.spawn('/bin/bash')
with open('/tmp/logfile.log', 'w') as f:
spawn.logfile_read = f
...
2
votes
2answers
64 views
Get terminal size in Go
How to get tty size with Go lang? I am trying do this with executing stty size command, but i can't craft code right.
package main
import (
"os/exec"
"fmt"
"log"
)
func main() {
out, err := ...
2
votes
0answers
49 views
Kernel panics : trying to write / read on tiny tty driver
I'm a beginner to the Linux programming and trying my hands on some device driver examples while practising.
The below code (a trimmed down version of tiny_tty.c) loads perfectly using insmod and I'm ...
1
vote
1answer
25 views
What programs acquire a controlling tty?
The reason for doing a double-fork when daemonizing is to prevent the daemon acquiring a controlling tty (What is the reason for performing a double fork when creating a daemon?)
What are some ...
2
votes
2answers
89 views
How can I echo to /dev/tty?
Is there a way to send something like an "end of data" after executing
echo "test" > /dev/tty1
in order to gain the "input cursor" back to "receiving" terminal (in this case tty1)?
Screenshot: ...
1
vote
1answer
16 views
Emulate PTY and output line-flushed stream [duplicate]
I'm looking for a way to trick a Linux program into thinking that it is connected to TTY so that output is line-buffered instead of block-buffered.
When I call the program directly inside the ...
0
votes
2answers
70 views
Starting tty.js on Boot
I'm trying to start a tty.js shell on boot which is pretty easy with a cron job on boot, but it doesn't start the environment correctly. It doesn't have the right $PATH and such. It is not executing ...
0
votes
2answers
83 views
write() with ttyS is non block
My question is this - how can you make a call write() in uCLinux 2.6.21 synchronous, ie that the call is not completed before the end of the send?
Now I have the following code:
//...
fd = open ...
0
votes
0answers
69 views
Is low latency mode safe to use with Linux serial ports?
Is it safe to use the low_latency tty mode with Linux serial ports? The tty_flip_buffer_push function is documented that it "must not be called from IRQ context if port->low_latency is set." ...
3
votes
1answer
185 views
How can I find which physical device /dev/console connects to?
There is a device file called /dev/console, whose (major,minor) is (5,1).
When I boot with a serial console, it connects to my UART port as /dev/ttyS0 does.
But when I boot with serial console ...
1
vote
1answer
139 views
Create a fake TTY device from a serial-over TCP connection
I have a library (PyModbus) I would like to use that requires a tty device as it will be communicating with a device using serial connection. However, the device I am going to talk to is going to be ...
0
votes
1answer
102 views
Pymodbus (Serial) over a tcp serial connection
I will be creating a connection between my Linux server and a cellular modem where the modem will act as a server for serial over TCP.
The modem itself is connected to a modbus device (industrial ...
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 ...
0
votes
2answers
83 views
linux serial ports — mulithread program
I am working on a smartcard reader project here i will have to read/write data from the smartcard reader.
Also i will have to read/write data from PC application.
There are two serial port on my ...
0
votes
1answer
137 views
How to create an execve() child process with the right tty settings to run 'vi' yet still redirect IO back to the parent process?
How do I get a forked, execve() child process that can run 'vi', etc. and redirect all IO to the parent process?
I'm trying to pass shells through from an embedded Linux process to the PC software ...
0
votes
1answer
42 views
“disconnecting” /dev/input/event14 from the tty
I bought a USB foot switch. It has usb id 0c45:7403. Linux works perfectly fine with it, that is: if you press it, it emulates a keyboard-press.
Now I can simly open /dev/input/event14 and read events ...
6
votes
1answer
117 views
Printed length of a string in python
Is there any way to find (even a best guess) the "printed" length of a string in python? E.g. 'potaa\bto' is 8 characters in len but only 6 characters wide printed on a tty.
Expected usage:
s = ...
0
votes
0answers
36 views
Term::ReadLine and cron
I've got a library in use that is used for management functions. For a specific type of device, there's a situation that I'll want to run an interactive query that interacts with the terminal to ask a ...
0
votes
2answers
25 views
is there a way to pause gnome from other tty?
To run a virtual machine on my computer and to have more resources for it, I'd like to pause gnome. The idea is to go on other tty pause gnome from it and run my virtual machine with lower ram for the ...
0
votes
1answer
45 views
Bash doesn't works for new user [closed]
I've just created a new user in my machine with adduser --system --group studio for audio purposes, and everything went ok until I've tried to open a terminal, which opened and closed immediately.
...
0
votes
1answer
86 views
How to redirect stderr for openvt
I have to launch my TextUI daemon respawning on a specific tty. For that purpose I launch it from a script, like this: $set_tty $launch_app, where
set_tty="openvt -c1 -s -w",
launch_app="my_daemon ...
3
votes
2answers
216 views
Why does ssh wait for my subshells without -t, and kill them with -t?
I have a bash script start.sh which looks like this:
for thing in foo bar; do
{
background_processor $thing
cleanup_on_exit $thing
} &
done
This does what I want: I run ...
0
votes
1answer
76 views
How to see the deamon process's output in Linux?
I wrote a test.c:
#include <unistd.h>
#include <stdio.h>
int main()
{
while(1)
{
sleep(1);
printf("====test====\r\n");
}
return 0;
}
then i compile it : ...
0
votes
0answers
24 views
Feeding initial input to remote shell
I must access various accounts on many machines. The setup is
gnome-terminal -e ssh $host sudo -P -i -u $user
Now in my own remote account, I set up my usual variables, scripts in ~/bin, ...
0
votes
1answer
124 views
udev ttyUSB change MODE
my program needs to access ttyUSB without root permission.
i change it with chmod 777 /dev/ttyUSB0 as you know when i reboot this permission changed by default.how to configure my udev rules.d for ...
0
votes
0answers
74 views
Can Xorg/Xserver work with out a TTY?
I'm trying to run a ubuntu on my android device (using chroot). When I run 'Xorg -configure' it prompt
Fatal server error:
xf86OpenConsole: Cannot open /dev/tty0 (No such file or directory)
...
0
votes
0answers
67 views
Pexpect long input
Its hard to explain what I am doing, but in short, the log/output of pexpect is getting messed up because of long input string that I am providing... Its similar to what happens in a Putty session ...
0
votes
2answers
430 views
USB Serial Port on Mac using socat
I have a piece of hardware that is connected over a Prolific Serial to USB cable and I need to use socat to send/receive traffic to/from this and a TCP port. So far it's installed and works fine with ...
0
votes
1answer
45 views
View tty used by applications
i want to control the TTYs (serial port )used by applications on my pc.
there is an applications that shows the status of each port by indicating the processes which are using?
Thanks a lot!
0
votes
1answer
345 views
JSCH sudo su command “tty” error
Java - Jsch sudo command.
I am using Jsch and my task is to login to server and run command as following
sudo su - bumboo
Using following code i am successfully able to connect but when i try to ...
1
vote
1answer
67 views
using additional tty sessions battery life draining?
When I'm working on my laptop I prefer to work in the arch linux console (without Xwindow).
I do this to preserve battery life, since I don't need graphics for my work, it's not a problem.
However ...
0
votes
1answer
211 views
TS-7500 doesn't detect ttyACM ports
I have a TS-7500 board which runs 2.6.36 kernel and a Arudino Uno. When I connect the arduino to TS-7500, it doesn't show up a ACM device.
After running $ modprobe cdc_acm, dmesg shows the following ...
0
votes
1answer
348 views
How can I automatically login on a tty and execute a script
I have installed android x86 on my desktop.When i select the boot option of android in the grub,it goes to tty8 and then I go to tty1 using alt+F1,and then login into my Ubuntu user account (where my ...
-1
votes
1answer
112 views
ttyACM* ports on TS-7500 board running Debian
When I connect my Arduino Mini to my TS-7500 board running Debian (Linux ts7500 2.6.24.4), it doesn't show up as a ACM port.
dmesg gives the following output
[14090.3000] usb 2-1: new full speed ...
2
votes
1answer
249 views
How to know which device is connected in which /dev/ttyUSB port
I am using two wavecom modem having 16 ports in each.
When i attach modem with my machine, i am able to get list of all /dev/ttyUSB port name, but i want to know also, which modem is containing port 0 ...
0
votes
0answers
166 views
What is the relationship between Xorg (or any X server) and /dev/tty7 in Linux?
I have a few questions about what it means when one says "the X server runs on /dev/tty7". I made a few guesses as to how it works, and I'm hoping someone can tell me whether the following statements ...
4
votes
2answers
192 views
What's the opposite of \b character, i.e. a kind of non-erasing space?
The \b control character, as I understand it, is not supposed to erase the previous character (this would be \b + a del character as well), so something like this works:
>>> print ...
2
votes
1answer
109 views
Open returns identical file-descriptor in different processes
System: Ubuntu 12.04
Compiler: gcc (version: 4.6.3)
My idea is to write a client-server application to exchange data via the serial port.
But my problem is, when I execute the code-snippet below, ...
0
votes
1answer
75 views
What is a TTY and how can I enable it on Ubuntu?
I'm currently setting up a node.js server and I'm using the debug module here https://github.com/visionmedia/debug.
I'm trying to enable it so I can get the colored debugging information in my ...
0
votes
0answers
31 views
Connection-closed message ends with \r\r\n
I'm integration testing a interactive (tty) ssh session using pexpect and the last status line of openssh client (Connection to closed.) oddly ends with '\r\r\n' (CRCRLF). Is this the expected line ...
0
votes
0answers
117 views
Implementing nCurses over telnet/ssh
I am currently attempting to implement a small telnet server which spawns a PTY on a connection from a client, and transmits the output of a small nCurses application to the client. I am working in ...
1
vote
0answers
118 views
Ruby: Net::SSH::Multi using keys
I'm having problems getting Net::SSH::Multi library to work, it should connect to each box and run that command, I'm trying to get the output.
Here's my code:
#!/usr/bin/env ruby
require 'rubygems'
...
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 ...
0
votes
3answers
693 views
Leaving tmux scrollback in terminal (iTerm2)
Usually tmux will only show as much output as however many rows my terminal currently displays. And then when I detach it, it clears all of its content. I know how to look at scrollback (ctrl+A, [, k, ...
0
votes
0answers
236 views
How to change device filename programmatically in Android?
What I want to do
I would like to control the way Android creates device file /dev/ttyUSB{0-99}. In partcular, I would like to bind one particular device to a particular device number. /dev/ttyUSB3 ...
3
votes
1answer
478 views
Perl bidirectional pipe IPC, how to avoid output buffering
I am trying to communicate with an interactive process. I want my perl script to be a "moddle man" between the user and the process. The process puts text to stdout, prompts the user for a command, ...
1
vote
0answers
277 views
Run a script after killing lxsession (xorg)
I am trying to run a program automatically within a bash script after killing the LXDE session. My script consists of:
#!/bin/sh
pkill lxsession;
sh ...
0
votes
1answer
135 views
CPython doesn't interact well with spawned tty terminals on Windows
Everytime I try to use winpexpect to spawn terminal (eg: openssh, ssh). if I do winpexpect.winspawn('ssh ...') I am met with "Pseudo-terminal will not be allocated because stdin is not a terminal.". ...
0
votes
0answers
100 views
TTY driver for PPP Daemon on OpenSuse
I am working on a project where I need to interface one of my custom device as a tty device for work with PPP Daemon on Linux. Can anybody help me identify as to how to write a tty driver for ...
