Fedora rpm vs Redhat rpm?
up vote
0
down vote
favorite
We are performing a docker installation on one of our VMS.
We have doubts whether Fedora rpms specifically in EPEL fedora are similar to those for RedHat 7.5.
Is there any difference (rpm) docker and can we install from fedora repo the redhat docker rpm?
docker rpmbuild
New contributor
THEGreatGatsby is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
up vote
0
down vote
favorite
We are performing a docker installation on one of our VMS.
We have doubts whether Fedora rpms specifically in EPEL fedora are similar to those for RedHat 7.5.
Is there any difference (rpm) docker and can we install from fedora repo the redhat docker rpm?
docker rpmbuild
New contributor
THEGreatGatsby is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
We are performing a docker installation on one of our VMS.
We have doubts whether Fedora rpms specifically in EPEL fedora are similar to those for RedHat 7.5.
Is there any difference (rpm) docker and can we install from fedora repo the redhat docker rpm?
docker rpmbuild
New contributor
THEGreatGatsby is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
We are performing a docker installation on one of our VMS.
We have doubts whether Fedora rpms specifically in EPEL fedora are similar to those for RedHat 7.5.
Is there any difference (rpm) docker and can we install from fedora repo the redhat docker rpm?
docker rpmbuild
docker rpmbuild
New contributor
THEGreatGatsby is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
THEGreatGatsby is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited Nov 18 at 5:19
Rui F Ribeiro
38.2k1475123
38.2k1475123
New contributor
THEGreatGatsby is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked Nov 18 at 1:11
THEGreatGatsby
11
11
New contributor
THEGreatGatsby is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
THEGreatGatsby is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
THEGreatGatsby is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
I have previously installed the hdf5-devel 1.8.13 CentOS rpm in RHEL because I needed it to build two R packages but I would recommend against doing so especially with Fedora rpms.
In your case, there is already a docker RPM for RHEL. Installing Fedora rpms in RHEL can break it as they may have dependencies which you'll also have to install and that can cause dependency hells because other packages will be looking for the RHEL version but you'll have the Fedora version installed. Also, Fedora (and CentOS) rpms are not supported in RHEL.
Also, the EPEL repo is only for CentOS and RHEL. It's not available for Fedora. If you want to see which repo a package comes from, use this command:
yum whatprovides package-name
In the Fedora/RHEL/CentOS family, you can also see the names of the repos in /etc/yum.repos.d/. The repos for each distro will be called or begin with:
fedora.repo
redhat.repo
CentOS-Base.repo
Along those lines.
do you know how to see if specific repo is for fedora redhat centos etc? I mean I can see for example epel repo name but not sure if this is for fedora redhat or any other distr?
– THEGreatGatsby
Nov 18 at 1:36
@THEGreatGatsby See my update.
– Nasir Riley
Nov 18 at 1:37
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
I have previously installed the hdf5-devel 1.8.13 CentOS rpm in RHEL because I needed it to build two R packages but I would recommend against doing so especially with Fedora rpms.
In your case, there is already a docker RPM for RHEL. Installing Fedora rpms in RHEL can break it as they may have dependencies which you'll also have to install and that can cause dependency hells because other packages will be looking for the RHEL version but you'll have the Fedora version installed. Also, Fedora (and CentOS) rpms are not supported in RHEL.
Also, the EPEL repo is only for CentOS and RHEL. It's not available for Fedora. If you want to see which repo a package comes from, use this command:
yum whatprovides package-name
In the Fedora/RHEL/CentOS family, you can also see the names of the repos in /etc/yum.repos.d/. The repos for each distro will be called or begin with:
fedora.repo
redhat.repo
CentOS-Base.repo
Along those lines.
do you know how to see if specific repo is for fedora redhat centos etc? I mean I can see for example epel repo name but not sure if this is for fedora redhat or any other distr?
– THEGreatGatsby
Nov 18 at 1:36
@THEGreatGatsby See my update.
– Nasir Riley
Nov 18 at 1:37
add a comment |
up vote
0
down vote
I have previously installed the hdf5-devel 1.8.13 CentOS rpm in RHEL because I needed it to build two R packages but I would recommend against doing so especially with Fedora rpms.
In your case, there is already a docker RPM for RHEL. Installing Fedora rpms in RHEL can break it as they may have dependencies which you'll also have to install and that can cause dependency hells because other packages will be looking for the RHEL version but you'll have the Fedora version installed. Also, Fedora (and CentOS) rpms are not supported in RHEL.
Also, the EPEL repo is only for CentOS and RHEL. It's not available for Fedora. If you want to see which repo a package comes from, use this command:
yum whatprovides package-name
In the Fedora/RHEL/CentOS family, you can also see the names of the repos in /etc/yum.repos.d/. The repos for each distro will be called or begin with:
fedora.repo
redhat.repo
CentOS-Base.repo
Along those lines.
do you know how to see if specific repo is for fedora redhat centos etc? I mean I can see for example epel repo name but not sure if this is for fedora redhat or any other distr?
– THEGreatGatsby
Nov 18 at 1:36
@THEGreatGatsby See my update.
– Nasir Riley
Nov 18 at 1:37
add a comment |
up vote
0
down vote
up vote
0
down vote
I have previously installed the hdf5-devel 1.8.13 CentOS rpm in RHEL because I needed it to build two R packages but I would recommend against doing so especially with Fedora rpms.
In your case, there is already a docker RPM for RHEL. Installing Fedora rpms in RHEL can break it as they may have dependencies which you'll also have to install and that can cause dependency hells because other packages will be looking for the RHEL version but you'll have the Fedora version installed. Also, Fedora (and CentOS) rpms are not supported in RHEL.
Also, the EPEL repo is only for CentOS and RHEL. It's not available for Fedora. If you want to see which repo a package comes from, use this command:
yum whatprovides package-name
In the Fedora/RHEL/CentOS family, you can also see the names of the repos in /etc/yum.repos.d/. The repos for each distro will be called or begin with:
fedora.repo
redhat.repo
CentOS-Base.repo
Along those lines.
I have previously installed the hdf5-devel 1.8.13 CentOS rpm in RHEL because I needed it to build two R packages but I would recommend against doing so especially with Fedora rpms.
In your case, there is already a docker RPM for RHEL. Installing Fedora rpms in RHEL can break it as they may have dependencies which you'll also have to install and that can cause dependency hells because other packages will be looking for the RHEL version but you'll have the Fedora version installed. Also, Fedora (and CentOS) rpms are not supported in RHEL.
Also, the EPEL repo is only for CentOS and RHEL. It's not available for Fedora. If you want to see which repo a package comes from, use this command:
yum whatprovides package-name
In the Fedora/RHEL/CentOS family, you can also see the names of the repos in /etc/yum.repos.d/. The repos for each distro will be called or begin with:
fedora.repo
redhat.repo
CentOS-Base.repo
Along those lines.
edited Nov 18 at 1:37
answered Nov 18 at 1:29
Nasir Riley
2,176239
2,176239
do you know how to see if specific repo is for fedora redhat centos etc? I mean I can see for example epel repo name but not sure if this is for fedora redhat or any other distr?
– THEGreatGatsby
Nov 18 at 1:36
@THEGreatGatsby See my update.
– Nasir Riley
Nov 18 at 1:37
add a comment |
do you know how to see if specific repo is for fedora redhat centos etc? I mean I can see for example epel repo name but not sure if this is for fedora redhat or any other distr?
– THEGreatGatsby
Nov 18 at 1:36
@THEGreatGatsby See my update.
– Nasir Riley
Nov 18 at 1:37
do you know how to see if specific repo is for fedora redhat centos etc? I mean I can see for example epel repo name but not sure if this is for fedora redhat or any other distr?
– THEGreatGatsby
Nov 18 at 1:36
do you know how to see if specific repo is for fedora redhat centos etc? I mean I can see for example epel repo name but not sure if this is for fedora redhat or any other distr?
– THEGreatGatsby
Nov 18 at 1:36
@THEGreatGatsby See my update.
– Nasir Riley
Nov 18 at 1:37
@THEGreatGatsby See my update.
– Nasir Riley
Nov 18 at 1:37
add a comment |
THEGreatGatsby is a new contributor. Be nice, and check out our Code of Conduct.
THEGreatGatsby is a new contributor. Be nice, and check out our Code of Conduct.
THEGreatGatsby is a new contributor. Be nice, and check out our Code of Conduct.
THEGreatGatsby is a new contributor. Be nice, and check out our Code of Conduct.
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%2funix.stackexchange.com%2fquestions%2f482444%2ffedora-rpm-vs-redhat-rpm%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