4

When I right click on a folder - I see double element "file" - open in Nautilus (installed on my Lubuntu).

enter image description here

guntbert
  • 13,134

2 Answers2

5

Open a terminal window (Ctrl+Alt+T) and type

cd /usr/share/applications
sudo mv nautilus.desktop nautilus.disabled

Afterwards restart PCManFM

What you are doing here is renaming the file /usr/share/applications/nautilus.desktop - you could also delete it, the name you use doesn't matter at all.

guntbert
  • 13,134
  • 1
    Thank you, it work. And I have menu item "File Manager PCManFM" - you know how I can remove this also? If I make click on folder - it opening in PCManFM and I don't need this menu item. – Vitaly Zdanevich Jul 12 '13 at 06:47
  • 1
    sudo mv pcmanfm.desktop pcmanfm.disabled (like above) will get rid of it. – guntbert Jul 15 '13 at 11:22
  • Unfortunately it also removes the application from the Dash! – chelder Dec 31 '14 at 01:36
  • I posted a solution that does not removes it from the dash here: http://askubuntu.com/questions/115591/how-can-i-remove-change-the-open-with-list/567254#567254 – chelder Dec 31 '14 at 02:45
1

Try this, just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:

cd /usr/share/nautilus/ui
sudo cp nautilus-directory-view-ui.xml nautilus-directory-view-ui.xml.bak
sudo gedit nautilus-directory-view-ui.xml

Remove duplicates, and then

nautilus -q
Mitch
  • 107,631