What is the difference between install a package from source(tar.xz) & from rpm [duplicate]

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





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0
















This question already has an answer here:



  • What is the difference between building from source and using an install package?

    5 answers



Take a look at all openconnect versions & this.





For install from source(tar.xz) i act like this :

sudo yum remove ocserv
wget ftp://ftp.infradead.org/pub/ocserv/ocserv-0.12.3.tar.xz
mkdir /usr/local/ocserv
tar xvf ocserv-0.12.3.tar.xz -C /usr/local/ocserv
cd /usr/local/ocserv/ocserv-0.12.3
sudo ./configure && make && make check
sudo make install


In this way yum remove ocserv tells No Match for argument: ocserv.

And in this way sudo systemctl start ocserv tells Failed to start ocserv.service: Unit not found.






For install from rpm i act like this :

wget https://kojipkgs.fedoraproject.org//packages/ocserv/0.12.3/1.el7/x86_64/ocserv-0.12.3-1.el7.x86_64.rpm
yum localinstall ocserv-0.12.3-1.el7.x86_64.rpm





What is the difference between install a package from source(tar.xz) & from rpm?








share|improve this question













marked as duplicate by Stephen Kitt, GAD3R, jimmij, Jeff Schaller, jsbillings Mar 13 at 14:18


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
























    0
















    This question already has an answer here:



    • What is the difference between building from source and using an install package?

      5 answers



    Take a look at all openconnect versions & this.





    For install from source(tar.xz) i act like this :

    sudo yum remove ocserv
    wget ftp://ftp.infradead.org/pub/ocserv/ocserv-0.12.3.tar.xz
    mkdir /usr/local/ocserv
    tar xvf ocserv-0.12.3.tar.xz -C /usr/local/ocserv
    cd /usr/local/ocserv/ocserv-0.12.3
    sudo ./configure && make && make check
    sudo make install


    In this way yum remove ocserv tells No Match for argument: ocserv.

    And in this way sudo systemctl start ocserv tells Failed to start ocserv.service: Unit not found.






    For install from rpm i act like this :

    wget https://kojipkgs.fedoraproject.org//packages/ocserv/0.12.3/1.el7/x86_64/ocserv-0.12.3-1.el7.x86_64.rpm
    yum localinstall ocserv-0.12.3-1.el7.x86_64.rpm





    What is the difference between install a package from source(tar.xz) & from rpm?








    share|improve this question













    marked as duplicate by Stephen Kitt, GAD3R, jimmij, Jeff Schaller, jsbillings Mar 13 at 14:18


    This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.




















      0












      0








      0


      1







      This question already has an answer here:



      • What is the difference between building from source and using an install package?

        5 answers



      Take a look at all openconnect versions & this.





      For install from source(tar.xz) i act like this :

      sudo yum remove ocserv
      wget ftp://ftp.infradead.org/pub/ocserv/ocserv-0.12.3.tar.xz
      mkdir /usr/local/ocserv
      tar xvf ocserv-0.12.3.tar.xz -C /usr/local/ocserv
      cd /usr/local/ocserv/ocserv-0.12.3
      sudo ./configure && make && make check
      sudo make install


      In this way yum remove ocserv tells No Match for argument: ocserv.

      And in this way sudo systemctl start ocserv tells Failed to start ocserv.service: Unit not found.






      For install from rpm i act like this :

      wget https://kojipkgs.fedoraproject.org//packages/ocserv/0.12.3/1.el7/x86_64/ocserv-0.12.3-1.el7.x86_64.rpm
      yum localinstall ocserv-0.12.3-1.el7.x86_64.rpm





      What is the difference between install a package from source(tar.xz) & from rpm?








      share|improve this question















      This question already has an answer here:



      • What is the difference between building from source and using an install package?

        5 answers



      Take a look at all openconnect versions & this.





      For install from source(tar.xz) i act like this :

      sudo yum remove ocserv
      wget ftp://ftp.infradead.org/pub/ocserv/ocserv-0.12.3.tar.xz
      mkdir /usr/local/ocserv
      tar xvf ocserv-0.12.3.tar.xz -C /usr/local/ocserv
      cd /usr/local/ocserv/ocserv-0.12.3
      sudo ./configure && make && make check
      sudo make install


      In this way yum remove ocserv tells No Match for argument: ocserv.

      And in this way sudo systemctl start ocserv tells Failed to start ocserv.service: Unit not found.






      For install from rpm i act like this :

      wget https://kojipkgs.fedoraproject.org//packages/ocserv/0.12.3/1.el7/x86_64/ocserv-0.12.3-1.el7.x86_64.rpm
      yum localinstall ocserv-0.12.3-1.el7.x86_64.rpm





      What is the difference between install a package from source(tar.xz) & from rpm?



      This question already has an answer here:



      • What is the difference between building from source and using an install package?

        5 answers







      centos






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 13 at 7:52









      SilverLightSilverLight

      1551211




      1551211




      marked as duplicate by Stephen Kitt, GAD3R, jimmij, Jeff Schaller, jsbillings Mar 13 at 14:18


      This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.









      marked as duplicate by Stephen Kitt, GAD3R, jimmij, Jeff Schaller, jsbillings Mar 13 at 14:18


      This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.






















          1 Answer
          1






          active

          oldest

          votes


















          1














          The source (tar.xz) is the source code for program, to install , you must compile and install with make and make install.



          For the package .rpm the program is compiled and building, you must just install it with yum.



          I hope it's helpful






          share|improve this answer





























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            1














            The source (tar.xz) is the source code for program, to install , you must compile and install with make and make install.



            For the package .rpm the program is compiled and building, you must just install it with yum.



            I hope it's helpful






            share|improve this answer



























              1














              The source (tar.xz) is the source code for program, to install , you must compile and install with make and make install.



              For the package .rpm the program is compiled and building, you must just install it with yum.



              I hope it's helpful






              share|improve this answer

























                1












                1








                1







                The source (tar.xz) is the source code for program, to install , you must compile and install with make and make install.



                For the package .rpm the program is compiled and building, you must just install it with yum.



                I hope it's helpful






                share|improve this answer













                The source (tar.xz) is the source code for program, to install , you must compile and install with make and make install.



                For the package .rpm the program is compiled and building, you must just install it with yum.



                I hope it's helpful







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 13 at 8:09









                Mokhless HachichaMokhless Hachicha

                262




                262












                    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