{"id":2923,"date":"2024-01-20T10:00:05","date_gmt":"2024-01-20T10:00:05","guid":{"rendered":"https:\/\/draculaservers.com\/tutorials\/?p=2923"},"modified":"2024-01-31T20:59:39","modified_gmt":"2024-01-31T20:59:39","slug":"apt-cache-search-for-package-information","status":"publish","type":"post","link":"https:\/\/draculaservers.com\/tutorials\/apt-cache-search-for-package-information\/","title":{"rendered":"How to Use Apt-Cache to Search for Package Information in Ubuntu"},"content":{"rendered":"<div class=\"cl-preview-section\">\n<p id=\"how-to-use-apt-cache-to-search-for-package-information-in-ubuntu\"><span style=\"font-size: 16px;\">If you\u2019re an Ubuntu user, managing packages efficiently is crucial for maintaining a stable and secure system. <\/span><code style=\"font-size: 16px;\">apt-cache<\/code><span style=\"font-size: 16px;\">\u00a0is a powerful tool that allows you to search and retrieve information about packages available in your distribution\u2019s repositories. In this guide, we\u2019ll explore the ins and outs of\u00a0<\/span><code style=\"font-size: 16px;\">apt-cache<\/code><span style=\"font-size: 16px;\"> and how you can leverage it to find relevant package information.<\/span><\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>The <code>apt-cache<\/code> is a part of the Advanced Package Tool (APT) suite, used for querying information from the local APT cache. The APT cache stores metadata about available packages and\u00a0<code>apt-cache<\/code> allows you to interact with this information from the command line. It helps you discover packages, learn about their dependencies, and gather information before installation.<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>This guide will provide you with details of using <code>apt-cache<\/code>\u00a0and its capabilities to search for package information in Ubuntu.<\/p>\n\n<\/div>\n<div class=\"cl-preview-section\">\n<h2 id=\"ii.-understanding-apt-cache\"><span id=\"understanding-apt-cache-in-ubuntu\">Understanding Apt-Cache in Ubuntu<\/span><\/h2>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>The <code>apt-cache<\/code> is a command-line tool that interacts with the package metadata stored in the APT cache. This metadata includes information about available packages, their versions, dependencies, and other relevant details.<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>When you run\u00a0<code>apt-cache<\/code>, it queries the local package cache, which contains information about all packages available from your configured repositories. This allows you to access detailed information about packages without the need to fetch data from the internet in real-time.<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<h2 id=\"iii.-basic-search-operations\"><span id=\"basic-search-operations\">Basic Search Operations<\/span><\/h2>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>The basic syntax of\u00a0<code>apt-cache<\/code>\u00a0for searching is straightforward:<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<pre class=\" language-bash\"><code class=\"prism language-bash\">apt-cache search <span class=\"token operator\">&lt;<\/span>package-name<span class=\"token operator\">&gt;<\/span>\r\n<\/code><\/pre>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>This command searches for packages containing the specified\u00a0<code>&lt;package-name&gt;<\/code>\u00a0in their name or description.<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<h3 id=\"b.-searching-by-keywords\"><span id=\"searching-by-keywords\">Searching by Keywords<\/span><\/h3>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>Let\u2019s say you\u2019re looking for a web browser. You can use a keyword related to browsers:<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<pre class=\" language-bash\"><code class=\"prism language-bash\">apt-cache search browser\r\n<\/code><\/pre>\n<\/div>\n<div class=\"cl-preview-section\">\n<p><strong>Expected Output:<\/strong><\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<pre><code>chromium-browser - Chromium web browser, open-source version of Chrome\r\nfirefox - Safe and easy web browser from Mozilla\r\n...\r\n<\/code><\/pre>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>This displays a list of packages related to browsers.<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<h3 id=\"c.-filtering-output\"><span id=\"filtering-output\">Filtering Output<\/span><\/h3>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>To filter the output, you can use\u00a0<code>grep<\/code>:<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<pre class=\" language-bash\"><code class=\"prism language-bash\">apt-cache search browser <span class=\"token operator\">|<\/span> <span class=\"token function\">grep<\/span> -i firefox\r\n<\/code><\/pre>\n<\/div>\n<div class=\"cl-preview-section\">\n<p><strong>Expected Output:<\/strong><\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<pre><code>firefox - Safe and easy web browser from Mozilla\r\n<\/code><\/pre>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>This narrows down the results to packages containing \u201cfirefox.\u201d<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<h2 id=\"iv.-advanced-search-techniques\"><span id=\"advanced-search-techniques\">Advanced Search Techniques<\/span><\/h2>\n<p>Let&#8217;s see how you can use the apt-cache in advance search techniques.<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<h3 id=\"a.-searching-by-package-name\"><span id=\"searching-by-package-name\">Searching by Package Name<\/span><\/h3>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>If you know the exact name of a package, you can get detailed information about it:<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<pre class=\" language-bash\"><code class=\"prism language-bash\">apt-cache show <span class=\"token operator\">&lt;<\/span>package-name<span class=\"token operator\">&gt;<\/span>\r\n<\/code><\/pre>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>For example:<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<pre class=\" language-bash\"><code class=\"prism language-bash\">apt-cache show firefox\r\n<\/code><\/pre>\n<\/div>\n<div class=\"cl-preview-section\">\n<p><strong>Expected Output:<\/strong><\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<pre><code>Package: firefox\r\nVersion: 91.0+build2-0ubuntu0.20.04.2\r\n...\r\n<\/code><\/pre>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>This provides comprehensive information about the Firefox package.<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<h2 id=\"v.-advanced-package-information\"><span id=\"advanced-package-information\">Advanced Package Information<\/span><\/h2>\n<p>Similarly, you can also use the apt-cache to find advanced package information.<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<h3 id=\"a.-package-dependencies\"><span id=\"package-dependencies\">Package Dependencies<\/span><\/h3>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>Understanding a package\u2019s dependencies is crucial. Use the following command to check dependencies:<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<pre class=\" language-bash\"><code class=\"prism language-bash\">apt-cache depends <span class=\"token operator\">&lt;<\/span>package-name<span class=\"token operator\">&gt;<\/span>\r\n<\/code><\/pre>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>For example:<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<pre class=\" language-bash\"><code class=\"prism language-bash\">apt-cache depends firefox\r\n<\/code><\/pre>\n<\/div>\n<div class=\"cl-preview-section\">\n<p><strong>Expected Output:<\/strong><\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<pre><code>firefox\r\n  Depends: libatk1.0-0\r\n  Depends: libc6\r\n  Depends: libcairo-gobject2\r\n  ...\r\n<\/code><\/pre>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>This provides a list of dependencies required by the Firefox package.<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<h3 id=\"b.-reverse-dependencies\"><span id=\"reverse-dependencies\">Reverse Dependencies<\/span><\/h3>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>You can also check which packages depend on a specific package:<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<pre class=\" language-bash\"><code class=\"prism language-bash\">apt-cache rdepends <span class=\"token operator\">&lt;<\/span>package-name<span class=\"token operator\">&gt;<\/span>\r\n<\/code><\/pre>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>For example:<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<pre class=\" language-bash\"><code class=\"prism language-bash\">apt-cache rdepends libc6\r\n<\/code><\/pre>\n<\/div>\n<div class=\"cl-preview-section\">\n<p><strong>Expected Output:<\/strong><\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<pre><code>libc6\r\nReverse Depends:\r\n  libc-bin\r\n  libc6-amd64\r\n  libc6-dev\r\n  ...\r\n<\/code><\/pre>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>This displays a list of packages that depend on the\u00a0<code>libc6<\/code>\u00a0package.<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<h2 id=\"vi.-real-world-examples\"><span id=\"real-world-examples\">Real-World Examples<\/span><\/h2>\n<\/div>\n<div class=\"cl-preview-section\">\n<h3 id=\"a.-scenario-1-finding-development-libraries\"><span id=\"scenario-1-finding-development-libraries\">Scenario 1: Finding Development Libraries<\/span><\/h3>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>Let\u2019s say you\u2019re a developer looking for libraries related to OpenSSL. You can use:<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<pre class=\" language-bash\"><code class=\"prism language-bash\">apt-cache search libssl-dev\r\n<\/code><\/pre>\n<\/div>\n<div class=\"cl-preview-section\">\n<p><strong>Expected Output:<\/strong><\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<pre><code>libssl-dev - Secure Sockets Layer toolkit - development files\r\nlibssl1.1 - Secure Sockets Layer toolkit - shared libraries\r\n...\r\n<\/code><\/pre>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>This helps you discover development libraries related to OpenSSL.<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<h3 id=\"b.-scenario-2-checking-package-details\"><span id=\"scenario-2-checking-package-details\">Scenario 2: Checking Package Details<\/span><\/h3>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>If you want to learn more about the\u00a0<code>htop<\/code>\u00a0package:<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<pre class=\" language-bash\"><code class=\"prism language-bash\">apt-cache show <span class=\"token function\">htop<\/span>\r\n<\/code><\/pre>\n<\/div>\n<div class=\"cl-preview-section\">\n<p><strong>Expected Output:<\/strong><\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<pre><code>Package: htop\r\nVersion: 2.2.0-1\r\n...\r\nDescription-en: interactive processes viewer\r\n htop is an interactive text-mode process viewer for Unix systems. It aims to\r\n...\r\n<\/code><\/pre>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>This provides detailed information about the\u00a0<code>htop<\/code>\u00a0package.<\/p>\n<h2 id=\"explore-dracula-servers-your-gateway-to-reliable-vps-hosting\">Explore Dracula Servers: Your Gateway to Reliable VPS Hosting<\/h2>\n<p>Looking for a powerful and dependable VPS hosting solution? Look no further than <a href=\"https:\/\/draculaservers.com\/freeradius-vps\" target=\"_new\" rel=\"noopener\">Dracula Servers<\/a>. Specializing in high-performance VPS services, Dracula Servers offers an exceptional environment for hosting applications, websites, and more.<\/p>\n<h3 id=\"why-choose-dracula-servers\">Why Choose Dracula Servers?<\/h3>\n<ol>\n<li><strong>Performance:<\/strong> Benefit from top-notch server performance and stability, ensuring your applications run seamlessly.<\/li>\n<li><strong>Flexibility:<\/strong> Dracula Servers provides a range of VPS configurations, allowing you to tailor your server environment to meet your specific needs.<\/li>\n<li><strong>Security:<\/strong> With a commitment to robust security measures, Dracula Servers ensures the safety of your data and applications.<\/li>\n<li><strong>24\/7 Support:<\/strong> Have peace of mind with round-the-clock customer support, ready to assist you with any inquiries or issues.<\/li>\n<\/ol>\n<h3 id=\"discover-the-freeradius-vps-package\">Discover the FreeRadius VPS Package<\/h3>\n<p>Explore the specialized <a href=\"https:\/\/draculaservers.com\/freeradius-vps\" target=\"_new\" rel=\"noopener\">FreeRadius VPS package<\/a>, crafted for users seeking a reliable hosting environment for FreeRadius applications. This package combines the power of Dracula Servers with the specific needs of FreeRadius, providing a hosting solution that empowers your projects.<\/p>\n<p>Ready to elevate your hosting experience? <a href=\"https:\/\/draculaservers.com\/freeradius-vps\" target=\"_new\" rel=\"noopener\">Explore Dracula Servers now<\/a> and unlock a world of performance, flexibility, and top-notch support for your VPS hosting needs.<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<h2 id=\"vii.-best-practices-and-tips\"><span id=\"best-practices-and-tips\">Best Practices and Tips<\/span><\/h2>\n<\/div>\n<div class=\"cl-preview-section\">\n<h3 id=\"a.-regularly-update-apt-cache\"><span id=\"regularly-update-apt-cache\">Regularly Update APT Cache<\/span><\/h3>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>Ensure your local package cache is up to date to get the latest package information:<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<pre class=\" language-bash\"><code class=\"prism language-bash\"><span class=\"token function\">sudo<\/span> <span class=\"token function\">apt-get<\/span> update\r\n<\/code><\/pre>\n<\/div>\n<div class=\"cl-preview-section\">\n<h3 id=\"b.-combine-with-grep-for-efficient-searching\"><span id=\"combine-with-grep-for-efficient-searching\">Combine with grep for Efficient Searching<\/span><\/h3>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>For more efficient searches, you can combine\u00a0<code>apt-cache<\/code>\u00a0with\u00a0<code>grep<\/code>:<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<pre class=\" language-bash\"><code class=\"prism language-bash\">apt-cache search <span class=\"token operator\">&lt;<\/span>keyword<span class=\"token operator\">&gt;<\/span> <span class=\"token operator\">|<\/span> <span class=\"token function\">grep<\/span> <span class=\"token operator\">&lt;<\/span>filter<span class=\"token operator\">&gt;<\/span>\r\n<\/code><\/pre>\n<\/div>\n<div class=\"cl-preview-section\">\n<h2 id=\"viii.-conclusion\"><span id=\"conclusion\">Conclusion<\/span><\/h2>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>In this guide, you&#8217;ve explored the basics and advanced features of <code>apt-cache<\/code>\u00a0for searching package information in Ubuntu. You\u2019ve learned how to perform searches, check dependencies, find reverse dependencies, and use real-world examples. By mastering\u00a0<code>apt-cache<\/code>, you empower yourself to make informed decisions about package management on your Ubuntu system.<\/p>\n<p>Check out More Linux Tutorials <a href=\"https:\/\/draculaservers.com\/tutorials\/\" target=\"_blank\" rel=\"noopener\">Here!<\/a><\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>If you\u2019re an Ubuntu user, managing packages efficiently is crucial for maintaining a stable and secure system. apt-cache\u00a0is a powerful tool that allows you to search and retrieve information about packages available in your distribution\u2019s repositories. In this guide, we\u2019ll explore the ins and outs of\u00a0apt-cache and how you can leverage it to find relevant [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":2924,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[172,22],"tags":[244,245,111],"class_list":["post-2923","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux-tutorials","category-ubuntu","tag-apt-cache-ubuntu","tag-how-to-find-package-information-with-apt-cache","tag-linux-tutorials"],"blocksy_meta":[],"featured_image_urls_v2":{"full":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2024\/01\/What-26.png",1280,720,false],"thumbnail":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2024\/01\/What-26-150x150.png",150,150,true],"medium":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2024\/01\/What-26-300x169.png",300,169,true],"medium_large":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2024\/01\/What-26-768x432.png",768,432,true],"large":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2024\/01\/What-26-1024x576.png",1024,576,true],"1536x1536":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2024\/01\/What-26.png",1280,720,false],"2048x2048":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2024\/01\/What-26.png",1280,720,false],"pk-small":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2024\/01\/What-26-80x80.png",80,80,true],"pk-thumbnail":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2024\/01\/What-26-300x225.png",300,225,true]},"post_excerpt_stackable_v2":"<p>If you\u2019re an Ubuntu user, managing packages efficiently is crucial for maintaining a stable and secure system. apt-cache\u00a0is a powerful tool that allows you to search and retrieve information about packages available in your distribution\u2019s repositories. In this guide, we\u2019ll explore the ins and outs of\u00a0apt-cache and how you can leverage it to find relevant package information. The apt-cache is a part of the Advanced Package Tool (APT) suite, used for querying information from the local APT cache. The APT cache stores metadata about available packages and\u00a0apt-cache allows you to interact with this information from the command line. It helps&hellip;<\/p>\n","category_list_v2":"<a href=\"https:\/\/draculaservers.com\/tutorials\/category\/linux-tutorials\/\" rel=\"category tag\">Linux Tutorials<\/a>, <a href=\"https:\/\/draculaservers.com\/tutorials\/category\/ubuntu\/\" rel=\"category tag\">Ubuntu<\/a>","author_info_v2":{"name":"Abdul Mannan","url":"https:\/\/draculaservers.com\/tutorials\/author\/abdul-mannan-tbgmail-com\/"},"comments_num_v2":"0 comments","yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Use Apt-Cache to Search for Package Information in Ubuntu - Dracula Servers Tutorials<\/title>\n<meta name=\"description\" content=\"In Linux, you can easily use the apt-cache to find the package information and dependencies along with advanced information.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/draculaservers.com\/tutorials\/apt-cache-search-for-package-information\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Use Apt-Cache to Search for Package Information in Ubuntu - Dracula Servers Tutorials\" \/>\n<meta property=\"og:description\" content=\"In Linux, you can easily use the apt-cache to find the package information and dependencies along with advanced information.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/draculaservers.com\/tutorials\/apt-cache-search-for-package-information\/\" \/>\n<meta property=\"og:site_name\" content=\"Dracula Servers Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2024-01-20T10:00:05+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-31T20:59:39+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2024\/01\/What-26.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Abdul Mannan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Abdul Mannan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/apt-cache-search-for-package-information\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/apt-cache-search-for-package-information\\\/\"},\"author\":{\"name\":\"Abdul Mannan\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#\\\/schema\\\/person\\\/ac89d0281f4fb596bfaa0bc1e746c8a6\"},\"headline\":\"How to Use Apt-Cache to Search for Package Information in Ubuntu\",\"datePublished\":\"2024-01-20T10:00:05+00:00\",\"dateModified\":\"2024-01-31T20:59:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/apt-cache-search-for-package-information\\\/\"},\"wordCount\":756,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/apt-cache-search-for-package-information\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/What-26.png\",\"keywords\":[\"apt-cache Ubuntu\",\"How to find package information with apt-cache\",\"Linux Tutorials\"],\"articleSection\":[\"Linux Tutorials\",\"Ubuntu\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/apt-cache-search-for-package-information\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/apt-cache-search-for-package-information\\\/\",\"url\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/apt-cache-search-for-package-information\\\/\",\"name\":\"How to Use Apt-Cache to Search for Package Information in Ubuntu - Dracula Servers Tutorials\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/apt-cache-search-for-package-information\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/apt-cache-search-for-package-information\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/What-26.png\",\"datePublished\":\"2024-01-20T10:00:05+00:00\",\"dateModified\":\"2024-01-31T20:59:39+00:00\",\"description\":\"In Linux, you can easily use the apt-cache to find the package information and dependencies along with advanced information.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/apt-cache-search-for-package-information\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/apt-cache-search-for-package-information\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/apt-cache-search-for-package-information\\\/#primaryimage\",\"url\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/What-26.png\",\"contentUrl\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/What-26.png\",\"width\":1280,\"height\":720,\"caption\":\"How to Use Apt-Cache to Search for Package Information\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/apt-cache-search-for-package-information\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Use Apt-Cache to Search for Package Information in Ubuntu\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#website\",\"url\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/\",\"name\":\"Dracula Servers Tutorials\",\"description\":\"Dedicated Servers\",\"publisher\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#organization\",\"name\":\"Dracula Servers\",\"url\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2016\\\/06\\\/dracula_full_logo_smaller.png\",\"contentUrl\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2016\\\/06\\\/dracula_full_logo_smaller.png\",\"width\":1625,\"height\":200,\"caption\":\"Dracula Servers\"},\"image\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#\\\/schema\\\/person\\\/ac89d0281f4fb596bfaa0bc1e746c8a6\",\"name\":\"Abdul Mannan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2809442d44177cab4f90e1d9b3295560462063881ca1374b6d597d8f0b48fc21?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2809442d44177cab4f90e1d9b3295560462063881ca1374b6d597d8f0b48fc21?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2809442d44177cab4f90e1d9b3295560462063881ca1374b6d597d8f0b48fc21?s=96&d=mm&r=g\",\"caption\":\"Abdul Mannan\"},\"description\":\"An individual trying to decipher the enigmas of technology by the sheer driving force of curiosity. Interested in learning new skills and being better at those skills than the lot.\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Use Apt-Cache to Search for Package Information in Ubuntu - Dracula Servers Tutorials","description":"In Linux, you can easily use the apt-cache to find the package information and dependencies along with advanced information.","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:\/\/draculaservers.com\/tutorials\/apt-cache-search-for-package-information\/","og_locale":"en_US","og_type":"article","og_title":"How to Use Apt-Cache to Search for Package Information in Ubuntu - Dracula Servers Tutorials","og_description":"In Linux, you can easily use the apt-cache to find the package information and dependencies along with advanced information.","og_url":"https:\/\/draculaservers.com\/tutorials\/apt-cache-search-for-package-information\/","og_site_name":"Dracula Servers Tutorials","article_published_time":"2024-01-20T10:00:05+00:00","article_modified_time":"2024-01-31T20:59:39+00:00","og_image":[{"width":1280,"height":720,"url":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2024\/01\/What-26.png","type":"image\/png"}],"author":"Abdul Mannan","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Abdul Mannan","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/draculaservers.com\/tutorials\/apt-cache-search-for-package-information\/#article","isPartOf":{"@id":"https:\/\/draculaservers.com\/tutorials\/apt-cache-search-for-package-information\/"},"author":{"name":"Abdul Mannan","@id":"https:\/\/draculaservers.com\/tutorials\/#\/schema\/person\/ac89d0281f4fb596bfaa0bc1e746c8a6"},"headline":"How to Use Apt-Cache to Search for Package Information in Ubuntu","datePublished":"2024-01-20T10:00:05+00:00","dateModified":"2024-01-31T20:59:39+00:00","mainEntityOfPage":{"@id":"https:\/\/draculaservers.com\/tutorials\/apt-cache-search-for-package-information\/"},"wordCount":756,"commentCount":0,"publisher":{"@id":"https:\/\/draculaservers.com\/tutorials\/#organization"},"image":{"@id":"https:\/\/draculaservers.com\/tutorials\/apt-cache-search-for-package-information\/#primaryimage"},"thumbnailUrl":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2024\/01\/What-26.png","keywords":["apt-cache Ubuntu","How to find package information with apt-cache","Linux Tutorials"],"articleSection":["Linux Tutorials","Ubuntu"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/draculaservers.com\/tutorials\/apt-cache-search-for-package-information\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/draculaservers.com\/tutorials\/apt-cache-search-for-package-information\/","url":"https:\/\/draculaservers.com\/tutorials\/apt-cache-search-for-package-information\/","name":"How to Use Apt-Cache to Search for Package Information in Ubuntu - Dracula Servers Tutorials","isPartOf":{"@id":"https:\/\/draculaservers.com\/tutorials\/#website"},"primaryImageOfPage":{"@id":"https:\/\/draculaservers.com\/tutorials\/apt-cache-search-for-package-information\/#primaryimage"},"image":{"@id":"https:\/\/draculaservers.com\/tutorials\/apt-cache-search-for-package-information\/#primaryimage"},"thumbnailUrl":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2024\/01\/What-26.png","datePublished":"2024-01-20T10:00:05+00:00","dateModified":"2024-01-31T20:59:39+00:00","description":"In Linux, you can easily use the apt-cache to find the package information and dependencies along with advanced information.","breadcrumb":{"@id":"https:\/\/draculaservers.com\/tutorials\/apt-cache-search-for-package-information\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/draculaservers.com\/tutorials\/apt-cache-search-for-package-information\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/draculaservers.com\/tutorials\/apt-cache-search-for-package-information\/#primaryimage","url":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2024\/01\/What-26.png","contentUrl":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2024\/01\/What-26.png","width":1280,"height":720,"caption":"How to Use Apt-Cache to Search for Package Information"},{"@type":"BreadcrumbList","@id":"https:\/\/draculaservers.com\/tutorials\/apt-cache-search-for-package-information\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/draculaservers.com\/tutorials\/"},{"@type":"ListItem","position":2,"name":"How to Use Apt-Cache to Search for Package Information in Ubuntu"}]},{"@type":"WebSite","@id":"https:\/\/draculaservers.com\/tutorials\/#website","url":"https:\/\/draculaservers.com\/tutorials\/","name":"Dracula Servers Tutorials","description":"Dedicated Servers","publisher":{"@id":"https:\/\/draculaservers.com\/tutorials\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/draculaservers.com\/tutorials\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/draculaservers.com\/tutorials\/#organization","name":"Dracula Servers","url":"https:\/\/draculaservers.com\/tutorials\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/draculaservers.com\/tutorials\/#\/schema\/logo\/image\/","url":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2016\/06\/dracula_full_logo_smaller.png","contentUrl":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2016\/06\/dracula_full_logo_smaller.png","width":1625,"height":200,"caption":"Dracula Servers"},"image":{"@id":"https:\/\/draculaservers.com\/tutorials\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/draculaservers.com\/tutorials\/#\/schema\/person\/ac89d0281f4fb596bfaa0bc1e746c8a6","name":"Abdul Mannan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/2809442d44177cab4f90e1d9b3295560462063881ca1374b6d597d8f0b48fc21?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/2809442d44177cab4f90e1d9b3295560462063881ca1374b6d597d8f0b48fc21?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2809442d44177cab4f90e1d9b3295560462063881ca1374b6d597d8f0b48fc21?s=96&d=mm&r=g","caption":"Abdul Mannan"},"description":"An individual trying to decipher the enigmas of technology by the sheer driving force of curiosity. Interested in learning new skills and being better at those skills than the lot."}]}},"_links":{"self":[{"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/posts\/2923","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/comments?post=2923"}],"version-history":[{"count":2,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/posts\/2923\/revisions"}],"predecessor-version":[{"id":2926,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/posts\/2923\/revisions\/2926"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/media\/2924"}],"wp:attachment":[{"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/media?parent=2923"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/categories?post=2923"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/tags?post=2923"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}