Re: screen/remote apps

2016-01-22 Thread bruce
Thanks Rick, Thats exactly what I was trying to get to. The goal, I want to have a local process that iterates through a list of long running apps. I want to then spin up a remote instance/screen session on something like DigitalOcean/DO where I fire up the app, running it on the remote

Re: screen/remote apps

2016-01-22 Thread Rick Stevens
On 01/22/2016 12:00 PM, bruce wrote: Thanks Rick, Thats exactly what I was trying to get to. The goal, I want to have a local process that iterates through a list of long running apps. I want to then spin up a remote instance/screen session on something like DigitalOcean/DO where I fire up

Re: screen/remote apps

2016-01-22 Thread Cameron Simpson
On 22Jan2016 09:50, Markus Schönhaber wrote: Bruce, Fri, 22 Jan 2016 03:35:12 -0500: Don't top-post! ssh into the remote box and start screen there (screen has to be installed on the remote box, obviously). Use the remote screen to start the app. So

Re: screen/remote apps

2016-01-22 Thread bruce
On Fri, Jan 22, 2016 at 3:48 PM, Rick Stevens wrote: > On 01/22/2016 12:00 PM, bruce wrote: >> >> Thanks Rick, >> >> Thats exactly what I was trying to get to. >> >> The goal, I want to have a local process that iterates through a list >> of long running apps. >> >> I want

Re: screen/remote apps

2016-01-22 Thread Rick Stevens
On 01/22/2016 12:50 AM, Markus Schönhaber wrote: Bruce, Fri, 22 Jan 2016 03:35:12 -0500: Don't top-post! ssh into the remote box and start screen there (screen has to be installed on the remote box, obviously). Use the remote screen to start the app. So you're saying it's basically a 2

Re: screen/remote apps

2016-01-22 Thread Patrick O'Callaghan
On Fri, 2016-01-22 at 16:06 -0500, bruce wrote: > thanks! Thanks for not top-posting, but next time try to trim the quoted material to what you're responding to. We don't need to see the entire message all over again. That's what the list archives are for. poc -- users mailing list

Re: screen/remote apps

2016-01-22 Thread Markus Schönhaber
22.01.2016, 01:50 CET, bruce: > I can locally run screen, and then run an app. > > If I wanted to have a process where I remotely start/run an app on a > remote box (ssh) via screen, How is this accomplished? Can it be done? ssh into the remote box and start screen there (screen has to be

Re: screen/remote apps

2016-01-22 Thread bruce
Hey Markus, So you're saying it's basically a 2 step process: 1) -ssh remote box start Screen (with starting attributes) 2) --ssh remote box "ScreenCmd --name appToRun" something like this?? On Fri, Jan 22, 2016 at 3:26 AM, Markus Schönhaber wrote: >

Re: screen/remote apps

2016-01-22 Thread Markus Schönhaber
Bruce, Fri, 22 Jan 2016 03:35:12 -0500: Don't top-post! >> ssh into the remote box and start screen there (screen has to be >> installed on the remote box, obviously). Use the remote screen to start >> the app. > So you're saying it's basically a 2 step process: > > 1) -ssh remote box start

screen/remote apps

2016-01-21 Thread bruce
Hi. I can locally run screen, and then run an app. If I wanted to have a process where I remotely start/run an app on a remote box (ssh) via screen, How is this accomplished? Can it be done? Ie, I want the app on the remote instance/box to be running in a screen process within a term. This