Today I want to open the root file that I got into this problem
Does anyone know what to do?
Today I want to open the root file that I got into this problem
Does anyone know what to do?
Root is the user root
's home folder. Normal users should not have permissions on this directory - and there is nothing inside this folder of interest.
Ubuntu does not use the root user, but the directory is required to comply with file systems standards.
Furthermore, Linux uses filesystem access control. A normal user does not have access to everything.
You may have a look at this Q&A for information on how to become the super user of the system if you need it. In general, be careful with files that require root access for editing or viewing. Changing them may break your system.
/root
is usually always only accesable by theroot
user. You can runls -la /
to confirm that. The folder (not file btw)root
should have the permissionsdrwx------
and ownerroot root
meaning only the userroot
has permissions; others have not even the permissions to show the content. In order to access the content you should do it in the terminal(e.g. after runningsudo -i
to kind of "login as root") since it is highly unrecommendable to open the file browser withroot
permissions. What exactly do you want to do? – derHugo Dec 28 '17 at 13:19