How can I change a owner of a file in AIX? I created a file using my personal account and then I tried to change user for this file:
chown rootuser myfile.csv
chown: myfile.csv: Operation not permitted.
Then I changed to root user
sudo /usr/bin/su - rootuser
and tried to change the owner of this file
chown rootuser myfile.csv
chown: myfile.csv: Not owner
How can I change the owner of this file?