Results 1 to 4 of 4
Does anyone know how to change a file´s ownership?...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 05-21-2005 #1Just Joined!
- Join Date
- Mar 2005
- Posts
- 32
Ownership
Does anyone know how to change a file´s ownership?
- 05-21-2005 #2Banned
- Join Date
- Jul 2004
- Posts
- 947
from command line as root
for exampleCode:chown (username): /file/location
Code:chown andy: /etc/ircd
- 05-21-2005 #3
For the record, the colon after the user's name is not necessary. What that does is also change the file to the user's group.
While it is recommended, if, for some reason, you don't want to do that, you could just say:
Code:chown alex my_file
- 05-21-2005 #4Just Joined!
- Join Date
- Mar 2005
- Posts
- 32
Thanks for the help.


Reply With Quote
