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

Rebol 2 Stopped working after upgrading to Ubuntu 15.10

升级到 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

尝试安装 libXaw-

sudo apt-get install libXaw:i686
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package libXaw

Massimiliano 从 deb 包进行的全新安装给出了未解决的依赖项错误。

有什么让它工作的建议吗?

这应该适合您

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

感谢@earl https://chat.whosebug.com/transcript/message/17707389#17707389