Running on Ubuntu?
Hey guys, just wanted to show others our cool stuff.. but faced strange problem: ~/projects/pharo$ ./pharo-vm/pharo pharo.image could not find display driver vm-display-X11; either: - check that /home/sig/projects/pharo/pharo-vm//vm-display-X11.so exists, or - use the '-plugins <path>' option to tell me where it is, or - remove DISPLAY from your environment. Aborted (core dumped) i tried to download manually, tried to use command-line install script .. but same result: - it doesn't seem to want to pick up the x11 driver and so, fails to start.. needless to say, that driver exists, lies there right at the location of vm binary etc etc yadda yadda.. anyone knows what going on? -- Best regards, Igor Stasenko.
2016-11-22 11:07 GMT+01:00 Igor Stasenko <siguctua@gmail.com>:
Hey guys,
just wanted to show others our cool stuff.. but faced strange problem:
~/projects/pharo$ ./pharo-vm/pharo pharo.image could not find display driver vm-display-X11; either: - check that /home/sig/projects/pharo/pharo-vm//vm-display-X11.so exists, or - use the '-plugins <path>' option to tell me where it is, or - remove DISPLAY from your environment. Aborted (core dumped)
i tried to download manually, tried to use command-line install script .. but same result: - it doesn't seem to want to pick up the x11 driver and so, fails to start.. needless to say, that driver exists, lies there right at the location of vm binary etc etc yadda yadda..
anyone knows what going on?
Ubuntu 64 bit Linux ? If so, you need to make sure to have all 32Bit libs.
-- Best regards, Igor Stasenko.
On 22 November 2016 at 12:11, Nicolai Hess <nicolaihess@gmail.com> wrote:
2016-11-22 11:07 GMT+01:00 Igor Stasenko <siguctua@gmail.com>:
Hey guys,
just wanted to show others our cool stuff.. but faced strange problem:
~/projects/pharo$ ./pharo-vm/pharo pharo.image could not find display driver vm-display-X11; either: - check that /home/sig/projects/pharo/pharo-vm//vm-display-X11.so exists, or - use the '-plugins <path>' option to tell me where it is, or - remove DISPLAY from your environment. Aborted (core dumped)
i tried to download manually, tried to use command-line install script .. but same result: - it doesn't seem to want to pick up the x11 driver and so, fails to start.. needless to say, that driver exists, lies there right at the location of vm binary etc etc yadda yadda..
anyone knows what going on?
Ubuntu 64 bit Linux ? If so, you need to make sure to have all 32Bit libs.
aha.. can you remind me how to install them quickly?
-- Best regards, Igor Stasenko.
-- Best regards, Igor Stasenko.
2016-11-22 11:13 GMT+01:00 Igor Stasenko <siguctua@gmail.com>:
On 22 November 2016 at 12:11, Nicolai Hess <nicolaihess@gmail.com> wrote:
2016-11-22 11:07 GMT+01:00 Igor Stasenko <siguctua@gmail.com>:
Hey guys,
just wanted to show others our cool stuff.. but faced strange problem:
~/projects/pharo$ ./pharo-vm/pharo pharo.image could not find display driver vm-display-X11; either: - check that /home/sig/projects/pharo/pharo-vm//vm-display-X11.so exists, or - use the '-plugins <path>' option to tell me where it is, or - remove DISPLAY from your environment. Aborted (core dumped)
i tried to download manually, tried to use command-line install script .. but same result: - it doesn't seem to want to pick up the x11 driver and so, fails to start.. needless to say, that driver exists, lies there right at the location of vm binary etc etc yadda yadda..
anyone knows what going on?
Ubuntu 64 bit Linux ? If so, you need to make sure to have all 32Bit libs.
aha.. can you remind me how to install them quickly?
I don't know if this instructions still work: http://pharo.org/gnu-linux-installation#64-bit-System-Setup
-- Best regards, Igor Stasenko.
-- Best regards, Igor Stasenko.
(this is what I use for headless) sudo dpkg --add-architecture i386 sudo apt-get update sudo apt-get install libc6:i386 sudo apt-get install libssl1.0.0:i386 sudo apt-get install libfreetype6:i386 (you might need more for full UI) with ldd you can find unresolved dynamic libs
On 22 Nov 2016, at 11:13, Igor Stasenko <siguctua@gmail.com> wrote:
On 22 November 2016 at 12:11, Nicolai Hess <nicolaihess@gmail.com> wrote:
2016-11-22 11:07 GMT+01:00 Igor Stasenko <siguctua@gmail.com>: Hey guys,
just wanted to show others our cool stuff.. but faced strange problem:
~/projects/pharo$ ./pharo-vm/pharo pharo.image could not find display driver vm-display-X11; either: - check that /home/sig/projects/pharo/pharo-vm//vm-display-X11.so exists, or - use the '-plugins <path>' option to tell me where it is, or - remove DISPLAY from your environment. Aborted (core dumped)
i tried to download manually, tried to use command-line install script .. but same result: - it doesn't seem to want to pick up the x11 driver and so, fails to start.. needless to say, that driver exists, lies there right at the location of vm binary etc etc yadda yadda..
anyone knows what going on?
Ubuntu 64 bit Linux ? If so, you need to make sure to have all 32Bit libs.
aha.. can you remind me how to install them quickly?
-- Best regards, Igor Stasenko.
-- Best regards, Igor Stasenko.
ldd vm-display-X11 linux-gate.so.1 => (0xf77fd000) libpthread.so.0 => /lib/i386-linux-gnu/libpthread.so.0 (0xf7799000) libGL.so.1 => not found libX11.so.6 => /usr/lib/i386-linux-gnu/libX11.so.6 (0xf7664000) libc.so.6 => /lib/i386-linux-gnu/libc.so.6 (0xf74b5000) /lib/ld-linux.so.2 (0x5664e000) libxcb.so.1 => /usr/lib/i386-linux-gnu/libxcb.so.1 (0xf7493000) libdl.so.2 => /lib/i386-linux-gnu/libdl.so.2 (0xf748e000) libXau.so.6 => /usr/lib/i386-linux-gnu/libXau.so.6 (0xf748a000) libXdmcp.so.6 => /usr/lib/i386-linux-gnu/libXdmcp.so.6 (0xf7482000) seems like i have everyting already except libgl... any ideas what package providing it? On 22 November 2016 at 12:17, Sven Van Caekenberghe <sven@stfx.eu> wrote:
(this is what I use for headless)
sudo dpkg --add-architecture i386 sudo apt-get update sudo apt-get install libc6:i386 sudo apt-get install libssl1.0.0:i386 sudo apt-get install libfreetype6:i386
(you might need more for full UI)
with ldd you can find unresolved dynamic libs
On 22 Nov 2016, at 11:13, Igor Stasenko <siguctua@gmail.com> wrote:
On 22 November 2016 at 12:11, Nicolai Hess <nicolaihess@gmail.com> wrote:
2016-11-22 11:07 GMT+01:00 Igor Stasenko <siguctua@gmail.com>: Hey guys,
just wanted to show others our cool stuff.. but faced strange problem:
~/projects/pharo$ ./pharo-vm/pharo pharo.image could not find display driver vm-display-X11; either: - check that /home/sig/projects/pharo/pharo-vm//vm-display-X11.so exists, or - use the '-plugins <path>' option to tell me where it is, or - remove DISPLAY from your environment. Aborted (core dumped)
i tried to download manually, tried to use command-line install script .. but same result: - it doesn't seem to want to pick up the x11 driver and so, fails to start.. needless to say, that driver exists, lies there right at the location of vm binary etc etc yadda yadda..
anyone knows what going on?
Ubuntu 64 bit Linux ? If so, you need to make sure to have all 32Bit libs.
aha.. can you remind me how to install them quickly?
-- Best regards, Igor Stasenko.
-- Best regards, Igor Stasenko.
-- Best regards, Igor Stasenko.
I don't know, maybe sudo apt-get install libgl1-mesa-glx:i386 ?
On 22 Nov 2016, at 11:19, Igor Stasenko <siguctua@gmail.com> wrote:
ldd vm-display-X11 linux-gate.so.1 => (0xf77fd000) libpthread.so.0 => /lib/i386-linux-gnu/libpthread.so.0 (0xf7799000) libGL.so.1 => not found libX11.so.6 => /usr/lib/i386-linux-gnu/libX11.so.6 (0xf7664000) libc.so.6 => /lib/i386-linux-gnu/libc.so.6 (0xf74b5000) /lib/ld-linux.so.2 (0x5664e000) libxcb.so.1 => /usr/lib/i386-linux-gnu/libxcb.so.1 (0xf7493000) libdl.so.2 => /lib/i386-linux-gnu/libdl.so.2 (0xf748e000) libXau.so.6 => /usr/lib/i386-linux-gnu/libXau.so.6 (0xf748a000) libXdmcp.so.6 => /usr/lib/i386-linux-gnu/libXdmcp.so.6 (0xf7482000)
seems like i have everyting already except libgl... any ideas what package providing it?
On 22 November 2016 at 12:17, Sven Van Caekenberghe <sven@stfx.eu> wrote: (this is what I use for headless)
sudo dpkg --add-architecture i386 sudo apt-get update sudo apt-get install libc6:i386 sudo apt-get install libssl1.0.0:i386 sudo apt-get install libfreetype6:i386
(you might need more for full UI)
with ldd you can find unresolved dynamic libs
On 22 Nov 2016, at 11:13, Igor Stasenko <siguctua@gmail.com> wrote:
On 22 November 2016 at 12:11, Nicolai Hess <nicolaihess@gmail.com> wrote:
2016-11-22 11:07 GMT+01:00 Igor Stasenko <siguctua@gmail.com>: Hey guys,
just wanted to show others our cool stuff.. but faced strange problem:
~/projects/pharo$ ./pharo-vm/pharo pharo.image could not find display driver vm-display-X11; either: - check that /home/sig/projects/pharo/pharo-vm//vm-display-X11.so exists, or - use the '-plugins <path>' option to tell me where it is, or - remove DISPLAY from your environment. Aborted (core dumped)
i tried to download manually, tried to use command-line install script .. but same result: - it doesn't seem to want to pick up the x11 driver and so, fails to start.. needless to say, that driver exists, lies there right at the location of vm binary etc etc yadda yadda..
anyone knows what going on?
Ubuntu 64 bit Linux ? If so, you need to make sure to have all 32Bit libs.
aha.. can you remind me how to install them quickly?
-- Best regards, Igor Stasenko.
-- Best regards, Igor Stasenko.
-- Best regards, Igor Stasenko.
On Tue, Nov 22, 2016 at 6:19 PM, Igor Stasenko <siguctua@gmail.com> wrote:
ldd vm-display-X11 linux-gate.so.1 => (0xf77fd000) libpthread.so.0 => /lib/i386-linux-gnu/libpthread.so.0 (0xf7799000) libGL.so.1 => not found libX11.so.6 => /usr/lib/i386-linux-gnu/libX11.so.6 (0xf7664000) libc.so.6 => /lib/i386-linux-gnu/libc.so.6 (0xf74b5000) /lib/ld-linux.so.2 (0x5664e000) libxcb.so.1 => /usr/lib/i386-linux-gnu/libxcb.so.1 (0xf7493000) libdl.so.2 => /lib/i386-linux-gnu/libdl.so.2 (0xf748e000) libXau.so.6 => /usr/lib/i386-linux-gnu/libXau.so.6 (0xf748a000) libXdmcp.so.6 => /usr/lib/i386-linux-gnu/libXdmcp.so.6 (0xf7482000)
seems like i have everyting already except libgl... any ideas what package providing it?
maybe https://www.codeweavers.com/support/wiki/Diag/MissingLibGL https://ubuntuforums.org/showthread.php?t=2233005 https://linuxconfig.org/installation-of-steam-client-on-debian-jessie-8-linu... https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/949606 cheers -ben
On Tue, Nov 22, 2016 at 12:19:30PM +0200, Igor Stasenko wrote:
ldd vm-display-X11 linux-gate.so.1 => (0xf77fd000) libpthread.so.0 => /lib/i386-linux-gnu/libpthread.so.0 (0xf7799000) libGL.so.1 => not found libX11.so.6 => /usr/lib/i386-linux-gnu/libX11.so.6 (0xf7664000) libc.so.6 => /lib/i386-linux-gnu/libc.so.6 (0xf74b5000) /lib/ld-linux.so.2 (0x5664e000) libxcb.so.1 => /usr/lib/i386-linux-gnu/libxcb.so.1 (0xf7493000) libdl.so.2 => /lib/i386-linux-gnu/libdl.so.2 (0xf748e000) libXau.so.6 => /usr/lib/i386-linux-gnu/libXau.so.6 (0xf748a000) libXdmcp.so.6 => /usr/lib/i386-linux-gnu/libXdmcp.so.6 (0xf7482000)
seems like i have everyting already except libgl... any ideas what package providing it?
After some trial and error, this is what I ended up installing on my Ubuntu system: sudo apt-get install libgl1-mesa-dri-lts-utopic:i386 sudo apt-get install libgl1-mesa-glx-lts-utopic:i386 sudo apt-get install mesa-common-dev Dave
On 22 November 2016 at 15:06, David T. Lewis <lewis@mail.msen.com> wrote:
On Tue, Nov 22, 2016 at 12:19:30PM +0200, Igor Stasenko wrote:
ldd vm-display-X11 linux-gate.so.1 => (0xf77fd000) libpthread.so.0 => /lib/i386-linux-gnu/libpthread.so.0 (0xf7799000) libGL.so.1 => not found libX11.so.6 => /usr/lib/i386-linux-gnu/libX11.so.6 (0xf7664000) libc.so.6 => /lib/i386-linux-gnu/libc.so.6 (0xf74b5000) /lib/ld-linux.so.2 (0x5664e000) libxcb.so.1 => /usr/lib/i386-linux-gnu/libxcb.so.1 (0xf7493000) libdl.so.2 => /lib/i386-linux-gnu/libdl.so.2 (0xf748e000) libXau.so.6 => /usr/lib/i386-linux-gnu/libXau.so.6 (0xf748a000) libXdmcp.so.6 => /usr/lib/i386-linux-gnu/libXdmcp.so.6 (0xf7482000)
seems like i have everyting already except libgl... any ideas what package providing it?
After some trial and error, this is what I ended up installing on my Ubuntu system:
sudo apt-get install libgl1-mesa-dri-lts-utopic:i386 sudo apt-get install libgl1-mesa-glx-lts-utopic:i386 sudo apt-get install mesa-common-dev
Dave
meh.. sudo apt-get install libgl1-mesa-dri-lts-utopic:i386 Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation: The following packages have unmet dependencies: qtdeclarative5-qtfeedback-plugin : Depends: libqt5feedback5 but it is not going to be installed unity-control-center : Depends: libcheese-gtk23 (>= 3.4.0) but it is not going to be installed Depends: libcheese7 (>= 3.0.1) but it is not going to be installed E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages. :( -- Best regards, Igor Stasenko.
On 11/22/2016 08:00 AM, Igor Stasenko wrote:
On 22 November 2016 at 15:06, David T. Lewis <lewis@mail.msen.com <mailto:lewis@mail.msen.com>> wrote:
On Tue, Nov 22, 2016 at 12:19:30PM +0200, Igor Stasenko wrote: > ldd vm-display-X11 > linux-gate.so.1 => (0xf77fd000) > libpthread.so.0 => /lib/i386-linux-gnu/libpthread.so.0 (0xf7799000) > libGL.so.1 => not found > libX11.so.6 => /usr/lib/i386-linux-gnu/libX11.so.6 (0xf7664000) > libc.so.6 => /lib/i386-linux-gnu/libc.so.6 (0xf74b5000) > /lib/ld-linux.so.2 (0x5664e000) > libxcb.so.1 => /usr/lib/i386-linux-gnu/libxcb.so.1 (0xf7493000) > libdl.so.2 => /lib/i386-linux-gnu/libdl.so.2 (0xf748e000) > libXau.so.6 => /usr/lib/i386-linux-gnu/libXau.so.6 (0xf748a000) > libXdmcp.so.6 => /usr/lib/i386-linux-gnu/libXdmcp.so.6 (0xf7482000) > > > seems like i have everyting already except libgl... > any ideas what package providing it? >
After some trial and error, this is what I ended up installing on my Ubuntu system:
sudo apt-get install libgl1-mesa-dri-lts-utopic:i386 sudo apt-get install libgl1-mesa-glx-lts-utopic:i386 sudo apt-get install mesa-common-dev
Dave
meh..
sudo apt-get install libgl1-mesa-dri-lts-utopic:i386 Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation:
The following packages have unmet dependencies: qtdeclarative5-qtfeedback-plugin : Depends: libqt5feedback5 but it is not going to be installed unity-control-center : Depends: libcheese-gtk23 (>= 3.4.0) but it is not going to be installed Depends: libcheese7 (>= 3.0.1) but it is not going to be installed E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
You might try them without the -lts-utopic. I don't have those, but I do have libgl1-mesa-dri(/glx). I don't know what the exact package that Pharo needs is, but after I installed wine (to run VAST), I was able to run Pharo so you could look at what packages wine would install. One or more of them is likely what you need to run. John Brant
Igor, I have this script: https://gist.github.com/ThierryGoubier/3dbef94a959f4f8acb19 Now, I would suggest, if you don't have any need FFI-related (no Athens, Roassal, bloc, etc...), use the 64 bits version: runs without installing anything on a large variety of Linuxes. Thierry 2016-11-22 15:00 GMT+01:00 Igor Stasenko <siguctua@gmail.com>:
On 22 November 2016 at 15:06, David T. Lewis <lewis@mail.msen.com> wrote:
On Tue, Nov 22, 2016 at 12:19:30PM +0200, Igor Stasenko wrote:
ldd vm-display-X11 linux-gate.so.1 => (0xf77fd000) libpthread.so.0 => /lib/i386-linux-gnu/libpthread.so.0 (0xf7799000) libGL.so.1 => not found libX11.so.6 => /usr/lib/i386-linux-gnu/libX11.so.6 (0xf7664000) libc.so.6 => /lib/i386-linux-gnu/libc.so.6 (0xf74b5000) /lib/ld-linux.so.2 (0x5664e000) libxcb.so.1 => /usr/lib/i386-linux-gnu/libxcb.so.1 (0xf7493000) libdl.so.2 => /lib/i386-linux-gnu/libdl.so.2 (0xf748e000) libXau.so.6 => /usr/lib/i386-linux-gnu/libXau.so.6 (0xf748a000) libXdmcp.so.6 => /usr/lib/i386-linux-gnu/libXdmcp.so.6 (0xf7482000)
seems like i have everyting already except libgl... any ideas what package providing it?
After some trial and error, this is what I ended up installing on my Ubuntu system:
sudo apt-get install libgl1-mesa-dri-lts-utopic:i386 sudo apt-get install libgl1-mesa-glx-lts-utopic:i386 sudo apt-get install mesa-common-dev
Dave
meh..
sudo apt-get install libgl1-mesa-dri-lts-utopic:i386 Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation:
The following packages have unmet dependencies: qtdeclarative5-qtfeedback-plugin : Depends: libqt5feedback5 but it is not going to be installed unity-control-center : Depends: libcheese-gtk23 (>= 3.4.0) but it is not going to be installed Depends: libcheese7 (>= 3.0.1) but it is not going to be installed E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
:(
-- Best regards, Igor Stasenko.
On 22 November 2016 at 16:24, Thierry Goubier <thierry.goubier@gmail.com> wrote:
Igor,
I have this script:
https://gist.github.com/ThierryGoubier/3dbef94a959f4f8acb19
Now, I would suggest, if you don't have any need FFI-related (no Athens, Roassal, bloc, etc...), use the 64 bits version: runs without installing anything on a large variety of Linuxes.
nvm, it seems i installed it somehow: - installed aptitude - pressed something there on required lib and it done something (uninstalled shomething/shuffled something/installed something) and after that i were able to run apt get install libgl1-mesa-glx:i386 without problems :)
Thierry
2016-11-22 15:00 GMT+01:00 Igor Stasenko <siguctua@gmail.com>:
On 22 November 2016 at 15:06, David T. Lewis <lewis@mail.msen.com> wrote:
On Tue, Nov 22, 2016 at 12:19:30PM +0200, Igor Stasenko wrote:
ldd vm-display-X11 linux-gate.so.1 => (0xf77fd000) libpthread.so.0 => /lib/i386-linux-gnu/libpthread.so.0 (0xf7799000) libGL.so.1 => not found libX11.so.6 => /usr/lib/i386-linux-gnu/libX11.so.6 (0xf7664000) libc.so.6 => /lib/i386-linux-gnu/libc.so.6 (0xf74b5000) /lib/ld-linux.so.2 (0x5664e000) libxcb.so.1 => /usr/lib/i386-linux-gnu/libxcb.so.1 (0xf7493000) libdl.so.2 => /lib/i386-linux-gnu/libdl.so.2 (0xf748e000) libXau.so.6 => /usr/lib/i386-linux-gnu/libXau.so.6 (0xf748a000) libXdmcp.so.6 => /usr/lib/i386-linux-gnu/libXdmcp.so.6 (0xf7482000)
seems like i have everyting already except libgl... any ideas what package providing it?
After some trial and error, this is what I ended up installing on my Ubuntu system:
sudo apt-get install libgl1-mesa-dri-lts-utopic:i386 sudo apt-get install libgl1-mesa-glx-lts-utopic:i386 sudo apt-get install mesa-common-dev
Dave
meh..
sudo apt-get install libgl1-mesa-dri-lts-utopic:i386 Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation:
The following packages have unmet dependencies: qtdeclarative5-qtfeedback-plugin : Depends: libqt5feedback5 but it is not going to be installed unity-control-center : Depends: libcheese-gtk23 (>= 3.4.0) but it is not going to be installed Depends: libcheese7 (>= 3.0.1) but it is not going to be installed E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
:(
-- Best regards, Igor Stasenko.
-- Best regards, Igor Stasenko.
VM now runs, thanks everyone for your attention.. i wish it would install (or report missing requirements) correctly by itself On 22 November 2016 at 16:30, Igor Stasenko <siguctua@gmail.com> wrote:
On 22 November 2016 at 16:24, Thierry Goubier <thierry.goubier@gmail.com> wrote:
Igor,
I have this script:
https://gist.github.com/ThierryGoubier/3dbef94a959f4f8acb19
Now, I would suggest, if you don't have any need FFI-related (no Athens, Roassal, bloc, etc...), use the 64 bits version: runs without installing anything on a large variety of Linuxes.
nvm, it seems i installed it somehow: - installed aptitude - pressed something there on required lib and it done something (uninstalled shomething/shuffled something/installed something) and after that i were able to run apt get install libgl1-mesa-glx:i386 without problems :)
Thierry
2016-11-22 15:00 GMT+01:00 Igor Stasenko <siguctua@gmail.com>:
On 22 November 2016 at 15:06, David T. Lewis <lewis@mail.msen.com> wrote:
On Tue, Nov 22, 2016 at 12:19:30PM +0200, Igor Stasenko wrote:
ldd vm-display-X11 linux-gate.so.1 => (0xf77fd000) libpthread.so.0 => /lib/i386-linux-gnu/libpthread.so.0 (0xf7799000) libGL.so.1 => not found libX11.so.6 => /usr/lib/i386-linux-gnu/libX11.so.6 (0xf7664000) libc.so.6 => /lib/i386-linux-gnu/libc.so.6 (0xf74b5000) /lib/ld-linux.so.2 (0x5664e000) libxcb.so.1 => /usr/lib/i386-linux-gnu/libxcb.so.1 (0xf7493000) libdl.so.2 => /lib/i386-linux-gnu/libdl.so.2 (0xf748e000) libXau.so.6 => /usr/lib/i386-linux-gnu/libXau.so.6 (0xf748a000) libXdmcp.so.6 => /usr/lib/i386-linux-gnu/libXdmcp.so.6 (0xf7482000)
seems like i have everyting already except libgl... any ideas what package providing it?
After some trial and error, this is what I ended up installing on my Ubuntu system:
sudo apt-get install libgl1-mesa-dri-lts-utopic:i386 sudo apt-get install libgl1-mesa-glx-lts-utopic:i386 sudo apt-get install mesa-common-dev
Dave
meh..
sudo apt-get install libgl1-mesa-dri-lts-utopic:i386 Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation:
The following packages have unmet dependencies: qtdeclarative5-qtfeedback-plugin : Depends: libqt5feedback5 but it is not going to be installed unity-control-center : Depends: libcheese-gtk23 (>= 3.4.0) but it is not going to be installed Depends: libcheese7 (>= 3.0.1) but it is not going to be installed E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
:(
-- Best regards, Igor Stasenko.
-- Best regards, Igor Stasenko.
-- Best regards, Igor Stasenko.
2016-11-22 15:33 GMT+01:00 Igor Stasenko <siguctua@gmail.com>:
VM now runs, thanks everyone for your attention.. i wish it would install (or report missing requirements) correctly by itself
We would need a 0install(*) script for that. Thierry (*) http://0install.net/
On 22 November 2016 at 16:30, Igor Stasenko <siguctua@gmail.com> wrote:
On 22 November 2016 at 16:24, Thierry Goubier <thierry.goubier@gmail.com> wrote:
Igor,
I have this script:
https://gist.github.com/ThierryGoubier/3dbef94a959f4f8acb19
Now, I would suggest, if you don't have any need FFI-related (no Athens, Roassal, bloc, etc...), use the 64 bits version: runs without installing anything on a large variety of Linuxes.
nvm, it seems i installed it somehow: - installed aptitude - pressed something there on required lib and it done something (uninstalled shomething/shuffled something/installed something) and after that i were able to run apt get install libgl1-mesa-glx:i386 without problems :)
Thierry
2016-11-22 15:00 GMT+01:00 Igor Stasenko <siguctua@gmail.com>:
On 22 November 2016 at 15:06, David T. Lewis <lewis@mail.msen.com> wrote:
On Tue, Nov 22, 2016 at 12:19:30PM +0200, Igor Stasenko wrote:
ldd vm-display-X11 linux-gate.so.1 => (0xf77fd000) libpthread.so.0 => /lib/i386-linux-gnu/libpthread.so.0 (0xf7799000) libGL.so.1 => not found libX11.so.6 => /usr/lib/i386-linux-gnu/libX11.so.6 (0xf7664000) libc.so.6 => /lib/i386-linux-gnu/libc.so.6 (0xf74b5000) /lib/ld-linux.so.2 (0x5664e000) libxcb.so.1 => /usr/lib/i386-linux-gnu/libxcb.so.1 (0xf7493000) libdl.so.2 => /lib/i386-linux-gnu/libdl.so.2 (0xf748e000) libXau.so.6 => /usr/lib/i386-linux-gnu/libXau.so.6 (0xf748a000) libXdmcp.so.6 => /usr/lib/i386-linux-gnu/libXdmcp.so.6 (0xf7482000)
seems like i have everyting already except libgl... any ideas what package providing it?
After some trial and error, this is what I ended up installing on my Ubuntu system:
sudo apt-get install libgl1-mesa-dri-lts-utopic:i386 sudo apt-get install libgl1-mesa-glx-lts-utopic:i386 sudo apt-get install mesa-common-dev
Dave
meh..
sudo apt-get install libgl1-mesa-dri-lts-utopic:i386 Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation:
The following packages have unmet dependencies: qtdeclarative5-qtfeedback-plugin : Depends: libqt5feedback5 but it is not going to be installed unity-control-center : Depends: libcheese-gtk23 (>= 3.4.0) but it is not going to be installed Depends: libcheese7 (>= 3.0.1) but it is not going to be installed E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
:(
-- Best regards, Igor Stasenko.
-- Best regards, Igor Stasenko.
-- Best regards, Igor Stasenko.
On 22 Nov 2016, at 15:37, Thierry Goubier <thierry.goubier@gmail.com> wrote:
2016-11-22 15:33 GMT+01:00 Igor Stasenko <siguctua@gmail.com>: VM now runs, thanks everyone for your attention.. i wish it would install (or report missing requirements) correctly by itself
We would need a 0install(*) script for that.
That would indeed be very nice !
Thierry
On 22 November 2016 at 16:30, Igor Stasenko <siguctua@gmail.com> wrote:
On 22 November 2016 at 16:24, Thierry Goubier <thierry.goubier@gmail.com> wrote: Igor,
I have this script:
https://gist.github.com/ThierryGoubier/3dbef94a959f4f8acb19
Now, I would suggest, if you don't have any need FFI-related (no Athens, Roassal, bloc, etc...), use the 64 bits version: runs without installing anything on a large variety of Linuxes.
nvm, it seems i installed it somehow: - installed aptitude - pressed something there on required lib and it done something (uninstalled shomething/shuffled something/installed something) and after that i were able to run apt get install libgl1-mesa-glx:i386 without problems :)
Thierry
2016-11-22 15:00 GMT+01:00 Igor Stasenko <siguctua@gmail.com>:
On 22 November 2016 at 15:06, David T. Lewis <lewis@mail.msen.com> wrote: On Tue, Nov 22, 2016 at 12:19:30PM +0200, Igor Stasenko wrote:
ldd vm-display-X11 linux-gate.so.1 => (0xf77fd000) libpthread.so.0 => /lib/i386-linux-gnu/libpthread.so.0 (0xf7799000) libGL.so.1 => not found libX11.so.6 => /usr/lib/i386-linux-gnu/libX11.so.6 (0xf7664000) libc.so.6 => /lib/i386-linux-gnu/libc.so.6 (0xf74b5000) /lib/ld-linux.so.2 (0x5664e000) libxcb.so.1 => /usr/lib/i386-linux-gnu/libxcb.so.1 (0xf7493000) libdl.so.2 => /lib/i386-linux-gnu/libdl.so.2 (0xf748e000) libXau.so.6 => /usr/lib/i386-linux-gnu/libXau.so.6 (0xf748a000) libXdmcp.so.6 => /usr/lib/i386-linux-gnu/libXdmcp.so.6 (0xf7482000)
seems like i have everyting already except libgl... any ideas what package providing it?
After some trial and error, this is what I ended up installing on my Ubuntu system:
sudo apt-get install libgl1-mesa-dri-lts-utopic:i386 sudo apt-get install libgl1-mesa-glx-lts-utopic:i386 sudo apt-get install mesa-common-dev
Dave
meh..
sudo apt-get install libgl1-mesa-dri-lts-utopic:i386 Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation:
The following packages have unmet dependencies: qtdeclarative5-qtfeedback-plugin : Depends: libqt5feedback5 but it is not going to be installed unity-control-center : Depends: libcheese-gtk23 (>= 3.4.0) but it is not going to be installed Depends: libcheese7 (>= 3.0.1) but it is not going to be installed E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
:(
-- Best regards, Igor Stasenko.
-- Best regards, Igor Stasenko.
-- Best regards, Igor Stasenko.
On 22 Nov 2016, at 15:37, Thierry Goubier <thierry.goubier@gmail.com> wrote:
2016-11-22 15:33 GMT+01:00 Igor Stasenko <siguctua@gmail.com <mailto:siguctua@gmail.com>>: VM now runs, thanks everyone for your attention.. i wish it would install (or report missing requirements) correctly by itself
We would need a 0install(*) script for that.
I think more this: http://openbuildservice.org <http://openbuildservice.org/> but being completely ignorant on the matter, any attempt I made to understand it, failed :) So if someone wants to help⦠would be supercool. Esteban
Thierry
(*) http://0install.net/ <http://0install.net/>
On 22 November 2016 at 16:30, Igor Stasenko <siguctua@gmail.com <mailto:siguctua@gmail.com>> wrote:
On 22 November 2016 at 16:24, Thierry Goubier <thierry.goubier@gmail.com <mailto:thierry.goubier@gmail.com>> wrote: Igor,
I have this script:
https://gist.github.com/ThierryGoubier/3dbef94a959f4f8acb19 <https://gist.github.com/ThierryGoubier/3dbef94a959f4f8acb19>
Now, I would suggest, if you don't have any need FFI-related (no Athens, Roassal, bloc, etc...), use the 64 bits version: runs without installing anything on a large variety of Linuxes.
nvm, it seems i installed it somehow: - installed aptitude - pressed something there on required lib and it done something (uninstalled shomething/shuffled something/installed something) and after that i were able to run apt get install libgl1-mesa-glx:i386 without problems :)
Thierry
2016-11-22 15:00 GMT+01:00 Igor Stasenko <siguctua@gmail.com <mailto:siguctua@gmail.com>>:
On 22 November 2016 at 15:06, David T. Lewis <lewis@mail.msen.com <mailto:lewis@mail.msen.com>> wrote: On Tue, Nov 22, 2016 at 12:19:30PM +0200, Igor Stasenko wrote:
ldd vm-display-X11 linux-gate.so.1 => (0xf77fd000) libpthread.so.0 => /lib/i386-linux-gnu/libpthread.so.0 (0xf7799000) libGL.so.1 => not found libX11.so.6 => /usr/lib/i386-linux-gnu/libX11.so.6 (0xf7664000) libc.so.6 => /lib/i386-linux-gnu/libc.so.6 (0xf74b5000) /lib/ld-linux.so.2 (0x5664e000) libxcb.so.1 => /usr/lib/i386-linux-gnu/libxcb.so.1 (0xf7493000) libdl.so.2 => /lib/i386-linux-gnu/libdl.so.2 (0xf748e000) libXau.so.6 => /usr/lib/i386-linux-gnu/libXau.so.6 (0xf748a000) libXdmcp.so.6 => /usr/lib/i386-linux-gnu/libXdmcp.so.6 (0xf7482000)
seems like i have everyting already except libgl... any ideas what package providing it?
After some trial and error, this is what I ended up installing on my Ubuntu system:
sudo apt-get install libgl1-mesa-dri-lts-utopic:i386 sudo apt-get install libgl1-mesa-glx-lts-utopic:i386 sudo apt-get install mesa-common-dev
Dave
meh..
sudo apt-get install libgl1-mesa-dri-lts-utopic:i386 Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation:
The following packages have unmet dependencies: qtdeclarative5-qtfeedback-plugin : Depends: libqt5feedback5 but it is not going to be installed unity-control-center : Depends: libcheese-gtk23 (>= 3.4.0) but it is not going to be installed Depends: libcheese7 (>= 3.0.1) but it is not going to be installed E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
:(
-- Best regards, Igor Stasenko.
-- Best regards, Igor Stasenko.
-- Best regards, Igor Stasenko.
2016-11-22 15:52 GMT+01:00 Esteban Lorenzano <estebanlm@gmail.com>:
On 22 Nov 2016, at 15:37, Thierry Goubier <thierry.goubier@gmail.com> wrote:
2016-11-22 15:33 GMT+01:00 Igor Stasenko <siguctua@gmail.com>:
VM now runs, thanks everyone for your attention.. i wish it would install (or report missing requirements) correctly by itself
We would need a 0install(*) script for that.
I think more this: http://openbuildservice.org
They are complementary. There is a note about 0install using OBS for 0compile (compiling on OBS instead of compiling locally). 0install, I think, can download and install binary packages (that have to be relocatable). Thierry
but being completely ignorant on the matter, any attempt I made to understand it, failed :)
So if someone wants to help⦠would be supercool.
Esteban
Thierry
On 22 November 2016 at 16:30, Igor Stasenko <siguctua@gmail.com> wrote:
On 22 November 2016 at 16:24, Thierry Goubier <thierry.goubier@gmail.com
wrote:
Igor,
I have this script:
https://gist.github.com/ThierryGoubier/3dbef94a959f4f8acb19
Now, I would suggest, if you don't have any need FFI-related (no Athens, Roassal, bloc, etc...), use the 64 bits version: runs without installing anything on a large variety of Linuxes.
nvm, it seems i installed it somehow: - installed aptitude - pressed something there on required lib and it done something (uninstalled shomething/shuffled something/installed something) and after that i were able to run apt get install libgl1-mesa-glx:i386 without problems :)
Thierry
2016-11-22 15:00 GMT+01:00 Igor Stasenko <siguctua@gmail.com>:
On 22 November 2016 at 15:06, David T. Lewis <lewis@mail.msen.com> wrote:
On Tue, Nov 22, 2016 at 12:19:30PM +0200, Igor Stasenko wrote:
ldd vm-display-X11 linux-gate.so.1 => (0xf77fd000) libpthread.so.0 => /lib/i386-linux-gnu/libpthread.so.0 (0xf7799000) libGL.so.1 => not found libX11.so.6 => /usr/lib/i386-linux-gnu/libX11.so.6 (0xf7664000) libc.so.6 => /lib/i386-linux-gnu/libc.so.6 (0xf74b5000) /lib/ld-linux.so.2 (0x5664e000) libxcb.so.1 => /usr/lib/i386-linux-gnu/libxcb.so.1 (0xf7493000) libdl.so.2 => /lib/i386-linux-gnu/libdl.so.2 (0xf748e000) libXau.so.6 => /usr/lib/i386-linux-gnu/libXau.so.6 (0xf748a000) libXdmcp.so.6 => /usr/lib/i386-linux-gnu/libXdmcp.so.6 (0xf7482000)
seems like i have everyting already except libgl... any ideas what package providing it?
After some trial and error, this is what I ended up installing on my Ubuntu system:
sudo apt-get install libgl1-mesa-dri-lts-utopic:i386 sudo apt-get install libgl1-mesa-glx-lts-utopic:i386 sudo apt-get install mesa-common-dev
Dave
meh..
sudo apt-get install libgl1-mesa-dri-lts-utopic:i386 Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation:
The following packages have unmet dependencies: qtdeclarative5-qtfeedback-plugin : Depends: libqt5feedback5 but it is not going to be installed unity-control-center : Depends: libcheese-gtk23 (>= 3.4.0) but it is not going to be installed Depends: libcheese7 (>= 3.0.1) but it is not going to be installed E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
:(
-- Best regards, Igor Stasenko.
-- Best regards, Igor Stasenko.
-- Best regards, Igor Stasenko.
Here is the script I have used for years. I am currently running it on 16.04. I have not compared it to Thierry's. I have this in a file setup-pharo.sh I make it executable and the sudo setup-pharo.sh # ARGUMENT HANDLING ============================================================= if { [ "$1" = "-h" ] || [ "$1" = "--help" ]; }; then echo "Install libraries required to run Pharo. " exit 0; elif [ $# -gt 0 ]; then echo "--help/-h is the only argument allowed" exit 1; fi dpkg --add-architecture i386 apt-get update 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 libssh2-1:i386 libfreetype6-dev:i386 libx11-dev:i386 libsm-dev:i386 libice-dev:i386 apt-get --yes install build-essential gcc-multilib g++ apt-get --yes install libgl1-mesa-dev:i386 libgl1-mesa-glx:i386 #Esteban Lorenzano says this is the minimum #test this #apt-get -qq install libc6:i386 #apt-get -qq install libuuid1:i386 #apt-get -qq install libkrb5-3:i386 libk5crypto3:i386 zlib1g:i386 libcomerr2:i386 libkrb5support0:i386 libkeyutils1:i386 #apt-get -qq install libssl1.0.0:i386 #apt-get -qq install libfreetype6:i386 Jimmie Houchin On 11/22/2016 08:24 AM, Thierry Goubier wrote:
Igor,
I have this script:
https://gist.github.com/ThierryGoubier/3dbef94a959f4f8acb19
Now, I would suggest, if you don't have any need FFI-related (no Athens, Roassal, bloc, etc...), use the 64 bits version: runs without installing anything on a large variety of Linuxes.
Thierry
2016-11-22 15:00 GMT+01:00 Igor Stasenko <siguctua@gmail.com <mailto:siguctua@gmail.com>>:
On 22 November 2016 at 15:06, David T. Lewis <lewis@mail.msen.com <mailto:lewis@mail.msen.com>> wrote:
On Tue, Nov 22, 2016 at 12:19:30PM +0200, Igor Stasenko wrote: > ldd vm-display-X11 > linux-gate.so.1 => (0xf77fd000) > libpthread.so.0 => /lib/i386-linux-gnu/libpthread.so.0 (0xf7799000) > libGL.so.1 => not found > libX11.so.6 => /usr/lib/i386-linux-gnu/libX11.so.6 (0xf7664000) > libc.so.6 => /lib/i386-linux-gnu/libc.so.6 (0xf74b5000) > /lib/ld-linux.so.2 (0x5664e000) > libxcb.so.1 => /usr/lib/i386-linux-gnu/libxcb.so.1 (0xf7493000) > libdl.so.2 => /lib/i386-linux-gnu/libdl.so.2 (0xf748e000) > libXau.so.6 => /usr/lib/i386-linux-gnu/libXau.so.6 (0xf748a000) > libXdmcp.so.6 => /usr/lib/i386-linux-gnu/libXdmcp.so.6 (0xf7482000) > > > seems like i have everyting already except libgl... > any ideas what package providing it? >
After some trial and error, this is what I ended up installing on my Ubuntu system:
sudo apt-get install libgl1-mesa-dri-lts-utopic:i386 sudo apt-get install libgl1-mesa-glx-lts-utopic:i386 sudo apt-get install mesa-common-dev
Dave
meh..
sudo apt-get install libgl1-mesa-dri-lts-utopic:i386 Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation:
The following packages have unmet dependencies: qtdeclarative5-qtfeedback-plugin : Depends: libqt5feedback5 but it is not going to be installed unity-control-center : Depends: libcheese-gtk23 (>= 3.4.0) but it is not going to be installed Depends: libcheese7 (>= 3.0.1) but it is not going to be installed E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages. :(
-- Best regards, Igor Stasenko.
On 22 November 2016 at 12:17, Sven Van Caekenberghe <sven@stfx.eu> wrote:
(this is what I use for headless)
sudo dpkg --add-architecture i386 sudo apt-get update sudo apt-get install libc6:i386 sudo apt-get install libssl1.0.0:i386 sudo apt-get install libfreetype6:i386
==>>> 0 upgraded, 0 newly installed, 0 to remove and 11 not upgraded.
it seems like everything of above already installed on my box.
(you might need more for full UI)
with ldd you can find unresolved dynamic libs
On 22 Nov 2016, at 11:13, Igor Stasenko <siguctua@gmail.com> wrote:
On 22 November 2016 at 12:11, Nicolai Hess <nicolaihess@gmail.com> wrote:
2016-11-22 11:07 GMT+01:00 Igor Stasenko <siguctua@gmail.com>: Hey guys,
just wanted to show others our cool stuff.. but faced strange problem:
~/projects/pharo$ ./pharo-vm/pharo pharo.image could not find display driver vm-display-X11; either: - check that /home/sig/projects/pharo/pharo-vm//vm-display-X11.so exists, or - use the '-plugins <path>' option to tell me where it is, or - remove DISPLAY from your environment. Aborted (core dumped)
i tried to download manually, tried to use command-line install script .. but same result: - it doesn't seem to want to pick up the x11 driver and so, fails to start.. needless to say, that driver exists, lies there right at the location of vm binary etc etc yadda yadda..
anyone knows what going on?
Ubuntu 64 bit Linux ? If so, you need to make sure to have all 32Bit libs.
aha.. can you remind me how to install them quickly?
-- Best regards, Igor Stasenko.
-- Best regards, Igor Stasenko.
-- Best regards, Igor Stasenko.
Igor, Give us some more details - Ubuntu version - Pharo version - URL you used to download the VM Sven
On 22 Nov 2016, at 11:22, Igor Stasenko <siguctua@gmail.com> wrote:
On 22 November 2016 at 12:17, Sven Van Caekenberghe <sven@stfx.eu> wrote: (this is what I use for headless)
sudo dpkg --add-architecture i386 sudo apt-get update sudo apt-get install libc6:i386 sudo apt-get install libssl1.0.0:i386 sudo apt-get install libfreetype6:i386
==>>> 0 upgraded, 0 newly installed, 0 to remove and 11 not upgraded.
it seems like everything of above already installed on my box.
(you might need more for full UI)
with ldd you can find unresolved dynamic libs
On 22 Nov 2016, at 11:13, Igor Stasenko <siguctua@gmail.com> wrote:
On 22 November 2016 at 12:11, Nicolai Hess <nicolaihess@gmail.com> wrote:
2016-11-22 11:07 GMT+01:00 Igor Stasenko <siguctua@gmail.com>: Hey guys,
just wanted to show others our cool stuff.. but faced strange problem:
~/projects/pharo$ ./pharo-vm/pharo pharo.image could not find display driver vm-display-X11; either: - check that /home/sig/projects/pharo/pharo-vm//vm-display-X11.so exists, or - use the '-plugins <path>' option to tell me where it is, or - remove DISPLAY from your environment. Aborted (core dumped)
i tried to download manually, tried to use command-line install script .. but same result: - it doesn't seem to want to pick up the x11 driver and so, fails to start.. needless to say, that driver exists, lies there right at the location of vm binary etc etc yadda yadda..
anyone knows what going on?
Ubuntu 64 bit Linux ? If so, you need to make sure to have all 32Bit libs.
aha.. can you remind me how to install them quickly?
-- Best regards, Igor Stasenko.
-- Best regards, Igor Stasenko.
-- Best regards, Igor Stasenko.
uname -a Linux CI-Host 4.2.0-42-generic #49~14.04.1-Ubuntu SMP Wed Jun 29 20:22:11 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux pharo - from get.pharo.org bash script. & from http://pharo.org/download but the both behave the same. On 22 November 2016 at 12:46, Sven Van Caekenberghe <sven@stfx.eu> wrote:
Igor,
Give us some more details
- Ubuntu version - Pharo version - URL you used to download the VM
Sven
On 22 Nov 2016, at 11:22, Igor Stasenko <siguctua@gmail.com> wrote:
On 22 November 2016 at 12:17, Sven Van Caekenberghe <sven@stfx.eu> wrote: (this is what I use for headless)
sudo dpkg --add-architecture i386 sudo apt-get update sudo apt-get install libc6:i386 sudo apt-get install libssl1.0.0:i386 sudo apt-get install libfreetype6:i386
==>>> 0 upgraded, 0 newly installed, 0 to remove and 11 not upgraded.
it seems like everything of above already installed on my box.
(you might need more for full UI)
with ldd you can find unresolved dynamic libs
On 22 Nov 2016, at 11:13, Igor Stasenko <siguctua@gmail.com> wrote:
On 22 November 2016 at 12:11, Nicolai Hess <nicolaihess@gmail.com> wrote:
2016-11-22 11:07 GMT+01:00 Igor Stasenko <siguctua@gmail.com>: Hey guys,
just wanted to show others our cool stuff.. but faced strange problem:
~/projects/pharo$ ./pharo-vm/pharo pharo.image could not find display driver vm-display-X11; either: - check that /home/sig/projects/pharo/pharo-vm//vm-display-X11.so exists, or - use the '-plugins <path>' option to tell me where it is, or - remove DISPLAY from your environment. Aborted (core dumped)
i tried to download manually, tried to use command-line install script .. but same result: - it doesn't seem to want to pick up the x11 driver and so, fails to start.. needless to say, that driver exists, lies there right at the location of vm binary etc etc yadda yadda..
anyone knows what going on?
Ubuntu 64 bit Linux ? If so, you need to make sure to have all 32Bit libs.
aha.. can you remind me how to install them quickly?
-- Best regards, Igor Stasenko.
-- Best regards, Igor Stasenko.
-- Best regards, Igor Stasenko.
-- Best regards, Igor Stasenko.
Igor, For future reference,
On 22 Nov 2016, at 11:17, Sven Van Caekenberghe <sven@stfx.eu> wrote:
(this is what I use for headless)
sudo dpkg --add-architecture i386 sudo apt-get update sudo apt-get install libc6:i386 sudo apt-get install libssl1.0.0:i386 sudo apt-get install libfreetype6:i386
On a fresh Ubuntu 16.04.1 LTS 64-bit I did the above
(you might need more for full UI)
And then just one other install sudo apt-get install libgl1-mesa-glx:i386 which installed lots of dependencies. After that I was able to run the download get.pharo.org/60+vm in UI mode (using pharo-ui). Sven
On 22 November 2016 at 16:50, Sven Van Caekenberghe <sven@stfx.eu> wrote:
Igor,
For future reference,
On 22 Nov 2016, at 11:17, Sven Van Caekenberghe <sven@stfx.eu> wrote:
(this is what I use for headless)
sudo dpkg --add-architecture i386 sudo apt-get update sudo apt-get install libc6:i386 sudo apt-get install libssl1.0.0:i386 sudo apt-get install libfreetype6:i386
On a fresh Ubuntu 16.04.1 LTS 64-bit I did the above
(you might need more for full UI)
And then just one other install
sudo apt-get install libgl1-mesa-glx:i386
which installed lots of dependencies.
After that I was able to run the download
get.pharo.org/60+vm
in UI mode (using pharo-ui).
Sven
ohh.. wait 6.0 is on the sight.. and i was mangling with 5.0.. yeah, that explains why it needs 32-bit libs and all that mess :)
-- Best regards, Igor Stasenko.
Hey Igor, I was just messing around with this the other day; Levente had the tersest incantation which worked on my fresh 14.04.4 install: sudo dpkg --add-architecture i386 sudo apt-get update sudo apt-get install libuuid1:i386 libglu1-mesa:i386 libsm6:i386 (Documented at http://wiki.squeak.org/squeak/6134). On Tue, Nov 22, 2016 at 10:46 AM, Igor Stasenko <siguctua@gmail.com> wrote:
On 22 November 2016 at 16:50, Sven Van Caekenberghe <sven@stfx.eu> wrote:
Igor,
For future reference,
On 22 Nov 2016, at 11:17, Sven Van Caekenberghe <sven@stfx.eu> wrote:
(this is what I use for headless)
sudo dpkg --add-architecture i386 sudo apt-get update sudo apt-get install libc6:i386 sudo apt-get install libssl1.0.0:i386 sudo apt-get install libfreetype6:i386
On a fresh Ubuntu 16.04.1 LTS 64-bit I did the above
(you might need more for full UI)
And then just one other install
sudo apt-get install libgl1-mesa-glx:i386
which installed lots of dependencies.
After that I was able to run the download
get.pharo.org/60+vm
in UI mode (using pharo-ui).
Sven
ohh.. wait 6.0 is on the sight.. and i was mangling with 5.0.. yeah, that explains why it needs 32-bit libs and all that mess :)
-- Best regards, Igor Stasenko.
On 24 November 2016 at 04:43, Chris Muller <asqueaker@gmail.com> wrote:
Hey Igor, I was just messing around with this the other day; Levente had the tersest incantation which worked on my fresh 14.04.4 install:
sudo dpkg --add-architecture i386 sudo apt-get update sudo apt-get install libuuid1:i386 libglu1-mesa:i386 libsm6:i386
(Documented at http://wiki.squeak.org/squeak/6134).
yeah... if its fresh.. but i guess my problem was that there was something installed, that were blocking clean installation of above libs due to conflicting dependencies. anyways, this is not critical for my current needs. Thanks for attention.
On Tue, Nov 22, 2016 at 10:46 AM, Igor Stasenko <siguctua@gmail.com> wrote:
On 22 November 2016 at 16:50, Sven Van Caekenberghe <sven@stfx.eu>
wrote:
Igor,
For future reference,
On 22 Nov 2016, at 11:17, Sven Van Caekenberghe <sven@stfx.eu> wrote:
(this is what I use for headless)
sudo dpkg --add-architecture i386 sudo apt-get update sudo apt-get install libc6:i386 sudo apt-get install libssl1.0.0:i386 sudo apt-get install libfreetype6:i386
On a fresh Ubuntu 16.04.1 LTS 64-bit I did the above
(you might need more for full UI)
And then just one other install
sudo apt-get install libgl1-mesa-glx:i386
which installed lots of dependencies.
After that I was able to run the download
get.pharo.org/60+vm
in UI mode (using pharo-ui).
Sven
ohh.. wait 6.0 is on the sight.. and i was mangling with 5.0.. yeah, that explains why it needs 32-bit libs and all that mess :)
-- Best regards, Igor Stasenko.
-- Best regards, Igor Stasenko.
participants (10)
-
Ben Coman -
Chris Muller -
David T. Lewis -
Esteban Lorenzano -
Igor Stasenko -
Jimmie Houchin -
John Brant -
Nicolai Hess -
Sven Van Caekenberghe -
Thierry Goubier