jborg / attic

Deduplicating backup program
Other
1.11k stars 104 forks source link

attic mount doesn't work #391

Open nbecker opened 7 years ago

nbecker commented 7 years ago

[nbecker@nbecker2 ~]$ attic mount -v nbecker@nbecker7:repository.attic::nbecker2-2017-01-03 mnt [sits for about 5 seconds...] Mounting filesystem

No error, but nothing happened [nbecker@nbecker2 ~]$ ls mnt [nbecker@nbecker2 ~]$ mount ...[nothing show that attic mounted anything]

This is attic-0.16 on fedora-25

ThomasWaldmann commented 7 years ago

@nbecker I suspect this might be because your llfuse package is too new (it would work with an older llfuse package).

llfuse had some incompatible changes in the api and attic was not updated for it (in general, attic is unchanged since ~1.5y and you rather may want to use the borgbackup fork).

ikunyemingor commented 5 years ago

This worked for me... based on @ThomasWaldmann suspicion, I located the last llfuse release (v0.41) https://pypi.org/project/llfuse/ after Attic version 0.16 https://github.com/jborg/attic/releases and uninstalled the most recent llfuse I had: sudo pip3 uninstall llfuse Then installed: sudo pip3 install llfuse==0.41

Hope it helps