Don't have directory '/usr/lib/x86_64-linux-gnu'. But instructions to install a software says './configure --with-ssl-lib=/usr/lib/x86_64-linux-gnu'

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
0
down vote

favorite












I am trying to install NRPE (nagios remote plugin executor) in a CentOS system. In the configuration step, the document I have been given to refer to says,



./configure --enable-command-args --with-nagios-user=nagios --with-nagios-group=nagios --with-ssl=/usr/bin/openssl --with-ssl-lib=/usr/lib/x86_64-linux-gnu


But the directory /usr/lib/x86_64-linux-gnu is not present in my system. These are the contents of the /usr/lib directory:



[root@pr2 ~]# ls /usr/lib
lib/ lib64/ libexec/

[root@pr2 ~]# ls /usr/lib/
binfmt.d/ grub/ NetworkManager/ sysctl.d/
cpp kbd/ polkit-1/ systemd/
debug/ kdump/ python2.7/ tmpfiles.d/
dracut/ kernel/ rpm/ tuned/
firewalld/ locale/ sendmail udev/
firmware/ modprobe.d/ sendmail.postfix yum-plugins/
games/ modules/ sendmail.sendmail
gcc/ modules-load.d/ sse2/


According to the answer here, it may be that more modern system have this directory (although the question and answer in the link is about Ubuntu, I think it is safe to assume that the same is true of CentOS systems, since my installation doc for CentOS mentions this directory?). So, what do I replace the location in the aforementioned command with if I am missing that directory?



In case it helps, this is the version of CentOS in my machine:



[root@pr2 ~]# rpm --query centos-release
centos-release-7-4.1708.el7.centos.x86_64






