Skip to main content

Posts

Showing posts with the label Squeak

How to install Squeak 5.0 on Ubuntu 15.10 64-bit

Squeak 5.0 stable as of this writing (3/21/2016) only supports 32-bit on Linux. To get this to work on 64-bit install follow the instructions below. Download Squeak 5.0 from http://squeak.org/ Extract to location, e.g., ~/apps/ Open a console $: cd ~/Downloads $: unzip Squeak-5.0-All-in-One.zip -d ~/apps/ Get 32-bit libraries Use the Squeak built-in script to get most (not all is installed) $: cd ~/apps/Squeak-5.0-All-in-One $: Squeak-5.0-All-in-One.app/Contents/LinuxAndWindows/install-libs32 This will fail with the error message below (at least on Ubuntu 15.10) Fail with the following error message: E: Unable to locate package lib32bz2-1.0 E: Couldn't find any package by regex 'lib32bz2-1.0' E: Unable to locate package libgl1-mesa-dri-lts-utopic E: Unable to locate package libgl1-mesa-glx-lts-utopic Let us fix this by running command below: $: sudo dpkg --add-architecture i386 $: sudo apt-get update $: sudo apt install lib32z1 $: sudo apt in

View library dependencies in Linux

I was trying to get Squeak VM 5.0 running on Ubuntu 16.04 beta 1 and got the following: /home/timus/Downloads/Squeak-5.0-All-in-One/Squeak-5.0-All-in-One.app/Contents/LinuxAndWindows/Linux-i686/bin/squeak could not find display driver vm-display-X11; either:   - check that /home/timus/Downloads/Squeak-5.0-All-in-One/Squeak-5.0-All-in-One.app/Contents/LinuxAndWindows/Linux-i686/lib/squeak/5.0-3397//vm-display-X11.so exists, or   - use the '-plugins <path>' option to tell me where it is, or   - remove DISPLAY from your environment. ./squeak.sh: line 1:  8289 Aborted                 (core dumped) ./Squeak-5.0-All-in-One.app/Contents/LinuxAndWindows/squeak.sh To view library dependencies in Linux, do: $: ldd Squeak-5.0-All-in-One.app/Contents/LinuxAndWindows/Linux-i686/lib/squeak/5.0-3397/vm-display-X11 This should display library dependencies of vm-display-X11.