Talk to me.
Computers are robots without arm or legs. You may want to read this first. http://www.instructables.com/id/Text-to-speech-with-linux/ You may also want to setup automatic login into C1 and C2. i.e. On C3: $ ssh-keygen -t rsa If .ssh directory is already setup and security is not a real issue just press return at all the prompts. $ cd .ssh $ scp .ssh./id_rsa.pub C1:~/. $ scp .ssh./id_rsa.pub C2:~/. If you have rights on C1 and C2, For C1 and C2: You will want to log into them and add the .pub file to the authorized_keys file. $ cd .ssh $ cat ../id_rsa.pub > authorized_keys Now you can login easily or send commands remotely without having to type in passwords for C3. You could login into C2 and C1 and type the command: $ echo this is a test | festival --tts And you would hear This is a test from the speakers assuming are turned on and the volume was loud enough. But we might not want to log into C2 or C1 so that To test the speake...