Very efficient backup system based on the git packfile format, providing fast incremental saves and global deduplication

Related tags

Miscellaneous bup
Overview

bup: It backs things up

bup is a program that backs things up. It's short for "backup." Can you believe that nobody else has named an open source program "bup" after all this time? Me neither.

Despite its unassuming name, bup is pretty cool. To give you an idea of just how cool it is, I wrote you this poem:

                         Bup is teh awesome
                      What rhymes with awesome?
                        I guess maybe possum
                       But that's irrelevant.

Hmm. Did that help? Maybe prose is more useful after all.

Reasons bup is awesome

bup has a few advantages over other backup software:

  • It uses a rolling checksum algorithm (similar to rsync) to split large files into chunks. The most useful result of this is you can backup huge virtual machine (VM) disk images, databases, and XML files incrementally, even though they're typically all in one huge file, and not use tons of disk space for multiple versions.

  • It uses the packfile format from git (the open source version control system), so you can access the stored data even if you don't like bup's user interface.

  • Unlike git, it writes packfiles directly (instead of having a separate garbage collection / repacking stage) so it's fast even with gratuitously huge amounts of data. bup's improved index formats also allow you to track far more filenames than git (millions) and keep track of far more objects (hundreds or thousands of gigabytes).

  • Data is "automagically" shared between incremental backups without having to know which backup is based on which other one - even if the backups are made from two different computers that don't even know about each other. You just tell bup to back stuff up, and it saves only the minimum amount of data needed.

  • You can back up directly to a remote bup server, without needing tons of temporary disk space on the computer being backed up. And if your backup is interrupted halfway through, the next run will pick up where you left off. And it's easy to set up a bup server: just install bup on any machine where you have ssh access.

  • Bup can use "par2" redundancy to recover corrupted backups even if your disk has undetected bad sectors.

  • Even when a backup is incremental, you don't have to worry about restoring the full backup, then each of the incrementals in turn; an incremental backup acts as if it's a full backup, it just takes less disk space.

  • You can mount your bup repository as a FUSE filesystem and access the content that way, and even export it over Samba.

  • It's written in python (with some C parts to make it faster) so it's easy for you to extend and maintain.

Reasons you might want to avoid bup

  • It's not remotely as well tested as something like tar, so it's more likely to eat your data. It's also missing some probably-critical features, though fewer than it used to be.

  • It requires python 3.7 or newer (or 2.7 for a bit longer), a C compiler, and an installed git version >= 1.5.6. It also requires par2 if you want fsck to be able to generate the information needed to recover from some types of corruption. While python 2.7 is still supported, please make plans to upgrade. Python 2 upstream support ended on 2020-01-01, and we plan to drop support soon too.

  • It currently only works on Linux, FreeBSD, NetBSD, OS X >= 10.4, Solaris, or Windows (with Cygwin, and WSL). Patches to support other platforms are welcome.

  • Until resolved, a glibc bug might cause bup to crash on startup for some (unusual) command line argument values, when bup is configured to use Python 3.

  • Any items in "Things that are stupid" below.

Notable changes introduced by a release

Test status

master 0.30.x 0.29.x
master branch test status 0.30 branch test status 0.29 branch test status

Getting started

