共有ライブラリのロード中のエラー:libffi.so.5:


0
$ sudo apt-get install libffi6 libffi-dev

Reading package lists... Done
Building dependency tree       
Reading state information... Done
libffi6 is already the newest version.
The following packages were automatically installed and are no longer required:
  gir1.2-dbusmenu-gtk-0.4 update-notifier-common gir1.2-gtk-2.0 language-pack-kde-en kde-l10n-engb language-pack-kde-en-base
Use 'apt-get autoremove' to remove them.
The following NEW packages will be installed:
  libffi-dev
0 upgraded, 1 newly installed, 0 to remove and 255 not upgraded.
Need to get 96.1 kB of archives.
After this operation, 356 kB of additional disk space will be used.
Do you want to continue [Y/n]? Y
Get:1 http://in.archive.ubuntu.com/ubuntu/ precise/main libffi-dev amd64 3.0.11~rc1-5 [96.1 kB]
Fetched 96.1 kB in 2s (40.9 kB/s)
Selecting previously unselected package libffi-dev.
(Reading database ... 221614 files and directories currently installed.)
Unpacking libffi-dev (from .../libffi-dev_3.0.11~rc1-5_amd64.deb) ...
Processing triggers for doc-base ...
Processing 1 added doc-base file...
Processing triggers for install-info ...
Processing triggers for man-db ...
Setting up libffi-dev (3.0.11~rc1-5) ...

その後、

:/opt/wunderlist-1.2.4/Wunderlist-1.2.4$ sudo ./Wunderlist   

./Wunderlist: error while loading shared libraries: libffi.so.5: cannot open shared object file: No such file or directory

詳細:

$ cat /etc/issue
Ubuntu 12.04.4 LTS \n \l

私は今何をすべきですか?

回答:


3

Wunderlistは、特にlibffiの古いバージョンを探しているようです。libffi5が必要です。

libffi.so.5: cannot open shared object file: No such file or directory

12.04で、パッケージlibffi5 (3.0.9-1)は明快なリポジトリでのみ利用可能です。

lucidリポジトリを追加し、lucidリポジトリから/etc/apt/sources.lst古いパッケージを手動でインストールして、12.04と10.04の混合システムを作成できます。非常に古いものを手動で追加しても、必ずしも安定したシステムになるとは限らないため、これは悪い考えだと思います。

または、wunderlistのプログラマーに依存関係を更新するように依頼することもできます。おそらく、libffi6でも動作します。

3番目の可能な解決策、ここで言及(ドイツ語)6から5へのシンボリックリンク:

ln -s /usr/lib/i386-linux-gnu/libffi.so.6 /usr/lib/i386-linux-gnu/libffi.so.5

ありがとう。それで、今の解決策は何ですか?
Aquarius_Girl 14

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.