file: symbol lookup error: file: undefined symbol: magic_setparam
up vote
2
down vote
favorite
My file
command is broken.
$ file
file: symbol lookup error: file: undefined symbol: magic_setparam
$ which file
/usr/local/bin/file
$ ldd $(which file)
linux-vdso.so.1 (0x00007fffc43fd000)
libmagic.so.1 => /usr/local/lib/libmagic.so.1 (0x00007fe48cd2d000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007fe48cb43000)
libz.so.1 => /lib/x86_64-linux-gnu/libz.so.1 (0x00007fe48c926000)
/lib64/ld-linux-x86-64.so.2 (0x00007fe48cf86000)
$ # I have a file command in /usr/bin/ as well
$ # but the same thing happens, and the ldd output for it
$ # is identical to the one above
$ /usr/bin/file
/usr/bin/file: symbol lookup error: /usr/bin/file: undefined symbol: magic_setparam
I tried reinstalling the file
command, as well as reinstalling libmagic
(and libmagic-dev
) but to no avail.
I am running Ubuntu 18.10 (Cosmic Cuttlefish) but I was experiencing the same issue on 18.04.
command-line files file-command
add a comment |
up vote
2
down vote
favorite
My file
command is broken.
$ file
file: symbol lookup error: file: undefined symbol: magic_setparam
$ which file
/usr/local/bin/file
$ ldd $(which file)
linux-vdso.so.1 (0x00007fffc43fd000)
libmagic.so.1 => /usr/local/lib/libmagic.so.1 (0x00007fe48cd2d000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007fe48cb43000)
libz.so.1 => /lib/x86_64-linux-gnu/libz.so.1 (0x00007fe48c926000)
/lib64/ld-linux-x86-64.so.2 (0x00007fe48cf86000)
$ # I have a file command in /usr/bin/ as well
$ # but the same thing happens, and the ldd output for it
$ # is identical to the one above
$ /usr/bin/file
/usr/bin/file: symbol lookup error: /usr/bin/file: undefined symbol: magic_setparam
I tried reinstalling the file
command, as well as reinstalling libmagic
(and libmagic-dev
) but to no avail.
I am running Ubuntu 18.10 (Cosmic Cuttlefish) but I was experiencing the same issue on 18.04.
command-line files file-command
1
Please add output ofwhich file
andldd $(which file)
to the question.
– N0rbert
Nov 27 at 20:30
@N0rbert added.
– ArtBIT
Nov 27 at 22:51
add a comment |
up vote
2
down vote
favorite
up vote
2
down vote
favorite
My file
command is broken.
$ file
file: symbol lookup error: file: undefined symbol: magic_setparam
$ which file
/usr/local/bin/file
$ ldd $(which file)
linux-vdso.so.1 (0x00007fffc43fd000)
libmagic.so.1 => /usr/local/lib/libmagic.so.1 (0x00007fe48cd2d000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007fe48cb43000)
libz.so.1 => /lib/x86_64-linux-gnu/libz.so.1 (0x00007fe48c926000)
/lib64/ld-linux-x86-64.so.2 (0x00007fe48cf86000)
$ # I have a file command in /usr/bin/ as well
$ # but the same thing happens, and the ldd output for it
$ # is identical to the one above
$ /usr/bin/file
/usr/bin/file: symbol lookup error: /usr/bin/file: undefined symbol: magic_setparam
I tried reinstalling the file
command, as well as reinstalling libmagic
(and libmagic-dev
) but to no avail.
I am running Ubuntu 18.10 (Cosmic Cuttlefish) but I was experiencing the same issue on 18.04.
command-line files file-command
My file
command is broken.
$ file
file: symbol lookup error: file: undefined symbol: magic_setparam
$ which file
/usr/local/bin/file
$ ldd $(which file)
linux-vdso.so.1 (0x00007fffc43fd000)
libmagic.so.1 => /usr/local/lib/libmagic.so.1 (0x00007fe48cd2d000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007fe48cb43000)
libz.so.1 => /lib/x86_64-linux-gnu/libz.so.1 (0x00007fe48c926000)
/lib64/ld-linux-x86-64.so.2 (0x00007fe48cf86000)
$ # I have a file command in /usr/bin/ as well
$ # but the same thing happens, and the ldd output for it
$ # is identical to the one above
$ /usr/bin/file
/usr/bin/file: symbol lookup error: /usr/bin/file: undefined symbol: magic_setparam
I tried reinstalling the file
command, as well as reinstalling libmagic
(and libmagic-dev
) but to no avail.
I am running Ubuntu 18.10 (Cosmic Cuttlefish) but I was experiencing the same issue on 18.04.
command-line files file-command
command-line files file-command
edited Nov 27 at 22:56
asked Nov 27 at 16:01
ArtBIT
1336
1336
1
Please add output ofwhich file
andldd $(which file)
to the question.
– N0rbert
Nov 27 at 20:30
@N0rbert added.
– ArtBIT
Nov 27 at 22:51
add a comment |
1
Please add output ofwhich file
andldd $(which file)
to the question.
– N0rbert
Nov 27 at 20:30
@N0rbert added.
– ArtBIT
Nov 27 at 22:51
1
1
Please add output of
which file
and ldd $(which file)
to the question.– N0rbert
Nov 27 at 20:30
Please add output of
which file
and ldd $(which file)
to the question.– N0rbert
Nov 27 at 20:30
@N0rbert added.
– ArtBIT
Nov 27 at 22:51
@N0rbert added.
– ArtBIT
Nov 27 at 22:51
add a comment |
1 Answer
1
active
oldest
votes
up vote
2
down vote
accepted
You should remove locally installed/compiled version of libmagic
with
sudo rm /usr/local/lib/libmagic.so.1
and then call file
again.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
You should remove locally installed/compiled version of libmagic
with
sudo rm /usr/local/lib/libmagic.so.1
and then call file
again.
add a comment |
up vote
2
down vote
accepted
You should remove locally installed/compiled version of libmagic
with
sudo rm /usr/local/lib/libmagic.so.1
and then call file
again.
add a comment |
up vote
2
down vote
accepted
up vote
2
down vote
accepted
You should remove locally installed/compiled version of libmagic
with
sudo rm /usr/local/lib/libmagic.so.1
and then call file
again.
You should remove locally installed/compiled version of libmagic
with
sudo rm /usr/local/lib/libmagic.so.1
and then call file
again.
edited Nov 28 at 15:51
answered Nov 28 at 15:16
N0rbert
20.3k54494
20.3k54494
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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%2f1096540%2ffile-symbol-lookup-error-file-undefined-symbol-magic-setparam%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
1
Please add output of
which file
andldd $(which file)
to the question.– N0rbert
Nov 27 at 20:30
@N0rbert added.
– ArtBIT
Nov 27 at 22:51