* remote keyboard
@ 2005-05-12 4:51 P.Manohar
2005-05-12 5:04 ` Raphael Jacquot
2005-05-12 8:12 ` Jan-Benedict Glaw
0 siblings, 2 replies; 5+ messages in thread
From: P.Manohar @ 2005-05-12 4:51 UTC (permalink / raw)
To: linux-kernel; +Cc: industeqsite
" I am planning to have remote keyboard to control the operations on a
particular target. To explain in detail, I will have a PC with keyboard,
mouse etc and this PC will be connected to another PC(Remote) via
Ethernet.
Instead of using the local keyboard input, I want sent the keyboard keys
from the remote system (another PC via Ethernet) and use it as if it
from
the local keyboard.
My Plan
I am planning to use the Linux keyboard driver and read the keyboard
buffer
from the remote PC and send it to the target PC, and in the target PC
whatever the key code I have received through the Ethernet I will put it
into the local keyboard buffer using the Linux keyboard driver IOCTLs.
Can anybody tell me is this acceptable "
Hai,
The above message appeared in kernel-mailing list,
I am also involved in the same problem.
How to put characters into keyboard buffer using the Linux keyboard driver
IOCTLs?
If anybody knows about it please guide me.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: remote keyboard
2005-05-12 4:51 remote keyboard P.Manohar
@ 2005-05-12 5:04 ` Raphael Jacquot
2005-05-12 14:14 ` Joel Jaeggli
2005-05-12 8:12 ` Jan-Benedict Glaw
1 sibling, 1 reply; 5+ messages in thread
From: Raphael Jacquot @ 2005-05-12 5:04 UTC (permalink / raw)
To: P.Manohar, linux-kernel, industeqsite
P.Manohar wrote:
>
> " I am planning to have remote keyboard to control the operations on a
> particular target. To explain in detail, I will have a PC with keyboard,
> mouse etc and this PC will be connected to another PC(Remote) via
> Ethernet.
> Instead of using the local keyboard input, I want sent the keyboard keys
> from the remote system (another PC via Ethernet) and use it as if it from
> the local keyboard.
>
> My Plan
> I am planning to use the Linux keyboard driver and read the keyboard
> buffer
> from the remote PC and send it to the target PC, and in the target PC
> whatever the key code I have received through the Ethernet I will put it
> into the local keyboard buffer using the Linux keyboard driver IOCTLs.
>
> Can anybody tell me is this acceptable "
>
>
> Hai,
> The above message appeared in kernel-mailing list,
> I am also involved in the same problem.
> How to put characters into keyboard buffer using the Linux keyboard
> driver IOCTLs?
>
> If anybody knows about it please guide me.
are you using a graphical (Xwindow) application ?
in that case there is absolutely no point in doing that kind of horrible
hack, as the XWindow System is network transparent, that is, you can run
the application on machine A, and have it display and be controlled on
machine B
you can even use the ssh secure shell to securely do so, in an encrypted
manner.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: remote keyboard
2005-05-12 4:51 remote keyboard P.Manohar
2005-05-12 5:04 ` Raphael Jacquot
@ 2005-05-12 8:12 ` Jan-Benedict Glaw
2005-05-12 17:42 ` Timothy Ball
1 sibling, 1 reply; 5+ messages in thread
From: Jan-Benedict Glaw @ 2005-05-12 8:12 UTC (permalink / raw)
To: linux-kernel
[-- Attachment #1: Type: text/plain, Size: 697 bytes --]
On Thu, 2005-05-12 10:21:31 +0530, P.Manohar <pmanohar@lantana.cs.iitm.ernet.in> wrote:
> Instead of using the local keyboard input, I want sent the keyboard keys
> from the remote system (another PC via Ethernet) and use it as if it
> from
> the local keyboard.
Write a small server which pushed pack input via uinput into the remote
kernel.
MfG, JBG
--
Jan-Benedict Glaw jbglaw@lug-owl.de . +49-172-7608481 _ O _
"Eine Freie Meinung in einem Freien Kopf | Gegen Zensur | Gegen Krieg _ _ O
fuer einen Freien Staat voll Freier Bürger" | im Internet! | im Irak! O O O
ret = do_actions((curr | FREE_SPEECH) & ~(NEW_COPYRIGHT_LAW | DRM | TCPA));
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: remote keyboard
2005-05-12 5:04 ` Raphael Jacquot
@ 2005-05-12 14:14 ` Joel Jaeggli
0 siblings, 0 replies; 5+ messages in thread
From: Joel Jaeggli @ 2005-05-12 14:14 UTC (permalink / raw)
To: Raphael Jacquot; +Cc: P.Manohar, linux-kernel, industeqsite
On Thu, 12 May 2005, Raphael Jacquot wrote:
> P.Manohar wrote:
>>
>> " I am planning to have remote keyboard to control the operations on a
>> particular target. To explain in detail, I will have a PC with keyboard,
>> mouse etc and this PC will be connected to another PC(Remote) via
>> Ethernet.
>> Instead of using the local keyboard input, I want sent the keyboard keys
>> from the remote system (another PC via Ethernet) and use it as if it from
>> the local keyboard.
>>
>> My Plan
>> I am planning to use the Linux keyboard driver and read the keyboard
>> buffer
>> from the remote PC and send it to the target PC, and in the target PC
>> whatever the key code I have received through the Ethernet I will put it
>> into the local keyboard buffer using the Linux keyboard driver IOCTLs.
>>
>> Can anybody tell me is this acceptable "
VNC would probably be slightly more expedient.
--
--------------------------------------------------------------------------
Joel Jaeggli Unix Consulting joelja@darkwing.uoregon.edu
GPG Key Fingerprint: 5C6E 0104 BAF0 40B0 5BD3 C38B F000 35AB B67F 56B2
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: remote keyboard
2005-05-12 8:12 ` Jan-Benedict Glaw
@ 2005-05-12 17:42 ` Timothy Ball
0 siblings, 0 replies; 5+ messages in thread
From: Timothy Ball @ 2005-05-12 17:42 UTC (permalink / raw)
To: linux-kernel
[-- Attachment #1: Type: text/plain, Size: 765 bytes --]
On Thu, May 12, 2005 at 10:12:40AM +0200, Jan-Benedict Glaw wrote:
> On Thu, 2005-05-12 10:21:31 +0530, P.Manohar <pmanohar@lantana.cs.iitm.ernet.in> wrote:
> > Instead of using the local keyboard input, I want sent the keyboard keys
> > from the remote system (another PC via Ethernet) and use it as if it
> > from
> > the local keyboard.
>
> Write a small server which pushed pack input via uinput into the remote
> kernel.
>
> MfG, JBG
>
If you're using X you can use this:
http://synergy2.sourceforge.net/
works quite well cross platform.
--timball
--
GPG key available on pgpkeys.mit.edu
pub 1024D/511FBD54 2001-07-23 Timothy Lu Hu Ball <timball@tux.org>
Key fingerprint = B579 29B0 F6C8 C7AA 3840 E053 FE02 BB97 511F BD54
[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2005-05-12 17:43 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-05-12 4:51 remote keyboard P.Manohar
2005-05-12 5:04 ` Raphael Jacquot
2005-05-12 14:14 ` Joel Jaeggli
2005-05-12 8:12 ` Jan-Benedict Glaw
2005-05-12 17:42 ` Timothy Ball
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox