{"id":3473,"date":"2018-04-05T17:15:15","date_gmt":"2018-04-05T14:15:15","guid":{"rendered":"https:\/\/www.systemcodegeeks.com\/?p=3473"},"modified":"2018-04-05T12:01:28","modified_gmt":"2018-04-05T09:01:28","slug":"ubuntu-how-do-i-change-my-username","status":"publish","type":"post","link":"https:\/\/www.systemcodegeeks.com\/linux\/ubuntu\/ubuntu-how-do-i-change-my-username\/","title":{"rendered":"Ubuntu &#8211; How do I change my username?"},"content":{"rendered":"<p>  Unix-like<br \/>\n <u>operating systems decouple the user name from the user identity,<\/u> so you may safely change the name without affecting the ID. All permissions, files, etc are tied to your identity (uid), not your username.<\/p>\n<p>To manage every aspect of the user database, you use the <code>usermod<\/code> tool.<\/p>\n<p><b>1- To change username<\/b> (it is probably best to do this without being logged in):  <\/p>\n<pre class=\"brush:php\">sudo usermod -l newUsername oldUsername<\/pre>\n<p>This however, doesn&#8217;t rename the home folder. <\/p>\n<p><b>2- To change home-folder<\/b>, use <\/p>\n<pre class=\"brush:php\">sudo usermod -d \/home\/newHomeDir -m newUsername<\/pre>\n<p>after you changed the username.<\/p>\n<p>For instance, you could logout, drop to a console (<code>Ctrl+Alt+F1<\/code>), and <code>sudo su -<\/code> to become true root (as opposed to <code>sudo -s<\/code>, where <code>$HOME<\/code> is still <code>\/home\/yourname<\/code>.) Maybe you also have to kill some still running processes from this user first. To do so, enter <code>ps -u username<\/code>, look for the matching PID and kill them by <code>kill PID-number<\/code>.<\/p>\n<p>Update: as arrange mentioned, some files may reference your old home directory. You can either keep a symlink for backward compatibility, e g <code>ln -s \/home\/newname \/home\/oldname<\/code> or you can change the file contents with <code>sed -i.bak 's\/*oldname*\/*newname*\/g' *list of files*<\/code> It creates a backup for each file with a .bak extension.<\/p>\n<p>Some additional information for not so experienced users like me:<br \/>\nAs I only have ONE user account (administrator), it would not let me change the username (&quot;you are already logged in&quot; was the response in TTY1 (<code>Ctrl+Alt+F1<\/code>). To get around this:<\/p>\n<ol>\n<li>Login with your old credentials and add a new user, e.g. &quot;temporary&quot; in TTY1:\n<pre class=\" brush:php\">sudo adduser temporary<\/pre>\n<p> set the password.<\/li>\n<li>Allow the temporary user to run sudo by adding the user to sudo group:\n<pre class=\" brush:php\">sudo adduser temporary sudo<\/pre>\n<\/li>\n<li>Log out with the command <code>exit<\/code>.<\/li>\n<li>Return to tty1: Login with the &#8216;temporary&#8217; user account and password. Change your username and folder as mentioned above. <code>exit<\/code> (until you get the login prompt)<\/li>\n<li>Go back to TTY7 (<code>Ctrl+Alt+F7<\/code>) to login on the GUI\/normal desktop screen and see if this works.<\/li>\n<li>Delete temporary user and folder:\n<pre class=\" brush:php\">\r\nsudo deluser temporary\r\nsudo rm -r \/home\/temporary<\/pre>\n<\/li>\n<\/ol>\n<p>NB: Copied from several resources. Thanks for the contribution.<\/p>\n<div class=\"attribution\">\n<table>\n<tr>\n<td>\n<p>Published on System Code Geeks with permission by Ahmad Gohar, partner at our <a target=\"_blank\" href=\"\/\/www.systemcodegeeks.com\/join-us\/scg\/\">SCG program<\/a>. See the original article here: <a target=\"_blank\" href=\"http:\/\/ansgohar.blogspot.com\/2018\/04\/ubuntu-how-do-i-change-my-username.html\">Ubuntu &#8211; How do I change my username?<\/a><\/p>\n<p>Opinions expressed by System Code Geeks contributors are their own.<\/p>\n<\/td>\n<\/tr>\n<\/table>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Unix-like operating systems decouple the user name from the user identity, so you may safely change the name without affecting the ID. All permissions, files, etc are tied to your identity (uid), not your username. To manage every aspect of the user database, you use the usermod tool. 1- To change username (it is probably &hellip;<\/p>\n","protected":false},"author":1444,"featured_media":200,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[10],"tags":[],"class_list":["post-3473","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ubuntu"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Ubuntu - How do I change my username? - System Code Geeks - 2026<\/title>\n<meta name=\"description\" content=\"Unix-like operating systems decouple the user name from the user identity, so you may safely change the name without affecting the ID. All permissions,\" \/>\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.systemcodegeeks.com\/linux\/ubuntu\/ubuntu-how-do-i-change-my-username\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Ubuntu - How do I change my username? - System Code Geeks - 2026\" \/>\n<meta property=\"og:description\" content=\"Unix-like operating systems decouple the user name from the user identity, so you may safely change the name without affecting the ID. All permissions,\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.systemcodegeeks.com\/linux\/ubuntu\/ubuntu-how-do-i-change-my-username\/\" \/>\n<meta property=\"og:site_name\" content=\"System Code Geeks\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/systemcodegeeks\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/ansgohar\" \/>\n<meta property=\"article:published_time\" content=\"2018-04-05T14:15:15+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/ubuntu-logo.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"150\" \/>\n\t<meta property=\"og:image:height\" content=\"150\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Ahmad Gohar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@ansgohar\" \/>\n<meta name=\"twitter:site\" content=\"@systemcodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ahmad Gohar\" \/>\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.systemcodegeeks.com\/linux\/ubuntu\/ubuntu-how-do-i-change-my-username\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/linux\/ubuntu\/ubuntu-how-do-i-change-my-username\/\"},\"author\":{\"name\":\"Ahmad Gohar\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/5919215aae837245484af1299e86fd89\"},\"headline\":\"Ubuntu &#8211; How do I change my username?\",\"datePublished\":\"2018-04-05T14:15:15+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/linux\/ubuntu\/ubuntu-how-do-i-change-my-username\/\"},\"wordCount\":352,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/linux\/ubuntu\/ubuntu-how-do-i-change-my-username\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/ubuntu-logo.jpg\",\"articleSection\":[\"Ubuntu\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.systemcodegeeks.com\/linux\/ubuntu\/ubuntu-how-do-i-change-my-username\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/linux\/ubuntu\/ubuntu-how-do-i-change-my-username\/\",\"url\":\"https:\/\/www.systemcodegeeks.com\/linux\/ubuntu\/ubuntu-how-do-i-change-my-username\/\",\"name\":\"Ubuntu - How do I change my username? - System Code Geeks - 2026\",\"isPartOf\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/linux\/ubuntu\/ubuntu-how-do-i-change-my-username\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/linux\/ubuntu\/ubuntu-how-do-i-change-my-username\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/ubuntu-logo.jpg\",\"datePublished\":\"2018-04-05T14:15:15+00:00\",\"description\":\"Unix-like operating systems decouple the user name from the user identity, so you may safely change the name without affecting the ID. All permissions,\",\"breadcrumb\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/linux\/ubuntu\/ubuntu-how-do-i-change-my-username\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.systemcodegeeks.com\/linux\/ubuntu\/ubuntu-how-do-i-change-my-username\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/linux\/ubuntu\/ubuntu-how-do-i-change-my-username\/#primaryimage\",\"url\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/ubuntu-logo.jpg\",\"contentUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/ubuntu-logo.jpg\",\"width\":150,\"height\":150},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/linux\/ubuntu\/ubuntu-how-do-i-change-my-username\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.systemcodegeeks.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Linux\",\"item\":\"https:\/\/www.systemcodegeeks.com\/category\/linux\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Ubuntu\",\"item\":\"https:\/\/www.systemcodegeeks.com\/category\/linux\/ubuntu\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Ubuntu &#8211; How do I change my username?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#website\",\"url\":\"https:\/\/www.systemcodegeeks.com\/\",\"name\":\"System Code Geeks\",\"description\":\"Operating System Developers Resource Center\",\"publisher\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.systemcodegeeks.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#organization\",\"name\":\"Exelixis Media P.C.\",\"url\":\"https:\/\/www.systemcodegeeks.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"contentUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"width\":864,\"height\":246,\"caption\":\"Exelixis Media P.C.\"},\"image\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/systemcodegeeks\",\"https:\/\/x.com\/systemcodegeeks\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/5919215aae837245484af1299e86fd89\",\"name\":\"Ahmad Gohar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/477593e9d4bb2534875e0df74260a083cd1c23e7d2f26b8d9707a920d7671b23?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/477593e9d4bb2534875e0df74260a083cd1c23e7d2f26b8d9707a920d7671b23?s=96&d=mm&r=g\",\"caption\":\"Ahmad Gohar\"},\"description\":\"Technical Team Leader with 9+ years experience in designing and developing enterprise Solution using Oracle, IBM, and Open Source. With a solid technical and academic background. Strong technical project management experience, coordinate demo's for QA team, performing code, design and test plan reviews.\",\"sameAs\":[\"https:\/\/ansgohar.blogspot.com\",\"https:\/\/www.facebook.com\/ansgohar\",\"https:\/\/eg.linkedin.com\/in\/ansgohar\",\"https:\/\/x.com\/ansgohar\"],\"url\":\"https:\/\/www.systemcodegeeks.com\/author\/ahmad-gohar\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Ubuntu - How do I change my username? - System Code Geeks - 2026","description":"Unix-like operating systems decouple the user name from the user identity, so you may safely change the name without affecting the ID. All permissions,","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.systemcodegeeks.com\/linux\/ubuntu\/ubuntu-how-do-i-change-my-username\/","og_locale":"en_US","og_type":"article","og_title":"Ubuntu - How do I change my username? - System Code Geeks - 2026","og_description":"Unix-like operating systems decouple the user name from the user identity, so you may safely change the name without affecting the ID. All permissions,","og_url":"https:\/\/www.systemcodegeeks.com\/linux\/ubuntu\/ubuntu-how-do-i-change-my-username\/","og_site_name":"System Code Geeks","article_publisher":"https:\/\/www.facebook.com\/systemcodegeeks","article_author":"https:\/\/www.facebook.com\/ansgohar","article_published_time":"2018-04-05T14:15:15+00:00","og_image":[{"width":150,"height":150,"url":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/ubuntu-logo.jpg","type":"image\/jpeg"}],"author":"Ahmad Gohar","twitter_card":"summary_large_image","twitter_creator":"@ansgohar","twitter_site":"@systemcodegeeks","twitter_misc":{"Written by":"Ahmad Gohar","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.systemcodegeeks.com\/linux\/ubuntu\/ubuntu-how-do-i-change-my-username\/#article","isPartOf":{"@id":"https:\/\/www.systemcodegeeks.com\/linux\/ubuntu\/ubuntu-how-do-i-change-my-username\/"},"author":{"name":"Ahmad Gohar","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/5919215aae837245484af1299e86fd89"},"headline":"Ubuntu &#8211; How do I change my username?","datePublished":"2018-04-05T14:15:15+00:00","mainEntityOfPage":{"@id":"https:\/\/www.systemcodegeeks.com\/linux\/ubuntu\/ubuntu-how-do-i-change-my-username\/"},"wordCount":352,"commentCount":0,"publisher":{"@id":"https:\/\/www.systemcodegeeks.com\/#organization"},"image":{"@id":"https:\/\/www.systemcodegeeks.com\/linux\/ubuntu\/ubuntu-how-do-i-change-my-username\/#primaryimage"},"thumbnailUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/ubuntu-logo.jpg","articleSection":["Ubuntu"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.systemcodegeeks.com\/linux\/ubuntu\/ubuntu-how-do-i-change-my-username\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.systemcodegeeks.com\/linux\/ubuntu\/ubuntu-how-do-i-change-my-username\/","url":"https:\/\/www.systemcodegeeks.com\/linux\/ubuntu\/ubuntu-how-do-i-change-my-username\/","name":"Ubuntu - How do I change my username? - System Code Geeks - 2026","isPartOf":{"@id":"https:\/\/www.systemcodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.systemcodegeeks.com\/linux\/ubuntu\/ubuntu-how-do-i-change-my-username\/#primaryimage"},"image":{"@id":"https:\/\/www.systemcodegeeks.com\/linux\/ubuntu\/ubuntu-how-do-i-change-my-username\/#primaryimage"},"thumbnailUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/ubuntu-logo.jpg","datePublished":"2018-04-05T14:15:15+00:00","description":"Unix-like operating systems decouple the user name from the user identity, so you may safely change the name without affecting the ID. All permissions,","breadcrumb":{"@id":"https:\/\/www.systemcodegeeks.com\/linux\/ubuntu\/ubuntu-how-do-i-change-my-username\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.systemcodegeeks.com\/linux\/ubuntu\/ubuntu-how-do-i-change-my-username\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systemcodegeeks.com\/linux\/ubuntu\/ubuntu-how-do-i-change-my-username\/#primaryimage","url":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/ubuntu-logo.jpg","contentUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/ubuntu-logo.jpg","width":150,"height":150},{"@type":"BreadcrumbList","@id":"https:\/\/www.systemcodegeeks.com\/linux\/ubuntu\/ubuntu-how-do-i-change-my-username\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.systemcodegeeks.com\/"},{"@type":"ListItem","position":2,"name":"Linux","item":"https:\/\/www.systemcodegeeks.com\/category\/linux\/"},{"@type":"ListItem","position":3,"name":"Ubuntu","item":"https:\/\/www.systemcodegeeks.com\/category\/linux\/ubuntu\/"},{"@type":"ListItem","position":4,"name":"Ubuntu &#8211; How do I change my username?"}]},{"@type":"WebSite","@id":"https:\/\/www.systemcodegeeks.com\/#website","url":"https:\/\/www.systemcodegeeks.com\/","name":"System Code Geeks","description":"Operating System Developers Resource Center","publisher":{"@id":"https:\/\/www.systemcodegeeks.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.systemcodegeeks.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.systemcodegeeks.com\/#organization","name":"Exelixis Media P.C.","url":"https:\/\/www.systemcodegeeks.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","contentUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","width":864,"height":246,"caption":"Exelixis Media P.C."},"image":{"@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/systemcodegeeks","https:\/\/x.com\/systemcodegeeks"]},{"@type":"Person","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/5919215aae837245484af1299e86fd89","name":"Ahmad Gohar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/477593e9d4bb2534875e0df74260a083cd1c23e7d2f26b8d9707a920d7671b23?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/477593e9d4bb2534875e0df74260a083cd1c23e7d2f26b8d9707a920d7671b23?s=96&d=mm&r=g","caption":"Ahmad Gohar"},"description":"Technical Team Leader with 9+ years experience in designing and developing enterprise Solution using Oracle, IBM, and Open Source. With a solid technical and academic background. Strong technical project management experience, coordinate demo's for QA team, performing code, design and test plan reviews.","sameAs":["https:\/\/ansgohar.blogspot.com","https:\/\/www.facebook.com\/ansgohar","https:\/\/eg.linkedin.com\/in\/ansgohar","https:\/\/x.com\/ansgohar"],"url":"https:\/\/www.systemcodegeeks.com\/author\/ahmad-gohar\/"}]}},"_links":{"self":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/posts\/3473","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/users\/1444"}],"replies":[{"embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/comments?post=3473"}],"version-history":[{"count":0,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/posts\/3473\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/media\/200"}],"wp:attachment":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/media?parent=3473"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/categories?post=3473"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/tags?post=3473"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}