|
Remote execution over SSH - incomplete environment
A certain remote application, when launched using an SSH one-liner does not function correctly, I believe this is because the environment is incomplete when using SSH non-interactively.
The specific malfunction is that in this application (Telelogic Synergy GUI) it is not possible to open a new window by double-clicking an entity.
local:~$ ssh -YC user@remotehost 'command'
(application malfunction)
vs.
local:~$ ssh -YC user@remotehost
remotehost:~$ command
(works fine)
I have tried echo command | ssh -YC user@remotehost and this does not appear to help.
Is there a way to get SSH to execute the user profiles properly so I get a complete environment, in a non-interactive one-liner (goal is to execute via a Linux desktop launcher)?
|