On 05/19/2014 05:01 PM, Eliot Miranda wrote:
On Mon, May 19, 2014 at 1:01 PM, Damien Cassou <damien.cassou@gmail.com <mailto:damien.cassou-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>> wrote:
On Mon, May 19, 2014 at 8:57 PM, Eliot Miranda <eliot.miranda-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org <mailto:eliot.miranda-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>> wrote: > Can you point me to this? I'd like to see if I can use it with my linux > installs.
it works in most of the supported Ubuntu releases: http://www.pharo-project.org/pharo-download/ubuntu
Ah, oh. Am I right to think the magic command is "sudo dpkg --add-architecture i386"? If so is there a dpkg command to check if the i386 architecture has been installed?
-- Damien Cassou http://damiencassou.seasidehosting.st
"Success is the ability to go from one failure to another without losing enthusiasm." Winston Churchill
-- best, Eliot
I am running Crunchbang #! Linux using the Jessie repositories. Crunchbang is a Debian distribution with only a number of preconfigured items, such as OpenBox, Tint2, etc. to give a nice out of the box Debian experience. The Ubuntu PPAs do not work well or could cause problems for Debian systems. From the pharo-vm GitHub page I downloaded and modified this script to work on my system. It should work on most any 64bit Debian Jessie/Testing and probably Sid/Unstable systems. I am not sure about Wheezy. https://github.com/pharo-project/pharo-vm/blob/master/scripts/setup-ubuntu.s... Download the above and edit. Or copy the below into a file and save. I called mine setup-pharo.sh. Hope this helps. Jimmie dpkg --add-architecture i386 apt-get update # INSTALL BUILD LIBRARIES ====================================================== apt-get --yes install cmake zip bash-completion ruby git xz-utils debhelper devscripts apt-get --yes install libc6-dev:i386 libasound2:i386 libasound2-dev:i386 libasound2-plugins:i386 apt-get --yes install libssl-dev:i386 libssl1.0.0:i386 libfreetype6-dev:i386 libx11-dev:i386 libsm-dev:i386 libice-dev:i386 apt-get --yes install build-essential gcc-multilib g++ # due to https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/949606 we cannot directly install libgl1-mesa-dev:i386 apt-get --yes install libgl1-mesa-dev:i386 libgl1-mesa-glx:i386 #ln -s /usr/lib/i386-linux-gnu/mesa/libGL.so /usr/lib/i386-linux-gnu/libGL.so #ln -s /usr/lib/i386-linux-gnu/mesa/libGL.so.1 /usr/lib/i386-linux-gnu/mesa/libGL.so