Trouble removing package using Yum on CentOS7Yum Fails When Installing PHPBroken yum package treeyum search -...

Is there a better way to say "see someone's dreams"?

Is Diceware more secure than a long passphrase?

Was Dennis Ritchie being too modest in this quote about C and Pascal?

How do I deal with a coworker that keeps asking to make small superficial changes to a report, and it is seriously triggering my anxiety?

What does "function" actually mean in music?

Trouble removing package using Yum on CentOS7

Drawing a german abacus as in the books of Adam Ries

How can I get rid of an unhelpful parallel branch when unpivoting a single row?

std::unique_ptr of base class holding reference of derived class does not show warning in gcc compiler while naked pointer shows it. Why?

Is there metaphorical meaning of "aus der Haft entlassen"?

Mistake in years of experience in resume?

My admission is revoked after accepting the admission offer

How exactly does Hawking radiation decrease the mass of black holes?

What is the most expensive material in the world that could be used to create Pun-Pun's lute?

Don’t seats that recline flat defeat the purpose of having seatbelts?

What to do with someone that cheated their way through university and a PhD program?

Why do distances seem to matter in the Foundation world?

Apply a different color ramp to subset of categorized symbols in QGIS?

Why didn't the Space Shuttle bounce back into space as many times as possible so as to lose a lot of kinetic energy up there?

How long after the last departure shall the airport stay open for an emergency return?

Should the Product Owner dictate what info the UI needs to display?

How to have a sharp product image?

A Paper Record is What I Hamper

Could moose/elk survive in the Amazon forest?



Trouble removing package using Yum on CentOS7


Yum Fails When Installing PHPBroken yum package treeyum search - package versionHow to accurately check if package is installed in yum?CentOS 5.5 php-posix with dependency error php53-commonYUM Update Errorcentos 6.7 nx freenx unavailableyum - install package forcing replacing filesyum update keeps recreating CentOS7-Base.repoError 404 for centos-sclo-rh-release when trying to install oVirt 4.2






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







2















Problem: Removing python-boto from the system and Yum. It appears to be no longer installed, but still appears in Yum.



Tried: yum clean all; yum check; rpm -e --noscripts python-boto and rpm -e --noscripts python-boto.noarch but has not resolved. Use find to check if package appears to be there. See below for detailed results of each.



Question: What else can I try and what risks are there with trying it



# yum list | grep boto
python-boto.noarch 2.25.0-2.el7.centos extras
python-boto3.noarch 1.4.6-5.el7 base
python2-XStatic-roboto-fontface.noarch 0.4.3.2-4.el7 epel
python2-boto.noarch 2.45.0-3.el7 epel
python2-boto3.noarch 1.4.6-1.el7 epel
python2-botocore.noarch 1.6.0-1.el7 epel


# yum remove python-boto
Loaded plugins: fastestmirror, product-id, search-disabled-repos, subscription-
: manager
This system is not registered with an entitlement server. You can use subscription-manager to register.
No Match for argument: python-boto
No Packages marked for removal


