Jeremy Hansen wrote:
I've been using Arkeia for a while but recently my license has expired and I'd like to try using Amanda.

I'd like to backup all of localhost to a second hard drive in the server. Can Amanda do this? I was looking for some quick start like documentation to get me going but didn't see anything really in terms of just getting a simple backup going with a local disk. Any pointers to docs would be appreciated.

First install and configure amanda following the instructions in docs/INSTALL. Don't forget to "amcheck YourConfig". Configure a small disklist to test.

For backup to disk, you can use the "file:" driver.
Read the section in the man page about "OUTPUT DRIVERS", and
especially the "file" driver. If you understood that, you
can configure the backup with the file driver.

For using the file driver, we only have to change the
"tapedev" directive in amanda.conf to e.g.
  tapedev "file:/amanda-bkup/daily"

A simple approach is: make a directory, e.g. /amanda-bkup/daily,
owned by amanda. Create subdirectories for each tape used,
e.g.  daily-01, daily-02, daily-03, etc.
Then make "data" a symlink of the "current" tape:
  ln -s daily-01 data
(we have now "inserted" the first tape in our file-drive.)

Label that tape (this has to be done once for each tape only):
   amlabel daily Daily-01

Now try "amcheck daily" again (assuming you had done that already
when following the instructions in docs/INSTALL) and solve each "ERROR"
it reports. (You may ignore the NOTE's).

And now you can dump your first backup:

amdump daily

To proceed to the next tape, point the "data" symlink to the correct
"tape":
        cd /amanda-bkup/daily
        rm data
        ln -s daily-02 data

--
Paul Bijnens, Xplanation                            Tel  +32 16 397.511
Technologielaan 21 bus 2, B-3001 Leuven, BELGIUM    Fax  +32 16 397.512
http://www.xplanation.com/          email:  [EMAIL PROTECTED]
***********************************************************************
* I think I've got the hang of it now:  exit, ^D, ^C, ^\, ^Z, ^Q, F6, *
* quit,  ZZ, :q, :q!,  M-Z, ^X^C,  logoff, logout, close, bye,  /bye, *
* stop, end, F3, ~., ^]c, +++ ATH, disconnect, halt,  abort,  hangup, *
* PF4, F20, ^X^X, :D::D, KJOB, F14-f-e, F8-e,  kill -1 $$,  shutdown, *
* kill -9 1,  Alt-F4,  Ctrl-Alt-Del,  AltGr-NumLock,  Stop-A,  ...    *
* ...  "Are you sure?"  ...   YES   ...   Phew ...   I'm out          *
***********************************************************************




Reply via email to