mirror of
https://github.com/Zygo/bees.git
synced 2025-05-17 13:25:45 +02:00
Change documentation and comments to use the word "dedupe," not "dedup" as found in circa-3.15 kernel sources. No changes in code or program output--if they used "dedup" before, they will continue to be spelled "dedup" now. Signed-off-by: Zygo Blaxell <bees@furryterror.org>
35 lines
1.1 KiB
Plaintext
35 lines
1.1 KiB
Plaintext
## Config for Bees: /etc/bees/beesd.conf.sample
|
|
## https://github.com/Zygo/bees
|
|
## It's a default values, change it, if needed
|
|
|
|
# How to use?
|
|
# Copy this file to a new file name and adjust the UUID below
|
|
|
|
# Which FS will be used
|
|
UUID=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
|
|
|
|
## System Vars
|
|
# Change carefully
|
|
# WORK_DIR=/run/bees/
|
|
# MNT_DIR="$WORK_DIR/mnt/$UUID"
|
|
# BEESHOME="$MNT_DIR/.beeshome"
|
|
# BEESSTATUS="$WORK_DIR/$UUID.status"
|
|
|
|
## Options to apply, see `beesd --help` for details
|
|
# OPTIONS="--strip-paths --no-timestamps"
|
|
|
|
## Bees DB size
|
|
# Hash Table Sizing
|
|
# sHash table entries are 16 bytes each
|
|
# (64-bit hash, 52-bit block number, and some metadata bits)
|
|
# Each entry represents a minimum of 4K on disk.
|
|
# unique data size hash table size average dedupe block size
|
|
# 1TB 4GB 4K
|
|
# 1TB 1GB 16K
|
|
# 1TB 256MB 64K
|
|
# 1TB 16MB 1024K
|
|
# 64TB 1GB 1024K
|
|
#
|
|
# Size MUST be multiple of 128KB
|
|
# DB_SIZE=$((1024*1024*1024)) # 1G in bytes
|