# yum clean all --verbose
Loading "fastestmirror" plugin
Loading "product-id" plugin
Loading "search-disabled-repos" plugin
Loading "subscription-manager" plugin
Updating Subscription Management repositories.
Unable to read consumer identity
This system is not registered with an entitlement server. You can use subscription-manager to register.
Config time: 0.074
Yum version: 3.4.3
Cleaning repos: base epel extras mariadb nodesource openproject-ce remi
: remi-php56 remi-php73 remi-safe updates
Operating on /var/cache/yum/x86_64/7 (see CLEAN OPTIONS in yum(8) for details)
Disk usage of /var/cache/yum/*/* after cleanup:
0 enabled repos
16 M disabled repos:
16 M /var/cache/yum/x86_64/7/centosplus
0 untracked repos
628 other data:
628 /var/cache/yum/x86_64/7/timedhosts
16 M total


# yum list | grep boto
python-boto.noarch 2.25.0-2.el7.centos extras
python-boto3.noarch 1.4.6-5.el7 base
python2-XStatic-roboto-fontface.noarch 0.4.3.2-4.el7 epel
python2-boto.noarch 2.45.0-3.el7 epel
python2-boto3.noarch 1.4.6-1.el7 epel
python2-botocore.noarch 1.6.0-1.el7 epel


# yum check
Loaded plugins: fastestmirror, product-id, search-disabled-repos, subscription-
: manager
This system is not registered with an entitlement server. You can use subscription-manager to register.
check all


# yum list | grep boto
python-boto.noarch 2.25.0-2.el7.centos extras
python-boto3.noarch 1.4.6-5.el7 base
python2-XStatic-roboto-fontface.noarch 0.4.3.2-4.el7 epel
python2-boto.noarch 2.45.0-3.el7 epel
python2-boto3.noarch 1.4.6-1.el7 epel
python2-botocore.noarch 1.6.0-1.el7 epel


# yum remove python-boto
Loaded plugins: fastestmirror, product-id, search-disabled-repos, subscription-
: manager
This system is not registered with an entitlement server. You can use subscription-manager to register.
No Match for argument: python-boto
No Packages marked for removal


# find / -name *boto* -print
/usr/lib/python2.7/site-packages/boto3
/usr/lib/python2.7/site-packages/botocore
/usr/lib/python2.7/site-packages/botocore-1.12.134.dist-info
/usr/lib/python2.7/site-packages/boto3-1.9.134.dist-info

# rpm -e python-boto
error: package python-boto is not installed
# rpm -e --noscrips python-boto
rpm: --noscrips: unknown option
# rpm -e --noscripts python-boto
error: package python-boto is not installed
# rpm -e --noscripts python-boto.noarch
error: package python-boto.noarch is not installed


Your help greatly appreciated.










share|improve this question























  • BTW, you have the subscription-manager yum plugin enabled. Unless you're going to attach this system to a Red Hat Satellite / Spacewalk server for updates, you can and should disable/remove it.

    – Michael Hampton
    3 hours ago


















2















Problem: Removing python-boto from the system and Yum. It appears to be no longer installed, but still appears in Yum.



Tried: yum clean all; yum check; rpm -e --noscripts python-boto and rpm -e --noscripts python-boto.noarch but has not resolved. Use find to check if package appears to be there. See below for detailed results of each.



Question: What else can I try and what risks are there with trying it



# yum list | grep boto
python-boto.noarch 2.25.0-2.el7.centos extras
python-boto3.noarch 1.4.6-5.el7 base
python2-XStatic-roboto-fontface.noarch 0.4.3.2-4.el7 epel
python2-boto.noarch 2.45.0-3.el7 epel
python2-boto3.noarch 1.4.6-1.el7 epel
python2-botocore.noarch 1.6.0-1.el7 epel


# yum remove python-boto
Loaded plugins: fastestmirror, product-id, search-disabled-repos, subscription-
: manager
This system is not registered with an entitlement server. You can use subscription-manager to register.
No Match for argument: python-boto
No Packages marked for removal


# yum clean all --verbose
Loading "fastestmirror" plugin
Loading "product-id" plugin
Loading "search-disabled-repos" plugin
Loading "subscription-manager" plugin
Updating Subscription Management repositories.
Unable to read consumer identity
This system is not registered with an entitlement server. You can use subscription-manager to register.
Config time: 0.074
Yum version: 3.4.3
Cleaning repos: base epel extras mariadb nodesource openproject-ce remi
: remi-php56 remi-php73 remi-safe updates
Operating on /var/cache/yum/x86_64/7 (see CLEAN OPTIONS in yum(8) for details)
Disk usage of /var/cache/yum/*/* after cleanup:
0 enabled repos
16 M disabled repos:
16 M /var/cache/yum/x86_64/7/centosplus
0 untracked repos
628 other data:
628 /var/cache/yum/x86_64/7/timedhosts
16 M total


