0% found this document useful (0 votes)
17 views1 page

Change Username in Linux

This document provides instructions for changing a username in Linux. It shows running the "id" command on the old username "matt", using the "usermod" command with the "-l" flag to change the username from "matt" to "scott", and running "id" on the new username "scott" to verify the change.

Uploaded by

mervin_quinto
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
17 views1 page

Change Username in Linux

This document provides instructions for changing a username in Linux. It shows running the "id" command on the old username "matt", using the "usermod" command with the "-l" flag to change the username from "matt" to "scott", and running "id" on the new username "scott" to verify the change.

Uploaded by

mervin_quinto
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

HOW TO CHANGE USERNAME IN LINUX

old username: matt


new username: scott
# id matt
# usermod -l scott matt
# id scott

You might also like