11

How do I install Nemo File Manager, a fork of nautilus 3.4 by the Linux Mint team?

4 Answers4

16

Instructions since they added it to the repositories in 13.04+!

sudo apt-get update
sudo apt-get install nemo

Use the ones below if you want a slightly-more-up-to-date version.

DO NOT USE THESE IN 13.10, unless you aren't using a unity-based Ubuntu flavour.

To install the stable version of Nemo:

sudo add-apt-repository ppa:gwendal-lebihan-dev/cinnamon-stable
sudo apt-get update
sudo apt-get install nemo

To install the bleeding edge version:

sudo add-apt-repository ppa:gwendal-lebihan-dev/cinnamon-nightly
sudo apt-get update
sudo apt-get install nemo

Note: Nemo also shows up as Files in the dash, so the first instance of Files should hopefully be Nemo.


If you want to continue using Nautilus for drawing your desktop icons:

Show all the startup apps:

sudo sed -i 's/NoDisplay=true/NoDisplay=false/g' /etc/xdg/autostart/nemo-autostart.desktop

Then, uncheck the item under Startup Applications that says:

Files
Start Nemo desktop at login

4

Nemo without Cinamon

version 1.8.4

sudo add-apt-repository ppa:noobslab/mint    
sudo apt-get update    
sudo apt-get install nemo

Extra plugins

sudo apt-get install nemo-compare nemo-dropbox nemo-fileroller nemo-pastebin nemo-seahorse nemo-share nemo-preview nemo-rabbitvcs

source Noobslab: http://www.noobslab.com/2013/10/nemo-file-manager-with-extensions-for.html

To install the version (latest) 2.0.3 check this new post in webupd8: http://www.webupd8.org/2013/10/install-nemo-with-unity-patches-and.html

JoZ3
  • 639
0

Install Nemo for Ubuntu with Unity.

Note: Do not use this PPA if you're using Cinnamon in Ubuntu.

The PPA provides Nemo 2.8 for Ubuntu 15.10, 15.04 and 14.04.

sudo add-apt-repository ppa:webupd8team/nemo
sudo apt-get update
sudo apt-get install nemo nemo-fileroller    

To launch Nemo, search for Nemo in the Dash.

Optional extensions :

sudo apt-get install nemo-compare nemo-dropbox nemo-media-columns nemo-pastebin nemo-seahorse nemo-share nemo-emblems nemo-image-converter nemo-audio-tab

To install the RabbitVCS extension (requires RabbitVCS PPA) execute :

sudo apt-get install nemo-rabbitvcs

reference here

cl-netbox
  • 31,491
Ravan
  • 9,567
0

Install Nemo for Ubuntu and Nautilus patches:

For Unity it can be installed like this:

sudo add-apt-repository ppa:daschuer/nemo-merge
sudo apt update
sudo apt install nemo
xdg-mime default nemo.desktop inode/directory application/x-gnome-saved-search

For Cinnamon it can be installed like this:

sudo add-apt-repository ppa:daschuer/nemo-nautilus-merge-cinnamon
sudo apt update
sudo apt install nemo

It includes the Gnome patches from the Web Upd8 version a lot of Nautilus fixes and Improvements (2819 commits ahead). Most notable is the improved search behavior.

A complete list can be found here: https://github.com/linuxmint/nemo/pull/1041

The source code can be found here: https://github.com/daschuer/nemo/tree/nemo_314_merge_nemo_base

daschuer
  • 139