# yum list | grep boto
python-boto.noarch 2.25.0-2.el7.centos extras
python-boto3.noarch 1.4.6-5.el7 base
python2-XStatic-roboto-fontface.noarch 0.4.3.2-4.el7 epel
python2-boto.noarch 2.45.0-3.el7 epel
python2-boto3.noarch 1.4.6-1.el7 epel
python2-botocore.noarch 1.6.0-1.el7 epel


# yum check
Loaded plugins: fastestmirror, product-id, search-disabled-repos, subscription-
: manager
This system is not registered with an entitlement server. You can use subscription-manager to register.
check all


# yum list | grep boto
python-boto.noarch 2.25.0-2.el7.centos extras
python-boto3.noarch 1.4.6-5.el7 base
python2-XStatic-roboto-fontface.noarch 0.4.3.2-4.el7 epel
python2-boto.noarch 2.45.0-3.el7 epel
python2-boto3.noarch 1.4.6-1.el7 epel
python2-botocore.noarch 1.6.0-1.el7 epel


# yum remove python-boto
Loaded plugins: fastestmirror, product-id, search-disabled-repos, subscription-
: manager
This system is not registered with an entitlement server. You can use subscription-manager to register.
No Match for argument: python-boto
No Packages marked for removal


# find / -name *boto* -print
/usr/lib/python2.7/site-packages/boto3
/usr/lib/python2.7/site-packages/botocore
/usr/lib/python2.7/site-packages/botocore-1.12.134.dist-info
/usr/lib/python2.7/site-packages/boto3-1.9.134.dist-info

# rpm -e python-boto
error: package python-boto is not installed
# rpm -e --noscrips python-boto
rpm: --noscrips: unknown option
# rpm -e --noscripts python-boto
error: package python-boto is not installed
# rpm -e --noscripts python-boto.noarch
error: package python-boto.noarch is not installed


Your help greatly appreciated.










share|improve this question























  • BTW, you have the subscription-manager yum plugin enabled. Unless you're going to attach this system to a Red Hat Satellite / Spacewalk server for updates, you can and should disable/remove it.

    – Michael Hampton
    3 hours ago














2












2








2








Problem: Removing python-boto from the system and Yum. It appears to be no longer installed, but still appears in Yum.



Tried: yum clean all; yum check; rpm -e --noscripts python-boto and rpm -e --noscripts python-boto.noarch but has not resolved. Use find to check if package appears to be there. See below for detailed results of each.



Question: What else can I try and what risks are there with trying it



# yum list | grep boto
python-boto.noarch 2.25.0-2.el7.centos extras
python-boto3.noarch 1.4.6-5.el7 base
python2-XStatic-roboto-fontface.noarch 0.4.3.2-4.el7 epel
python2-boto.noarch 2.45.0-3.el7 epel
python2-boto3.noarch 1.4.6-1.el7 epel
python2-botocore.noarch 1.6.0-1.el7 epel


# yum remove python-boto
Loaded plugins: fastestmirror, product-id, search-disabled-repos, subscription-
: manager
This system is not registered with an entitlement server. You can use subscription-manager to register.
No Match for argument: python-boto
No Packages marked for removal


