Hi,
Sorry for bugging you all so many times, but i still have questions. Since i created this .pdrc file, is it still necessary to modify the pd.command as well?
pd.command looks like this: #!/bin/sh
/usr/local/bin/pd -rt -path /usr/local/lib/pd/extra:/usr/local/lib/pd/pdp_pidip_osx/abstractions -lib /usr/local/lib/pd/pdp_pidip_osx/pdp
I tried this, but then pd doesn't start up because of:
/Applications/Pd.command: line 3: 2191 Bus error /usr/local/bin/pd -rt -path /Applications/Pd.command: /usr/local/lib/pd/extra:/usr/local/lib/pd/pdp_pidip_osx/abstractions: No such file or directory /Applications/Pd.command: /usr/local/lib/pd/pdp_pidip_osx/pdp: Permission denied logout [Process completed]
Rob, can you tell me how your pd.command and your .pdrc file look like?
Thanks,
Sara
Hallo, sara@x-i.net hat gesagt: // sara@x-i.net wrote:
Sorry for bugging you all so many times, but i still have questions. Since i created this .pdrc file, is it still necessary to modify the pd.command as well?
pd.command looks like this: #!/bin/sh
/usr/local/bin/pd -rt -path /usr/local/lib/pd/extra:/usr/local/lib/pd/pdp_pidip_osx/abstractions -lib /usr/local/lib/pd/pdp_pidip_osx/pdp
You seem to be unintentionally trying to run not one command, but three commands:
But 2) and 3) are no commands, that's why you get an error. (Some of these files don't even exist in your disk).
Either put all these in one line, or end the continuing lines with a backslash or even better:
Remove the last lines and just stay with these two:
#!/bin/sh /usr/local/bin/pd
Then put every option you want into the .pdrc (which is supported on your OS-X, too, so it seems).
In the .pdrc, you should make sure, that the paths you entered also do exist.
You could check this in a terminal with commands like (without $):
$ ls /usr/local/lib/pd/pdp_pidip_osx/abstractions
which should give no errors if the directory, folder or file exists.
Having non existent paths in .pdrc shouldn't harm, though but they aren't that good for the signal-to-noise ratio in the Terminal output.
Frank Barknecht _ ______footils.org__