Ubuntuログインユーザ名の変更
#ubuntu
#note
#bash
#linux
code:bash
sudo su -
# 名前の変更
usermod -l jiro4989 jiro
# ディレクトリの変更
usermod -d /home/jiro4989 -m jiro4989
# コメントの変更
usermod -c newName newName
参考
https://nekodeki.com/linuxのユーザー名を変更する/