Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

start file manager in terminal window wheezy

Is there an easy way to start my File Manager in GUI as root? All I want to do is temporarily create/update some files and I want to do it through the GUI.

I am using a Raspberry Pi that is running Wheezy.

like image 262
Rod Avatar asked May 14 '15 03:05

Rod


People also ask

How do I open file manager in terminal?

To open file manager in Linux Ubuntu using terminal, simply type in the following command “nautilus” in terminal. You may see few error messages in the terminal, ignore them all. As soon as you execute the “nautilus” command, the file manager will open.

How do I open file manager in Ubuntu?

The File Manager opens in your Home folder by default. In Ubuntu you can open your required folder by double-clicking it, or by choosing one of the options from the right-click menu: Open.

How do I direct path in terminal?

cd path-to-directory : The command followed by a path allows you to change into a specified directory (such as a directory named documents ). cd .. (two dots). The .. means “the parent directory” of your current directory, so you can use cd .. to go back (or up) one directory.


2 Answers

depends on your file manager. for example: sudo pcmanfm &>/dev/null &

like image 61
Amir H Avatar answered Oct 30 '22 02:10

Amir H


In Raspbian (Raspberry Debian)

from terminal console:

gksu pcmanfm -> open file explorer as root

gksu leafpad -> open file editor as root

like image 37
Txema Garcia Avatar answered Oct 30 '22 04:10

Txema Garcia