-
Notifications
You must be signed in to change notification settings - Fork 339
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DRAFT: Allows to mount backups using FUSE #628
base: master
Are you sure you want to change the base?
Conversation
I'd suggest removing the introduction of Go modules from this PR. Especially since v2 has already been released, care should be taken when migrating to modules. Look like there's a bit of cleanup to be done here too. |
f := nodefs.NewDataFile(buffer.Bytes()) | ||
return &nodefs.WithFlags{ | ||
File: f, | ||
FuseFlags: fuse.FOPEN_NONSEEKABLE, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That doesn't sound right
@@ -0,0 +1,195 @@ | |||
package duplicacy |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some tests would be nice
This pull request has been mentioned on Duplicacy Forum. There might be relevant details there: https://forum.duplicacy.com/t/restore-multiple-files-web-ui/5320/17 |
This pull request has been mentioned on Duplicacy Forum. There might be relevant details there: https://forum.duplicacy.com/t/restore-multiple-files-web-ui/5320/20 |
You can mount backups using go-fuse by using
duplicacy fusemount <mount folder name> <revision ID>
Also apparently master is broken right now so I branched off the last working release commit i found.
TODO: