identify: error while loading shared libraries: libgvc.so.5: cannot open shared object file: No such file or...
up vote
1
down vote
favorite
On our Solano build image ubuntu14-chrome64 we install imagemagick in the pre_setup hook with the following command:
sudo apt-get update && sudo apt-get -y install imagemagick libmagickwand-dev graphviz libgraphviz-dev
But identify -version
fails with
identify: error while loading shared libraries: libgvc.so.5: cannot open shared object file: No such file or directory
What is wrong with our imagemagick package installation there?
UPDATE 1:
$ which identify
/usr/local/bin/identify
$ ldd $(which identify) | grep not
libgvc.so.5 => not found
libgraph.so.4 => not found
UPDATE 2:
I did sudo rm /usr/local/bin/identify
as @N0rbert advices but the error is left the same.
$ which identify
/usr/bin/identify
ldd $(which identify) | grep not
outputs the same as in UPDATE 1
ls -lah /usr/bin/identify
/usr/bin/identify -> /etc/alternatives/identify
ls -lah /etc/alternatives/identify
/etc/alternatives/identify -> /usr/bin/identify.im6
14.04 imagemagick
add a comment |
up vote
1
down vote
favorite
On our Solano build image ubuntu14-chrome64 we install imagemagick in the pre_setup hook with the following command:
sudo apt-get update && sudo apt-get -y install imagemagick libmagickwand-dev graphviz libgraphviz-dev
But identify -version
fails with
identify: error while loading shared libraries: libgvc.so.5: cannot open shared object file: No such file or directory
What is wrong with our imagemagick package installation there?
UPDATE 1:
$ which identify
/usr/local/bin/identify
$ ldd $(which identify) | grep not
libgvc.so.5 => not found
libgraph.so.4 => not found
UPDATE 2:
I did sudo rm /usr/local/bin/identify
as @N0rbert advices but the error is left the same.
$ which identify
/usr/bin/identify
ldd $(which identify) | grep not
outputs the same as in UPDATE 1
ls -lah /usr/bin/identify
/usr/bin/identify -> /etc/alternatives/identify
ls -lah /etc/alternatives/identify
/etc/alternatives/identify -> /usr/bin/identify.im6
14.04 imagemagick
2
Please add output ofwhich identify
,ldd $(which identify) | grep not
to the question.
– N0rbert
Nov 23 at 12:02
@N0rbert I updated the question with the information you asked
– Hirurg103
Nov 23 at 12:54
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
On our Solano build image ubuntu14-chrome64 we install imagemagick in the pre_setup hook with the following command:
sudo apt-get update && sudo apt-get -y install imagemagick libmagickwand-dev graphviz libgraphviz-dev
But identify -version
fails with
identify: error while loading shared libraries: libgvc.so.5: cannot open shared object file: No such file or directory
What is wrong with our imagemagick package installation there?
UPDATE 1:
$ which identify
/usr/local/bin/identify
$ ldd $(which identify) | grep not
libgvc.so.5 => not found
libgraph.so.4 => not found
UPDATE 2:
I did sudo rm /usr/local/bin/identify
as @N0rbert advices but the error is left the same.
$ which identify
/usr/bin/identify
ldd $(which identify) | grep not
outputs the same as in UPDATE 1
ls -lah /usr/bin/identify
/usr/bin/identify -> /etc/alternatives/identify
ls -lah /etc/alternatives/identify
/etc/alternatives/identify -> /usr/bin/identify.im6
14.04 imagemagick
On our Solano build image ubuntu14-chrome64 we install imagemagick in the pre_setup hook with the following command:
sudo apt-get update && sudo apt-get -y install imagemagick libmagickwand-dev graphviz libgraphviz-dev
But identify -version
fails with
identify: error while loading shared libraries: libgvc.so.5: cannot open shared object file: No such file or directory
What is wrong with our imagemagick package installation there?
UPDATE 1:
$ which identify
/usr/local/bin/identify
$ ldd $(which identify) | grep not
libgvc.so.5 => not found
libgraph.so.4 => not found
UPDATE 2:
I did sudo rm /usr/local/bin/identify
as @N0rbert advices but the error is left the same.
$ which identify
/usr/bin/identify
ldd $(which identify) | grep not
outputs the same as in UPDATE 1
ls -lah /usr/bin/identify
/usr/bin/identify -> /etc/alternatives/identify
ls -lah /etc/alternatives/identify
/etc/alternatives/identify -> /usr/bin/identify.im6
14.04 imagemagick
14.04 imagemagick
edited Nov 23 at 15:27
asked Nov 23 at 11:33
Hirurg103
1064
1064
2
Please add output ofwhich identify
,ldd $(which identify) | grep not
to the question.
– N0rbert
Nov 23 at 12:02
@N0rbert I updated the question with the information you asked
– Hirurg103
Nov 23 at 12:54
add a comment |
2
Please add output ofwhich identify
,ldd $(which identify) | grep not
to the question.
– N0rbert
Nov 23 at 12:02
@N0rbert I updated the question with the information you asked
– Hirurg103
Nov 23 at 12:54
2
2
Please add output of
which identify
, ldd $(which identify) | grep not
to the question.– N0rbert
Nov 23 at 12:02
Please add output of
which identify
, ldd $(which identify) | grep not
to the question.– N0rbert
Nov 23 at 12:02
@N0rbert I updated the question with the information you asked
– Hirurg103
Nov 23 at 12:54
@N0rbert I updated the question with the information you asked
– Hirurg103
Nov 23 at 12:54
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
You have self-compiled identify
in /usr/local/bin/
. Possibly from the time of 12.04 LTS release or similar.
You should remove it with
sudo rm /usr/local/bin/identify
and then you will be able to use normal one from the repository.
I did as you advised but the error remains the same. I updated the question
– Hirurg103
Nov 23 at 15:22
Then carefully navigate to all subfolders in/usr/local
and remove/move ImageMagick stuff out the way.
– N0rbert
Nov 23 at 20:00
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
You have self-compiled identify
in /usr/local/bin/
. Possibly from the time of 12.04 LTS release or similar.
You should remove it with
sudo rm /usr/local/bin/identify
and then you will be able to use normal one from the repository.
I did as you advised but the error remains the same. I updated the question
– Hirurg103
Nov 23 at 15:22
Then carefully navigate to all subfolders in/usr/local
and remove/move ImageMagick stuff out the way.
– N0rbert
Nov 23 at 20:00
add a comment |
up vote
0
down vote
You have self-compiled identify
in /usr/local/bin/
. Possibly from the time of 12.04 LTS release or similar.
You should remove it with
sudo rm /usr/local/bin/identify
and then you will be able to use normal one from the repository.
I did as you advised but the error remains the same. I updated the question
– Hirurg103
Nov 23 at 15:22
Then carefully navigate to all subfolders in/usr/local
and remove/move ImageMagick stuff out the way.
– N0rbert
Nov 23 at 20:00
add a comment |
up vote
0
down vote
up vote
0
down vote
You have self-compiled identify
in /usr/local/bin/
. Possibly from the time of 12.04 LTS release or similar.
You should remove it with
sudo rm /usr/local/bin/identify
and then you will be able to use normal one from the repository.
You have self-compiled identify
in /usr/local/bin/
. Possibly from the time of 12.04 LTS release or similar.
You should remove it with
sudo rm /usr/local/bin/identify
and then you will be able to use normal one from the repository.
answered Nov 23 at 13:08
N0rbert
19.6k54391
19.6k54391
I did as you advised but the error remains the same. I updated the question
– Hirurg103
Nov 23 at 15:22
Then carefully navigate to all subfolders in/usr/local
and remove/move ImageMagick stuff out the way.
– N0rbert
Nov 23 at 20:00
add a comment |
I did as you advised but the error remains the same. I updated the question
– Hirurg103
Nov 23 at 15:22
Then carefully navigate to all subfolders in/usr/local
and remove/move ImageMagick stuff out the way.
– N0rbert
Nov 23 at 20:00
I did as you advised but the error remains the same. I updated the question
– Hirurg103
Nov 23 at 15:22
I did as you advised but the error remains the same. I updated the question
– Hirurg103
Nov 23 at 15:22
Then carefully navigate to all subfolders in
/usr/local
and remove/move ImageMagick stuff out the way.– N0rbert
Nov 23 at 20:00
Then carefully navigate to all subfolders in
/usr/local
and remove/move ImageMagick stuff out the way.– N0rbert
Nov 23 at 20:00
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1095356%2fidentify-error-while-loading-shared-libraries-libgvc-so-5-cannot-open-shared%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
2
Please add output of
which identify
,ldd $(which identify) | grep not
to the question.– N0rbert
Nov 23 at 12:02
@N0rbert I updated the question with the information you asked
– Hirurg103
Nov 23 at 12:54