yum not finding correct package version of graphviz
I'm trying to install graphviz version 2.38 on my RHEL workstation. I saved graphviz-rhel.repo in /etc/yum.repos.d
as instructed, but when I run sudo yum list available 'graphviz*'
, the only version it finds is 2.30, which has a bug that has been fixed in later versions so I need to have 2.38. I think the links in graphviz-rhel.repo might be broken which is why yum doesn't find the latest stable packages, but I'm not 100% sure. Thank you.
rhel yum
bumped to the homepage by Community♦ 15 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I'm trying to install graphviz version 2.38 on my RHEL workstation. I saved graphviz-rhel.repo in /etc/yum.repos.d
as instructed, but when I run sudo yum list available 'graphviz*'
, the only version it finds is 2.30, which has a bug that has been fixed in later versions so I need to have 2.38. I think the links in graphviz-rhel.repo might be broken which is why yum doesn't find the latest stable packages, but I'm not 100% sure. Thank you.
rhel yum
bumped to the homepage by Community♦ 15 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
What is your RHEL workstation version? The version depends ond this. The repo files uses $relesver in the path. Some releasever only get older versions...
– Tobias
Nov 30 '16 at 21:35
Other idea: Did you du ayum update
before searching?
– Tobias
Nov 30 '16 at 21:36
@Tobiasyum update
upgrades packages, it's not the same asapt-get update
.
– jordanm
Nov 30 '16 at 23:18
You are right. I just wanted to ensure, that the repositories are refreshed. Better would beyum makecache
.
– Tobias
Dec 1 '16 at 6:06
Did you enable the repo?
– Tobias
Dec 1 '16 at 6:07
add a comment |
I'm trying to install graphviz version 2.38 on my RHEL workstation. I saved graphviz-rhel.repo in /etc/yum.repos.d
as instructed, but when I run sudo yum list available 'graphviz*'
, the only version it finds is 2.30, which has a bug that has been fixed in later versions so I need to have 2.38. I think the links in graphviz-rhel.repo might be broken which is why yum doesn't find the latest stable packages, but I'm not 100% sure. Thank you.
rhel yum
I'm trying to install graphviz version 2.38 on my RHEL workstation. I saved graphviz-rhel.repo in /etc/yum.repos.d
as instructed, but when I run sudo yum list available 'graphviz*'
, the only version it finds is 2.30, which has a bug that has been fixed in later versions so I need to have 2.38. I think the links in graphviz-rhel.repo might be broken which is why yum doesn't find the latest stable packages, but I'm not 100% sure. Thank you.
rhel yum
rhel yum
asked Nov 30 '16 at 20:50
Gustavo RodriguezGustavo Rodriguez
12
12
bumped to the homepage by Community♦ 15 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 15 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
What is your RHEL workstation version? The version depends ond this. The repo files uses $relesver in the path. Some releasever only get older versions...
– Tobias
Nov 30 '16 at 21:35
Other idea: Did you du ayum update
before searching?
– Tobias
Nov 30 '16 at 21:36
@Tobiasyum update
upgrades packages, it's not the same asapt-get update
.
– jordanm
Nov 30 '16 at 23:18
You are right. I just wanted to ensure, that the repositories are refreshed. Better would beyum makecache
.
– Tobias
Dec 1 '16 at 6:06
Did you enable the repo?
– Tobias
Dec 1 '16 at 6:07
add a comment |
What is your RHEL workstation version? The version depends ond this. The repo files uses $relesver in the path. Some releasever only get older versions...
– Tobias
Nov 30 '16 at 21:35
Other idea: Did you du ayum update
before searching?
– Tobias
Nov 30 '16 at 21:36
@Tobiasyum update
upgrades packages, it's not the same asapt-get update
.
– jordanm
Nov 30 '16 at 23:18
You are right. I just wanted to ensure, that the repositories are refreshed. Better would beyum makecache
.
– Tobias
Dec 1 '16 at 6:06
Did you enable the repo?
– Tobias
Dec 1 '16 at 6:07
What is your RHEL workstation version? The version depends ond this. The repo files uses $relesver in the path. Some releasever only get older versions...
– Tobias
Nov 30 '16 at 21:35
What is your RHEL workstation version? The version depends ond this. The repo files uses $relesver in the path. Some releasever only get older versions...
– Tobias
Nov 30 '16 at 21:35
Other idea: Did you du a
yum update
before searching?– Tobias
Nov 30 '16 at 21:36
Other idea: Did you du a
yum update
before searching?– Tobias
Nov 30 '16 at 21:36
@Tobias
yum update
upgrades packages, it's not the same as apt-get update
.– jordanm
Nov 30 '16 at 23:18
@Tobias
yum update
upgrades packages, it's not the same as apt-get update
.– jordanm
Nov 30 '16 at 23:18
You are right. I just wanted to ensure, that the repositories are refreshed. Better would be
yum makecache
.– Tobias
Dec 1 '16 at 6:06
You are right. I just wanted to ensure, that the repositories are refreshed. Better would be
yum makecache
.– Tobias
Dec 1 '16 at 6:06
Did you enable the repo?
– Tobias
Dec 1 '16 at 6:07
Did you enable the repo?
– Tobias
Dec 1 '16 at 6:07
add a comment |
1 Answer
1
active
oldest
votes
Use yum repolist all
to see all repos. Use then yum-config-manager --enable repository-id
to enable your graphviz repo.
If your repo is not listened try yum-config-manager --add-repo http://www.graphviz.org/graphviz-rhel.repo
to add your repo.
I tried both of these. When I usedyum repolist all
I got a few disabled graphviz repos. Then I tried enabling them all but on the status it said 0 after the word "enabled" which I'm guessing means that it's enabled but has no packages? I confirmed this to be true by runningyum list available 'graphviz*'
again and the only version listed after enabling them were still 2.30.
– Gustavo Rodriguez
Dec 1 '16 at 16:51
I think the problem might be that this repo doesn't exist for my particular OS and architecture. When I typeyum repolist all
I get this which is caused by the graphviz-rhel.repo I added to/etc/yum.repo.d
:http://www.graphviz.org/pub/graphviz/development/redhat/el7Workstation/x86_64/debug/repodata/repomd.xml: [Errno 14] HTTP Error 404 - Not Found
– Gustavo Rodriguez
Dec 2 '16 at 17:08
Ah. You have this version. Yes, theres is no repo for it. Check this: graphviz.org/pub/graphviz/development/redhat
– Tobias
Dec 2 '16 at 18:15
You can try the source rpm from graphviz.org. There is one for Red Hat. Howto: itechlounge.net/2012/12/… PS: I have no expereiance with this - just a tip.
– Tobias
Dec 2 '16 at 18:31
add a comment |
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',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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
});
}
});
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%2f327171%2fyum-not-finding-correct-package-version-of-graphviz%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
Use yum repolist all
to see all repos. Use then yum-config-manager --enable repository-id
to enable your graphviz repo.
If your repo is not listened try yum-config-manager --add-repo http://www.graphviz.org/graphviz-rhel.repo
to add your repo.
I tried both of these. When I usedyum repolist all
I got a few disabled graphviz repos. Then I tried enabling them all but on the status it said 0 after the word "enabled" which I'm guessing means that it's enabled but has no packages? I confirmed this to be true by runningyum list available 'graphviz*'
again and the only version listed after enabling them were still 2.30.
– Gustavo Rodriguez
Dec 1 '16 at 16:51
I think the problem might be that this repo doesn't exist for my particular OS and architecture. When I typeyum repolist all
I get this which is caused by the graphviz-rhel.repo I added to/etc/yum.repo.d
:http://www.graphviz.org/pub/graphviz/development/redhat/el7Workstation/x86_64/debug/repodata/repomd.xml: [Errno 14] HTTP Error 404 - Not Found
– Gustavo Rodriguez
Dec 2 '16 at 17:08
Ah. You have this version. Yes, theres is no repo for it. Check this: graphviz.org/pub/graphviz/development/redhat
– Tobias
Dec 2 '16 at 18:15
You can try the source rpm from graphviz.org. There is one for Red Hat. Howto: itechlounge.net/2012/12/… PS: I have no expereiance with this - just a tip.
– Tobias
Dec 2 '16 at 18:31
add a comment |
Use yum repolist all
to see all repos. Use then yum-config-manager --enable repository-id
to enable your graphviz repo.
If your repo is not listened try yum-config-manager --add-repo http://www.graphviz.org/graphviz-rhel.repo
to add your repo.
I tried both of these. When I usedyum repolist all
I got a few disabled graphviz repos. Then I tried enabling them all but on the status it said 0 after the word "enabled" which I'm guessing means that it's enabled but has no packages? I confirmed this to be true by runningyum list available 'graphviz*'
again and the only version listed after enabling them were still 2.30.
– Gustavo Rodriguez
Dec 1 '16 at 16:51
I think the problem might be that this repo doesn't exist for my particular OS and architecture. When I typeyum repolist all
I get this which is caused by the graphviz-rhel.repo I added to/etc/yum.repo.d
:http://www.graphviz.org/pub/graphviz/development/redhat/el7Workstation/x86_64/debug/repodata/repomd.xml: [Errno 14] HTTP Error 404 - Not Found
– Gustavo Rodriguez
Dec 2 '16 at 17:08
Ah. You have this version. Yes, theres is no repo for it. Check this: graphviz.org/pub/graphviz/development/redhat
– Tobias
Dec 2 '16 at 18:15
You can try the source rpm from graphviz.org. There is one for Red Hat. Howto: itechlounge.net/2012/12/… PS: I have no expereiance with this - just a tip.
– Tobias
Dec 2 '16 at 18:31
add a comment |
Use yum repolist all
to see all repos. Use then yum-config-manager --enable repository-id
to enable your graphviz repo.
If your repo is not listened try yum-config-manager --add-repo http://www.graphviz.org/graphviz-rhel.repo
to add your repo.
Use yum repolist all
to see all repos. Use then yum-config-manager --enable repository-id
to enable your graphviz repo.
If your repo is not listened try yum-config-manager --add-repo http://www.graphviz.org/graphviz-rhel.repo
to add your repo.
answered Dec 1 '16 at 6:09
TobiasTobias
464210
464210
I tried both of these. When I usedyum repolist all
I got a few disabled graphviz repos. Then I tried enabling them all but on the status it said 0 after the word "enabled" which I'm guessing means that it's enabled but has no packages? I confirmed this to be true by runningyum list available 'graphviz*'
again and the only version listed after enabling them were still 2.30.
– Gustavo Rodriguez
Dec 1 '16 at 16:51
I think the problem might be that this repo doesn't exist for my particular OS and architecture. When I typeyum repolist all
I get this which is caused by the graphviz-rhel.repo I added to/etc/yum.repo.d
:http://www.graphviz.org/pub/graphviz/development/redhat/el7Workstation/x86_64/debug/repodata/repomd.xml: [Errno 14] HTTP Error 404 - Not Found
– Gustavo Rodriguez
Dec 2 '16 at 17:08
Ah. You have this version. Yes, theres is no repo for it. Check this: graphviz.org/pub/graphviz/development/redhat
– Tobias
Dec 2 '16 at 18:15
You can try the source rpm from graphviz.org. There is one for Red Hat. Howto: itechlounge.net/2012/12/… PS: I have no expereiance with this - just a tip.
– Tobias
Dec 2 '16 at 18:31
add a comment |
I tried both of these. When I usedyum repolist all
I got a few disabled graphviz repos. Then I tried enabling them all but on the status it said 0 after the word "enabled" which I'm guessing means that it's enabled but has no packages? I confirmed this to be true by runningyum list available 'graphviz*'
again and the only version listed after enabling them were still 2.30.
– Gustavo Rodriguez
Dec 1 '16 at 16:51
I think the problem might be that this repo doesn't exist for my particular OS and architecture. When I typeyum repolist all
I get this which is caused by the graphviz-rhel.repo I added to/etc/yum.repo.d
:http://www.graphviz.org/pub/graphviz/development/redhat/el7Workstation/x86_64/debug/repodata/repomd.xml: [Errno 14] HTTP Error 404 - Not Found
– Gustavo Rodriguez
Dec 2 '16 at 17:08
Ah. You have this version. Yes, theres is no repo for it. Check this: graphviz.org/pub/graphviz/development/redhat
– Tobias
Dec 2 '16 at 18:15
You can try the source rpm from graphviz.org. There is one for Red Hat. Howto: itechlounge.net/2012/12/… PS: I have no expereiance with this - just a tip.
– Tobias
Dec 2 '16 at 18:31
I tried both of these. When I used
yum repolist all
I got a few disabled graphviz repos. Then I tried enabling them all but on the status it said 0 after the word "enabled" which I'm guessing means that it's enabled but has no packages? I confirmed this to be true by running yum list available 'graphviz*'
again and the only version listed after enabling them were still 2.30.– Gustavo Rodriguez
Dec 1 '16 at 16:51
I tried both of these. When I used
yum repolist all
I got a few disabled graphviz repos. Then I tried enabling them all but on the status it said 0 after the word "enabled" which I'm guessing means that it's enabled but has no packages? I confirmed this to be true by running yum list available 'graphviz*'
again and the only version listed after enabling them were still 2.30.– Gustavo Rodriguez
Dec 1 '16 at 16:51
I think the problem might be that this repo doesn't exist for my particular OS and architecture. When I type
yum repolist all
I get this which is caused by the graphviz-rhel.repo I added to /etc/yum.repo.d
: http://www.graphviz.org/pub/graphviz/development/redhat/el7Workstation/x86_64/debug/repodata/repomd.xml: [Errno 14] HTTP Error 404 - Not Found
– Gustavo Rodriguez
Dec 2 '16 at 17:08
I think the problem might be that this repo doesn't exist for my particular OS and architecture. When I type
yum repolist all
I get this which is caused by the graphviz-rhel.repo I added to /etc/yum.repo.d
: http://www.graphviz.org/pub/graphviz/development/redhat/el7Workstation/x86_64/debug/repodata/repomd.xml: [Errno 14] HTTP Error 404 - Not Found
– Gustavo Rodriguez
Dec 2 '16 at 17:08
Ah. You have this version. Yes, theres is no repo for it. Check this: graphviz.org/pub/graphviz/development/redhat
– Tobias
Dec 2 '16 at 18:15
Ah. You have this version. Yes, theres is no repo for it. Check this: graphviz.org/pub/graphviz/development/redhat
– Tobias
Dec 2 '16 at 18:15
You can try the source rpm from graphviz.org. There is one for Red Hat. Howto: itechlounge.net/2012/12/… PS: I have no expereiance with this - just a tip.
– Tobias
Dec 2 '16 at 18:31
You can try the source rpm from graphviz.org. There is one for Red Hat. Howto: itechlounge.net/2012/12/… PS: I have no expereiance with this - just a tip.
– Tobias
Dec 2 '16 at 18:31
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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.
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%2f327171%2fyum-not-finding-correct-package-version-of-graphviz%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
What is your RHEL workstation version? The version depends ond this. The repo files uses $relesver in the path. Some releasever only get older versions...
– Tobias
Nov 30 '16 at 21:35
Other idea: Did you du a
yum update
before searching?– Tobias
Nov 30 '16 at 21:36
@Tobias
yum update
upgrades packages, it's not the same asapt-get update
.– jordanm
Nov 30 '16 at 23:18
You are right. I just wanted to ensure, that the repositories are refreshed. Better would be
yum makecache
.– Tobias
Dec 1 '16 at 6:06
Did you enable the repo?
– Tobias
Dec 1 '16 at 6:07