From jiriq at icloud.com Sat Nov 7 19:27:35 2020 From: jiriq at icloud.com (Jiri R.) Date: Sat, 7 Nov 2020 20:27:35 +0100 Subject: [Newbies] Headless/GUI Message-ID: <42E1CBAF-3A6D-466A-B5C3-1195367B266E@icloud.com> Hello, Is it possible to switch between headless and GUI mode back and forth? [windows machine] 1. Start Squeak in GUI, setup and run a web server. 2. Logoff and let the web server continue to run. 3. Login. Open Squeak GUI and modify the web server. 4. Goto step 2. Jiri From gettimothy at zoho.com Sun Nov 8 11:20:40 2020 From: gettimothy at zoho.com (gettimothy) Date: Sun, 08 Nov 2020 06:20:40 -0500 Subject: [Newbies] Headless/GUI Message-ID: <175a79633cc.fe917cf017811.7723612685015276804@zoho.com> Hello, Is it possible to switch between headless and GUI mode back and forth? [windows machine] 1. Start Squeak in GUI, setup and run a web server. 2. Logoff and let the web server continue to run. 3. Login. Open Squeak GUI and modify the web server. 4. Goto step 2. Jiri I second this "request". It would be nice to attach and detach from a running image. _______________________________________________ Beginners mailing list mailto:Beginners at lists.squeakfoundation.org http://lists.squeakfoundation.org/mailman/listinfo/beginners -------------- next part -------------- An HTML attachment was scrubbed... URL: From Christoph.Thiede at student.hpi.uni-potsdam.de Sun Nov 8 16:05:45 2020 From: Christoph.Thiede at student.hpi.uni-potsdam.de (Thiede, Christoph) Date: Sun, 8 Nov 2020 16:05:45 +0000 Subject: [Newbies] Headless/GUI In-Reply-To: <175a79633cc.fe917cf017811.7723612685015276804@zoho.com> References: <175a79633cc.fe917cf017811.7723612685015276804@zoho.com> Message-ID: <7c98171ec5ed463c803682caa4d1bdc9@student.hpi.uni-potsdam.de> Could this be possible by starting the VM headless and using the HostWindowPlugin to create windows dynamically? It's just a wild guess, I have never used the HostWindowPlugin before. :D Best, Christoph ________________________________ Von: Beginners im Auftrag von gettimothy Gesendet: Sonntag, 8. November 2020 12:20:40 An: beginners Betreff: [Newbies] Headless/GUI Hello, Is it possible to switch between headless and GUI mode back and forth? [windows machine] 1. Start Squeak in GUI, setup and run a web server. 2. Logoff and let the web server continue to run. 3. Login. Open Squeak GUI and modify the web server. 4. Goto step 2. Jiri I second this "request". It would be nice to attach and detach from a running image. _______________________________________________ Beginners mailing list Beginners at lists.squeakfoundation.org http://lists.squeakfoundation.org/mailman/listinfo/beginners -------------- next part -------------- An HTML attachment was scrubbed... URL: From gettimothy at zoho.com Mon Nov 9 20:05:52 2020 From: gettimothy at zoho.com (gettimothy) Date: Mon, 09 Nov 2020 15:05:52 -0500 Subject: [Newbies] Headless/GUI In-Reply-To: <7c98171ec5ed463c803682caa4d1bdc9@student.hpi.uni-potsdam.de> References: <175a79633cc.fe917cf017811.7723612685015276804@zoho.com> <7c98171ec5ed463c803682caa4d1bdc9@student.hpi.uni-potsdam.de> Message-ID: <175ae9d6836.12306626c36391.5377638158663096108@zoho.com> It would be a good place to start for a Squeak X-Server/Client/WindowManager  that I would like to develop "someday" ---- On Sun, 08 Nov 2020 11:05:45 -0500 Thiede, Christoph wrote ---- Could this be possible by starting the VM headless and using the HostWindowPlugin to create windows dynamically? It's just a wild guess, I have never used the HostWindowPlugin before. :D Best, Christoph Von: Beginners im Auftrag von gettimothy Gesendet: Sonntag, 8. November 2020 12:20:40 An: beginners Betreff: [Newbies] Headless/GUI   Hello, Is it possible to switch between headless and GUI mode back and forth? [windows machine] 1. Start Squeak in GUI, setup and run a web server. 2. Logoff and let the web server continue to run. 3. Login. Open Squeak GUI and modify the web server. 4. Goto step 2. Jiri I second this "request". It would be nice to attach and detach from a running image. _______________________________________________ Beginners mailing list mailto:Beginners at lists.squeakfoundation.org http://lists.squeakfoundation.org/mailman/listinfo/beginners _______________________________________________ Beginners mailing list Beginners at lists.squeakfoundation.org http://lists.squeakfoundation.org/mailman/listinfo/beginners -------------- next part -------------- An HTML attachment was scrubbed... URL: From lewis at mail.msen.com Tue Nov 10 02:16:28 2020 From: lewis at mail.msen.com (David T. Lewis) Date: Mon, 9 Nov 2020 21:16:28 -0500 Subject: [Newbies] Headless/GUI In-Reply-To: <42E1CBAF-3A6D-466A-B5C3-1195367B266E@icloud.com> References: <42E1CBAF-3A6D-466A-B5C3-1195367B266E@icloud.com> Message-ID: <20201110021628.GA32238@shell.msen.com> On Sat, Nov 07, 2020 at 08:27:35PM +0100, Jiri R. wrote: > Hello, > > Is it possible to switch between headless and GUI mode back and forth? > > [windows machine] > 1. Start Squeak in GUI, setup and run a web server. > 2. Logoff and let the web server continue to run. > 3. Login. Open Squeak GUI and modify the web server. > 4. Goto step 2. > > Jiri > For Windows I do not have a solution, but for Unix/Linux you can load the OSProcess package and do things like this: OSProcess thisOSProcess decapitate. (Delay forSeconds: 2) wait. OSProcess thisOSProcess recapitate. Dave