share|improve this question
























    up vote
    0
    down vote

    favorite












    I am trying to install NRPE (nagios remote plugin executor) in a CentOS system. In the configuration step, the document I have been given to refer to says,



    ./configure --enable-command-args --with-nagios-user=nagios --with-nagios-group=nagios --with-ssl=/usr/bin/openssl --with-ssl-lib=/usr/lib/x86_64-linux-gnu


    But the directory /usr/lib/x86_64-linux-gnu is not present in my system. These are the contents of the /usr/lib directory:



    [root@pr2 ~]# ls /usr/lib
    lib/ lib64/ libexec/

    [root@pr2 ~]# ls /usr/lib/
    binfmt.d/ grub/ NetworkManager/ sysctl.d/
    cpp kbd/ polkit-1/ systemd/
    debug/ kdump/ python2.7/ tmpfiles.d/
    dracut/ kernel/ rpm/ tuned/
    firewalld/ locale/ sendmail udev/
    firmware/ modprobe.d/ sendmail.postfix yum-plugins/
    games/ modules/ sendmail.sendmail
    gcc/ modules-load.d/ sse2/


    According to the answer here, it may be that more modern system have this directory (although the question and answer in the link is about Ubuntu, I think it is safe to assume that the same is true of CentOS systems, since my installation doc for CentOS mentions this directory?). So, what do I replace the location in the aforementioned command with if I am missing that directory?



    In case it helps, this is the version of CentOS in my machine:



    [root@pr2 ~]# rpm --query centos-release
    centos-release-7-4.1708.el7.centos.x86_64






    share|improve this question






















      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I am trying to install NRPE (nagios remote plugin executor) in a CentOS system. In the configuration step, the document I have been given to refer to says,



      ./configure --enable-command-args --with-nagios-user=nagios --with-nagios-group=nagios --with-ssl=/usr/bin/openssl --with-ssl-lib=/usr/lib/x86_64-linux-gnu


      But the directory /usr/lib/x86_64-linux-gnu is not present in my system. These are the contents of the /usr/lib directory:



      [root@pr2 ~]# ls /usr/lib
      lib/ lib64/ libexec/

      [root@pr2 ~]# ls /usr/lib/
      binfmt.d/ grub/ NetworkManager/ sysctl.d/
      cpp kbd/ polkit-1/ systemd/
      debug/ kdump/ python2.7/ tmpfiles.d/
      dracut/ kernel/ rpm/ tuned/
      firewalld/ locale/ sendmail udev/
      firmware/ modprobe.d/ sendmail.postfix yum-plugins/
      games/ modules/ sendmail.sendmail
      gcc/ modules-load.d/ sse2/


      According to the answer here, it may be that more modern system have this directory (although the question and answer in the link is about Ubuntu, I think it is safe to assume that the same is true of CentOS systems, since my installation doc for CentOS mentions this directory?). So, what do I replace the location in the aforementioned command with if I am missing that directory?



      In case it helps, this is the version of CentOS in my machine:



      [root@pr2 ~]# rpm --query centos-release
      centos-release-7-4.1708.el7.centos.x86_64






      share|improve this question












      I am trying to install NRPE (nagios remote plugin executor) in a CentOS system. In the configuration step, the document I have been given to refer to says,



      ./configure --enable-command-args --with-nagios-user=nagios --with-nagios-group=nagios --with-ssl=/usr/bin/openssl --with-ssl-lib=/usr/lib/x86_64-linux-gnu


      But the directory /usr/lib/x86_64-linux-gnu is not present in my system. These are the contents of the /usr/lib directory:



      [root@pr2 ~]# ls /usr/lib
      lib/ lib64/ libexec/

      [root@pr2 ~]# ls /usr/lib/
      binfmt.d/ grub/ NetworkManager/ sysctl.d/
      cpp kbd/ polkit-1/ systemd/
      debug/ kdump/ python2.7/ tmpfiles.d/
      dracut/ kernel/ rpm/ tuned/
      firewalld/ locale/ sendmail udev/
      firmware/ modprobe.d/ sendmail.postfix yum-plugins/
      games/ modules/ sendmail.sendmail
      gcc/ modules-load.d/ sse2/


      According to the answer here, it may be that more modern system have this directory (although the question and answer in the link is about Ubuntu, I think it is safe to assume that the same is true of CentOS systems, since my installation doc for CentOS mentions this directory?). So, what do I replace the location in the aforementioned command with if I am missing that directory?



      In case it helps, this is the version of CentOS in my machine:



      [root@pr2 ~]# rpm --query centos-release
      centos-release-7-4.1708.el7.centos.x86_64








      share|improve this question











      share|improve this question




      share|improve this question










      asked Jan 22 at 2:40









      Kristada673

      1012




      1012




















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          0
          down vote













          /usr/lib/x86_64-linux-gnu is a debian-ism, try /usr/lib64 instead






          share|improve this answer




















            Your Answer







            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "106"
            ;
            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: false,
            noModals: false,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );








             

            draft saved


            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f418730%2fdont-have-directory-usr-lib-x86-64-linux-gnu-but-instructions-to-install-a%23new-answer', 'question_page');

            );

            Post as a guest






























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            0
            down vote













            /usr/lib/x86_64-linux-gnu is a debian-ism, try /usr/lib64 instead






            share|improve this answer
























              up vote
              0
              down vote













              /usr/lib/x86_64-linux-gnu is a debian-ism, try /usr/lib64 instead






              share|improve this answer






















                up vote
                0
                down vote










                up vote
                0
                down vote









                /usr/lib/x86_64-linux-gnu is a debian-ism, try /usr/lib64 instead






                share|improve this answer












                /usr/lib/x86_64-linux-gnu is a debian-ism, try /usr/lib64 instead







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered May 31 at 11:03









                Bigon

                1,129613




                1,129613






















                     

                    draft saved


                    draft discarded


























                     


                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f418730%2fdont-have-directory-usr-lib-x86-64-linux-gnu-but-instructions-to-install-a%23new-answer', 'question_page');

                    );

                    Post as a guest













































































                    Popular posts from this blog

                    How to check contact read email or not when send email to Individual?

                    Bahrain

                    Postfix configuration issue with fips on centos 7; mailgun relay