无法更改文件的所有权

时间:2017-12-29 11:01:57

标签: unix chmod

[vg324y@ulpv0143 ~]$ chown root hello.txt

chown: changing ownership of `hello.txt': Operation not permitted

[vg324y@ulpv0143 ~]$ chown ia982p hello.txt

chown: changing ownership of `hello.txt': Operation not permitted
[vg324y@ulpv0143 ~]$

此外,文件没有设置不可变位。

[vg324y@ulpv0143 ~]$ lsattr hello.txt
-------------e- hello.txt

有人可以帮助解决上述问题吗?

1 个答案:

答案 0 :(得分:-1)

你尝试过使用sudo吗? 喜欢

sudo chown ia982p hello.txt

此外,您可以使用chattr命令更改不可变位:

chattr +i hello.txt用于设置和

chattr -i hello.txt用于取消设置不可变标志

执行第一个命令后,应设置不可变标志:

# lsattr hello.txt ----i-------- hello.txt

我希望这是解决您问题的方法!