7

GlimmerHMM というプログラムを実行しようとしていますが、プログラムを呼び出そうとすると、次のエラーが発生します。

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

だから私はダウンロードしてインストールしようとしました:

sudo apt-get install libstdc++5
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages were automatically installed and are no longer required:
html2text libmail-sendmail-perl libsys-hostname-long-perl
Use 'apt-get autoremove' to remove them.
The following NEW packages will be installed: libstdc++5
0 upgraded, 1 newly installed, 0 to remove and 183 not upgraded.
Need to get 255 kB of archives.
After this operation, 1,155 kB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu/ precise/universe libstdc++5 amd64 1:3.3.6-25ubuntu1 [255 kB]
Fetched 255 kB in 4s (54.0 kB/s)                     
Selecting previously unselected package libstdc++5.
(Reading database ... 176303 files and directories currently installed.)
Unpacking libstdc++5 (from .../libstdc++5_1%3a3.3.6-25ubuntu1_amd64.deb) ...
Setting up libstdc++5 (1:3.3.6-25ubuntu1) ...
Processing triggers for libc-bin ...
ldconfig deferred processing now taking place

しかし、プログラムを呼び出すときに同じエラーが発生します。前もって感謝します!

4

2 に答える 2

10

v5が必要なほど古いプログラムを実行している場合libstdc++、それも 32 ビット アプリケーションであるため、インストールした (64 ビット)libstdc++5を使用できない可能性があります。ia32-libsパッケージをインストールします。

于 2013-01-16T03:26:17.993 に答える