What is the difference between install a package from source(tar.xz) & from rpm [duplicate]
Clash Royale CLAN TAG#URR8PPP
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom: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
? centos
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.
add a comment |
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
? centos
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.
add a comment |
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
? centos
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
centos
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.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
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
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
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
add a comment |
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
add a comment |
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
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
answered Mar 13 at 8:09
Mokhless HachichaMokhless Hachicha
262
262
add a comment |
add a comment |