1

First I tried to use tetview on ubuntu 14.04 64bit. There I ran into problems because it needs 32 bit libraries, tried to fix it wit no luck.

Now I am trying to run it on ubuntu 14.04 32 bit.

./tetview-linux: error while loading shared libraries: libg2c.so.0: cannot open shared object file: No such file or directory

After trying the first answer at this question the problem is the following:

./tetview-linux: error while loading shared libraries: libstdc++.so.5: cannot open shared object file: No such file or directory

And to fix this issue ubuntu asks to remove the previously installed libg2c.so.0

augre
  • 565

1 Answers1

0

On fresh 32 bit Ubuntu 14.04.4 LTS

  1. Downloading:
    libg2c0_3.4.6-6ubuntu5_i386.deb from here
    libstdc++5_3.3.6-18_i386.deb from here

  2. Extract with Archive Manager

  3. Copy files to the right location $ sudo cp ~/Downloads/libg2c0_3.4.6-6ubuntu5_i386/usr/lib/* /usr/lib/i386-linux-gnu/ $ sudo cp ~/Downloads/libstdc++5_3.3.6-18_i386/usr/lib/* /usr/lib/i386-linux-gnu/

augre
  • 565