On Saturday 24 January 2004 01:13 pm, Roy Kidder wrote:
> If I understand you coreectly, and all you want to do is back up your
> filesystem to another drive mounted on /backup, you could just do this:
>
> # cd /
> # mount boot
> # tar cvfz backup/backup.tgz boot/ bin/ etc/ home/ lib/ ...
> # umount boot

Yes I am doing that already albeit a little bit differently: using find with 
the --mount option (piped to cpio):

find / /home \
    -mount \
    -path "/tmp" -prune -o \
    -path "/home/ftp" -prune -o \
    -path "/home/media" -prune -o \
    -path "/home/tmp" -prune -o \
    -print0 \
    | \
cpio \
    --create \
    --null \
    --format=crc \
    --quiet \
    | \
gzip \
    --quiet \
> "$ARCHIVE"

So I only end up backing up the filesystems I want. I was just asking if 
amanda was capable of that.

-- 

Alkis

--
[EMAIL PROTECTED] mailing list

Reply via email to