Error while loading shared libraries libtiff so 3

Ubuntu 11.04. Как установить библиотеку libtiff.so.3 и кто запускал Medusa4 на Ubuntu 11.04?
  • Печать

Страницы: [1]   Вниз

Тема: Где взять библеотеку libtiff.so.3 для запуска Medusa4  (Прочитано 2875 раз)

0 Пользователей и 1 Гость просматривают эту тему.

Оффлайн
gohh

Ubuntu 11.04.

Как установить библиотеку libtiff.so.3 и кто запускал Medusa4 на Ubuntu 11.04?


Оффлайн
yorik1984

на 10.10 без дополнительных библиотек запускается.


Оффлайн
RazrFalcon

sudo apt-get install libtiff4


Оффлайн
gohh

sudo apt-get install libtiff4

Установщик пишет,что уже стоит самая новая версия
А Medusa4 снова пишет:

error while loading shared libraries: libtiff.so.3: cannot open shared object file: No such file or directory


Пользователь решил продолжить мысль 16 Мая 2011, 00:46:30:


на 10.10 без дополнительных библиотек запускается.

Ну так это на 10.10 :)

По репозиториям пошарил, вообще такой библиотеки для версии Ubuntu 11.04 не нашел.


Оффлайн
yorik1984

а медуза под рутом ставится?


Оффлайн
RazrFalcon

sudo ln -s /usr/lib/libtiff.so.3 /usr/lib/libtiff.so.4


Оффлайн
gohh

а медуза под рутом ставится?

Ставил по документации, в каталог /opt под рутом. Если запускать без рута то вообще не чего е пишет и так же не запускается, а если под рутом запускать ошибку в нехватки библиотеке


Пользователь решил продолжить мысль 16 Мая 2011, 01:04:59:


sudo ln -s /usr/lib/libtiff.so.3 /usr/lib/libtiff.so.4

Как я понимаю, эта команда создает ссылку с библиотеки libtiff.so.3 на libtiff.so.4, в /usr/lib/ должен появиться файл libtiff.so.3 ? Выполнил, проверил не создал с таким именем., да и ошибка та же призапуски Медузы.

« Последнее редактирование: 16 Мая 2011, 01:06:05 от gohh »


Оффлайн
gohh

Решение проблемы:
Ставил таким способом на Ubuntu 11.04 32бит — Medusa4 запустилась.

1) Перешел в каталог с библиотеками, где лежат разные версии libtiff:

cd /usr/lib/i386-linux-gnu

Примечание:
Если 64 бит версия программы, то имя каталога i386-linux-gnu будет другое, связанное с архитектурой процессора

2) Сделал ссылку с библиотеки libtiff.so.3 на библиотеку libtiff.so.4:

sudo ln -s libtiff.so.4 libtiff.so.3
3) С успехом запустил Medusa4

« Последнее редактирование: 18 Мая 2011, 18:21:05 от gohh »


Оффлайн
yorik1984

Вопрос ТС. Медуза для каких целей используется? какой род деятельности фирмы? или для дома?


Оффлайн
gohh

Вопрос ТС. Медуза для каких целей используется? какой род деятельности фирмы? или для дома?

Для обучения дома, решил попробовать спроектировать детали с помощью САПР. Чисто для личного развития :)

п.с. Если вы про лицензию, то я в курсе, дома -бесплатно, для коммерческих целей — покупать :) Не нарушаем :)


Оффлайн
yorik1984

