{"id":3517,"date":"2024-05-19T10:10:22","date_gmt":"2024-05-19T10:10:22","guid":{"rendered":"https:\/\/draculaservers.com\/tutorials\/?p=3517"},"modified":"2024-08-05T16:08:28","modified_gmt":"2024-08-05T16:08:28","slug":"fix-user-is-not-in-the-sudoers-file-error","status":"publish","type":"post","link":"https:\/\/draculaservers.com\/tutorials\/fix-user-is-not-in-the-sudoers-file-error\/","title":{"rendered":"How to Fix \u2018User Is Not in the Sudoers File\u2019 Error?"},"content":{"rendered":"<div class=\"cl-preview-section\">\n<p id=\"how-to-fix-\u2018user-is-not-in-the-sudoers-file\u2019-error\"><span style=\"font-size: 16px;\">Encountering the error message \u201cUser is not in the sudoers file\u201d can be a significant hurdle, especially for those new to Linux. This error indicates that your user account lacks the necessary privileges to execute commands as the root user or another superuser. Essentially, without these privileges, you\u2019re restricted from performing administrative tasks on your system, such as installing software, modifying system configurations, or managing user permissions.<\/span><\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>Having sudo privileges is crucial in Linux environments. The\u00a0<code>sudo<\/code>\u00a0command allows a permitted user to execute a command as the superuser or another user, as specified by the security policy. This functionality is vital for system administration, ensuring that only authorized users can perform sensitive operations, thereby maintaining system security and integrity.<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>This article will provide a comprehensive guide on how to fix the \u201cUser is not in the sudoers file\u201d error.<\/p>\n\n<\/div>\n<div class=\"cl-preview-section\">\n<h2 id=\"understanding-the-sudoers-file\">Understanding the Sudoers File<\/h2>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>The sudoers file is a critical configuration file that determines which users and groups have sudo privileges, and what specific commands they are permitted to run. This file plays a fundamental role in managing permissions and maintaining system security.<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>Located at\u00a0<code>\/etc\/sudoers<\/code>, the sudoers file is not a regular text file and should not be edited directly using standard text editors. Instead, it should be edited using the\u00a0<code>visudo<\/code>\u00a0command. This command provides syntax checking and prevents multiple simultaneous edits, reducing the risk of configuration errors that could potentially lock users out of administrative access.<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>The sudoers file follows a specific syntax. Each line can specify user privileges and command allowances. For instance, a typical entry might look like this:<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<pre><code>username ALL=(ALL:ALL) ALL\r\n<\/code><\/pre>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>This line grants the user\u00a0<code>username<\/code>\u00a0permission to run any command on the system as any user or group. Correctly configuring the sudoers file is essential, as improper configurations can either grant excessive permissions or restrict necessary access.<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<h2 id=\"prerequisites\">Prerequisites<\/h2>\n<\/div>\n<div class=\"cl-preview-section\">\n<ul>\n<li>To edit the sudoers file, you need to have root access or be logged in as a user with sudo privileges. This is because the sudoers file is a critical system file that controls user permissions, and only privileged users can make modifications to it.<\/li>\n<li>If your current user is not in the sudoers file, you\u2019ll need access to another account that has sudo privileges. Alternatively, you can use the root account directly. Having access to an account with these privileges is crucial, as it allows you to gain the necessary permissions to edit the sudoers file and add the required entries.<\/li>\n<\/ul>\n<\/div>\n<div class=\"cl-preview-section\">\n<h2 id=\"using-the-\u2018su\u2019-command-to-gain-root-access\"><span id=\"using-the-su-command-to-gain-root-access\">Using the \u2018su\u2019 Command to Gain Root Access<\/span><\/h2>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>One method to gain the necessary root access is by using the\u00a0<code>su<\/code>\u00a0command. The\u00a0<code>su<\/code>\u00a0command stands for \u201csubstitute user\u201d or \u201cswitch user\u201d and is used to switch the current user to another user, typically the root user.<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>The\u00a0<code>su<\/code>\u00a0command allows you to switch to another user account in your current terminal session. When used without any arguments, it defaults to switching to the root user, provided you know the root password.<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<h3 id=\"steps-to-switch-to-the-root-user\">Steps to Switch to the Root User:<\/h3>\n<\/div>\n<div class=\"cl-preview-section\">\n<ol>\n<li><strong>Open a Terminal:<\/strong><br \/>\nBegin by opening a terminal window. This can usually be done by pressing\u00a0<code>Ctrl + Alt + T<\/code>\u00a0or searching for \u201cTerminal\u201d in your application menu.<\/li>\n<li><strong>Execute the\u00a0<code>su<\/code>\u00a0Command:<\/strong><br \/>\nType the following command to switch to the root user:<\/p>\n<pre class=\" language-bash\"><code class=\"prism  language-bash\"><span class=\"token function\">su<\/span> -\r\n<\/code><\/pre>\n<p>The\u00a0<code>-<\/code>\u00a0option ensures that you log in as the root user with the root user\u2019s environment variables.<\/li>\n<li><strong>Enter the Root Password:<\/strong><br \/>\nYou will be prompted to enter the root password. Type the password and press\u00a0<code>Enter<\/code>. Note that the password will not be displayed on the screen for security reasons.<\/li>\n<li><strong>Verify Root Access:<\/strong><br \/>\nOnce you\u2019ve successfully switched to the root user, your command prompt will change, typically indicating that you are now operating as root. You can verify this by checking the prompt or using the\u00a0<code>whoami<\/code>\u00a0command, which should return\u00a0<code>root<\/code>.<\/li>\n<\/ol>\n<\/div>\n<div class=\"cl-preview-section\">\n<p><strong>Example Command<\/strong><br \/>\nTo switch to the root user, you would enter:<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<pre class=\" language-bash\"><code class=\"prism  language-bash\"><span class=\"token function\">su<\/span> -\r\n<\/code><\/pre>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>And then input the root password when prompted.<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<p><strong>Note<\/strong>: It\u2019s crucial to know the root password to use the\u00a0<code>su<\/code>\u00a0command. Without it, you won\u2019t be able to switch to the root user and gain the necessary permissions to edit the sudoers file.<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>If you do not know the root password and there are no other users with sudo privileges, you may need to reboot into single-user mode or use a live CD\/USB to reset the root password or fix the sudoers file.<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<h2 id=\"editing-the-sudoers-file-safely\">Editing the Sudoers File Safely<\/h2>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>Editing the sudoers file is a critical task that requires caution to avoid misconfigurations that could lock you out of administrative privileges. The sudoers file is located at\u00a0<code>\/etc\/sudoers<\/code>, and the safest way to edit it is by using the\u00a0<code>visudo<\/code>\u00a0command. This command opens the sudoers file in a safe editor and checks for syntax errors before saving, preventing potential issues that could arise from manual edits.<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<h3 id=\"using-visudo-to-edit-the-sudoers-file\">Using\u00a0<code>visudo<\/code>\u00a0to Edit the Sudoers File:<\/h3>\n<\/div>\n<div class=\"cl-preview-section\">\n<ol>\n<li><strong>Open a Terminal:<\/strong><br \/>\nEnsure you have root access or are logged in as a user with sudo privileges.<\/li>\n<li><strong>Run the\u00a0<code>visudo<\/code>\u00a0Command:<\/strong><br \/>\nEnter the following command to open the sudoers file with\u00a0<code>visudo<\/code>:<\/p>\n<pre class=\" language-bash\"><code class=\"prism  language-bash\"><span class=\"token function\">sudo<\/span> visudo\r\n<\/code><\/pre>\n<p>If you are already logged in as root, you can simply use:<\/p>\n<pre class=\" language-bash\"><code class=\"prism  language-bash\">visudo\r\n<\/code><\/pre>\n<\/li>\n<li><strong>Locate the User Privileges Section:<\/strong><br \/>\nWithin the sudoers file, scroll to the section where user privileges are defined. It usually looks like this:<\/p>\n<pre class=\" language-plaintext\"><code class=\"prism  language-plaintext\"># User privilege specification\r\nroot    ALL=(ALL:ALL) ALL\r\n<\/code><\/pre>\n<\/li>\n<li><strong>Add the User to the Sudoers File:<\/strong><br \/>\nTo add a user to the sudoers file, append the following line, replacing\u00a0<code>username<\/code>\u00a0with the actual username of the user you want to grant sudo privileges:<\/p>\n<pre class=\" language-plaintext\"><code class=\"prism  language-plaintext\">username    ALL=(ALL:ALL) ALL\r\n<\/code><\/pre>\n<\/li>\n<li><strong>Save and Exit:<\/strong><br \/>\nAfter making the necessary changes, save the file and exit the editor. In\u00a0<code>nano<\/code>, for example, you would press\u00a0<code>Ctrl + O<\/code>\u00a0to write the changes, then\u00a0<code>Ctrl + X<\/code>\u00a0to exit.<\/li>\n<\/ol>\n<\/div>\n<div class=\"cl-preview-section\">\n<h3 id=\"example-addition\">Example Addition:<\/h3>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>To grant sudo privileges to a user named\u00a0<code>john<\/code>, you would add:<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<pre class=\" language-plaintext\"><code class=\"prism  language-plaintext\">john    ALL=(ALL:ALL) ALL\r\n<\/code><\/pre>\n<\/div>\n<div class=\"cl-preview-section\">\n<div class=\"cl-preview-section\">\n<h2 id=\"affordable-vps-hosting-with-dracula-servers\"><span style=\"color: #ff2600;\">Affordable VPS Hosting With Dracula Servers<\/span><\/h2>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>Looking for reliable and budget-friendly Virtual Private Server (VPS) hosting? Look no further than\u00a0<a href=\"https:\/\/draculaservers.com\/\">Dracula Servers<\/a>. Dracula Servers offers a range of VPS hosting plans tailored to meet diverse needs. With competitive pricing, robust performance, and a user-friendly interface, it\u2019s an excellent choice for individuals and businesses alike.<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>Explore the\u00a0<a href=\"https:\/\/draculaservers.com\/\">Dracula Servers website<\/a> to discover hosting solutions that align with your requirements and take your online presence to new heights with their affordable and efficient VPS hosting services.<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<p><a href=\"https:\/\/draculaservers.com\/\"><strong>Visit Dracula Servers<\/strong><\/a>\u00a0and experience reliable VPS hosting without breaking the bank.<\/p>\n<\/div>\n<h2 id=\"adding-users-to-the-sudo-group\">Adding Users to the Sudo Group<\/h2>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>An alternative and often preferred method for granting sudo privileges is to add the user to the\u00a0<code>sudo<\/code>\u00a0group. Members of the\u00a0<code>sudo<\/code>\u00a0group are granted sudo privileges by default, making this a simple and effective way to manage sudo access.<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<h3 id=\"steps-to-add-a-user-to-the-sudo-group\">Steps to Add a User to the Sudo Group:<\/h3>\n<\/div>\n<div class=\"cl-preview-section\">\n<ol>\n<li><strong>Open a Terminal:<\/strong><br \/>\nEnsure you have root access or are logged in as a user with sudo privileges.<\/li>\n<li><strong>Add the User to the Sudo Group:<\/strong><br \/>\nUse the\u00a0<code>usermod<\/code>\u00a0command to add the user to the\u00a0<code>sudo<\/code>\u00a0group. Replace\u00a0<code>username<\/code>\u00a0with the actual username:<\/p>\n<pre class=\" language-bash\"><code class=\"prism  language-bash\"><span class=\"token function\">sudo<\/span> <span class=\"token function\">usermod<\/span> -aG <span class=\"token function\">sudo<\/span> username\r\n<\/code><\/pre>\n<p>The\u00a0<code>-aG<\/code>\u00a0option appends the user to the specified group without removing them from other groups.<\/li>\n<li><strong>Verify the User\u2019s Group Membership:<\/strong><br \/>\nTo ensure the user has been added to the sudo group, you can use the\u00a0<code>groups<\/code>\u00a0command:<\/p>\n<pre class=\" language-bash\"><code class=\"prism  language-bash\"><span class=\"token function\">groups<\/span> username\r\n<\/code><\/pre>\n<p>This command will list all the groups the user belongs to. You should see\u00a0<code>sudo<\/code>\u00a0in the list.<\/li>\n<\/ol>\n<\/div>\n<div class=\"cl-preview-section\">\n<h3 id=\"example-command\">Example Command:<\/h3>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>To add a user named\u00a0<code>john<\/code>\u00a0to the sudo group, you would run:<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<pre class=\" language-bash\"><code class=\"prism  language-bash\"><span class=\"token function\">sudo<\/span> <span class=\"token function\">usermod<\/span> -aG <span class=\"token function\">sudo<\/span> john\r\n<\/code><\/pre>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>Adding users to the sudo group is a streamlined approach that simplifies the management of sudo privileges and aligns with best practices for system administration. By following these steps, you ensure that users have the necessary permissions to perform administrative tasks securely and efficiently.<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<h2 id=\"using-the-usermod-command-to-add-a-user-to-the-sudo-group\">Using the\u00a0<code>usermod<\/code>\u00a0Command to Add a User to the Sudo Group<\/h2>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>The\u00a0<code>usermod<\/code>\u00a0command in Linux is a powerful utility used to modify user account properties. When it comes to granting sudo privileges,\u00a0<code>usermod<\/code>\u00a0provides a straightforward method to add a user to the sudo group. This approach is preferred as it aligns with system administration best practices by using group-based permissions.<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<h3 id=\"explanation-of-the-usermod-command\">Explanation of the\u00a0<code>usermod<\/code>\u00a0Command<\/h3>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>The\u00a0<code>usermod<\/code>\u00a0command allows administrators to change various attributes of a user account. For adding a user to a group, the\u00a0<code>-aG<\/code>\u00a0options are used:<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<ul>\n<li><code>-a<\/code>\u00a0(append): Adds the user to the supplementary group(s) without removing them from other groups.<\/li>\n<li><code>-G<\/code>\u00a0(group): Specifies the group(s) to which the user should be added.<\/li>\n<\/ul>\n<\/div>\n<div class=\"cl-preview-section\">\n<h3 id=\"command-syntax-to-add-a-user-to-the-sudo-group\">Command Syntax to Add a User to the Sudo Group<\/h3>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>To add a user to the sudo group, use the following command syntax:<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<pre class=\" language-bash\"><code class=\"prism  language-bash\"><span class=\"token function\">sudo<\/span> <span class=\"token function\">usermod<\/span> -aG <span class=\"token function\">sudo<\/span> username\r\n<\/code><\/pre>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>Replace\u00a0<code>username<\/code>\u00a0with the actual username of the user you wish to grant sudo privileges.<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<h4 id=\"step-by-step-process\">Step-by-Step Process:<\/h4>\n<\/div>\n<div class=\"cl-preview-section\">\n<ol>\n<li><strong>Open a Terminal:<\/strong><br \/>\nEnsure you have root access or are logged in as a user with sudo privileges.<\/li>\n<li><strong>Add the User to the Sudo Group:<\/strong><br \/>\nRun the following command, substituting\u00a0<code>username<\/code>\u00a0with the target user\u2019s username:<\/p>\n<pre class=\" language-bash\"><code class=\"prism  language-bash\"><span class=\"token function\">sudo<\/span> <span class=\"token function\">usermod<\/span> -aG <span class=\"token function\">sudo<\/span> username\r\n<\/code><\/pre>\n<\/li>\n<li><strong>Verify the User\u2019s Membership in the Sudo Group:<\/strong><br \/>\nAfter adding the user to the sudo group, verify the changes using the\u00a0<code>groups<\/code>\u00a0command:<\/p>\n<pre class=\" language-bash\"><code class=\"prism  language-bash\"><span class=\"token function\">groups<\/span> username\r\n<\/code><\/pre>\n<p>This will display all groups the user belongs to, including\u00a0<code>sudo<\/code>.<\/li>\n<\/ol>\n<\/div>\n<div class=\"cl-preview-section\">\n<h3 id=\"example\">Example:<\/h3>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>To add a user named\u00a0<code>john<\/code>\u00a0to the sudo group, you would execute:<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<pre class=\" language-bash\"><code class=\"prism  language-bash\"><span class=\"token function\">sudo<\/span> <span class=\"token function\">usermod<\/span> -aG <span class=\"token function\">sudo<\/span> john\r\n<\/code><\/pre>\n<\/div>\n<div class=\"cl-preview-section\">\n<h3 id=\"verification\">Verification:<\/h3>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>To confirm\u00a0<code>john<\/code>\u00a0has been successfully added to the sudo group:<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<pre class=\" language-bash\"><code class=\"prism  language-bash\"><span class=\"token function\">groups<\/span> john\r\n<\/code><\/pre>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>The output should include\u00a0<code>sudo<\/code>, indicating the user now has sudo privileges.<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<h2 id=\"temporary-solutions-and-workarounds\">Temporary Solutions and Workarounds<\/h2>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>In situations where you cannot immediately edit the sudoers file or add a user to the sudo group, there are several temporary solutions and workarounds to gain administrative access or perform necessary tasks.<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<h3 id=\"using-pkexec-for-graphical-interfaces\">Using\u00a0<code>pkexec<\/code>\u00a0for Graphical Interfaces<\/h3>\n<\/div>\n<div class=\"cl-preview-section\">\n<p><code>pkexec<\/code>\u00a0is a command-line tool that allows an authorized user to execute programs as another user, typically the root user. It provides a graphical interface for entering the required password, making it useful in desktop environments.<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<ul>\n<li><strong>Syntax:<\/strong>\n<pre class=\" language-bash\"><code class=\"prism  language-bash\">pkexec <span class=\"token function\">command<\/span>\r\n<\/code><\/pre>\n<p>Replace\u00a0<code>command<\/code>\u00a0with the administrative task you need to perform.<\/li>\n<li><strong>Example:<\/strong><br \/>\nTo open the file manager with root privileges, you can use:<\/p>\n<pre class=\" language-bash\"><code class=\"prism  language-bash\">pkexec nautilus\r\n<\/code><\/pre>\n<p>This command will prompt you to enter the password for an authorized user.<\/li>\n<\/ul>\n<\/div>\n<div class=\"cl-preview-section\">\n<h3 id=\"logging-in-as-another-user-with-sudo-privileges\">Logging in as Another User with Sudo Privileges<\/h3>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>If there is another user on the system with sudo privileges, you can switch to their account to perform administrative tasks.<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<ul>\n<li><strong>Switch User:<\/strong>\n<pre class=\" language-bash\"><code class=\"prism  language-bash\"><span class=\"token function\">su<\/span> - another_username\r\n<\/code><\/pre>\n<p>Replace\u00a0<code>another_username<\/code>\u00a0with the actual username of the account that has sudo privileges.<\/li>\n<li><strong>Example:<\/strong><br \/>\nIf\u00a0<code>admin<\/code>\u00a0has sudo privileges, switch to their account:<\/p>\n<pre class=\" language-bash\"><code class=\"prism  language-bash\"><span class=\"token function\">su<\/span> - admin\r\n<\/code><\/pre>\n<\/li>\n<\/ul>\n<\/div>\n<div class=\"cl-preview-section\">\n<h3 id=\"booting-into-single-user-mode-for-emergency-access\">Booting into Single-User Mode for Emergency Access<\/h3>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>Single-user mode is a minimal environment primarily used for maintenance and emergency situations. It provides root access without requiring a password, allowing you to perform critical tasks such as editing the sudoers file.<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<ul>\n<li><strong>Steps to Boot into Single-User Mode:<\/strong>\n<ol>\n<li><strong>Reboot the System:<\/strong><br \/>\nRestart your computer.<\/li>\n<li><strong>Access GRUB Menu:<\/strong><br \/>\nDuring boot, hold down the\u00a0<code>Shift<\/code>\u00a0key (for BIOS systems) or press\u00a0<code>Esc<\/code>\u00a0repeatedly (for UEFI systems) to access the GRUB menu.<\/li>\n<li><strong>Edit Boot Options:<\/strong><br \/>\nHighlight the default boot option and press\u00a0<code>e<\/code>\u00a0to edit.<\/li>\n<li><strong>Modify Boot Parameters:<\/strong><br \/>\nFind the line that starts with\u00a0<code>linux<\/code>\u00a0and append\u00a0<code>single<\/code>\u00a0or\u00a0<code>init=\/bin\/bash<\/code>\u00a0at the end of the line.<\/li>\n<li><strong>Boot into Single-User Mode:<\/strong><br \/>\nPress\u00a0<code>Ctrl + X<\/code>\u00a0or\u00a0<code>F10<\/code>\u00a0to boot with the modified parameters.<\/li>\n<\/ol>\n<\/li>\n<li><strong>Example:<\/strong><br \/>\nEdit the boot parameters to look like this:<\/p>\n<pre class=\" language-plaintext\"><code class=\"prism  language-plaintext\">linux \/boot\/vmlinuz-xxxx root=UUID=xxxx ro quiet splash single\r\n<\/code><\/pre>\n<p>Once in single-user mode, you have root access and can edit the sudoers file as needed:<\/p>\n<pre class=\" language-bash\"><code class=\"prism  language-bash\">visudo\r\n<\/code><\/pre>\n<\/li>\n<\/ul>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>By using these temporary solutions and workarounds, you can gain the necessary access to fix sudo-related issues, ensuring continued administrative capabilities and system maintenance.<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<h2 id=\"wrap-up\">Wrap Up<\/h2>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>Encountering the \u201cUser is not in the sudoers file\u201d error can be a frustrating experience, especially when you need to perform administrative tasks on your Linux system. However, understanding the underlying cause and knowing how to resolve it empowers you to regain control and ensure smooth system operations.<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>In this guide, we\u2019ve covered several key methods to address this error:<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<ul>\n<li><strong>Understanding the sudoers File:<\/strong>\u00a0We started with an overview of the sudoers file, its purpose, and its critical role in granting sudo privileges.<\/li>\n<li><strong>Editing the sudoers File Safely:<\/strong>\u00a0We explored how to use the\u00a0<code>visudo<\/code>\u00a0command to edit the sudoers file safely, ensuring syntax integrity and proper configuration.<\/li>\n<li><strong>Using the\u00a0<code>usermod<\/code>\u00a0Command:<\/strong>\u00a0We demonstrated how to add a user to the sudo group using the\u00a0<code>usermod<\/code>\u00a0command, providing a straightforward way to grant sudo privileges.<\/li>\n<li><strong>Temporary Solutions and Workarounds:<\/strong>\u00a0We also discussed alternative methods for gaining root access or performing administrative tasks, such as using\u00a0<code>pkexec<\/code>, switching to another user with sudo privileges, and booting into single-user mode.<\/li>\n<\/ul>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>By following these steps, you can effectively resolve the \u201cUser is not in the sudoers file\u201d error and grant the necessary permissions to users on your system. Remember, careful management of sudo privileges is essential for maintaining system security and preventing unauthorized access. Always verify changes and ensure that only trusted users are granted sudo access.<\/p>\n<\/div>\n<div class=\"cl-preview-section\">\n<p>With this knowledge, you are well-equipped to handle sudo-related issues and maintain a secure and well-functioning Linux environment. Whether you\u2019re managing a personal system or overseeing a network of machines, understanding and managing sudo privileges is a crucial skill for any Linux administrator.<\/p>\n<p>Check out More Linux Tutorials <a href=\"https:\/\/draculaservers.com\/tutorials\/\" target=\"_blank\" rel=\"noopener\">Here!<\/a><\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Encountering the error message \u201cUser is not in the sudoers file\u201d can be a significant hurdle, especially for those new to Linux. This error indicates that your user account lacks the necessary privileges to execute commands as the root user or another superuser. Essentially, without these privileges, you\u2019re restricted from performing administrative tasks on your [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":3518,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[172],"tags":[637,638],"class_list":["post-3517","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux-tutorials","tag-fix-sudouser-not-found","tag-fix-user-not-in-sudoers"],"blocksy_meta":[],"featured_image_urls_v2":{"full":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2024\/08\/Dracula-Servers-Thumbnail-57.png",1280,720,false],"thumbnail":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2024\/08\/Dracula-Servers-Thumbnail-57-150x150.png",150,150,true],"medium":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2024\/08\/Dracula-Servers-Thumbnail-57-300x169.png",300,169,true],"medium_large":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2024\/08\/Dracula-Servers-Thumbnail-57-768x432.png",768,432,true],"large":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2024\/08\/Dracula-Servers-Thumbnail-57-1024x576.png",1024,576,true],"1536x1536":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2024\/08\/Dracula-Servers-Thumbnail-57.png",1280,720,false],"2048x2048":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2024\/08\/Dracula-Servers-Thumbnail-57.png",1280,720,false],"pk-small":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2024\/08\/Dracula-Servers-Thumbnail-57-80x80.png",80,80,true],"pk-thumbnail":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2024\/08\/Dracula-Servers-Thumbnail-57-300x225.png",300,225,true]},"post_excerpt_stackable_v2":"<p>Encountering the error message \u201cUser is not in the sudoers file\u201d can be a significant hurdle, especially for those new to Linux. This error indicates that your user account lacks the necessary privileges to execute commands as the root user or another superuser. Essentially, without these privileges, you\u2019re restricted from performing administrative tasks on your system, such as installing software, modifying system configurations, or managing user permissions. Having sudo privileges is crucial in Linux environments. The\u00a0sudo\u00a0command allows a permitted user to execute a command as the superuser or another user, as specified by the security policy. This functionality is vital&hellip;<\/p>\n","category_list_v2":"<a href=\"https:\/\/draculaservers.com\/tutorials\/category\/linux-tutorials\/\" rel=\"category tag\">Linux Tutorials<\/a>","author_info_v2":{"name":"Abdul Mannan","url":"https:\/\/draculaservers.com\/tutorials\/author\/abdul-mannan-tbgmail-com\/"},"comments_num_v2":"0 comments","yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Fix \u2018User Is Not in the Sudoers File\u2019 Error? - Dracula Servers Tutorials<\/title>\n<meta name=\"description\" content=\"Using the visudo\u00a0command to edit the sudoers file safely and add a user to the sudo group using the\u00a0usermod\u00a0command are quick solutions.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/draculaservers.com\/tutorials\/fix-user-is-not-in-the-sudoers-file-error\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Fix \u2018User Is Not in the Sudoers File\u2019 Error? - Dracula Servers Tutorials\" \/>\n<meta property=\"og:description\" content=\"Using the visudo\u00a0command to edit the sudoers file safely and add a user to the sudo group using the\u00a0usermod\u00a0command are quick solutions.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/draculaservers.com\/tutorials\/fix-user-is-not-in-the-sudoers-file-error\/\" \/>\n<meta property=\"og:site_name\" content=\"Dracula Servers Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2024-05-19T10:10:22+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-08-05T16:08:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2024\/08\/Dracula-Servers-Thumbnail-57.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Abdul Mannan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Abdul Mannan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"11 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/fix-user-is-not-in-the-sudoers-file-error\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/fix-user-is-not-in-the-sudoers-file-error\\\/\"},\"author\":{\"name\":\"Abdul Mannan\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#\\\/schema\\\/person\\\/ac89d0281f4fb596bfaa0bc1e746c8a6\"},\"headline\":\"How to Fix \u2018User Is Not in the Sudoers File\u2019 Error?\",\"datePublished\":\"2024-05-19T10:10:22+00:00\",\"dateModified\":\"2024-08-05T16:08:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/fix-user-is-not-in-the-sudoers-file-error\\\/\"},\"wordCount\":2112,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/fix-user-is-not-in-the-sudoers-file-error\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2024\\\/08\\\/Dracula-Servers-Thumbnail-57.png\",\"keywords\":[\"Fix Sudouser not found\",\"Fix user not in sudoers\"],\"articleSection\":[\"Linux Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/fix-user-is-not-in-the-sudoers-file-error\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/fix-user-is-not-in-the-sudoers-file-error\\\/\",\"url\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/fix-user-is-not-in-the-sudoers-file-error\\\/\",\"name\":\"How to Fix \u2018User Is Not in the Sudoers File\u2019 Error? - Dracula Servers Tutorials\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/fix-user-is-not-in-the-sudoers-file-error\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/fix-user-is-not-in-the-sudoers-file-error\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2024\\\/08\\\/Dracula-Servers-Thumbnail-57.png\",\"datePublished\":\"2024-05-19T10:10:22+00:00\",\"dateModified\":\"2024-08-05T16:08:28+00:00\",\"description\":\"Using the visudo\u00a0command to edit the sudoers file safely and add a user to the sudo group using the\u00a0usermod\u00a0command are quick solutions.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/fix-user-is-not-in-the-sudoers-file-error\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/fix-user-is-not-in-the-sudoers-file-error\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/fix-user-is-not-in-the-sudoers-file-error\\\/#primaryimage\",\"url\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2024\\\/08\\\/Dracula-Servers-Thumbnail-57.png\",\"contentUrl\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2024\\\/08\\\/Dracula-Servers-Thumbnail-57.png\",\"width\":1280,\"height\":720,\"caption\":\"How to Fix \u2018User Is Not in the Sudoers File\u2019 Error?\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/fix-user-is-not-in-the-sudoers-file-error\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Fix \u2018User Is Not in the Sudoers File\u2019 Error?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#website\",\"url\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/\",\"name\":\"Dracula Servers Tutorials\",\"description\":\"Dedicated Servers\",\"publisher\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#organization\",\"name\":\"Dracula Servers\",\"url\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2016\\\/06\\\/dracula_full_logo_smaller.png\",\"contentUrl\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2016\\\/06\\\/dracula_full_logo_smaller.png\",\"width\":1625,\"height\":200,\"caption\":\"Dracula Servers\"},\"image\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#\\\/schema\\\/person\\\/ac89d0281f4fb596bfaa0bc1e746c8a6\",\"name\":\"Abdul Mannan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2809442d44177cab4f90e1d9b3295560462063881ca1374b6d597d8f0b48fc21?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2809442d44177cab4f90e1d9b3295560462063881ca1374b6d597d8f0b48fc21?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2809442d44177cab4f90e1d9b3295560462063881ca1374b6d597d8f0b48fc21?s=96&d=mm&r=g\",\"caption\":\"Abdul Mannan\"},\"description\":\"An individual trying to decipher the enigmas of technology by the sheer driving force of curiosity. Interested in learning new skills and being better at those skills than the lot.\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Fix \u2018User Is Not in the Sudoers File\u2019 Error? - Dracula Servers Tutorials","description":"Using the visudo\u00a0command to edit the sudoers file safely and add a user to the sudo group using the\u00a0usermod\u00a0command are quick solutions.","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:\/\/draculaservers.com\/tutorials\/fix-user-is-not-in-the-sudoers-file-error\/","og_locale":"en_US","og_type":"article","og_title":"How to Fix \u2018User Is Not in the Sudoers File\u2019 Error? - Dracula Servers Tutorials","og_description":"Using the visudo\u00a0command to edit the sudoers file safely and add a user to the sudo group using the\u00a0usermod\u00a0command are quick solutions.","og_url":"https:\/\/draculaservers.com\/tutorials\/fix-user-is-not-in-the-sudoers-file-error\/","og_site_name":"Dracula Servers Tutorials","article_published_time":"2024-05-19T10:10:22+00:00","article_modified_time":"2024-08-05T16:08:28+00:00","og_image":[{"width":1280,"height":720,"url":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2024\/08\/Dracula-Servers-Thumbnail-57.png","type":"image\/png"}],"author":"Abdul Mannan","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Abdul Mannan","Est. reading time":"11 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/draculaservers.com\/tutorials\/fix-user-is-not-in-the-sudoers-file-error\/#article","isPartOf":{"@id":"https:\/\/draculaservers.com\/tutorials\/fix-user-is-not-in-the-sudoers-file-error\/"},"author":{"name":"Abdul Mannan","@id":"https:\/\/draculaservers.com\/tutorials\/#\/schema\/person\/ac89d0281f4fb596bfaa0bc1e746c8a6"},"headline":"How to Fix \u2018User Is Not in the Sudoers File\u2019 Error?","datePublished":"2024-05-19T10:10:22+00:00","dateModified":"2024-08-05T16:08:28+00:00","mainEntityOfPage":{"@id":"https:\/\/draculaservers.com\/tutorials\/fix-user-is-not-in-the-sudoers-file-error\/"},"wordCount":2112,"commentCount":0,"publisher":{"@id":"https:\/\/draculaservers.com\/tutorials\/#organization"},"image":{"@id":"https:\/\/draculaservers.com\/tutorials\/fix-user-is-not-in-the-sudoers-file-error\/#primaryimage"},"thumbnailUrl":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2024\/08\/Dracula-Servers-Thumbnail-57.png","keywords":["Fix Sudouser not found","Fix user not in sudoers"],"articleSection":["Linux Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/draculaservers.com\/tutorials\/fix-user-is-not-in-the-sudoers-file-error\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/draculaservers.com\/tutorials\/fix-user-is-not-in-the-sudoers-file-error\/","url":"https:\/\/draculaservers.com\/tutorials\/fix-user-is-not-in-the-sudoers-file-error\/","name":"How to Fix \u2018User Is Not in the Sudoers File\u2019 Error? - Dracula Servers Tutorials","isPartOf":{"@id":"https:\/\/draculaservers.com\/tutorials\/#website"},"primaryImageOfPage":{"@id":"https:\/\/draculaservers.com\/tutorials\/fix-user-is-not-in-the-sudoers-file-error\/#primaryimage"},"image":{"@id":"https:\/\/draculaservers.com\/tutorials\/fix-user-is-not-in-the-sudoers-file-error\/#primaryimage"},"thumbnailUrl":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2024\/08\/Dracula-Servers-Thumbnail-57.png","datePublished":"2024-05-19T10:10:22+00:00","dateModified":"2024-08-05T16:08:28+00:00","description":"Using the visudo\u00a0command to edit the sudoers file safely and add a user to the sudo group using the\u00a0usermod\u00a0command are quick solutions.","breadcrumb":{"@id":"https:\/\/draculaservers.com\/tutorials\/fix-user-is-not-in-the-sudoers-file-error\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/draculaservers.com\/tutorials\/fix-user-is-not-in-the-sudoers-file-error\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/draculaservers.com\/tutorials\/fix-user-is-not-in-the-sudoers-file-error\/#primaryimage","url":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2024\/08\/Dracula-Servers-Thumbnail-57.png","contentUrl":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2024\/08\/Dracula-Servers-Thumbnail-57.png","width":1280,"height":720,"caption":"How to Fix \u2018User Is Not in the Sudoers File\u2019 Error?"},{"@type":"BreadcrumbList","@id":"https:\/\/draculaservers.com\/tutorials\/fix-user-is-not-in-the-sudoers-file-error\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/draculaservers.com\/tutorials\/"},{"@type":"ListItem","position":2,"name":"How to Fix \u2018User Is Not in the Sudoers File\u2019 Error?"}]},{"@type":"WebSite","@id":"https:\/\/draculaservers.com\/tutorials\/#website","url":"https:\/\/draculaservers.com\/tutorials\/","name":"Dracula Servers Tutorials","description":"Dedicated Servers","publisher":{"@id":"https:\/\/draculaservers.com\/tutorials\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/draculaservers.com\/tutorials\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/draculaservers.com\/tutorials\/#organization","name":"Dracula Servers","url":"https:\/\/draculaservers.com\/tutorials\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/draculaservers.com\/tutorials\/#\/schema\/logo\/image\/","url":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2016\/06\/dracula_full_logo_smaller.png","contentUrl":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2016\/06\/dracula_full_logo_smaller.png","width":1625,"height":200,"caption":"Dracula Servers"},"image":{"@id":"https:\/\/draculaservers.com\/tutorials\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/draculaservers.com\/tutorials\/#\/schema\/person\/ac89d0281f4fb596bfaa0bc1e746c8a6","name":"Abdul Mannan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/2809442d44177cab4f90e1d9b3295560462063881ca1374b6d597d8f0b48fc21?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/2809442d44177cab4f90e1d9b3295560462063881ca1374b6d597d8f0b48fc21?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2809442d44177cab4f90e1d9b3295560462063881ca1374b6d597d8f0b48fc21?s=96&d=mm&r=g","caption":"Abdul Mannan"},"description":"An individual trying to decipher the enigmas of technology by the sheer driving force of curiosity. Interested in learning new skills and being better at those skills than the lot."}]}},"_links":{"self":[{"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/posts\/3517","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/comments?post=3517"}],"version-history":[{"count":1,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/posts\/3517\/revisions"}],"predecessor-version":[{"id":3519,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/posts\/3517\/revisions\/3519"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/media\/3518"}],"wp:attachment":[{"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/media?parent=3517"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/categories?post=3517"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/tags?post=3517"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}