Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

bup-bloom(1) [debian man page]

bup-bloom(1)						      General Commands Manual						      bup-bloom(1)

NAME
bup-bloom - generates, regenerates, updates bloom filters SYNOPSIS
bup bloom [-d dir] [-o outfile] [-k hashes] [-c idxfile] [-f] [--ruin] DESCRIPTION
bup bloom builds a bloom filter file for a bup repository. If one already exists, it checks the filter and updates or regenerates it as needed. OPTIONS
--ruin destroy bloom filters by setting the whole bitmask to zeros. you really want to know what you are doing if run this and you want to delete the resulting bloom when you are done with it. -f, --force don't update the existing bloom file; generate a new one from scratch. -d, --dir=directory the directory, containing .idx files, to process. Defaults to $BUP_DIR/objects/pack -o, --outfile=outfile the file to write the bloom filter to. defaults to $dir/bup.bloom -k, --hashes=hashes number of hash functions to use only 4 and 5 are valid. defaults to 5 for repositories < 2 TiB, or 4 otherwise. See comments in git.py for more on this value. -c, --check=idxfile checks the bloom file (counterintuitively outfile) against the specified the .idx. Does not write anything and ignores the -k option. BUP
Part of the bup(1) suite. AUTHORS
Brandon Low <lostlogic@lostlogicx.com>. Bup unknown- bup-bloom(1)

Check Out this Related Man Page

bup-ftp(1)						      General Commands Manual							bup-ftp(1)

NAME
bup-ftp - ftp-like client for navigating bup repositories SYNOPSIS
bup ftp DESCRIPTION
bup ftp is a command-line tool for navigating bup repositories. It has commands similar to the Unix ftp(1) command. The file hierarchy is the same as that shown by bup-fuse(1) and bup-ls(1). Note: if your system has the python-readline library installed, you can use the <tab> key to complete filenames while navigating your backup data. This will save you a lot of typing. COMMANDS
The following commands are available inside bup ftp: ls [-s] [-a] [path] print the contents of a directory. If no path argument is given, the current directory's contents are listed. If -a is given, also include hidden files (files which start with a . character). If -s is given, each file is displayed with its hash from the bup ar- chive to its left. cd dirname change to a different working directory pwd print the path of the current working directory cat filenames... print the contents of one or more files to stdout get filename localname download the contents of filename and save it to disk as localname. If localname is omitted, uses filename as the local name. mget filenames... download the contents of the given filenames and stores them to disk under the same names. The filenames may contain Unix filename globs (*, ?, etc.) help print a list of available commands quit exit the bup ftp client EXAMPLE
$ bup ftp bup> ls mybackup/ yourbackup/ bup> cd mybackup/ bup> ls 2010-02-05-185507@ 2010-02-05-185508@ latest@ bup> cd latest/ bup> ls (...etc...) bup> get myfile Saving 'myfile' bup> quit SEE ALSO
bup-fuse(1), bup-ls(1), bup-save(1), bup-restore(1) BUP
Part of the bup(1) suite. AUTHORS
Avery Pennarun <apenwarr@gmail.com>. Bup unknown- bup-ftp(1)
Man Page

3 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Name in hashes(####)???

Hey frens someone pls temme what i need to do so that after I logged into my unix terminal i should get my name written in hashes(i.e ###) Hope someone ll help me out.... (2 Replies)
Discussion started by: smarty86
2 Replies

2. Shell Programming and Scripting

Script to pull hashes out of large text file

I am attempting to write a script that will pull out NTLM hashes from a text file that contains about 500,000 lines of data. Not all accounts contain hashes and I only need the ones that do contain hashes. Here is a sample of what the data looks like: There are thousands of other lines in... (6 Replies)
Discussion started by: chango77747
6 Replies

3. Programming

Number to bit vector

Is there a function to convert number (unsigned int for this example) to binary? I could not find a simple one thru google. While I was learning bloom filter with the example, I was wondering if anybody can help me to 1) display the real bits vector for the bloomfilter; 2) if dataset is very... (11 Replies)
Discussion started by: yifangt
11 Replies