Deja Dup`s "Back Up Now" button is not highlighted

15,522

Solution 1

Shorter version

Ctrl+Alt+t to open a terminal

pkill deja-dup

Re-run the "Backups" program and try again.

Solution 2

In my case, there was no backup running but deja-dup had a couple of things running.

I did a ps -eaf | grep dup and killed the pids. Then I started DejaDup from the menu and the button was active.

Solution 3

That button is grayed out when a backup (or restore) is already in progress. Maybe one was running in the background?

Is the button enabled now?

Solution 4

ps aux | grep deja
kill <pid of "deja-dup --backup --auto">

Immediately the backup button becomes active.

This should be reported as a bug as the frontend should either have a button to terminate running backups or automatically reconcile concurrent backups.

Solution 5

My 'back up now' button was disabled. In my case the problem was that when I opened the Deja Dup config, the 'storage' option was set to 'Ubuntu One', and it opened another window for logging into that.

I changed the storage setting to a local drive, but it took me a while to realise I had to cancel the Ubuntu One login before Deja Dup would allow me to run a backup.

Share:
15,522

Related videos on Youtube

01BTC10
Author by

01BTC10

Updated on September 18, 2022

Comments

  • 01BTC10
    01BTC10 over 1 year

    I have setup my backup folder and put the Automatic backups switch to on. In the Overview tab I cant press the "Back Up Now" because it is grayed out.

    I am using Ubuntu 11.10 and here is the content of ~/.gconf/apps/deja-dup/%gconf.xml :

    $ cat  ~/.gconf/apps/deja-dup/%gconf.xml
    <?xml version="1.0"?>
    <gconf>
    <entry name="delete-after" mtime="1328975617" type="int" value="7"/>
    <entry name="periodic-period" mtime="1328975577" type="int" value="1"/>
    <entry name="exclude-list" mtime="1328975572" type="list" ltype="string">
        <li type="string">
            <stringvalue>/home/r2d2/.local/share/Trash</stringvalue>
        </li>
    </entry>
    <entry name="periodic" mtime="1328988637" type="bool" value="true"/>
    <entry name="backend" mtime="1328975520" type="string">
        <stringvalue>file</stringvalue>
    </entry>
    </gconf>
    
  • 01BTC10
    01BTC10 about 12 years
    I found the problem. I could not make any backup on my backup drive because it was created with an earlier install. So I have no write access to this disk. I am still trying to figure how to fix this. I tried chmod and chown without success. I am locked out of my backup drive...
  • Danny Staple
    Danny Staple over 11 years
    This exactly what had happened with my setup.
  • Nemo
    Nemo over 11 years
    For me, it was the DejaDup popup window asking me to enter a passphrase to encrypt my first backup with.
  • Cloud
    Cloud over 10 years
    Same thing here.
  • m3nda
    m3nda over 8 years
    I used killall deja-dup. My problem was that i used an external drive, and i'ts not automounted, so the program startup didn't read any backup source. What it's a bit surprising it's that it can backup once you mount because the monitor, but don't enable Restore button.
  • NeoShow
    NeoShow almost 8 years
    Thanks, good to know. Since there is no progress bar it is impossible to tell. I corroborated this by looking at the running processes.
  • Cerin
    Cerin over 7 years
    Yes, DejaDup has a horrible UI and doesn't tell you when it's running, much less report progress.
  • rickhg12hs
    rickhg12hs almost 7 years
    Doing this solved my problem too. Interesting to note that no backup had occurred for almost 2 weeks even though daily backups were selected. In addition, within a few seconds of killing deja-dup --backup, a new backup started automatically and continued to normal completion. It will be interesting to see if the normal auto backup completes normally tomorrow.
  • Mohammed Joraid
    Mohammed Joraid almost 7 years
    Same issue. For me, there was a pop-window asking for entering a password minimized, which I did not notice, and it seems the main backup interface was waiting on me.
  • crockeea
    crockeea about 5 years
    I also had to pkill duplicity before I could run a backup.
  • Janina
    Janina over 4 years
    Ohhh. Perfect. I was getting an error when backing up automatically (like this one: askubuntu.com/questions/1127293/…) which I could not resolve. Then I noticed the buttons are greyed out - followed your advice, everything works again now!