Change Owner and Group in Linux
Owner
chown root tmpfile
chown -R root tmpfile (recursive)
Group
chown :friends tmpfile
chown -R :friends tmpfile (recursive)
Both
chown user:group file
chown -R user:group file (recursive)
chown root tmpfile
chown -R root tmpfile (recursive)
Group
chown :friends tmpfile
chown -R :friends tmpfile (recursive)
Both
chown user:group file
chown -R user:group file (recursive)
Comments
Post a Comment