Linux
root 不允許 chown 操作
我嘗試將文件的所有者 chown 為 root,但我不能。我以root身份執行此操作。我收到以下消息:
chown: changing ownership of `ps': Operation not permitted
可以在文件上設置不可變屬性。刪除它
chattr -i <file>
存在幾種解決方案,其中一些:
- 你有一個文件系統不允許你例如。uid:gid,例如:FAT
- 驅動器已安裝為只讀
- SELinux 或其他安全執行者適用
- 文件系統設置為只讀模式(例如 xfs_freeze)
- 文件設置了不可變標誌(man chattr)