Linux에서 사용자의 사용자 ID를 변경하지만 홈 디렉터리의 파일은 건드리지 마세요.

Linux에서 사용자의 사용자 ID를 변경하지만 홈 디렉터리의 파일은 건드리지 마세요.

사용자 ID를 변경하고 싶지만 www-data홈 디렉터리의 파일은 변경하고 싶지 않습니다.

usermod 매뉴얼 페이지:

   -u, --uid UID
       The new numerical value of the user's ID.

       This value must be unique, unless the -o option is used. The value must be non-negative.

       The user's mailbox, and any files which the user owns and which are located in the user's home directory will have the file
       user ID changed automatically.

       The ownership of files outside of the user's home directory must be fixed manually.

그러면 부작용 없이 이를 수행할 수 있는 방법이 있습니까? 아니면 /etc/passwd이와 같은 것을 사용하여 수동으로 편집해야 합니까?sed

관련 정보