Trouble removing package using Yum on CentOS7Yum 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

Older movie/show about humans on derelict alien warship which refuels by passing through a star

Co-worker works way more than he should

Retract an already submitted recommendation letter (written for an undergrad student)

Combinatorics problem, right solution?

Find the identical rows in a matrix

Why did Rep. Omar conclude her criticism of US troops with the phrase "NotTodaySatan"?

How to have a sharp product image?

Work requires me to come in early to start computer but wont let me clock in to get paid for it

What is the best way to deal with NPC-NPC combat?

Contradiction proof for inequality of P and NP?

How important is it that $TERM is correct?

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 can I get rid of an unhelpful parallel branch when unpivoting a single row?

Drawing a german abacus as in the books of Adam Ries

Can a Bard use the Spell Glyph option of the Glyph of Warding spell and cast a known spell into the glyph?

What is this word supposed to be?

Do I need to watch Ant-Man and the Wasp and Captain Marvel before watching Avengers: Endgame?

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

Is Electric Central Heating worth it if using Solar Panels?

Creating a chemical industry from a medieval tech level without petroleum

Philosophical question on logistic regression: why isn't the optimal threshold value trained?

Integral that is continuous and looks like it converges to a geometric series

Island of Knights, Knaves and Spies

Is there really no use for MD5 anymore?



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
    4 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
    4 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
    4 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
    4 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
4 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
4 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 4 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

            Are there any AGPL-style licences that require source code modifications to be public? Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Force derivative works to be publicAre there any GPL like licenses for Apple App Store?Do you violate the GPL if you provide source code that cannot be compiled?GPL - is it distribution to use libraries in an appliance loaned to customers?Distributing App for free which uses GPL'ed codeModifications of server software under GPL, with web/CLI interfaceDoes using an AGPLv3-licensed library prevent me from dual-licensing my own source code?Can I publish only select code under GPLv3 from a private project?Is there published precedent regarding the scope of covered work that uses AGPL software?If MIT licensed code links to GPL licensed code what should be the license of the resulting binary program?If I use a public API endpoint that has its source code licensed under AGPL in my app, do I need to disclose my source?

            2013 GY136 Descoberta | Órbita | Referências Menu de navegação«List Of Centaurs and Scattered-Disk Objects»«List of Known Trans-Neptunian Objects»

            Button changing it's text & action. Good or terrible? The 2019 Stack Overflow Developer Survey Results Are Inchanging text on user mouseoverShould certain functions be “hard to find” for powerusers to discover?Custom liking function - do I need user login?Using different checkbox style for different checkbox behaviorBest Practices: Save and Exit in Software UIInteraction with remote validated formMore efficient UI to progress the user through a complicated process?Designing a popup notice for a gameShould bulk-editing functions be hidden until a table row is selected, or is there a better solution?Is it bad practice to disable (replace) the context menu?