From source

  • Check out the bup source code using git:

    git clone https://github.com/bup/bup
  • This will leave you on the master branch, which is perfect if you would like to help with development, but if you'd just like to use bup, please check out the latest stable release like this:

    git checkout 0.32

    You can see the latest stable release here: https://github.com/bup/bup/releases.

  • Install the required python libraries (including the development libraries).

    On very recent Debian/Ubuntu versions, this may be sufficient (run as root):

    apt-get build-dep bup

    Otherwise try this:

    apt-get install python3.7-dev python3-fuse
    apt-get install python3-pyxattr python3-pytest
    apt-get install python3-distutils
    apt-get install pkg-config linux-libc-dev libacl1-dev
    apt-get install gcc make acl attr rsync
    apt-get isntall python3-pytest-xdist # optional (parallel tests)
    apt-get install par2 # optional (error correction)
    apt-get install libreadline-dev # optional (bup ftp)
    apt-get install python3-tornado # optional (bup web)
    

    Or, if you can't yet migrate to Python 3 (please try to soon):

    apt-get install python2.7-dev python-fuse
    apt-get install python-pyxattr python-pytest
    apt-get install pkg-config linux-libc-dev libacl1-dev
    apt-get install gcc make acl attr rsync
    apt-get isntall python-pytest-xdist # optional (parallel tests)
    apt-get install par2 # optional (error correction)
    apt-get install libreadline-dev # optional (bup ftp)
    apt-get install python-tornado # optional (bup web)

    On CentOS (for CentOS 6, at least), this should be sufficient (run as root):

    yum groupinstall "Development Tools"
    yum install python2 python2-devel libacl-devel pylibacl
    yum install fuse-python pyxattr
    yum install perl-Time-HiRes
    yum install readline-devel # optional (bup ftp)
    yum install python-tornado # optional (bup web)

    In addition to the default CentOS repositories, you may need to add RPMForge (for fuse-python) and EPEL (for pyxattr).

    On Cygwin, install python, make, rsync, and gcc4.

    If you would like to use the optional bup web server on systems without a tornado package, you may want to try this:

    pip install tornado
  • Build:

    make
  • Run the tests:

    make long-check

    or if you're in a bit more of a hurry:

    make check

    If you have the Python xdist module installed, then you can probably run the tests faster by adding the make -j option (see ./HACKING for additional information):

    make -j check

    The tests should pass. If they don't pass for you, stop here and send an email to [email protected]. Though if there are symbolic links along the current working directory path, the tests may fail. Running something like this before "make test" should sidestep the problem:

    cd "$(pwd -P)"
  • You can install bup via "make install", and override the default destination with DESTDIR and PREFIX.

    Files are normally installed to "$DESTDIR/$PREFIX" where DESTDIR is empty by default, and PREFIX is set to /usr/local. So if you wanted to install bup to /opt/bup, you might do something like this:

    make install DESTDIR=/opt/bup PREFIX=''
  • The Python version that bup will use is determined by the python-config program chosen by ./configure, which will search for a reasonable version unless BUP_PYTHON_CONFIG is set in the environment. You can see which Python executable was chosen by looking at the configure output, or examining config/config.var/bup-python-config, and you can change the selection by re-running ./configure.

From binary packages

Binary packages of bup are known to be built for the following OSes:

Using bup

  • Get help for any bup command:

    bup help
    bup help init
    bup help index
    bup help save
    bup help restore
    ...
  • Initialize the default BUP_DIR (~/.bup -- you can choose another by either specifying bup -d DIR ... or setting the BUP_DIR environment variable for a command):

    bup init
  • Make a local backup (-v or -vv will increase the verbosity):

    bup index /etc
    bup save -n local-etc /etc
  • Restore a local backup to ./dest:

    bup restore -C ./dest local-etc/latest/etc
    ls -l dest/etc
  • Look at how much disk space your backup took:

    du -s ~/.bup
  • Make another backup (which should be mostly identical to the last one; notice that you don't have to specify that this backup is incremental, it just saves space automatically):

    bup index /etc
    bup save -n local-etc /etc
  • Look how little extra space your second backup used (on top of the first):

    du -s ~/.bup
  • Get a list of your previous backups:

    bup ls local-etc
  • Restore your first backup again:

    bup restore -C ./dest-2 local-etc/2013-11-23-11195/etc
  • Make a backup to a remote server which must already have the 'bup' command somewhere in its PATH (see /etc/profile, etc/environment, ~/.profile, or ~/.bashrc), and be accessible via ssh. Make sure to replace SERVERNAME with the actual hostname of your server:

    bup init -r SERVERNAME:path/to/remote-bup-dir
    bup index /etc
    bup save -r SERVERNAME:path/to/remote-bup-dir -n local-etc /etc
  • Make a remote backup to ~/.bup on SERVER:

    bup index /etc
    bup save -r SERVER: -n local-etc /etc
  • See what saves are available in ~/.bup on SERVER:

    bup ls -r SERVER:
  • Restore the remote backup to ./dest:

    bup restore -r SERVER: -C ./dest local-etc/latest/etc
    ls -l dest/etc
  • Defend your backups from death rays (OK fine, more likely from the occasional bad disk block). This writes parity information (currently via par2) for all of the existing data so that bup may be able to recover from some amount of repository corruption:

    bup fsck -g
  • Use split/join instead of index/save/restore. Try making a local backup using tar:

    tar -cvf - /etc | bup split -n local-etc -vv
  • Try restoring the tarball:

    bup join local-etc | tar -tf -
  • Look at how much disk space your backup took:

    du -s ~/.bup
  • Make another tar backup:

    tar -cvf - /etc | bup split -n local-etc -vv
  • Look at how little extra space your second backup used on top of the first:

    du -s ~/.bup
  • Restore the first tar backup again (the ~1 is git notation for "one older than the most recent"):

    bup join local-etc~1 | tar -tf -
  • Get a list of your previous split-based backups:

    GIT_DIR=~/.bup git log local-etc
  • Save a tar archive to a remote server (without tar -z to facilitate deduplication):

    tar -cvf - /etc | bup split -r SERVERNAME: -n local-etc -vv
  • Restore the archive:

    bup join -r SERVERNAME: local-etc | tar -tf -

That's all there is to it!

Notes on FreeBSD

  • FreeBSD's default 'make' command doesn't like bup's Makefile. In order to compile the code, run tests and install bup, you need to install GNU Make from the port named 'gmake' and use its executable instead in the commands seen above. (i.e. 'gmake test' runs bup's test suite)

  • Python's development headers are automatically installed with the 'python' port so there's no need to install them separately.

  • To use the 'bup fuse' command, you need to install the fuse kernel module from the 'fusefs-kmod' port in the 'sysutils' section and the libraries from the port named 'py-fusefs' in the 'devel' section.

  • The 'par2' command can be found in the port named 'par2cmdline'.

  • In order to compile the documentation, you need pandoc which can be found in the port named 'hs-pandoc' in the 'textproc' section.

