Rebol 2升级到Ubuntu 15.10后停止工作

Sat*_*ish 7 rebol rebol2

升级到15.10后,Rebol 2停止在Ubuntu上工作.我收到错误 -

./rebol
./rebol: error while loading shared libraries: libXaw.so.7: cannot open shared object file: No such file or directory
Run Code Online (Sandbox Code Playgroud)

试图安装libXaw-

sudo apt-get install libXaw:i686
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package libXaw
Run Code Online (Sandbox Code Playgroud)

由Massimiliano从deb软件包中全新安装,给出了未解决的依赖性错误.

有什么建议让它工作?

joh*_*hnk 7

这应该让它适合你

dpkg --add-architecture i386
apt-get update
apt-get install libc6:i386
apt-get install libstdc++6:i386
apt-get install libx11-6:i386 libxcb1:i386 libxaw7:i386 libfreetype6:i386
apt-get install xfonts-100dpi xfonts-75dpi
Run Code Online (Sandbox Code Playgroud)

感谢@earl http://chat.stackoverflow.com/transcript/message/17707389#17707389