{"id":16057,"date":"2024-10-29T12:31:44","date_gmt":"2024-10-29T12:31:44","guid":{"rendered":"https:\/\/truehost.com\/support\/?post_type=docs&#038;p=16057"},"modified":"2024-10-29T12:49:33","modified_gmt":"2024-10-29T12:49:33","password":"","slug":"introduction-to-linux-package-managers-apt-vs-yum","status":"publish","type":"docs","link":"https:\/\/truehost.com\/support\/knowledge-base\/introduction-to-linux-package-managers-apt-vs-yum\/","title":{"rendered":"Introduction to Linux Package Managers: Apt vs. Yum"},"content":{"rendered":"\n<p>Package managers are essential for managing software in Linux, as they allow users to install, update, remove, and search for packages quickly. The two primary package managers for Linux are <strong>Apt<\/strong> (Advanced Package Tool) and <strong>Yum<\/strong> (Yellowdog Updater, Modified). <\/p>\n\n\n\n<p>They are used on different systems; Debian-based distributions like <strong>Ubuntu<\/strong> use <strong>Apt<\/strong>, while Red Hat-based distributions like <strong>Almalinux<\/strong>, CentOS, Fedora, and RHEL use <strong>Yum<\/strong>. <\/p>\n\n\n\n<p>While both serve similar purposes, they have different commands, configurations, and handling methods. Here\u2019s an in-depth look at each, along with a comparison to help you understand the key differences.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Understanding Apt (Advanced Package Tool)<\/h3>\n\n\n\n<p><strong>Apt<\/strong> is the package management system used by <strong>Debian<\/strong> and its derivatives, including <strong>Ubuntu<\/strong> and <strong>Linux Mint<\/strong>. Apt interacts with the <strong>dpkg<\/strong> (Debian Package) system but adds a layer of functionality, including dependency resolution, making it easier to manage packages.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Key Features of Apt<\/h4>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Dependency Resolution<\/strong>: Apt automatically resolves and installs required dependencies.<\/li>\n\n\n\n<li><strong>Repositories<\/strong>: Packages are organized in repositories that Apt pulls from, like the Ubuntu repositories or PPA (Personal Package Archives).<\/li>\n\n\n\n<li><strong>User-Friendly Commands<\/strong>: Apt simplifies package management commands compared to the older <code>dpkg<\/code> commands.<\/li>\n\n\n\n<li><strong>Powerful Tools for Scripted Use<\/strong>: Apt is equipped with powerful features for automation and scripting.<\/li>\n<\/ol>\n\n\n\n<h4 class=\"wp-block-heading\">Basic Apt Commands<\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Update Package Lists<\/strong>: <\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><code>sudo apt update<\/code><\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Install a Package<\/strong>: <\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><code>sudo apt install &#91;package-name]<\/code><\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"870\" height=\"200\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-607.png\" alt=\"\" class=\"wp-image-16060\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-607.png 870w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-607-300x69.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-607-768x177.png 768w\" sizes=\"auto, (max-width: 870px) 100vw, 870px\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Upgrade Installed Packages<\/strong>: <\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><code>sudo apt upgrade<\/code><\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Remove a Package<\/strong>: <\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><code>sudo apt remove &#91;package-name]<\/code><\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>List Installed Packages<\/strong>: <\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><code>apt list --installed<\/code><\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"272\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-608-1024x272.png\" alt=\"\" class=\"wp-image-16061\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-608-1024x272.png 1024w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-608-300x80.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-608-768x204.png 768w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-608.png 1039w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Understanding Yum (Yellowdog Updater, Modified)<\/h3>\n\n\n\n<p><strong>Yum<\/strong> is the default package manager for <strong>Red Hat-based<\/strong> systems like <strong>CentOS<\/strong>, <strong>Fedora<\/strong>, and <strong>RHEL<\/strong>. Yum manages <strong>RPM (Red Hat Package Manager)<\/strong> packages and resolves dependencies, making it easier to maintain packages across these distributions.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Key Features of Yum<\/h4>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Dependency Management<\/strong>: Yum installs packages with dependencies, ensuring no required component is missed.<\/li>\n\n\n\n<li><strong>Central Repositories<\/strong>: Yum relies on pre-configured repositories for package retrieval and installation.<\/li>\n\n\n\n<li><strong>Automatic Updates<\/strong>: Yum has options for setting up automatic package updates.<\/li>\n\n\n\n<li><strong>History and Rollback<\/strong>: Yum allows users to view the installation history and roll back changes if needed.<\/li>\n<\/ol>\n\n\n\n<h4 class=\"wp-block-heading\">Basic Yum Commands<\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Update Repository Lists<\/strong>: <\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><code>sudo yum check-update<\/code><\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1013\" height=\"110\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-609.png\" alt=\"\" class=\"wp-image-16062\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-609.png 1013w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-609-300x33.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-609-768x83.png 768w\" sizes=\"auto, (max-width: 1013px) 100vw, 1013px\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Install a Package<\/strong>:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><code>sudo yum install &#91;package-name]<\/code><\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Update All Packages<\/strong>: <\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><code>sudo yum update<\/code><\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Remove a Package<\/strong>: <\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><code>sudo yum remove &#91;package-name]<\/code><\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full is-style-zoooom\"><img loading=\"lazy\" decoding=\"async\" width=\"945\" height=\"284\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-610.png\" alt=\"\" class=\"wp-image-16063\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-610.png 945w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-610-300x90.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-610-768x231.png 768w\" sizes=\"auto, (max-width: 945px) 100vw, 945px\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>List Installed Packages<\/strong>: <\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><code>yum list installed<\/code><\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large is-style-zoooom\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"351\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-611-1024x351.png\" alt=\"\" class=\"wp-image-16064\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-611-1024x351.png 1024w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-611-300x103.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-611-768x263.png 768w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-611.png 1108w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Key Differences Between Apt and Yum<\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th><\/th><th>Apt (Debian-Based)<\/th><th>Yum (Red Hat-Based)<\/th><\/tr><\/thead><tbody><tr><td><strong>Distribution<\/strong><\/td><td>Debian, Ubuntu, Linux Mint<\/td><td>RHEL, CentOS, Fedora<\/td><\/tr><tr><td><strong>Package Format<\/strong><\/td><td>.deb<\/td><td>.rpm<\/td><\/tr><tr><td><strong>Repositories<\/strong><\/td><td>Uses Debian and Ubuntu repos, can add PPAs<\/td><td>Uses Red Hat and CentOS repos<\/td><\/tr><tr><td><strong>Dependency Management<\/strong><\/td><td>Automatic<\/td><td>Automatic<\/td><\/tr><tr><td><strong>Command Structure<\/strong><\/td><td>Simplified and intuitive<\/td><td>Flexible with history\/rollback options<\/td><\/tr><tr><td><strong>Rollback Capability<\/strong><\/td><td>No native rollback, manual downgrade<\/td><td>Has history and rollback features<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Which Should You Use?<\/strong><\/h3>\n\n\n\n<p>Your choice of package manager will be dictated by your Linux distribution. If you\u2019re using a <strong>Debian-based<\/strong> system like Ubuntu, you\u2019ll use <strong>Apt<\/strong>. For <strong>Red Hat-based<\/strong> systems like CentOS, <strong>Yum<\/strong> is the standard. Both provide reliable, secure ways to manage your software packages, and once you\u2019re familiar with one, switching to the other is straightforward.<\/p>\n\n\n\n<p>Apt and Yum are powerful tools for managing software on Linux systems, each tailored to the architecture of its supported distributions. While their command syntax and extra features differ, both make package management easy, efficient, and secure, helping you keep your system up-to-date and optimized<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Package managers are essential for managing software in Linux, as they allow users to install, update, remove, and search for packages quickly. The two primary package managers for Linux are Apt (Advanced Package Tool) and Yum (Yellowdog Updater, Modified). They are used on different systems; Debian-based distributions like Ubuntu use Apt, while Red Hat-based distributions [&hellip;]<\/p>\n","protected":false},"author":9,"featured_media":0,"comment_status":"open","ping_status":"closed","template":"","meta":{"_eb_attr":"","_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0,"footnotes":""},"doc_category":[1820,1824,1879,2128],"doc_tag":[],"class_list":["post-16057","docs","type-docs","status-publish","hentry","doc_category-cloud-servers-in-kenya","doc_category-dedicated-servers","doc_category-servers","doc_category-vps-servers"],"year_month":"2026-07","word_count":522,"total_views":0,"reactions":{"happy":0,"normal":0,"sad":0},"author_info":{"name":"Eugene","author_nicename":"eugene","author_url":"https:\/\/truehost.com\/support\/author\/eugene\/"},"doc_category_info":[{"term_name":"Cloud servers in Kenya","term_url":"https:\/\/truehost.com\/support\/docs-category\/cloud-servers-in-kenya\/"},{"term_name":"dedicated servers","term_url":"https:\/\/truehost.com\/support\/docs-category\/dedicated-servers\/"},{"term_name":"Servers","term_url":"https:\/\/truehost.com\/support\/docs-category\/servers\/"},{"term_name":"VPS-Servers","term_url":"https:\/\/truehost.com\/support\/docs-category\/vps-servers\/"}],"doc_tag_info":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Introduction to Linux Package Managers: Apt vs. Yum -<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/truehost.com\/support\/knowledge-base\/introduction-to-linux-package-managers-apt-vs-yum\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Introduction to Linux Package Managers: Apt vs. Yum -\" \/>\n<meta property=\"og:description\" content=\"Package managers are essential for managing software in Linux, as they allow users to install, update, remove, and search for packages quickly. The two primary package managers for Linux are Apt (Advanced Package Tool) and Yum (Yellowdog Updater, Modified). They are used on different systems; Debian-based distributions like Ubuntu use Apt, while Red Hat-based distributions [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/truehost.com\/support\/knowledge-base\/introduction-to-linux-package-managers-apt-vs-yum\/\" \/>\n<meta property=\"article:modified_time\" content=\"2024-10-29T12:49:33+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-607.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/introduction-to-linux-package-managers-apt-vs-yum\\\/\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/introduction-to-linux-package-managers-apt-vs-yum\\\/\",\"name\":\"Introduction to Linux Package Managers: Apt vs. Yum -\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/introduction-to-linux-package-managers-apt-vs-yum\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/introduction-to-linux-package-managers-apt-vs-yum\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/image-607.png\",\"datePublished\":\"2024-10-29T12:31:44+00:00\",\"dateModified\":\"2024-10-29T12:49:33+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/introduction-to-linux-package-managers-apt-vs-yum\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/introduction-to-linux-package-managers-apt-vs-yum\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/introduction-to-linux-package-managers-apt-vs-yum\\\/#primaryimage\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/image-607.png\",\"contentUrl\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/image-607.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/introduction-to-linux-package-managers-apt-vs-yum\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/truehost.com\\\/support\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Introduction to Linux Package Managers: Apt vs. Yum\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#website\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/\",\"name\":\"\",\"description\":\"Help In a Click\",\"publisher\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/truehost.com\\\/support\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#organization\",\"name\":\"Truehost Kenya\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/cropped-image_2026-04-16_174808866.png\",\"contentUrl\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/cropped-image_2026-04-16_174808866.png\",\"width\":240,\"height\":48,\"caption\":\"Truehost Kenya\"},\"image\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Introduction to Linux Package Managers: Apt vs. Yum -","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:\/\/truehost.com\/support\/knowledge-base\/introduction-to-linux-package-managers-apt-vs-yum\/","og_locale":"en_US","og_type":"article","og_title":"Introduction to Linux Package Managers: Apt vs. Yum -","og_description":"Package managers are essential for managing software in Linux, as they allow users to install, update, remove, and search for packages quickly. The two primary package managers for Linux are Apt (Advanced Package Tool) and Yum (Yellowdog Updater, Modified). They are used on different systems; Debian-based distributions like Ubuntu use Apt, while Red Hat-based distributions [&hellip;]","og_url":"https:\/\/truehost.com\/support\/knowledge-base\/introduction-to-linux-package-managers-apt-vs-yum\/","article_modified_time":"2024-10-29T12:49:33+00:00","og_image":[{"url":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-607.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/truehost.com\/support\/knowledge-base\/introduction-to-linux-package-managers-apt-vs-yum\/","url":"https:\/\/truehost.com\/support\/knowledge-base\/introduction-to-linux-package-managers-apt-vs-yum\/","name":"Introduction to Linux Package Managers: Apt vs. Yum -","isPartOf":{"@id":"https:\/\/truehost.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/introduction-to-linux-package-managers-apt-vs-yum\/#primaryimage"},"image":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/introduction-to-linux-package-managers-apt-vs-yum\/#primaryimage"},"thumbnailUrl":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-607.png","datePublished":"2024-10-29T12:31:44+00:00","dateModified":"2024-10-29T12:49:33+00:00","breadcrumb":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/introduction-to-linux-package-managers-apt-vs-yum\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/truehost.com\/support\/knowledge-base\/introduction-to-linux-package-managers-apt-vs-yum\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/truehost.com\/support\/knowledge-base\/introduction-to-linux-package-managers-apt-vs-yum\/#primaryimage","url":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-607.png","contentUrl":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-607.png"},{"@type":"BreadcrumbList","@id":"https:\/\/truehost.com\/support\/knowledge-base\/introduction-to-linux-package-managers-apt-vs-yum\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/truehost.com\/support\/"},{"@type":"ListItem","position":2,"name":"Introduction to Linux Package Managers: Apt vs. Yum"}]},{"@type":"WebSite","@id":"https:\/\/truehost.com\/support\/#website","url":"https:\/\/truehost.com\/support\/","name":"","description":"Help In a Click","publisher":{"@id":"https:\/\/truehost.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/truehost.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/truehost.com\/support\/#organization","name":"Truehost Kenya","url":"https:\/\/truehost.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/truehost.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2026\/04\/cropped-image_2026-04-16_174808866.png","contentUrl":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2026\/04\/cropped-image_2026-04-16_174808866.png","width":240,"height":48,"caption":"Truehost Kenya"},"image":{"@id":"https:\/\/truehost.com\/support\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/16057","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/users\/9"}],"replies":[{"embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/comments?post=16057"}],"version-history":[{"count":2,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/16057\/revisions"}],"predecessor-version":[{"id":16065,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/16057\/revisions\/16065"}],"wp:attachment":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/media?parent=16057"}],"wp:term":[{"taxonomy":"doc_category","embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/doc_category?post=16057"},{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/doc_tag?post=16057"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}