Difference between revisions of "Talk:Installing Pier on Ubuntu"
From Organic Design wiki
Line 2: | Line 2: | ||
Note that file contents, Pier.app, has owner:group of ''you'':''you'' [where ''you'' is your username] by default | Note that file contents, Pier.app, has owner:group of ''you'':''you'' [where ''you'' is your username] by default | ||
+ | |||
+ | == First run == | ||
+ | The instructions say: | ||
+ | : you can run the image headless by using the following bash script: | ||
+ | *I'm not exactly sure what is meant by 'headless(-ly) but I think it has something to do with Apache, in the next section. I wasn't expecting to get into installing apache. I thought the image would be a complete webserver! | ||
+ | |||
+ | {{code | #!/bin/bash | ||
+ | |||
+ | #settings | ||
+ | USER="www-data" | ||
+ | VM="/usr/bin/squeakvm" | ||
+ | VM_PARAMS="-mmap 200m -vm-sound-null -vm-display-null" | ||
+ | IMAGE="pier.image" | ||
+ | |||
+ | #start the vm | ||
+ | "$VM" $VM_PARAMS "$IMAGE" & | ||
+ | }} |
Revision as of 01:22, 11 March 2011
I think I found a better, more explicit how-to here: http://smalltalkzen.wordpress.com/2010/12/27/deployed-hello-world-installing-seaside-and-squeak-basics/
Note that file contents, Pier.app, has owner:group of you:you [where you is your username] by default
First run
The instructions say:
- you can run the image headless by using the following bash script:
- I'm not exactly sure what is meant by 'headless(-ly) but I think it has something to do with Apache, in the next section. I wasn't expecting to get into installing apache. I thought the image would be a complete webserver!