Notes on NetBSD/pkgsrc

  • See pkgsrc/sysutils/bup, which should be the most recent stable release and includes man pages. It also has a reasonable set of dependencies (git, par2, py-fuse-bindings).

  • The "fuse-python" package referred to is hard to locate, and is a separate tarball for the python language binding distributed by the fuse project on sourceforge. It is available as pkgsrc/filesystems/py-fuse-bindings and on NetBSD 5, "bup fuse" works with it.

  • "bup fuse" presents every directory/file as inode 0. The directory traversal code ("fts") in NetBSD's libc will interpret this as a cycle and error out, so "ls -R" and "find" will not work.

  • There is no support for ACLs. If/when some enterprising person fixes this, adjust dev/compare-trees.

Notes on Cygwin

  • There is no support for ACLs. If/when some enterprising person fixes this, adjust dev/compare-trees.

  • In test/ext/test-misc, two tests have been disabled. These tests check to see that repeated saves produce identical trees and that an intervening index doesn't change the SHA1. Apparently Cygwin has some unusual behaviors with respect to access times (that probably warrant further investigation). Possibly related: http://cygwin.com/ml/cygwin/2007-06/msg00436.html

Notes on OS X

  • There is no support for ACLs. If/when some enterprising person fixes this, adjust dev/compare-trees.

How it works

Basic storage:

bup stores its data in a git-formatted repository. Unfortunately, git itself doesn't actually behave very well for bup's use case (huge numbers of files, files with huge sizes, retaining file permissions/ownership are important), so we mostly don't use git's code except for a few helper programs. For example, bup has its own git packfile writer written in python.

Basically, 'bup split' reads the data on stdin (or from files specified on the command line), breaks it into chunks using a rolling checksum (similar to rsync), and saves those chunks into a new git packfile. There is at least one git packfile per backup.

When deciding whether to write a particular chunk into the new packfile, bup first checks all the other packfiles that exist to see if they already have that chunk. If they do, the chunk is skipped.

git packs come in two parts: the pack itself (.pack) and the index (.idx). The index is pretty small, and contains a list of all the objects in the pack. Thus, when generating a remote backup, we don't have to have a copy of the packfiles from the remote server: the local end just downloads a copy of the server's index files, and compares objects against those when generating the new pack, which it sends directly to the server.

The "-n" option to 'bup split' and 'bup save' is the name of the backup you want to create, but it's actually implemented as a git branch. So you can do cute things like checkout a particular branch using git, and receive a bunch of chunk files corresponding to the file you split.

If you use '-b' or '-t' or '-c' instead of '-n', bup split will output a list of blobs, a tree containing that list of blobs, or a commit containing that tree, respectively, to stdout. You can use this to construct your own scripts that do something with those values.

The bup index:

'bup index' walks through your filesystem and updates a file (whose name is, by default, ~/.bup/bupindex) to contain the name, attributes, and an optional git SHA1 (blob id) of each file and directory.

'bup save' basically just runs the equivalent of 'bup split' a whole bunch of times, once per file in the index, and assembles a git tree that contains all the resulting objects. Among other things, that makes 'git diff' much more useful (compared to splitting a tarball, which is essentially a big binary blob). However, since bup splits large files into smaller chunks, the resulting tree structure doesn't exactly correspond to what git itself would have stored. Also, the tree format used by 'bup save' will probably change in the future to support storing file ownership, more complex file permissions, and so on.

