{"id":93238,"date":"2022-01-14T17:41:26","date_gmt":"2022-01-14T22:41:26","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/?p=93238"},"modified":"2022-01-14T17:41:26","modified_gmt":"2022-01-14T22:41:26","slug":"locate","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/locate\/","title":{"rendered":"How To Use The `locate` Utility In Linux"},"content":{"rendered":"<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"538\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/Locate-Files-in-Linux-1024x538.png\" alt=\"How to locate files in Linux with locate\" class=\"wp-image-93246\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/Locate-Files-in-Linux-1024x538.png 1024w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/Locate-Files-in-Linux-300x158.png 300w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/Locate-Files-in-Linux-768x403.png 768w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/Locate-Files-in-Linux.png 1200w\" sizes=\"auto, (min-width: 1360px) 876px, (min-width: 960px) calc(61.58vw + 51px), calc(100vw - 80px)\" \/><\/figure>\n\n\n\n<p>\nDo you need to locate a specific file in your file system?  Over many years of managing your server, you will likely find that working on the command line gives you flexibility, comfort, and speed in attending to your regular tasks.  And this is very well demonstrated in the various search functions that come with most Linux distributions.  Whether you are using Linux in your remote server or as your local operating system, command line searching with the <code>locate<\/code> utility is easy and fast.  \n<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"#how-locate-works\">How <code>locate<\/code> Works<\/a><\/li><li><a href=\"#installation\">Making Sure <code>locate<\/code> Is Installed<\/a><\/li><li><a href=\"#how-to-search-with-locate\">How to Search With <code>locate<\/code><\/a><\/li><li><a href=\"#useful-options\">Useful Options<\/a><\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"how-locate-works\">How <code>locate<\/code> Works<\/h2>\n\n\n\n<p>\nOne of the primary benefits of the <code>locate<\/code> utitlity is its blazing fast speed.  How does it work so fast?\n<\/p>\n\n\n\n<p>\nLocate works quickly by checking a database that builds itself in your system every day.  This creates a massive index of every file in your system.  However, you may have newly created files that are not present in the index.  (See the section below on how to update the database manually, if you require it.)\n<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"installation\">Making Sure <code>locate<\/code> Is Installed<\/h2>\n\n\n\n<p>\nDepending on your Linux distribution, you may or may not have <code>locate<\/code> bundled in with your suite of software.  If you find it is not installed, you can use the <code>apt<\/code> or <code>yum<\/code> package managers:\n<\/p>\n\n\n\n<pre id=\"org062525e\" class=\"wp-block-preformatted example\">apt install locate\n<\/pre>\n\n\n\n<p>\nOr,\n<\/p>\n\n\n\n<pre id=\"org99a15cd\" class=\"wp-block-preformatted example\">yum install locate\n<\/pre>\n\n\n\n<p>\nOnce it is installed, you will need to make sure that there is content in the database for locate to search through.  Otherwise, you might see the following error:\n<\/p>\n\n\n\n<pre id=\"orged4b3dc\" class=\"wp-block-preformatted example\">locate: can not stat () `\/var\/lib\/mlocate\/mlocate.db': No such file or directory\n<\/pre>\n\n\n\n<p>\nTo correct this, you can run the <code>updatedb<\/code> command as follows:\n<\/p>\n\n\n\n<pre id=\"org5c0330d\" class=\"wp-block-preformatted example\">updatedb\n<\/pre>\n\n\n\n<p>\nIf you are not the root user, you will need to use <code>sudo<\/code> to update the database:\n<\/p>\n\n\n\n<pre id=\"org29df525\" class=\"wp-block-preformatted example\">sudo updatedb\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"how-to-search-with-locate\">How to Search With <code>locate<\/code><\/h2>\n\n\n\n<p>\nSearching with <code>locate<\/code> is as simple as invoking the program followed by your search pattern:\n<\/p>\n\n\n\n<pre id=\"org431f7d3\" class=\"wp-block-preformatted example\">locate &lt;filename&gt;\n<\/pre>\n\n\n\n<p>\nYou may notice there are far more results than you can use.  So you can refine your search using a wildcard.  For example, to search only files that end with a <code>.txt<\/code> extension:\n<\/p>\n\n\n\n<pre id=\"orgdc7e22f\" class=\"wp-block-preformatted example\">locate *.txt\n<\/pre>\n\n\n\n<p>\nAnd, if you know them, and you can even more specific with regular expressions.  (See below for options.)\n<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"useful-options\">Useful Options<\/h2>\n\n\n\n<p>\nTo extend the <code>locate<\/code> utility, there are a number of different options that can be helpful:\n<\/p>\n\n\n\n<dl class=\"org-dl\">\n<dt><code>-i<\/code><\/dt><dd>Make your search pattern case insensitive.<\/dd>\n<dt><code>-r<\/code><\/dt><dd>Use a regular expression in your pattern.<\/dd>\n<dt><code>-c<\/code><\/dt><dd>Instead of printing results, provide a number of results.  This way, without having to fill your screen with results, you can get an idea of how your search goes, and if more refinement may be necessary to get usable results.<\/dd>\n<\/dl>\n\n\n\n<hr class=\"wp-block-separator\">\n\n\n\n<p>\nWhere to stop next on your cloud server management journey?\n<\/p>\n\n\n\n<ul class=\"org-ul wp-block-list\"><li><a href=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/setting-up-your-remote-repository-with-git\/\">Set up a remote git repository<\/a><\/li><li><a href=\"https:\/\/www.inmotionhosting.com\/blog\/cpanel-vps-vs-cloud-server-hosting\/\">cPanel-managed server vs cloud server<\/a><\/li><li><a href=\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/to-find-a-file-in-linux\/\">How to find a file in Linux<\/a><\/li><\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Do you need to locate a specific file in your file system? Over many years of managing your server, you will likely find that working on the command line gives you flexibility, comfort, and speed in attending to your regular tasks. And this is very well demonstrated in the various search functions that come with<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/locate\/\"> Read More ><\/a><\/p>\n","protected":false},"author":17,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4308],"tags":[],"class_list":["post-93238","post","type-post","status-publish","format-standard","hentry","category-linux"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How To Use The `locate` Utility In Linux | InMotion Hosting<\/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:\/\/www.inmotionhosting.com\/support\/server\/linux\/locate\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Use The `locate` Utility In Linux | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"Do you need to locate a specific file in your file system? Over many years of managing your server, you will likely find that working on the command line gives you flexibility, comfort, and speed in attending to your regular tasks. And this is very well demonstrated in the various search functions that come with Read More &gt;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/locate\/\" \/>\n<meta property=\"og:site_name\" content=\"InMotion Hosting Support Center\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inmotionhosting\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-01-14T22:41:26+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/Locate-Files-in-Linux-1024x538.png\" \/>\n<meta name=\"author\" content=\"Christopher Maiorana\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:site\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Christopher Maiorana\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/locate\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/locate\/\"},\"author\":{\"name\":\"Christopher Maiorana\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f\"},\"headline\":\"How To Use The `locate` Utility In Linux\",\"datePublished\":\"2022-01-14T22:41:26+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/locate\/\"},\"wordCount\":437,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/locate\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/Locate-Files-in-Linux-1024x538.png\",\"articleSection\":[\"Linux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/locate\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/locate\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/locate\/\",\"name\":\"How To Use The `locate` Utility In Linux | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/locate\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/locate\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/Locate-Files-in-Linux-1024x538.png\",\"datePublished\":\"2022-01-14T22:41:26+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/locate\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/locate\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/locate\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/Locate-Files-in-Linux.png\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/Locate-Files-in-Linux.png\",\"width\":1200,\"height\":630},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/locate\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Use The `locate` Utility In Linux\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"name\":\"InMotion Hosting Support Center\",\"description\":\"Web Hosting Support &amp; Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\",\"name\":\"InMotion Hosting\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"width\":696,\"height\":696,\"caption\":\"InMotion Hosting\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/inmotionhosting\/\",\"https:\/\/x.com\/InMotionHosting\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f\",\"name\":\"Christopher Maiorana\",\"description\":\"Christopher Maiorana joined the InMotion community team in 2015 and regularly dispenses tips and tricks in the Support Center, Community Q&A, and the InMotion Hosting Blog.\",\"sameAs\":[\"https:\/\/www.linkedin.com\/in\/chris-m-4623144b\/\"],\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/christopherm\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How To Use The `locate` Utility In Linux | InMotion Hosting","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:\/\/www.inmotionhosting.com\/support\/server\/linux\/locate\/","og_locale":"en_US","og_type":"article","og_title":"How To Use The `locate` Utility In Linux | InMotion Hosting","og_description":"Do you need to locate a specific file in your file system? Over many years of managing your server, you will likely find that working on the command line gives you flexibility, comfort, and speed in attending to your regular tasks. And this is very well demonstrated in the various search functions that come with Read More >","og_url":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/locate\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2022-01-14T22:41:26+00:00","og_image":[{"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/Locate-Files-in-Linux-1024x538.png","type":"","width":"","height":""}],"author":"Christopher Maiorana","twitter_card":"summary_large_image","twitter_creator":"@InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"Christopher Maiorana","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/locate\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/locate\/"},"author":{"name":"Christopher Maiorana","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f"},"headline":"How To Use The `locate` Utility In Linux","datePublished":"2022-01-14T22:41:26+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/locate\/"},"wordCount":437,"commentCount":2,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/locate\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/Locate-Files-in-Linux-1024x538.png","articleSection":["Linux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/server\/linux\/locate\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/locate\/","url":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/locate\/","name":"How To Use The `locate` Utility In Linux | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/locate\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/locate\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/Locate-Files-in-Linux-1024x538.png","datePublished":"2022-01-14T22:41:26+00:00","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/locate\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/server\/linux\/locate\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/locate\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/Locate-Files-in-Linux.png","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/Locate-Files-in-Linux.png","width":1200,"height":630},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/locate\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"How To Use The `locate` Utility In Linux"}]},{"@type":"WebSite","@id":"https:\/\/www.inmotionhosting.com\/support\/#website","url":"https:\/\/www.inmotionhosting.com\/support\/","name":"InMotion Hosting Support Center","description":"Web Hosting Support &amp; Tutorials","publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.inmotionhosting.com\/support\/#organization","name":"InMotion Hosting","url":"https:\/\/www.inmotionhosting.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","width":696,"height":696,"caption":"InMotion Hosting"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/inmotionhosting\/","https:\/\/x.com\/InMotionHosting"]},{"@type":"Person","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f","name":"Christopher Maiorana","description":"Christopher Maiorana joined the InMotion community team in 2015 and regularly dispenses tips and tricks in the Support Center, Community Q&A, and the InMotion Hosting Blog.","sameAs":["https:\/\/www.linkedin.com\/in\/chris-m-4623144b\/"],"url":"https:\/\/www.inmotionhosting.com\/support\/author\/christopherm\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":null,"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/93238","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/users\/17"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=93238"}],"version-history":[{"count":2,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/93238\/revisions"}],"predecessor-version":[{"id":93247,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/93238\/revisions\/93247"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=93238"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=93238"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=93238"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}