SSH - serving programs to thin clients
Posted: 12 Sep 2010, 13:26
You will need a ssh server like openssh server. I am going to assume that you know how to set up SSH. (If you don't, ask in the help section and you will be guided)
Normally you ssh into your box with:
and provide a password and start using the CLI (Command Line Interface).
You can backup and sync your data and move and copy files - well what you can do in a CLI.
You can also start the GUI programs from the server on your clients
Simply use this code:
So if your name is Barak and your server is called "washington" and you want to start netbeans, it would look like this:
So it is possible not only to centralize your files but also your programs.
Normally you ssh into your box with:
Code: Select all
ssh you@your-serverYou can backup and sync your data and move and copy files - well what you can do in a CLI.
You can also start the GUI programs from the server on your clients
Simply use this code:
Code: Select all
ssh -f -Y you@yourserver <program_you want_to _start>So if your name is Barak and your server is called "washington" and you want to start netbeans, it would look like this:
Code: Select all
ssh -f -Y barak@washington netbeans
So it is possible not only to centralize your files but also your programs.
Anywho


Thank you ! 
