[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
有人可以帮忙解决上述问题吗?
你尝试过使用sudo吗?喜欢
sudo chown ia982p hello.txt
此外,您可以使用chattr
命令更改不可变位:
chattr +i hello.txt
设置它和
chattr -i hello.txt
用于取消不可变的旗帜
执行第一个命令后,应设置不可变标志:
# lsattr hello.txt
----i-------- hello.txt
我希望这是你问题的解决方案!