If a file has previously been written by 'bup save', then its git blob/tree id is stored in the index. This lets 'bup save' avoid reading that file to produce future incremental backups, which means it can go very fast unless a lot of files have changed.

Things that are stupid for now but which we'll fix later

Help with any of these problems, or others, is very welcome. Join the mailing list (see below) if you'd like to help.

  • 'bup save' and 'bup restore' have immature metadata support.

    On the plus side, they actually do have support now, but it's new, and not remotely as well tested as tar/rsync/whatever's. However, you have to start somewhere, and as of 0.25, we think it's ready for more general use. Please let us know if you have any trouble.

    Also, if any strip or graft-style options are specified to 'bup save', then no metadata will be written for the root directory. That's obviously less than ideal.

  • bup is overly optimistic about mmap. Right now bup just assumes that it can mmap as large a block as it likes, and that mmap will never fail. Yeah, right... If nothing else, this has failed on 32-bit architectures (and 31-bit is even worse -- looking at you, s390).

    To fix this, we might just implement a FakeMmap[1] class that uses normal file IO and handles all of the mmap methods[2] that bup actually calls. Then we'd swap in one of those whenever mmap fails.

    This would also require implementing some of the methods needed to support "[]" array access, probably at a minimum getitem, setitem, and setslice [3].

    [1] http://comments.gmane.org/gmane.comp.sysutils.backup.bup/613 [2] http://docs.python.org/2/library/mmap.html [3] http://docs.python.org/2/reference/datamodel.html#emulating-container-types

  • 'bup index' is slower than it should be.

    It's still rather fast: it can iterate through all the filenames on my 600,000 file filesystem in a few seconds. But it still needs to rewrite the entire index file just to add a single filename, which is pretty nasty; it should just leave the new files in a second "extra index" file or something.

  • bup could use inotify for really efficient incremental backups.

    You could even have your system doing "continuous" backups: whenever a file changes, we immediately send an image of it to the server. We could give the continuous-backup process a really low CPU and I/O priority so you wouldn't even know it was running.

  • bup only has experimental support for pruning old backups.

    While you should now be able to drop old saves and branches with bup rm, and reclaim the space occupied by data that's no longer needed by other backups with bup gc, these commands are experimental, and should be handled with great care. See the man pages for more information.

    Unless you want to help test the new commands, one possible workaround is to just start a new BUP_DIR occasionally, i.e. bup-2013, bup-2014...

  • bup has never been tested on anything but Linux, FreeBSD, NetBSD, OS X, and Windows+Cygwin.

    There's nothing that makes it inherently non-portable, though, so that's mostly a matter of someone putting in some effort. (For a "native" Windows port, the most annoying thing is the absence of ssh in a default Windows installation.)

  • bup needs better documentation.

    According to an article about bup in Linux Weekly News (https://lwn.net/Articles/380983/), "it's a bit short on examples and a user guide would be nice." Documentation is the sort of thing that will never be great unless someone from outside contributes it (since the developers can never remember which parts are hard to understand).

  • bup is "relatively speedy" and has "pretty good" compression.

    ...according to the same LWN article. Clearly neither of those is good enough. We should have awe-inspiring speed and crazy-good compression. Must work on that. Writing more parts in C might help with the speed.

  • bup has no GUI.

    Actually, that's not stupid, but you might consider it a limitation. See the "Related Projects" list for some possible options.

More Documentation

bup has an extensive set of man pages. Try using 'bup help' to get started, or use 'bup help SUBCOMMAND' for any bup subcommand (like split, join, index, save, etc.) to get details on that command.

For further technical details, please see ./DESIGN.

How you can help

bup is a work in progress and there are many ways it can still be improved. If you'd like to contribute patches, ideas, or bug reports, please join the bup mailing list:

You can find the mailing list archives here:

http://groups.google.com/group/bup-list

and you can subscribe by sending a message to:

You can also reach us via the #bup IRC channel at ircs://irc.libera.chat:6697/bup on the libera.chat network or via this web interface.

Please see ./HACKING for additional information, i.e. how to submit patches (hint - no pull requests), how we handle branches, etc.

Have fun,

Avery

Comments
  • TypeError: can't concat str to bytes

    TypeError: can't concat str to bytes

    index 7c8ca26..3797724 100755 --- a/lib/cmd/restore-cmd.py +++ b/lib/cmd/restore-cmd.py @@ -192,7 +192,7 @@ def restore(repo, parent_path, name, item, top, sparse, numeric_ids, owner_map, out.write(b'%s@ -> %s\n' % (fullname, meta.symlink_target)) else: if verbosity >= 2:

    •        out.write(fullname + '\n')
      
    •        out.write(fullname + b'\n')
      

      orig_cwd = os.getcwd() try: ~ ~ ~ ~ ~

    We discuss code changes on the mailing list [email protected], but if you'd prefer to begin the process with a pull request, that's just fine. We're happy to have the help.

    In any case, please make sure each commit includes a

    Signed-off-by: Someone [email protected]

    line in the commit message that matches the "Author" line so that we'll be able to include your work in the project. See ./SIGNED-OFF-BY for the meaning:

    https://github.com/bup/bup/blob/master/SIGNED-OFF-BY

    After you submit the pull request, someone will eventually redirect it to the list for review, and you will of course be included in the conversation there.

    On the other hand, if you're comfortable with "git send-email" (or the equivalent), please post your patches to the list as described in the "Submitting Patches" section in ./HACKING:

    https://github.com/bup/bup/blob/master/HACKING

    opened by kokopopse 6
  • Changed build requirements packages for Centos

    Changed build requirements packages for Centos

    Some packages have been changed the name, so building bup was problematic.

    We discuss code changes on the mailing list [email protected], but if you'd prefer to begin the process with a pull request, that's just fine. We're happy to have the help.

    In any case, please make sure each commit includes a

    Signed-off-by: Someone [email protected]

    line in the commit message that matches the "Author" line so that we'll be able to include your work in the project. See ./SIGNED-OFF-BY for the meaning:

    https://github.com/bup/bup/blob/master/SIGNED-OFF-BY

    After you submit the pull request, someone will eventually redirect it to the list for review, and you will of course be included in the conversation there.

    On the other hand, if you're comfortable with "git send-email" (or the equivalent), please post your patches to the list as described in the "Submitting Patches" section in ./HACKING:

    https://github.com/bup/bup/blob/master/HACKING

    opened by danpawlik 5
  • Raise Error When the compression_level is invalid

    Raise Error When the compression_level is invalid

    Wouldn't this be better than forcing to a specific compression level? Note: I just saw this while glancing through the code, so I may very well be wrong.

    opened by YafahEdelman 5
  • git/packwriter: open(..) prohibited in __del__

    git/packwriter: open(..) prohibited in __del__

    When an exception occurs, __del__ is invoked by the interpretor, to perform cleanup. It seems that since Python 3.4, the behaviour has changed, and also prohibits invocations of open(..) (source: https://stackoverflow.com/a/29737870). Instead, contextmanager API should be used (source: https://stackoverflow.com/a/26544629), which seems to be in place already.

    This should fix exception messages such as 'NameError: name 'open' is not defined'.

    redirected 
    opened by basilfx 4
  • Added sleep 0.1 to wait for the previous process to fully finish else umount will fail with busy file system on some systems.

    Added sleep 0.1 to wait for the previous process to fully finish else umount will fail with busy file system on some systems.

    ! t/test-index-check-device.sh:38 mke2fs -F -j -m 0 testfs.img ok ! t/test-index-check-device.sh:39 mount -o loop testfs.img /opt/bup/t/mnt/test-index-check-device.sh-YuNQZtU ok ! t/test-index-check-device.sh:41 chown root:root /opt/bup/t/mnt/test-index-check-device.sh-YuNQZtU ok ! t/test-index-check-device.sh:42 chmod 0700 /opt/bup/t/mnt/test-index-check-device.sh-YuNQZtU ok ! t/test-index-check-device.sh:45 date ok umount: /opt/bup/t/mnt/test-index-check-device.sh-YuNQZtU: device is busy. (In some cases useful info about processes that use the device is found by lsof(8) or fuser(1)) ! t/test-index-check-device.sh:46 umount /opt/bup/t/mnt/test-index-check-device.sh-YuNQZtU FAILED

    missing-signed-off-by 
    opened by vimdude 4
  • Add missing import

    Add missing import "parse_date_or_fatal" to cmd/split-cmd.py

    If using bup split -n NAME -d STAMP FILE we currently get an error:

    Traceback (most recent call last):
      File "/usr/lib/bup/cmd/bup-split", line 67, in <module>
        date = parse_date_or_fatal(opt.date, o.fatal)
    NameError: name 'parse_date_or_fatal' is not defined
    

    this patch does add the missing parse_date_or_fatal to from bup.helpers import

    redirected 
    opened by xx4h 3
  • import helpers.add_error

    import helpers.add_error

    in the Jan 17 commit, in several command files, "from helpers import *" was changed to "from helpers import TOKENS" but the error handler add_error was inadvertently omitted from the list of specific tokens. The reason I found this was running "bup restore" with an invalid path. instead of a friendly error telling me the path on the command line was invalid, I got a NameError that add_error is not defined in bup-restore. grepping for add_error in that directory I found a few files where it was used but not in the imports, so I included those in this pull request. Thanks!

    opened by stevelr 3
  • Unset problematic environment variables in tests

    Unset problematic environment variables in tests

    Certain environment variables affect the output of 'du' and break the tests. Therefore, unset the folowing:

    • BLOCKSIZE
    • DU_BLOCK_SIZE
    • BLOCK_SIZE

    Signed-off-by: Michael Ekstrand [email protected]

    opened by mdekstrand 3
  • Undefined name: log() must be imported before it is called

    Undefined name: log() must be imported before it is called

    log() is imported on line 32 after it is called on line 22 which will result in a NameError being raised from the bare except with nothing logged.

    $ flake8 . --count --select=E9,F63,F7,F82,Y --show-source --statistics

    ./bup/lib/bup/cmd/fuse.py:21:9: F821 undefined name 'log'
            log('error: cannot determine the fuse major version; please report',
            ^
    1     F821 undefined name 'log'
    1
    

    We discuss code changes on the mailing list [email protected], but if you'd prefer to begin the process with a pull request, that's just fine. We're happy to have the help.

    In any case, please make sure each commit includes a

    Signed-off-by: Someone [email protected]

    line in the commit message that matches the "Author" line so that we'll be able to include your work in the project. See ./SIGNED-OFF-BY for the meaning:

    https://github.com/bup/bup/blob/master/SIGNED-OFF-BY

    After you submit the pull request, someone will eventually redirect it to the list for review, and you will of course be included in the conversation there.

    On the other hand, if you're comfortable with "git send-email" (or the equivalent), please post your patches to the list as described in the "Submitting Patches" section in ./HACKING:

    https://github.com/bup/bup/blob/master/HACKING

    opened by cclauss 2
  • Allow non ASCII chars in files/dirs

    Allow non ASCII chars in files/dirs

    Include support for non-ASCII chars.

    Steps to reproduce: Have a file with non-ASCII chars, like acción.txt and try to backup

    Current behavior: Throws: TypeError: don't know how to handle UnicodeDecodeError in error callback

    Expected behavior: Backup all files no matter encoding.

    WARNING: The solution that i propose is not well tested, this may cause some weird behavior, only tested with:

    bup -d /Backups save -n kup -vv /home

    Signed-off-by: AfroMonkey [email protected]

    opened by AfroMonkey 2
  • Fix typos

    Fix typos

    The following changes since commit 7641fcf975ad71049e08bfc1482e360790301342:

    test-ls: discover socket mode like symlink mode (2017-03-26 17:21:24 -0500)

    are available in the git repository at:

    https://github.com/bedhanger/bup.git fix-typos

    for you to fetch changes up to 797f238eec254326d6985d515eb3a4818a0db56d:

    DESIGN: remove surplus ``relevant'' (2017-03-27 18:41:51 +0200)

    redirected 
    opened by bedhanger 2
  • Add file/folder illustration of the repo format

    Add file/folder illustration of the repo format

    This is a minor change in the DESIGN document, but it would have helped me a lot to understand the functionality of bup. From reading "git for computer scientists" alone, I did not realize that git trees and blobs are 1-to-1 mapped to directories and files on git checkout. I searched for ways in how git alone can merge several blobs to one file, which it cant. The reason is this sentence:

    ... so you can use git to manipulate the bup repository if you want, and you probably won't break anything. It's also a comfort to know you can squeeze data out using git, just in case bup fails you, and as a developer, git offers some nice tools ...

    where I interpreted "squeeze out" as a simple "git checkout", which is not true, as bup splits files. The added text makes this more concrete and prepares the reader for the parts about hashsplitting and fanout

    Signed-off-by: Moritz Lell [email protected]

    opened by mlell 0
  • Avoid the use of a local window when splitting

    Avoid the use of a local window when splitting

    The splitting code in bupsplit.c was written as if it had to handle the case where bytes were fed one by-one, but it actually gets the whole data chunk: there's no need to copy to a local window, when we have the original data available: we can simply use the passed data to fetch the byte that is leaving the current window. This should actually be a fair bit faster.

    Additionally, try to use __builtin_ctz for filling in the bits ptr, if it is available.

    Signed-off-by: Zachary Dremann [email protected]

    opened by Dr-Emann 4
  • Update README.md

    Update README.md

    Shortened some lines. Added missing spaces for double-space-after-sentence consistency.

    We discuss code changes on the mailing list [email protected], but if you'd prefer to begin the process with a pull request, that's just fine. We're happy to have the help.

    In any case, please make sure each commit includes a

    Signed-off-by: Calvin Truong [email protected]

    line in the commit message that matches the "Author" line so that we'll be able to include your work in the project. See ./SIGNED-OFF-BY for the meaning:

    https://github.com/bup/bup/blob/master/SIGNED-OFF-BY

    After you submit the pull request, someone will eventually redirect it to the list for review, and you will of course be included in the conversation there.

    On the other hand, if you're comfortable with "git send-email" (or the equivalent), please post your patches to the list as described in the "Submitting Patches" section in ./HACKING:

    https://github.com/bup/bup/blob/master/HACKING

    opened by cxtruong70 0
  • Fix Exception handling to raise valid I/O Errors

    Fix Exception handling to raise valid I/O Errors

    The use of IOError in exception handling ignores valid, critical errors like out of disk space errors, which we are currently running into.

    To handle Keyboard interrupts and other such interrupts caused by system calls we need to switch to using InterruptedError that serves our purpose perfectly ( https://docs.python.org/3/library/exceptions.html#InterruptedError ).

    Since InterruptedError is only available for python versions > 3.5 we will need to use https://docs.python.org/3/library/exceptions.html#KeyboardInterrupt instead.

    Signed-off-by: Shashank Katlaparthi [email protected]

    We discuss code changes on the mailing list [email protected], but if you'd prefer to begin the process with a pull request, that's just fine. We're happy to have the help.

    In any case, please make sure each commit includes a

    Signed-off-by: Someone [email protected]

    line in the commit message that matches the "Author" line so that we'll be able to include your work in the project. See ./SIGNED-OFF-BY for the meaning:

    https://github.com/bup/bup/blob/master/SIGNED-OFF-BY

    After you submit the pull request, someone will eventually redirect it to the list for review, and you will of course be included in the conversation there.

    On the other hand, if you're comfortable with "git send-email" (or the equivalent), please post your patches to the list as described in the "Submitting Patches" section in ./HACKING:

    https://github.com/bup/bup/blob/master/HACKING

    opened by skatlapa 1
  • cmd/fsck-cmd.py: Test early for par2_parallel, helps with -jN

    cmd/fsck-cmd.py: Test early for par2_parallel, helps with -jN

    With a recent par2 installed, bup fsck -v -j4 (optionally with -g or --quick) outputs messages like

    Unexpected par2 error output
    ''Assuming par2 supports parallel processing
    
    
    Unexpected par2 error output
    ''Assuming par2 supports parallel processing
    
    
    Unexpected par2 error output
    ''Assuming par2 supports parallel processing
    
    
    Unexpected par2 error output
    ''Assuming par2 supports parallel processing
    
    pack-c43b5a506e802434012cea900fe0267532179eb1 generated
    pack-a765e8f19683d1d0d2ea535470150660a9627a30 generated
    
    Unexpected par2 error output
    ''Assuming par2 supports parallel processing
    

    and so on. So the par2 -t1 test is run several times, despite caching attempts in cmd/fsck-cmd.py.

    The fix proposed here moves the associated test from the par2 subroutine to par2_setup. Notes:

    • This patch implicitly assumes that par2_setup() has been run before any calls to par2 take place and before any forking due to -jN happens. This is currently the case, as a look at the main section of fsck-cmd.py shows.
    • The global variable _par2_parallel that stores the result has been renamed to par2_parallel as it is no longer accessed by only one subroutine (though not by subs in other files). The new name rings similar to the other global par2_ok. It is left at None if the test associated with par2_ok fails.

    With this patch and the warning fixes from the fix-par2-t-msg branch, bup fsck -v -j4 now simply reports

    Assuming par2 supports parallel processing
    

    just once, which is as it should be.

    opened by ccorn 0
Dicionario-git-github - Dictionary created to help train new users of Git and GitHub applications

Dicionário ?? Dicionário criado com o objetivo de auxiliar no treinamento de nov

Felippe Rafael 1 Feb 7, 2022
A web-based analysis toolkit for the System Usability Scale providing calculation, plotting, interpretation and contextualization utility

System Usability Scale Analysis Toolkit The System Usability Scale (SUS) Analysis Toolkit is a web-based python application that provides a compilatio

Jonas Blattgerste 3 Oct 27, 2022
A GUI love Calculator which saves all the User Data in text file(sql based script will be uploaded soon). Interative GUI. Even For Admin Panel

Love-Calculator A GUI love Calculator which saves all the User Data in text file(sql based script will be uploaded soon). Interative GUI, even For Adm

Adithya Krishnan 1 Mar 22, 2022
This is the core of the program which takes 5k SYMBOLS and looks back N years to pull in the daily OHLC data of those symbols and saves them to disc.

This is the core of the program which takes 5k SYMBOLS and looks back N years to pull in the daily OHLC data of those symbols and saves them to disc.

Daniel Caine 1 Jan 31, 2022
Bring A Trailer(BAT) is a popular online auction website for enthusiast cars. This traverse auction results and saves them as CSV

BaT Data Grabber Bring A Trailer(BAT) is a popular online auction website for enthusiast cars. This traverse auction results and saves them as CSV Bri

Elliot Weil 2 Oct 31, 2021
🦠 A simple and fast (< 200ms) API for tracking the global coronavirus (COVID-19, SARS-CoV-2) outbreak.

?? A simple and fast (< 200ms) API for tracking the global coronavirus (COVID-19, SARS-CoV-2) outbreak. It's written in python using the ?? FastAPI framework. Supports multiple sources!

Marius 1.6k Jan 4, 2023
This simple script generates a backup of a given Python and R environment

Python Environment Backup It’s always good to maintain your Python and R Anaconda environment packages properly listed and well-kept in case you have

Andrew Laganaro 1 Jul 13, 2022
Prophet is a tool to discover resources detailed for cloud migration, cloud backup and disaster recovery

Prophet is a tool to discover resources detailed for cloud migration, cloud backup and disaster recovery

null 22 May 31, 2022
JD-backup is an advanced Python script, that will extract all links from a jDownloader 2 file list and export them to a text file.

JD-backup is an advanced Python script, that will extract all links from a jDownloader 2 file list and export them to a text file.

Kraken.snv 3 Jun 7, 2022
Using Python to parse through email logs received through several backup systems.

outlook-automated-backup-control Backup monitoring on a mailbox: In this mailbox there will be backup logs. The identification will based on the follo

Connor 2 Sep 28, 2022
Find the remote website version based on a git repository

versionshaker Versionshaker is a tool to find a remote website version based on a git repository This tool will help you to find the website version o

Orange Cyberdefense 110 Oct 23, 2022
null 1 May 12, 2022
Providing a working, flexible, easier and faster installer than the one officially provided by Arch Linux

Purpose The purpose is to bring more people to Arch Linux by providing a working, flexible, easier and faster installer than the one officially provid

André Luís 0 Nov 9, 2022
MeepoBenchmark - This project aims at providing the scripts, logs, and analytic results for Meepo Blockchain

MeepoBenchmark - This project aims at providing the scripts, logs, and analytic results for Meepo Blockchain

Peilin Zheng 3 Aug 16, 2022
Irrigation Component V4 providing support for a custom card

Irrigation Component V4 This release sees the delivery of a custom card https://github.com/petergridge/irrigation_card to render the program options s

null 12 Oct 28, 2022
A python script providing an idea of how a MindSphere application, e.g., a dashboard, can be displayed around the clock without the need of manual re-authentication on enforced session expiration

A python script providing an idea of how a MindSphere application, e.g., a dashboard, can be displayed around the clock without the need of manual re-authentication on enforced session expiration

MindSphere 3 Jun 3, 2022
Waydroid is a container-based approach to boot a full Android system on a regular GNU/Linux system like Ubuntu.

Waydroid is a container-based approach to boot a full Android system on a regular GNU/Linux system like Ubuntu.

WayDroid 4.7k Jan 8, 2023
A very terrible python-based programming language that uses folders instead of text files

PYFolders by Lewis L. Foster PYFolders is a very terrible python-based programming language that uses folders instead of regular text files. In this r

Lewis L. Foster 5 Jan 8, 2022
Hook and simulate global keyboard events on Windows and Linux.

keyboard Take full control of your keyboard with this small Python library. Hook global events, register hotkeys, simulate key presses and much more.

BoppreH 3.2k Jan 1, 2023