PBE image fails

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

PBE image fails

Federico.Balaguer
Hello,

I hope this is the right place to ask post this problem. I apologize if that is not the case.

I am trying to run PBE-1.0 with the vm included in Pharo 1.1.1 with no-luck. I am doing this on Linux.

I created a folder PBE-1.0 for this image and copy-edited the Pharo.sh

#!/bin/sh

# path
ROOT=`dirname $0`
LINUX="$ROOT/Contents/Linux"
RESOURCES="$ROOT/Contents/Resources"
PBE="$ROOT/PBE-1.0"

# icon
gvfs-set-attribute \
        "$0" \
        "metadata::custom-icon" \
        "file://$RESOURCES/Squeak.png" \
                2> /dev/null

# execute
exec "$LINUX/squeakvm" \
        -plugins "$LINUX" \
        -encoding latin1 \
        -vm-display-X11 \
        "$PBE/PBE.image"

I am attaching the output it gives after the segmentation fault.

I also tried to build the image from a Pharo image but I also found a problem that I am reporting from inside Pharo which is cool.

Thanks! Pharo is cool stuff

Federico

PBEfail.txt (9K) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: PBE image fails

Henrik Sperre Johansen

On Mar 24, 2011, at 5:17 44PM, Federico Balaguer wrote:

> Hello,
>
> I hope this is the right place to ask post this problem. I apologize if that is not the case.
>
> I am trying to run PBE-1.0 with the vm included in Pharo 1.1.1 with no-luck. I am doing this on Linux.
>
> I created a folder PBE-1.0 for this image and copy-edited the Pharo.sh
>
> #!/bin/sh
>
> # path
> ROOT=`dirname $0`
> LINUX="$ROOT/Contents/Linux"
> RESOURCES="$ROOT/Contents/Resources"
> PBE="$ROOT/PBE-1.0"
>
> # icon
> gvfs-set-attribute \
>         "$0" \
>         "metadata::custom-icon" \
>         "file://$RESOURCES/Squeak.png" \
>                 2> /dev/null
>
> # execute
> exec "$LINUX/squeakvm" \
>         -plugins "$LINUX" \
>         -encoding latin1 \
>         -vm-display-X11 \
>         "$PBE/PBE.image"
>
> I am attaching the output it gives after the segmentation fault.
>
> I also tried to build the image from a Pharo image but I also found a problem that I am reporting from inside Pharo which is cool.
>
> Thanks! Pharo is cool stuff
>
> Federico
> <PBEfail.txt>

If the One-click 1.1.1 you downloaded came with a Cog-vm, then there are image-changes that needs to be in place for running on Cog which weren't there for 1.0.

See f.ex. issue 2579 on the tracker.

Cheers,
Henry