# yum clean all --verbose
Loading "fastestmirror" plugin
Loading "product-id" plugin
Loading "search-disabled-repos" plugin
Loading "subscription-manager" plugin
Updating Subscription Management repositories.
Unable to read consumer identity
This system is not registered with an entitlement server. You can use subscription-manager to register.
Config time: 0.074
Yum version: 3.4.3
Cleaning repos: base epel extras mariadb nodesource openproject-ce remi
: remi-php56 remi-php73 remi-safe updates
Operating on /var/cache/yum/x86_64/7 (see CLEAN OPTIONS in yum(8) for details)
Disk usage of /var/cache/yum/*/* after cleanup:
0 enabled repos
16 M disabled repos:
16 M /var/cache/yum/x86_64/7/centosplus
0 untracked repos
628 other data:
628 /var/cache/yum/x86_64/7/timedhosts
16 M total


# yum list | grep boto
python-boto.noarch 2.25.0-2.el7.centos extras
python-boto3.noarch 1.4.6-5.el7 base
python2-XStatic-roboto-fontface.noarch 0.4.3.2-4.el7 epel
python2-boto.noarch 2.45.0-3.el7 epel
python2-boto3.noarch 1.4.6-1.el7 epel
python2-botocore.noarch 1.6.0-1.el7 epel


# yum check
Loaded plugins: fastestmirror, product-id, search-disabled-repos, subscription-
: manager
This system is not registered with an entitlement server. You can use subscription-manager to register.
check all


# yum list | grep boto
python-boto.noarch 2.25.0-2.el7.centos extras
python-boto3.noarch 1.4.6-5.el7 base
python2-XStatic-roboto-fontface.noarch 0.4.3.2-4.el7 epel
python2-boto.noarch 2.45.0-3.el7 epel
python2-boto3.noarch 1.4.6-1.el7 epel
python2-botocore.noarch 1.6.0-1.el7 epel


# yum remove python-boto
Loaded plugins: fastestmirror, product-id, search-disabled-repos, subscription-
: manager
This system is not registered with an entitlement server. You can use subscription-manager to register.
No Match for argument: python-boto
No Packages marked for removal


# find / -name *boto* -print
/usr/lib/python2.7/site-packages/boto3
/usr/lib/python2.7/site-packages/botocore
/usr/lib/python2.7/site-packages/botocore-1.12.134.dist-info
/usr/lib/python2.7/site-packages/boto3-1.9.134.dist-info

# rpm -e python-boto
error: package python-boto is not installed
# rpm -e --noscrips python-boto
rpm: --noscrips: unknown option
# rpm -e --noscripts python-boto
error: package python-boto is not installed
# rpm -e --noscripts python-boto.noarch
error: package python-boto.noarch is not installed


Your help greatly appreciated.










share|improve this question














Problem: Removing python-boto from the system and Yum. It appears to be no longer installed, but still appears in Yum.



Tried: yum clean all; yum check; rpm -e --noscripts python-boto and rpm -e --noscripts python-boto.noarch but has not resolved. Use find to check if package appears to be there. See below for detailed results of each.



Question: What else can I try and what risks are there with trying it



# yum list | grep boto
python-boto.noarch 2.25.0-2.el7.centos extras
python-boto3.noarch 1.4.6-5.el7 base
python2-XStatic-roboto-fontface.noarch 0.4.3.2-4.el7 epel
python2-boto.noarch 2.45.0-3.el7 epel
python2-boto3.noarch 1.4.6-1.el7 epel
python2-botocore.noarch 1.6.0-1.el7 epel


# yum remove python-boto
Loaded plugins: fastestmirror, product-id, search-disabled-repos, subscription-
: manager
This system is not registered with an entitlement server. You can use subscription-manager to register.
No Match for argument: python-boto
No Packages marked for removal


# yum clean all --verbose
Loading "fastestmirror" plugin
Loading "product-id" plugin
Loading "search-disabled-repos" plugin
Loading "subscription-manager" plugin
Updating Subscription Management repositories.
Unable to read consumer identity
This system is not registered with an entitlement server. You can use subscription-manager to register.
Config time: 0.074
Yum version: 3.4.3
Cleaning repos: base epel extras mariadb nodesource openproject-ce remi
: remi-php56 remi-php73 remi-safe updates
Operating on /var/cache/yum/x86_64/7 (see CLEAN OPTIONS in yum(8) for details)
Disk usage of /var/cache/yum/*/* after cleanup:
0 enabled repos
16 M disabled repos:
16 M /var/cache/yum/x86_64/7/centosplus
0 untracked repos
628 other data:
628 /var/cache/yum/x86_64/7/timedhosts
16 M total


# yum list | grep boto
python-boto.noarch 2.25.0-2.el7.centos extras
python-boto3.noarch 1.4.6-5.el7 base
python2-XStatic-roboto-fontface.noarch 0.4.3.2-4.el7 epel
python2-boto.noarch 2.45.0-3.el7 epel
python2-boto3.noarch 1.4.6-1.el7 epel
python2-botocore.noarch 1.6.0-1.el7 epel


