举个例子:当查看/home/file666.txt文件显示文件信息时,属主位置是用户tom用户的UID,而不是用户名。(修改玩属主后将其用户删除即可)
1、查看tom的UID
[root@localhost ~]# id tom
用户id=1001(tom) 组id=1001(tom) 组=1001(tom)
2、创建/home/file666.txt
[root@localhost ~]# touch /home/file666.txt
3、查看信息
[root@localhost ~]# ll /home/file666.txt
-rw-r--r--. 1 root root 0 6月 30 08:56 /home/file666.txt
4、修改属主所属
[root@localhost ~]# chown tom /home/file666.txt
5、查看信息
[root@localhost ~]# ll /home/file666.txt
-rw-r--r--. 1 tom root 0 6月 30 08:56 /home/file666.txt
6、此时还不是修改了UID,需要将tom用户删除即可完成。