{"id":20201,"date":"2020-07-25T00:05:34","date_gmt":"2020-07-25T07:05:34","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=20201"},"modified":"2023-12-01T03:56:07","modified_gmt":"2023-12-01T11:56:07","slug":"linux-sudo-command","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/linux-sudo-command\/","title":{"rendered":"sudo Command: A Guide for Beginners"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">What is the sudo Command?<\/h2>\n\n\n\n<p>\u201cMake a sandwich.\u201d No. \u201c<a href=\"https:\/\/xkcd.com\/149\/\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">Sudo make a sandwich<\/a>.\u201d Sure. This is a recurring joke in the programming community. This article will help you understand the sudo joke.<br><\/p>\n\n\n\n<p>Sudo is a command that runs any <a href=\"https:\/\/careerkarma.com\/blog\/how-to-learn-linux\/\">Linux command<\/a> with elevated privileges. Sudo is used when your user account does not have the necessary permissions to execute a command.<br><\/p>\n\n\n\n<p>In this guide, we\u2019re going to talk about what sudo is, why it is used, and when you should use it. We\u2019ll walk through an example of the command so you can see how it works.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is the Sudo Command?<\/h2>\n\n\n\n<p>Sudo runs a command with elevated privileges. It originally stood for <code>superuser do<\/code> because the command allows you to run another command as if you are the superuser.<br><\/p>\n\n\n\n<p>The superuser on a <a href=\"https:\/\/careerkarma.com\/blog\/linux-vs-mac\/\">Linux computer<\/a> has special privileges. They can access files like \/root which may be controlled by permissions.<br><\/p>\n\n\n\n<p>There are a range of commands that you cannot run on your computer without sudo. You cannot shutdown or restart a computer using the <code>shutdown<\/code> or <code>reboot<\/code> commands without sudo. You need elevated privileges. You cannot modify certain system files without sudo.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Why Should I Use Sudo?<\/h2>\n\n\n\n<p>\u201cAccess denied\u201d messages may be annoying but they serve an important purpose. These messages help prevent you from making changes without first considering what you are doing.<br><\/p>\n\n\n\n<p>The sudo command acts as a sort of protection mechanism. It ensures that you do not execute any commands that may have a significant impact on your system without giving it a second thought. It may not seem natural to ask a computer for permission but it\u2019s what you\u2019ll need to get used to when using the Linux command line.<br><\/p>\n\n\n\n<p>Sudo is somewhat similar to Windows\u2019 User Account Control boxes, or macOS\u2019 security box. These boxes appear when you install new software or when a piece of software needs to access a particular file. They ensure that you know that certain privileged files on your system may be accessed or modified.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Sudo in Action<\/h2>\n\n\n\n<p>Let\u2019s try to edit the file \/etc\/hosts. This file translates hostnames or domain names into IP addresses. This file is critical for Linux networking which means that it is protected.<br><\/p>\n\n\n\n<p>Let&#8217;s try to modify the file using <code>nano<\/code>:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>127.0.0.1 localhost\n255.255.255.255 broadcasthost\n192.168.1.124 pis<\/pre><\/div>\n\n\n\n<p>I have just added <code>s<\/code> to the end of <code>pi<\/code> in the file. When I go to save the file, I get this message:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>[ Error writing \/etc\/hosts: Permission denied ]<\/pre><\/div>\n\n\n\n<p>Because the \/etc\/hosts file is protected, my standard user account cannot change it. That\u2019s where the sudo command comes in. If I want to modify this file, I need to use sudo:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>sudo nano \/etc\/hosts<\/pre><\/div>\n\n\n\n<p>You may be prompted to enter your password if you use sudo. This will happen the first time you run sudo in each session. You may be asked to enter your password again later.<br><\/p>\n\n\n\n<p>Once you enter your password, the above command will open up the \/etc\/hosts file in the nano editor. You will be allowed to make any change to the file because you are accessing it as if you were the superuser.<br><\/p>\n\n\n\n<p>Sudo is a way of telling your computer to do something. It should be used with caution. Only use sudo when you are absolutely sure you want to run a command. Many commands are irreversible and sudo acts as a sort of protection mechanism against yourself.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Switching Users to Sudo Using su<\/h2>\n\n\n\n<p>You can switch users to the <a href=\"https:\/\/careerkarma.com\/blog\/linux-add-user-to-group\/\">sudo user<\/a> using su:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>sudo su<\/pre><\/div>\n\n\n\n<p><code>su<\/code> is short for <code>substitute user<\/code>. When you do not specify a username, <code>su<\/code> will log you in as the sudo user. Before this command changes your user, you will need to enter your password.<br><\/p>\n\n\n\n<p>This command will open up a shell where you are the sudo user. Most Linux users prefer to use <code>sudo<\/code> over changing users because it is safer. When you are logged in as the superuser, you will not see any \u201cAccess denied\u201d messages. There are no safeguards.<br><\/p>\n\n\n\n<p>You&#8217;re best to stick with <code>sudo<\/code> unless you know what you are doing.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The \/etc\/sudoers File<\/h2>\n\n\n\n<p>The sudo command works by referencing a file called \/etc\/sudoers. This file contains a list of the users who can access the sudo command. You can modify this command in your default text editor or using the visudo command:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>sudo visudo <\/pre><\/div>\n\n\n\n<p>You should be careful when you modify this file. If your sudoers configuration is not correct, it may cause other users to gain sudo access who should not have such access. A broken configuration may cause other problems on your system.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The sudo command runs any Linux command as the superuser. It is used to run commands which require special privileges to execute. For instance, you need sudo access to modify a system file.<br><\/p>\n\n\n\n<p>You can change your user to the superuser in a shell using the <code>su<\/code> command. You should be careful when using this command because it will remove all the \u201cAccess denied\u201d prompts when you run commands until you exit the shell.<br><\/p>\n\n\n\n<p>Now you\u2019re ready to use the sudo command like a Linux expert!<\/p>\n","protected":false},"excerpt":{"rendered":"What is the sudo Command? \u201cMake a sandwich.\u201d No. \u201cSudo make a sandwich.\u201d Sure. This is a recurring joke in the programming community. This article will help you understand the sudo joke. Sudo is a command that runs any Linux command with elevated privileges. Sudo is used when your user account does not have the&hellip;","protected":false},"author":240,"featured_media":20203,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[18070],"tags":[],"class_list":{"0":"post-20201","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-software-engineering-skills"},"acf":{"post_sub_title":"","sprint_id":"","query_class":"Coding","school_sft":"","parent_sft":"","school_privacy_policy":"","has_review":null,"is_sponser_post":"","is_guest_post":""},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>sudo Command: A Guide for Beginners | Career Karma<\/title>\n<meta name=\"description\" content=\"The sudo command allows you to run a Linux command as superuser. On Career Karma, learn more about sudo, how it works, and when it should be used.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/careerkarma.com\/blog\/linux-sudo-command\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"sudo Command: A Guide for Beginners\" \/>\n<meta property=\"og:description\" content=\"The sudo command allows you to run a Linux command as superuser. On Career Karma, learn more about sudo, how it works, and when it should be used.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/linux-sudo-command\/\" \/>\n<meta property=\"og:site_name\" content=\"Career Karma\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/facebook.com\/careerkarmaapp\" \/>\n<meta property=\"article:published_time\" content=\"2020-07-25T07:05:34+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T11:56:07+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/nathan-da-silva-k-rKfqSm4L4-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1020\" \/>\n\t<meta property=\"og:image:height\" content=\"680\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"James Gallagher\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@career_karma\" \/>\n<meta name=\"twitter:site\" content=\"@career_karma\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"James Gallagher\" \/>\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:\\\/\\\/careerkarma.com\\\/blog\\\/linux-sudo-command\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/linux-sudo-command\\\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"sudo Command: A Guide for Beginners\",\"datePublished\":\"2020-07-25T07:05:34+00:00\",\"dateModified\":\"2023-12-01T11:56:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/linux-sudo-command\\\/\"},\"wordCount\":840,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/linux-sudo-command\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/07\\\/nathan-da-silva-k-rKfqSm4L4-unsplash.jpg\",\"articleSection\":[\"Software Engineering\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/linux-sudo-command\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/linux-sudo-command\\\/\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/linux-sudo-command\\\/\",\"name\":\"sudo Command: A Guide for Beginners | Career Karma\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/linux-sudo-command\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/linux-sudo-command\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/07\\\/nathan-da-silva-k-rKfqSm4L4-unsplash.jpg\",\"datePublished\":\"2020-07-25T07:05:34+00:00\",\"dateModified\":\"2023-12-01T11:56:07+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"The sudo command allows you to run a Linux command as superuser. On Career Karma, learn more about sudo, how it works, and when it should be used.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/linux-sudo-command\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/linux-sudo-command\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/linux-sudo-command\\\/#primaryimage\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/07\\\/nathan-da-silva-k-rKfqSm4L4-unsplash.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/07\\\/nathan-da-silva-k-rKfqSm4L4-unsplash.jpg\",\"width\":1020,\"height\":680},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/linux-sudo-command\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Coding\",\"item\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/code\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"sudo Command: A Guide for Beginners\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/\",\"name\":\"Career Karma\",\"description\":\"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e79364792443fbff794a144c67ec8e94\",\"name\":\"James Gallagher\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/01\\\/james-gallagher-150x150.jpg\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/01\\\/james-gallagher-150x150.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/01\\\/james-gallagher-150x150.jpg\",\"caption\":\"James Gallagher\"},\"description\":\"James Gallagher is a self-taught programmer and the technical content manager at Career Karma. He has experience in range of programming languages and extensive expertise in Python, HTML, CSS, and JavaScript. James has written hundreds of programming tutorials, and he frequently contributes to publications like Codecademy, Treehouse, Repl.it, Afrotech, and others.\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/author\\\/jamesgallagher\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"sudo Command: A Guide for Beginners | Career Karma","description":"The sudo command allows you to run a Linux command as superuser. On Career Karma, learn more about sudo, how it works, and when it should be used.","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:\/\/careerkarma.com\/blog\/linux-sudo-command\/","og_locale":"en_US","og_type":"article","og_title":"sudo Command: A Guide for Beginners","og_description":"The sudo command allows you to run a Linux command as superuser. On Career Karma, learn more about sudo, how it works, and when it should be used.","og_url":"https:\/\/careerkarma.com\/blog\/linux-sudo-command\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-07-25T07:05:34+00:00","article_modified_time":"2023-12-01T11:56:07+00:00","og_image":[{"width":1020,"height":680,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/nathan-da-silva-k-rKfqSm4L4-unsplash.jpg","type":"image\/jpeg"}],"author":"James Gallagher","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"James Gallagher","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/linux-sudo-command\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/linux-sudo-command\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"sudo Command: A Guide for Beginners","datePublished":"2020-07-25T07:05:34+00:00","dateModified":"2023-12-01T11:56:07+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/linux-sudo-command\/"},"wordCount":840,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/linux-sudo-command\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/nathan-da-silva-k-rKfqSm4L4-unsplash.jpg","articleSection":["Software Engineering"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/linux-sudo-command\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/linux-sudo-command\/","url":"https:\/\/careerkarma.com\/blog\/linux-sudo-command\/","name":"sudo Command: A Guide for Beginners | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/linux-sudo-command\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/linux-sudo-command\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/nathan-da-silva-k-rKfqSm4L4-unsplash.jpg","datePublished":"2020-07-25T07:05:34+00:00","dateModified":"2023-12-01T11:56:07+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"The sudo command allows you to run a Linux command as superuser. On Career Karma, learn more about sudo, how it works, and when it should be used.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/linux-sudo-command\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/linux-sudo-command\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/linux-sudo-command\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/nathan-da-silva-k-rKfqSm4L4-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/nathan-da-silva-k-rKfqSm4L4-unsplash.jpg","width":1020,"height":680},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/linux-sudo-command\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/careerkarma.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Coding","item":"https:\/\/careerkarma.com\/blog\/code\/"},{"@type":"ListItem","position":3,"name":"sudo Command: A Guide for Beginners"}]},{"@type":"WebSite","@id":"https:\/\/careerkarma.com\/blog\/#website","url":"https:\/\/careerkarma.com\/blog\/","name":"Career Karma","description":"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/careerkarma.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94","name":"James Gallagher","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","caption":"James Gallagher"},"description":"James Gallagher is a self-taught programmer and the technical content manager at Career Karma. He has experience in range of programming languages and extensive expertise in Python, HTML, CSS, and JavaScript. James has written hundreds of programming tutorials, and he frequently contributes to publications like Codecademy, Treehouse, Repl.it, Afrotech, and others.","url":"https:\/\/careerkarma.com\/blog\/author\/jamesgallagher\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/20201","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/users\/240"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=20201"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/20201\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/20203"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=20201"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=20201"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=20201"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}