Category: Backup

  • SAN and Tape backup with bacula

    Install and configure bacula for SAN and Tape backup There is already an excellent document about bacula installation and configurations at bacula website. This article is one way of getting SAN and Tape backup working together with single bacula director installation. It assumes that you already have installed and mounted the SAN and configured the…

  • Install and configure rsnapshot for central backup (without root privilege)

    Download and install RsnapShot Download the latest package from: http://rsnapshot.org/downloads.html # wget http://rsnapshot.org/downloads/rsnapshot-1.3.1-1.noarch.rpm # rpm -Uvh rsnapshot-1.3.1-1.noarch.rpm Configure public key authentication – Enable public key authentication with remote hosts with normal user privilege local# ssh-keygen -t rsa local# scp id_rsa.pub ssh-remote-server:id_rsa.pub remote# useradd -c “Backup user” -d /data/home/backup/ backup remote# su – backup remote# vi…

  • Rsnapshot Lchown

    # rsnapshot du localhost require Lchown Lchown module not found Install the Lchown module: # wget http://www.rsnapshot.org/downloads/extras/Lchown-1.00.tar.gz # tar xvzf Lchown-1.00.tar.gz # cd Lchown-1.00 # perl Makefile.PL Checking if your kit is complete… Looks good # make install # rsnapshot du localhost require Lchown Lchown module loaded successfully You can also try installing the module…