{"id":2070,"date":"2023-03-25T18:36:38","date_gmt":"2023-03-25T18:36:38","guid":{"rendered":"https:\/\/linuxdigest.com\/?p=2070"},"modified":"2023-11-25T23:36:48","modified_gmt":"2023-11-25T23:36:48","slug":"drxrwxrwt-meaning","status":"publish","type":"post","link":"https:\/\/linuxdigest.com\/howto\/drxrwxrwt-meaning\/","title":{"rendered":"drwxrwxrwT: The meaning of the &#8220;T&#8221; at the end."},"content":{"rendered":"\n<p>Today, I want to dive into the realm of file permissions, specifically focusing on a character you may have encountered during your Linux journey: the weird <strong>&#8220;t&#8221;<\/strong> at the end of a drwxrwxrwt permission set.<\/p>\n\n\n\n<p>In this post, I&#8217;ll explore the meaning and implications of this often overlooked, yet powerful, permission modifier that plays a vital role in enhancing the security and management of your Linux system. So, let&#8217;s get straight to the point and unravel the mystery behind the sticky bit!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What does the &#8220;t&#8221; stand for in drwxrwxrwt or rwxrwxrwt?<\/h2>\n\n\n\n<p>The &#8216;t&#8217; at the end of <strong>drwxrwxrwt<\/strong> or <strong>-rwxrwxrwt<\/strong> stands for the <strong>&#8220;sticky bit.&#8221;<\/strong> The sticky bit is a permission modifier that provides additional control over the access and management of files within a directory. When the sticky bit is set on a directory, it ensures that <strong>only the owner of a file can delete or rename the file<\/strong>, even if other users have write permissions on the directory. This will prevent users from accidentally or intentionally deleting or modifying files that belong to others.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">When to use the sticky bit?<\/h2>\n\n\n\n<p>One example of using the sticky bit is when you have a file that you want all users on your system to be able to edit. A shift schedule is an example. But you don&#8217;t want somebody to be able to accidentally delete the file and lose all the data. Then you would set the sticky bit, and both read and write permissions to the file. Now everyone can edit the file but only you, the owner, can delete it.<\/p>\n\n\n\n<p>Another example would be a directory that holds data for an application that multiple users run. You may want to make sure that the application can make changes to its files when run by other users. But if the data would be deleted, the application might run into problems. So you set the sticky bit on the directory.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to set the sticky bit<\/h2>\n\n\n\n<p>Setting the sticky bit is quite simple. You can use the chmod command to do this. Let&#8217;s create a file and allow everyone to read and write to the file.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">linuxdigest@linuxdigest:~$ touch sticky_file\nlinuxdigest@linuxdigest:~$ chmod g+rw,o+rw sticky_file \nlinuxdigest@linuxdigest:~$ ls -lh\ntotal 0\n-rw-rw-rw- 1 linuxdigest linuxdigest 0 Mar 25 17:29 sticky_file<\/pre>\n\n\n\n<p>As you can see the permission are: <strong>&#8220;-rw-rw-rw-&#8220;<\/strong>. Meaning that the file can be read and written by the owner, owner&#8217;s group, and others.<\/p>\n\n\n\n<p>Now to set the sticky bit. The simplest way to do this is to use &#8220;<strong>+t&#8221;<\/strong> when running the chmod command.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">chmod +t sticky_file<\/pre>\n\n\n\n<p>The exact same thing would apply to a directory when we run chmod with the <strong>&#8220;+t&#8221;<\/strong> argument.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">chmod +t sticky_directory<\/pre>\n\n\n\n<p>Now the permissions on the directory show <strong>&#8220;drwxrwxrwt<\/strong>&#8221; in the permissions field:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">linuxdigest@linuxdigest:~$ ls -lh\ntotal 4.0K\ndrwxrwxrwt 2 linuxdigest linuxdigest 4.0K Mar 25 18:03 sticky_directory<\/pre>\n\n\n\n<p>When we run <strong>ls<\/strong> on the directory again we will see that the <strong>&#8220;t&#8221;<\/strong> has been added to the end of the permissions.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">linuxdigest@linuxdigest:~$ ls -lh\ntotal 0\n-rw-rw-rwT 1 linuxdigest linuxdigest 0 Mar 25 17:35 sticky_file<\/pre>\n\n\n\n<p>Of course, if you are more accustomed to using octal notation when running chmod you can do that as well. All you need to do is set the first attribute to 1. <\/p>\n\n\n\n<p>In our example above we wanted everyone to have read and write permission. An absolute octal value would be 666. Which is the same as using a=rw. To add the sticky bit we will set the value to <strong>1666<\/strong>. Like this:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">chmod 1666 sticky_file<\/pre>\n\n\n\n<p>Now we have the same result as we did before:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">linuxdigest@linuxdigest:~$ ls -lh\ntotal 0\n-rw-rw-rwT 1 linuxdigest linuxdigest 0 Mar 25 17:35 sticky_file<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">How to remove the sticky bit<\/h2>\n\n\n\n<p>Removing the sticky bit is just as simple as adding it. Just substitute the &#8220;+&#8221; sign with a <strong>&#8220;-&#8220;<\/strong> sign. So instead of using &#8220;+t&#8221; we will use <strong>&#8220;-t&#8221;<\/strong> when running chmod:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">chmod -t sticky_file<\/pre>\n\n\n\n<p>In octal format, the absolute value for the permission would be 0666. That is read-write for everyone but no sticky bit.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">chmod 0666 sticky_file<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">The difference between the lowercase and uppercase &#8216;T&#8217;<\/h2>\n\n\n\n<p>You may have noticed that the &#8220;t&#8221; in the permissions is sometimes represented with a lowercase &#8220;t&#8221; and sometimes with an uppercase &#8220;T&#8221;. This might seem confusing, but it is actually a pretty smart way to save space.<\/p>\n\n\n\n<p>An uppercase &#8220;T&#8221; will tell you that the sticky bit is set but others do not have executable permission. But a lowercase &#8220;t&#8221; will tell you that the sticky bit is set and executable permission for others is also set.<\/p>\n\n\n\n<p>Compare these two directories. One has the sticky bit and the other one does not:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">drwxrwxrwx 2 linuxdigest linuxdigest 4.0K Mar 25 18:07 not_sticky_directory\ndrwxrwxrwt 2 linuxdigest linuxdigest 4.0K Mar 25 18:07 sticky_directory<\/pre>\n\n\n\n<p>Notice how the last &#8220;x&#8221; (executable permission for others) is missing from the sticky directory? The sticky bit replaces the &#8220;x&#8221; so we need a way to see if the executable permission is set. Let&#8217;s try removing the executable permission on both directories:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">chmod o-x *<\/pre>\n\n\n\n<p>Now when we run <strong>ls<\/strong> we will see this:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">drwxrwxrw- 2 linuxdigest linuxdigest 4.0K Mar 25 18:07 not_sticky_directory\ndrwxrwxrwT 2 linuxdigest linuxdigest 4.0K Mar 25 18:07 sticky_directory\n<\/pre>\n\n\n\n<p>The sticky bit is represented with an uppercase &#8216;T&#8217; instead of a lowercase one. So we know that there is also no executable permission for others.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">That is it for drwxrwxrwT<\/h2>\n\n\n\n<p>Congratulations! The next time you see &#8220;drwxrwxrwT&#8221; or &#8220;-rwxrwxrwt&#8221; in your ls output, you should be able to tell that the sticky bit is set and what that means. I hope you stick around and take a look at some of my other articles. Like an explanation of more standard permissions like <a href=\"https:\/\/linuxdigest.com\/howto\/rw-r-r-step-by-step-explanation\/\">\u201c-rw-r\u2013r\u2013\u201c<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Today, I want to dive into the realm of file permissions, specifically focusing on a character&hellip;<\/p>\n","protected":false},"author":1,"featured_media":2091,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[27],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>drwxrwxrwT: The meaning of the &quot;T&quot; at the end. - Linux Digest<\/title>\n<meta name=\"description\" content=\"The &quot;T&quot; at the end of the linux file permission &quot;dwrxwrxwrxt&quot; stands for the sticky bit. Let&#039;s find out what that means.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxdigest.com\/howto\/drxrwxrwt-meaning\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"drwxrwxrwT: The meaning of the &quot;T&quot; at the end. - Linux Digest\" \/>\n<meta property=\"og:description\" content=\"The &quot;T&quot; at the end of the linux file permission &quot;dwrxwrxwrxt&quot; stands for the sticky bit. Let&#039;s find out what that means.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxdigest.com\/howto\/drxrwxrwt-meaning\/\" \/>\n<meta property=\"og:site_name\" content=\"Linux Digest\" \/>\n<meta property=\"article:published_time\" content=\"2023-03-25T18:36:38+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-11-25T23:36:48+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxdigest.com\/wp-content\/uploads\/2023\/03\/dwrxwrxwrT.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"654\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"The Linux Digest Guy\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"The Linux Digest Guy\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/linuxdigest.com\/howto\/drxrwxrwt-meaning\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/linuxdigest.com\/howto\/drxrwxrwt-meaning\/\"},\"author\":{\"name\":\"The Linux Digest Guy\",\"@id\":\"https:\/\/linuxdigest.com\/#\/schema\/person\/29c97230aa94affab929a88c6a10adb2\"},\"headline\":\"drwxrwxrwT: The meaning of the &#8220;T&#8221; at the end.\",\"datePublished\":\"2023-03-25T18:36:38+00:00\",\"dateModified\":\"2023-11-25T23:36:48+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/linuxdigest.com\/howto\/drxrwxrwt-meaning\/\"},\"wordCount\":839,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/linuxdigest.com\/#organization\"},\"articleSection\":[\"Command line tools\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/linuxdigest.com\/howto\/drxrwxrwt-meaning\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/linuxdigest.com\/howto\/drxrwxrwt-meaning\/\",\"url\":\"https:\/\/linuxdigest.com\/howto\/drxrwxrwt-meaning\/\",\"name\":\"drwxrwxrwT: The meaning of the \\\"T\\\" at the end. - Linux Digest\",\"isPartOf\":{\"@id\":\"https:\/\/linuxdigest.com\/#website\"},\"datePublished\":\"2023-03-25T18:36:38+00:00\",\"dateModified\":\"2023-11-25T23:36:48+00:00\",\"description\":\"The \\\"T\\\" at the end of the linux file permission \\\"dwrxwrxwrxt\\\" stands for the sticky bit. Let's find out what that means.\",\"breadcrumb\":{\"@id\":\"https:\/\/linuxdigest.com\/howto\/drxrwxrwt-meaning\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/linuxdigest.com\/howto\/drxrwxrwt-meaning\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/linuxdigest.com\/howto\/drxrwxrwt-meaning\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/linuxdigest.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"drwxrwxrwT: The meaning of the &#8220;T&#8221; at the end.\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/linuxdigest.com\/#website\",\"url\":\"https:\/\/linuxdigest.com\/\",\"name\":\"Linux Digest\",\"description\":\"Linux tutorials for everyone\",\"publisher\":{\"@id\":\"https:\/\/linuxdigest.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/linuxdigest.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/linuxdigest.com\/#organization\",\"name\":\"Linux Digest\",\"url\":\"https:\/\/linuxdigest.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/linuxdigest.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/linuxdigest.com\/wp-content\/uploads\/2019\/11\/logo1.png\",\"contentUrl\":\"https:\/\/linuxdigest.com\/wp-content\/uploads\/2019\/11\/logo1.png\",\"width\":1102,\"height\":170,\"caption\":\"Linux Digest\"},\"image\":{\"@id\":\"https:\/\/linuxdigest.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/linuxdigest.com\/#\/schema\/person\/29c97230aa94affab929a88c6a10adb2\",\"name\":\"The Linux Digest Guy\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/linuxdigest.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ac6bcf745dec6961360ccf2d2711f26c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ac6bcf745dec6961360ccf2d2711f26c?s=96&d=mm&r=g\",\"caption\":\"The Linux Digest Guy\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"drwxrwxrwT: The meaning of the \"T\" at the end. - Linux Digest","description":"The \"T\" at the end of the linux file permission \"dwrxwrxwrxt\" stands for the sticky bit. Let's find out what that means.","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:\/\/linuxdigest.com\/howto\/drxrwxrwt-meaning\/","og_locale":"en_US","og_type":"article","og_title":"drwxrwxrwT: The meaning of the \"T\" at the end. - Linux Digest","og_description":"The \"T\" at the end of the linux file permission \"dwrxwrxwrxt\" stands for the sticky bit. Let's find out what that means.","og_url":"https:\/\/linuxdigest.com\/howto\/drxrwxrwt-meaning\/","og_site_name":"Linux Digest","article_published_time":"2023-03-25T18:36:38+00:00","article_modified_time":"2023-11-25T23:36:48+00:00","og_image":[{"width":1280,"height":654,"url":"https:\/\/linuxdigest.com\/wp-content\/uploads\/2023\/03\/dwrxwrxwrT.jpg","type":"image\/jpeg"}],"author":"The Linux Digest Guy","twitter_card":"summary_large_image","twitter_misc":{"Written by":"The Linux Digest Guy","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxdigest.com\/howto\/drxrwxrwt-meaning\/#article","isPartOf":{"@id":"https:\/\/linuxdigest.com\/howto\/drxrwxrwt-meaning\/"},"author":{"name":"The Linux Digest Guy","@id":"https:\/\/linuxdigest.com\/#\/schema\/person\/29c97230aa94affab929a88c6a10adb2"},"headline":"drwxrwxrwT: The meaning of the &#8220;T&#8221; at the end.","datePublished":"2023-03-25T18:36:38+00:00","dateModified":"2023-11-25T23:36:48+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxdigest.com\/howto\/drxrwxrwt-meaning\/"},"wordCount":839,"commentCount":0,"publisher":{"@id":"https:\/\/linuxdigest.com\/#organization"},"articleSection":["Command line tools"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxdigest.com\/howto\/drxrwxrwt-meaning\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxdigest.com\/howto\/drxrwxrwt-meaning\/","url":"https:\/\/linuxdigest.com\/howto\/drxrwxrwt-meaning\/","name":"drwxrwxrwT: The meaning of the \"T\" at the end. - Linux Digest","isPartOf":{"@id":"https:\/\/linuxdigest.com\/#website"},"datePublished":"2023-03-25T18:36:38+00:00","dateModified":"2023-11-25T23:36:48+00:00","description":"The \"T\" at the end of the linux file permission \"dwrxwrxwrxt\" stands for the sticky bit. Let's find out what that means.","breadcrumb":{"@id":"https:\/\/linuxdigest.com\/howto\/drxrwxrwt-meaning\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxdigest.com\/howto\/drxrwxrwt-meaning\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/linuxdigest.com\/howto\/drxrwxrwt-meaning\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxdigest.com\/"},{"@type":"ListItem","position":2,"name":"drwxrwxrwT: The meaning of the &#8220;T&#8221; at the end."}]},{"@type":"WebSite","@id":"https:\/\/linuxdigest.com\/#website","url":"https:\/\/linuxdigest.com\/","name":"Linux Digest","description":"Linux tutorials for everyone","publisher":{"@id":"https:\/\/linuxdigest.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxdigest.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/linuxdigest.com\/#organization","name":"Linux Digest","url":"https:\/\/linuxdigest.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxdigest.com\/#\/schema\/logo\/image\/","url":"https:\/\/linuxdigest.com\/wp-content\/uploads\/2019\/11\/logo1.png","contentUrl":"https:\/\/linuxdigest.com\/wp-content\/uploads\/2019\/11\/logo1.png","width":1102,"height":170,"caption":"Linux Digest"},"image":{"@id":"https:\/\/linuxdigest.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/linuxdigest.com\/#\/schema\/person\/29c97230aa94affab929a88c6a10adb2","name":"The Linux Digest Guy","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxdigest.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/ac6bcf745dec6961360ccf2d2711f26c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ac6bcf745dec6961360ccf2d2711f26c?s=96&d=mm&r=g","caption":"The Linux Digest Guy"}}]}},"_links":{"self":[{"href":"https:\/\/linuxdigest.com\/wp-json\/wp\/v2\/posts\/2070"}],"collection":[{"href":"https:\/\/linuxdigest.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxdigest.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxdigest.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxdigest.com\/wp-json\/wp\/v2\/comments?post=2070"}],"version-history":[{"count":3,"href":"https:\/\/linuxdigest.com\/wp-json\/wp\/v2\/posts\/2070\/revisions"}],"predecessor-version":[{"id":2111,"href":"https:\/\/linuxdigest.com\/wp-json\/wp\/v2\/posts\/2070\/revisions\/2111"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxdigest.com\/wp-json\/wp\/v2\/media\/2091"}],"wp:attachment":[{"href":"https:\/\/linuxdigest.com\/wp-json\/wp\/v2\/media?parent=2070"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxdigest.com\/wp-json\/wp\/v2\/categories?post=2070"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxdigest.com\/wp-json\/wp\/v2\/tags?post=2070"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}