暗无天日

=============>DarkSun的个人博客

chown修改软链接宿主失败

症状

在AIX上直接使用 chown 修改软链接文件的宿主发现不成功, chown 命令也没有提示错误

原因

chown默认并不是修改软链接本身的宿主,而是 修改它们所指向的文件

解决方案

使用 chown-h 选项

sudo chown mqm:mqm -h xxxx

关于 -h 的说明为:

If the file is a symbolic link, change the user ID and/or the group ID of the link itself.