{"id":283,"date":"2017-11-29T07:00:43","date_gmt":"2017-11-29T13:00:43","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=283"},"modified":"2018-01-25T06:29:54","modified_gmt":"2018-01-25T12:29:54","slug":"how-to-use-the-linux-fuser-command","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-use-the-linux-fuser-command\/","title":{"rendered":"How To Use the Linux Fuser Command"},"content":{"rendered":"<div id=\"linux-2039385695\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>We&#8217;ll show you, How To Use the Linux Fuser Command. The fuser command is used to identify which processes are using a specific file, unix socket or file system. In this tutorial we are going to show you few examples on how to use the fuser command on a Linux VPS.<\/p>\n<p><!--more--><\/p>\n<p>To be able to use fuser command you need to have SSH access to the server. Connect to your server via SSH and run <code>fuser<\/code>.<\/p>\n<pre># fuser\r\nNo process specification given\r\nUsage: fuser [-fMuvw] [-a|-s] [-4|-6] [-c|-m|-n SPACE] [-k [-i] [-SIGNAL]] NAME...\r\n       fuser -l\r\n       fuser -V\r\nShow which processes use the named files, sockets, or filesystems.\r\n\r\n  -a,--all              display unused files too\r\n  -i,--interactive      ask before killing (ignored without -k)\r\n  -k,--kill             kill processes accessing the named file\r\n  -l,--list-signals     list available signal names\r\n  -m,--mount            show all processes using the named filesystems or block device\r\n  -M,--ismountpoint     fulfill request only if NAME is a mount point\r\n  -n,--namespace SPACE  search in this name space (file, udp, or tcp)\r\n  -s,--silent           silent operation\r\n  -SIGNAL               send this signal instead of SIGKILL\r\n  -u,--user             display user IDs\r\n  -v,--verbose          verbose output\r\n  -w,--writeonly        kill only processes with write access\r\n  -V,--version          display version information\r\n  -4,--ipv4             search IPv4 sockets only\r\n  -6,--ipv6             search IPv6 sockets only\r\n  -                     reset options\r\n\r\n  udp\/tcp names: [local_port][,[rmt_host][,[rmt_port]]]\r\n<\/pre>\n<p>The output will notify you that no process specification is given and will show you some basic usage examples and options.<\/p>\n<p>The <code>-v<\/code> or <code>--verbose<\/code> provides verbose output and it is commonly used. One example is to list all the processes that are using the current directory.<\/p>\n<pre>fuser -v .<\/pre>\n<p>If your current directory is the root directory, the output should be similar to this one:<\/p>\n<pre># fuser -v .\r\n                     USER        PID ACCESS COMMAND\r\n                     ...\r\n                     root         37 .rc.. bash\r\n                     root         64 .rc.. systemd-journal\r\n                     root         65 .rc.. systemd-udevd\r\n                     root        193 .rc.. rpcbind\r\n                     root        197 .rc.. systemd-logind\r\n                     root        199 .r... cron\r\n                     messagebus  200 .rc.. dbus-daemon\r\n                     syslog      211 .rc.. rsyslogd\r\n                     root        296 .r... saslauthd\r\n                     root        297 .r... saslauthd\r\n                     root        299 .rc.. sshd\r\n                     bind        304 .r... named\r\n                     root        321 .r... dovecot\r\n                     root        329 .r... log\r\n                     root        334 .r... config\r\n                     mysql       336 .r... mysqld\r\n                     root        370 .rc.. agetty\r\n                     root        371 .rc.. agetty\r\n                     root        396 .rc.. xinetd\r\n                     root        429 .r... sendmail-mta\r\n                     root        449 .rc.. apache2\r\n                     www-data    455 .rc.. apache2\r\n                     www-data    456 .rc.. apache2\r\n                     www-data    457 .rc.. apache2\r\n                     www-data    458 .rc.. apache2\r\n                     www-data    459 .rc.. apache2\r\n                     ...\r\n<\/pre>\n<p>The above output shows information like the USER, PID, ACCESS and the COMMAND used to start the process. ACCESS shows letters denoting the type of access and there are several:<\/p>\n<pre>c - current directory\r\ne - executable being run\r\nr - root directory \r\nf - open file (omitted in default display mode)\r\nF - open file for writing (omitted in default display mode) \r\nm - mmap\u2019ed file or shared library\r\n<\/pre>\n<p>Another common usage of fuser is to list the processes using the UDP and TCP sockets on your Linux VPS. For example to list the processes using the TCP port 80 you can use the following command:<\/p>\n<pre>fuser -v -n tcp 80<\/pre>\n<p>If you have Apache installed and running on your server, the output should be similar to the following one:<\/p>\n<pre># fuser -v -n tcp 80\r\n                     USER        PID ACCESS COMMAND\r\n80\/tcp:              root        449 F.... apache2\r\n                     www-data    455 F.... apache2\r\n                     www-data    456 F.... apache2\r\n                     www-data    457 F.... apache2\r\n                     www-data    458 F.... apache2\r\n                     www-data    459 F.... apache2\r\n                     www-data    511 F.... apache2\r\n                     www-data    512 F.... apache2\r\n                     www-data    513 F.... apache2\r\n<\/pre>\n<p>Fuser can be used to kill specific processes too. For example, to kill the processes which are using TCP port 80, you can use the following command:<\/p>\n<pre>fuser -k 80\/tcp<\/pre>\n<p>Please note, this will kill your Apache service if it is running at the moment.<\/p>\n<p>Another example is to kill all processes accessing the \/home directory in any way:<\/p>\n<pre>fuser -km \/home<\/pre>\n<p>For more options and usage examples you can refer to the fuser man page.<\/p>\n<pre>man fuser<\/pre>\n<p>If you are one of our <a href=\"https:\/\/linuxhostsupport.com\/outsourced-hosting-support.html\">Linux Server Support services,<\/a> you can always talk with one of our Linux Experts about Linux Fuser Command and how you can benefit from it.<\/p>\n<p>PS. If you liked this post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p><div id=\"linux-2977208388\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>We&#8217;ll show you, How To Use the Linux Fuser Command. The fuser command is used to identify which processes are using a specific file, unix socket or file system. In this tutorial we are going to show you few examples on how to use the fuser command on a Linux VPS.<\/p>\n","protected":false},"author":1,"featured_media":285,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[64,45,79],"class_list":["post-283","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-fuser","tag-linux","tag-linux-host-support"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How To Use the Linux Fuser Command<\/title>\n<meta name=\"description\" content=\"The fuser command is used to identify which processes are using a specific file, unix socket or file system. We&#039;ll show you few examples of the fuser command.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/how-to-use-the-linux-fuser-command\/\" \/>\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 Linux Fuser Command\" \/>\n<meta property=\"og:description\" content=\"The fuser command is used to identify which processes are using a specific file, unix socket or file system. We&#039;ll show you few examples of the fuser command.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-use-the-linux-fuser-command\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2017-11-29T13:00:43+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-01-25T12:29:54+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/11\/how-to-use-linux-fuser-command.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"600\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. 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:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-use-the-linux-fuser-command\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-use-the-linux-fuser-command\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How To Use the Linux Fuser Command\",\"datePublished\":\"2017-11-29T13:00:43+00:00\",\"dateModified\":\"2018-01-25T12:29:54+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-use-the-linux-fuser-command\\\/\"},\"wordCount\":358,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-use-the-linux-fuser-command\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/11\\\/how-to-use-linux-fuser-command.jpg\",\"keywords\":[\"fuser\",\"linux\",\"Linux host support\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-use-the-linux-fuser-command\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-use-the-linux-fuser-command\\\/\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-use-the-linux-fuser-command\\\/\",\"name\":\"How To Use the Linux Fuser Command\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-use-the-linux-fuser-command\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-use-the-linux-fuser-command\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/11\\\/how-to-use-linux-fuser-command.jpg\",\"datePublished\":\"2017-11-29T13:00:43+00:00\",\"dateModified\":\"2018-01-25T12:29:54+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"The fuser command is used to identify which processes are using a specific file, unix socket or file system. We'll show you few examples of the fuser command.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-use-the-linux-fuser-command\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-use-the-linux-fuser-command\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-use-the-linux-fuser-command\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/11\\\/how-to-use-linux-fuser-command.jpg\",\"contentUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/11\\\/how-to-use-linux-fuser-command.jpg\",\"width\":1200,\"height\":600,\"caption\":\"how to use linux fuser command\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-use-the-linux-fuser-command\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Use the Linux Fuser Command\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How To Use the Linux Fuser Command","description":"The fuser command is used to identify which processes are using a specific file, unix socket or file system. We'll show you few examples of the fuser command.","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:\/\/linuxhostsupport.com\/blog\/how-to-use-the-linux-fuser-command\/","og_locale":"en_US","og_type":"article","og_title":"How To Use the Linux Fuser Command","og_description":"The fuser command is used to identify which processes are using a specific file, unix socket or file system. We'll show you few examples of the fuser command.","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-use-the-linux-fuser-command\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2017-11-29T13:00:43+00:00","article_modified_time":"2018-01-25T12:29:54+00:00","og_image":[{"width":1200,"height":600,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/11\/how-to-use-linux-fuser-command.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-use-the-linux-fuser-command\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-use-the-linux-fuser-command\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How To Use the Linux Fuser Command","datePublished":"2017-11-29T13:00:43+00:00","dateModified":"2018-01-25T12:29:54+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-use-the-linux-fuser-command\/"},"wordCount":358,"commentCount":0,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-use-the-linux-fuser-command\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/11\/how-to-use-linux-fuser-command.jpg","keywords":["fuser","linux","Linux host support"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-use-the-linux-fuser-command\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-use-the-linux-fuser-command\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-use-the-linux-fuser-command\/","name":"How To Use the Linux Fuser Command","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-use-the-linux-fuser-command\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-use-the-linux-fuser-command\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/11\/how-to-use-linux-fuser-command.jpg","datePublished":"2017-11-29T13:00:43+00:00","dateModified":"2018-01-25T12:29:54+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"The fuser command is used to identify which processes are using a specific file, unix socket or file system. We'll show you few examples of the fuser command.","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-use-the-linux-fuser-command\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-use-the-linux-fuser-command\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-use-the-linux-fuser-command\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/11\/how-to-use-linux-fuser-command.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/11\/how-to-use-linux-fuser-command.jpg","width":1200,"height":600,"caption":"how to use linux fuser command"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-use-the-linux-fuser-command\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How To Use the Linux Fuser Command"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/283","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=283"}],"version-history":[{"count":5,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/283\/revisions"}],"predecessor-version":[{"id":405,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/283\/revisions\/405"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/285"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=283"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=283"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=283"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}