How can I change the file ownership to root on ubuntu 14.04

0

1 Answer

Use the command:

sudo chown root file.name 

chown is tool for changing ownership. As root account is superuser type to change ownership to root you need to run chown command as superuser with sudo.

2