{"id":16254,"date":"2024-10-31T06:51:53","date_gmt":"2024-10-31T06:51:53","guid":{"rendered":"https:\/\/truehost.com\/support\/?post_type=docs&#038;p=16254"},"modified":"2024-10-31T09:35:19","modified_gmt":"2024-10-31T09:35:19","password":"","slug":"how-to-install-clamav-for-malware-scanning-on-ubuntu","status":"publish","type":"docs","link":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-install-clamav-for-malware-scanning-on-ubuntu\/","title":{"rendered":"How to Install ClamAV for Malware Scanning on Ubuntu"},"content":{"rendered":"\n<p>ClamAV is an open-source antivirus software toolkit widely used for detecting malware and viruses on Linux servers. Installing and setting up ClamAV is straightforward, and it provides a powerful tool to scan files and directories for potential threats. Here\u2019s how to install and configure ClamAV on a Linux system for malware scanning.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A Linux sever with at least 2GB RAM<\/li>\n\n\n\n<li>Ubuntu operating system should be installed on the server. I will use Ubuntu 22.04 here.<\/li>\n\n\n\n<li>Sudo SSH access to the server (either with user root or a sudo user)<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 1: Update Your System<\/strong><\/h3>\n\n\n\n<p>Before installing any software, it\u2019s always good practice to update your package lists:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt update        <\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 2: Install ClamAV<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Debian\/Ubuntu:<\/strong><\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt-get install clamav clamav-daemon -y<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full is-style-zoooom\"><img loading=\"lazy\" decoding=\"async\" width=\"912\" height=\"278\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-682.png\" alt=\"\" class=\"wp-image-16285\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-682.png 912w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-682-300x91.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-682-768x234.png 768w\" sizes=\"auto, (max-width: 912px) 100vw, 912px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 3: Update ClamAV Virus Definitions<\/strong><\/h3>\n\n\n\n<p>After installing ClamAV, you should update the virus definitions to ensure ClamAV has the latest signatures for detecting threats.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>First Stop the ClamAV process:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl stop clamav-freshclam<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Manually update the ClamAV signature database:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo freshclam<\/code><\/pre>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\"><\/blockquote>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Restart the service to update the database in the background:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl start clamav-freshclam<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Check status of  clamav-freshclam<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-large is-style-zoooom\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"557\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-683-1024x557.png\" alt=\"\" class=\"wp-image-16286\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-683-1024x557.png 1024w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-683-300x163.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-683-768x418.png 768w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-683.png 1263w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 5: Start and Enable ClamAV Daemon<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Starting the <code>clamd<\/code> service allows you to perform scans without initializing ClamAV each time.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code># Start the ClamAV daemon\nsudo systemctl start clamav-daemon    # On Ubuntu\nsudo systemctl enable clamav-daemon\nsudo systemctl status clamav-daemon<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"531\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-684-1024x531.png\" alt=\"\" class=\"wp-image-16287\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-684-1024x531.png 1024w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-684-300x155.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-684-768x398.png 768w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-684.png 1216w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 6: Run a Scan<\/strong><\/h3>\n\n\n\n<p>You can scan directories or specific files with the <code>clamscan<\/code> command.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Scan a Directory<\/strong>:\n<ul class=\"wp-block-list\">\n<li>The <code>-r<\/code> flag performs a recursive scan, scanning all subdirectories within the specified path.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>clamscan -r \/path\/to\/directory<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Scan and Remove Infected Files<\/strong>:\n<ul class=\"wp-block-list\">\n<li>The <code>--remove<\/code> option will delete infected files (use with caution).<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>clamscan -r --remove \/path\/to\/directory<\/code><\/pre>\n\n\n\n<p><strong>Scan and Generate a Log<\/strong>:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>This command saves scan output to <code>\/var\/log\/clamav\/scan.log<\/code> for later review.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>clamscan -r \/path\/to\/directory | tee \/var\/log\/clamav\/scan.log<\/code><\/pre>\n\n\n\n<p>To learn more about clamscan options, check the manual:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>man clamscan<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 7: Schedule Regular Scans (Optional)<\/strong><\/h3>\n\n\n\n<p>To automate scans, set up a cron job. For example, to scan <code>\/home<\/code> daily:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Open the cron editor:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>crontab -e<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Add the following line to schedule a scan at midnight each day:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>0 0 * * * \/usr\/bin\/clamscan -r \/home | tee -a \/var\/log\/clamav\/daily_scan.log<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 8: Check Scan Results<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>If you configured logging, you can view scan results in the log file:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>cat \/var\/log\/clamav\/daily_scan.log<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Author&#8217;s final word<\/h4>\n\n\n\n<p>ClamAV provides a robust antivirus solution for Linux systems, and with these steps, you can efficiently configure it to protect your system from malware. Regular updates, scheduled scans, and log reviews ensure comprehensive protection.<\/p>\n\n\n\n<p>To&nbsp;learn more about the ClamAV scanner and its commands, you may check their <strong><a href=\"https:\/\/docs.clamav.net\/manual\/Usage\/Scanning.html#clamd\" target=\"_blank\" rel=\"noreferrer noopener\">Official Documentation.<\/a><\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>ClamAV is an open-source antivirus software toolkit widely used for detecting malware and viruses on Linux servers. Installing and setting up ClamAV is straightforward, and it provides a powerful tool to scan files and directories for potential threats. Here\u2019s how to install and configure ClamAV on a Linux system for malware scanning. Prerequisites Step 1: [&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-16254","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-06","word_count":446,"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 v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install ClamAV for Malware Scanning on Ubuntu -<\/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\/how-to-install-clamav-for-malware-scanning-on-ubuntu\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install ClamAV for Malware Scanning on Ubuntu -\" \/>\n<meta property=\"og:description\" content=\"ClamAV is an open-source antivirus software toolkit widely used for detecting malware and viruses on Linux servers. Installing and setting up ClamAV is straightforward, and it provides a powerful tool to scan files and directories for potential threats. Here\u2019s how to install and configure ClamAV on a Linux system for malware scanning. Prerequisites Step 1: [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/truehost.com\/support\/knowledge-base\/how-to-install-clamav-for-malware-scanning-on-ubuntu\/\" \/>\n<meta property=\"article:modified_time\" content=\"2024-10-31T09:35:19+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-682.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=\"3 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\\\/how-to-install-clamav-for-malware-scanning-on-ubuntu\\\/\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-install-clamav-for-malware-scanning-on-ubuntu\\\/\",\"name\":\"How to Install ClamAV for Malware Scanning on Ubuntu -\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-install-clamav-for-malware-scanning-on-ubuntu\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-install-clamav-for-malware-scanning-on-ubuntu\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/image-682.png\",\"datePublished\":\"2024-10-31T06:51:53+00:00\",\"dateModified\":\"2024-10-31T09:35:19+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-install-clamav-for-malware-scanning-on-ubuntu\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-install-clamav-for-malware-scanning-on-ubuntu\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-install-clamav-for-malware-scanning-on-ubuntu\\\/#primaryimage\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/image-682.png\",\"contentUrl\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/image-682.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-install-clamav-for-malware-scanning-on-ubuntu\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install ClamAV for Malware Scanning on Ubuntu\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/#website\",\"url\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/\",\"name\":\"\",\"description\":\"Help In a Click\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/#organization\",\"name\":\"Truehost Kenya\",\"url\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.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:\\\/\\\/www.truehost.com\\\/support\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install ClamAV for Malware Scanning on Ubuntu -","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\/how-to-install-clamav-for-malware-scanning-on-ubuntu\/","og_locale":"en_US","og_type":"article","og_title":"How to Install ClamAV for Malware Scanning on Ubuntu -","og_description":"ClamAV is an open-source antivirus software toolkit widely used for detecting malware and viruses on Linux servers. Installing and setting up ClamAV is straightforward, and it provides a powerful tool to scan files and directories for potential threats. Here\u2019s how to install and configure ClamAV on a Linux system for malware scanning. Prerequisites Step 1: [&hellip;]","og_url":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-install-clamav-for-malware-scanning-on-ubuntu\/","article_modified_time":"2024-10-31T09:35:19+00:00","og_image":[{"url":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-682.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-install-clamav-for-malware-scanning-on-ubuntu\/","url":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-install-clamav-for-malware-scanning-on-ubuntu\/","name":"How to Install ClamAV for Malware Scanning on Ubuntu -","isPartOf":{"@id":"https:\/\/www.truehost.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-install-clamav-for-malware-scanning-on-ubuntu\/#primaryimage"},"image":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-install-clamav-for-malware-scanning-on-ubuntu\/#primaryimage"},"thumbnailUrl":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-682.png","datePublished":"2024-10-31T06:51:53+00:00","dateModified":"2024-10-31T09:35:19+00:00","breadcrumb":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-install-clamav-for-malware-scanning-on-ubuntu\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/truehost.com\/support\/knowledge-base\/how-to-install-clamav-for-malware-scanning-on-ubuntu\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-install-clamav-for-malware-scanning-on-ubuntu\/#primaryimage","url":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-682.png","contentUrl":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-682.png"},{"@type":"BreadcrumbList","@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-install-clamav-for-malware-scanning-on-ubuntu\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.truehost.com\/support\/"},{"@type":"ListItem","position":2,"name":"How to Install ClamAV for Malware Scanning on Ubuntu"}]},{"@type":"WebSite","@id":"https:\/\/www.truehost.com\/support\/#website","url":"https:\/\/www.truehost.com\/support\/","name":"","description":"Help In a Click","publisher":{"@id":"https:\/\/www.truehost.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.truehost.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.truehost.com\/support\/#organization","name":"Truehost Kenya","url":"https:\/\/www.truehost.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.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:\/\/www.truehost.com\/support\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/16254","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=16254"}],"version-history":[{"count":3,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/16254\/revisions"}],"predecessor-version":[{"id":16288,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/16254\/revisions\/16288"}],"wp:attachment":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/media?parent=16254"}],"wp:term":[{"taxonomy":"doc_category","embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/doc_category?post=16254"},{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/doc_tag?post=16254"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}