How to run Rebol on Freya

I tried to run rebol-view-278-4-2on the Elementary OS "Freya" (version of Ubuntu 14.04 LTS).

I keep getting this error:

when loading shared libraries: libXaw.so.7: cannot open shared objects file: no such file or directory

I went ahead and tried to install the missing library, but to no avail.

+4
source share
1 answer

These are the steps I took to get the R2 kernel and see work on the Ubuntu 14.04 LTS "Trusty", so I would suggest that this would also work on Freya:

sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386
sudo apt-get update
sudo apt-get install libx11-6:i386
sudo apt-get install libxext6:i386
sudo apt-get install libxaw7:i386
sudo apt-get install libfreetype6:i386
sudo apt-get install xfonts-100dpi xfonts-75dpi 

(I prefer the separate steps for installing the package to be separate if one of them does not work.)

+3
source

Source: https://habr.com/ru/post/1626688/


All Articles