[PD] PD won't run on Ubuntu 18.04

2018-05-03 Thread Liam Goodacre
I can't get PD 0.48.1 to run on a fresh installation of 18.04 LTS. It compiled fine, but when I try to run PD I get: sh: 1: wish: not found I've tried "sudo apt-get install tcl" but this didn't help. It looks like others are having problems with Tcl applications as well:

Re: [PD] watchdog

2018-05-03 Thread Jack
Yes, it is good to add a "sleep 1" at the end of the while loop. ++ Jack Le 03/05/2018 à 12:59, Roman Haefeli a écrit : > On Thu, 2018-05-03 at 11:56 +0200, Jack wrote: >> If you have several instances of Pd, it is also doable to do >> something >> like : >> >> pd -open yourpatch1.pd & >>

Re: [PD] watchdog

2018-05-03 Thread Roman Haefeli
On Thu, 2018-05-03 at 11:56 +0200, Jack wrote: > If you have several instances of Pd, it is also doable to do > something > like : > > pd -open yourpatch1.pd & > PID1=$! > pd -open yourpatch2.pd & > PID2=$! > > while true > do > if [ ! -d /proc/$PID1 ] > then > pd -open

Re: [PD] watchdog

2018-05-03 Thread Raphaël Ilias
Hello, Maybe not as technical as your solution, but on a Windows machine for an art installation, i did a quick "watchdog" that checked a "stillalive" file, that was regularly modified by the pd patch. So when/if pd crashed, the file wasn't updated anymore and the script would restart it. I think

[PD] [PD-announce] MUME 2018 - BREAKING NEWS - CALL FOR LATE PAPERS

2018-05-03 Thread Kıvanç Tatar
=== MUME 2018 - BREAKING NEWS - CALL FOR LATE PAPERS === ((( MUME 2018 ))) The 6th International Workshop on Musical Metacreation http://musicalmetacreation.org June 25-26, 2018, Salamanca, Spain. === The 2018 MuMe workshop is opening up a new call for late

Re: [PD] watchdog

2018-05-03 Thread Jack
If you have several instances of Pd, it is also doable to do something like : pd -open yourpatch1.pd & PID1=$! pd -open yourpatch2.pd & PID2=$! while true do if [ ! -d /proc/$PID1 ] then pd -open yourpatch1.pd & PID1=$! fi if [ ! -d /proc/$PID2 ] then

Re: [PD] watchdog

2018-05-03 Thread Jack
Hey list ! Le 03/05/2018 à 09:42, Roman Haefeli a écrit : > On Thu, 2018-05-03 at 06:29 +0200, michael strohmann wrote: >> Hello, >> i wonder if it is possible to setup something on raspberry, so that >> the puredata-watchdog will restart pd-0.48.0 automatically? >> where could i look up the

Re: [PD] watchdog

2018-05-03 Thread Peter P.
* Roman Haefeli [2018-05-03 09:42]: > On Thu, 2018-05-03 at 06:29 +0200, michael strohmann wrote: > > Hello, > > i wonder if it is possible to setup something on raspberry, so that > > the puredata-watchdog will restart pd-0.48.0 automatically? > > where could i look up the

Re: [PD] watchdog

2018-05-03 Thread Roman Haefeli
On Thu, 2018-05-03 at 06:29 +0200, michael strohmann wrote: > Hello, > i wonder if it is possible to setup something on raspberry, so that > the puredata-watchdog will restart pd-0.48.0 automatically? > where could i look up the mechanics of this, unfortunatly i am not a > unix crack… Are you