On Sun, 8 Jan 2012, Nicolas Anquetil wrote:
This could be a topic for the pharo mailing list rather than the moose one?
(I mean is it related to not be able to run pharo?)
Anyway, I am using pharo and moose on ubuntu (since 2009, which was ubuntu
9.10 I believe, I am now on ubuntu 11.10) and I have no big problem, apart
from some minor keyboard issue like not being able to enter a quote (") for a
long time ... it is corrected now.
I am using the vm that comes with the one click image...
One possibility that comes to my mind is whether you are using 64bits or 32
bits linux.
I am on a 32 bits ...
If I just start up moose using the link Alexandre sent, everything is
fine. So it seems like a Pharo problem.
julia
nicolas
This is the script I use, it is slightly modified from the one in the one-click
image. I have a virtual link from a "Moose-default" directory to whatever the
latest version I downloaded.
---
#!/bin/sh
# path
ROOT="/home/anquetin/Documents/RMod/Tools/Moose/Moose-default"
LINUX="$ROOT/Contents/Linux"
RESOURCES="$ROOT/Contents/Resources"
if [ -z "$1" ]
then
IMAGE="$RESOURCES/Moose.image"
else
IMAGE="$1"
fi
# find the VM
test -f "$LINUX/squeakvm" && VM="$LINUX/squeakvm"
test -f "$LINUX/squeak" && VM="$LINUX/squeak"
# icon
gvfs-set-attribute \
"$0" \
"metadata::custom-icon" \
"file://$RESOURCES/Squeak.png" \
2> /dev/null
# execute
exec "$VM" \
-plugins "$LINUX" \
-encoding latin1 \
-vm-display-X11 \
"$IMAGE"
--
Nicolas Anquetil -- RMod team
INRIA Lille Nord Europe