logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Delete User - Manage System Users | Online Free DevTools by Hexmos

Delete users efficiently with deluser. Manage user accounts, remove home directories, and backup user data on Linux systems. Free online tool, no registration required.

deluser

Delete a user from the system. More information: https://manned.org/deluser.

  • Remove a user:

sudo deluser {{username}}

  • Remove a user and their home directory:

sudo deluser --remove-home {{username}}

  • Remove a user and their home, but backup their files into a .tar.gz file in the specified directory:

sudo deluser --backup-to {{path/to/backup_directory}} --remove-home {{username}}

  • Remove a user, and all files owned by them:

sudo deluser --remove-all-files {{username}}

See Also