The input tag has no wiki summary.
2
votes
1answer
61 views
How to lock-down input on a Linux machine?
We need to put out a web browser to a public place to show informations. I need to lock down all the input interfaces via software methods. So ex.: if someone plugs a USB keyboard to the machine it ...
1
vote
2answers
50 views
Redirecting Multiple Commands as Input
What is the correct way to redirect the output of multiple commands as input for another command?
e.g.
$ command < (command2 | grep pattern)
1
vote
1answer
31 views
How to get Xorg to use the wacom driver for my graphics tablet?
I just got a Wacom graphics tablet, plugged it in, installed the drivers and it mostly works. However xsetwacom and the KDE tablet settings module don't recognize it. Upon inspection of Xorg.0.log I ...
1
vote
2answers
41 views
Automate input procedure to a binary file
I have a binary file on Unix, which when executed asks the user for inputs. The inputs to this binary file are given manually. I want to automate the procedure, since I know the inputs already. I ...
3
votes
1answer
385 views
SSH causes while loop to stop
I have finally managed to boil down a problem I have been struggling with for a few weeks. I use SSH with "authorized keys" to run commands remotely. All is fine except when I do it in a while loop. ...
4
votes
1answer
143 views
Get raw input from command line (ignore shell meta characters)
Is there any way to read raw text from stdin before it is expanded or before the shell does anything to it? Say I wanted to run a script where a user enters a string which is then printed out, how can ...
2
votes
2answers
180 views
CrunchBang & Openbox: no reaction to laptop power button pressed
I've just installed #! and I'm loving the customizable Openbox DE.
However, when I press the power button on my laptop, the system doesn't react.
For example, when I was using Debian & Gnome, ...
3
votes
1answer
190 views
How do I enforce system-wide custom keyboard shortcuts / macros?
I would like to be able to apply the same custom key bindings and shortcuts I use on my text editors to my entire desktop environment.
I want to basically remap my keyboard system-wide, not just in ...
0
votes
1answer
137 views
input, evdev alternatives?
Simply put what are some other input subsystems?
P.S. (a little context)
Is there a popular alternative? (I'm looking at an HP-UX and have no idea how its taking care of this, because there is no ...
0
votes
0answers
74 views
Input freeze when X starts on other terminal
I have a Packard Bell F2011HC-125GE running a Debian Squeeze-based Linux.
After a few days of usage i found the system freezes from time to time.
It's obvious the freezes happen, when X starts while ...
1
vote
0answers
152 views
how to merge two audio input source using avconv
I try to make screencast using avconv and I facing a problem.
I finally succeed to record both pc output and microphone input , the problem is that they're not merged in the output file.
(I saw ...
1
vote
1answer
278 views
Behavior of while loop and for loop in unix script
I am trying to read user and server details from file tempo.txt and then check the disk space usage of the file system on that unix account using another script server_disk_space.sh.But I am not able ...
1
vote
0answers
705 views
Mouse Scroll Wheel Speed Far too sensitive
In my crunchbang installation with X11, openbox, my wireless usb mouse is listed at both /dev/psaux and /dev/input/mouse0. It's working fine apart from the scrollwheel, which although active, is far ...
1
vote
0answers
146 views
Is it possible to use a PS3 controller to emulate an xbox controller?
I have my PS3 controller connected through USB and while that works fine, no applications seem to support its keymap. So my question is whether it's possible to make it emulate an xbox controller ...
13
votes
1answer
406 views
Command line utility to retrieve password, that has no echo back
Bash builtin read command doesn't seem to support it, now I need to let user input a password while no echo should be displayed, what tool can I use?
1
vote
1answer
372 views
awk - get input from both file and STDIN?
Is it possible to get input from both file and the terminal?
I wish to ask the user something in the END portion of the awk script.
That input should be typed in by the user and not read from the ...
4
votes
1answer
166 views
Filtering the keyboard input
I have a program that takes input from the keyboard and presents a nice visualization. The purpose of the program is so that my infant can mash on the keyboard and get the computer to do something.
...
4
votes
1answer
136 views
“Merging” two input device drivers/nodes to one device node
Okay, I have two joysticks attached to my linux box and they show up as /dev/js0 and /dev/js1. My problem is, I have a third party application, (that I cannot change), that uses a joystick, and it can ...
1
vote
2answers
112 views
Import sql files using xargs
I have a number of sql files to import. For a single file I use the following command:
mysql -u root -p dbname < db.sql
Is it possible to use xargs to bulk import all files? something like:
ls ...
42
votes
2answers
1k views
Clear / erase a mistyped invisible password on a shell / terminal in Linux
One thing that annoys me using Linux's terminal is when I have to type a invisble password, like when you run ssh. Sometimes I mistype one or more letters and then I have to press backspace key a few ...
14
votes
2answers
998 views
bash script to detect and record mouse movements?
I need to be able to record the mouse movements every so often (every .2 of a second for example) and have them in a coordinate representation instead of a diff.
I found the following script:
...
2
votes
0answers
151 views
How to know the event by looking at /dev/input/by-id
I want to access the keyboard device driver. I usually accesses it by looking at
/dev/input/by-name but the event provided by it gets changed every time I log in.
After searchin on the Net, I found ...
5
votes
2answers
293 views
Share keyboard over network as separate device?
I am trying to achieve something similar to this:
http://superuser.com/questions/67659/linux-share-keyboard-over-network
The difference is that I need the remote keyboard to be usable separate from ...
6
votes
1answer
312 views
Bash script doesn't read input
I have a script that is suppose to run a command in the background, and it does that. The problem is that when the script comes upon a read command, it doesn't pause and accept input. Here it is:
...
16
votes
2answers
14k views
Earphone remote in sound jack as X input
I have got new earphones, the AKG K318's to be exact and they have one of those remotes. On a smartphone, such as an Android phone or iPhone, the buttons map to actions on the music player such as ...
3
votes
1answer
442 views
send keystroke to process
I'd like to run some applications in fullscreen. Even though they don't have an explicit such option, it is possible with the metacity Alt-F11 command.
So, I thought I could create such an input like ...
0
votes
2answers
403 views
Shell script how to read input from a file [closed]
I need to read input from a file given in following format.
$ ./process_data.sh arg1 < input_data.txt
How do I read input_data in my shell script process_data.sh?
3
votes
4answers
333 views
Get input from editor (vim/nano/emacs/textmate?)
I was just curious if there's a way to get input not from StdIn but from $EDITOR - be it vim, nano, emacs or even a non-command-line-editor (MacVim/TextMate). What are the ...
5
votes
2answers
243 views
how to deal with keyboard-greedy apps
I'm having a very specific problem, however any help will aid in understanding X's relationship to the keyboard.
I'd like to be able to launch the ElectricSheep program on top of music playing from ...
2
votes
1answer
392 views
Sending some input into a process, then resuming input from command line
I have an interactive terminal program, that accepts stdin (telnet for example).
I want to send it some input before interacting with it, like this:
echo "Hello" | telnet somewhere 123
But that ...
0
votes
2answers
2k views
How to directly read keyboard input in real-time?
I am not certain if this is ultimately the correct place to ask this but I am developing a program which requires real-time input from the user. That is; it needs to be able to read the keys being ...
3
votes
1answer
309 views
How can I make C-m1 emulate a right click?
On Mac OS X, you can right click by holding down control and clicking. I swapped the command and control keys with setxkbmap -option altwin:ctrl_win, but how do I make it right click by holding down ...
6
votes
2answers
3k views
How do mouse events work in linux?
This is mostly out of curiosity, I'm trying to understand how event handling works
on a low level, so please don't reference me to a software that'll do it for me.
If for example I want to write a ...
4
votes
1answer
319 views
Fetching user input while running in the background
I am writing a script that prompts the user for input and does some processing afterwards. I was using read to get the data, but then I noticed that when the script is ran with a keyboard shortcut (I ...
2
votes
1answer
71 views
Directing Xorg input to selected application
I'm trying to play Frets on Fire using my PS3 Guitar Hero III controller. It works right away, but it's also controlling the cursor as if it's a mouse. I'd like to play the game windowed, but that's ...
4
votes
2answers
821 views
Multitouch support on KDE
On Ubuntu there is an app called ginn which forces non-multitouch aware apps to support multitouch. (source)
Is there any analogue for the KDE Desktop Environment?
6
votes
1answer
593 views
Dual head configuration with two touchscreens in Linux
As a part of my current project I need to set up a Linux-based workstation with two monitors, both of which are multitouch-enabled (ViewSonic VX2258wm, Quanta touch panel). So, naturally, I set up a ...
7
votes
1answer
437 views
barcode scanner input when running xorg and evdev
When I scan a barcode in a text console (CTRL+ALT+F1 or not running X) I get the correct input, but when I try with an application running on X, I don't get the correct barcode.
The scanner is ...
2
votes
1answer
395 views
Apple Magic Trackpad resets settings after session
I was able to get the Apple Magic Trackpad working on Fedora 15 KDE 4.6. (I previously got it working on Linux Mint.)
However, the settings -- particularly activating the single-finger left click and ...
14
votes
7answers
2k views
Disable Keyboard & Mouse input on unix (under X)
How can one programmatically "freeze" the Keyboard & Mouse temporarily, so that no one could mess with the system?
There are several possibilities where this is useful. For instance, I have a ...
2
votes
2answers
89 views
SED misbehaving with input file
Simply put I have a small sed command that is supposed to trim " and wrap the input between the <id> tag. It goes well single line and multiple line input, but badly misbehaves on an input file ...
1
vote
0answers
204 views
Settings value in /sys/devices/platform/i8042/serio1/serio2/speed as no effect
I'm following this tutorial to ajust the TrackPoint speed for my Lenovo T420. However, setting a value in /sys/devices/platform/i8042/serio1/serio2/speed has no effect.
The trackpoint is unaffected ...
6
votes
4answers
6k views
How to inject keystrokes via a shell script?
I'm trying to inject keystrokes into the input daemon so as to simulate typing from a Bash script. Is this possible, and if so, how can I make it happen?
3
votes
2answers
1k views
How to catch optioned and non optioned arguments correctly?
I want to write a shell script which will take some arguments with some options and print that arguments. Suppose the name of that script is abc.ksh. Usage of that script is -
./abc.ksh -[a ...
6
votes
2answers
4k views
How to debug the input from an input-device (/dev/input/event*)
I have a IR reciver that is using the imon-driver and i would like to get it working with the kernel. Right now half of the keys on the remote (image) works, but an all important think like the ...
5
votes
2answers
316 views
Easy/simple input method package that works with minimal window manager?
I am trying out minimalist window managers such as, but not limited to, Xmonad, ScrotWM, ratpoison, etc.
Since I occasionally need to enter Traditional Chinese characters, how do I install an input ...
5
votes
2answers
618 views
External tablet input devices for Linux (Inkscape/Gimp)?
What are good external tablet input devices for Linux?
It should be used for more convenient use of Inkscape and Gimp.
Some characteristics that are useful, I guess:
connected via USB
included pen ...

