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.










share|improve this question




















  • 1




    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















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.










share|improve this question




















  • 1




    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













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.










share|improve this question















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 27 at 22:56

























asked Nov 27 at 16:01









ArtBIT

1336




1336








  • 1




    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














  • 1




    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








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










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.






share|improve this answer























    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "89"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    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

























    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.






    share|improve this answer



























      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.






      share|improve this answer

























        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.






        share|improve this answer














        You should remove locally installed/compiled version of libmagic with



        sudo rm /usr/local/lib/libmagic.so.1


        and then call file again.







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Nov 28 at 15:51

























        answered Nov 28 at 15:16









        N0rbert

        20.3k54494




        20.3k54494






























            draft saved

            draft discarded




















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

            ComboBox Display Member on multiple fields

            Is it possible to collect Nectar points via Trainline?