Amanda is a backup system that allows the administrator to set up a single master backup server to back up multiple hosts over network to tape drives/changers or disks or optical media.
DRBD refers to block devices designed as a building block to form high availability (HA) clusters. This is done by mirroring a whole block device via an assigned network. DRBD can be understood as network based raid-1.
I installed Debian Lenny on my notebook, but i want to test squeeze so I do this:
# as rootsed-i's/lenny/squeeze/g'/etc/apt/sources.list
aptitude update
aptitudeinstall apt dpkgaptitudeaptitude full-upgrade
# after reboot
upgrade-from-grub-legacy # to use grub2
I experimented some issues with dependencies but everything now is ok.
After you install Debian using netInstall using wire interface you can install the firmware that support your wireless interface this is example script:
#!/bin/bash# Debian Lenny Wireless script for Intel(R) Pro/Wireless 4954 or 3945# Author: Albertux (Alberto Isaac Ayala Esquivias)# Mail: <albertoi7@gmail.com># Web: http://Albertux.AyalaSoft.comif[[$EUID-ne0]]; thenecho"You must be a root user"2>&1exit1fifor m in iwl4965 iwl3945
domodel=$(echo`dmesg|grep$m|awk' { print $3 }'|wc -l`)if[$model-ne0]; thenmodel=$mbreak;
fidoneif["$model"!= "$m"]; thenecho-e"\e[01;33mWARNING!"echo-e"\e[01;33mDoesn't have Intel(R) PRO/Wireless 4965 or 3945 Models\e[00m"exit;
elseecho-e"\e[01;32mYou have Intel(R) PRO/Wireless $model\e[00m"fifirmware=$(echo`dpkg-l|grep firmware-iwlwifi |awk'{ print $1 }'`)mod=$(echo`lsmod|awk'{ print $1 }'|grep$model`)if["$firmware"!= "ii"]; thenecho-e"Install firmware ..."apt-getinstall firmware-iwlwifi
fiif["$model"!= "$mod"]; thenecho-e"Install module ..."
modprobe $modelfiecho-e"\nname\t description\n"
iwconfig
echo-n"Name of the interface with wireless extensions: "read iface
ifconfig$iface up
clearecho-e"Scanning Wireless ..."
iwlist $iface scanning
echo-n"essid: "read essid
echo-n"Need Key (y/n): "if["$op" = "n"]; then
iwconfig $iface essid "$essid"elseecho-n"key: "read key
iwconfig $iface essid "$essid" key "$key"fiecho-n"Static IP? (y/n): "read op
if["$op" = "n"]; then
dhclient $ifaceelseecho-n"What ip you want: "read ip
ifconfig$iface$ipfiecho-n"Gateway: "read gw
route add default gw $gw$iface