无法更改文件的所有权

问题描述 投票:-1回答:1
[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

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

unix chmod
1个回答
-1
投票

你尝试过使用sudo吗?喜欢

sudo chown ia982p hello.txt

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

chattr +i hello.txt设置它和

chattr -i hello.txt用于取消不可变的旗帜

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

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

我希望这是你问题的解决方案!

© www.soinside.com 2019 - 2024. All rights reserved.