
Originally Posted by
xHan
Don't need \", just put --diskdev c:/users/rsickler/downloads
I used \ to escape the quote (evidently it's a special character from what I've read). For future reference, are you saying quotes are not special characters? I thought they were used to deal with whitespace like blanks (spaces) and whatnot. I know I don't have any spaces in that path but I didn't know it would hurt either. I figured I'd always use them for consistencey.

Originally Posted by
xHan
The dumptypes file should be created by the Amadna Server Installer, if the installation was success. You can't create it manually.
I used the following process to install Amanda Server:
Code:
wget http://www.zmanda.com/downloads/community/Amanda/3.3.2/Ubuntu-12.04/amanda-backup-server_3.3.2-1Ubuntu1204_amd64.deb
sudo dpkg -i amanda-backup-server_3.3.2-1Ubuntu1204_amd64.deb
sudo apt-get -f install
Installing the deb file did throw an error but it was nagging about dependencies which should've been taken care of via the apt-get -f command after that. If I installed it incorrectly, by all means, please tell me and I'll start from scratch and do it all over again.

Originally Posted by
xHan
If your client is a windows machine, you need to install ZWC on your client and add a ZWC dumptype definition in the dumptypes file.
I installed it the [URL="http://cdn.zmanda.com/downloads/community/Amanda/3.3.2/Windows/ZWC-Community-3.3-64bit.zip"]package[/URL] I pulled from the site. It gave no errors. After that, I created a folder on the Amanda server (/etc/amanda/WindowsBU) and dropped amanda.conf in it. Below is that conf.
Code:
org "HomeNet"
infofile "/amanda/state/curinfo"
logdir "/amanda/state/log"
indexdir "/amanda/state/index"
dumpuser "amandabackup"
inparallel 4 # Maximum dumpers that will run in parallel (max 63)
tpchanger "chg-disk:/amanda/vtapes"
labelstr "MyData[0-9][0-9]"
autolabel "MyData%%" EMPTY VOLUME_ERROR
tapecycle 4
dumpcycle 3 days
amrecover_changer "changer"
usetimestamps yes
tapetype "NFSSHARE"
define tapetype NFSSHARE {
length 100 mbytes
filemark 4 kbytes
}
define dumptype global {
comment "Global definitions"
# This is quite useful for setting global parameters, so you don't have
# to type them everywhere. All dumptype definitions in this sample file
# do include these definitions, either directly or indirectly.
# There's nothing special about the name `global'; if you create any
# dumptype that does not contain the word `global' or the name of any
# other dumptype that contains it, these definitions won't apply.
# Note that these definitions may be overridden in other
# dumptypes, if the redefinitions appear *after* the `global'
# dumptype name.
# You may want to use this for globally enabling or disabling
# indexing, recording, etc. Some examples:
index yes
# record no
auth "bsdtcp"
program "DUMP"
compress client fast
maxdumps 1
}
define dumptype windows-unc-compressed {
global # inherit the parameters in dumptype 'global'
}
define dumptype windows-unc-simple {
global # inherit the parameters in dumptype 'global'
compress none
}
holdingdisk hd1 {
directory "/amanda/holding"
use 50 mbytes
chunksize 1 mbyte
}

Originally Posted by
xHan
Following "The 15-Minute Backup Solution" step by step re-install the Amanda Server carefully, and install ZWC on your windows clients. You would survive.
I was doing that until I started getting errors (that's why I was asking if the wiki was up to date.) with a few commands that are no longer supported and/or were just giving errors. After that, I started using the GSWA guide.