Open In App

Deleting a User in Linux using Python Script

Last Updated : 11 May, 2020
Comments
Improve
Suggest changes
Like Article
Like
Report
Deleting a user from your system or server via a python script is a very easy task. You just need to pass the username of the user and the script will remove the details and all the files of that user.This python script uses userdel Linux command to delete the user.You can directly use userdel command if you remember the command but if you don't then the script makes it easy to delete the user. The script we are about to build will ask the username of the user to be deleted as follows, Input:
Enter Username: John
Output:
User successfully deleted with given credentials
Before running the script first we will show the user we want to delete. cat /etc/paswd will list all the users on your system or server.John is the user we will be deleting. delete user The below Python code is the script we will be using for our purpose. Python3 1==
import os
import subprocess
import sys
import getpass


def delete_user():
     username = input("Enter Username : ")

     try:
         output = subprocess.run(['userdel', username ])
         if output.returncode == 0:
             print("User successfully deleted with given credentials")

     except:
         print(f"Failed to delete user.")
         sys.exit(1)

delete_user()
delete_user After running the script it will prompt for the username we want to delete and after entering the name the same user will be removed from the system. delete_user After if we check by typing cat/etc/passwd we can see that the user "John" is no longer on that list. So we have successfully deleted our user.

Next Article
Practice Tags :

Similar Reads