Ubuntu – root folder access via gui

permissionsroot

I'm new to linux and the terminal. As I learn how to use the terminal to navigate through directories, I like to use the gui file explorer to mirror my terminal navigation. The icons and file extension info in the gui file explorer help me figure out what everything is. However, I can't access the root folder via the gui, I can only access it via the terminal. Is there a way to enable access to the root folder outside of the terminal?

Best Answer

Try one of the below commands,

gksu nautilus

or

sudo -i nautilus

It is an GUI way of navigating through directories with root access.

Related Question