Tagged Questions

0
votes
2answers
45 views

bash script doesnt run correctly as background process

I have bash script which works well but when I send it back with nohup script & and close my terminal session then it's not working correctly. It only works well within my terminal session open. …
1
vote
3answers
55 views

arrow key via stdin

Hi everybody, 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 …
2
votes
4answers
205 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 …
0
votes
2answers
97 views

Linux receive signal break for ttycontrol program

I would like to receive SIGINT if my process controlling /dev/ttyS2 receives BREAK on a serial port. I run this program from a shell. From what I discovered only "the terminal is the controlling …
1
vote
2answers
100 views

How can I figure out which tty file points to which USB-to-Serial device?

I have two legacy machines connected to a Linux box with USB using the ftdi_sio driver, to /dev/ttyUSB0 and /dev/ttyUSB1. The Linux box is relaying and analyzing the traffic between the machines. When …
2
votes
3answers
411 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 …
1
vote
0answers
103 views

Silencing Linux console output [closed]

Hey, I installed a minimalist distribution for my mom to use, it uses rungetty to autologin and an init script that just does 'startx'. Everything works great but when she goes to shutdown, it drops …
2
votes
2answers
111 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 …
0
votes
3answers
386 views

Getting exclusive access to a tty device from a root program on Linux

I have a program running as root on Linux, talking to a tty (actually an LCD implemented as a tty). The device for what it's worth is /dev/ttyUSB0. I'd like to have my program that writes to this …
1
vote
1answer
303 views

Handling User-Break (UART Break) on a /dev/tty device in Linux

Here is some code sample, but the issue is that the signal handler is not called when a 'break' is sent over the serial line with 'putty'. #include <sys/ioctl.h> #include <termios.h> …
-1
votes
1answer
330 views

Unable to have TTY switch for Ctrl-Alt F1 and Alt-F1…F6 in Mac

Problems: to have terminal mode for the keybinding Ctrl-Alt F1 to have TTY switch for Alt-F1...F6 Ubuntu has the above commands to move between different ttys. It seems that Mac does not have …
0
votes
3answers
503 views

Catching a direct redirect to /dev/tty

I'm working on an application controller for a program that is spitting text directly to /dev/tty. This is a production application controller that must be able to catch all text going to the …
5
votes
5answers
352 views

In Ubuntu Intrepid, what keypress will take me to tty13?

Trying out Ubuntu Intrepid, I have discovered that RightAlt+F1 doesn't take me to tty13. I've exhaustively tried every option presented to me in "dpkg-reconfigure console-setup", the best I've been …
2
votes
3answers
991 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" …
0
votes
1answer
81 views

How can I change a Console with a scarce amount of working keys? [closed]

The question is more challenging than it looks like because keys, such as CTRL, ALT and F-keys, do not work properly in my VM Ubuntu. I have tried to test the tip by Aaron Deguilla in the post Unable …

1 2 next
15 30 50 per page