дело не в лицензии. сам пробую разные САПР для линукса. Хочу отучать себя от автокада постепенно.
Медуза не сильно понравилась, так как все не по нашему. (((


  • Печать

Страницы: [1]   Вверх

  • Index
  • » Pacman & Package Upgrade Issues
  • » [SOLVED] emacs: error while loading shared libraries: libtiff.so.3

Pages: 1

#1 2012-02-07 13:01:45

4on6
Member
Registered: 2011-10-05
Posts: 172

[SOLVED] emacs: error while loading shared libraries: libtiff.so.3

Hello List,
after a complete update with pacman -Syu emacs24 doesn’t work anymore:

 
emacs: error while loading shared libraries: libtiff.so.3: 
cannot open shared object file: No such file or directory

pacman -Qs libtiff  gives:

local/libtiff 4.0.0-1
    Library for manipulation of TIFF images

and pacman -Qo `which emacs` gives:

/usr/bin/emacs is in emacs-bzr 106574-1 

How can I make emacs work again?
TIA

Last edited by 4on6 (2012-02-07 15:47:33)

#2 2012-02-07 13:10:31

wonder
Developer
From: Bucharest, Romania
Registered: 2006-07-05
Posts: 5,941
Website

Re: [SOLVED] emacs: error while loading shared libraries: libtiff.so.3

find out first if is really emacs that needs recompilation.
LD_DEBUG=files emacs  | grep png

if indeed is emacs that is linked, just recompile emacs-bzr


Give what you have. To someone, it may be better than you dare to think.

#3 2012-02-07 13:52:03

4on6
Member
Registered: 2011-10-05
Posts: 172

Re: [SOLVED] emacs: error while loading shared libraries: libtiff.so.3

wonder wrote:

find out first if is really emacs that needs recompilation.
LD_DEBUG=files emacs  | grep png

if indeed is emacs that is linked, just recompile emacs-bzr

Thanks for your answer.
It seems it is emacs that is linked:

file=libtiff.so.3 [0] ; needed by emacs [0]

Please excuse my dumb newbie question — I never did recompiling before: do I just delete the usr/bin/emacs folder and then repeat the installation process for emacs?

I have another related problem — emacs24 (bazaar version) comes from the AUR, and somehow I can’t update my AUR git clone.
git pull in the aur directory gives:

fatal: remote error: access denied or repository not exported: /aur.git

#4 2012-02-07 13:59:02

wonder
Developer
From: Bucharest, Romania
Registered: 2006-07-05
Posts: 5,941
Website

Re: [SOLVED] emacs: error while loading shared libraries: libtiff.so.3

you don’t have to delete it. just remove the package if you want to be sure.

that aur.git was renamed to aur-mirror.git

http://pkgbuild.com/git/aur-mirror.git/


Give what you have. To someone, it may be better than you dare to think.

#5 2012-02-07 15:47:13

4on6
Member
Registered: 2011-10-05
Posts: 172

Re: [SOLVED] emacs: error while loading shared libraries: libtiff.so.3

That worked out fine, now I have an updatetable git-aur repository again, and a freshly compiled bazaar version of emacs24 (after removing the old one) that works just fine.

Thanks for your help.

  • Home
  • Forum
  • The Ubuntu Forum Community
  • Ubuntu Official Flavours Support
  • Multimedia Software
  • [SOLVED] Maya 2011: libtiff.so.3 issue

  1. Maya 2011: libtiff.so.3 issue

    So, I have Ubuntu 11.10 installed, and I followed this guide to get Maya installed on it, but now I cannot launch Maya because I get this error:

    /usr/autodesk/maya2011-x64/bin/maya.bin: error while loading shared libraries: libtiff.so.3: cannot open shared object file: No such file or directory

    When I look in /usr/lib, there are no libtiff.so.* files at all, and symlinking the one in /usr/lib32 does nothing to aid the opening.

    I believe Maya is 64 bit. How do I install libtiff on 64 bit?


  2. Re: Maya 2011: libtiff.so.3 issue

    have you installed libtiff3 or libtiff4 (64 bit, if any) & libtiff-devel??? if you don’t have libtiff3, then you may need to soft link it with libtiff4.

    Code:

    sudo ln -s /usr/lib/libtiff.so.4 /usr/lib/libtiff.so.3

    btw I don’t use Ubuntu now. Doesn’t it has libtiff4 64 bit version?? Opensuse has it.

    Last edited by Jahid65; November 24th, 2011 at 10:55 AM.


  3. Re: Maya 2011: libtiff.so.3 issue

    Thanks for your reply.

    I have libtiff4 installed, libtiff3 and libtiff-devel show nothing in apt.

    There is nothing in /usr/lib/ called libtiff.*, only in /usr/lib32, which as previously mentioned did not work when I symlinked it to /usr/lib/libtiff.so.3 or /usr/lib32/libtiff.so.3.

    To me, this suggests that Maya wants the 64-bit libtiff.

    I’ve managed to solve this issue, had to do the following:

    sudo ln -s /usr/lib/x86_64-linux-gnu/libtiff.so.4.3.4 /usr/lib/libtiff.so.3

    Last edited by Corporation; November 24th, 2011 at 11:47 AM.


Tags for this Thread

Bookmarks

Bookmarks


Posting Permissions

View previous topic :: View next topic  
Author Message
evilben
Tux’s lil’ helper
Tux's lil' helper

Joined: 14 Jun 2004
Posts: 128
Location: GA, USA

PostPosted: Wed Jul 20, 2005 11:35 pm    Post subject: ghostscript wants libtiff.so.3 (missing!) SOLVED Reply with quote

I was going to wait to see if an emerge -uD world would fix it, but turns out dev-lang/nasm needs ghostscript to be functional (my printing has been dead for a while, too, because of this).

This is what happens:

Code:
tux ~ # gs

gs: error while loading shared libraries: libtiff.so.3: cannot open shared object file: No such file or directory

Here’s what I have:

Code:
tux ~ # emerge -p tiff ghostscript

These are the packages that I would merge, in order:

Calculating dependencies   …done!

[ebuild   R   ] media-libs/tiff-3.7.2

[ebuild   R   ] app-text/ghostscript-7.07.1-r8

Here are the files included with media-libs/tiff (the ones that probably matter):

Code:
tux ~ # qpkg -l tiff

media-libs/tiff-3.7.2 *

CONTENTS:

/usr

/usr/lib

/usr/lib/libtiff.la

/usr/lib/libtiff.a

/usr/lib/libtiffxx.la

/usr/lib/libtiffxx.a

/usr/include

/usr/include/tiff.h

/usr/include/tiffconf.h

/usr/include/tiffio.h

/usr/include/tiffvers.h

/usr/include/tiffio.hxx

/usr/bin

/usr/bin/bmp2tiff

/usr/bin/fax2ps

/usr/bin/fax2tiff

/usr/bin/gif2tiff

Anybody know what sort of symlink I should be making here? If it were just a version number, it would be obvious, but I’m at a loss.

Thanks

Last edited by evilben on Thu Jul 21, 2005 12:12 am; edited 1 time in total

Back to top

View user's profile Send private message

BradN
Advocate
Advocate

Joined: 19 Apr 2002
Posts: 2391
Location: Wisconsin (USA)

PostPosted: Thu Jul 21, 2005 12:05 am    Post subject: Reply with quote

it looks like the .so version of the library is missing — try re-emerging tiff, or, failing that, re-emerge ghostscript and maybe it will compile against the other library or include its own tiff support or something.
Back to top

View user's profile Send private message

evilben
Tux’s lil’ helper
Tux's lil' helper

Joined: 14 Jun 2004
Posts: 128
Location: GA, USA

PostPosted: Thu Jul 21, 2005 12:14 am    Post subject: Reply with quote

Good guess!! I re-emerged tiff, and now everything is there. Thanks again!

Code:
qpkg -l tiff

media-libs/tiff-3.7.2 *

CONTENTS:

/usr

/usr/lib

/usr/lib/libtiff.so.3.7.2

/usr/lib/libtiff.so.3 -> libtiff.so.3.7.2 1121904721

/usr/lib/libtiff.so -> libtiff.so.3.7.2 1121904721

/usr/lib/libtiff.la

/usr/lib/libtiff.a

/usr/lib/libtiffxx.so.3.7.2

/usr/lib/libtiffxx.so.3 -> libtiffxx.so.3.7.2 1121904721

/usr/lib/libtiffxx.so -> libtiffxx.so.3.7.2 1121904721

/usr/lib/libtiffxx.la

/usr/lib/libtiffxx.a

Back to top

View user's profile Send private message

BradN
Advocate
Advocate

Joined: 19 Apr 2002
Posts: 2391
Location: Wisconsin (USA)

PostPosted: Thu Jul 21, 2005 12:17 am    Post subject: Reply with quote

no prob :wink:
Back to top

View user's profile Send private message

Display posts from previous:   

You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum

Понравилась статья? Поделить с друзьями:
  • Error while loading shared libraries libssl so
  • Error while loading shared libraries libqtgui so 4
  • Error while loading shared libraries libqtcore so 4
  • Error while loading shared libraries libqt5sql so 5
  • Error while loading shared libraries libpq so 5