Hello EZ,
Sometimes I have these mind twists.
Bear with me here.
Say you need to have a private conversation with 1 or even more people.
You dont want to rely on e-mail , IRC or any messenger for obvious reasons.
Im not going into the downsides of the previously mentioned ways of communication for this would be out of scope.
Requirements;
SSH-server
SSH-client
screen (unix tool)
Need help installing just ask.
Oke so I have an SSH server running on my local host.
Also Ill open an empty terminal.
I will be logged in as user: peter
Type the following command:
screen -S chat
Wait..
On my other machine ill be opening a new terminal.
SSH into peter's machine.
ssh peter@192.168.0.5
Enter password or better yet use key pairs.
Make sure you are logged in as user: peter
If not use
su peter
Than
screen -x chat
Now both the the machines are looking at the exact same terminal.
One can type something and both will see whats happening character by character.
It might not be very practical but it is pretty darn secure and especially private.
A downside is that it requires previous communication also having someone else logged into your terminal might be scary.
One solution would be using some bash scripts and running as a 0 priv user.
Any questions?
(Im not very good at writing tutorials but I hope its understandable)
Cheers,
Proxx
*Edit*
Using a terminal editor such as a nano or vi will make this a lot easier.
Also if both parties agree on ending their sentence with a specific character the other person would know when he/she is finished typing.
Its dirty and hackish but it works
*Edit2*
Oke I probably figured out the problem.
Having 2 people type in the same line is totally crap and I probably have a solution for this.
Ill update when I figured out the details.