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

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

Check if a string is entirely made of the same substring

How to pronounce 'c++' in Spanish

Contradiction proof for inequality of P and NP?

What is the unit of time_lock_delta in LND?

Does a large simulator bay have standard public address announcements?

As an international instructor, should I openly talk about my accent?

Co-worker works way more than he should

What is purpose of DB Browser(dbbrowser.aspx) under admin tool?

What makes accurate emulation of old systems a difficult task?

How to have a sharp product image?

Is this a typo in Section 1.8.1 Mathematics for Computer Science?

"Whatever a Russian does, they end up making the Kalashnikov gun"? Are there any similar proverbs in English?

"My boss was furious with me and I have been fired" vs. "My boss was furious with me and I was fired"

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

Mistake in years of experience in resume?

Israeli soda type drink

Will I lose my paid in full property

What was Apollo 13's "Little Jolt" after MECO?

Could moose/elk survive in the Amazon forest?

Rudin 2.10 (b) Example

My admission is revoked after accepting the admission offer

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?

Magical attacks and overcoming damage resistance



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

            How to create a command for the “strange m” symbol in latex? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)How do you make your own symbol when Detexify fails?Writing bold small caps with mathpazo packageplus-minus symbol with parenthesis around the minus signGreek character in Beamer document titleHow to create dashed right arrow over symbol?Currency symbol: Turkish LiraDouble prec as a single symbol?Plus Sign Too Big; How to Call adfbullet?Is there a TeX macro for three-legged pi?How do I get my integral-like symbol to align like the integral?How to selectively substitute a letter with another symbol representing the same letterHow do I generate a less than symbol and vertical bar that are the same height?

            Българска екзархия Съдържание История | Български екзарси | Вижте също | Външни препратки | Литература | Бележки | НавигацияУстав за управлението на българската екзархия. Цариград, 1870Слово на Ловешкия митрополит Иларион при откриването на Българския народен събор в Цариград на 23. II. 1870 г.Българската правда и гръцката кривда. От С. М. (= Софийски Мелетий). Цариград, 1872Предстоятели на Българската екзархияПодмененият ВеликденИнформационна агенция „Фокус“Димитър Ризов. Българите в техните исторически, етнографически и политически граници (Атлас съдържащ 40 карти). Berlin, Königliche Hoflithographie, Hof-Buch- und -Steindruckerei Wilhelm Greve, 1917Report of the International Commission to Inquire into the Causes and Conduct of the Balkan Wars

            Category:Tremithousa Media in category "Tremithousa"Navigation menuUpload media34° 49′ 02.7″ N, 32° 26′ 37.32″ EOpenStreetMapGoogle EarthProximityramaReasonatorScholiaStatisticsWikiShootMe