6

From very few things I miss from Windows, this is the one I miss most:

enter image description here

Does anybody know if there is some tool / utility that gives Nautilus features like this (transfer graph & ability to pause copying)?

PKM
  • 829

1 Answers1

6

Option 1: Use Nemo and UltraCopier

You can Ultracopier with Nemo to grab a stop/pause dialog box for your Copy/Move operations. You need to install Nemo file manager and UltraCopier.

  1. Install Nemo

    1. Add PPA, update index and install Nemo. Open a terminal and do

      sudo apt-add-repository ppa:webupd8team/nemo
      sudo apt-get update
      sudo apt-get install nemo
      
  2. Install UltraCopier

    sudo apt-get install ultracopier 
    
  3. Install NemoUltraCopier

  4. Now if you use instead of Nautilus and use the UltraCopier menu option in right click, You'll a dialog box showing progress with pause/stop.

    Here is a screenshot of the UltraCopier in action

    ultra copier

Extra: If you want to use Nemo as the default file browser instead of Nautilus from this point forward, use these two commands in Terminal

gsettings set org.gnome.desktop.background show-desktop-icons false
gsettings set org.nemo.desktop show-desktop-icons true

And add Nemo to the Startup application list to autostart upon login.

Option 2: Use KDE and Dolphin there

KDE or Kubuntu has those with their Plasma Desktop. You can use Kubuntu instead and see fancy progress bars with pause and stop function. To install kubuntu-desktop on top of Ubuntu, use

 sudo apt-get install kubuntu-desktop

If you rather want to install just the shell without all kubuntu softwares, you can do

 sudo apt-get install kubuntu-desktop --no-install-recommends
Anwar
  • 76,649