# yum check
Loaded plugins: fastestmirror, product-id, search-disabled-repos, subscription-
: manager
This system is not registered with an entitlement server. You can use subscription-manager to register.
check all


# yum list | grep boto
python-boto.noarch 2.25.0-2.el7.centos extras
python-boto3.noarch 1.4.6-5.el7 base
python2-XStatic-roboto-fontface.noarch 0.4.3.2-4.el7 epel
python2-boto.noarch 2.45.0-3.el7 epel
python2-boto3.noarch 1.4.6-1.el7 epel
python2-botocore.noarch 1.6.0-1.el7 epel


# yum remove python-boto
Loaded plugins: fastestmirror, product-id, search-disabled-repos, subscription-
: manager
This system is not registered with an entitlement server. You can use subscription-manager to register.
No Match for argument: python-boto
No Packages marked for removal


# find / -name *boto* -print
/usr/lib/python2.7/site-packages/boto3
/usr/lib/python2.7/site-packages/botocore
/usr/lib/python2.7/site-packages/botocore-1.12.134.dist-info
/usr/lib/python2.7/site-packages/boto3-1.9.134.dist-info

# rpm -e python-boto
error: package python-boto is not installed
# rpm -e --noscrips python-boto
rpm: --noscrips: unknown option
# rpm -e --noscripts python-boto
error: package python-boto is not installed
# rpm -e --noscripts python-boto.noarch
error: package python-boto.noarch is not installed


Your help greatly appreciated.







centos7 yum rpm






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked 4 hours ago









TrevorTrevor

1284




1284













  • BTW, you have the subscription-manager yum plugin enabled. Unless you're going to attach this system to a Red Hat Satellite / Spacewalk server for updates, you can and should disable/remove it.

    – Michael Hampton
    3 hours ago



















  • BTW, you have the subscription-manager yum plugin enabled. Unless you're going to attach this system to a Red Hat Satellite / Spacewalk server for updates, you can and should disable/remove it.

    – Michael Hampton
    3 hours ago

















BTW, you have the subscription-manager yum plugin enabled. Unless you're going to attach this system to a Red Hat Satellite / Spacewalk server for updates, you can and should disable/remove it.

– Michael Hampton
3 hours ago





BTW, you have the subscription-manager yum plugin enabled. Unless you're going to attach this system to a Red Hat Satellite / Spacewalk server for updates, you can and should disable/remove it.

– Michael Hampton
3 hours ago










1 Answer
1






active

oldest

votes


















2














The package isn't installed at all.



yum list lists all available packages, whether installed or not.



To show only installed packages, use yum list installed.



yum list installed | grep boto





share|improve this answer
























    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "2"
    };
    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: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    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
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f964663%2ftrouble-removing-package-using-yum-on-centos7%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









    2














    The package isn't installed at all.



    yum list lists all available packages, whether installed or not.



    To show only installed packages, use yum list installed.



    yum list installed | grep boto





    share|improve this answer




























      2














      The package isn't installed at all.



      yum list lists all available packages, whether installed or not.



      To show only installed packages, use yum list installed.



      yum list installed | grep boto





      share|improve this answer


























        2












        2








        2







        The package isn't installed at all.



        yum list lists all available packages, whether installed or not.



        To show only installed packages, use yum list installed.



        yum list installed | grep boto





        share|improve this answer













        The package isn't installed at all.



        yum list lists all available packages, whether installed or not.



        To show only installed packages, use yum list installed.



        yum list installed | grep boto






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered 3 hours ago









        Michael HamptonMichael Hampton

        176k27321651




        176k27321651






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Server Fault!


            • 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.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f964663%2ftrouble-removing-package-using-yum-on-centos7%23new-answer', 'question_page');
            }
            );

            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







            Popular posts from this blog

            “%fieldName is a required field.”, in Magento2 REST API Call for GET Method Type The Next...

            How to change City field to a dropdown in Checkout step Magento 2Magento 2 : How to change UI field(s)...

            夢乃愛華...