{"id":16739,"date":"2017-07-04T11:30:11","date_gmt":"2017-07-04T11:30:11","guid":{"rendered":"https:\/\/www.heartinternet.uk\/blog\/?p=16739"},"modified":"2017-07-04T11:30:11","modified_gmt":"2017-07-04T11:30:11","slug":"four-easy-ways-to-clean-your-linux-server","status":"publish","type":"post","link":"https:\/\/www.heartinternet.uk\/blog\/four-easy-ways-to-clean-your-linux-server\/","title":{"rendered":"Four easy ways to clean your Linux server"},"content":{"rendered":"<p>System clean-up is something that should be performed on a regular basis.  Depending on the number of users, the amount of use, and disk space limitations, you might need to do it every week, or you might be able to put it off for a few months.  But it is important to clean up your server &#8211; a full file system can cause critical services to stop or disallow logins.<\/p>\n<p>There are four things to look at that can give you a clean running server easily.<\/p>\n<p align=\"center\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/sshtricks-3.jpg\" alt=\" \" width=\"650\" height=\"100\" class=\"aligncenter size-full wp-image-16633\" \/><\/p>\n<h3>\/tmp<\/h3>\n<p><code>\/tmp<\/code> is writable by every user on the system, which can make it vulnerable. Many software programs write temporary files to the <code>\/tmp<\/code> directory, and it can be difficult to determine which files to keep and which to remove.<\/p>\n<p>Applications that are currently being used might have temporary files open, and will crash or cause an error if the files are unexpectedly removed. Or anyone using the application might lose all their work since the last saved point.<\/p>\n<p>If you reboot the server, it removes all temporary files, but you need a good reason to reboot your server, and cleaning <code>\/tmp<\/code> is rarely enough of a reason for a full reboot.<\/p>\n<p>Since <code>\/tmp<\/code> can be written to by anyone, you might think that everyone&#8217;s files are vulnerable to removal.  But the <code>t<\/code> at the end of the permissions of <code>\/tmp<\/code> (<code>drwxrwxrwxt<\/code>) means that only original file owners can remove files.  The root user can remove any file, but other users can&#8217;t touch them.<\/p>\n<p>To safely remove files from <code>\/tmp<\/code>, you can use a script that looks for files that haven&#8217;t been modified for seven days and aren&#8217;t currently open.  An example of this is:<\/p>\n<p><code>find \/tmp -mtime +7 | egrep -v \"`lsof -n +D \/tmp | awk 'NR>1 {print $9}'| tr \\\\n \\|`\"<\/code><\/p>\n<p align=\"center\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/sshtricks-1.jpg\" alt=\" \" width=\"650\" height=\"100\" class=\"aligncenter size-full wp-image-16630\" \/><\/p>\n<h3>\/home<\/h3>\n<p>The first rule is: Never remove anything from <code>\/home<\/code> without a verified backup.<\/p>\n<p>Users get upset when administrators perform sweeping removals &#8211; no matter how necessary they are. A full <code>\/home<\/code> won&#8217;t stop critical system operations, but it will annoy your users, who will, in turn, annoy you.<\/p>\n<p>The most effective method for cleaning <code>\/home<\/code> is to notify your users and get them to remove the files.  You can run a script that lists all the files users haven&#8217;t accessed in over 180 days &#8211; if they haven&#8217;t used it in six months, it&#8217;s a good candidate for archiving or removing.<\/p>\n<p>The script is:<\/p>\n<p><code>find \/Users -atime +180 -type f<\/code><\/p>\n<p>A great way to do this is to:<\/p>\n<ol>\n<li>Run the script to get the list of files that should be removed<\/li>\n<li>Warn your users that you plan to get rid of these files, including a date<\/li>\n<li>Back up <code>\/home<\/code><\/li>\n<li>Give your users a final warning<\/li>\n<li>Remove the files<\/li>\n<\/ol>\n<p>This way, if a user suddenly realises they need a file, you still have a copy, but you also have a clean <code>\/home<\/code>.<\/p>\n<p>It might be that you need to make changes to this routine &#8211; for example, if you can&#8217;t delete the files yourself, you can encourage your users to do so. Or you might need to exclude specific subdirectories in <code>\/home<\/code> so that users can retain important documents for later reference.  You can also look into setting up file system quotas to ensure that your users take the responsibility for good housekeeping.<\/p>\n<p align=\"center\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/sshtricks-2.jpg\" alt=\" \" width=\"650\" height=\"100\" class=\"aligncenter size-full wp-image-16632\" \/><\/p>\n<h3>\/var<\/h3>\n<p>The same rules apply to <code>\/var<\/code> as they do to <code>\/tmp<\/code>. Many applications write to a subdirectory of <code>\/var<\/code>, but proceed with caution.  Some web servers hold permanent files in <code>\/var<\/code> under <code>\/var\/www\/html<\/code> &#8211; so don&#8217;t wipe out an entire web service with an overzealous <code>rm<\/code>.<\/p>\n<p>There are system cleanup applications, such as tmpreaper and bleachbit, which can help you maintain a clean system.<\/p>\n<p align=\"center\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/sshtricks-4.jpg\" alt=\" \" width=\"650\" height=\"100\" class=\"aligncenter size-full wp-image-16634\" \/><\/p>\n<h3>Cleaning up packages<\/h3>\n<p>Package managers are great &#8211; you don&#8217;t have to spend hours resolving dependencies for software.  But they also tend to clutter the file system with old packages, dependencies, and cached files.<\/p>\n<p>For Debian-based systems, run the following commands:<\/p>\n<p><code>$ sudo apt-get autoclean<br \/>\n$ sudo apt-get clean<br \/>\n$ sudo apt-get autoremove<\/code><\/p>\n<p>For Red Hat-based systems:<\/p>\n<p><code>$ sudo yum autoremove<\/code><\/p>\n<p>You can also install the yum-utils package and then issue:<\/p>\n<p><code>$ package-cleanup -leaves -all<\/code><\/p>\n<p>&nbsp;<\/p>\n<p>What are some of your housekeeping tricks for your server?<\/p>\n","protected":false},"excerpt":{"rendered":"<p>System clean-up is something that you should do regularly. Here are four easy ways to keep your Linux server running smooth.<\/p>\n","protected":false},"author":2,"featured_media":16741,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[6,23],"tags":[],"class_list":{"0":"post-16739","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-dedicated-servers","8":"category-vps"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Four easy ways to clean your Linux server - Heart Internet<\/title>\n<meta name=\"description\" content=\"System clean-up is something that you should do regularly. Here are four easy ways to keep your Linux server running smooth.\" \/>\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.heartinternet.uk\/blog\/four-easy-ways-to-clean-your-linux-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Four easy ways to clean your Linux server - Heart Internet\" \/>\n<meta property=\"og:description\" content=\"System clean-up is something that you should do regularly. Here are four easy ways to keep your Linux server running smooth.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.heartinternet.uk\/blog\/four-easy-ways-to-clean-your-linux-server\/\" \/>\n<meta property=\"og:site_name\" content=\"Heart Internet\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/heartinternet\/\" \/>\n<meta property=\"article:published_time\" content=\"2017-07-04T11:30:11+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2017\/07\/linuxcleaner-background.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1265\" \/>\n\t<meta property=\"og:image:height\" content=\"500\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Eliot Chambers-Ostler\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@heartinternet\" \/>\n<meta name=\"twitter:site\" content=\"@heartinternet\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Eliot Chambers-Ostler\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/four-easy-ways-to-clean-your-linux-server\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/four-easy-ways-to-clean-your-linux-server\/\"},\"author\":{\"name\":\"Eliot Chambers-Ostler\",\"@id\":\"https:\/\/heartblog.victory.digital\/#\/schema\/person\/58ed7f27cc0f3ab6e69135742a5eee28\"},\"headline\":\"Four easy ways to clean your Linux server\",\"datePublished\":\"2017-07-04T11:30:11+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/four-easy-ways-to-clean-your-linux-server\/\"},\"wordCount\":646,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/heartblog.victory.digital\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/four-easy-ways-to-clean-your-linux-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2017\/07\/linuxcleaner-background.jpg\",\"articleSection\":[\"Dedicated Servers\",\"VPS\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.heartinternet.uk\/blog\/four-easy-ways-to-clean-your-linux-server\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/four-easy-ways-to-clean-your-linux-server\/\",\"url\":\"https:\/\/www.heartinternet.uk\/blog\/four-easy-ways-to-clean-your-linux-server\/\",\"name\":\"Four easy ways to clean your Linux server - Heart Internet\",\"isPartOf\":{\"@id\":\"https:\/\/heartblog.victory.digital\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/four-easy-ways-to-clean-your-linux-server\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/four-easy-ways-to-clean-your-linux-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2017\/07\/linuxcleaner-background.jpg\",\"datePublished\":\"2017-07-04T11:30:11+00:00\",\"description\":\"System clean-up is something that you should do regularly. Here are four easy ways to keep your Linux server running smooth.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/four-easy-ways-to-clean-your-linux-server\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.heartinternet.uk\/blog\/four-easy-ways-to-clean-your-linux-server\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/four-easy-ways-to-clean-your-linux-server\/#primaryimage\",\"url\":\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2017\/07\/linuxcleaner-background.jpg\",\"contentUrl\":\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2017\/07\/linuxcleaner-background.jpg\",\"width\":1265,\"height\":500},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.heartinternet.uk\/blog\/four-easy-ways-to-clean-your-linux-server\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.heartinternet.uk\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Four easy ways to clean your Linux server\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/heartblog.victory.digital\/#website\",\"url\":\"https:\/\/heartblog.victory.digital\/\",\"name\":\"Heart Internet\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/heartblog.victory.digital\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/heartblog.victory.digital\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/heartblog.victory.digital\/#organization\",\"name\":\"Heart Internet\",\"url\":\"https:\/\/heartblog.victory.digital\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/heartblog.victory.digital\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2025\/02\/HeartInternet_Logo_Colour.webp\",\"contentUrl\":\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2025\/02\/HeartInternet_Logo_Colour.webp\",\"width\":992,\"height\":252,\"caption\":\"Heart Internet\"},\"image\":{\"@id\":\"https:\/\/heartblog.victory.digital\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/heartinternet\/\",\"https:\/\/x.com\/heartinternet\",\"https:\/\/www.linkedin.com\/company\/heart-internet-ltd\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/heartblog.victory.digital\/#\/schema\/person\/58ed7f27cc0f3ab6e69135742a5eee28\",\"name\":\"Eliot Chambers-Ostler\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/heartblog.victory.digital\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2025\/08\/cropped-Eliot-96x96.jpg\",\"contentUrl\":\"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2025\/08\/cropped-Eliot-96x96.jpg\",\"caption\":\"Eliot Chambers-Ostler\"},\"url\":\"https:\/\/www.heartinternet.uk\/blog\/author\/eliot-chambers-ostler\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Four easy ways to clean your Linux server - Heart Internet","description":"System clean-up is something that you should do regularly. Here are four easy ways to keep your Linux server running smooth.","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.heartinternet.uk\/blog\/four-easy-ways-to-clean-your-linux-server\/","og_locale":"en_GB","og_type":"article","og_title":"Four easy ways to clean your Linux server - Heart Internet","og_description":"System clean-up is something that you should do regularly. Here are four easy ways to keep your Linux server running smooth.","og_url":"https:\/\/www.heartinternet.uk\/blog\/four-easy-ways-to-clean-your-linux-server\/","og_site_name":"Heart Internet","article_publisher":"https:\/\/www.facebook.com\/heartinternet\/","article_published_time":"2017-07-04T11:30:11+00:00","og_image":[{"width":1265,"height":500,"url":"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2017\/07\/linuxcleaner-background.jpg","type":"image\/jpeg"}],"author":"Eliot Chambers-Ostler","twitter_card":"summary_large_image","twitter_creator":"@heartinternet","twitter_site":"@heartinternet","twitter_misc":{"Written by":"Eliot Chambers-Ostler","Estimated reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.heartinternet.uk\/blog\/four-easy-ways-to-clean-your-linux-server\/#article","isPartOf":{"@id":"https:\/\/www.heartinternet.uk\/blog\/four-easy-ways-to-clean-your-linux-server\/"},"author":{"name":"Eliot Chambers-Ostler","@id":"https:\/\/heartblog.victory.digital\/#\/schema\/person\/58ed7f27cc0f3ab6e69135742a5eee28"},"headline":"Four easy ways to clean your Linux server","datePublished":"2017-07-04T11:30:11+00:00","mainEntityOfPage":{"@id":"https:\/\/www.heartinternet.uk\/blog\/four-easy-ways-to-clean-your-linux-server\/"},"wordCount":646,"commentCount":0,"publisher":{"@id":"https:\/\/heartblog.victory.digital\/#organization"},"image":{"@id":"https:\/\/www.heartinternet.uk\/blog\/four-easy-ways-to-clean-your-linux-server\/#primaryimage"},"thumbnailUrl":"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2017\/07\/linuxcleaner-background.jpg","articleSection":["Dedicated Servers","VPS"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.heartinternet.uk\/blog\/four-easy-ways-to-clean-your-linux-server\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.heartinternet.uk\/blog\/four-easy-ways-to-clean-your-linux-server\/","url":"https:\/\/www.heartinternet.uk\/blog\/four-easy-ways-to-clean-your-linux-server\/","name":"Four easy ways to clean your Linux server - Heart Internet","isPartOf":{"@id":"https:\/\/heartblog.victory.digital\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.heartinternet.uk\/blog\/four-easy-ways-to-clean-your-linux-server\/#primaryimage"},"image":{"@id":"https:\/\/www.heartinternet.uk\/blog\/four-easy-ways-to-clean-your-linux-server\/#primaryimage"},"thumbnailUrl":"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2017\/07\/linuxcleaner-background.jpg","datePublished":"2017-07-04T11:30:11+00:00","description":"System clean-up is something that you should do regularly. Here are four easy ways to keep your Linux server running smooth.","breadcrumb":{"@id":"https:\/\/www.heartinternet.uk\/blog\/four-easy-ways-to-clean-your-linux-server\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.heartinternet.uk\/blog\/four-easy-ways-to-clean-your-linux-server\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.heartinternet.uk\/blog\/four-easy-ways-to-clean-your-linux-server\/#primaryimage","url":"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2017\/07\/linuxcleaner-background.jpg","contentUrl":"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2017\/07\/linuxcleaner-background.jpg","width":1265,"height":500},{"@type":"BreadcrumbList","@id":"https:\/\/www.heartinternet.uk\/blog\/four-easy-ways-to-clean-your-linux-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.heartinternet.uk\/blog\/"},{"@type":"ListItem","position":2,"name":"Four easy ways to clean your Linux server"}]},{"@type":"WebSite","@id":"https:\/\/heartblog.victory.digital\/#website","url":"https:\/\/heartblog.victory.digital\/","name":"Heart Internet","description":"","publisher":{"@id":"https:\/\/heartblog.victory.digital\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/heartblog.victory.digital\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/heartblog.victory.digital\/#organization","name":"Heart Internet","url":"https:\/\/heartblog.victory.digital\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/heartblog.victory.digital\/#\/schema\/logo\/image\/","url":"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2025\/02\/HeartInternet_Logo_Colour.webp","contentUrl":"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2025\/02\/HeartInternet_Logo_Colour.webp","width":992,"height":252,"caption":"Heart Internet"},"image":{"@id":"https:\/\/heartblog.victory.digital\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/heartinternet\/","https:\/\/x.com\/heartinternet","https:\/\/www.linkedin.com\/company\/heart-internet-ltd"]},{"@type":"Person","@id":"https:\/\/heartblog.victory.digital\/#\/schema\/person\/58ed7f27cc0f3ab6e69135742a5eee28","name":"Eliot Chambers-Ostler","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/heartblog.victory.digital\/#\/schema\/person\/image\/","url":"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2025\/08\/cropped-Eliot-96x96.jpg","contentUrl":"https:\/\/www.heartinternet.uk\/blog\/wp-content\/uploads\/2025\/08\/cropped-Eliot-96x96.jpg","caption":"Eliot Chambers-Ostler"},"url":"https:\/\/www.heartinternet.uk\/blog\/author\/eliot-chambers-ostler\/"}]}},"_links":{"self":[{"href":"https:\/\/www.heartinternet.uk\/blog\/wp-json\/wp\/v2\/posts\/16739","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.heartinternet.uk\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.heartinternet.uk\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.heartinternet.uk\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.heartinternet.uk\/blog\/wp-json\/wp\/v2\/comments?post=16739"}],"version-history":[{"count":0,"href":"https:\/\/www.heartinternet.uk\/blog\/wp-json\/wp\/v2\/posts\/16739\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.heartinternet.uk\/blog\/wp-json\/wp\/v2\/media\/16741"}],"wp:attachment":[{"href":"https:\/\/www.heartinternet.uk\/blog\/wp-json\/wp\/v2\/media?parent=16739"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.heartinternet.uk\/blog\/wp-json\/wp\/v2\/categories?post=16739"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.heartinternet.uk\/blog\/wp-json\/wp\/v2\/tags?post=16739"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}