when 'Error: Nothing to do' error occur in install through yum?Meaning of the yum error “Package tuple...
Confusion about capacitors
What is the strongest case that can be made in favour of the UK regaining some control over fishing policy after Brexit?
Has any spacecraft ever had the ability to directly communicate with civilian air traffic control?
How to creep the reader out with what seems like a normal person?
Illegal assignment from SObject to Contact
What's the polite way to say "I need to urinate"?
What is the difference between `a[bc]d` (brackets) and `a{b,c}d` (braces)?
Why does nature favour the Laplacian?
Does a creature that is immune to a condition still make a saving throw?
Is GOCE a satellite or aircraft?
Why do computer-science majors learn calculus?
Multiple options for Pseudonyms
Why is current rating for multicore cable lower than single core with the same cross section?
Why does Bran Stark feel that Jon Snow "needs to know" about his lineage?
What gives an electron its charge?
Any examples of headwear for races with animal ears?
How to create an ad-hoc wireless network in Ubuntu
How to determine the actual or "true" resolution of a digital photograph?
How to replace the "space symbol" (squat-u) in listings?
Does the EU Common Fisheries Policy cover British Overseas Territories?
Historically, were women trained for obligatory wars? Or did they serve some other military function?
Modify locally tikzset
Where did the extra Pym particles come from in Endgame?
Why was Germany not as successful as other Europeans in establishing overseas colonies?
when 'Error: Nothing to do' error occur in install through yum?
Meaning of the yum error “Package tuple (…) could not be found in rpmdb”yum install package without updating other packages or fail…?yum install kernel-devel: “Nothing to do” [SOLVED]Difference between yum update vs yum installHow to install or upgrade package with yum with a zero exit code?YUM failing install; not recognizing JDKyum install rpm but keep old versionyum install overwrite manual installationPrune yum of stale installed packages/duplicate gcc packages after manual installSkip already-installed packages in “yum install”?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I know one situation of this will occur when u already installed the latest version of a package then it will occur.
is there any other situations that this error occur?
linux centos yum
add a comment |
I know one situation of this will occur when u already installed the latest version of a package then it will occur.
is there any other situations that this error occur?
linux centos yum
add a comment |
I know one situation of this will occur when u already installed the latest version of a package then it will occur.
is there any other situations that this error occur?
linux centos yum
I know one situation of this will occur when u already installed the latest version of a package then it will occur.
is there any other situations that this error occur?
linux centos yum
linux centos yum
asked Dec 7 '16 at 5:37
salauddinsalauddin
55225
55225
add a comment |
add a comment |
4 Answers
4
active
oldest
votes
Yum shows this error when it is unable to proceed with the command.
There can be many reasons why this message could appear:
- The package is already installed and up-to-date
- The package does not exist on the configured repository
- No repository is correctly configured
- There was a problem fetching the package from the remote URL (unable to connect, cannot find the package, etc.)
- The package requires dependencies that aren't available
- The package conflicts with another installed package
To troubleshoot the issue, you should focus on the message which appears before "Nothing to do", and not on the message "Nothing to do" which is purely the result of the error.
add a comment |
If you want to install a package through yum. and yum does not found the package on repository then this error will occur.
add a comment |
Another case is when the package is excluded.
For example my system's yum.conf file contains
exclude=*.i386 *.i586 *.i686
This means any i686 package is excluded by default!
A workaround for that case is:
sudo yum install --disableexcludes=all foobar.i686.rpm
See https://serverfault.com/questions/529386/can-you-force-yum-to-ignore-an-exclude-list
add a comment |
Thank you, next, I'm so fking greatful for my ex.
New contributor
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%2f328579%2fwhen-error-nothing-to-do-error-occur-in-install-through-yum%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
Yum shows this error when it is unable to proceed with the command.
There can be many reasons why this message could appear:
- The package is already installed and up-to-date
- The package does not exist on the configured repository
- No repository is correctly configured
- There was a problem fetching the package from the remote URL (unable to connect, cannot find the package, etc.)
- The package requires dependencies that aren't available
- The package conflicts with another installed package
To troubleshoot the issue, you should focus on the message which appears before "Nothing to do", and not on the message "Nothing to do" which is purely the result of the error.
add a comment |
Yum shows this error when it is unable to proceed with the command.
There can be many reasons why this message could appear:
- The package is already installed and up-to-date
- The package does not exist on the configured repository
- No repository is correctly configured
- There was a problem fetching the package from the remote URL (unable to connect, cannot find the package, etc.)
- The package requires dependencies that aren't available
- The package conflicts with another installed package
To troubleshoot the issue, you should focus on the message which appears before "Nothing to do", and not on the message "Nothing to do" which is purely the result of the error.
add a comment |
Yum shows this error when it is unable to proceed with the command.
There can be many reasons why this message could appear:
- The package is already installed and up-to-date
- The package does not exist on the configured repository
- No repository is correctly configured
- There was a problem fetching the package from the remote URL (unable to connect, cannot find the package, etc.)
- The package requires dependencies that aren't available
- The package conflicts with another installed package
To troubleshoot the issue, you should focus on the message which appears before "Nothing to do", and not on the message "Nothing to do" which is purely the result of the error.
Yum shows this error when it is unable to proceed with the command.
There can be many reasons why this message could appear:
- The package is already installed and up-to-date
- The package does not exist on the configured repository
- No repository is correctly configured
- There was a problem fetching the package from the remote URL (unable to connect, cannot find the package, etc.)
- The package requires dependencies that aren't available
- The package conflicts with another installed package
To troubleshoot the issue, you should focus on the message which appears before "Nothing to do", and not on the message "Nothing to do" which is purely the result of the error.
edited Dec 7 '16 at 7:47
answered Dec 7 '16 at 7:10
dr01dr01
16.3k115475
16.3k115475
add a comment |
add a comment |
If you want to install a package through yum. and yum does not found the package on repository then this error will occur.
add a comment |
If you want to install a package through yum. and yum does not found the package on repository then this error will occur.
add a comment |
If you want to install a package through yum. and yum does not found the package on repository then this error will occur.
If you want to install a package through yum. and yum does not found the package on repository then this error will occur.
answered Dec 7 '16 at 5:58
RakibRakib
1,029813
1,029813
add a comment |
add a comment |
Another case is when the package is excluded.
For example my system's yum.conf file contains
exclude=*.i386 *.i586 *.i686
This means any i686 package is excluded by default!
A workaround for that case is:
sudo yum install --disableexcludes=all foobar.i686.rpm
See https://serverfault.com/questions/529386/can-you-force-yum-to-ignore-an-exclude-list
add a comment |
Another case is when the package is excluded.
For example my system's yum.conf file contains
exclude=*.i386 *.i586 *.i686
This means any i686 package is excluded by default!
A workaround for that case is:
sudo yum install --disableexcludes=all foobar.i686.rpm
See https://serverfault.com/questions/529386/can-you-force-yum-to-ignore-an-exclude-list
add a comment |
Another case is when the package is excluded.
For example my system's yum.conf file contains
exclude=*.i386 *.i586 *.i686
This means any i686 package is excluded by default!
A workaround for that case is:
sudo yum install --disableexcludes=all foobar.i686.rpm
See https://serverfault.com/questions/529386/can-you-force-yum-to-ignore-an-exclude-list
Another case is when the package is excluded.
For example my system's yum.conf file contains
exclude=*.i386 *.i586 *.i686
This means any i686 package is excluded by default!
A workaround for that case is:
sudo yum install --disableexcludes=all foobar.i686.rpm
See https://serverfault.com/questions/529386/can-you-force-yum-to-ignore-an-exclude-list
answered Aug 4 '17 at 16:53
Bruce AdamsBruce Adams
241210
241210
add a comment |
add a comment |
Thank you, next, I'm so fking greatful for my ex.
New contributor
add a comment |
Thank you, next, I'm so fking greatful for my ex.
New contributor
add a comment |
Thank you, next, I'm so fking greatful for my ex.
New contributor
Thank you, next, I'm so fking greatful for my ex.
New contributor
New contributor
answered 32 mins ago
user350484user350484
1
1
New contributor
New contributor
add a comment |
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.
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%2f328579%2fwhen-error-nothing-to-do-error-occur-in-install-through-yum%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