On Mon, Jul 30, 2012 at 12:51 PM, Stefan Buller <
stefan...@gmail.com> wrote:
> You'll either want to
> # symlink ~/.bup to your disk
> mv ~/.bup /media/DISK/backup
> ln -s /media/DISK/backup ~/.bup
> # or tell bup to use a different repository
> export BUP_DIR=/media/DISK/backup
> # or
> bup -d/media/DISK/backup
Actually, I recommend using the '-r' option instead:
bup index /home/edegoute
bup save -r /media/USB/bup/.bup /home/edegoute
This will save some stuff, like the index, in your local home
directory. That way you can rotate between different usb disks
without losing your index, so it'll run really fast. But the actual
content will be saved to USB.
Also, I don't recommend naming your bupdir after the particular
directory or machine you're backing up; you get better deduplication
if you backup *all* your stuff, even multiple machines, into the same
bupdir. But that's an even more important reason your bupindex should
be on your local disk, not on the USB disk. (You don't need the
bupindex to do a restore, so it's fine if it gets lost when your
computer finally dies.)
Have fun,
Avery