{"id":786,"date":"2019-02-21T11:05:25","date_gmt":"2019-02-21T17:05:25","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=786"},"modified":"2019-02-21T11:05:25","modified_gmt":"2019-02-21T17:05:25","slug":"how-to-reveal-all-install-commands-using-yum","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-reveal-all-install-commands-using-yum\/","title":{"rendered":"How to Reveal All &#8220;Install&#8221; Commands Using Yum"},"content":{"rendered":"<div id=\"linux-911496410\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p class=\"p1\"><span class=\"s1\">Sometimes, working with YUM &#8211; the default CentOS package manager &#8211; can feel unintuitive and cumbersome. Sure, it&#8217;s better than using the even more barebones RPM package manager, but it still leaves a lot to be desired. Take YUM&#8217;s &#8220;history&#8221; command, for instance. The idea of that command is to give you a general idea of what package operations you&#8217;ve carried out recently. So if you&#8217;ve been installing stuff, upgrading older packages, or updating CentOS itself, YUM will keep a record of it all.<\/span><\/p>\n<p><!--more--><\/p>\n<h2 class=\"p2\"><span class=\"s1\">Getting a List of Manually Installed Packages<\/span><\/h2>\n<p class=\"p1\"><span class=\"s1\">We can often install stuff that only ends up getting used a handful of times, which then ends up getting forgotten about being installed in the first place. This results in packages accumulating over a period of time, using up space, and cluttering our system files. It&#8217;s a good practice to clean them out every now and then. But how do we know which packages we installed manually?<\/span><\/p>\n<p class=\"p1\"><span class=\"s1\">If we use the history feature built into YUM by typing the following:<\/span><\/p>\n<pre class=\"p1\"><span class=\"s1\">yum history<\/span><\/pre>\n<p class=\"p1\"><span class=\"s1\">We get an output similar to this:<\/span><\/p>\n<figure id=\"attachment_787\" class=\"thumbnail wp-caption aligncenter\" style=\"width: 786px\"><img decoding=\"async\" class=\"size-full wp-image-787\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/02\/No-Commands-Available.jpg\" alt=\"\" width=\"776\" height=\"343\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/02\/No-Commands-Available.jpg 776w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/02\/No-Commands-Available-300x133.jpg 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/02\/No-Commands-Available-768x339.jpg 768w\" sizes=\"(max-width: 776px) 100vw, 776px\" \/><figcaption class=\"caption wp-caption-text\">No Commands are Shown<\/figcaption><\/figure>\n<p class=\"p1\"><span class=\"s1\">This tells us the following:<\/span><\/p>\n<ol class=\"ol1\">\n<li class=\"li1\"><span class=\"s1\">The transaction ID<\/span><\/li>\n<li class=\"li1\"><span class=\"s1\">The Username<\/span><\/li>\n<li class=\"li1\"><span class=\"s1\">The Date<\/span><\/li>\n<li class=\"li1\"><span class=\"s1\">The Actions that were carried out<\/span><\/li>\n<li class=\"li1\"><span class=\"s1\">The Number of files and\/or packages altered<\/span><\/li>\n<\/ol>\n<p class=\"p1\"><span class=\"s1\">Unfortunately, this doesn&#8217;t tell us which specific packages were installed, nor does it give us the commands used or options used in conjunction with the comma<\/span><span class=\"s1\">nds. Without these two crucial pieces of information, we can&#8217;t know what was installed.<\/span><\/p>\n<p class=\"p1\"><span class=\"s1\">Luckily, YUM allows us to specify the &#8220;setopt&#8221; parameter, which will give us the command name. We use it like this:<\/span><\/p>\n<pre class=\"p1\"><span class=\"s1\">sudo yum --setopt=history_list_view=commands history<\/span><\/pre>\n<p class=\"p1\"><span class=\"s1\">We can now get the history together with the commands as well:<\/span><\/p>\n<figure id=\"attachment_788\" class=\"thumbnail wp-caption aligncenter\" style=\"width: 667px\"><img decoding=\"async\" class=\"size-full wp-image-788\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/02\/List-of-Commands.jpg\" alt=\"List of Commands\" width=\"657\" height=\"362\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/02\/List-of-Commands.jpg 657w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/02\/List-of-Commands-300x165.jpg 300w\" sizes=\"(max-width: 657px) 100vw, 657px\" \/><figcaption class=\"caption wp-caption-text\">List of Commands<\/figcaption><\/figure>\n<p class=\"p1\"><span class=\"s1\">This is definitely an improvement over the previous output &#8211; we now at least know which packages we were working with.<\/span><\/p>\n<p class=\"p1\"><span class=\"s1\">However, it isn&#8217;t close enough to what we&#8217;re looking for. For one, the package names are often cut off (because they can get <i>really<\/i> long in Linux and not fit in the output), and second, there&#8217;s no filter for us to only display the commands related to installing packages with &#8220;install&#8221;.<\/span><\/p>\n<p class=\"p1\"><span class=\"s1\">Luckily, this information is available, but we can&#8217;t access it directly through the yum command. Instead, we have to go to the backend database where YUM stores its transaction history, and extract it from there.<\/span><\/p>\n<h2 class=\"p2\"><span class=\"s1\">Accessing the Yum SQLite Database<\/span><\/h2>\n<p class=\"p1\"><span class=\"s1\">Instead of a text file, YUM stores its transaction data in an SQLite file. This data is located in the directory <code>\/var\/lib\/yum\/history<\/code>.<\/span><\/p>\n<p class=\"p1\"><span class=\"s1\">When we list the files found at this location, we can see the one with the &#8220;SQLite&#8221; extension, like this:<\/span><\/p>\n<figure id=\"attachment_789\" class=\"thumbnail wp-caption aligncenter\" style=\"width: 694px\"><img decoding=\"async\" class=\"size-full wp-image-789\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/02\/SQLite3-Database-Location.jpg\" alt=\"\" width=\"684\" height=\"297\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/02\/SQLite3-Database-Location.jpg 684w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/02\/SQLite3-Database-Location-300x130.jpg 300w\" sizes=\"(max-width: 684px) 100vw, 684px\" \/><figcaption class=\"caption wp-caption-text\">SQLite3 Database Location<\/figcaption><\/figure>\n<p class=\"p1\"><span class=\"s1\">Just like with a regular database, we can query it using the built-in sqlite3 package that comes pre-installed with Linux. What we want is to find all rows where the &#8220;cmdline&#8221; contains the word &#8220;install&#8221;. Here&#8217;s the command:<\/span><\/p>\n<pre class=\"p1\"><span class=\"s1\">sqlite3 \/var\/lib\/yum\/history\/<b>history-2013-01-26.sqlite<\/b> \"select tid, cmdline from trans_cmdline WHERE cmdline LIKE '%install%'\"<\/span><\/pre>\n<p class=\"p1\"><span class=\"s1\">Replace <b>history-2013-01-26.sqlite<\/b> with the name of the SQLite file you got in the previous screenshot. Upon running this command, we see the following:<\/span><\/p>\n<figure id=\"attachment_790\" class=\"thumbnail wp-caption aligncenter\" style=\"width: 669px\"><img decoding=\"async\" class=\"size-full wp-image-790\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/02\/List-Installed-Packages-Yum.jpg\" alt=\"\" width=\"659\" height=\"468\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/02\/List-Installed-Packages-Yum.jpg 659w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/02\/List-Installed-Packages-Yum-300x213.jpg 300w\" sizes=\"(max-width: 659px) 100vw, 659px\" \/><figcaption class=\"caption wp-caption-text\">List the Installed Packages<\/figcaption><\/figure>\n<p class=\"p1\"><span class=\"s1\">And that&#8217;s all that we need &#8211; this gives us all of the commands executed that manually installed a package. Using this, you can get an idea of what packages you&#8217;re still using, and which ones you no longer need. You can also check any other SQLite files if needed in case there&#8217;s more than one.\u00a0<\/span><\/p>\n<p class=\"p1\"><span class=\"s1\">The downside of this method is that there&#8217;s no way to tell if these packages are still being used. You may already have uninstalled them, or some other package might have done it for you. Of course, you can cross-reference the packages with the &#8220;remove&#8221; command, but it can become a hassle.<\/span><\/p>\n<p class=\"p1\"><span class=\"s1\">That&#8217;s why YUM is now being replaced with DNF &#8211; the new package manager that&#8217;s already well entrenched in the Fedora environment. With it, you can get a list of user-installed packages as well as a lot of other cool features that you can&#8217;t yet get with YUM.<\/span><\/p>\n<p class=\"p1\"><span class=\"s1\">But for now, if you&#8217;ve been using YUM, this tutorial will help you get a grip on the user-installed-packages in CentOS.<\/span><\/p>\n<hr \/>\n<p>Of course, you don\u2019t have to do any of this if you use one of our <a href=\"https:\/\/linuxhostsupport.com\/outsourced-hosting-support.html\">Outsourced Server Support Services<\/a>, in which case you can simply ask our expert Linux admins to find out which packages were installed manually through YUM for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n<p><span style=\"color: #ff0000;\"><strong>PS.<\/strong><\/span> If you liked this post on how to see your installed package history, please share it with your friends on the social networks using the share shortcut buttons on the left, or simply leave a comment in the comments section below. Thanks.<\/p><div id=\"linux-2369718606\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Sometimes, working with YUM &#8211; the default CentOS package manager &#8211; can feel unintuitive and cumbersome. Sure, it&#8217;s better than using the even more barebones RPM package manager, but it still leaves a lot to be desired. Take YUM&#8217;s &#8220;history&#8221; command, for instance. The idea of that command is to give you a general idea [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":795,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[130,131,129],"class_list":["post-786","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-history","tag-packages","tag-yum"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Reveal All &quot;Install&quot; Commands Using Yum | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"Sometimes, working with YUM - the default CentOS package manager - can feel unintuitive and cumbersome. Sure, it&#039;s better than using the even more\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/how-to-reveal-all-install-commands-using-yum\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Reveal All &quot;Install&quot; Commands Using Yum | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"Sometimes, working with YUM - the default CentOS package manager - can feel unintuitive and cumbersome. Sure, it&#039;s better than using the even more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-reveal-all-install-commands-using-yum\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2019-02-21T17:05:25+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/02\/reveal-install-commands-yum-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-reveal-all-install-commands-using-yum\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-reveal-all-install-commands-using-yum\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to Reveal All &#8220;Install&#8221; Commands Using Yum\",\"datePublished\":\"2019-02-21T17:05:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-reveal-all-install-commands-using-yum\/\"},\"wordCount\":840,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-reveal-all-install-commands-using-yum\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/02\/reveal-install-commands-yum-1.jpg\",\"keywords\":[\"history\",\"packages\",\"yum\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/linuxhostsupport.com\/blog\/how-to-reveal-all-install-commands-using-yum\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-reveal-all-install-commands-using-yum\/\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-reveal-all-install-commands-using-yum\/\",\"name\":\"How to Reveal All \\\"Install\\\" Commands Using Yum | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-reveal-all-install-commands-using-yum\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-reveal-all-install-commands-using-yum\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/02\/reveal-install-commands-yum-1.jpg\",\"datePublished\":\"2019-02-21T17:05:25+00:00\",\"author\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"Sometimes, working with YUM - the default CentOS package manager - can feel unintuitive and cumbersome. Sure, it's better than using the even more\",\"breadcrumb\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-reveal-all-install-commands-using-yum\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/linuxhostsupport.com\/blog\/how-to-reveal-all-install-commands-using-yum\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-reveal-all-install-commands-using-yum\/#primaryimage\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/02\/reveal-install-commands-yum-1.jpg\",\"contentUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/02\/reveal-install-commands-yum-1.jpg\",\"width\":750,\"height\":410,\"caption\":\"Reveal \\\"Install\\\" Commands Using YUM\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-reveal-all-install-commands-using-yum\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/linuxhostsupport.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Reveal All &#8220;Install&#8221; Commands Using Yum\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#website\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Reveal All \"Install\" Commands Using Yum | LinuxHostSupport","description":"Sometimes, working with YUM - the default CentOS package manager - can feel unintuitive and cumbersome. Sure, it's better than using the even more","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/linuxhostsupport.com\/blog\/how-to-reveal-all-install-commands-using-yum\/","og_locale":"en_US","og_type":"article","og_title":"How to Reveal All \"Install\" Commands Using Yum | LinuxHostSupport","og_description":"Sometimes, working with YUM - the default CentOS package manager - can feel unintuitive and cumbersome. Sure, it's better than using the even more","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-reveal-all-install-commands-using-yum\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2019-02-21T17:05:25+00:00","og_image":[{"width":750,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/02\/reveal-install-commands-yum-1.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-reveal-all-install-commands-using-yum\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-reveal-all-install-commands-using-yum\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to Reveal All &#8220;Install&#8221; Commands Using Yum","datePublished":"2019-02-21T17:05:25+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-reveal-all-install-commands-using-yum\/"},"wordCount":840,"commentCount":0,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-reveal-all-install-commands-using-yum\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/02\/reveal-install-commands-yum-1.jpg","keywords":["history","packages","yum"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-reveal-all-install-commands-using-yum\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-reveal-all-install-commands-using-yum\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-reveal-all-install-commands-using-yum\/","name":"How to Reveal All \"Install\" Commands Using Yum | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-reveal-all-install-commands-using-yum\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-reveal-all-install-commands-using-yum\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/02\/reveal-install-commands-yum-1.jpg","datePublished":"2019-02-21T17:05:25+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"Sometimes, working with YUM - the default CentOS package manager - can feel unintuitive and cumbersome. Sure, it's better than using the even more","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-reveal-all-install-commands-using-yum\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-reveal-all-install-commands-using-yum\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-reveal-all-install-commands-using-yum\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/02\/reveal-install-commands-yum-1.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/02\/reveal-install-commands-yum-1.jpg","width":750,"height":410,"caption":"Reveal \"Install\" Commands Using YUM"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-reveal-all-install-commands-using-yum\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Reveal All &#8220;Install&#8221; Commands Using Yum"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/786","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=786"}],"version-history":[{"count":6,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/786\/revisions"}],"predecessor-version":[{"id":798,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/786\/revisions\/798"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/795"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=786"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=786"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=786"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}